/* =====================================================================
   LIFE TURF — shared design system
   Clean, premium, commercial look (FRDM-inspired).
   Single source of truth for every page. Edit colors/type once here.
   Linked from root pages as  css/styles.css  and from pages in
   /areas/ and /blog/ as  ../css/styles.css
   ===================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Color — green is the only accent; everything else is ink/white/mist */
    --ink:        #14241B;   /* deep forest charcoal — headings, footer */
    --ink-soft:   #25342B;   /* slightly lifted ink */
    --body:       #55615A;   /* muted body text on light */
    --body-light: #AEBDB2;   /* muted text on dark */
    --green:      #2D5A3D;   /* East Valley Turf green — CTAs, accents */
    --green-deep: #1F4028;   /* hover / gradient end */
    --green-ink:  #14331E;   /* darkest green for text on soft-green */
    --green-light:#A2BE9F;   /* logo sage — accents on dark; matches the logo mark */
    --mist:       #EEF1E8;   /* cream page background (FRDM-style) — used site-wide */
    --soft:       #E9F0EA;   /* soft-green chips / circle accents */
    --paper:      #FFFFFF;
    --line:       #E5EAE5;   /* hairline borders */
    --line-dark:  rgba(255,255,255,0.12);

    /* Type */
    --display: 'Montserrat', system-ui, -apple-system, sans-serif;
    --sans:    'Manrope', system-ui, -apple-system, sans-serif;

    /* Shape & depth */
    --radius:    14px;
    --radius-sm: 8px;
    --shadow:    0 14px 40px rgba(20,36,27,0.08);
    --shadow-sm: 0 6px 18px rgba(20,36,27,0.06);

    /* Layout */
    --maxw: 1180px;
    --gutter: clamp(1.25rem, 4vw, 2rem);
    --section-y: clamp(2.5rem, 5vw, 4.5rem);
    --header-h: 100px;   /* matches the nav height so the hero fills the viewport exactly */
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--mist);
    color: var(--body);
    line-height: 1.7;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--display);
    color: var(--ink);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.01em;
    overflow-wrap: break-word;
}

p { line-height: 1.7; }
a { color: inherit; text-decoration: none; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
img { display: block; max-width: 100%; }
strong { color: var(--ink); }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout primitives ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section   { padding: var(--section-y) 0; }
.section--tight { padding-top: clamp(2rem, 4vw, 3rem); }
.bg-mist   { background: var(--mist); }
.bg-soft   { background: var(--soft); }
.bg-ink    { background: var(--ink); color: var(--body-light); }
.text-center { text-align: center; }

/* ---------- Type helpers ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--display);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--green-deep);
}
.eyebrow::before {
    content: '';
    width: 22px; height: 2px;
    background: var(--green);
    display: inline-block;
}
.eyebrow.is-light { color: var(--green-light); }
.eyebrow.is-light::before { background: var(--green-light); }
.eyebrow.is-centered { justify-content: center; }

h1, .h1 { font-size: clamp(2.3rem, 6.6vw, 5.2rem); text-transform: uppercase; line-height: 1.02; letter-spacing: -0.02em; }
h2, .h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); text-transform: uppercase; }
h3, .h3 { font-size: 1.3rem; letter-spacing: -0.005em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--body); max-width: 60ch; }

.sec-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.sec-head .eyebrow { margin-bottom: 1rem; }
.sec-head h2 { margin-bottom: .9rem; }
.sec-head.is-centered { text-align: center; display: flex; flex-direction: column; align-items: center; }
.sec-head.is-centered .lead { margin-inline: auto; }
.bg-ink .sec-head h2, .bg-ink h2, .bg-ink h3 { color: #fff; }
.accent { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    font-family: var(--display);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .95rem 1.7rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(45,90,61,0.28); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(45,90,61,0.36); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-deep); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--green-deep); box-shadow: 0 10px 24px rgba(0,0,0,0.16); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.22); }
.btn-on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-on-dark:hover { background: #fff; color: var(--green-deep); border-color: #fff; }
.btn-sage { background: var(--green-light); color: var(--green-ink); box-shadow: 0 10px 24px rgba(0,0,0,0.18); }
.btn-sage:hover { background: #A9D4B5; color: var(--green-ink); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.24); }
.btn-sm { padding: .7rem 1.25rem; font-size: .82rem; }

/* ---------- Top utility bar ---------- */
.topbar {
    display: none;   /* announcement bar hidden */
    background: transparent;
    color: var(--body-light);
    font-size: .85rem;
    font-weight: 500;
    position: relative;
    z-index: 101;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .55rem; }
.topbar a { color: #fff; }
.topbar a:hover { color: var(--green-light); }
.topbar strong { color: var(--green-light); }
.topbar .tb-center { font-weight: 600; }

/* ---------- Nav ---------- */
.nav {
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.nav.is-stuck {
    background: var(--mist);
    border-bottom-color: transparent;
    box-shadow: 0 6px 18px rgba(20,36,27,0.05);
}
/* Transparent header floats over the dark hero at the top of the page;
   turns into the solid white bar once scrolled (.is-stuck toggled in site.js). */
.nav:not(.is-stuck) .nav-links > li > a { color: #fff; }
.nav:not(.is-stuck) .nav-links > li > a:hover { color: var(--green-light); }
.nav:not(.is-stuck) .brand-chip { background: transparent; box-shadow: none; padding: 0; }
.nav:not(.is-stuck) .hamburger span { background: #fff; }
.nav .container { display: flex; align-items: center; justify-content: space-between; padding-block: 1.35rem; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-chip {
    background: var(--ink);
    border-radius: 12px;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
}
.brand-chip img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links > li > a {
    font-family: var(--display);
    font-weight: 600;
    font-size: .98rem;
    color: var(--ink);
    letter-spacing: .01em;
}
.nav-links > li > a:hover { color: var(--green-deep); }
.nav-links .nav-cta { margin-left: .25rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: all .3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ---------- Hero (full-bleed video) ---------- */
.hero {
    position: relative;
    min-height: calc(100vh + var(--header-h));
    min-height: calc(100svh + var(--header-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
    margin-top: calc(-1 * var(--header-h));   /* slide up beneath the transparent header */
    padding-top: var(--header-h);             /* keep centered content clear of the nav */
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity 1.2s ease; }
.hero-media video.is-ready, .hero-media img.is-ready { opacity: 1; }
/* Hero video carousel (crossfade rotation) */
.hero-carousel { position: absolute; inset: 0; }
.hero-carousel .hero-clip {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    opacity: 0; transition: opacity 1s ease; will-change: opacity;
}
.hero-carousel .hero-clip.is-active { opacity: 1; }
.hero-scrim {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, rgba(8,18,12,0.55) 0%, rgba(8,18,12,0) 24%),
        linear-gradient(90deg, rgba(8,18,12,0.78) 0%, rgba(8,18,12,0.45) 48%, rgba(8,18,12,0.18) 100%),
        linear-gradient(0deg, rgba(8,18,12,0.55) 0%, rgba(8,18,12,0) 45%);
}
.hero-inner { position: relative; z-index: 2; padding-top: clamp(3rem, 7vw, 5rem); padding-bottom: calc(clamp(3rem, 7vw, 5rem) + 100px); max-width: 820px; }
/* Left-align the hero content 60px from the edge instead of centering it (extra space goes to the right) */
.hero .container { margin-left: 60px; margin-right: auto; padding-left: 0; }
.hero h1 { color: #fff; margin-bottom: 1.4rem; line-height: 1.0; }
.hero h1 .ln { display: block; }
.hero h1 .ln-accent { color: var(--green-light); font-weight: 300; font-size: .74em; letter-spacing: .02em; margin-bottom: .05em; }
.hero h1 .ln-punch { display: block; }
.hero-sub { font-size: clamp(.95rem, 1.35vw, 1.12rem); color: var(--green-light); max-width: 44ch; margin-bottom: 2.25rem; font-weight: 600; text-transform: uppercase; letter-spacing: .045em; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem 1rem; align-items: center; }
.hero-eyebrow { color: var(--green-light); margin-bottom: 1.1rem; }

/* ---------- Trust / stats strip (green banner under the hero) ---------- */
.trust-strip { background: var(--green); }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 2rem; padding-block: 1.75rem; }
.trust-item { display: flex; align-items: center; gap: .75rem; }
.trust-item svg { width: 26px; height: 26px; stroke: var(--green-light); flex-shrink: 0; }
.trust-item .ti-text { font-family: var(--display); font-weight: 700; color: #fff; font-size: .98rem; line-height: 1.2; }
.trust-item .ti-text span { display: block; font-family: var(--sans); font-weight: 500; font-size: .82rem; color: rgba(255,255,255,0.72); letter-spacing: 0; }

/* ---------- Generic grids ---------- */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Feature pillars (Why artificial turf) ---------- */
.feature-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feature-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: var(--soft);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.feature-icon svg { width: 26px; height: 26px; stroke: var(--green-deep); fill: none; }
.feature-card h3 { color: var(--ink); margin-bottom: .55rem; }
.feature-card p { font-size: .97rem; }

/* ---------- Service / application cards ---------- */
.service-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card .sc-media { aspect-ratio: 4 / 3; overflow: hidden; }
.service-card .sc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .sc-media img { transform: scale(1.05); }
.service-card .sc-body { padding: 1.5rem 1.5rem 1.65rem; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { color: var(--ink); margin-bottom: .5rem; }
.service-card p { font-size: .95rem; margin-bottom: 1.1rem; }
.sc-link {
    margin-top: auto;
    font-family: var(--display);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--green-deep);
    display: inline-flex; align-items: center; gap: .4rem;
}
.sc-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.service-card:hover .sc-link svg { transform: translateX(4px); }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; }
.step {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.25rem 1.75rem 1.75rem;
}
.step .step-num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 2.75rem;
    line-height: 1;
    color: var(--green);
    opacity: .9;
    margin-bottom: .9rem;
}
.step h3 { color: var(--ink); text-transform: uppercase; font-size: 1.15rem; margin-bottom: .6rem; letter-spacing: .01em; }
.step p { font-size: .95rem; }
.bg-ink .step { background: rgba(255,255,255,0.03); border-color: var(--line-dark); }
.bg-ink .step p { color: var(--body-light); }
.bg-ink .step .step-num { color: var(--green-light); }

/* ---------- Pricing ---------- */
.price-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
}
.price-card.is-featured { border-color: var(--green); box-shadow: var(--shadow); position: relative; }
.price-card.is-featured::before {
    content: 'Most popular';
    position: absolute; top: -12px; left: 1.75rem;
    background: var(--green); color: #fff;
    font-family: var(--display); font-weight: 700; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
    padding: .35rem .8rem; border-radius: 50px;
}
.price-card .pc-name { font-family: var(--display); font-weight: 800; color: var(--ink); font-size: 1.35rem; }
.price-card .pc-tag { font-size: .9rem; color: var(--green-deep); font-weight: 600; margin-top: .15rem; }
.price-card .pc-amount { font-family: var(--display); font-weight: 800; color: var(--ink); font-size: 1.6rem; margin: 1rem 0 .25rem; }
.price-card .pc-amount .ph { display: block; font-family: var(--sans); font-weight: 500; font-size: .75rem; color: var(--body); }
.price-card .pc-desc { font-size: .92rem; margin: .75rem 0 1.25rem; }
.price-card hr { border: none; border-top: 1px solid var(--line); margin: 0 0 1.25rem; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.check-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .93rem; color: var(--ink-soft); font-weight: 500; }
.check-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; stroke: var(--green); fill: none; }
.price-card .btn { margin-top: 1.5rem; }
.price-card .pc-amount .per { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--body); }

/* Single wide plan — horizontal two-column layout */
.price-card.plan-wide {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.75rem;
    align-items: center;
    max-width: 880px;
    margin: 0 auto;
    padding: 2.5rem 2.75rem;
}
.plan-wide .plan-left { display: flex; flex-direction: column; align-items: flex-start; }
.plan-wide .plan-left .btn { margin-top: 1.75rem; }
.plan-wide .plan-right { border-left: 1px solid var(--line); padding-left: 2.75rem; }
.plan-wide .plan-incl {
    font-family: var(--display); font-weight: 700; font-size: .8rem;
    letter-spacing: .08em; text-transform: uppercase; color: var(--green-deep);
    margin-bottom: 1rem;
}
@media (max-width: 720px) {
    .price-card.plan-wide { grid-template-columns: 1fr; gap: 1.75rem; padding: 2rem 1.75rem; }
    .plan-wide .plan-right { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 1.75rem; }
}

/* ---------- Gallery slider (full-bleed, horizontal) ---------- */
.gallery-slider { position: relative; background: var(--ink); }
.gs-track {
    display: flex; gap: 0;
    overflow-x: auto; scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.gs-track::-webkit-scrollbar { display: none; }
.gs-item {
    flex: 0 0 auto; margin: 0;
    width: clamp(240px, 26vw, 400px);
    height: clamp(320px, 38vw, 520px);
    scroll-snap-align: start;
}
.gs-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 48px; height: 48px; padding: 0;
    display: flex; align-items: center; justify-content: center;
    border: none; border-radius: 10px; cursor: pointer;
    background: rgba(255, 255, 255, .92); box-shadow: var(--shadow);
    transition: background .15s ease, transform .15s ease;
}
.gs-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.gs-arrow svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; }
.gs-prev { left: 16px; }
.gs-next { right: 16px; }

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(120deg, var(--green-deep) 0%, var(--green) 100%);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
    color: #fff;
}
.cta-band h3 { color: #fff; font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
.cta-band p { color: rgba(255,255,255,0.9); margin-top: .4rem; max-width: 52ch; }

/* ---------- Reviews ---------- */
.review-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.review-top { display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--soft); color: var(--green-deep); font-family: var(--display); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.review-name { font-family: var(--display); font-weight: 700; color: var(--ink); font-size: .98rem; }
.review-date { font-size: .8rem; color: var(--body); }
.review-badge { margin-left: auto; font-weight: 800; color: #4285F4; font-family: var(--display); }
.review-stars { color: #F4B400; letter-spacing: 2px; margin-bottom: .55rem; }
.review-text { font-size: .95rem; color: var(--ink-soft); }

/* ---------- Gallery / results strip ---------- */
.results-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 1.1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}
.results-row img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius); scroll-snap-align: start; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery-grid figure { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4 / 3; cursor: zoom-in; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem 1rem .9rem; color: #fff; font-family: var(--display); font-weight: 700; font-size: .95rem; background: linear-gradient(0deg, rgba(8,18,12,0.8), transparent); }

/* ---------- Gallery filter + lightbox ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: clamp(1.75rem, 3vw, 2.75rem); }
.filter-btn { font-family: var(--display); font-weight: 600; font-size: .85rem; letter-spacing: .03em; padding: .55rem 1.15rem; border-radius: 50px; border: 1.5px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; transition: all .2s ease; }
.filter-btn:hover { border-color: var(--green); color: var(--green-deep); }
.filter-btn.is-active { background: var(--green); border-color: var(--green); color: #fff; }
.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 1.5rem; background: rgba(8,18,12,0.86); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(960px, 92vw); max-height: 78vh; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox-cap { position: absolute; left: 0; right: 0; bottom: 1.5rem; color: #fff; text-align: center; font-family: var(--display); font-weight: 700; padding: 0 1rem; }
.lightbox-cap span { display: block; font-family: var(--sans); font-weight: 500; font-size: .9rem; color: var(--body-light); margin-top: .25rem; }
.lightbox-close { position: absolute; top: 1.25rem; right: 1.5rem; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); background: rgba(0,0,0,0.3); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; }
.lightbox-close:hover { background: var(--green); border-color: var(--green); }

/* ---------- Area tiles ---------- */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.area-card { position: relative; min-height: 180px; border-radius: var(--radius); overflow: hidden; display: flex; align-items: flex-end; }
.area-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,18,12,0.78) 0%, rgba(8,18,12,0.15) 70%); transition: background .25s ease; }
.area-card:hover::after { background: linear-gradient(0deg, rgba(45,90,61,0.85) 0%, rgba(45,90,61,0.2) 70%); }
.area-label { position: relative; z-index: 2; padding: 1.1rem; color: #fff; line-height: 1.25; }
.area-label .al-small { font-size: .8rem; color: var(--body-light); display: block; }
.area-label strong { color: #fff; font-family: var(--display); font-size: 1.25rem; font-weight: 800; }

/* ---------- Quote form ---------- */
.quote-grid { display: grid; grid-template-columns: 1fr minmax(0, 480px); gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.quote-aside .lead { margin-bottom: 1.75rem; }
.quote-contact { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.quote-contact li { display: flex; align-items: flex-start; gap: .75rem; font-weight: 600; color: var(--ink); }
.quote-contact svg { width: 22px; height: 22px; stroke: var(--green); flex-shrink: 0; margin-top: 2px; fill: none; }
.quote-deal { display: inline-flex; align-items: center; gap: .5rem; background: var(--soft); color: var(--green-ink); font-family: var(--display); font-weight: 700; font-size: .92rem; padding: .6rem 1.1rem; border-radius: 50px; margin-bottom: 1.5rem; }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow); }
.bg-mist .form-card { box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: var(--display); font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: .4rem; }
.form-group label .req { color: #c0392b; }
.form-control {
    width: 100%;
    padding: .8rem .95rem;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    font-family: var(--sans);
    font-size: .98rem;
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,90,61,0.18); }
textarea.form-control { min-height: 120px; resize: vertical; }
.check-row { display: flex; flex-wrap: wrap; gap: .8rem 1.25rem; margin: .3rem 0 .5rem; }
.check-row label { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; color: var(--ink); cursor: pointer; font-family: var(--sans); }
.check-row input { width: 17px; height: 17px; accent-color: var(--green); }
.consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .8rem; color: var(--body); margin: 1rem 0 1.25rem; }
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--green); flex-shrink: 0; }
.form-success { display: none; background: var(--soft); color: var(--green-ink); border: 1px solid var(--green); padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.25rem; font-weight: 600; }
.form-success.show { display: block; }

/* ---------- Quote wizard (multi-step lead form) ---------- */
.wizard { background: var(--green); border-radius: 22px; box-shadow: 0 24px 60px rgba(20,36,27,0.18); overflow: hidden; display: flex; flex-direction: column; min-height: 470px; }
.wizard-form { display: flex; flex-direction: column; flex: 1; }
.wiz-progress { height: 5px; background: rgba(255,255,255,0.16); flex-shrink: 0; }
.wiz-progress-bar { display: block; height: 100%; width: 0; background: var(--green-light); transition: width .35s ease; }
.wiz-body { flex: 1; display: flex; flex-direction: column; }
.wiz-step { display: none; flex: 1; flex-direction: column; justify-content: center; padding: clamp(1.75rem, 3.5vw, 2.75rem); min-width: 0; }
.wiz-step.is-active { display: flex; }
.wiz-q { color: #fff; font-family: var(--display); font-weight: 600; font-size: clamp(1.3rem, 2.4vw, 1.85rem); line-height: 1.18; text-transform: none; letter-spacing: -0.01em; text-align: center; margin: 0 auto 1.6rem; max-width: 24ch; }
.wiz-note { color: rgba(255,255,255,0.82); text-align: center; font-size: .95rem; margin: -0.85rem auto 1.4rem; max-width: 38ch; }
.wiz-opts { display: flex; flex-direction: column; gap: .5rem; width: 100%; max-width: 370px; margin: 0 auto; }
.wiz-opt { position: relative; display: flex; align-items: center; gap: .85rem; padding: .65rem .85rem; border-radius: 12px; cursor: pointer; transition: background .18s ease; }
.wiz-opt:hover { background: rgba(255,255,255,0.09); }
.wiz-opt input { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; pointer-events: none; }
.wiz-box { width: 26px; height: 26px; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.7); border-radius: 7px; display: flex; align-items: center; justify-content: center; transition: background .18s ease, border-color .18s ease; }
.wiz-box::after { content: ''; width: 6px; height: 11px; margin-bottom: 2px; border: solid var(--green-ink); border-width: 0 3px 3px 0; transform: rotate(45deg) scale(0); transition: transform .18s ease; }
.wiz-opt input:checked + .wiz-box { background: #fff; border-color: #fff; }
.wiz-opt input:checked + .wiz-box::after { transform: rotate(45deg) scale(1); }
.wiz-opt input:checked ~ .wiz-opt-label { font-weight: 700; }
.wiz-opt input:focus-visible + .wiz-box { box-shadow: 0 0 0 3px rgba(255,255,255,0.55); }
.wiz-opt-label { color: #fff; font-family: var(--sans); font-weight: 500; font-size: 1.02rem; }
.wiz-fields { display: flex; flex-direction: column; gap: .9rem; width: 100%; max-width: 390px; margin: 0 auto; }
.wiz-fields .form-group { margin: 0; }
.wiz-fields label { color: #fff; }
.wiz-fields .req { color: var(--green-light); }
.form-control.is-invalid { border-color: #e8897c; box-shadow: 0 0 0 3px rgba(232,137,124,0.3); }
.wiz-consent { display: flex; align-items: flex-start; gap: .55rem; color: rgba(255,255,255,0.82); font-size: .8rem; line-height: 1.5; width: 100%; max-width: 390px; margin: 1rem auto 0; cursor: pointer; }
.wiz-consent input { margin-top: 3px; width: 15px; height: 15px; accent-color: #fff; flex-shrink: 0; }
.wiz-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: var(--green-ink); padding: 1rem clamp(1.25rem, 3vw, 2rem); flex-shrink: 0; }
.wiz-btn { background: none; border: none; cursor: pointer; color: #fff; font-family: var(--display); font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; padding: .5rem .25rem; transition: opacity .18s ease; white-space: nowrap; }
.wiz-btn:hover { opacity: .72; }
.wiz-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 3px; }
.wiz-count { color: rgba(255,255,255,0.6); font-family: var(--sans); font-size: .78rem; font-weight: 600; text-align: center; }
.wiz-success { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: clamp(2rem, 5vw, 3.5rem); }
.wiz-success[hidden] { display: none; }
.wiz-success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--green-light); color: var(--green-ink); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; margin-bottom: 1.25rem; }
.wiz-success h3 { color: #fff; font-size: 1.5rem; margin-bottom: .5rem; }
.wiz-success p { color: rgba(255,255,255,0.85); max-width: 38ch; }
.wiz-step-error .wiz-q { color: #ffdfd9; }

/* ---------- Promo / financing band ---------- */
.promo-band { background: var(--green-light); color: var(--green-ink); }
.promo-band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem 2.5rem; padding-block: 1.1rem; text-align: center; }
.promo-band .pb-lead { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.1rem, 2vw, 1.55rem); line-height: 1.05; }
.promo-band .pb-lead small { display: block; font-size: .6em; font-weight: 700; }
.promo-band .pb-text { font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: clamp(.95rem, 1.6vw, 1.3rem); letter-spacing: .01em; }
.promo-band .pb-text strong { font-weight: 800; }

/* ---------- Forest (dark green) section ---------- */
.bg-forest { background: var(--green-deep); color: rgba(255,255,255,0.86); }
.bg-forest h2, .bg-forest h3 { color: #fff; }
.bg-forest .lead { color: rgba(255,255,255,0.82); }
.bg-forest .accent { color: var(--green-light); }

/* ---------- Benefits strip ---------- */
.benefit-strip { background: var(--green-light); }
.benefit-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; padding-block: 1.5rem; }
.benefit-item { display: flex; align-items: center; gap: .7rem; font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: .9rem; letter-spacing: .04em; color: var(--green-ink); }
.benefit-item svg { width: 24px; height: 24px; stroke: var(--green-ink); flex-shrink: 0; }

/* ---------- Page hero (inner pages, no video) ---------- */
.page-hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; margin-top: calc(-1 * var(--header-h)); }
.page-hero::after { content: ''; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(45,90,61,0.35), transparent 70%); }
.page-hero .container { position: relative; z-index: 1; padding-top: calc(var(--header-h) + clamp(1.25rem, 3vw, 2rem)); padding-bottom: clamp(3rem, 7vw, 5rem); }
.page-hero h1 { color: #fff; margin-bottom: 1rem; max-width: 18ch; }
.page-hero p { color: var(--body-light); max-width: 56ch; font-size: 1.1rem; }
.page-hero .eyebrow { margin-bottom: 1rem; }
.crumbs { font-size: .85rem; color: #aebdb2; margin-bottom: 1.25rem; }
.crumbs a:hover { color: var(--green-light); }

/* ---------- Prose (blog / about body copy) ---------- */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2.5rem; text-transform: none; }
.prose h3 { font-size: 1.25rem; margin-top: 1.75rem; text-transform: none; }
.prose p, .prose li { font-size: 1.05rem; color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.prose a { color: var(--green-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: var(--radius); margin-block: 1.5rem; }
.prose blockquote { border-left: 3px solid var(--green); padding-left: 1.25rem; color: var(--body); font-style: italic; }
.prose table { width: 100%; border-collapse: collapse; margin-block: 1.5rem; font-size: .98rem; }
.prose th, .prose td { text-align: left; padding: .75rem 1rem; border-bottom: 1px solid var(--line); }
.prose thead th { font-family: var(--display); color: var(--ink); background: var(--mist); border-bottom: 2px solid var(--line); }
.prose tbody tr:last-child td { border-bottom: none; }
.prose .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: .85rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.25rem 1.5rem; font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-q .faq-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform .3s ease; }
.faq-q .faq-icon::before, .faq-q .faq-icon::after { content: ''; position: absolute; background: var(--green); border-radius: 2px; }
.faq-q .faq-icon::before { top: 10px; left: 0; width: 22px; height: 2.5px; }
.faq-q .faq-icon::after { left: 10px; top: 0; width: 2.5px; height: 22px; transition: transform .3s ease; }
.faq-item.open .faq-q .faq-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 1.5rem 1.35rem; color: var(--body); font-size: 1rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--body-light); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .95rem; color: var(--body-light); margin-bottom: .9rem; max-width: 34ch; }
.footer-brand .fb-contact { font-size: .95rem; }
.footer-brand .fb-contact strong { color: #fff; }
.footer-col h4 { color: var(--green-light); font-family: var(--display); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { font-size: .95rem; color: var(--body-light); }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.25rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--green); border-color: var(--green); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; color: var(--body-light); }
.footer-social a:hover svg { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between; align-items: center; font-size: .85rem; color: #8a978f; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .quote-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .area-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
    .topbar .tb-left { display: none; }
    .hero .container { margin-left: auto; padding-left: var(--gutter); }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 30px rgba(20,36,27,0.1);
        padding: .5rem 0;
    }
    .nav-links.active { display: flex; }
    .nav-links > li { padding: .25rem var(--gutter); }
    .nav-links > li > a { display: block; padding: .65rem 0; }
    /* mobile dropdown panel is solid white — keep links dark even while the bar is transparent */
    .nav:not(.is-stuck) .nav-links > li > a { color: var(--ink); }
    .nav-links .nav-cta { padding-block: .75rem 1rem; }
    .nav-links .nav-cta .btn { width: 100%; }
    .hamburger { display: flex; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-band { flex-direction: column; align-items: flex-start; text-align: left; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { justify-content: center; text-align: center; }

    /* Promo band — big, centered, stacked */
    .promo-band .container { flex-direction: column; gap: 1rem; padding-block: 2rem; }
    .promo-band .pb-lead { font-size: clamp(2.2rem, 12vw, 3rem); }
    .promo-band .pb-lead small { font-size: .8em; margin-top: .25rem; }
    .promo-band .pb-text { font-size: 1.05rem; line-height: 1.35; max-width: 24ch; margin-inline: auto; }

    /* Trust + benefit strips — even 2×2 grid instead of edge-to-edge flex */
    .trust-strip .container,
    .benefit-strip .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.6rem 1.5rem;
        align-items: start;
    }
    .benefit-item { font-size: .82rem; }
}
@media (max-width: 480px) {
    .gallery-grid, .area-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { text-align: center; }
    .footer-brand p { margin-inline: auto; }
    .footer-social { justify-content: center; }
    .trust-strip .container { justify-content: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
    .hero-media video, .hero-media img { opacity: 1; transition: none; }
}
