/* ============================================================
   MR TREES — Main Stylesheet
   Brand: Forest green #3cb34a | Dark #111827
   Fonts: Century Gothic (everywhere) + FuturaSH-XBoldCon (MR TREES only)
   ============================================================ */

/* ── Brand Font — reserved EXCLUSIVELY for literal "MR TREES" text.
   Never reference this font-family outside the .brand class. ── */
@font-face {
    font-family: 'FuturaSH-XBoldCon';
    src: url('/fonts/FuturaSH-XBoldCon.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
.brand {
    font-family: 'FuturaSH-XBoldCon', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --font-main:     'Century Gothic', CenturyGothic, AppleGothic, 'Jost', sans-serif;
    --green:         #3cb34a;
    --green-dark:    #2a8a38;
    --green-darker:  #1d6628;
    --green-darkest: #123f18;
    --green-light:   #e8f5ea;
    --green-mid:     #c3e6cb;
    --dark:          #0d0d0d;
    --dark-nav:      #111827;
    --dark-footer:   #000000;
    --charcoal:      #1f2937;
    --text:          #374151;
    --muted:         #6b7280;
    --white:         #ffffff;
    --off-white:     #f9fafb;
    --border:        #e5e7eb;
    --radius:        8px;
    --radius-lg:     16px;
    --shadow:        0 2px 12px rgba(0,0,0,0.08);
    --shadow-md:     0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:     0 8px 40px rgba(0,0,0,0.14);
    --transition:    0.22s ease;
    --max-w:         1200px;
    --header-h:      70px;
    --topbar-h:      42px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17.5px; }
body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    hyphens: none;
    -webkit-hyphens: none;
    padding-top: calc(var(--topbar-h) + var(--header-h));
    -ms-hyphens: none;
    word-break: normal;
    overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--sm { padding: 56px 0; }
.section--lg { padding: 100px 0; }
.section--dark { background: var(--off-white); }
.section--green { background: var(--green); }
.section--green h1,.section--green h2,.section--green h3 { color: var(--white); }
.section--light { background: var(--off-white); }
.section--green-light { background: var(--green-light); }

.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8   { gap: 8px; }
.gap-12  { gap: 12px; }
.gap-16  { gap: 16px; }
.gap-20  { gap: 20px; }
.gap-24  { gap: 24px; }
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-green  { color: var(--green); }
.text-muted  { color: var(--muted); }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ── Section Headers ─────────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 4px;
}
.section-label--white { color: rgba(255,255,255,0.65); }
.section-title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-title--white { color: var(--white); }
.section-desc {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.7;
}
.section-desc--white { color: rgba(255,255,255,0.7); }
.section-head { margin-bottom: 48px; }
.section-head--center { text-align: center; }
.section-head--center .section-desc { margin: 0 auto; }
.divider {
    width: 48px; height: 4px;
    background: var(--green);
    border-radius: 2px;
    margin: 14px 0 22px;
}
.divider--center { margin: 14px auto 22px; }
.divider--white { background: rgba(255,255,255,0.4); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    cursor: pointer;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--green {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn--green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(60,179,74,0.35);
}
.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}
.btn--outline-green {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn--outline-green:hover {
    background: var(--green);
    color: var(--white);
}
.btn--dark {
    background: var(--dark-nav);
    color: var(--white);
    border-color: var(--dark-nav);
}
.btn--dark:hover { background: var(--charcoal); }
.btn--white {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}
.btn--white:hover {
    background: var(--off-white);
    border-color: var(--off-white);
}
.btn--lg { padding: 17px 36px; font-size: 0.95rem; }
.btn--sm { padding: 9px 18px; font-size: 0.8rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Top Bar ──────────────────────────────────────────────────── */
.topbar {
    position: fixed;
    top: 0;
    left: 0; right: 0;
    z-index: 910;
    background: var(--green-darker);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.topbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='0.8'%3E%3Cpath d='M5 23 C5 14 12 7 14 5 C16 7 23 14 23 23 C19 20 9 20 5 23Z'/%3E%3Cline x1='14' y1='5' x2='14' y2='23'/%3E%3Cpath d='M14 15 C10 13 9 9 10 7'/%3E%3Cpath d='M14 18 C18 16 19 12 18 10'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 28px 28px;
    opacity: 1;
    pointer-events: none;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.topbar__left,
.topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
    text-decoration: none;
}
.topbar__item:hover { color: var(--white); }
.topbar__item svg { width: 13px; height: 13px; flex-shrink: 0; }
.topbar__phone {
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-main);
    color: var(--white);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.topbar__phone svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar__badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 600;
    font-family: var(--font-main);
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.3px;
}
.topbar__badge-tree {
    width: 10px; height: 16px;
    flex-shrink: 0;
}

/* ── Site Header ──────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: var(--topbar-h);
    left: 0; right: 0;
    z-index: 900;
    background: var(--white);
    height: var(--header-h);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

/* ── Admin ribbon offset ─────────────────────────────────────
   When an admin is logged in, header.blade.php renders a fixed
   36px ribbon at the very top and adds .has-admin-ribbon to <body>.
   Shift the whole fixed header stack (and page padding) down by
   that much — nothing else changes. */
body.has-admin-ribbon { --admin-ribbon-h: 36px; }
body.has-admin-ribbon { padding-top: calc(var(--admin-ribbon-h) + var(--topbar-h) + var(--header-h)); }
body.has-admin-ribbon .topbar      { top: var(--admin-ribbon-h); }
body.has-admin-ribbon .site-header { top: calc(var(--admin-ribbon-h) + var(--topbar-h)); }
body.has-admin-ribbon .hero        { height: calc(100vh - var(--admin-ribbon-h) - var(--header-h) - var(--topbar-h)); }
body.has-admin-ribbon .mobile-nav  { padding-top: calc(var(--admin-ribbon-h) + var(--topbar-h) + var(--header-h) + 24px); }

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}
.header-logo__img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}
.header-logo__tagline {
    display: block;
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--muted);
    font-style: italic;
    line-height: 1.15;
    margin-top: 2px;
    max-width: 150px;
}
@media (max-width: 1260px) {
    .header-logo__tagline { display: none; }
}

/* Desktop Nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    padding: 8px 8px;
    border-radius: var(--radius);
    transition: all var(--transition);
    letter-spacing: 0.3px;
    white-space: nowrap;
    position: relative;
}
.nav-link:hover {
    color: var(--green-dark);
    background: var(--green-light);
}
.nav-link.active {
    color: var(--white);
    background-color: var(--green);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M8 2C4 8 2 14 6 20c2 3 6 5 8 4 1-4-1-9-4-12 3 2 6 7 5 12 4-1 7-5 7-10C22 8 15 1 8 2Z' fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='1.2'/%3E%3Cpath d='M10 4 Q9 11 12 18' fill='none' stroke='rgba(255,255,255,0.12)' stroke-width='0.8' stroke-linecap='round'/%3E%3Cpath d='M28 18c-3 5-2 11 2 14 2-3 2-8 0-11 1 3 1 7-1 10 3-1 6-5 5-10-1-4-4-6-6-3Z' fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='1'/%3E%3Cpath d='M29 20 Q29 25 30 30' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='0.7' stroke-linecap='round'/%3E%3C/svg%3E"),
        linear-gradient(120deg, var(--green) 0%, #1a5c28 100%);
    background-size: 40px 40px, cover;
    background-repeat: repeat, no-repeat;
    clip-path: polygon(
        0% 50%,
        4% 28%, 10% 12%, 20% 3%, 34% 0%,
        50% 0%,
        66% 0%, 80% 3%, 90% 12%, 96% 28%,
        100% 50%,
        96% 72%, 90% 88%, 80% 97%, 66% 100%,
        50% 100%,
        34% 100%, 20% 97%, 10% 88%, 4% 72%
    );
    padding: 10px 22px;
}
.nav-link.active::after { display: none; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-dropdown > .nav-link .dd-arrow {
    width: 12px; height: 12px;
    transition: transform var(--transition);
    flex-shrink: 0;
}
.nav-dropdown:hover > .nav-link .dd-arrow { transform: rotate(180deg); }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 210px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: all var(--transition);
}
.dropdown-item svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }
.dropdown-item:hover {
    background: var(--green-light);
    color: var(--green-dark);
    padding-left: 20px;
}
.dropdown-divider {
    height: 0;
    margin: 4px 10px;
}
.dropdown-label {
    padding: 8px 16px 2px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.header-phone-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--charcoal);
    transition: color var(--transition);
    text-decoration: none;
}
.header-phone-link:hover { color: var(--green); }
.header-phone-link svg { width: 15px; height: 15px; color: var(--green); }

/* Hamburger */
.header-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: 4px;
    background: none;
    transition: opacity var(--transition);
}
.header-hamburger:hover { opacity: 0.7; }
.header-hamburger span {
    display: block;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.header-hamburger span:nth-child(1) { width: 24px; }
.header-hamburger span:nth-child(2) { width: 16px; }
.header-hamburger span:nth-child(3) { width: 20px; }
.header-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ──────────────────────────────────────────────── */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 800;
    padding: calc(var(--topbar-h) + var(--header-h) + 24px) 20px 80px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link {
    display: block;
    font-family: var(--font-main);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-nav);
    padding: 13px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--green-dark);
    background: none;
}
.mobile-nav-section {
    display: block;
    font-family: var(--font-main);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-nav);
    padding: 13px 14px;
    margin-top: 8px;
    letter-spacing: normal;
    text-transform: none;
}
.mobile-nav-sub {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted);
    padding: 9px 14px 9px 26px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.mobile-nav-sub svg { width: 13px; height: 13px; color: var(--green); flex-shrink: 0; }
.mobile-nav-sub:hover { color: var(--green-dark); background: var(--green-light); }
.mobile-nav-cta {
    margin-top: 20px;
    display: block;
    text-align: center;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px;
    border-radius: var(--radius);
    transition: background var(--transition);
}
.mobile-nav-cta:hover { background: var(--green-dark); }

/* ── Hero Slider ─────────────────────────────────────────────── */
.hero {
    position: relative;
    height: calc(100vh - var(--header-h) - var(--topbar-h));
    min-height: 560px;
    max-height: 840px;
    overflow: hidden;
    background: var(--dark);
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.6s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
}
@keyframes kenburns {
    0%   { transform: scale(1);    }
    100% { transform: scale(1.12); }
}
.hero-slide.active .hero-slide__bg {
    animation: kenburns 24s ease forwards;
}
/* Desktop/mobile image swap — mobile-portrait image (if the admin uploaded one) replaces
   the desktop image below 640px; falls back to the desktop image otherwise. */
.hero-slide__bg--mobile { display: none; }
@media (max-width: 640px) {
    .hero-slide__bg--desktop { display: none; }
    .hero-slide__bg--mobile  { display: block; }
}

/* Full uncropped photo — only rendered (and only shown) in mobile-stack mode */
.hero-slide__photo { display: none; }

/* ── Mobile stack: no dedicated mobile image ─────────────────────
   Phone layout when the admin hasn't uploaded a portrait mobile image:
   show the whole desktop photo (full width, natural height) with the hero
   text left-aligned on a green panel underneath, instead of cropping the
   photo into a cover-background. Desktop is unaffected. */
@media (max-width: 640px) {
    .hero--mobile-stack,
    body.has-admin-ribbon .hero--mobile-stack {
        height: auto;
        min-height: 0;
        max-height: none;
        overflow: visible;
        background: var(--green-darkest);
    }
    .hero--mobile-stack .hero-slides { height: auto; }
    .hero--mobile-stack .hero-slide {
        position: relative;
        inset: auto;
        opacity: 1;
    }
    .hero--mobile-stack .hero-slide__bg,
    .hero--mobile-stack .hero-slide__overlay { display: none; }

    .hero--mobile-stack .hero-slide__photo {
        display: block;
        width: 100%;
        height: auto;
    }

    /* Green panel — the top ribbon's leaf pattern on a deeper green */
    .hero--mobile-stack .hero-slide__body {
        position: relative;
        height: auto;
        display: block;
        text-align: left;
        background: var(--green-darkest);
        padding: 30px 0 34px;
        overflow: hidden;
    }
    .hero--mobile-stack .hero-slide__body::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url('/img/trees-outline.png');
        background-repeat: no-repeat;
        background-position: left bottom;
        background-size: auto 88%;
        filter: brightness(0) invert(1);
        opacity: 0.12;
        pointer-events: none;
    }
    .hero--mobile-stack .hero-slide__body > .container {
        position: relative;
        z-index: 1;
    }
    .hero--mobile-stack .hero-content { max-width: none; }
    .hero--mobile-stack .hero-title {
        text-shadow: none;
        font-size: 2.6rem;
        line-height: 1.06;
    }
    .hero--mobile-stack .hero-subtitle {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        color: rgba(255,255,255,0.92);
    }
    .hero--mobile-stack .hero-actions {
        justify-content: flex-start;
        align-items: flex-start;
    }
    /* Buttons sit on the green panel — give them contrast against it */
    .hero--mobile-stack .hero-actions .btn--green {
        background: var(--white);
        color: var(--green-dark);
        border-color: var(--white);
    }
    .hero--mobile-stack .hero-actions .btn--white {
        background: transparent;
        color: var(--white);
        border-color: rgba(255,255,255,0.65);
    }
}
/* Multi-image cross-fade — when a slide has more than one background image,
   only the "active" slot is visible; JS rotates which slot is active on a timer.
   A slide with a single image just has one always-active slot (opacity:1, no fade). */
.hero-bg-slot { opacity: 0; transition: opacity 1.8s ease; }
.hero-bg-slot--active { opacity: 1; }
.hero-slide__overlay {
    /* No dark overlay — the hero photo shows fully clear.
       Text legibility is handled by text-shadow on .hero-title/.hero-subtitle instead. */
    position: absolute;
    inset: 0;
    background: none;
    z-index: 1;
}
.hero-slide__body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-content { max-width: 760px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(60,179,74,0.18);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #6bd97b;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    font-family: var(--font-main);
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
}
.hero-title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.7);
}
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.7);
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-trust {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}
.hero-trust svg { width: 13px; height: 13px; color: var(--green); flex-shrink: 0; }

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
    align-items: center;
}
.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.hero-dot.active {
    background: var(--green);
    width: 26px;
    border-radius: 4px;
}
.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
}
.hero-arrow {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(0,0,0,0.38);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all var(--transition);
}
.hero-arrow:hover { background: var(--green); border-color: var(--green); }
.hero-arrow svg { width: 20px; height: 20px; }

/* ── Trust Strip ──────────────────────────────────────────────── */
.trust-strip {
    background: var(--charcoal);
    padding: 0;
}
.trust-strip__inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    position: relative;
    color: var(--white);
    flex: 1;
    min-width: 180px;
}
.trust-item + .trust-item::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.12);
}
.trust-item__icon {
    width: 40px; height: 40px;
    background: rgba(60,179,74,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-item__icon svg { width: 20px; height: 20px; color: var(--green); }
.trust-item__title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 3px;
}
.trust-item__sub { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

/* ── Services Grid ────────────────────────────────────────────── */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon {
    width: 52px; height: 52px;
    background: var(--green-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background var(--transition);
    flex-shrink: 0;
}
.service-card:hover .service-card__icon { background: var(--green); }
.service-card__icon svg { width: 26px; height: 26px; color: var(--green); transition: color var(--transition); }
.service-card:hover .service-card__icon svg { color: var(--white); }
.service-card__title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.service-card__desc {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 22px;
}
.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green);
    font-family: var(--font-main);
    transition: gap var(--transition);
    margin-top: auto;
}
.service-card__link svg { width: 14px; height: 14px; }
.service-card:hover .service-card__link { gap: 10px; }

/* ── Split Layout ─────────────────────────────────────────────── */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split-section--reverse .split-img { order: 2; }
.split-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.split-img img { width: 100%; height: 460px; object-fit: cover; }
/* ── Homepage about: two-image layout ───────────────────────── */
.home-about-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 160px;
    gap: 10px;
}
.home-about-imgs__main,
.home-about-imgs__secondary {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.home-about-imgs__main {
    grid-row: 1 / 3;
    border-radius: var(--radius-lg) var(--radius-lg) 60px var(--radius-lg);
}
.home-about-imgs__secondary {
    grid-row: 1 / 2;
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
}
.home-about-imgs__main img,
.home-about-imgs__secondary img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.home-about-imgs__main:hover img,
.home-about-imgs__secondary:hover img { transform: scale(1.04); }

.split-img__caption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    grid-column: 2;
    grid-row: 2;
    padding: 10px 4px;
}
.split-img__caption-num {
    font-family: var(--font-main);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    white-space: nowrap;
}
.split-img__caption-label {
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark);
    line-height: 1.4;
}
.split-img__badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}
.split-img__badge-icon {
    width: 42px; height: 42px;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.split-img__badge-icon svg { width: 22px; height: 22px; color: var(--white); }
.split-img__badge-num {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1;
}
.split-img__badge-label { font-size: 0.72rem; color: var(--muted); margin-top: 3px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.5;
}
.check-list li::before {
    content: '';
    width: 20px; height: 20px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='3' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m4.5 12.75 6 6 9-13.5'/%3E%3C/svg%3E");
    background-size: 11px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ── Stats ────────────────────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
}
.stat-item {
    padding: 40px 28px;
    text-align: center;
    background: var(--white);
}
.stat-item__num {
    font-family: var(--font-main);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item__label {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
}

/* ── Why Choose Us Cards ──────────────────────────────────────── */
.why-card {
    display: flex;
    gap: 16px;
    padding: 26px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.why-card__icon {
    width: 48px; height: 48px;
    background: var(--green-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-card__icon svg { width: 24px; height: 24px; color: var(--green); }
.why-card__title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 5px;
}
.why-card__desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── Gallery ──────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}
.gallery-grid--4 { grid-template-columns: repeat(4,1fr); }
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--off-white);
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; min-height: 300px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.gallery-item:hover .gallery-item__overlay { background: rgba(0,0,0,0.42); }
.gallery-item__zoom {
    width: 44px; height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition);
}
.gallery-item__zoom svg { width: 18px; height: 18px; color: var(--charcoal); }
.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: scale(1); }
.gallery-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.gallery-filter-btn {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--muted);
    background: var(--white);
    transition: all var(--transition);
    cursor: pointer;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}
.gallery-count {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 32px;
}
.gallery-count__num {
    font-family: var(--font-main);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}
.gallery-count__label {
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--muted);
}
/* ── Lightbox ─────────────────────────────────────────────── */
.lb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}
.lb-overlay--active { display: flex; }
.lb-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}
.lb-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius);
    object-fit: contain;
    display: block;
}
.lb-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 14px;
}
.lb-meta__title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}
.lb-meta__desc {
    flex-basis: 100%;
    font-family: var(--font-main);
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    margin: 6px 0 0;
    max-width: 640px;
}
.lb-meta__desc:empty { display: none; }
.lb-close {
    position: fixed;
    top: 20px; right: 24px;
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: background var(--transition);
}
.lb-close:hover { background: rgba(255,255,255,0.2); }
.lb-close svg { width: 20px; height: 20px; }
.lb-arrow {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: background var(--transition);
}
.lb-arrow:hover { background: rgba(255,255,255,0.22); }
.lb-arrow svg { width: 22px; height: 22px; }
.lb-arrow--prev { left: 20px; }
.lb-arrow--next { right: 20px; }

/* ── Testimonials ──────────────────────────────────────────────── */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    transition: all var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}
.testimonial-card__stars svg { width: 15px; height: 15px; }
.star-filled { color: #f59e0b; }
.star-empty  { color: var(--border); }
.testimonial-card__text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    overflow: hidden;
    flex-shrink: 0;
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__name {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 4px;
}
.testimonial-card__role { font-size: 0.76rem; color: var(--muted); }

/* ── Blog Cards ───────────────────────────────────────────────── */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.blog-card__thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--off-white);
    position: relative;
}
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.76rem;
    color: var(--muted);
    margin-bottom: 10px;
}
.blog-card__meta-item { display: flex; align-items: center; gap: 4px; }
.blog-card__meta-item svg { width: 12px; height: 12px; }
.blog-card__title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color var(--transition);
    flex: 1;
}
.blog-card:hover .blog-card__title { color: var(--green); }
.blog-card__excerpt {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
}
.blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green);
    font-family: var(--font-main);
    transition: gap var(--transition);
}
.blog-card__read-more svg { width: 13px; height: 13px; }
.blog-card:hover .blog-card__read-more { gap: 9px; }

/* ── Product/Service Cards ────────────────────────────────────── */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.product-card__thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--off-white);
    position: relative;
}
.product-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card__thumb img { transform: scale(1.05); }
.product-card__body { padding: 22px; }
.product-card__cat {
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-main);
    color: var(--green);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 7px;
    display: block;
}
.product-card__title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 9px;
    transition: color var(--transition);
    line-height: 1.35;
}
.product-card:hover .product-card__title { color: var(--green); }
.product-card__desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 18px;
}
.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
}
.product-card__price {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--green);
}
/* Category filter bar */
.cat-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.cat-filter-btn {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--muted);
    background: var(--white);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
}
.cat-filter-btn:hover,
.cat-filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

/* ── Service Show / Inner Page ────────────────────────────────── */
.page-hero {
    background: var(--off-white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    letter-spacing: 2px;
    text-transform: uppercase;
    /* Bright green + shadow, not --green-dark — this label only ever sits on
       the (now much lighter) hero photo overlay, where the darker green read
       poorly against brighter patches of the image. */
    color: #6bd97b;
    text-shadow: 0 1px 6px rgba(0,0,0,.6);
    margin-bottom: 12px;
}
.page-hero h1 { color: var(--dark-nav); margin-bottom: 14px; font-size: clamp(1.8rem,3.5vw,2.8rem); }
.page-hero p  { color: var(--muted); max-width: 580px; }

/* ── About page: image collage ───────────────────────────────── */
.about-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 120px;
    gap: 10px;
}
.about-collage__img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.about-collage__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.about-collage__img:hover img { transform: scale(1.04); }
.about-collage__img--a {
    grid-row: 1 / 3;
    border-radius: var(--radius-lg) var(--radius-lg) 60px var(--radius-lg);
}
.about-collage__img--b {
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
    grid-row: 1 / 2;
}
.about-collage__badge {
    position: absolute;
    bottom: 12px; left: 12px;
    background: var(--green);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.about-collage__badge svg { width: 13px; height: 13px; }

/* ── About page: What We Offer ───────────────────────────────── */
.awo-section {
    padding: 72px 0;
    background: #f4f6f2;
}
.awo-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}
.awo-left__img {
    border-radius: var(--radius-lg) var(--radius-lg) 60px var(--radius-lg);
    overflow: hidden;
    height: 220px;
}
.awo-left__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.awo-left__img:hover img { transform: scale(1.03); }
.awo-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #dde5d8;
}
.awo-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #dde5d8;
}
.awo-point__leaf {
    flex-shrink: 0;
    width: 22px;
    margin-top: 2px;
}
.awo-point__leaf svg { width: 22px; height: 22px; display: block; }
.awo-point p {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.75;
    margin: 0;
}
@media (max-width: 768px) {
    .awo-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── About: IMS approach list ────────────────────────────────── */
.ims-approach { margin-top: 40px; max-width: 680px; margin-left: auto; margin-right: auto; }
.ims-approach__head {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 32px;
    text-align: center;
}
.ims-approach__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
}
.ims-approach__item {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.ims-approach__item:hover { padding-left: 10px; }
.ims-approach__num {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
    opacity: 0.4;
    flex-shrink: 0;
    width: 36px;
    line-height: 1;
    transition: opacity 0.2s;
}
.ims-approach__item:hover .ims-approach__num { opacity: 1; }
.ims-approach__text {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
    font-weight: 500;
}

/* ── About: More info links ──────────────────────────────────── */
.ims-more-info { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; }
.ims-more-info__label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 14px;
}
.ims-more-info__links { display: flex; flex-direction: column; gap: 6px; }
.ims-more-info__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--green);
    transition: gap 0.2s, color 0.2s;
    width: fit-content;
}
.ims-more-info__link:hover { gap: 14px; color: var(--green-dark); }
.ims-more-info__link svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform 0.2s; }
.ims-more-info__link:hover svg { transform: translateX(3px); }

/* ── About Hero Style Labels (shared) ───────────────────────── */
.ah1-style-label,.ah2-style-label,.ah3-style-label,.ah4-style-label,.ah5-style-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--green);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
}

/* ── Style 1: Cinematic Full-bleed ──────────────────────────── */
.ah1-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.ah1-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
}
.ah1-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(5,15,8,0.9) 0%, rgba(10,30,15,0.7) 60%, rgba(0,0,0,0.3) 100%);
}
.ah1-inner { position: relative; z-index: 1; padding: 80px 0; }
.ah1-title { color: #fff; font-size: clamp(2rem,4vw,3.2rem); margin-bottom: 16px; }
.ah1-sub { color: rgba(255,255,255,0.7); max-width: 560px; margin-bottom: 40px; font-size: 1.05rem; line-height: 1.7; }
.ah1-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.ah1-stat { display: flex; flex-direction: column; }
.ah1-stat__num { font-family: var(--font-main); font-size: 2rem; font-weight: 700; color: var(--green); line-height: 1; }
.ah1-stat__lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ── Style 2: Editorial Split ───────────────────────────────── */
.ah2-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.ah2-left { background: #0b1a0e; display: flex; align-items: center; }
.ah2-left__inner { padding: 64px 56px; }
.ah2-title { color: #fff; font-size: clamp(1.8rem,3vw,2.8rem); margin-bottom: 16px; }
.ah2-sub { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.75; margin-bottom: 36px; }
.ah2-stats { display: flex; gap: 32px; }
.ah2-num { display: block; font-family: var(--font-main); font-size: 1.8rem; font-weight: 700; color: var(--green); }
.ah2-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; }
.ah2-right { background-size: cover; background-position: center; }
@media (max-width: 768px) {
    .ah2-hero { grid-template-columns: 1fr; }
    .ah2-right { min-height: 260px; }
    .ah2-left__inner { padding: 48px 24px; }
}

/* ── Style 3: Diagonal Split ────────────────────────────────── */
.ah3-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.ah3-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ah3-diag {
    position: absolute; inset: 0;
    background: linear-gradient(115deg, rgba(5,18,8,0.95) 0%, rgba(5,18,8,0.92) 50%, transparent 75%);
}
.ah3-inner { position: relative; z-index: 1; padding: 80px 0; max-width: 600px; }
.ah3-title { color: #fff; font-size: clamp(1.8rem,3.5vw,3rem); margin-bottom: 16px; }
.ah3-sub { color: rgba(255,255,255,0.68); font-size: 1rem; line-height: 1.75; }

/* ── Style 4: Typographic Statement ─────────────────────────── */
.ah4-hero {
    background: #f8faf6;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.ah4-watermark {
    position: absolute;
    right: -20px; top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-main);
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 700;
    color: var(--green);
    opacity: 0.06;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.04em;
}
.ah4-inner { position: relative; z-index: 1; }
.ah4-est {
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    margin-top: 16px;
}
.ah4-title { color: var(--charcoal); font-size: clamp(2rem,4vw,3.4rem); margin-bottom: 20px; }
.ah4-sub { color: var(--muted); max-width: 560px; font-size: 1.05rem; line-height: 1.75; }

/* ── Style 5: Timeline Banner ───────────────────────────────── */
.ah5-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.ah5-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ah5-overlay {
    /* Lightened so the photo actually shows (was ~0.85 flat, nearly opaque).
       Text keeps readable via the shadows on .ah5-title/.ah5-desc/etc. below
       rather than by darkening the whole image. */
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(5,18,8,0.48) 0%, rgba(5,18,8,0.30) 100%);
}
.ah5-inner { position: relative; z-index: 1; padding: 72px 0; width: 100%; }
.ah5-title {
    color: #fff;
    font-size: clamp(1.8rem,3.5vw,3rem);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.7);
}
.ah5-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 36px;
    text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.ah5-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.77rem;
    color: var(--muted);
    margin-bottom: 18px;
}
.breadcrumb a { color: var(--muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb svg { width: 11px; height: 11px; }
.breadcrumb--light,
.breadcrumb--light a { color: rgba(255,255,255,0.7); text-shadow: 0 1px 4px rgba(0,0,0,.6); }
.breadcrumb--light a:hover { color: var(--white); }

/* Content area */
.content-body h2 { margin: 36px 0 14px; }
.content-body h3 { margin: 28px 0 12px; color: var(--charcoal); }
.content-body p  { color: var(--text); line-height: 1.78; margin-bottom: 16px; }
.content-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.content-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.55;
}
.content-body ul li::before {
    content: '';
    width: 18px; height: 18px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='3' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m4.5 12.75 6 6 9-13.5'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}
.content-body img { border-radius: var(--radius-lg); margin: 24px 0; width: 100%; object-fit: cover; }

/* ── Callout blocks (Safety section) ───────────────────────── */
.callout-blocks { display: flex; flex-direction: column; gap: 28px; }
.callout-block {
    display: flex;
    gap: 24px;
    padding: 8px 0;
    transition: transform var(--transition);
}
.callout-block:hover { transform: translateX(4px); }
.callout-block__icon {
    flex-shrink: 0;
    color: var(--green);
}
.callout-block__icon svg { width: 36px; height: 36px; }
.callout-block__body { flex: 1; }
.callout-block__body h3 { margin: 0 0 10px; font-size: 1.05rem; color: var(--charcoal); }
.callout-block__body p  { margin: 0; color: var(--text); line-height: 1.75; font-size: 0.92rem; }
.callout-block__sub {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 16px;
    background: var(--green-light);
    color: var(--green-darker);
    font-size: 0.82rem; font-weight: 600;
    padding: 6px 14px; border-radius: 50px;
}
.callout-block__sub svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Quality cards (Quality section) ───────────────────────── */
.quality-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 12px; }
.quality-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
}
.quality-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.quality-card__icon {
    color: var(--green);
    margin-bottom: 18px;
}
.quality-card__icon svg { width: 38px; height: 38px; }
.quality-card h3 { font-size: 1rem; color: var(--dark-nav); margin: 0 0 12px; }
.quality-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin: 0 0 10px; }
.quality-card p:last-child { margin-bottom: 0; }

/* ── Environment rows (Environment section) ─────────────────── */
.env-rows { display: flex; flex-direction: column; }
.env-row {
    display: flex;
    gap: 28px;
    padding: 32px 0;
}
.env-row + .env-row { border-top: none; }
.env-row__icon {
    flex-shrink: 0;
    color: var(--green);
    margin-top: 2px;
}
.env-row__icon svg { width: 36px; height: 36px; }
.env-row__body { flex: 1; }
.env-row__body h3 { font-size: 1.05rem; color: var(--charcoal); margin: 0 0 12px; }
.env-row__body p  { font-size: 0.92rem; color: var(--text); line-height: 1.75; margin: 0 0 12px; }
.env-row__body p:last-child { margin-bottom: 0; }
.env-list { list-style: none; padding: 0; margin: 12px 0 16px; display: flex; flex-direction: column; gap: 8px; }
.env-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.9rem; color: var(--text); line-height: 1.65;
}
.env-list li::before {
    content: '';
    flex-shrink: 0;
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    margin-top: 7px;
}

/* responsive */
@media (max-width: 860px) {
    .quality-cards { grid-template-columns: 1fr; }
    .callout-block { flex-direction: column; gap: 16px; }
    .env-row { flex-direction: column; gap: 16px; }
}

/* Sidebar */
.sidebar-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.service-sidebar { position: sticky; top: calc(var(--header-h) + 20px); display: flex; flex-direction: column; gap: 18px; }
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.sidebar-widget__head { background: var(--green-dark); padding: 14px 18px; }
.sidebar-widget__head h4 { color: var(--white); font-size: 0.9rem; margin: 0; }
.sidebar-widget__body { padding: 12px; }
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 11px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text);
    transition: all var(--transition);
    font-weight: 500;
}
.sidebar-link svg { width: 13px; height: 13px; color: var(--green); flex-shrink: 0; }
.sidebar-link:hover { background: var(--green-light); color: var(--green-dark); }
.sidebar-link.current { background: var(--green); color: var(--white); }
.sidebar-link.current svg { color: var(--white); }

/* Quick quote widget */
.quick-quote-widget {
    background: var(--green);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    text-align: center;
}
.quick-quote-widget h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.quick-quote-widget p  { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.quick-quote-widget .phone-big {
    display: block;
    font-family: var(--font-main);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-decoration: none;
}
.quick-quote-widget .phone-big:hover { opacity: 0.88; }

/* Specs table */
.specs-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.specs-table th,
.specs-table td { padding: 12px 14px; text-align: left; }
.specs-table th {
    background: var(--off-white);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.76rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.specs-table td { color: var(--text); }
.specs-table tr:nth-child(even) td,
.specs-table tr:nth-child(even) th { background: var(--off-white); }

/* Image thumbs */
.product-gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--off-white);
    margin-bottom: 10px;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.product-gallery-thumb {
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.product-gallery-thumb.active { opacity: 1; outline: 2px solid var(--green); outline-offset: 2px; }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ── Portfolio Cards ──────────────────────────────────────────── */
.portfolio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--dark);
    transition: all var(--transition);
    display: block;
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.portfolio-card__thumb { aspect-ratio: 4/3; overflow: hidden; }
.portfolio-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-card__thumb img { transform: scale(1.06); }
.portfolio-card__body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.88) 0%, transparent 100%);
    padding: 40px 22px 22px;
}
.portfolio-card__type {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-main);
    padding: 3px 9px;
    border-radius: 100px;
    margin-bottom: 7px;
}
.portfolio-card__title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

/* ── CTA Banner ───────────────────────────────────────────────── */
/* ── Image Banner Section ────────────────────────────────────── */
.img-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--dark);
}
.img-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.35;
}
.img-banner__inner {
    position: relative;
    z-index: 1;
}

/* ── Service Image Card ──────────────────────────────────────── */
.service-img-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}
.service-img-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-img-card__thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: var(--off-white);
}
.service-img-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-img-card:hover .service-img-card__thumb img { transform: scale(1.07); }
.service-img-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 55%);
}
.service-img-card__body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
}
.service-img-card__title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.service-img-card__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    font-family: var(--font-main);
}
.service-img-card__link svg { width: 13px; height: 13px; }

/* ════════════════════════════════════════════════════════════
   STYLE A — Numbered Editorial
   White card · faded background number · gradient top bar
   ════════════════════════════════════════════════════════════ */
.scard-a {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.scard-a::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green) 0%, var(--dark-nav) 100%);
    transition: height 0.3s ease;
}
.scard-a:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.scard-a:hover::before { height: 8px; }
.scard-a__num {
    position: absolute;
    top: 8px; right: 18px;
    font-family: var(--font-main);
    font-size: 5rem;
    font-weight: 600;
    color: #f0f0f0;
    line-height: 1;
    user-select: none;
    pointer-events: none;
}
.scard-a__icon {
    width: 50px; height: 50px;
    background: var(--green-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background var(--transition);
    position: relative;
}
.scard-a__icon svg { width: 26px; height: 26px; color: var(--green); transition: color var(--transition); }
.scard-a:hover .scard-a__icon { background: var(--green); }
.scard-a:hover .scard-a__icon svg { color: var(--white); }
.scard-a__title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
    position: relative;
}
.scard-a__desc {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
    position: relative;
}
.scard-a__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green);
    font-family: var(--font-main);
    transition: gap var(--transition);
    position: relative;
}
.scard-a__link svg { width: 14px; height: 14px; }
.scard-a:hover .scard-a__link { gap: 10px; }

/* ════════════════════════════════════════════════════════════
   STYLE B — Glassmorphism Dark
   Frosted glass cards on dark blurred background
   ════════════════════════════════════════════════════════════ */
.scard-b-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: var(--off-white);
}
.scard-b {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.scard-b::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--green) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition);
}
.scard-b:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.scard-b:hover::before { opacity: 1; }
.scard-b::after {
    content: '';
    position: absolute;
    bottom: -12px; right: -12px;
    width: 110px; height: 110px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1' stroke='%233cb34a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 3v1m0 0c-3.314 0-6 2.686-6 6 0 2.21 1.194 4.136 2.969 5.2A3 3 0 0 0 12 19v2m0-18c3.314 0 6 2.686 6 6 0 2.21-1.194 4.136-2.969 5.2A3 3 0 0 1 12 19'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.06;
    pointer-events: none;
}
.scard-b__icon {
    width: 100px; height: 100px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.scard-b__icon img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-lg); transition: transform 0.4s ease; }
.scard-b:hover .scard-b__icon img { transform: scale(1.08); }
.scard-b__title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-nav);
    margin-bottom: 10px;
}
.scard-b__desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}
.scard-b__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
    font-family: var(--font-main);
    transition: gap var(--transition);
}
.scard-b__link svg { width: 14px; height: 14px; }
.scard-b:hover .scard-b__link { gap: 10px; }

/* ── Glass cards (services listing page) ───────────────────── */
.scard-glass {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.scard-glass::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--green) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition);
}
.scard-glass:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.scard-glass:hover::before { opacity: 1; }
.scard-glass::after {
    content: '';
    position: absolute;
    bottom: -12px; right: -12px;
    width: 110px; height: 110px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1' stroke='%233cb34a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 3v1m0 0c-3.314 0-6 2.686-6 6 0 2.21 1.194 4.136 2.969 5.2A3 3 0 0 0 12 19v2m0-18c3.314 0 6 2.686 6 6 0 2.21-1.194 4.136-2.969 5.2A3 3 0 0 1 12 19'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.06;
    pointer-events: none;
}
.scard-glass__icon {
    width: 100px; height: 100px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.scard-glass__icon img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-lg); transition: transform 0.4s ease; }
.scard-glass:hover .scard-glass__icon img { transform: scale(1.08); }
.scard-glass__title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-nav);
    margin-bottom: 10px;
}
.scard-glass__desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}
.scard-glass__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
    font-family: var(--font-main);
    transition: gap var(--transition);
}
.scard-glass__link svg { width: 14px; height: 14px; }
.scard-glass:hover .scard-glass__link { gap: 10px; }

/* ════════════════════════════════════════════════════════════
   STYLE C — Diagonal Split
   Green triangle top-left with icon · white text area
   ════════════════════════════════════════════════════════════ */
.scard-c {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.scard-c:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.scard-c__top {
    position: relative;
    height: 100px;
    background: linear-gradient(135deg, var(--green) 0%, var(--dark-nav) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 100%);
    display: flex;
    align-items: flex-start;
    padding: 20px 24px;
}
.scard-c__icon {
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.scard-c__icon svg { width: 24px; height: 24px; color: var(--white); }
.scard-c:hover .scard-c__top { background: linear-gradient(135deg, var(--green-dark) 0%, #000 100%); }
.scard-c__body {
    padding: 20px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.scard-c__title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.scard-c__desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}
.scard-c__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green);
    font-family: var(--font-main);
    transition: gap var(--transition);
}
.scard-c__link svg { width: 14px; height: 14px; }
.scard-c:hover .scard-c__link { gap: 10px; }

/* ════════════════════════════════════════════════════════════
   STYLE D — Horizontal Side Image
   Image left · content right · full horizontal layout
   ════════════════════════════════════════════════════════════ */
.scard-d-grid { display: flex; flex-direction: column; gap: 16px; }
.scard-d {
    display: grid;
    grid-template-columns: 180px 1fr;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,0,0,0.07);
    transition: all var(--transition);
    align-items: stretch;
}
.scard-d:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.scard-d__img {
    position: relative;
    overflow: hidden;
    background: var(--off-white);
}
.scard-d__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.scard-d:hover .scard-d__img img { transform: scale(1.08); }
.scard-d__accent {
    position: absolute;
    top: 0; right: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--green) 0%, var(--dark-nav) 100%);
}
.scard-d__body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.scard-d__cat {
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green);
    margin-bottom: 6px;
}
.scard-d__title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
    line-height: 1.3;
}
.scard-d__desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px;
}
.scard-d__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green);
    font-family: var(--font-main);
    transition: gap var(--transition);
    margin-top: auto;
}
.scard-d__link svg { width: 13px; height: 13px; }
.scard-d:hover .scard-d__link { gap: 9px; }

/* Responsive for D */
@media (max-width: 600px) {
    .scard-d { grid-template-columns: 1fr; }
    .scard-d__img { height: 160px; }
    .scard-d:hover { transform: translateY(-3px) translateX(0); }
}

/* ── Work Grid ───────────────────────────────────────────────── */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}
.work-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--off-white);
}
.work-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.work-item:hover img { transform: scale(1.05); }
.work-item--tall { grid-row: span 2; }
.work-item--wide { grid-column: span 2; }
.work-item--sq { aspect-ratio: 1; }
.work-item--land { aspect-ratio: 4/3; }

.cta-banner {
    background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-dark) 40%, var(--green) 100%);
    padding: 68px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -60%; right: -8%;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.cta-banner__inner {
    position: relative; z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-banner__text h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner__text p  { color: rgba(255,255,255,0.78); margin: 0; font-size: 1rem; }
.cta-banner__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Location pages ───────────────────────────────────────── */

/* Intro stats + text split */
.loc-intro-section { padding-bottom: 0; }
.loc-intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}
.loc-intro-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-right: 1px solid var(--border);
    padding-right: 60px;
}
.loc-stat__num {
    display: block;
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}
.loc-stat__label {
    display: block;
    font-family: var(--font-main);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
}

/* Services grid */
.loc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.loc-svc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.loc-svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.loc-svc-card__icon {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}
.loc-svc-card__icon img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.loc-svc-card:hover .loc-svc-card__icon img { transform: scale(1.05); }
.loc-svc-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.loc-svc-card h3 {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.loc-svc-card p {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
}
.loc-svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-main);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--green);
    margin-top: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap var(--transition);
}
.loc-svc-card:hover .loc-svc-card__link { gap: 10px; }

/* Split image + content */
.loc-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.loc-split__img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
}
.loc-split__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.loc-split__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.loc-feature-list {
    list-style: none;
    margin: 16px 0 20px;
    padding: 0;
}
.loc-feature-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.95rem;
}
.loc-feature-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
}

/* Why section — dark gradient with glass cards */
.loc-why-section {
    background: var(--off-white);
    padding: 80px 0;
}
.loc-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.loc-why-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
}
.loc-why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.loc-why-card h3 {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-nav);
    margin-bottom: 10px;
}
.loc-why-card p {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.7;
}

/* Two column content layout */
.loc-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
@media (max-width: 900px) {
    .loc-two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* Green checklist */
.loc-checklist-green {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}
.loc-checklist-green li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--muted);
    font-size: 0.95rem;
}
.loc-checklist-green li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.8' stroke='%233cb34a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 10.5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1 1 15 0Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* 6-card why grid — 3 columns */
.loc-why-grid--6 {
    grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 900px) {
    .loc-why-grid--6 { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
    .loc-why-grid--6 { grid-template-columns: 1fr !important; }
}

/* Contact + image block */
.loc-contact-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.loc-contact-block__img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.loc-contact-block__img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}
@media (max-width: 900px) {
    .loc-contact-block { grid-template-columns: 1fr; }
}

/* Embedded service-area map (Google Maps, no API key) */
.area-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin-top: 20px;
}
.area-map iframe { width: 100%; height: 280px; display: block; border: 0; }
.area-map--tall iframe { height: 340px; }
.area-map img { width: 100%; height: auto; display: block; }

/* Desktop/mobile text swap for the "shown in the map to the right/below" note */
.map-note-mobile { display: none; }
@media (max-width: 960px) {
    .map-note-desktop { display: none; }
    .map-note-mobile { display: inline; }
}

/* Other locations */
.loc-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 32px;
}
.loc-link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.loc-link-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.loc-link-card__marker {
    width: 24px; height: 24px;
    color: var(--green);
    flex-shrink: 0;
}
.loc-link-card__text { flex: 1; }
.loc-link-card__title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}
.loc-link-card__sub {
    font-size: 0.82rem;
    color: var(--muted);
}
.loc-link-card__arrow {
    width: 18px; height: 18px;
    color: var(--muted);
    flex-shrink: 0;
    transition: transform var(--transition), color var(--transition);
}
.loc-link-card:hover .loc-link-card__arrow {
    transform: translateX(4px);
    color: var(--green);
}

/* Responsive */
@media (max-width: 900px) {
    .loc-intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .loc-intro-stats { flex-direction: row; border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 32px; }
    .loc-services-grid { grid-template-columns: 1fr 1fr; }
    .loc-split { grid-template-columns: 1fr; }
    .loc-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .loc-services-grid { grid-template-columns: 1fr; }
    .loc-why-grid { grid-template-columns: 1fr; }
    .loc-intro-stats { flex-direction: column; }
}

/* Phone CTA band */
.phone-band {
    background: var(--charcoal);
    padding: 24px 0;
}
.phone-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.phone-band__text h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.phone-band__text p  { color: rgba(255,255,255,0.55); margin: 0; font-size: 0.85rem; }
.phone-band__num {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}
.phone-band__num svg { width: 28px; height: 28px; }
.phone-band__num:hover { color: var(--white); }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-family: var(--font-main);
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.form-label .req { color: var(--green); margin-left: 2px; }
.form-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    font-size: 0.92rem;
    color: var(--charcoal);
    background: #f4f6f4;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow var(--transition), background var(--transition);
    outline: none;
}
.form-input::placeholder { color: #b0b8b0; }
.form-input:focus {
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(60,179,74,0.16), 0 2px 12px rgba(0,0,0,0.08);
}
.form-input.is-error { background: #fff5f5; box-shadow: 0 0 0 3px rgba(239,68,68,0.12); }
textarea.form-input { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-select {
    width: 100%;
    padding: 14px 40px 14px 18px;
    border-radius: var(--radius-lg);
    font-size: 0.92rem;
    color: var(--charcoal);
    background: #f4f6f4;
    border: none;
    cursor: pointer;
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow var(--transition), background var(--transition);
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}
.form-select:focus { background: var(--white); box-shadow: 0 0 0 3px rgba(60,179,74,0.16), 0 2px 12px rgba(0,0,0,0.08); }
.form-note {
    font-size: 0.76rem;
    color: var(--green-darker);
    margin-top: 6px;
    background: var(--green-light);
    padding: 9px 12px;
    border-radius: 6px;
    line-height: 1.55;
}
.form-err { font-size: 0.76rem; color: #ef4444; margin-top: 4px; }
.alert {
    padding: 13px 16px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}
.alert svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.alert--error   { background: #fef2f2; color: #dc2626; }
.alert--success { background: var(--green-light); color: var(--green-darker); }

/* Contact info card */
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    color: var(--text);
    box-shadow: var(--shadow-md);
}
.contact-info-card h3 { color: var(--dark-nav); margin-bottom: 6px; }
.contact-info-card > p { color: var(--muted); margin-bottom: 28px; font-size: 0.88rem; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
}
.contact-info-item__icon {
    width: 40px; height: 40px;
    background: var(--green-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-item__icon svg { width: 18px; height: 18px; color: var(--green-dark); }
.contact-info-item__label {
    font-size: 0.68rem;
    font-weight: 700;
    font-family: var(--font-main);
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
}
.contact-info-item__value {
    font-size: 0.9rem;
    color: var(--dark-nav);
    font-weight: 500;
}
.contact-info-item__value a { color: var(--dark-nav); transition: color var(--transition); }
.contact-info-item__value a:hover { color: var(--green-dark); }
.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--green-light);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 0.76rem;
    color: var(--green-darker);
    margin: 4px 3px 0 0;
    transition: all var(--transition);
}
.area-tag svg { width: 11px; height: 11px; color: var(--green-dark); }
.area-tag:hover { border-color: rgba(60,179,74,0.4); color: var(--green-darker); }

.suburb-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; max-width: 900px; margin: 0 auto; }
.suburb-cloud .area-tag { font-size: 0.82rem; padding: 6px 14px; }

/* ── Success Page ─────────────────────────────────────────────── */
.success-wrap {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}
.success-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 560px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.success-icon {
    width: 72px; height: 72px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}
.success-icon svg { width: 36px; height: 36px; color: var(--green); }
.success-card h2 { margin-bottom: 10px; }
.success-card > p { color: var(--muted); margin-bottom: 28px; }
.enquiry-ref {
    display: inline-block;
    background: var(--green-light);
    border-radius: 100px;
    padding: 6px 18px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--green-darker);
    margin-bottom: 28px;
}
.enquiry-details { text-align: left; margin-bottom: 28px; }
.enquiry-row {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.88rem;
}
.enquiry-row__label { font-weight: 600; font-family: var(--font-main); color: var(--charcoal); min-width: 110px; flex-shrink: 0; }
.enquiry-row__value { color: var(--muted); }

/* ── About ────────────────────────────────────────────────────── */
.about-intro p { font-size: 1.05rem; line-height: 1.8; color: var(--text); }
.management-block {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin: 28px 0;
}
.management-block h4 { color: var(--dark-nav); margin-bottom: 10px; }
.management-block > p { color: var(--text) !important; }
.cert-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.cert-badge {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 9px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-nav);
    font-family: var(--font-main);
}

/* ── Error Pages ──────────────────────────────────────────────── */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.error-page__code { font-family: var(--font-main); font-size: 7rem; font-weight: 500; color: var(--green); line-height: 1; opacity: 0.18; }
.error-page h1 { margin: -12px 0 14px; }
.error-page p { color: var(--muted); max-width: 400px; margin: 0 auto 28px; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--off-white); border-top: 1px solid var(--border); }
.footer-top {
    padding: 60px 0 48px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 18px;
}
.footer-logo__img {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
}
.footer-brand-desc {
    font-size: 0.84rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 22px;
}
.footer-contact-quick { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.footer-contact-quick a {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.84rem;
    color: var(--text);
    transition: color var(--transition);
}
.footer-contact-quick a:hover { color: var(--green-dark); }
.footer-contact-quick a svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }
.footer-social { display: flex; gap: 9px; }
.footer-social-link {
    width: 34px; height: 34px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--muted);
}
.footer-social-link:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-social-link svg { width: 14px; height: 14px; }
.footer-col-title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--dark-nav);
    margin-bottom: 18px;
    padding-bottom: 10px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    font-size: 0.84rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all var(--transition);
}
.footer-links a svg { width: 11px; height: 11px; color: var(--green); flex-shrink: 0; }
.footer-links a:hover { color: var(--green-dark); padding-left: 3px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.82rem;
    color: var(--muted);
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--muted); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--green-dark); }
.footer-area { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--muted); padding: 4px 0; text-decoration: none; transition: color var(--transition); }
a.footer-area:hover { color: var(--green-dark); }
.footer-area svg { width: 12px; height: 12px; color: var(--green); flex-shrink: 0; }
.footer-divider { display: none; }
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
}
.footer-copy { font-size: 0.8rem; color: var(--muted); margin: 0; }
.footer-copy strong { color: var(--dark-nav); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: var(--muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--green-dark); }

/* ── Back to Top ──────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 28px; right: 48px;
    width: 42px; height: 42px;
    background: var(--green);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    transform: translateY(12px);
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(60,179,74,0.4);
    cursor: pointer;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--green-dark); }
.back-to-top svg { width: 18px; height: 18px; }

/* Float phone (mobile) */
.float-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 300;
    box-shadow: 0 -3px 16px rgba(0,0,0,0.2);
}
.float-cta__call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 40%;
    padding: 14px 10px;
    background: var(--green-darker);
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.float-cta__call svg { width: 16px; height: 16px; }
.float-cta__quote {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 14px 10px;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}

/* ── Pagination ───────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; margin-top: 48px; }
.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px; height: 38px;
    border-radius: var(--radius);
    font-size: 0.84rem;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--text);
    transition: all var(--transition);
    padding: 0 8px;
}
.pagination-link:hover { border-color: var(--green); color: var(--green); }
.pagination-link.active { background: var(--green); border-color: var(--green); color: var(--white); }
.pagination-link.disabled { opacity: 0.4; pointer-events: none; }

/* ── Scroll Reveal ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .sidebar-layout { grid-template-columns: 1fr 280px; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr 320px; }
}

@media (max-width: 960px) {
    .header-nav, .header-phone-link { display: none; }
    .header-cta .btn { display: none; }
    .header-hamburger { display: flex; }
    .split-section { gap: 36px; }
    .sidebar-layout { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .trust-strip__inner { justify-content: flex-start; }
    .trust-item { min-width: 50%; }
}

@media (max-width: 768px) {
    .topbar__item--desktop { display: none; }
    .section { padding: 56px 0; }
    .section--lg { padding: 64px 0; }
    .grid-2, .split-section { grid-template-columns: 1fr; gap: 24px; }
    .split-section--reverse .split-img { order: 0; }
    .split-img img { height: 300px; }
    .grid-3 { grid-template-columns: 1fr 1fr; gap: 18px; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .work-grid { grid-template-columns: 1fr 1fr; }
    .work-item--tall { grid-row: span 1; }
    .work-item--wide { grid-column: span 1; }
    .img-banner { padding: 72px 0; }
    .img-banner__bg { background-attachment: scroll; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .gallery-grid--4 { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .cta-banner__inner { flex-direction: column; text-align: center; }
    .cta-banner__actions { justify-content: center; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    .phone-band__inner { flex-direction: column; text-align: center; gap: 12px; }
    .trust-item { min-width: 100%; }
    .float-cta { display: flex; }
    .mobile-nav { padding-bottom: 80px; }
    body { padding-bottom: 60px; }
    .back-to-top { bottom: 72px; }
    .hero { min-height: 460px; }
    .hero-title { font-size: 2.3rem; }
    .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
    .form-row { grid-template-columns: 1fr; }
    .success-card { padding: 32px 22px; }
}

/* ── "Tap to Call" on mobile — every phone link, one attribute selector so
   nothing gets missed and any future phone link is covered automatically.
   Two treatments depending on what kind of element the link is:
   1. Button-style CTAs (.btn) get their own centred second line.
   2. Everything else (footer, topbar, sidebar widgets, contact info) gets a
      small inline pill right after the number, using currentColor so it
      matches whatever text colour that context already uses.
   The bottom floating "Call Us" bar is excluded — it's too narrow for this
   and "Call Us" already reads as the same call-to-action. ── */
@media (max-width: 768px) {
    /* A wrapping inline-flex button auto-sizes to its UNWRAPPED (single-line)
       content width even once it wraps, leaving the box wider than what's
       visible — so these switch to normal block flow instead, which sizes
       to content correctly with a real second line. */
    a.btn[href="tel:0419255408"] {
        display: block;
        width: fit-content;
        max-width: 100%;
        text-align: center;
    }
    a.btn[href="tel:0419255408"] svg {
        display: inline-block;
        vertical-align: middle;
        margin-right: 8px;
    }
    a.btn[href="tel:0419255408"]::after {
        content: "Tap to Call";
        display: block;
        text-align: center;
        font-size: 0.64rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        opacity: 0.8;
        margin-top: 7px;
    }

    a[href="tel:0419255408"]:not(.btn):not(.float-cta__call)::after {
        content: "Tap to Call";
        display: inline-block;
        margin-left: 8px;
        padding: 2px 8px;
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: inherit;
        opacity: 0.85;
        border: 1px solid currentColor;
        border-radius: 100px;
        white-space: nowrap;
        vertical-align: middle;
    }

    /* Bottom floating "Call Us" bar — its width is a fixed 40%, not auto, so
       it doesn't have the wrapping-flex sizing bug the buttons above had;
       a plain flex-wrap + second line works fine here. */
    .float-cta__call {
        flex-wrap: wrap;
        row-gap: 1px;
        padding: 8px 10px;
    }
    .float-cta__call::after {
        content: "Tap to Call";
        flex-basis: 100%;
        text-align: center;
        font-size: 0.58rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        opacity: 0.8;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .grid-3 { grid-template-columns: 1fr; }
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.35rem; }
    .btn--lg { padding: 14px 24px; font-size: 0.88rem; }
    .stat-item { padding: 28px 16px; }
}

/* ── About section background ────────────────────────────────── */
.about-section {
    background-color: #fff;
    position: relative;
}
.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/img/trees-outline.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    opacity: 0.25;
    pointer-events: none;
}

/* ── Quote Separator Previews ────────────────────────────────── */
.qsep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.qsep-preview {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px 26px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.qsep-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.qsep-quote {
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.75;
    color: var(--charcoal);
    margin: 0;
    flex: 1;
}
.qsep-author {
    font-size: 0.8rem;
    color: var(--muted);
}

/* A — solid line (current) */
.qsep-quote--a {
    border-left: 3px solid var(--green);
    padding-left: 20px;
}

/* B — decorative " mark */
.qsep-quote--b {
    position: relative;
    padding-left: 52px;
}
.qsep-quote--b p {
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.75;
    color: var(--charcoal);
    margin: 0;
}
.qsep-bigquote {
    position: absolute;
    left: 0; top: -10px;
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--green);
    opacity: 0.25;
    font-style: normal;
    pointer-events: none;
    user-select: none;
}

/* C — leaf icon */
.qsep-quote--c {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.qsep-quote--c p {
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.75;
    color: var(--charcoal);
    margin: 0;
}
.qsep-leaf {
    flex-shrink: 0;
    width: 28px;
    margin-top: 2px;
}
.qsep-leaf svg { width: 28px; height: 28px; display: block; }

/* D — gradient fade bar */
.qsep-quote--d {
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, var(--green) 0%, transparent 100%) 1;
    padding-left: 20px;
}

/* E — corner bracket */
.qsep-quote--e {
    position: relative;
    padding: 14px 0 0 20px;
}
.qsep-quote--e::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 18px; height: 18px;
    border-top: 3px solid var(--green);
    border-left: 3px solid var(--green);
    border-radius: 2px 0 0 0;
}

@media (max-width: 900px) { .qsep-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .qsep-grid { grid-template-columns: 1fr; } }

/* ── Why Style 3: Two-column split ───────────────────────────── */
.why3-split {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
}
.why3-split__left .section-label { margin-bottom: 10px; }
.why3-split__left .section-title { margin-bottom: 0; }
.why3-split__left .divider { margin: 20px 0 28px; }
.why3-split .why3-list { }
.why3-split .why3-row { grid-template-columns: 56px 1fr 96px; gap: 18px; }

/* collage */
.why3-collage {
    display: grid;
    grid-template-rows: 260px 200px;
    gap: 14px;
    position: sticky;
    top: 100px;
}
.why3-collage__img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.why3-collage__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.why3-collage__img:hover img { transform: scale(1.04); }
.why3-collage__img--top { border-radius: var(--radius-lg) var(--radius-lg) 80px var(--radius-lg); }
.why3-collage__img--bottom { border-radius: var(--radius-lg) 80px var(--radius-lg) var(--radius-lg); }
.why3-collage__img--bottom::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 40%, rgba(15,40,20,0.55) 100%);
    border-radius: inherit;
}
.why3-collage__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 40%, transparent 70%);
    pointer-events: none;
}
.why3-collage__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}
.why3-collage__badge-num {
    font-family: var(--font-main);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.why3-collage__badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .why3-split { grid-template-columns: 1fr; gap: 48px; }
    .why3-collage { position: static; grid-template-columns: 1fr 1fr; grid-template-rows: 240px; }
    .why3-collage__img--top { border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 60px; }
    .why3-collage__img--bottom { border-radius: var(--radius-lg) 60px var(--radius-lg) var(--radius-lg); }
}
@media (max-width: 600px) {
    .why3-collage { grid-template-columns: 1fr; grid-template-rows: 220px 180px; }
}

/* ══ Testimonial Style 1: Full-width Pull Quote ══════════════════ */
.t1-section {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    text-align: center;
}
.t1-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
}
.t1-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,18,9,0.88) 0%, rgba(10,28,14,0.82) 100%);
}
.t1-wrap { position: relative; }
.t1-head { margin-bottom: 40px; }
.t1-stars { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }

.t1-slider { overflow: hidden; }
.t1-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.t1-slide {
    min-width: 100%;
    padding: 0 clamp(16px, 10vw, 180px);
    box-sizing: border-box;
    position: relative;
}
.t1-qmark {
    font-family: Georgia, serif;
    font-size: clamp(8rem, 18vw, 16rem);
    line-height: 0.6;
    color: var(--green);
    opacity: 0.12;
    position: absolute;
    top: -20px; left: clamp(16px, 10vw, 180px);
    pointer-events: none;
    user-select: none;
}
.t1-quote {
    font-family: var(--font-main);
    font-size: clamp(1.25rem, 2.8vw, 2rem);
    font-style: italic;
    line-height: 1.65;
    color: rgba(255,255,255,0.92);
    margin: 0 0 48px;
    position: relative;
}
.t1-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.t1-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #1a4a22);
    border: 3px solid rgba(74,197,94,0.5);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1.2rem;
    overflow: hidden; flex-shrink: 0;
}
.t1-avatar img { width:100%; height:100%; object-fit:cover; }
.t1-line { width: 40px; height: 1px; background: rgba(255,255,255,0.3); flex-shrink: 0; }
.t1-name { font-weight: 700; color: #fff; font-size: 0.95rem; text-align: left; }
.t1-role { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 3px; text-align: left; }

.t1-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 48px; }
.t1-arrow {
    width: 48px; height: 48px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
}
.t1-arrow:hover { background: var(--green); border-color: var(--green); }
.t1-arrow svg { width: 18px; height: 18px; }
.t1-dots { display: flex; gap: 8px; align-items: center; }
.t1-dot {
    width: 8px; height: 8px; border-radius: 50%;
    border: none; background: rgba(255,255,255,0.3);
    cursor: pointer; transition: all 0.25s; padding: 0;
}
.t1-dot.active { background: var(--green); width: 28px; border-radius: 4px; }

/* ══ Testimonial Style 2: Asymmetric Editorial ════════════════════ */
.t2-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0px, #f4f6f2 140px);
}
.t2-head { margin-bottom: 48px; }

.t2-slider { width: 100%; }
.t2-track { position: relative; }
.t2-slide {
    display: none;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: center;
}
.t2-slide.t2-active {
    display: grid;
    animation: t2fade 0.5s ease;
}
@keyframes t2fade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.t2-initial {
    font-family: var(--font-main);
    font-size: clamp(7rem, 14vw, 11rem);
    font-weight: 700;
    color: var(--green);
    opacity: 0.15;
    line-height: 1;
    text-align: center;
    user-select: none;
    letter-spacing: -0.04em;
}
.t2-body { padding: 20px 0; }
.t2-stars { display: flex; gap: 4px; margin-bottom: 24px; }
.t2-quote {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 0 0 32px;
}
.t2-quote p {
    font-family: var(--font-main);
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    font-style: italic;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0;
    min-width: 0;
    flex: 1;
    overflow-wrap: break-word;
}
.t2-tree {
    flex-shrink: 0;
    width: 26px;
    display: block;
    margin-top: 4px;
    opacity: 0.85;
}
.t2-tree svg {
    width: 26px;
    height: auto;
    display: block;
}
.t2-author { display: flex; align-items: center; gap: 12px; }
.t2-name { font-weight: 700; color: var(--charcoal); font-size: 0.95rem; }
.t2-caption { font-size: 0.8rem; color: var(--muted); }
.t2-author .t2-name::after { content: ' ·'; color: var(--green); }

.t2-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
}
.t2-arrow {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff; color: var(--charcoal);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.25s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    flex-shrink: 0;
}
.t2-arrow:hover { background: var(--green); border-color: var(--green); color: #fff; }
.t2-arrow svg { width: 18px; height: 18px; }

/* progress-bar indicator strip */
.t2-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    flex: 1;
}
.t2-dot {
    flex: 1;
    height: 3px;
    border: none;
    background: #dce5da;
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
}
.t2-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 2px;
}
.t2-dot.active::after {
    transform: scaleX(1);
}
.t2-dot.active {
    background: #dce5da;
}

@media (max-width: 700px) {
    .t2-slide { grid-template-columns: 1fr; gap: 0; }
    .t2-initial { display: none; }
}

/* ══ Testimonial Style 3: Infinite Marquee ═══════════════════════ */
.t3-section {
    padding: 100px 0 80px;
    background: #fff;
    overflow: hidden;
}
.t3-head { margin-bottom: 56px; }
.mt-40 { margin-top: 40px; }

.t3-marquee-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.t3-track {
    display: flex;
    gap: 20px;
    width: max-content;
}
.t3-track--fwd { animation: t3fwd 40s linear infinite; }
.t3-track--rev { animation: t3rev 40s linear infinite; }
.t3-track:hover { animation-play-state: paused; }

@keyframes t3fwd { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes t3rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.t3-item {
    flex-shrink: 0;
    width: 360px;
    padding: 28px 28px 24px;
    border: 1px solid #e8ede6;
    border-radius: 16px;
    background: #fafcf9;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.t3-item:hover {
    border-color: var(--green);
    box-shadow: 0 6px 24px rgba(74,197,94,0.1);
}
.t3-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.t3-quote {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0 0 16px;
}
.t3-author {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.02em;
}
.t3-author span { color: var(--muted); font-weight: 400; }

/* ── Testimonial Nature Slider ────────────────────────────────── */
.tslider-section {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}
.tslider-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.05);
}
.tslider-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(8,24,12,0.92) 0%, rgba(15,40,20,0.85) 50%, rgba(8,24,12,0.92) 100%);
}
.tslider-wrap { position: relative; }
.tslider-head { margin-bottom: 48px; }
.tslider-head .divider { margin-top: 20px; }

.tslider { overflow: hidden; }
.tslider__track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}
.tslider__slide {
    min-width: calc(100% / 3);
    padding: 0 12px;
    box-sizing: border-box;
}
.tslider__card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 36px 32px 32px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: border-color 0.3s, background 0.3s;
}
.tslider__card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(74,197,94,0.35);
}
.tslider__stars { display: flex; gap: 3px; }
.tslider__quote {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.82);
    font-style: italic;
    margin: 0;
    flex: 1;
}
.tslider__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}
.tslider__avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green) 0%, #1a4a22 100%);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1rem;
    overflow: hidden; flex-shrink: 0;
    border: 2px solid rgba(74,197,94,0.4);
}
.tslider__avatar img { width: 100%; height: 100%; object-fit: cover; }
.tslider__name { font-weight: 700; color: #fff; font-size: 0.9rem; }
.tslider__role { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ── Light editorial card ─────────────────────────────────────── */
.tslider__card--light {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 20px;
    padding: 44px 36px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    gap: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tslider__card--light:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(74,197,94,0.14), 0 4px 16px rgba(0,0,0,0.08);
    background: #fff;
    border-color: transparent;
}
.tslider__card-qmark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 9rem;
    line-height: 0.7;
    color: var(--green);
    opacity: 0.1;
    position: absolute;
    top: 20px; left: 24px;
    pointer-events: none;
    user-select: none;
    font-weight: 900;
    transition: opacity 0.3s;
}
.tslider__card--light:hover .tslider__card-qmark { opacity: 0.18; }
.tslider__card--light .tslider__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.tslider__quote--light {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
    font-style: italic;
    margin: 0 0 28px;
    flex: 1;
    position: relative;
    z-index: 1;
}
.tslider__card-foot {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.tslider__avatar--light {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--green-light);
    border: 3px solid var(--green);
    display: flex; align-items: center; justify-content: center;
    color: var(--green); font-weight: 700; font-size: 1.1rem;
    overflow: hidden; flex-shrink: 0;
}
.tslider__avatar--light img { width: 100%; height: 100%; object-fit: cover; }
.tslider__name--light { font-weight: 700; color: var(--charcoal); font-size: 0.92rem; }
.tslider__card--light .tslider__role { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.tslider__card-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green) 0%, #a7f3c0 100%);
    border-radius: 0 0 20px 20px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.tslider__card--light:hover .tslider__card-bar { transform: scaleX(1); }

.tslider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}
.tslider-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
    flex-shrink: 0;
}
.tslider-arrow:hover { background: var(--green); border-color: var(--green); }
.tslider-arrow svg { width: 18px; height: 18px; }
.tslider-dots { display: flex; gap: 8px; align-items: center; }
.tslider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.25s;
    padding: 0;
}
.tslider-dot.active {
    background: var(--green);
    width: 24px;
    border-radius: 4px;
}

/* light theme section & controls */
.tslider-section--light {
    background: #f4f6f2;
    padding: 100px 0 80px;
}
.tslider-section--light .tslider-head .section-label { color: var(--green); }
.tslider-arrow--light {
    border-color: #e2e8e0;
    background: #fff;
    color: var(--charcoal);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.tslider-arrow--light:hover { background: var(--green); border-color: var(--green); color: #fff; }
.tslider-controls--light .tslider-dot { background: #c8d4c4; }
.tslider-controls--light .tslider-dot.active { background: var(--green); }

@media (max-width: 1023px) {
    .tslider__slide { min-width: 50%; }
}
@media (max-width: 639px) {
    .tslider__slide { min-width: 100%; }
    .tslider-section { padding: 72px 0 60px; }
}

/* ── Why Style 2: Dark Forest Glassmorphism ───────────────────── */
.why2-section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    background: #0b1a10;
}
.why2-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    filter: blur(3px);
    transform: scale(1.05);
}
.why2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.why2-item {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px 28px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transition: all var(--transition);
}
.why2-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(74,197,94,0.4);
    transform: translateY(-5px);
}
.why2-icon {
    width: 64px; height: 64px;
    background: rgba(74,197,94,0.15);
    border: 1px solid rgba(74,197,94,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why2-icon svg { width: 30px; height: 30px; color: var(--green); }
.why2-title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.why2-desc { font-size: 0.85rem; color: rgba(255,255,255,0.62); line-height: 1.7; margin: 0; }

@media (max-width: 900px) {
    .why2-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .why2-grid { grid-template-columns: 1fr; }
}

/* ── Why Style 3: Alternating Feature Rows ────────────────────── */
.why3-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.why3-row {
    display: grid;
    grid-template-columns: 72px 1fr 120px;
    align-items: center;
    gap: 28px;
    padding: 36px 0;
    transition: background var(--transition);
}
.why3-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.why3-row:hover { background: var(--green-light); border-radius: var(--radius); padding-left: 16px; padding-right: 16px; }
.why3-icon {
    width: 64px; height: 64px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}
.why3-row:hover .why3-icon {
    background: var(--green);
}
.why3-row:hover .why3-icon svg { color: #fff; }
.why3-icon svg { width: 28px; height: 28px; color: var(--green); transition: color var(--transition); }
.why3-title {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.why3-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin: 0; }
.why3-keyword {
    font-family: var(--font-main);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green);
    opacity: 0.25;
    text-align: right;
    white-space: nowrap;
    letter-spacing: -0.02em;
    transition: opacity var(--transition);
}
.why3-row:hover .why3-keyword { opacity: 0.6; }

@media (max-width: 700px) {
    .why3-row,
    .why3-split .why3-row { grid-template-columns: 40px 1fr; gap: 16px; align-items: start; }
    .why3-keyword { display: none; }
    .why3-icon { width: 40px; height: 40px; flex-shrink: 0; }
}


/* ════════════════════════════════════════════════════════════
   FOREST-THEMED SERVICE DETAIL PAGES  (.fs-*)
   ════════════════════════════════════════════════════════════ */

/* ── Intro ───────────────────────────────────────────────── */
.fs-intro { padding: 80px 0; background: #fff; }
.fs-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.fs-intro__heading {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    margin: 2px 0 20px;
}
.fs-intro__content p {
    color: var(--text);
    line-height: 1.78;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.fs-intro__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 28px;
}
.fs-intro__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green-light);
    color: var(--green-darker);
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-main);
    padding: 7px 14px;
    border-radius: 50px;
}
.fs-intro__pill svg { width: 14px; height: 14px; flex-shrink: 0; }
.fs-intro__photo-wrap {
    position: relative;
}
.fs-intro__photo-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}
.fs-intro__photo-ground {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--green) 0%, var(--green-darker) 100%);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ── Why Choose — dark forest full-bleed ────────────────── */
.fs-why {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}
.fs-why__photo-col {
    position: relative;
    overflow: hidden;
}
.fs-why__photo-col img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.fs-why__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(255,255,255,0.35) 100%);
}
.fs-why__content-col {
    background: var(--off-white);
    display: flex;
    align-items: center;
}
.fs-why__inner { padding: 72px 60px; }
.fs-why__heading {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 700;
    color: var(--dark-nav);
    line-height: 1.25;
    margin: 2px 0 20px;
}
.fs-why__list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 18px; }
.fs-why__item { display: flex; align-items: flex-start; gap: 14px; font-size: 0.9rem; color: var(--text); line-height: 1.65; }
.fs-why__item strong { color: var(--dark-nav); }
.fs-why__leaf { flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; }
.fs-why__leaf svg { width: 22px; height: 22px; display: block; }

/* ── Process — forest floor ─────────────────────────────── */
.fs-process { padding: 80px 0; background: #f0f5f0; position: relative; overflow: hidden; }
.fs-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/img/trees-outline.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    opacity: 0.07;
    pointer-events: none;
}
.fs-process__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 48px;
}
.fs-process__steps { display: flex; flex-direction: column; position: relative; }
.fs-process__steps::before { display: none; }
.fs-process__step {
    display: flex;
    gap: 20px;
    padding: 0 0 36px 0;
    position: relative;
}
.fs-process__num {
    background: var(--green);
    width: 36px; height: 36px;
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px #f0f5f0;
    margin-top: 2px;
    letter-spacing: 0;
}
.fs-process__num-text {
    font-family: var(--font-main);
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    transform: rotate(-45deg);
    display: block;
}
.fs-process__step-body { flex: 1; padding-top: 4px; }
.fs-process__step-body h4 { font-size: 1rem; color: var(--charcoal); margin: 0 0 6px; }
.fs-process__step-body p  { font-size: 0.88rem; color: var(--text); line-height: 1.7; margin: 0; }
.fs-process__cta { padding-left: 56px; margin-top: 4px; }
.fs-process__photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.fs-process__photo img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}
.fs-process__photo-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: rgba(5,14,6,0.85);
    backdrop-filter: blur(8px);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--font-main);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex; align-items: center; gap: 8px;
    border: 1px solid rgba(60,179,74,0.3);
}
.fs-process__photo-badge svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── When Necessary — full bleed ────────────────────────── */
.fs-when {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}
.fs-when__photo {
    position: relative;
    overflow: hidden;
    order: 1;
}
.fs-when__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.fs-when__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent 60%, rgba(255,255,255,0.3) 100%);
}
.fs-when__content {
    background: var(--off-white);
    display: flex;
    align-items: center;
    order: 2;
}
.fs-when__inner { padding: 72px 60px; }
.fs-when__heading {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 700;
    color: var(--dark-nav);
    line-height: 1.25;
    margin: 2px 0 20px;
}
.fs-when__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.fs-when__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}
.fs-when__dot {
    flex-shrink: 0;
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    margin-top: 7px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .fs-intro__grid  { grid-template-columns: 1fr; gap: 40px; }
    .fs-why          { grid-template-columns: 1fr; }
    .fs-why__photo-col { height: 300px; }
    .fs-why__inner   { padding: 48px 32px; }
    .fs-process__grid { grid-template-columns: 1fr; }
    .fs-process__photo { order: -1; }
    .fs-process__photo img { height: 280px; }
    .fs-when         { grid-template-columns: 1fr; }
    .fs-when__photo  { height: 300px; order: 2; }
    .fs-when__content { order: 1; }
    .fs-when__inner  { padding: 48px 32px; }
}

/* ── Service & Safety box ───────────────────────────────── */
.fs-safety-box {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 56px 64px;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}
.fs-safety-box .section-label { justify-content: center; }
.fs-safety-box__heading {
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--dark-nav);
    margin: 2px 0 20px;
}
.fs-safety-box p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}
.fs-safety-box--left { text-align: left; }
.fs-safety-box--left p { margin: 0 0 14px; max-width: 100%; }
.fs-safety-box--left h3 {
    color: var(--green-dark);
    font-size: 1.1rem;
    font-family: 'FuturaSH-XBoldCon', var(--font-main);
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    padding-top: 28px;
    border-top: 1px solid rgba(60,179,74,0.25);
}

/* ── SES Emergency Notice ───────────────────────────────── */
.fs-ses-notice {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff8e1;
    border-left: 4px solid #f59e0b;
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow);
}
.fs-ses-notice svg { width: 28px; height: 28px; flex-shrink: 0; color: #f59e0b; margin-top: 2px; }
.fs-ses-notice strong { display: block; font-size: 0.95rem; color: var(--charcoal); margin-bottom: 8px; }
.fs-ses-notice p { font-size: 0.88rem; color: var(--text); line-height: 1.75; margin: 0; }

/* ── FAQ Accordion ───────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(60,179,74,0.35); }
.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.96rem;
    color: var(--dark-nav);
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--green); transition: transform var(--transition); }
.faq-item[open] .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer { padding: 0 24px 20px; }
.faq-item__answer p { font-size: 0.88rem; line-height: 1.75; color: var(--text); margin: 0; }
