/* =========================================================================
   Lale Peyzaj — Custom Stylesheet
   Hand-tuned, no framework. Premium UX, calm color system, organic motion.
   ========================================================================= */

:root {
    /* Brand */
    --leaf-50:  #f4f8f3;
    --leaf-100: #e6efe3;
    --leaf-200: #c9dec4;
    --leaf-300: #9bc193;
    --leaf-400: #6ba35e;
    --leaf-500: #468247;
    --leaf-600: #2d5f3f;   /* primary */
    --leaf-700: #234d33;
    --leaf-800: #1c3e29;
    --leaf-900: #15301f;

    --soil-50:  #faf7f2;
    --soil-100: #f1ead9;
    --soil-300: #d6c39a;
    --soil-500: #a88a52;
    --soil-700: #6f5832;

    --tulip:    #b03a3a;     /* warm accent (lale = tulip) */
    --tulip-dark: #8a2828;

    --ink:      #1f2724;
    --ink-soft: #4a5852;
    --muted:    #7d8a85;
    --line:     #e3e7e4;
    --bg:       #fcfcfa;
    --card:     #ffffff;

    --radius-sm: 6px;
    --radius:    12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 2px rgba(20, 30, 25, .04), 0 1px 3px rgba(20, 30, 25, .03);
    --shadow:    0 4px 14px rgba(20, 30, 25, .06), 0 2px 4px rgba(20, 30, 25, .04);
    --shadow-lg: 0 24px 48px -12px rgba(20, 30, 25, .14), 0 8px 16px -8px rgba(20, 30, 25, .08);
    --shadow-xl: 0 40px 80px -20px rgba(20, 30, 25, .18);

    --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

    --container: 1240px;
    --header-h: 84px;
}

/* =========================================================================
   Reset
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--sans); background: var(--bg); color: var(--ink); line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--leaf-600); text-decoration: none; transition: color .15s; }
a:hover { color: var(--leaf-700); }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 600; line-height: 1.2; letter-spacing: -.01em; color: var(--ink); margin: 0; }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }

::selection { background: var(--leaf-200); color: var(--leaf-800); }

/* =========================================================================
   Layout
   ========================================================================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 720px) { .container { padding: 0 18px; } }

.section { padding: clamp(60px, 9vw, 110px) 0; }
.section-tight { padding: clamp(40px, 6vw, 70px) 0; }
.section-alt { background: var(--leaf-50); }

/* Mobile: tighter sections so cards appear above the fold */
@media (max-width: 700px) {
    .section { padding: 36px 0 44px; }
    .section-tight { padding: 28px 0 32px; }
    /* Section right after page-header: pull up tight */
    .page-header + .section { padding-top: 24px; }
}
.section-dark { background: var(--leaf-800); color: var(--leaf-50); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: white; }

.eyebrow { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; color: var(--leaf-600); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--leaf-600); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 12px; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 14.5px; letter-spacing: .01em; transition: transform .15s, box-shadow .2s, background .15s, color .15s; white-space: nowrap; }
.btn-primary { background: var(--leaf-600); color: white; box-shadow: 0 6px 18px rgba(45, 95, 63, .25); }
.btn-primary:hover { background: var(--leaf-700); color: white; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(45, 95, 63, .32); }
.btn-secondary { background: white; color: var(--leaf-700); border: 1.5px solid var(--leaf-200); }
.btn-secondary:hover { background: var(--leaf-50); border-color: var(--leaf-400); color: var(--leaf-700); }
.btn-ghost { color: var(--leaf-700); padding: 10px 0; border-bottom: 1.5px solid transparent; border-radius: 0; }
.btn-ghost:hover { border-color: var(--leaf-600); color: var(--leaf-800); }
.btn-tulip { background: var(--tulip); color: white; }
.btn-tulip:hover { background: var(--tulip-dark); color: white; transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 15.5px; }
.btn-block { width: 100%; }

/* =========================================================================
   Header
   ========================================================================= */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(252, 252, 250, .92); backdrop-filter: saturate(140%) blur(12px); -webkit-backdrop-filter: saturate(140%) blur(12px); border-bottom: 1px solid transparent; transition: border-color .2s, background .2s; }
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(252, 252, 250, .96); }
/* When mobile menu is open: lift header ABOVE backdrop so drawer (inside header) escapes header's
   stacking context cap. Without this, backdrop (z=105) covers the drawer and absorbs all taps. */
body.menu-open .site-header {
    z-index: 120;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(252,252,250,1);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 32px; }
.logo { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 1.45rem; font-weight: 700; color: var(--leaf-800); letter-spacing: -.01em; }
.logo:hover { color: var(--leaf-700); }
.logo img { max-height: 50px; width: auto; }
.logo-mark { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--leaf-500), var(--leaf-700)); display: inline-flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-family: var(--serif); font-size: 1rem; box-shadow: 0 6px 14px rgba(45,95,63,.25); }
.logo small { display: block; font-family: var(--sans); font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-top: 2px; }

/* =========================================================================
   Navigation — works for desktop horizontal AND mobile drawer
   DOM: <nav.main-nav> > [.mobile-nav-head, .mobile-nav-body, .mobile-nav-foot]
        .mobile-nav-body holds the actual nav links (a, .nav-item)
   ========================================================================= */

.main-nav { display: flex; align-items: center; gap: 4px; }

/* Body wrapper: on desktop acts as inline flex container */
.mobile-nav-body { display: flex; align-items: center; gap: 4px; }

/* Top-level nav links and dropdown trigger buttons (desktop) */
.mobile-nav-body > a,
.mobile-nav-body > .nav-item > button {
    padding: 10px 14px;
    color: var(--ink);
    font-size: 14.5px;
    font-weight: 500;
    border-radius: 8px;
    transition: background .15s, color .15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    white-space: nowrap;
}
.mobile-nav-body > a:hover,
.mobile-nav-body > .nav-item > button:hover { background: var(--leaf-50); color: var(--leaf-700); }
.mobile-nav-body > a.active { color: var(--leaf-700); }

/* Dropdown trigger arrow */
.nav-item { position: relative; }
.mobile-nav-body > .nav-item > button::after {
    content: '';
    width: 6px; height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px; margin-left: 2px;
}

/* Desktop dropdown panel */
.dropdown {
    position: absolute;
    top: calc(100% + 8px); left: -16px;
    min-width: 280px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: all .18s;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 14px; border-radius: 8px; color: var(--ink); font-size: 14px; font-weight: 500; text-decoration: none; }
.dropdown a:hover { background: var(--leaf-50); color: var(--leaf-700); }
.dropdown a strong { display: block; color: inherit; font-size: 14px; }
.dropdown a small { display: block; font-size: 12px; font-weight: 400; color: var(--muted); margin-top: 2px; }

/* Hide mobile-only chrome on desktop */
.mobile-nav-head,
.mobile-nav-foot { display: none; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: var(--leaf-50); color: var(--leaf-700); font-weight: 600; font-size: 14px; transition: background .15s; text-decoration: none; }
.header-phone:hover { background: var(--leaf-100); }
.header-phone svg { width: 16px; height: 16px; }

/* Hamburger toggle */
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--leaf-50); align-items: center; justify-content: center; flex-shrink: 0; transition: background .15s; }
.menu-toggle:hover { background: var(--leaf-100); }
.menu-toggle .bars { position: relative; width: 22px; height: 16px; flex-shrink: 0; }
.menu-toggle .bars::before,
.menu-toggle .bars::after,
.menu-toggle .bars > span { content: ''; position: absolute; left: 0; right: 0; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, top .25s, opacity .2s; display: block; }
.menu-toggle .bars::before { top: 0; }
.menu-toggle .bars > span { top: 7px; }
.menu-toggle .bars::after { top: 14px; }
.menu-toggle.open .bars::before { top: 7px; transform: rotate(45deg); }
.menu-toggle.open .bars > span { opacity: 0; }
.menu-toggle.open .bars::after { top: 7px; transform: rotate(-45deg); }

/* Backdrop (no blur — avoids iOS Safari rendering bug that blurs sibling drawer) */
.menu-backdrop {
    position: fixed; inset: 0;
    background: rgba(20, 30, 25, .55);
    opacity: 0; visibility: hidden;
    transition: opacity .25s, visibility .25s;
    z-index: 105;
    pointer-events: none;
}
.menu-backdrop.open { opacity: 1; visibility: visible; pointer-events: auto; }

@media (max-width: 1024px) {
    .header-cta .btn { display: none; }
}

/* =========================================================================
   Mobile drawer (≤900px)
   ========================================================================= */
@media (max-width: 900px) {
    .menu-toggle { display: inline-flex; }
    .header-phone span { display: none; }

    /* The drawer container */
    .main-nav {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(420px, 88vw);
        height: 100vh; height: 100dvh;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 0;
        margin: 0;
        transform: translateX(100%);
        transition: transform .3s cubic-bezier(.2,.8,.2,1);
        overflow: hidden;
        z-index: 110;
        box-shadow: -20px 0 60px rgba(0,0,0,.22);
        display: flex;
        /* Force opaque rendering — fixes iOS blur bleed */
        isolation: isolate;
        -webkit-transform: translateX(100%);
        will-change: transform;
    }
    .main-nav.open { transform: translateX(0); -webkit-transform: translateX(0); }

    /* Show drawer chrome */
    .mobile-nav-head {
        display: flex; align-items: center; justify-content: space-between;
        padding: 18px 20px; border-bottom: 1px solid var(--line);
        flex-shrink: 0;
        background: white;
    }
    .mobile-nav-head .brand {
        display: flex; align-items: center; gap: 10px;
        font-family: var(--serif); font-weight: 700;
        color: var(--leaf-800); font-size: 1.05rem;
    }
    .mobile-nav-head .brand .mark {
        width: 34px; height: 34px; border-radius: 50%;
        background: linear-gradient(135deg, var(--leaf-500), var(--leaf-700));
        color: white; display: inline-flex; align-items: center; justify-content: center;
        font-weight: 700;
    }
    .mobile-nav-head .close {
        width: 42px; height: 42px; border-radius: 50%;
        background: var(--leaf-50);
        display: inline-flex; align-items: center; justify-content: center;
        color: var(--ink); border: none; cursor: pointer;
    }
    .mobile-nav-head .close:active { transform: scale(.94); }

    /* Body becomes the scrollable list */
    .mobile-nav-body {
        flex: 1 1 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 14px 14px 20px;
        min-height: 0;
        background: white;
    }

    /* Top-level items inside drawer */
    .mobile-nav-body > a,
    .mobile-nav-body > .nav-item > button {
        width: 100%;
        display: flex;
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 15.5px;
        font-weight: 600;
        color: var(--ink);
        background: transparent;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
        margin: 0;
        border: none;
        text-align: left;
        white-space: normal;
        text-decoration: none;
        line-height: 1.3;
    }
    .mobile-nav-body > a:hover,
    .mobile-nav-body > a:active,
    .mobile-nav-body > .nav-item > button:hover,
    .mobile-nav-body > .nav-item > button:active { background: var(--leaf-50); color: var(--leaf-700); }
    .mobile-nav-body > a.active { background: var(--leaf-50); color: var(--leaf-700); }

    /* Bullet indicator on each top-level item */
    .mobile-nav-body > a::before,
    .mobile-nav-body > .nav-item > button::before {
        content: '';
        width: 6px; height: 6px; border-radius: 50%;
        background: var(--leaf-300);
        flex-shrink: 0;
        transition: background .15s, transform .15s;
    }
    .mobile-nav-body > a.active::before { background: var(--leaf-600); transform: scale(1.4); }

    /* Override desktop arrow with mobile expand chevron */
    .mobile-nav-body > .nav-item { width: 100%; position: static; }
    .mobile-nav-body > .nav-item > button { justify-content: flex-start; }
    .mobile-nav-body > .nav-item > button::after {
        content: '';
        margin-left: auto; margin-top: 0;
        width: 9px; height: 9px;
        border-right: 2px solid var(--muted);
        border-bottom: 2px solid var(--muted);
        border-top: none; border-left: none;
        transform: rotate(45deg);
        transition: transform .25s;
    }
    .mobile-nav-body > .nav-item.open > button::after { transform: rotate(-135deg); }
    .mobile-nav-body > .nav-item.open > button { background: var(--leaf-50); color: var(--leaf-700); }

    /* Dropdown collapses on mobile */
    .mobile-nav-body .dropdown {
        position: static;
        box-shadow: none;
        background: transparent;
        opacity: 1; visibility: visible; transform: none;
        min-width: 0;
        border-radius: 0;
        padding: 4px 0 8px 22px;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }
    .mobile-nav-body .nav-item.open .dropdown { max-height: 1000px; }
    .mobile-nav-body .dropdown a {
        display: block;
        padding: 11px 14px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 500;
        color: var(--ink-soft);
        margin: 1px 0;
        text-decoration: none;
        line-height: 1.4;
    }
    .mobile-nav-body .dropdown a:hover,
    .mobile-nav-body .dropdown a:active { background: var(--leaf-50); color: var(--leaf-700); }
    .mobile-nav-body .dropdown a strong { display: block; color: var(--ink); font-size: 14px; font-weight: 600; }
    .mobile-nav-body .dropdown a small { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 400; }

    /* Drawer footer */
    .mobile-nav-foot {
        display: block;
        padding: 14px 16px 18px;
        border-top: 1px solid var(--line);
        background: var(--leaf-50);
        flex-shrink: 0;
    }
    .mobile-nav-foot .label {
        font-size: 11px; letter-spacing: .14em;
        text-transform: uppercase; color: var(--muted);
        font-weight: 700; margin-bottom: 10px;
    }
    .mobile-nav-foot .ctas { display: grid; gap: 8px; }
    .mobile-nav-foot .cta-link {
        display: flex; align-items: center; gap: 12px;
        padding: 12px 16px; border-radius: 12px;
        background: white; border: 1px solid var(--line);
        font-weight: 600; color: var(--ink);
        text-decoration: none;
        line-height: 1.2;
    }
    .mobile-nav-foot .cta-link svg { width: 20px; height: 20px; flex-shrink: 0; }
    .mobile-nav-foot .cta-link.phone { background: var(--leaf-700); color: white; border-color: var(--leaf-700); }
    .mobile-nav-foot .cta-link.wa { background: #1faa53; color: white; border-color: #1faa53; }
    .mobile-nav-foot .cta-link span { display: flex; flex-direction: column; gap: 1px; }
    .mobile-nav-foot .cta-link small { display: block; font-size: 11px; opacity: .8; font-weight: 500; line-height: 1.2; }

    /* Body lock when menu open */
    body.menu-open { overflow: hidden; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; padding: clamp(50px, 7vw, 100px) 0 clamp(60px, 8vw, 110px); overflow: hidden; isolation: isolate; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(1100px 600px at 80% -10%, var(--leaf-100), transparent 60%), linear-gradient(180deg, var(--leaf-50) 0%, var(--bg) 100%); z-index: -2; }
.hero::after { content: ''; position: absolute; right: -120px; bottom: -120px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(70, 130, 71, .08), transparent 70%); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
@media (min-width: 1200px) { .hero-grid { gap: 80px; } }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; background: white; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--ink-soft); margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.hero-badge .pill { background: var(--leaf-600); color: white; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: .04em; }
.hero h1 { margin-bottom: 20px; }
.hero-sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-trust > div { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-soft); }
.hero-trust svg { width: 20px; height: 20px; color: var(--leaf-600); flex-shrink: 0; }

.hero-visual { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.hero-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20,30,25,.35) 100%); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.hero-visual:hover img { transform: scale(1.04); }
.hero-visual .placeholder {
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.18) 0, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(0,0,0,.18) 0, transparent 60%),
        linear-gradient(135deg, #5fa363 0%, #2d5f3f 55%, #15301f 100%);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.hero-visual .placeholder::before {
    content: ''; position: absolute; inset: 0; opacity: .15;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><path d='M60 5 C 30 30 25 60 60 95 C 95 60 90 30 60 5 Z' fill='white'/><path d='M60 30 L 60 95' stroke='white' stroke-width='1.5'/></svg>");
    background-size: 80px 80px; background-position: center;
}
.hero-visual .placeholder::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.06) 0, transparent 25%),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,.04) 0, transparent 30%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,.05) 0, transparent 28%);
}
.hero-visual .placeholder svg {
    position: relative; z-index: 2; width: 60%; max-width: 280px; height: auto;
    color: rgba(255,255,255,.92);
    filter: drop-shadow(0 16px 40px rgba(0,0,0,.3));
}
.hero-card { position: absolute; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 16px 20px; border-radius: 14px; box-shadow: 0 16px 40px rgba(0,0,0,.18), 0 4px 12px rgba(0,0,0,.08); display: flex; align-items: center; gap: 12px; z-index: 2; }
.hero-card.top { top: 28px; left: -24px; }
.hero-card.bottom { bottom: 32px; right: -28px; }
.hero-card .num { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--leaf-700); line-height: 1; }
.hero-card .label { font-size: 11.5px; color: var(--muted); font-weight: 500; line-height: 1.3; }
@media (max-width: 600px) {
    .hero-card.top { top: 14px; left: 12px; padding: 12px 16px; }
    .hero-card.bottom { bottom: 14px; right: 12px; padding: 12px 16px; }
    .hero-card .num { font-size: 1.4rem; }
}

@media (max-width: 900px) {
    .hero { padding: 28px 0 40px; }
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero h1 { font-size: 2rem; }
    .hero-sub { font-size: 1rem; margin-bottom: 22px; }
    .hero-actions { margin-bottom: 22px; }
    .hero-trust { padding-top: 18px; gap: 14px 22px; font-size: 12.5px; }
    .hero-visual { aspect-ratio: 16/11; max-width: 480px; margin: 0 auto; }
    .hero-card.top { left: 12px; }
    .hero-card.bottom { right: 12px; }
    .hero-badge { margin-bottom: 16px; }
}

/* =========================================================================
   Services
   ========================================================================= */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .25s, border-color .25s; position: relative; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--leaf-200); color: inherit; }

/* Photographic banner at the top of each card */
.service-banner {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 19px 19px 0 0;
    background: linear-gradient(135deg, var(--leaf-200), var(--leaf-500));
}
.service-banner::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20,30,25,.35) 100%);
    pointer-events: none;
}
.service-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.service-card:hover .service-banner img { transform: scale(1.07); }
.service-banner-tag {
    position: absolute; top: 14px; left: 14px;
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--leaf-700); z-index: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.service-banner-tag svg { width: 18px; height: 18px; }

.service-card-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.22rem; margin-bottom: 10px; line-height: 1.25; }
.service-card p { color: var(--ink-soft); font-size: .94rem; margin-bottom: 18px; flex: 1; line-height: 1.55; }
.service-card .more { color: var(--leaf-700); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; }
.service-card .more::after { content: '→'; transition: transform .2s; }
.service-card:hover .more::after { transform: translateX(4px); }

/* Service detail hero banner */
.svc-detail-banner {
    aspect-ratio: 21/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
    position: relative;
    background: linear-gradient(135deg, var(--leaf-200), var(--leaf-500));
}
.svc-detail-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-detail-banner::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(20,30,25,.25));
    pointer-events: none;
}

/* =========================================================================
   Stats
   ========================================================================= */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; padding: 48px 40px; background: linear-gradient(135deg, var(--leaf-700), var(--leaf-800)); border-radius: var(--radius-xl); color: white; position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; right: -100px; top: -100px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.05); }
.stats::after { content: ''; position: absolute; left: -80px; bottom: -80px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.04); }
.stat-item { position: relative; z-index: 1; }
.stat-num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1; }
.stat-label { font-size: .9rem; opacity: .85; margin-top: 8px; }

/* =========================================================================
   Locations
   ========================================================================= */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.location-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: all .2s; }
.location-card:hover { border-color: var(--leaf-300); transform: translateY(-3px); box-shadow: var(--shadow); }
.location-card .pin { width: 44px; height: 44px; border-radius: 50%; background: var(--leaf-100); color: var(--leaf-700); margin: 0 auto 12px; display: inline-flex; align-items: center; justify-content: center; }
.location-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.location-card p { font-size: .85rem; color: var(--muted); margin: 0; }

/* =========================================================================
   Process / Steps
   ========================================================================= */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.process-step { position: relative; padding: 32px 24px 28px; background: white; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.process-step::before { counter-increment: step; content: '0' counter(step); position: absolute; top: -18px; left: 24px; background: var(--leaf-600); color: white; padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 700; font-family: var(--serif); }
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* =========================================================================
   Why us
   ========================================================================= */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.why-list { display: grid; gap: 20px; }
.why-item { display: flex; gap: 18px; padding: 20px; border-radius: var(--radius); transition: background .2s; }
.why-item:hover { background: var(--leaf-50); }
.why-item .icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--leaf-600); color: white; display: inline-flex; align-items: center; justify-content: center; }
.why-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.why-item p { font-size: .94rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }

/* =========================================================================
   Testimonials
   ========================================================================= */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial { background: white; padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; }
.testimonial::before { content: '"'; position: absolute; top: 12px; right: 24px; font-family: var(--serif); font-size: 5rem; color: var(--leaf-200); line-height: 1; }
.testimonial p { font-style: italic; color: var(--ink-soft); margin-bottom: 18px; font-size: .98rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--leaf-300), var(--leaf-600)); color: white; display: inline-flex; align-items: center; justify-content: center; font-weight: 600; font-family: var(--serif); }
.author-info strong { display: block; font-size: .92rem; color: var(--ink); }
.author-info span { font-size: .82rem; color: var(--muted); }

/* =========================================================================
   CTA Banner
   ========================================================================= */
.cta-banner { background: linear-gradient(135deg, var(--leaf-700) 0%, var(--leaf-800) 100%); border-radius: var(--radius-xl); padding: 56px 48px; color: white; display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; right: -80px; bottom: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.06); }
.cta-banner h2 { color: white; margin-bottom: 12px; }
.cta-banner p { opacity: .85; margin: 0; }
.cta-banner .actions { display: flex; gap: 14px; flex-wrap: wrap; justify-self: end; position: relative; z-index: 1; }
.cta-banner .btn-secondary { background: white; color: var(--leaf-700); border-color: white; }
@media (max-width: 800px) { .cta-banner { grid-template-columns: 1fr; padding: 40px 28px; } .cta-banner .actions { justify-self: start; } }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--leaf-900); color: rgba(255,255,255,.7); padding: 72px 0 24px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid h4 { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: white; margin-bottom: 18px; }
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { color: rgba(255,255,255,.7); font-size: 14px; transition: color .15s; }
.footer-grid a:hover { color: white; }
.footer-brand .logo { color: white; }
.footer-brand p { font-size: 14px; margin: 16px 0 20px; }
.footer-contact { display: grid; gap: 12px; font-size: 14px; }
.footer-contact div { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--leaf-300); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; }
.footer-bottom .social { display: flex; gap: 12px; }
.footer-bottom .social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: inline-flex; align-items: center; justify-content: center; transition: background .15s; }
.footer-bottom .social a:hover { background: var(--leaf-600); color: white; }
.footer-bottom .social svg { width: 18px; height: 18px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Floating WhatsApp
   ========================================================================= */
.fab-whatsapp { position: fixed; right: 24px; bottom: 24px; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: white; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px rgba(37, 211, 102, .35); z-index: 90; transition: transform .2s; }
.fab-whatsapp:hover { transform: scale(1.08); color: white; }
.fab-whatsapp svg { width: 30px; height: 30px; }
.fab-whatsapp::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid #25d366; opacity: .4; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .4; } 100% { transform: scale(1.4); opacity: 0; } }

/* =========================================================================
   Page header (sub-pages)
   ========================================================================= */
.page-header { background: linear-gradient(180deg, var(--leaf-50) 0%, var(--bg) 100%); padding: clamp(40px, 6vw, 80px) 0 clamp(36px, 5vw, 60px); border-bottom: 1px solid var(--line); position: relative; }
.page-header h1 { margin-bottom: 12px; }
.page-header .lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 700px; }

/* Mobile: compact page-header so content below is visible without scrolling */
@media (max-width: 700px) {
    .page-header { padding: 22px 0 26px; }
    .page-header h1 { font-size: 1.7rem; margin-bottom: 8px; }
    .page-header .lead { font-size: .98rem; line-height: 1.55; }
    .page-header .eyebrow { margin-bottom: 10px; font-size: 11px; }
    .breadcrumbs { font-size: 12px; margin-bottom: 10px; }
}

.breadcrumbs { font-size: 13px; margin-bottom: 16px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumbs li { color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.breadcrumbs li:not(:last-child)::after { content: '/'; color: var(--line); margin-left: 6px; }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--leaf-700); }
.breadcrumbs li[aria-current="page"] { color: var(--ink); font-weight: 500; }

/* =========================================================================
   Article body (CMS content)
   ========================================================================= */
.prose { max-width: 760px; margin: 0 auto; font-size: 1.05rem; line-height: 1.75; color: var(--ink); }
.prose h2 { font-size: 1.7rem; margin: 2em 0 .6em; }
.prose h3 { font-size: 1.3rem; margin: 1.6em 0 .5em; }
.prose p { margin-bottom: 1.1em; }
.prose ul, .prose ol { margin: 0 0 1.2em 1.4em; }
.prose li { margin-bottom: .5em; }
.prose img { border-radius: var(--radius); margin: 1.5em 0; }
.prose blockquote { border-left: 3px solid var(--leaf-500); padding: .5em 1em; margin: 1.5em 0; color: var(--ink-soft); font-style: italic; background: var(--leaf-50); border-radius: 0 var(--radius) var(--radius) 0; }
.prose a { color: var(--leaf-700); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================================
   Forms
   ========================================================================= */
.form-card { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--tulip); }
.field input, .field textarea, .field select { padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: white; font-size: 15px; transition: border-color .15s, box-shadow .15s; font-family: var(--sans); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--leaf-500); box-shadow: 0 0 0 4px rgba(70, 130, 71, .12); }
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: 12px; color: var(--muted); }
.field-honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 14px; border-left: 3px solid; }
.alert-error { background: #fef2f2; color: #991b1b; border-color: #ef4444; }
.alert-success { background: #f0fdf4; color: #14532d; border-color: #22c55e; }
.alert-info { background: #eff6ff; color: #1e3a8a; border-color: #3b82f6; }

/* =========================================================================
   Contact split
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 18px; align-content: start; }
.contact-info-item { background: white; padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--leaf-100); color: var(--leaf-700); display: inline-flex; align-items: center; justify-content: center; }
.contact-info-item h3 { font-size: 1.05rem; margin-bottom: 4px; font-family: var(--sans); font-weight: 600; }
.contact-info-item p, .contact-info-item a { font-size: .95rem; color: var(--ink-soft); margin: 0; }
.contact-info-item a:hover { color: var(--leaf-700); }
.map-embed { width: 100%; height: 320px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 0; }

/* =========================================================================
   Posts / Blog
   ========================================================================= */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.post-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card .img { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--leaf-300), var(--leaf-600)); }
.post-card .img img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card .meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; letter-spacing: .04em; text-transform: uppercase; }
.post-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.post-card p { color: var(--ink-soft); font-size: .94rem; flex: 1; }
.post-card a.more { color: var(--leaf-700); font-weight: 600; font-size: .9rem; margin-top: 12px; }

article.post-full header { text-align: center; margin-bottom: 32px; }
article.post-full .meta { font-size: 13px; color: var(--muted); margin-bottom: 12px; letter-spacing: .04em; text-transform: uppercase; }
article.post-full .featured { aspect-ratio: 16/8; border-radius: var(--radius-lg); overflow: hidden; margin: 0 auto 40px; max-width: 1000px; }

/* =========================================================================
   Service detail
   ========================================================================= */
.service-detail-grid { display: grid; grid-template-columns: 2.2fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .service-detail-grid { grid-template-columns: 1fr; } }
.sidebar-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: calc(var(--header-h) + 24px); }
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 16px; }
.sidebar-card ul { list-style: none; display: grid; gap: 8px; margin-bottom: 18px; }
.sidebar-card a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--ink); font-size: .94rem; transition: all .15s; }
.sidebar-card a:hover, .sidebar-card a.active { background: var(--leaf-50); color: var(--leaf-700); }

.feature-list { display: grid; gap: 14px; padding: 0; list-style: none; margin: 1.5em 0; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 18px; background: var(--leaf-50); border-radius: var(--radius-sm); border-left: 3px solid var(--leaf-500); }
.feature-list li::before { content: '✓'; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--leaf-600); color: white; font-size: 12px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details { background: white; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 22px; transition: all .2s; }
.faq details[open] { border-color: var(--leaf-300); box-shadow: var(--shadow-sm); }
.faq summary { font-weight: 600; cursor: pointer; list-style: none; padding-right: 30px; position: relative; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; border-radius: 50%; background: var(--leaf-100); color: var(--leaf-700); display: inline-flex; align-items: center; justify-content: center; font-size: 16px; transition: transform .2s; }
.faq details[open] summary::after { content: '−'; }
.faq details > div { padding-top: 12px; color: var(--ink-soft); font-size: .95rem; }

/* =========================================================================
   Pagination
   ========================================================================= */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 10px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--ink); transition: all .15s; }
.pagination a:hover { background: var(--leaf-50); color: var(--leaf-700); }
.pagination .current { background: var(--leaf-600); color: white; }

/* =========================================================================
   Animations
   ========================================================================= */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* Mobile: skip fade-up animation entirely — content always visible
   (JS-based observer can be unreliable on iOS Safari, leaves cards invisible) */
@media (max-width: 900px) {
    .fade-up { opacity: 1 !important; transform: none !important; transition: none; }
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0s !important; transition-duration: .05s !important; }
    .fade-up { opacity: 1; transform: none; }
}

/* Safety net: if JS hasn't loaded after 2.5s, force-show all fade-up elements */
@keyframes _fade_safety { to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: _fade_safety 0s 2.5s forwards; }
.fade-up.in { animation: none; }
