/* ══════════════════════════════════════════════════════════════════════════
   EMERALD ENTERPRISES — 2026 site design
   Loaded after custom-style.css. Brand tokens come from custom-style.css
   (--brand-emerald-core, --brand-emerald-green, --brand-leaf-green,
    --brand-flow-blue, --brand-flame-orange, --brand-flame-amber,
    --brand-charcoal, --brand-off-white, --font-brand).

   Mobile first: every layout starts as one column and expands at
   40em (640px), 48em (768px), 64em (1024px) and 80em (1280px).
   ══════════════════════════════════════════════════════════════════════════ */

:root {
    --shell: 1240px;
    --gutter: clamp(16px, 4vw, 40px);
    --section-y: clamp(48px, 7vw, 96px);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --ink: var(--brand-charcoal);
    --ink-soft: #5F6166;
    --line: #E3EDE5;
    --shadow-sm: 0 4px 16px rgba(1, 69, 37, 0.06);
    --shadow-md: 0 10px 30px rgba(1, 69, 37, 0.10);
    --header-h: 76px;
}

/* ── Shell & section rhythm ─────────────────────────────────────────── */
.shell {
    width: 100%;
    max-width: var(--shell);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--tint { background: var(--brand-off-white); }
.section-eyebrow {
    font-size: clamp(11px, 1.4vw, 13px);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-emerald-green);
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.18;
    font-weight: 700;
    color: var(--brand-emerald-core);
    margin: 0;
}
.section-title .accent { color: var(--brand-emerald-green); }
.section-lead {
    margin-top: 14px;
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 62ch;
}
.section-head--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-head--center .section-lead { margin-inline: auto; }

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid transparent;
    border-radius: 999px;
    padding: 12px 24px;
    font-family: var(--font-brand);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn:active { transform: scale(.98); }
.btn i { font-size: 18px; }
.btn-primary { background: var(--brand-emerald-core); color: #fff; }
.btn-primary:hover { background: var(--brand-emerald-green); color: #fff; }
.btn-amber { background: var(--brand-flame-amber); color: var(--brand-emerald-core); }
.btn-amber:hover { background: #fff; color: var(--brand-emerald-core); }
.btn-outline { background: transparent; color: var(--brand-emerald-core); border-color: var(--line); }
.btn-outline:hover { border-color: var(--brand-emerald-green); color: var(--brand-emerald-green); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: #fff; color: var(--brand-emerald-core); }
.btn-block { width: 100%; }

/* ── Header ─────────────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.site-header-inner {
    width: 100%;
    max-width: var(--shell);
    margin-inline: auto;
    padding: 10px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: var(--header-h);
}
.site-logo { flex-shrink: 0; display: inline-flex; }
.site-header .logo { width: 150px; height: auto; }
.site-header .navigation {
    display: none;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
}
.site-header .nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
    padding: 6px 0;
}
.site-header .nav-link:hover,
.site-header .nav-link.is-active { color: var(--brand-emerald-green); }
.site-header .nav-link.is-active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--brand-emerald-green);
}
.site-header .drop-down { position: relative; }
.site-header .drop-button { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.site-header .drop-button button { background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }
.site-header .drop-down-content {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 230px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--brand-leaf-green);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 10px;
    z-index: 5;
}
.site-header .drop-down-list { display: flex; flex-direction: column; gap: 2px; }
.site-header .drop-down-list .nav-link { padding: 9px 12px; border-radius: 8px; }
.site-header .drop-down-list .nav-link:hover { background: #EEF5EF; }
.nav-cta { padding: 11px 20px; }
.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--brand-emerald-core);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}
body { padding-top: var(--header-h); }

@media (min-width: 64em) {
    .site-header .navigation { display: flex; }
    .menu-toggle { display: none; }
    .site-header .logo { width: 180px; }
}
/* Mobile drawer (toggled by frontend/js/script.js) */
@media (max-width: 63.99em) {
    .site-header .navigation.nav-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 14px var(--gutter) 22px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }
    .site-header .navigation.nav-open .nav-link { padding: 12px 4px; border-bottom: 1px solid var(--line); }
    .site-header .navigation.nav-open .drop-down-content {
        position: static;
        display: block;
        box-shadow: none;
        border: 0;
        border-left: 3px solid var(--brand-leaf-green);
        border-radius: 0;
        padding: 0 0 0 12px;
        margin-bottom: 6px;
    }
    .site-header .navigation.nav-open .nav-cta { margin-top: 14px; }
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero { position: relative; background: linear-gradient(135deg, #F7F8F6 0%, #E8F3EA 100%); overflow: hidden; }
.hero::after {
    content: '';
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -2px;
    height: clamp(30px, 5vw, 70px);
    background: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hero-slide { position: relative; }
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    padding-block: clamp(32px, 5vw, 72px) clamp(56px, 8vw, 110px);
}
.hero-copy { min-width: 0; }
.hero-title {
    font-size: clamp(30px, 6vw, 56px);
    line-height: 1.1;
    font-weight: 700;
    color: var(--brand-emerald-core);
    margin: 0;
}
.hero-title .accent { color: var(--brand-emerald-green); display: block; }
.hero-text {
    margin-top: 16px;
    font-size: clamp(14px, 1.7vw, 17px);
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 52ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    margin-top: 34px;
    padding: 0;
    list-style: none;
}
.hero-badge { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.hero-badge i { font-size: 24px; color: var(--brand-emerald-green); }
.hero-badge span { font-size: 12px; font-weight: 600; color: var(--ink); }
.hero-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; display: block; }
.hero .swiper-pagination { bottom: clamp(18px, 3vw, 34px) !important; z-index: 3; }

@media (min-width: 48em) {
    .hero-badges { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 64em) {
    .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
    .hero-media img { aspect-ratio: 4 / 3; }
}

/* ── About + stats ──────────────────────────────────────────────────── */
.about-grid { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; }
.about-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.about-media img { width: 100%; display: block; aspect-ratio: 16 / 11; object-fit: cover; }
.about-media figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    right: 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}
.stat-value { font-size: clamp(22px, 3.4vw, 32px); font-weight: 700; color: var(--brand-emerald-green); }
.stat-caption { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.trust-row {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item i { font-size: 22px; color: var(--brand-emerald-green); flex-shrink: 0; }
.trust-item strong { display: block; font-size: 14px; color: var(--ink); }
.trust-item span { font-size: 12px; color: var(--ink-soft); }
@media (min-width: 40em) { .trust-row { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 64em) { .about-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

/* ── Product grid ───────────────────────────────────────────────────── */
.card-grid {
    display: grid;
    gap: clamp(16px, 2.2vw, 26px);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    margin-top: clamp(28px, 4vw, 44px);
}
.pcard {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pcard:hover { transform: translateY(-6px); border-color: var(--brand-emerald-green); box-shadow: var(--shadow-md); }
.pcard-media { display: block; overflow: hidden; background: linear-gradient(160deg, #F7F8F6 0%, #E3EDE5 100%); }
.pcard-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .5s ease; }
.pcard:hover .pcard-media img { transform: scale(1.05); }
.pcard-body { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px 20px; flex: 1; }
.pcard-title { font-size: 17px; font-weight: 700; color: var(--brand-emerald-core); margin: 0; }
.pcard-title a { color: inherit; text-decoration: none; }
.pcard-title a:hover { color: var(--brand-emerald-green); }
.pcard-text { font-size: 13px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.pcard-link {
    margin-top: auto;
    padding-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-emerald-green);
    text-decoration: none;
}
.pcard-link:hover { color: var(--brand-emerald-core); gap: 10px; }

/* ── Why choose ─────────────────────────────────────────────────────── */
.why {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 8%, rgba(110, 187, 9, .20) 0%, transparent 42%),
        radial-gradient(circle at 4% 96%, rgba(11, 125, 41, .16) 0%, transparent 45%),
        linear-gradient(135deg, #F1F7F2 0%, #E8F3EA 100%);
}
.why-grid { display: grid; gap: clamp(26px, 4vw, 50px); align-items: center; }
.why-cards { display: grid; gap: clamp(14px, 2vw, 20px); grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.why-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card i { font-size: 24px; color: var(--brand-emerald-green); flex-shrink: 0; }
.why-card strong { font-size: 15px; font-weight: 700; color: var(--brand-emerald-core); line-height: 1.35; }
.why-card p { margin: 6px 0 0; font-size: 13px; line-height: 1.6; color: var(--ink-soft); }
@media (min-width: 64em) { .why-grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); } }

/* ── Testimonials ───────────────────────────────────────────────────── */
.tcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}
.tcard-quote { font-size: 30px; line-height: 1; color: var(--brand-leaf-green); font-weight: 700; }
.tcard-text { font-size: 14px; line-height: 1.7; color: var(--ink-soft); margin: 0; flex: 1; }
.tcard-stars { color: var(--brand-flame-amber); font-size: 15px; letter-spacing: 2px; }
.tcard-person { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-emerald-core);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}
.tcard-name { font-size: 14px; font-weight: 700; color: var(--brand-emerald-core); }
.tcard-role { font-size: 12px; color: var(--ink-soft); }

/* ── Guide split ────────────────────────────────────────────────────── */
.split { display: grid; gap: clamp(24px, 4vw, 48px); align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; display: block; aspect-ratio: 16 / 10; object-fit: cover; }
@media (min-width: 64em) { .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

/* ── FAQ (two columns) ──────────────────────────────────────────────── */
.faq-head { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end; justify-content: space-between; }
.faq-columns { display: grid; gap: 14px; margin-top: clamp(24px, 3vw, 36px); }
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item:hover { border-color: rgba(11, 125, 41, .45); }
.faq-item.open { border-color: var(--brand-emerald-green); box-shadow: var(--shadow-sm); }
.faq-q {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-emerald-core);
    line-height: 1.45;
}
.faq-q .faq-num { font-size: 12px; font-weight: 700; color: var(--brand-emerald-green); flex-shrink: 0; }
.faq-q h3 { font-size: inherit; font-weight: inherit; margin: 0; flex: 1; }
.faq-q .faq-sign { margin-left: auto; font-size: 20px; color: var(--brand-emerald-green); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-sign { transform: rotate(45deg); }
.faq-a { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .35s ease, opacity .3s ease, padding .3s ease; padding: 0 18px; font-size: 13.5px; line-height: 1.75; color: var(--ink-soft); }
.faq-item.open .faq-a { max-height: 600px; opacity: 1; padding-bottom: 18px; }
@media (min-width: 64em) { .faq-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 22px; } }

/* ── CTA band ───────────────────────────────────────────────────────── */
.cta-band {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--brand-emerald-core);
    color: #fff;
    padding: clamp(28px, 4vw, 48px);
    display: grid;
    gap: 20px;
    align-items: center;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -70px; right: -50px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(110, 187, 9, .30) 0%, transparent 70%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(20px, 3vw, 30px); font-weight: 700; margin: 0; line-height: 1.25; }
.cta-band p { margin: 8px 0 0; font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, .85); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 64em) {
    .cta-band { grid-template-columns: minmax(0, 1fr) auto; gap: 40px; }
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--brand-emerald-core); color: rgba(255, 255, 255, .82); }
.site-footer a { color: inherit; text-decoration: none; }
.footer-grid {
    display: grid;
    gap: clamp(28px, 4vw, 40px);
    padding-block: clamp(40px, 6vw, 72px);
}
.footer-brand p { margin: 16px 0 0; font-size: 13.5px; line-height: 1.7; max-width: 34ch; }
.site-footer .footer-logo { width: 190px; height: auto; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255, 255, 255, .35);
    font-size: 18px;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.footer-social a:hover { background: var(--brand-flame-amber); color: var(--brand-emerald-core); border-color: var(--brand-flame-amber); }
.footer-title { font-size: 15px; font-weight: 700; color: #fff; margin: 0 0 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.footer-links a:hover { color: var(--brand-flame-amber); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; font-size: 13.5px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; list-style: none; }
.footer-contact i { font-size: 18px; color: var(--brand-leaf-green); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--brand-flame-amber); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding-block: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
}
.footer-bottom nav { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--brand-flame-amber); }
@media (min-width: 40em) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64em) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; } }

/* ── Inner page headers (About, Contact, FAQ, Products, legal) ──────── */
.page-hero {
    position: relative;
    background:
        radial-gradient(circle at 88% 12%, rgba(110, 187, 9, .16) 0%, transparent 38%),
        radial-gradient(circle at 8% 92%, rgba(0, 116, 192, .10) 0%, transparent 40%),
        linear-gradient(135deg, #F7F8F6 0%, #E8F3EA 100%);
    padding-block: clamp(36px, 5vw, 64px);
}

/* ── Responsive safety net for every page ───────────────────────────── */
img, video, iframe { max-width: 100%; }
table { max-width: 100%; }
.info-table, .rates-card table { width: 100%; }
.table-scroll, .info-card { overflow-x: auto; }
.map-container iframe { width: 100%; min-height: 320px; border: 0; display: block; }
@media (max-width: 47.99em) {
    .cta-banner { flex-direction: column; text-align: center; }
    .cta-banner > div { width: 100% !important; }
    .cta-banner h2, .cta-banner h3 { width: 100% !important; }
    .filter-sticky { width: 100%; border-radius: 0; }
    .stats-bar { margin-inline: var(--gutter); }
    .breadcrumb { font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* Badge row stays aligned even if an icon glyph is missing */
.hero-badges { align-items: start; }
.hero-badge { min-height: 100%; }
.hero-badge i { display: inline-flex; min-width: 24px; min-height: 26px; align-items: center; }

/* Inner pages: keep the old page-hero blocks aligned with the fixed header */
.about-hero, .contact-hero, .faq-hero, .products-hero { padding-top: clamp(28px, 4vw, 56px); }
/* ── Hero slides use the supplied product photography as a background ──── */
.hero-slide {
    position: relative;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(247, 248, 246, .95) 0%, rgba(247, 248, 246, .86) 50%, rgba(247, 248, 246, .62) 100%);
}
.hero-grid {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, 1fr);
    min-height: clamp(460px, 56vw, 640px);
    align-content: center;
}
.hero-copy { max-width: 640px; }
.hero .swiper-pagination-bullet { background: var(--brand-emerald-core); opacity: .35; }
.hero .swiper-pagination-bullet-active { opacity: 1; }
@media (min-width: 64em) {
    .hero-slide::before {
        background: linear-gradient(90deg, rgba(247, 248, 246, .97) 0%, rgba(247, 248, 246, .92) 34%, rgba(247, 248, 246, .55) 58%, rgba(247, 248, 246, .06) 100%);
    }
    .hero-grid { grid-template-columns: minmax(0, 1fr); }
}
/* ══════════════════════════════════════════════════════════════════════════
   FULL-WIDTH PAGES — the layout shell spans the viewport (no centred
   container); inner columns keep their own responsive widths so existing
   page layouts stay intact. Long text keeps a readable measure.
   ══════════════════════════════════════════════════════════════════════════ */
:root { --gutter: clamp(16px, 5vw, 64px); }
.shell, .site-header-inner { max-width: none; }
main .max-w-215 { max-width: none; }
.section-lead, .hero-text, .legal-content p, .legal-content li, .faq-a { max-width: 92ch; }
.section-head--center .section-lead { max-width: 80ch; }

/* Stats bar: never wider than the screen on small devices */
.stats-bar { max-width: 100%; box-sizing: border-box; }
.stat-item { min-width: 0; }
@media (max-width: 47.99em) {
    .stats-bar { margin-inline: var(--gutter); width: auto; }
}
/* ── Hero fine-tuning to match the supplied reference ──────────────────── */
.hero-slide { background-position: center; }
.hero-grid { min-height: clamp(480px, 46vw, 660px); }
@media (min-width: 64em) {
    /* Product sits right of centre, copy reads over a soft brand-white fade */
    .hero-slide { background-position: 72% center; }
    .hero-slide::before {
        background: linear-gradient(90deg,
            rgba(247, 248, 246, .96) 0%,
            rgba(247, 248, 246, .88) 30%,
            rgba(247, 248, 246, .45) 52%,
            rgba(247, 248, 246, .05) 72%,
            rgba(247, 248, 246, 0) 100%);
    }
    .hero-copy { max-width: 620px; }
    .hero-title { font-size: clamp(34px, 3.6vw, 54px); }
}
@media (max-width: 63.99em) {
    .hero-slide { background-position: 60% center; }
    .hero-slide::before {
        background: linear-gradient(180deg, rgba(247, 248, 246, .96) 0%, rgba(247, 248, 246, .88) 55%, rgba(247, 248, 246, .70) 100%);
    }
}
/* ── Hero: identical 2:1 photos + the white curve visible on every slide ── */
.hero::after { display: none; }              /* replaced by a per-slide curve */
.hero, .hero .swiper-wrapper { overflow: visible; }
.hero { overflow: hidden; }
.hero-slide { overflow: hidden; }
.hero-slide::after {
    content: '';
    position: absolute;
    left: -6%;
    right: -6%;
    bottom: -2px;
    height: clamp(34px, 5vw, 78px);
    background: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 3;
    pointer-events: none;
}
/* Keep copy clear of the curve */
.hero-grid { padding-bottom: clamp(64px, 9vw, 130px); }
.hero .swiper-pagination { bottom: clamp(52px, 7vw, 92px) !important; }
/* ── Every hero slide is the same height (tallest wins), so the photo crop
      and the white curve line up identically on all slides ─────────────── */
.hero .swiper-wrapper { align-items: stretch; }
.hero .swiper-slide {
    height: auto;          /* stretch instead of sizing to its own copy */
    display: flex;
    align-items: center;
}
.hero-slide > .shell { width: 100%; }
.hero-grid { min-height: 0; }
.hero-slide { min-height: clamp(480px, 46vw, 660px); }
/* ── Statistics read as headline figures ─────────────────────────────── */
.stat-value, .stat-number {
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
}
.stat-value { font-size: clamp(26px, 3.8vw, 38px); }
.stat-number { font-size: clamp(24px, 3.4vw, 34px); }
.stat-caption, .stat-label { font-weight: 500; }
/* ══════════════════════════════════════════════════════════════════════════
   UI REFINEMENTS
   ══════════════════════════════════════════════════════════════════════════ */

/* "View Details" reads as an outline button */
.pcard-link {
    align-self: flex-start;
    margin-top: 16px;
    padding: 9px 18px;
    border: 2px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--brand-emerald-core);
    transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}
.pcard-link:hover {
    background: var(--brand-emerald-green);
    border-color: var(--brand-emerald-green);
    color: #fff;
    gap: 6px;
}

/* Hero: straight bottom edge, image height unchanged */
.hero-slide::after, .hero::after { display: none; }
.hero-grid {
    padding-top: clamp(32px, 5vw, 72px);
    padding-bottom: clamp(32px, 5vw, 72px);
}
.hero .swiper-pagination { bottom: clamp(14px, 2vw, 28px) !important; }

/* Header: transparent over the hero, solid white once the page scrolls */
.site-header {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 14px rgba(1, 69, 37, .07);
}
/* An open mobile menu always needs a solid backdrop */
.site-header:has(.navigation.nav-open) {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

/* Home page starts under the transparent header */
body.is-home { padding-top: 0; }
body.is-home .hero-grid { padding-top: calc(var(--header-h) + clamp(24px, 4vw, 60px)); }
/* ══════════════════════════════════════════════════════════════════════════
   PRODUCT GRID — four across on desktop
   ══════════════════════════════════════════════════════════════════════════ */
.card-grid--4 { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 30em) { .card-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 48em) { .card-grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 64em) { .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.card-grid--4 .pcard-media img { object-position: center center; }

/* ══════════════════════════════════════════════════════════════════════════
   ENQUIRY MODAL — 2026 redesign (overrides the older .enq-* block)
   ══════════════════════════════════════════════════════════════════════════ */
.enq-overlay { padding: clamp(12px, 3vw, 32px); }

.enq-card {
    width: min(920px, 100%);
    max-height: 94vh;
    border-radius: clamp(18px, 2vw, 28px);
    box-shadow: 0 34px 90px rgba(1, 69, 37, .28);
}

/* ── Header ── */
.enq-header {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 3.4vw, 40px) clamp(20px, 3.4vw, 44px) clamp(20px, 2.6vw, 30px);
    border-radius: clamp(18px, 2vw, 28px) clamp(18px, 2vw, 28px) 0 0;
    background: linear-gradient(135deg, #F2F8F1 0%, #EAF4E7 45%, #F7FAF5 100%);
}
.enq-header::after { display: none; }

.enq-close {
    top: clamp(14px, 1.6vw, 22px);
    right: clamp(14px, 1.6vw, 22px);
    width: 42px;
    height: 42px;
    background: #fff;
    color: var(--ink, #2B2D31);
    font-size: 22px;
    box-shadow: 0 3px 12px rgba(1, 69, 37, .12);
}
.enq-close:hover { background: #fff; color: var(--brand-emerald-green, #0B7D29); transform: rotate(90deg); }

.enq-header-copy { position: relative; z-index: 2; max-width: 34em; }

.enq-product-tag {
    background: var(--brand-emerald-core, #014525);
    border: none;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1.4px;
    padding: 8px 18px;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(1, 69, 37, .22);
}
.enq-product-tag i { font-size: 15px; }

.enq-title {
    font-size: clamp(26px, 3.6vw, 42px);
    font-weight: 900;
    line-height: 1.12;
    color: var(--brand-emerald-core, #014525);
    letter-spacing: -.5px;
}
.enq-title-accent { color: var(--brand-emerald-green, #0B7D29); }

.enq-subtitle {
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 400;
    line-height: 1.55;
    color: #5A6360;
    margin-top: 10px;
}

/* Leaf artwork + script line, decorative only */
.enq-header-art {
    position: absolute;
    top: clamp(10px, 1.6vw, 18px);
    right: clamp(52px, 5vw, 74px);
    display: none;
    align-items: flex-start;
    gap: 10px;
    z-index: 1;
    pointer-events: none;
}
.enq-header-art svg { width: clamp(90px, 10vw, 140px); height: auto; filter: drop-shadow(0 8px 16px rgba(1, 69, 37, .18)); }
.enq-script {
    margin-top: 26px;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(13px, 1.2vw, 17px);
    line-height: 1.35;
    color: var(--brand-emerald-core, #014525);
    text-align: left;
    border-bottom: 2px solid var(--brand-leaf, #6EBB09);
    padding-bottom: 4px;
}
@media (min-width: 62em) { .enq-header-art { display: flex; } }

/* Assurance strip */
.enq-assurances {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin: clamp(20px, 2.4vw, 28px) 0 0;
    padding: 0;
    list-style: none;
}
.enq-assurances li { display: flex; align-items: center; gap: 12px; }
.enq-assurance-icon {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DFF0DA;
    color: var(--brand-emerald-green, #0B7D29);
    font-size: 21px;
}
.enq-assurance-copy { display: flex; flex-direction: column; font-size: 13px; color: #6B736F; line-height: 1.35; }
.enq-assurance-copy strong { font-size: 14.5px; font-weight: 700; color: var(--ink, #2B2D31); }
@media (min-width: 44em) { .enq-assurances { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; } }

/* ── Body ── */
.enq-body {
    padding: clamp(22px, 3vw, 36px) clamp(20px, 3.4vw, 44px) clamp(24px, 3vw, 36px);
    gap: clamp(16px, 1.8vw, 22px);
    background: #fff;
    border-radius: 0 0 clamp(18px, 2vw, 28px) clamp(18px, 2vw, 28px);
}
.enq-form-row { grid-template-columns: minmax(0, 1fr); gap: clamp(14px, 1.8vw, 22px); }
@media (min-width: 40em) { .enq-form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.enq-group { gap: 9px; }
.enq-group label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink, #2B2D31);
    letter-spacing: 0;
}
.enq-req { color: #E23D28; font-weight: 700; }
.enq-counter { font-size: 12.5px; font-weight: 500; color: #9AA29E; }

/* Icon-prefixed field */
.enq-field { position: relative; display: flex; align-items: stretch; }
.enq-field-icon {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E7F2E4;
    color: var(--brand-emerald-green, #0B7D29);
    font-size: 20px;
    pointer-events: none;
    z-index: 1;
}
.enq-field--area .enq-field-icon { top: 10px; }

.enq-group .enq-field input,
.enq-group .enq-field select,
.enq-group .enq-field textarea {
    font-size: 15px;
    color: var(--ink, #2B2D31);
    background: #F5F7F4;
    border: 1.5px solid #E6EAE4;
    border-radius: 14px;
    padding: 15px 18px 15px 60px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}
.enq-group .enq-field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.enq-group .enq-field input::placeholder,
.enq-group .enq-field textarea::placeholder { color: #A7AEA9; }
.enq-group .enq-field select { cursor: pointer; }
.enq-group .enq-field input:focus,
.enq-group .enq-field select:focus,
.enq-group .enq-field textarea:focus {
    border-color: var(--brand-emerald-green, #0B7D29);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(11, 125, 41, .1);
}
.enq-group .enq-field input.enq-err,
.enq-group .enq-field select.enq-err,
.enq-group .enq-field textarea.enq-err { border-color: #E23D28; background: #FFF6F5; }

.enq-field-chevron {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #7C847F;
    pointer-events: none;
}
.enq-err-msg { font-size: 12px; }

/* ── Actions ── */
.enq-submit {
    background: linear-gradient(135deg, #0B7D29 0%, #014525 100%);
    font-size: 17px;
    font-weight: 700;
    padding: 19px 30px;
    border-radius: 14px;
    gap: 12px;
    box-shadow: 0 12px 28px rgba(1, 69, 37, .24);
    letter-spacing: .2px;
}
.enq-submit:hover { background: linear-gradient(135deg, #0F8F30 0%, #01562E 100%); box-shadow: 0 16px 34px rgba(1, 69, 37, .3); }
.enq-submit:disabled { opacity: .65; cursor: not-allowed; box-shadow: none; }
.enq-submit i { font-size: 20px; }

.enq-divider { font-size: 13px; font-weight: 600; color: #8C948F; }
.enq-divider::before, .enq-divider::after { background: #E6EAE4; }

.enq-whatsapp {
    background: #F4FAF2;
    border: 2px solid var(--brand-emerald-green, #0B7D29);
    color: var(--brand-emerald-core, #014525);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 26px;
    border-radius: 14px;
    gap: 10px;
}
.enq-whatsapp:hover { background: var(--brand-emerald-green, #0B7D29); color: #fff; filter: none; }
.enq-whatsapp i { font-size: 21px; }

.enq-foot-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    color: #8C948F;
    margin: 2px 0 0;
}
.enq-foot-note i { font-size: 16px; }

/* ── Success ── */
.enq-success { padding: clamp(40px, 6vw, 68px) clamp(20px, 3vw, 40px); gap: 16px; }
.enq-success-title { font-size: clamp(22px, 2.4vw, 28px); color: var(--brand-emerald-core, #014525); }
.enq-success-body { font-size: 15px; line-height: 1.6; }
.enq-success-close { border-radius: 12px; font-size: 15px; padding: 14px 42px; background: var(--brand-emerald-core, #014525); }
.enq-success-close:hover { background: var(--brand-emerald-green, #0B7D29); }

/* Label: asterisk hugs the text, only the counter is pushed right */
.enq-group label { justify-content: flex-start; }
.enq-group label .enq-req { margin-left: -3px; }
.enq-group label .enq-counter { margin-left: auto; }

/* Floating call/WhatsApp bubbles must not sit on top of the open modal */
.enq-overlay.show ~ .floating-buttons { opacity: 0; visibility: hidden; pointer-events: none; }
.floating-buttons { transition: opacity .25s ease, visibility .25s ease; }

/* ══════════════════════════════════════════════════════════════════════════
   INNER PAGES — hero, story, values, steps, forms, category blocks
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Page hero ── */
.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #F4F9F2 0%, #E9F3E6 100%);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--page-hero-image);
    background-size: cover;
    background-position: center right;
    opacity: .28;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(247, 250, 245, .97) 0%, rgba(247, 250, 245, .82) 42%, rgba(247, 250, 245, .35) 100%);
}
.page-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: clamp(30px, 4.6vw, 64px);
    padding-bottom: clamp(30px, 4.6vw, 64px);
}
.page-crumbs { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; }
.page-crumbs a { color: var(--ink-soft); text-decoration: none; }
.page-crumbs a:hover { color: var(--brand-emerald-green); }
.page-crumbs [aria-current] { color: var(--brand-emerald-core); font-weight: 600; }

.page-hero-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-emerald-green);
    margin: 0 0 10px;
}
.page-hero-title {
    font-size: clamp(30px, 4.6vw, 54px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.5px;
    color: var(--brand-emerald-core);
    margin: 0;
    max-width: 18em;
}
.page-hero-title .accent { color: var(--ink); }
.page-hero-tagline {
    font-size: clamp(16px, 1.6vw, 21px);
    font-weight: 700;
    color: var(--brand-emerald-green);
    margin: 14px 0 0;
}
.page-hero-lead {
    font-size: clamp(14.5px, 1.3vw, 17px);
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 14px 0 0;
    max-width: 46em;
}
.page-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(14px, 2.4vw, 38px);
    margin: clamp(22px, 2.6vw, 34px) 0 0;
    padding: 0;
    list-style: none;
}
.page-hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}
.page-hero-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DFEFD9;
    color: var(--brand-emerald-green);
    font-size: 20px;
}
.page-hero-art {
    display: none;
    position: absolute;
    top: clamp(20px, 3vw, 48px);
    right: clamp(24px, 4vw, 72px);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(15px, 1.5vw, 21px);
    line-height: 1.3;
    text-align: right;
    color: var(--brand-emerald-core);
    z-index: 3;
}
@media (min-width: 62em) { .page-hero-art { display: block; } }

/* ── Split media blocks ── */
.split--reverse .media-frame { order: 2; }
.split-copy { display: flex; flex-direction: column; justify-content: center; }
.media-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #EDF3EB;
}
.media-frame img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-caption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    padding: 11px 18px;
    border-radius: 12px;
    background: rgba(1, 69, 37, .88);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}
.media-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 12px;
    background: #fff;
    color: var(--brand-emerald-core);
    font-size: 13.5px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}
.media-badge i { font-size: 19px; color: var(--brand-emerald-green); }

/* ── Story ── */
.story-head { display: grid; gap: clamp(18px, 2.4vw, 34px); align-items: start; }
@media (min-width: 64em) { .story-head { grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); } }
.pullquote {
    margin: 0;
    padding: 18px 22px;
    border-left: 3px solid var(--brand-leaf, #6EBB09);
    background: #fff;
    border-radius: 0 14px 14px 0;
    font-size: 15px;
    font-style: italic;
    line-height: 1.6;
    color: var(--brand-emerald-core);
    box-shadow: var(--shadow-sm, 0 2px 12px rgba(1, 69, 37, .06));
}
.pullquote i { display: block; font-size: 24px; color: var(--brand-leaf, #6EBB09); margin-bottom: 6px; font-style: normal; }
.story-body { margin-top: clamp(18px, 2.2vw, 28px); max-width: 62em; }

.pillars {
    display: grid;
    gap: clamp(20px, 2.6vw, 34px);
    grid-template-columns: minmax(0, 1fr);
    margin-top: clamp(28px, 3.4vw, 46px);
}
@media (min-width: 40em) { .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 68em) { .pillars { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #DFEFD9;
    color: var(--brand-emerald-green);
    font-size: 26px;
    margin-bottom: 14px;
}
.pillar-title { font-size: 17px; font-weight: 700; color: var(--brand-emerald-core); margin: 0 0 12px; }
.pillar-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pillar-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
}
.pillar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-leaf, #6EBB09);
}

/* ── Core values chips ── */
.values-section { background: linear-gradient(140deg, #F1F8EE 0%, #E8F3E4 100%); }
.value-chips {
    display: grid;
    gap: clamp(12px, 1.6vw, 20px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: clamp(26px, 3.4vw, 42px) 0 0;
    padding: 0;
    list-style: none;
}
@media (min-width: 40em) { .value-chips { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 68em) { .value-chips { grid-template-columns: repeat(7, minmax(0, 1fr)); } }
.value-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: clamp(18px, 2vw, 26px) 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-emerald-core);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.value-chip:hover { transform: translateY(-5px); border-color: var(--brand-emerald-green); box-shadow: var(--shadow-md); }
.value-chip img { width: 44px; height: 44px; object-fit: contain; }

/* ── Credential logo strip ── */
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 56px);
    margin: clamp(26px, 3.4vw, 42px) 0 0;
    padding: clamp(22px, 3vw, 36px) clamp(18px, 3vw, 40px);
    list-style: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}
.logo-strip img {
    max-width: 130px;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .72;
    transition: filter .3s ease, opacity .3s ease;
}
.logo-strip li:hover img { filter: none; opacity: 1; }

/* ── Feature row (why-quote, hero badges) ── */
.feature-row {
    display: grid;
    gap: clamp(20px, 2.6vw, 34px);
    grid-template-columns: minmax(0, 1fr);
    margin: clamp(26px, 3.4vw, 42px) 0 0;
    padding: 0;
    list-style: none;
}
@media (min-width: 40em) { .feature-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64em) { .feature-row { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.feature-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.feature-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DFEFD9;
    color: var(--brand-emerald-green);
    font-size: 28px;
}
.feature-title { font-size: 16px; font-weight: 700; color: var(--brand-emerald-core); margin: 0; }
.feature-text { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0; max-width: 24em; }

/* ── Numbered steps ── */
.steps { margin: clamp(22px, 2.6vw, 32px) 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 18px; }
.step { display: flex; align-items: flex-start; gap: 16px; }
.step-num {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DFEFD9;
    color: var(--brand-emerald-core);
    font-size: 15px;
    font-weight: 800;
}
.step-text { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 10px 0 0; }

/* ── Contact form + map panels ── */
.contact-grid { display: grid; gap: clamp(24px, 3vw, 44px); grid-template-columns: minmax(0, 1fr); align-items: start; }
@media (min-width: 64em) { .contact-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); } }
.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: clamp(22px, 2.8vw, 36px);
    box-shadow: var(--shadow-sm, 0 2px 12px rgba(1, 69, 37, .06));
}
.panel .section-title { font-size: clamp(22px, 2.4vw, 30px); }
.cform { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.cform .form-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; }
@media (min-width: 40em) { .cform .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.cform .form-group { display: flex; flex-direction: column; gap: 8px; }
.cform label { font-size: 14px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 4px; }
.cform label .req { color: #E23D28; }
.cform input,
.cform select,
.cform textarea {
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: #F5F7F4;
    border: 1.5px solid #E6EAE4;
    border-radius: 12px;
    padding: 14px 16px;
    width: 100%;
    outline: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.cform textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.cform input::placeholder, .cform textarea::placeholder { color: #A7AEA9; }
.cform input:focus, .cform select:focus, .cform textarea:focus {
    border-color: var(--brand-emerald-green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(11, 125, 41, .1);
}
.cform .field-error-msg { font-size: 12px; color: #E23D28; display: none; align-items: center; gap: 5px; }
.cform .field-error-msg.show { display: flex; }
.cform input.field-error, .cform select.field-error, .cform textarea.field-error { border-color: #E23D28; background: #FFF6F5; }
.cform-note { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 13px; color: var(--ink-soft); margin: 0; }

.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); margin-top: 20px; }
.map-frame iframe { display: block; width: 100%; height: clamp(260px, 34vw, 380px); border: 0; }
.map-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 14px;
    background: #F1F8EE;
}
.map-note strong { display: block; font-size: 14.5px; color: var(--brand-emerald-core); }
.map-note span { font-size: 13px; color: var(--ink-soft); }

/* ── Contact info cards (hero) ── */
.info-cards {
    display: grid;
    gap: clamp(12px, 1.6vw, 20px);
    grid-template-columns: minmax(0, 1fr);
    margin: clamp(24px, 3vw, 36px) 0 0;
    padding: 0;
    list-style: none;
}
@media (min-width: 40em) { .info-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 68em) { .info-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: var(--shadow-sm, 0 2px 12px rgba(1, 69, 37, .06));
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
a.info-card:hover { transform: translateY(-4px); border-color: var(--brand-emerald-green); box-shadow: var(--shadow-md); }
.info-card-icon {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DFEFD9;
    color: var(--brand-emerald-green);
    font-size: 22px;
}
.info-card-label { font-size: 14.5px; font-weight: 700; color: var(--brand-emerald-core); margin: 0; }
.info-card-value { font-size: 13px; line-height: 1.5; color: var(--ink-soft); margin: 3px 0 0; }

/* ── Product category blocks ── */
.category-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.category-badge-pill {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--brand-emerald-green);
    background: #DFEFD9;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.category-head .section-title { margin: 0; }
.category-head .section-title a { color: inherit; text-decoration: none; }
.category-head .section-title a:hover { color: var(--brand-emerald-green); }

/* ── Newsletter strip ── */
.newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: clamp(16px, 2.4vw, 30px);
    padding: clamp(20px, 2.6vw, 30px) clamp(20px, 3vw, 38px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}
.newsletter-copy { display: flex; align-items: center; gap: 14px; }
.newsletter-copy i { font-size: 26px; color: var(--brand-emerald-green); }
.newsletter-copy strong { display: block; font-size: 16px; color: var(--brand-emerald-core); }
.newsletter-copy span { font-size: 13.5px; color: var(--ink-soft); }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input {
    font-family: inherit;
    font-size: 14px;
    padding: 13px 16px;
    min-width: 220px;
    border: 1.5px solid #E6EAE4;
    border-radius: 12px;
    background: #F5F7F4;
    outline: none;
}
.newsletter input:focus { border-color: var(--brand-emerald-green); background: #fff; }

/* ══════════════════════════════════════════════════════════════════════════
   ENQUIRY MODAL — compact: the whole form fits one screen, no leaf/script art
   ══════════════════════════════════════════════════════════════════════════ */
.enq-header-art { display: none !important; }

.enq-card { max-height: 96vh; }

.enq-header { padding: clamp(18px, 2vw, 24px) clamp(18px, 2.6vw, 34px) clamp(16px, 1.8vw, 20px); }
.enq-close { width: 36px; height: 36px; font-size: 19px; top: 12px; right: 12px; }
.enq-product-tag { font-size: 11px; padding: 5px 13px; margin-bottom: 8px; letter-spacing: 1.2px; }
.enq-product-tag i { font-size: 13px; }
.enq-title { font-size: clamp(22px, 2.5vw, 31px); }
.enq-subtitle { font-size: clamp(13px, 1.1vw, 14.5px); margin-top: 6px; line-height: 1.45; }

.enq-assurances { margin-top: clamp(14px, 1.6vw, 18px); gap: 10px; }
.enq-assurance-icon { width: 36px; height: 36px; font-size: 18px; }
.enq-assurance-copy { font-size: 12px; }
.enq-assurance-copy strong { font-size: 13.5px; }

.enq-body { padding: clamp(16px, 2vw, 22px) clamp(18px, 2.6vw, 34px) clamp(18px, 2vw, 24px); gap: clamp(11px, 1.2vw, 14px); }
.enq-form-row { gap: clamp(11px, 1.4vw, 18px); }
.enq-group { gap: 6px; }
.enq-group label { font-size: 13px; }
.enq-counter { font-size: 11.5px; }

.enq-field-icon { width: 34px; height: 34px; top: 6px; left: 6px; font-size: 17px; border-radius: 9px; }
.enq-field--area .enq-field-icon { top: 8px; }
.enq-group .enq-field input,
.enq-group .enq-field select,
.enq-group .enq-field textarea {
    font-size: 14px;
    padding: 11px 15px 11px 50px;
    border-radius: 11px;
}
.enq-group .enq-field textarea { min-height: 74px; line-height: 1.5; }

.enq-submit { font-size: 15px; padding: 14px 26px; border-radius: 12px; gap: 9px; }
.enq-submit i { font-size: 17px; }
.enq-divider { font-size: 12px; }
.enq-whatsapp { font-size: 14px; padding: 12px 22px; border-radius: 12px; }
.enq-whatsapp i { font-size: 18px; }
.enq-foot-note { font-size: 12px; }
.enq-foot-note i { font-size: 14px; }

/* Short viewports (laptops): squeeze a little further so nothing is cut off */
@media (max-height: 820px) {
    .enq-title { font-size: 24px; }
    .enq-subtitle { font-size: 13px; }
    .enq-assurances { margin-top: 12px; }
    .enq-assurance-icon { width: 32px; height: 32px; font-size: 16px; }
    .enq-body { gap: 10px; }
    .enq-group .enq-field input,
    .enq-group .enq-field select,
    .enq-group .enq-field textarea { padding: 9px 14px 9px 48px; }
    .enq-group .enq-field textarea { min-height: 62px; }
    .enq-submit { padding: 12px 24px; }
    .enq-whatsapp { padding: 10px 20px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   INNER PAGES — filter bar, product card actions, guide tips, CTA eyebrow
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Category filter bar ── */
.filter-bar {
    position: sticky;
    top: var(--header-h);
    z-index: 40;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.filter-bar .shell { padding-top: 12px; padding-bottom: 12px; }
.filter-bar .filter-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 2px;
}
.filter-bar .filter-tabs::-webkit-scrollbar { display: none; }
.filter-bar .filter-tab {
    flex: none;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}
.filter-bar .filter-tab:hover { border-color: var(--brand-emerald-green); color: var(--brand-emerald-green); }
.filter-bar .filter-tab.active {
    background: var(--brand-emerald-core);
    border-color: var(--brand-emerald-core);
    color: #fff;
}
@media (min-width: 64em) { .filter-bar .filter-tabs { justify-content: center; } }

/* ── Product card actions ── */
.pcard-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 16px;
}
.pcard-actions .pcard-link { margin-top: 0; padding-top: 9px; }
.pcard-enquire {
    padding: 9px 18px;
    border: none;
    border-radius: 999px;
    background: var(--brand-emerald-core);
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .25s ease;
}
.pcard-enquire:hover { background: var(--brand-emerald-green); }

/* ── Buyer's guide tips ── */
.guide-tips {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr);
    margin-top: clamp(18px, 2.2vw, 26px);
}
@media (min-width: 40em) { .guide-tips { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.guide-tip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
}
.guide-tip-icon {
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DFEFD9;
    color: var(--brand-emerald-green);
    font-size: 19px;
}
.guide-tip strong { display: block; font-size: 14.5px; color: var(--brand-emerald-core); margin-bottom: 3px; }
.guide-tip span { display: block; font-size: 13px; line-height: 1.55; color: var(--ink-soft); }

/* ── FAQ in a narrow column ── */
.faq-columns--single { grid-template-columns: minmax(0, 1fr); }

/* ── CTA band eyebrow ── */
.cta-eyebrow {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .78);
    margin: 0 0 8px;
}

/* ── FAQ: two independent columns ──
   Grid rows tied neighbouring questions together, so opening one stretched the
   one beside it into an empty box. Each column now stacks on its own; below the
   two-column breakpoint the columns dissolve and the inline order restores 01, 02, 03… */
.faq-columns { align-items: start; }
.faq-col { display: contents; }
@media (min-width: 64em) {
    .faq-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
}
.faq-item .faq-a { max-width: none; }

/* ══════════════════════════════════════════════════════════════════════════
   WHY CHOOSE US: solid emerald band, numbered 2 x 2 list with hairlines
   ══════════════════════════════════════════════════════════════════════════ */
.why-band { background: var(--brand-emerald-core); color: #fff; padding-block: clamp(64px, 8vw, 110px); }
.why-band-grid { display: grid; gap: 48px clamp(48px, 7vw, 96px); align-items: start; }
@media (min-width: 64em) { .why-band-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); } }

.why-band-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
}
.why-band-kicker::before { content: ''; flex: none; width: 24px; height: 1px; background: currentColor; }
.why-band-title {
    margin: 0;
    font-size: clamp(30px, 3.4vw, 46px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #fff;
}
.why-band-text { margin: 22px 0 0; max-width: 46ch; font-size: 15.5px; line-height: 1.7; color: rgba(255, 255, 255, .8); }
.why-band-button {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    margin-top: 34px;
    padding: 0 24px;
    border-radius: 2px;
    background: var(--brand-flame-amber);
    color: var(--brand-emerald-core);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color .2s ease;
}
.why-band-button:hover { background: #E6A200; color: var(--brand-emerald-core); }
.why-band-button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.why-band-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .2);
}
.why-band-list li { padding: 32px 0; border-bottom: 1px solid rgba(255, 255, 255, .2); }
@media (min-width: 40em) {
    .why-band-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .why-band-list li:nth-child(odd) { padding-right: 32px; border-right: 1px solid rgba(255, 255, 255, .2); }
    .why-band-list li:nth-child(even) { padding-left: 32px; }
}
.why-band-num { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; color: var(--brand-flame-amber); }
.why-band-list h3 { margin: 20px 0 0; font-size: 18px; font-weight: 700; line-height: 1.3; color: #fff; }
.why-band-list p { margin: 8px 0 0; font-size: 14.5px; line-height: 1.65; color: rgba(255, 255, 255, .78); }

/* ══════════════════════════════════════════════════════════════════════════
   CLOSING CTA: full-bleed photograph with a flat tint, copy on the left
   ══════════════════════════════════════════════════════════════════════════ */
.cta-photo {
    position: relative;
    overflow: hidden;
    background: var(--cta-image) 60% center / cover no-repeat, #012B17;
    color: #fff;
}
.cta-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(1, 26, 14, .6);
}
.cta-photo-inner { position: relative; z-index: 1; padding-block: clamp(96px, 11vw, 150px); }
.cta-photo-title {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(30px, 3.4vw, 46px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.02em;
    color: #fff;
}
.cta-photo-text { margin: 22px 0 0; max-width: 44ch; font-size: 15.5px; line-height: 1.75; color: rgba(255, 255, 255, .88); }
.cta-photo-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.cta-photo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.cta-photo-btn--amber { background: var(--brand-flame-amber); color: var(--brand-emerald-core); }
.cta-photo-btn--amber:hover { background: #E6A200; color: var(--brand-emerald-core); }
.cta-photo-btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .75); }
.cta-photo-btn--ghost:hover { background: #fff; color: var(--brand-emerald-core); border-color: #fff; }
.cta-photo-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
@media (max-width: 47.99em) { .cta-photo::before { background: rgba(1, 26, 14, .66); } }
