/* ================================================================
   GARDEN DÉCOR — Global Stylesheet
   Brand: Teal #1a6b72 | Green #8cbf3a
   Light + Dark Mode via [data-theme="dark"] on <html>
   ================================================================ */

/* ── LIGHT TOKENS ── */
:root {
    --teal: #1a6b72;
    --teal-dark: #134f55;
    --teal-light: #2a8a93;
    --teal-pale: #e8f4f5;
    --green: #8cbf3a;
    --green-dark: #6a9a28;
    --green-light: #a8d44f;
    --bg-body: #f7faf7;
    --bg-card: #ffffff;
    --bg-card-alt: #f7faf7;
    --text: #1a2e2f;
    --text-muted: #4a6e6f;
    --border: rgba(26,107,114,.15);
    --shadow: 0 20px 60px rgba(26,107,114,.12);
    --nav-bg: rgba(255,255,255,.95);
    --input-bg: #f7faf7;
    --input-focus: #ffffff;
    --hero-from: #e8f4f5;
    --hero-to: #d0ebe8;
    --cat-hdr-bg: #e8f4f5;
    --cat-hdr-alt: #f0faf0;
    --certs-bg: #e8f4f5;
}

/* ── DARK TOKENS ── */
[data-theme="dark"] {
    --teal: #2fa8b2;
    --teal-dark: #1a7a82;
    --teal-light: #3dc0cb;
    --teal-pale: rgba(47,168,178,.12);
    --green: #8cbf3a;
    --green-dark: #a8d44f;
    --green-light: #c2e870;
    --bg-body: #0e1a1b;
    --bg-card: #132022;
    --bg-card-alt: #0e1a1b;
    --text: #d6edef;
    --text-muted: #6fa8ae;
    --border: rgba(47,168,178,.18);
    --shadow: 0 20px 60px rgba(0,0,0,.45);
    --nav-bg: rgba(13,26,27,.96);
    --input-bg: #0e1a1b;
    --input-focus: #132022;
    --hero-from: #0b1718;
    --hero-to: #112022;
    --cat-hdr-bg: rgba(47,168,178,.08);
    --cat-hdr-alt: rgba(140,191,58,.07);
    --certs-bg: #0e1a1b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans',sans-serif;
    color: var(--text);
    background: var(--bg-body);
    overflow-x: hidden;
    transition: background .35s,color .35s;
}

/* ================================================================
   DARK-MODE TOGGLE
   ================================================================ */
.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--bg-card-alt);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s,border-color .25s,transform .2s;
    flex-shrink: 0;
}

    .theme-toggle:hover {
        background: var(--teal-pale);
        border-color: var(--teal);
        transform: rotate(20deg);
    }

/* ================================================================
   NAVIGATION
   ================================================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: var(--nav-bg);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s, background .35s;
}

    nav.scrolled {
        box-shadow: 0 4px 30px rgba(0,0,0,.12);
    }

.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Playfair Display',serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--teal);
    text-decoration: none;
}

.logo-leaf {
    font-size: 1.6rem;
    color: var(--green);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        font-size: .9rem;
        font-weight: 500;
        color: var(--text-muted);
        letter-spacing: .03em;
        transition: color .25s;
        position: relative;
        padding-bottom: 3px;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--green);
            transition: width .3s;
            border-radius: 2px;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--teal);
        }

            .nav-links a:hover::after, .nav-links a.active::after {
                width: 100%;
            }

.nav-cta {
    background: var(--teal) !important;
    color: #fff !important;
    padding: .5rem 1.3rem;
    border-radius: 50px;
    font-weight: 600 !important;
}

    .nav-cta::after {
        display: none !important;
    }

    .nav-cta:hover {
        opacity: .88;
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .hamburger span {
        width: 24px;
        height: 2px;
        background: var(--teal);
        border-radius: 2px;
        transition: .3s;
    }

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 5vw;
    flex-direction: column;
    gap: .8rem;
    z-index: 999;
    transition: background .35s;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        text-decoration: none;
        color: var(--text);
        font-weight: 500;
        padding: .4rem 0;
        border-bottom: 1px solid var(--border);
    }

/* ================================================================
   SHARED TYPOGRAPHY
   ================================================================ */
.section-label {
    display: inline-block;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: .7rem;
}

.section-title {
    font-family: 'Playfair Display',serif;
    font-size: clamp(1.8rem,3vw,2.6rem);
    font-weight: 800;
    color: var(--teal);
    line-height: 1.2;
    margin-bottom: .8rem;
}

.section-desc {
    font-size: .96rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 580px;
}

.section-header {
    margin-bottom: 3rem;
}

/* ================================================================
   SHARED BUTTONS
   ================================================================ */
.btn-primary {
    background: var(--teal);
    color: #fff;
    padding: .82rem 1.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .92rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .25s,transform .2s,box-shadow .25s;
    box-shadow: 0 6px 20px rgba(26,107,114,.32);
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

    .btn-primary:hover {
        background: var(--teal-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(26,107,114,.38);
    }

.btn-outline {
    background: transparent;
    color: var(--teal);
    padding: .82rem 1.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .92rem;
    text-decoration: none;
    border: 2px solid var(--teal);
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

    .btn-outline:hover {
        background: var(--teal);
        color: #fff;
        transform: translateY(-2px);
    }

.btn-white {
    background: #fff;
    color: var(--teal);
    padding: .78rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .25s;
    display: inline-block;
}

    .btn-white:hover {
        background: var(--green-light);
        transform: translateY(-2px);
    }

.btn-outline-white {
    background: transparent;
    color: #fff;
    padding: .78rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.5);
    cursor: pointer;
    transition: all .25s;
    display: inline-block;
}

    .btn-outline-white:hover {
        border-color: #fff;
        background: rgba(255,255,255,.1);
    }

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
    display: flex;
    gap: .5rem;
    align-items: center;
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

    .breadcrumb a {
        color: var(--teal);
        text-decoration: none;
    }

/* ================================================================
   PAGE HEROES (light)
   ================================================================ */
.page-hero {
    padding: 9rem 5vw 5rem;
    background: linear-gradient(155deg,var(--hero-from) 0%,var(--hero-to) 100%);
    position: relative;
    overflow: hidden;
    transition: background .35s;
}

    .page-hero h1 {
        font-family: 'Playfair Display',serif;
        font-size: clamp(2.2rem,4vw,3.4rem);
        font-weight: 900;
        color: var(--teal-dark);
        margin-bottom: .8rem;
    }

[data-theme="dark"] .page-hero h1 {
    color: var(--teal);
}

.page-hero p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.75;
}

/* PAGE HERO dark (services) */
.page-hero-dark {
    padding: 9rem 5vw 5rem;
    background: linear-gradient(155deg,var(--teal-dark) 0%,var(--teal) 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .page-hero-dark {
    background: linear-gradient(155deg,#071012 0%,#0f2628 100%);
}

.page-hero-dark h1 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(2.2rem,4vw,3.4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: .8rem;
}

.page-hero-dark p {
    font-size: 1rem;
    color: rgba(255,255,255,.75);
    max-width: 540px;
    line-height: 1.75;
}

.page-hero-dark .breadcrumb a {
    color: var(--green-light);
}

.page-hero-dark .breadcrumb span {
    color: rgba(255,255,255,.6);
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.8rem;
}

.hero-pill {
    padding: .42rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.25);
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
    background: var(--teal-dark);
    color: #fff;
    padding: 4rem 5vw 2rem;
}

[data-theme="dark"] footer {
    background: #050e0f;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Playfair Display',serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: .8rem;
}

.footer-brand p {
    font-size: .86rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    max-width: 270px;
}

.footer-col h4 {
    font-weight: 700;
    font-size: .86rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--green-light);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

    .footer-col ul a {
        color: rgba(255,255,255,.6);
        text-decoration: none;
        font-size: .86rem;
        transition: color .25s;
    }

        .footer-col ul a:hover {
            color: #fff;
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: rgba(255,255,255,.45);
}

.social-row {
    display: flex;
    gap: .7rem;
    margin-top: 1.2rem;
}

.soc {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: .9rem;
    transition: background .25s;
}

    .soc:hover {
        background: var(--green);
    }

/* ================================================================
   CTA BANDS
   ================================================================ */
.cta-band {
    background: var(--bg-body);
    padding: 5rem 5vw;
    text-align: center;
    transition: background .35s;
}

    .cta-band .section-title {
        margin-bottom: 1rem;
    }

    .cta-band .section-desc {
        margin: 0 auto 2rem;
    }

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta-dark {
    background: linear-gradient(155deg,var(--teal-dark),var(--teal));
    padding: 5rem 5vw;
    text-align: center;
}

[data-theme="dark"] .cta-dark {
    background: linear-gradient(155deg,#071012,#0d2426);
}

.cta-dark h2 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(1.8rem,3vw,2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .8rem;
}

.cta-dark p {
    color: rgba(255,255,255,.75);
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.cta-dark .section-label {
    color: var(--green-light);
}

.cta-strip {
    background: var(--teal);
    padding: 3rem 5vw;
    text-align: center;
}

[data-theme="dark"] .cta-strip {
    background: #0d2426;
}

.cta-strip h2 {
    font-family: 'Playfair Display',serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .5rem;
}

.cta-strip p {
    color: rgba(255,255,255,.8);
    margin-bottom: 1.5rem;
}

/* ================================================================
   BACKGROUND HELPERS
   ================================================================ */
.bg1 {
    background: linear-gradient(135deg,#b2dfdb,#80cbc4)
}

.bg2 {
    background: linear-gradient(135deg,#c8e6c9,#a5d6a7)
}

.bg3 {
    background: linear-gradient(135deg,#dcedc8,#c5e1a5)
}

.bg4 {
    background: linear-gradient(135deg,#b3e5fc,#81d4fa)
}

.bg5 {
    background: linear-gradient(135deg,#ffe0b2,#ffcc80)
}

.bg6 {
    background: linear-gradient(135deg,#f8bbd0,#f48fb1)
}

.bg7 {
    background: linear-gradient(135deg,#e1bee7,#ce93d8)
}

.bg8 {
    background: linear-gradient(135deg,#f0f4c3,#e6ee9c)
}

.sv1 {
    background: linear-gradient(135deg,#b2dfdb,#80cbc4)
}

.sv2 {
    background: linear-gradient(135deg,#dcedc8,#c5e1a5)
}

.sv3 {
    background: linear-gradient(135deg,#b3e5fc,#81d4fa)
}

.sv4 {
    background: linear-gradient(135deg,#ffe0b2,#ffcc80)
}

.sv5 {
    background: linear-gradient(135deg,#e1bee7,#ce93d8)
}

.sv6 {
    background: linear-gradient(135deg,#c8e6c9,#a5d6a7)
}

.sh1 {
    background: linear-gradient(135deg,#b2dfdb,#80cbc4)
}

.sh2 {
    background: linear-gradient(135deg,#c8e6c9,#a5d6a7)
}

.sh3 {
    background: linear-gradient(135deg,#dcedc8,#c5e1a5)
}

.sh4 {
    background: linear-gradient(135deg,#b3e5fc,#81d4fa)
}

.sh5 {
    background: linear-gradient(135deg,#f0f4c3,#e6ee9c)
}

[data-theme="dark"] .bg1, [data-theme="dark"] .bg2, [data-theme="dark"] .bg3,
[data-theme="dark"] .bg4, [data-theme="dark"] .bg5, [data-theme="dark"] .bg6,
[data-theme="dark"] .sv1, [data-theme="dark"] .sv2, [data-theme="dark"] .sv3,
[data-theme="dark"] .sv4, [data-theme="dark"] .sv5, [data-theme="dark"] .sv6,
[data-theme="dark"] .sh1, [data-theme="dark"] .sh2, [data-theme="dark"] .sh3,
[data-theme="dark"] .sh4, [data-theme="dark"] .sh5 {
    filter: brightness(.7) saturate(.85);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease,transform .65s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

@keyframes plantFloat {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

@keyframes badgeFloat {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

/* ================================================================
   HOME PAGE
   ================================================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 7rem 5vw 4rem;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    background: var(--bg-body);
    transition: background .35s;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 65% 75% at 75% 55%,rgba(140,191,58,.07) 0%,transparent 70%), radial-gradient(ellipse 45% 45% at 15% 85%,rgba(26,107,114,.06) 0%,transparent 70%);
        pointer-events: none;
    }

[data-theme="dark"] .hero::before {
    background: radial-gradient(ellipse 65% 75% at 75% 55%,rgba(140,191,58,.05) 0%,transparent 70%), radial-gradient(ellipse 45% 45% at 15% 85%,rgba(47,168,178,.07) 0%,transparent 70%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--teal-pale);
    color: var(--teal);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: .38rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
    border: 1px solid var(--border);
}

.hero-title {
    font-family: 'Playfair Display',serif;
    font-size: clamp(2.6rem,4.8vw,4.2rem);
    line-height: 1.1;
    font-weight: 900;
    color: var(--teal-dark);
    margin-bottom: 1.4rem;
}

[data-theme="dark"] .hero-title {
    color: #d6edef;
}

.hero-title em {
    font-style: normal;
    color: var(--green);
    position: relative;
}

    .hero-title em::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg,var(--green),var(--green-light));
        border-radius: 2px;
    }

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 2.4rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.hero-stat span {
    display: block;
    font-family: 'Playfair Display',serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
}

.hero-stat p {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: .15rem;
}

.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.garden-wall {
    width: min(400px,88%);
    aspect-ratio: .78;
    background: linear-gradient(155deg,#d8eded 0%,#c5e3e0 100%);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

[data-theme="dark"] .garden-wall {
    background: linear-gradient(155deg,#102426 0%,#0d2022 100%);
}

.wall-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(5,1fr);
    gap: 8px;
    padding: 18px;
    height: 100%;
}

.plant-cell {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform .3s;
    animation: plantFloat 3s ease-in-out infinite;
}

    .plant-cell.t {
        background: rgba(26,107,114,.18);
    }

    .plant-cell.g {
        background: rgba(140,191,58,.22);
    }

    .plant-cell.l {
        background: rgba(26,107,114,.08);
    }

[data-theme="dark"] .plant-cell.t {
    background: rgba(47,168,178,.22);
}

[data-theme="dark"] .plant-cell.g {
    background: rgba(140,191,58,.18);
}

[data-theme="dark"] .plant-cell.l {
    background: rgba(47,168,178,.1);
}

.plant-cell:nth-child(2n) {
    animation-delay: .6s
}

.plant-cell:nth-child(3n) {
    animation-delay: 1.2s
}

.wall-badge {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: #fff;
    padding: .45rem 1.3rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    white-space: nowrap;
}

.float-tag {
    position: absolute;
    background: var(--bg-card);
    border-radius: 14px;
    padding: .7rem 1rem;
    box-shadow: var(--shadow);
    font-size: .8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .45rem;
    animation: badgeFloat 4s ease-in-out infinite;
    color: var(--text);
}

    .float-tag.l2 {
        left: -36px;
        top: 22%;
        animation-delay: .5s
    }

    .float-tag.r2 {
        right: -28px;
        bottom: 28%
    }

.ft-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%
}

    .ft-dot.g {
        background: var(--green)
    }

    .ft-dot.t {
        background: var(--teal)
    }

/* HOME – Category pills */
.cats {
    background: var(--bg-card);
    padding: 3rem 5vw;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    transition: background .35s;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1.3rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
}

    .cat-pill:hover, .cat-pill.active {
        background: var(--teal);
        color: #fff;
        border-color: var(--teal);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(26,107,114,.25);
    }

/* HOME – Why cards */
.why {
    padding: 5rem 5vw;
    background: var(--bg-body);
    transition: background .35s;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
    gap: 1.4rem;
}

.why-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 1.8rem;
    border: 1px solid var(--border);
    transition: transform .3s,box-shadow .3s,background .35s;
}

    .why-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.wi-g {
    background: rgba(140,191,58,.15);
}

.wi-t {
    background: var(--teal-pale);
}

.why-card h3 {
    font-family: 'Playfair Display',serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: .5rem;
}

.why-card p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* HOME – Showcase */
.showcase {
    padding: 5rem 5vw;
    background: var(--bg-card);
    transition: background .35s;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: auto auto;
    gap: 1.2rem;
}

.showcase-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

    .showcase-item.big {
        grid-row: span 2;
    }

.showcase-thumb {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
}

.showcase-item.big .showcase-thumb {
    height: 100%;
    min-height: 460px;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(10,30,32,.88) 0%,transparent 55%);
    opacity: 0;
    transition: opacity .35s;
    display: flex;
    align-items: flex-end;
    padding: 1.4rem;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.overlay-text {
    color: #fff;
}

    .overlay-text h4 {
        font-family: 'Playfair Display',serif;
        font-size: 1.05rem;
        font-weight: 700;
    }

    .overlay-text p {
        font-size: .8rem;
        opacity: .8;
        margin-top: .2rem;
    }

/* HOME – Testimonials */
.testimonials {
    padding: 5rem 5vw;
    background: linear-gradient(155deg,var(--teal-dark),var(--teal));
}

[data-theme="dark"] .testimonials {
    background: linear-gradient(155deg,#071012,#0d2426);
}

.testimonials .section-label {
    color: var(--green-light);
}

.testimonials .section-title {
    color: #fff;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 1.4rem;
    position: relative;
    z-index: 1;
}

.testi-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    padding: 1.8rem;
    backdrop-filter: blur(8px);
    transition: background .3s;
}

[data-theme="dark"] .testi-card {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.09);
}

.testi-card:hover {
    background: rgba(255,255,255,.14);
}

.testi-stars {
    color: var(--green-light);
    font-size: 1rem;
    margin-bottom: .8rem;
}

.testi-text {
    font-size: .9rem;
    color: rgba(255,255,255,.85);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.testi-author strong {
    display: block;
    color: #fff;
    font-size: .88rem;
}

.testi-author span {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
}

/* ================================================================
   PRODUCTS PAGE
   ================================================================ */
.cat-nav {
    background: var(--bg-card);
    padding: 1.5rem 5vw;
    position: sticky;
    top: 68px;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    align-items: center;
    transition: background .35s;
}

.cat-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1.1rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    background: transparent;
    white-space: nowrap;
}

    .cat-btn:hover, .cat-btn.active {
        background: var(--teal);
        color: #fff;
        border-color: var(--teal);
        box-shadow: 0 4px 14px rgba(26,107,114,.25);
    }

.cat-section {
    padding: 5rem 5vw;
    scroll-margin-top: 130px;
    background: var(--bg-body);
    transition: background .35s;
}

    .cat-section:nth-child(even) {
        background: var(--bg-card);
    }

.cat-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--cat-hdr-bg);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: background .35s;
}

.cat-section:nth-child(even) .cat-header {
    background: var(--cat-hdr-alt);
}

.cat-header-emoji {
    font-size: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 20px;
    height: 160px;
    box-shadow: var(--shadow);
    transition: background .35s;
}

.cat-header-text h2 {
    font-family: 'Playfair Display',serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: .7rem;
}

.cat-header-text p {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}

.cat-tag {
    padding: .3rem .8rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    background: var(--teal);
    color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
    gap: 1.3rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .3s,box-shadow .3s,background .35s;
    cursor: pointer;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

.cat-section:nth-child(even) .product-card {
    background: var(--bg-body);
}

.p-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    position: relative;
}

.p-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--teal);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    padding: .28rem .65rem;
    border-radius: 50px;
}

    .p-tag.new {
        background: var(--green)
    }

    .p-tag.hot {
        background: #e53935
    }

.p-info {
    padding: 1.3rem;
}

.p-name {
    font-family: 'Playfair Display',serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: .35rem;
}

.p-desc {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: .9rem;
    line-height: 1.6;
}

.p-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-price {
    font-weight: 700;
    color: var(--teal);
    font-size: 1.05rem;
}

    .p-price small {
        font-size: .72rem;
        font-weight: 500;
        color: var(--text-muted);
    }

.p-btn {
    background: var(--teal-pale);
    color: var(--teal);
    border: none;
    cursor: pointer;
    padding: .48rem .95rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    transition: all .25s;
}

    .p-btn:hover {
        background: var(--teal);
        color: #fff;
    }

.special-section {
    padding: 5rem 5vw;
    background: linear-gradient(155deg,var(--teal-dark),var(--teal));
}

[data-theme="dark"] .special-section {
    background: linear-gradient(155deg,#071012,#0d2224);
}

.special-section .section-title {
    color: #fff;
}

.special-section .section-label {
    color: var(--green-light);
}

.special-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.special-card {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 22px;
    padding: 2.5rem;
    backdrop-filter: blur(8px);
    transition: background .3s;
}

    .special-card:hover {
        background: rgba(255,255,255,.15);
    }

.sp-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
}

.special-card h3 {
    font-family: 'Playfair Display',serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .7rem;
}

.special-card > p {
    font-size: .9rem;
    color: rgba(255,255,255,.75);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.sp-features {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.8rem;
}

.sp-feat {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--green-light);
    font-weight: 500;
}

    .sp-feat::before {
        content: '✓';
        font-weight: 700;
    }

.sp-plans {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: .7rem;
    margin-bottom: 1.5rem;
}

.sp-plan {
    background: rgba(255,255,255,.1);
    border-radius: 12px;
    padding: .9rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,.15);
    transition: background .25s;
    cursor: pointer;
}

    .sp-plan:hover, .sp-plan.selected {
        background: var(--green);
        border-color: var(--green);
    }

    .sp-plan strong {
        display: block;
        color: #fff;
        font-size: 1rem;
        font-weight: 700;
    }

    .sp-plan span {
        font-size: .72rem;
        color: rgba(255,255,255,.7);
    }

/* ================================================================
   SERVICES PAGE
   ================================================================ */
.services-main {
    padding: 5rem 5vw;
    background: var(--bg-body);
    transition: background .35s;
}

.service-rows {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: center;
}

    .service-row.reverse {
        grid-template-columns: 1.3fr 1fr;
    }

        .service-row.reverse .service-vis {
            order: -1;
        }

.service-vis {
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
}

.service-vis-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--teal);
    color: #fff;
    padding: .38rem .9rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
}

.s-number {
    font-family: 'Playfair Display',serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    margin-bottom: .5rem;
}

.s-title {
    font-family: 'Playfair Display',serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: .7rem;
}

.s-desc {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.s-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.s-feat {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .83rem;
    font-weight: 500;
    color: var(--text);
}

    .s-feat::before {
        content: '✓';
        color: var(--green);
        font-weight: 700;
        font-size: .9rem;
    }

.s-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--teal);
    font-weight: 600;
    font-size: .88rem;
    text-decoration: none;
    transition: gap .2s;
}

    .s-link:hover {
        gap: .9rem;
    }

.process {
    padding: 5rem 5vw;
    background: var(--bg-card);
    transition: background .35s;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    gap: 1.5rem;
    position: relative;
    margin-top: 2rem;
}

    .process-steps::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg,var(--border),var(--green),var(--border));
        z-index: 0;
    }

.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.8rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform .3s,box-shadow .3s,background .35s;
}

    .step:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-family: 'Playfair Display',serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step h4 {
    font-family: 'Playfair Display',serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: .4rem;
}

.step p {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.packages {
    padding: 5rem 5vw;
    background: var(--bg-body);
    transition: background .35s;
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.pkg {
    background: var(--bg-card);
    border-radius: 22px;
    padding: 2.2rem;
    border: 1.5px solid var(--border);
    transition: transform .3s,box-shadow .3s,background .35s;
}

    .pkg:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .pkg.featured {
        border-color: var(--teal);
        position: relative;
    }

.pkg-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: #fff;
    padding: .32rem .9rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    white-space: nowrap;
}

.pkg-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.pkg-name {
    font-family: 'Playfair Display',serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: .4rem;
}

.pkg-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: .2rem;
}

    .pkg-price small {
        font-size: .8rem;
        font-weight: 500;
        color: var(--text-muted);
    }

.pkg-desc {
    font-size: .84rem;
    color: var(--text-muted);
    margin-bottom: 1.3rem;
    line-height: 1.65;
}

.pkg-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.8rem;
}

    .pkg-list li {
        font-size: .84rem;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: .5rem;
    }

        .pkg-list li::before {
            content: '✓';
            color: var(--green);
            font-weight: 700;
        }

        .pkg-list li.no {
            color: var(--text-muted);
        }

            .pkg-list li.no::before {
                content: '–';
                color: var(--border);
            }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-hero-wrap {
    padding: 9rem 5vw 0;
    background: var(--bg-body);
    position: relative;
    overflow: hidden;
    transition: background .35s;
}

    .about-hero-wrap::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 60% at 85% 40%,rgba(140,191,58,.07) 0%,transparent 65%), radial-gradient(ellipse 40% 50% at 10% 80%,rgba(26,107,114,.06) 0%,transparent 65%);
        pointer-events: none;
    }

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
}

.hero-split-text {
    padding-bottom: 5rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--teal-pale);
    color: var(--teal);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    margin-bottom: 1.4rem;
}

.hero-split-text h1 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(2.6rem,4.5vw,4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--teal-dark);
    margin-bottom: 1.4rem;
}

[data-theme="dark"] .hero-split-text h1 {
    color: #d6edef;
}

.hero-split-text h1 em {
    font-style: italic;
    color: var(--green);
}

.hero-split-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    max-width: 480px;
    margin-bottom: 2.2rem;
}

.hero-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats-strip {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    background: var(--bg-card);
    transition: background .35s;
}

.stat-block {
    padding: 2rem 1.8rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    transition: background .25s;
}

    .stat-block:hover {
        background: var(--teal-pale);
    }

[data-theme="dark"] .stat-block:hover {
    background: rgba(47,168,178,.1);
}

.stat-block strong {
    display: block;
    font-family: 'Playfair Display',serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--teal);
    line-height: 1;
    margin-bottom: .3rem;
}

.stat-block span {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: .04em;
}

.hero-visual-side {
    position: relative;
    align-self: end;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-img-main {
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    height: 420px;
    background: linear-gradient(155deg,#b2dfdb,#80cbc4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    position: relative;
}

[data-theme="dark"] .hero-img-main {
    filter: brightness(.7) saturate(.85);
}

.hero-img-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(19,79,85,.9);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.hero-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-img-sm {
    border-radius: 16px;
    overflow: hidden;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.hi1 {
    background: linear-gradient(135deg,#c8e6c9,#a5d6a7)
}

.hi2 {
    background: linear-gradient(135deg,#dcedc8,#c5e1a5)
}

[data-theme="dark"] .hi1, [data-theme="dark"] .hi2 {
    filter: brightness(.7) saturate(.85);
}

.partner-band {
    background: var(--teal);
    padding: 1.8rem 5vw;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

[data-theme="dark"] .partner-band {
    background: #0d2224;
}

.partner-band p {
    color: rgba(255,255,255,.75);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.partner-pill {
    background: rgba(255,255,255,.15);
    color: #fff;
    padding: .42rem 1rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.25);
    white-space: nowrap;
}

.story-section {
    padding: 6rem 5vw;
    background: var(--bg-body);
    transition: background .35s;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.story-left {
    position: sticky;
    top: 100px;
}

    .story-left h2 {
        font-family: 'Playfair Display',serif;
        font-size: clamp(1.9rem,3vw,2.6rem);
        font-weight: 900;
        color: var(--teal);
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }

    .story-left p {
        font-size: .95rem;
        color: var(--text-muted);
        line-height: 1.85;
        margin-bottom: 1.4rem;
    }

.story-quote {
    border-left: 4px solid var(--green);
    background: var(--teal-pale);
    padding: 1.2rem 1.5rem;
    border-radius: 0 14px 14px 0;
    font-family: 'Playfair Display',serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--teal);
    line-height: 1.65;
    margin-top: 1.5rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tl-year {
    display: flex;
    gap: 2rem;
    position: relative;
    padding-bottom: 2.5rem;
}

    .tl-year:last-child {
        padding-bottom: 0;
    }

    .tl-year::before {
        content: '';
        position: absolute;
        left: 28px;
        top: 48px;
        bottom: 0;
        width: 2px;
        background: var(--border);
    }

    .tl-year:last-child::before {
        display: none;
    }

.tl-dot {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-family: 'Playfair Display',serif;
    font-size: .92rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(26,107,114,.3);
}

.tl-year:nth-child(even) .tl-dot {
    background: var(--green);
}

.tl-body {
    padding-top: .6rem;
}

    .tl-body h4 {
        font-family: 'Playfair Display',serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--teal);
        margin-bottom: .35rem;
    }

    .tl-body p {
        font-size: .88rem;
        color: var(--text-muted);
        line-height: 1.7;
    }

.who-section {
    padding: 6rem 5vw;
    background: var(--bg-card);
    transition: background .35s;
}

.who-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.acc-card {
    background: linear-gradient(155deg,var(--teal-dark),var(--teal));
    border-radius: 24px;
    padding: 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .acc-card {
    background: linear-gradient(155deg,#071012,#0e2628);
}

.acc-card h3 {
    font-family: 'Playfair Display',serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--green-light);
}

.acc-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.acc-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.acc-num {
    font-family: 'Playfair Display',serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--green-light);
    line-height: 1;
    flex-shrink: 0;
    min-width: 70px;
}

.acc-item p {
    font-size: .85rem;
    color: rgba(255,255,255,.8);
    line-height: 1.6;
    padding-top: .25rem;
}

.who-right h2 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(1.9rem,3vw,2.6rem);
    font-weight: 900;
    color: var(--teal);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.who-right p {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.who-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.5rem;
}

.who-pill {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    font-size: .82rem;
    font-weight: 600;
    color: var(--teal);
    transition: all .25s;
    cursor: default;
}

    .who-pill:hover {
        background: var(--teal);
        color: #fff;
        border-color: var(--teal);
    }

.how-section {
    padding: 6rem 5vw;
    background: var(--bg-body);
    transition: background .35s;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.how-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: transform .3s,box-shadow .3s,background .35s;
    position: relative;
    overflow: hidden;
}

    .how-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .how-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        border-radius: 20px 20px 0 0;
    }

.hc1::after {
    background: var(--teal)
}

.hc2::after {
    background: var(--green)
}

.hc3::after {
    background: var(--teal-light)
}

.how-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.how-card h3 {
    font-family: 'Playfair Display',serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: .6rem;
}

.how-card p {
    font-size: .86rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.clients-section {
    padding: 6rem 5vw;
    background: var(--bg-card);
    transition: background .35s;
}

.client-seg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
    gap: 1.2rem;
    margin-top: 3rem;
}

.client-seg {
    background: var(--bg-body);
    border-radius: 18px;
    padding: 1.6rem;
    border: 1px solid var(--border);
    transition: all .25s;
}

    .client-seg:hover {
        border-color: var(--teal);
        box-shadow: 0 6px 20px rgba(26,107,114,.1);
        transform: translateY(-3px);
    }

.cs-icon {
    font-size: 2rem;
    margin-bottom: .8rem;
}

.client-seg h4 {
    font-family: 'Playfair Display',serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: .4rem;
}

.client-seg p {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.notable-clients {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--teal-pale);
    border-radius: 20px;
    border: 1px solid var(--border);
}

[data-theme="dark"] .notable-clients {
    background: rgba(47,168,178,.07);
}

.notable-clients h4 {
    font-family: 'Playfair Display',serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 1.2rem;
}

.client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.client-tag {
    padding: .35rem .9rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: var(--bg-card);
    transition: all .2s;
}

[data-theme="dark"] .client-tag {
    background: var(--bg-body);
}

.client-tag:hover {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

.client-tag.bold {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

.arch-section {
    padding: 6rem 5vw;
    background: linear-gradient(155deg,var(--teal-dark),var(--teal));
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .arch-section {
    background: linear-gradient(155deg,#071012,#0d2224);
}

.arch-inner {
    position: relative;
    z-index: 1;
}

.arch-header {
    margin-bottom: 3rem;
}

    .arch-header .section-label {
        color: var(--green-light);
    }

    .arch-header h2 {
        font-family: 'Playfair Display',serif;
        font-size: clamp(1.9rem,3vw,2.6rem);
        font-weight: 900;
        color: #fff;
        margin-bottom: .8rem;
    }

    .arch-header p {
        color: rgba(255,255,255,.72);
        max-width: 560px;
        line-height: 1.8;
    }

.arch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    gap: .8rem;
}

.arch-pill {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    padding: .75rem 1rem;
    font-size: .84rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    transition: background .25s;
}

    .arch-pill:hover {
        background: rgba(255,255,255,.16);
    }

.arch-more {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--green-light);
    font-size: .9rem;
    font-weight: 600;
}

.exp-section {
    padding: 6rem 5vw;
    background: var(--bg-body);
    transition: background .35s;
}

.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.exp-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.exp-img {
    border-radius: 18px;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

    .exp-img.big {
        grid-column: span 2;
        height: 250px;
        font-size: 5rem;
    }

.ei1 {
    background: linear-gradient(135deg,#b2dfdb,#80cbc4)
}

.ei2 {
    background: linear-gradient(135deg,#c8e6c9,#a5d6a7)
}

.ei3 {
    background: linear-gradient(135deg,#dcedc8,#c5e1a5)
}

[data-theme="dark"] .ei1, [data-theme="dark"] .ei2, [data-theme="dark"] .ei3 {
    filter: brightness(.7) saturate(.85);
}

.exp-text h2 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(1.9rem,3vw,2.4rem);
    font-weight: 900;
    color: var(--teal);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.exp-text p {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.contact-block {
    background: var(--bg-card);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    transition: background .35s;
}

.contact-row {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    font-size: .88rem;
    color: var(--text-muted);
}

    .contact-row strong {
        color: var(--teal);
        min-width: 70px;
        flex-shrink: 0;
    }

    .contact-row a {
        color: var(--teal);
        text-decoration: none;
        font-weight: 600;
    }

        .contact-row a:hover {
            text-decoration: underline;
        }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-hero {
    padding: 9rem 5vw 4rem;
    background: linear-gradient(155deg,var(--hero-from) 0%,var(--hero-to) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: background .35s;
}

    .contact-hero h1 {
        font-family: 'Playfair Display',serif;
        font-size: clamp(2.2rem,4.5vw,3.8rem);
        font-weight: 900;
        color: var(--teal);
        margin-bottom: .8rem;
    }

    .contact-hero p {
        font-size: 1rem;
        color: var(--text-muted);
        max-width: 520px;
        margin: 0 auto;
        line-height: 1.75;
    }

    .contact-hero .breadcrumb {
        justify-content: center;
    }

.quick-contact {
    padding: 3rem 5vw;
    background: var(--bg-card);
    transition: background .35s;
}

.qc-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.2rem;
}

.qc-tile {
    background: var(--bg-body);
    border-radius: 18px;
    padding: 1.6rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform .3s,box-shadow .3s,border-color .3s,background .35s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

    .qc-tile:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: var(--teal);
    }

.qc-icon {
    font-size: 2rem;
    margin-bottom: .7rem;
}

.qc-tile h4 {
    font-family: 'Playfair Display',serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: .3rem;
}

.qc-tile p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.qc-tile strong {
    display: block;
    color: var(--teal);
    font-size: .85rem;
    margin-top: .3rem;
}

.contact-main {
    padding: 5rem 5vw;
    background: var(--bg-body);
    transition: background .35s;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-form {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: background .35s;
}

.form-title {
    font-family: 'Playfair Display',serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: .4rem;
}

.form-subtitle {
    font-size: .88rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.1rem;
}

    .form-group label {
        display: block;
        font-size: .8rem;
        font-weight: 600;
        color: var(--teal);
        margin-bottom: .45rem;
        letter-spacing: .03em;
    }

    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: .75rem 1rem;
        border: 1.5px solid var(--border);
        border-radius: 12px;
        font-family: 'DM Sans',sans-serif;
        font-size: .9rem;
        background: var(--input-bg);
        color: var(--text);
        outline: none;
        transition: border-color .25s,box-shadow .25s,background .35s;
    }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 3px rgba(47,168,178,.15);
            background: var(--input-focus);
        }

        .form-group select option {
            background: var(--bg-card);
            color: var(--text);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

.inquiry-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    margin-bottom: 1.2rem;
}

.inq-type {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: .6rem .9rem;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    text-align: center;
    color: var(--text-muted);
    background: transparent;
}

    .inq-type:hover, .inq-type.sel {
        border-color: var(--teal);
        color: var(--teal);
        background: var(--teal-pale);
    }

.form-submit {
    width: 100%;
    background: var(--teal);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    font-family: 'DM Sans',sans-serif;
    font-size: 1rem;
    font-weight: 700;
    transition: all .25s;
    margin-top: .3rem;
}

    .form-submit:hover {
        background: var(--teal-dark);
        transform: translateY(-1px);
    }

.form-note {
    text-align: center;
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: .8rem;
}

.info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.info-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.3rem 1.5rem;
    border: 1px solid var(--border);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: border-color .25s,box-shadow .25s,background .35s;
}

    .info-card:hover {
        border-color: var(--teal);
        box-shadow: 0 4px 16px rgba(26,107,114,.12);
    }

.ic-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--teal-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ic-body h4 {
    font-weight: 700;
    color: var(--teal);
    font-size: .9rem;
    margin-bottom: .2rem;
}

.ic-body p {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.ic-body a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
}

.map-box {
    background: linear-gradient(135deg,#b2dfdb,#80cbc4);
    border-radius: 16px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
    border: 1px solid var(--border);
}

[data-theme="dark"] .map-box {
    filter: brightness(.7) saturate(.85);
}

.map-box span {
    font-size: 3rem;
}

.map-box p {
    font-size: .82rem;
    color: var(--teal-dark);
    font-weight: 600;
}

.hours-grid {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: background .35s;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .85rem 1.3rem;
    border-bottom: 1px solid var(--border);
}

    .hours-row:last-child {
        border-bottom: none;
    }

    .hours-row span {
        font-size: .85rem;
        color: var(--text-muted);
    }

    .hours-row strong {
        font-size: .85rem;
        color: var(--teal);
        font-weight: 600;
    }

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: .4rem;
}

.status-open {
    background: var(--green)
}

.status-closed {
    background: #e53935
}

.faq {
    padding: 5rem 5vw;
    background: var(--bg-card);
    transition: background .35s;
}

.faq-list {
    max-width: 760px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.faq-q {
    padding: 1.1rem 1.4rem;
    font-weight: 600;
    font-size: .92rem;
    color: var(--teal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .25s;
}

    .faq-q:hover {
        background: var(--teal-pale);
    }

    .faq-q.open {
        background: var(--teal-pale);
        color: var(--teal-light);
    }

.faq-chevron {
    transition: transform .3s;
    font-size: .75rem;
    color: var(--text-muted);
}

.faq-q.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease,padding .35s ease;
    font-size: .86rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 1.4rem;
}

    .faq-a.open {
        max-height: 200px;
        padding: .2rem 1.4rem 1rem;
    }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-actions {
        justify-content: center
    }

    .hero-stats {
        justify-content: center
    }

    .hero-visual {
        display: none
    }

    .hero-split {
        grid-template-columns: 1fr
    }

    .hero-visual-side {
        display: none
    }

    .hero-stats-strip {
        grid-template-columns: 1fr 1fr
    }

    .story-grid, .who-grid, .exp-grid, .service-row, .service-row.reverse {
        grid-template-columns: 1fr
    }

        .service-row.reverse .service-vis {
            order: 0
        }

    .story-left {
        position: static
    }

    .cat-header {
        grid-template-columns: 1fr
    }

    .cat-header-emoji {
        display: none
    }

    .special-grid, .pkg-grid {
        grid-template-columns: 1fr
    }

    .contact-layout {
        grid-template-columns: 1fr
    }

    .qc-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr
    }

    .showcase-item.big {
        grid-row: auto
    }

        .showcase-item.big .showcase-thumb {
            min-height: 220px
        }

    .how-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .form-row, .inquiry-types {
        grid-template-columns: 1fr
    }

    .sp-plans {
        grid-template-columns: 1fr 1fr
    }

    .s-features {
        grid-template-columns: 1fr
    }

    .process-steps::before {
        display: none
    }

    .qc-grid {
        grid-template-columns: 1fr 1fr
    }

    .showcase-grid {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: .8rem;
        text-align: center
    }

    .how-grid {
        grid-template-columns: 1fr
    }

    .arch-grid {
        grid-template-columns: 1fr 1fr
    }

    .exp-imgs {
        grid-template-columns: 1fr
    }

    .exp-img.big {
        grid-column: auto
    }
}
