/* FM Estates — fresh, professional Italian-green theme.
   MYNE-inspired structure (geometric sans, image-forward cards, generous
   whitespace, squared corners) recoloured around an Italian cypress/olive
   green palette with warm terracotta as a secondary accent. */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Green brand anchors */
    --ink: #235c45;
    --ink-soft: #1a4734;
    /* Fresh accent green */
    --leaf: #3f8f6a;
    --leaf-soft: #e4f0ea;
    /* Fresh Italian base */
    --cream: #f6faf6;
    --cream-2: #e9f1ea;
    --sand: #dfe9df;
    --line: #d9e4d9;
    /* Warm secondary accents */
    --terracotta: #c4622d;
    --terracotta-strong: #a94f21;
    --olive: #6f7d4a;
    --gold: #c79a4b;
    /* Italian red accent */
    --rosso: #c8252d;
    --rosso-strong: #a81d24;
    --rosso-soft: #f7e1e2;
    /* Text */
    --text: #1f2a25;
    --muted: #586b60;
    --on-dark: #f6faf6;
    --on-dark-muted: rgba(246, 250, 246, 0.76);
    /* System */
    --shadow-sm: 0 6px 18px rgba(20, 55, 40, 0.07);
    --shadow: 0 18px 40px rgba(20, 55, 40, 0.12);
    --shadow-lg: 0 34px 70px rgba(20, 55, 40, 0.18);
    --radius-lg: 6px;
    --radius-md: 4px;
    --radius-sm: 3px;
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    color: var(--text);
    background-color: var(--cream);
    background-image:
        radial-gradient(circle at 1px 1px, rgba(35, 92, 69, 0.045) 1px, transparent 0),
        radial-gradient(circle at 1px 1px, rgba(196, 98, 45, 0.03) 1px, transparent 0);
    background-size: 30px 30px, 30px 30px;
    background-position: 0 0, 15px 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.container {
    width: min(calc(100% - 2.5rem), var(--max));
    margin: 0 auto;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(246, 250, 246, 0.35);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    border-bottom: 1px solid rgba(217, 228, 217, 0.5);
    transition: background 250ms ease, backdrop-filter 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.site-header.scrolled {
    background: rgba(246, 250, 246, 0.85);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    border-bottom-color: rgba(217, 228, 217, 0.8);
    box-shadow: 0 10px 30px rgba(20, 55, 40, 0.10);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.05;
}

.brand-mark {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: var(--ink);
}

.brand-sub {
    font-size: 0.66rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--rosso);
    font-weight: 700;
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.5rem;
    color: var(--ink);
    cursor: pointer;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    font-size: 0.92rem;
    font-weight: 500;
}

.site-nav a {
    color: var(--ink);
    opacity: 0.74;
    padding: 0.35rem 0;
    transition: opacity 160ms ease, color 160ms ease;
}

.site-nav a:hover {
    opacity: 1;
    color: var(--leaf);
}

.site-nav a[aria-current='page'] {
    opacity: 1;
    font-weight: 700;
    color: var(--rosso);
}

/* ---------- Buttons ---------- */
.button,
.button-secondary,
.button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 52px;
    padding: 0 1.6rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.96rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button {
    background: var(--ink);
    color: var(--on-dark);
    box-shadow: var(--shadow-sm);
}

.button:hover {
    background: var(--ink-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.button-secondary {
    background: var(--terracotta);
    color: #fff;
}

.button-secondary:hover {
    background: var(--terracotta-strong);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.button-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid rgba(5, 33, 61, 0.18);
}

.button-ghost:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}

/* ---------- Layout primitives ---------- */
main {
    overflow: hidden;
}

section {
    padding: 3.4rem 0;
}

.eyebrow {
    display: inline-block;
    color: var(--rosso);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.74rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2rem;
}

.section-head--stacked {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.4rem;
}

.section-head--stacked p {
    max-width: 760px;
}

.section-head h2 {
    margin: 0.2rem 0 0;
    font-size: clamp(1.9rem, 3.4vw, 2.9rem);
    line-height: 1.05;
}

.section-head p {
    margin: 0;
    /* max-width: 46ch; */
    color: var(--muted);
}

/* ---------- Hero ---------- */
.hero {
    padding: 3.2rem 0 3.6rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 2.4rem;
    align-items: center;
}

.hero-copy {
    padding: 0;
}

.kicker {
    /* display: inline-flex; */
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.95rem;
    border-radius: var(--radius-sm);
    background: var(--leaf-soft);
    color: var(--ink);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.kicker::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--rosso);
}

.hero h1,
.page-hero h1 {
    margin: 1.2rem 0 1.1rem;
    font-size: clamp(2.7rem, 5.4vw, 4.4rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero p,
.page-hero p {
    max-width: 54ch;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-actions,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.8rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.4rem;
}

.stat {
    padding: 1.1rem 1.2rem;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.stat strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink);
}

.stat span {
    font-size: 0.86rem;
    color: var(--muted);
}

/* ---------- Full-bleed hero header (homepage) ---------- */
.hero-feature {
    position: relative;
    display: flex;
    align-items: center;
    min-height: min(55vh, 760px);
    padding: 5.5rem 0;
    color: var(--on-dark);
    background-image:
        linear-gradient(100deg, rgba(26, 40, 24, 0.92) 0%, rgba(28, 44, 26, 0.74) 42%, rgba(34, 50, 28, 0.42) 78%, rgba(40, 54, 30, 0.3) 100%),
        url('images/bg.webp');
    background-size: cover;
    background-position: center;
}

.hero-feature .hero-inner {
    max-width: 980px;
}

.hero-feature .kicker {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    backdrop-filter: blur(4px);
}

.hero-feature h1 {
    color: #fff;
    margin: 1.2rem 0 1.1rem;
    font-size: clamp(2.7rem, 5.6vw, 4.6rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-feature p {
    color: rgba(246, 250, 246, 0.9);
    max-width: 64ch;
    font-size: 1.12rem;
}

.hero-feature .hero-actions {
    margin-top: 1.9rem;
}

.hero-feature .button-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.hero-feature .button-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.hero-feature .hero-stats {
    margin-top: 2.6rem;
    max-width: 980px;
}

.hero-feature .stat {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

.hero-feature .stat strong {
    color: #fff;
}

.hero-feature .stat span {
    color: rgba(246, 250, 246, 0.82);
}

/* Hero image panel — large rounded photo, MYNE-style */
.hero-panel {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scene {
    min-height: 460px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}

.scene::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 55, 40, 0) 45%, rgba(20, 55, 40, 0.45) 100%);
}

.scene--home,
.scene--about,
.scene--services,
.scene--rental,
.scene--buying,
.scene--viewing,
.scene--investment,
.scene--contact {
    background-image: url('images/bg.webp');
}

.panel-card {
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--ink);
    color: var(--on-dark);
    box-shadow: var(--shadow);
}

.panel-card .eyebrow {
    color: var(--gold);
}

.panel-card h3 {
    color: #fff;
    margin: 0.2rem 0 0.4rem;
}

.panel-card p {
    margin: 0.3rem 0 0;
    color: var(--on-dark-muted);
}

/* ---------- Page hero (full-bleed cover image) ---------- */
.page-hero {
    position: relative;
    padding: 6.5rem 0 3.4rem;
    color: var(--on-dark);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(26, 40, 24, 0.94) 0%, rgba(30, 46, 27, 0.72) 50%, rgba(38, 52, 30, 0.4) 100%);
}

.page-hero>.container {
    position: relative;
    z-index: 1;
}

.page-hero .kicker {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    backdrop-filter: blur(4px);
}

.page-hero h1 {
    color: #fff;
}

.page-hero p {
    color: rgba(246, 250, 246, 0.92);
}

.page-hero .button-secondary {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.page-hero .button-secondary:hover {
    background: rgba(255, 255, 255, 0.26);
}

.page-hero-grid {
    display: grid;
    /* grid-template-columns: 1.05fr 0.95fr; */
    gap: 2.2rem;
    align-items: center;
}

/* Inner illustration block is replaced by the cover image */
.page-hero .hero-panel .scene {
    display: none;
}

.page-hero .panel-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.page-hero .panel-card .eyebrow {
    color: #fff;
}

/* ---------- Grids ---------- */
.grid-3,
.grid-2,
.steps,
.metrics,
.contact-grid,
.listing-grid,
.region-grid {
    display: grid;
    gap: 1.4rem;
}

.grid-3,
.region-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2,
.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ---------- Cards ---------- */
.card,
.step,
.contact-card,
.listing-card,
.region-card,
.highlight {
    padding: 1.7rem;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.card:hover,
.step:hover,
.listing-card:hover,
.region-card:hover,
.highlight:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.card h3,
.step h3,
.listing-card h3,
.region-card h3,
.contact-card h3,
.highlight h3 {
    margin-top: 0;
    margin-bottom: 0.55rem;
    font-size: 1.2rem;
}

.card p,
.step p,
.contact-card p,
.listing-card p,
.region-card p,
.highlight p,
.copy-block p,
.copy-block li {
    color: var(--muted);
}

.card .button-ghost {
    margin-top: 1.1rem;
    height: 46px;
}

/* Region cards — image-forward MYNE listing look */
.region-card {
    padding: 0;
    overflow: hidden;
}

.region-card::before {
    content: '';
    display: block;
    height: 168px;
    background: linear-gradient(135deg, var(--olive), var(--ink-soft));
    background-size: cover;
    background-position: center;
}

.region-card:nth-child(1)::before {
    background-image: linear-gradient(180deg, rgba(20, 55, 40, 0.12), rgba(20, 55, 40, 0.45)), url('https://images.unsplash.com/photo-1516108317508-6788f6a160e4?auto=format&fit=crop&w=900&q=70');
}

.region-card:nth-child(2)::before {
    background-image: linear-gradient(180deg, rgba(20, 55, 40, 0.12), rgba(20, 55, 40, 0.45)), url('https://images.unsplash.com/photo-1596142332133-327e2a0ff006?auto=format&fit=crop&w=900&q=70');
}

.region-card:nth-child(3)::before {
    background-image: linear-gradient(180deg, rgba(20, 55, 40, 0.12), rgba(20, 55, 40, 0.45)), url('https://images.unsplash.com/photo-1586974726316-c6302de6a160?auto=format&fit=crop&w=900&q=70');
}

.region-card h3 {
    margin: 1.2rem 1.5rem 0.4rem;
}

.region-card p {
    margin: 0 1.5rem 1.6rem;
}

/* Service cards (image-forward, homepage) */
.service-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-media {
    height: 210px;
    overflow: hidden;
    background: var(--leaf-soft);
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-media img {
    transform: scale(1.05);
}

.service-body {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
    padding: 1.6rem;
}

.service-body h3 {
    margin: 0;
}

.service-body .button-ghost {
    margin-top: auto;
    align-self: flex-start;
}

/* Feature image tiles (homepage expertise / gallery) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow-sm);
}

.feature-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-tile:hover img {
    transform: scale(1.06);
}

.feature-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 40, 24, 0) 38%, rgba(26, 40, 24, 0.82) 100%);
}

.feature-tile-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 1.4rem;
    color: #fff;
}

.feature-tile-label .eyebrow {
    color: #fff;
    opacity: 0.85;
    margin-bottom: 0.2rem;
}

.feature-tile-label h3 {
    margin: 0;
    color: #fff;
    font-size: 1.15rem;
}

.feature-tile-arrow {
    display: inline-block;
    margin-top: 0.4rem;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}

/* Wide media strip */
.media-strip {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.media-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(26, 40, 24, 0.82) 0%, rgba(28, 44, 26, 0.45) 55%, rgba(34, 50, 28, 0.2) 100%);
}

.media-strip-inner {
    position: relative;
    z-index: 1;
    padding: 2.4rem;
    max-width: 560px;
}

.media-strip-inner .eyebrow {
    color: var(--gold);
}

.media-strip-inner h2 {
    color: #fff;
    margin: 0.2rem 0 0.7rem;
}

.media-strip-inner p {
    color: rgba(246, 250, 246, 0.92);
}

/* Listing cards */
.listing-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.listing-media {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.listing-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.listing-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 55, 40, 0.05), rgba(20, 55, 40, 0.4));
}

.listing-tag {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 1;
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-sm);
    background: var(--ink);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.listing-body {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
    padding: 1.5rem;
}

.listing-card .eyebrow {
    margin-bottom: 0.1rem;
}

.listing-card h3 {
    margin: 0;
}

.listing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.listing-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.listing-price {
    margin-top: auto;
    padding-top: 0.6rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink);
}

.listing-price span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
}

/* Clickable listing cards (with a detail page) */
.listing-card.has-detail {
    position: relative;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.listing-card.has-detail:hover,
.listing-card.has-detail:focus-within {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.listing-card.has-detail:hover .listing-media img {
    transform: scale(1.04);
}

.listing-card.has-detail .listing-media img {
    transition: transform 0.4s ease;
}

.listing-cta {
    margin-top: 0.4rem;
    color: var(--rosso);
    font-weight: 700;
    font-size: 0.88rem;
}

.listing-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
}

.listing-link:focus-visible {
    outline: 3px solid var(--rosso);
    outline-offset: 3px;
}

/* ---------- Property detail page ---------- */
.breadcrumb {
    margin-bottom: 1.4rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--ink);
}

.detail-head {
    margin-bottom: 1.6rem;
}

.detail-head h1 {
    margin: 0.3rem 0 0;
}

.detail-head-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 0.9rem;
}

.detail-tag {
    position: static;
}

.detail-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ink);
}

.detail-price-note {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
}

/* Gallery */
.detail-gallery {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2.2rem;
}

.detail-gallery-main {
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--leaf-soft);
    aspect-ratio: 4 / 3;
}

.detail-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.detail-gallery-main:hover img {
    transform: scale(1.03);
}

.detail-gallery-count {
    position: absolute;
    right: 0.9rem;
    bottom: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    background: rgba(20, 55, 40, 0.78);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.detail-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 0.75rem;
}

.detail-thumb {
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--leaf-soft);
    aspect-ratio: 4 / 3;
}

.detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.detail-thumb:hover img {
    transform: scale(1.05);
}

.detail-thumb-more {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 55, 40, 0.6);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
}

/* Video embeds */
.detail-videos {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.4rem;
}

.detail-video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.detail-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Detail body */
.detail-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2.4rem;
    align-items: start;
}

.detail-main h2 {
    margin-top: 0;
}

.detail-aside {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: sticky;
    top: 96px;
}

.detail-card {
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.detail-card h3 {
    margin: 0 0 1rem;
}

.detail-specs {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.55rem 1rem;
    margin: 0;
}

.detail-specs dt {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.detail-specs dd {
    margin: 0;
    text-align: right;
    font-weight: 700;
    color: var(--ink);
}

.detail-cta {
    background: var(--leaf-soft);
    border-color: transparent;
}

.detail-cta p {
    margin: 0 0 1rem;
}

.detail-cta .button,
.detail-cta .button-secondary {
    display: flex;
    width: 100%;
    text-align: center;
    margin-bottom: 0.7rem;
}

.detail-cta-phone {
    margin: 0.4rem 0 0 !important;
    font-size: 0.9rem;
    color: var(--muted);
}

.detail-cta-phone a {
    color: var(--ink);
    font-weight: 700;
}

/* Lightbox */
body.no-scroll {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(13, 32, 24, 0.92);
}

.lightbox[hidden] {
    display: none;
}

.lightbox-stage {
    margin: 0;
    max-width: min(1100px, 92vw);
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    transition: background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.28);
}

.lightbox-close {
    top: 1.2rem;
    right: 1.2rem;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.6rem;
    line-height: 1;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.4rem;
}

.lightbox-prev {
    left: clamp(0.5rem, 2vw, 2rem);
}

.lightbox-next {
    right: clamp(0.5rem, 2vw, 2rem);
}

/* ---------- Steps ---------- */
.step-number {
    display: inline-flex;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    background: var(--leaf-soft);
    color: var(--ink);
    font-weight: 800;
}

/* ---------- Metrics ---------- */
.metric {
    text-align: center;
    padding: 2rem 1.2rem;
    border-radius: var(--radius-lg);
    background: var(--cream-2);
    border: 1px solid var(--line);
}

.metric strong {
    display: block;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--ink);
}

.metric p {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

/* ---------- Band (dark feature strip) ---------- */
.band {
    position: relative;
    margin: 1rem 0;
    padding: 2.6rem;
    border-radius: var(--radius-lg);
    background-color: var(--ink);
    background-image:
        radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 100% 100%, rgba(199, 154, 75, 0.08), transparent 55%);
    background-size: 22px 22px, cover;
    background-position: 0 0, center;
    color: var(--on-dark);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.band .eyebrow {
    color: var(--gold);
}

.band h2 {
    color: #fff;
    margin: 0.3rem 0 0.8rem;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.band-grid {
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 2rem;
    align-items: center;
}

.band p,
.band li {
    color: var(--on-dark-muted);
}

.band .button-secondary {
    background: #fff;
    color: var(--ink);
}

.band .button-secondary:hover {
    background: var(--cream-2);
}

/* ---------- Quote / Review card ---------- */
.quote {
    position: relative;
    padding: 2rem 2rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--cream-2);
    border: 1px solid var(--line);
    box-shadow: 0 2px 12px rgba(35, 92, 69, .06);
}

.quote::before {
    content: '\201C';
    position: absolute;
    top: .6rem;
    left: 1.4rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--leaf);
    opacity: .25;
    font-family: Georgia, serif;
    pointer-events: none;
}

.quote-stars {
    display: flex;
    gap: .15rem;
    margin-bottom: .9rem;
}

.quote-stars span {
    color: var(--gold);
    font-size: 1.05rem;
}

.quote p {
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.65;
    font-style: italic;
    margin: 0 0 1.25rem;
}

.quote-meta {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.quote-avatar {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--leaf);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.quote-byline strong {
    display: block;
    color: var(--ink);
    font-size: .9rem;
    font-weight: 700;
}

.quote-byline span {
    color: var(--muted);
    font-size: .8rem;
}

/* legacy fallback – plain <strong> inside .quote without .quote-meta */
.quote>strong {
    display: block;
    margin-top: 1rem;
    color: var(--muted);
    font-weight: 600;
}

/* ---------- Copy blocks ---------- */
.copy-block {
    padding: 1rem 0;
}

.copy-block ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
}

.note {
    padding: 1.1rem 1.3rem;
    border-left: 4px solid var(--gold);
    background: rgba(199, 154, 75, 0.1);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ---------- Contact ---------- */
.contact-card {
    background: #fff;
}

.contact-card p {
    margin: 0.4rem 0;
}

/* ---------- Footer ---------- */
.footer {
    margin-top: 1rem;
    padding: 3.4rem 0 2.4rem;
    background-color: var(--ink);
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
    color: var(--on-dark);
}

.footer .brand-mark {
    color: #fff;
}

.footer .brand-sub {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 2rem;
}

.footer h3 {
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer small,
.footer p,
.footer li {
    color: var(--on-dark-muted);
}

.footer a {
    color: var(--on-dark-muted);
    transition: color 160ms ease;
}

.footer a:hover {
    color: #fff;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

/* ---------- Reveal (fade-in effects disabled) ---------- */
.reveal,
.reveal-delay-1,
.reveal-delay-2,
.reveal-delay-3 {
    opacity: 1;
    transform: none;
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {

    .hero-grid,
    .page-hero-grid,
    .grid-2,
    .grid-3,
    .metrics,
    .steps,
    .contact-grid,
    .listing-grid,
    .region-grid,
    .feature-grid,
    .footer-grid,
    .band-grid {
        grid-template-columns: 1fr;
    }

    .scene {
        min-height: 320px;
    }

    .detail-grid,
    .detail-gallery {
        grid-template-columns: 1fr;
    }

    .detail-aside {
        position: static;
    }

    .site-nav {
        position: absolute;
        top: 78px;
        left: 1.25rem;
        right: 1.25rem;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        padding: 1rem 1.2rem;
        border-radius: var(--radius-md);
        background: #fff;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
    }

    .site-nav.open {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .band {
        padding: 1.8rem;
    }

    .page-hero {
        padding: 3.8rem 0 2rem;
    }
}

@media (max-width: 640px) {
    section {
        padding: 2.6rem 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .button,
    .button-secondary,
    .button-ghost {
        width: 100%;
    }
}

.grid-3>*,
.grid-2>*,
.steps>*,
.metrics>*,
.contact-grid>*,
.listing-grid>*,
.region-grid>* {
    min-width: 0;
}