        /* ============================================================
           DESIGN SYSTEM — HIMALAYAN NOIR
           Palette: Midnight / Warm Gold / Forest / Off-White
        ============================================================ */
        :root {
            --ink:        #080c12;
            --deep:       #0d1520;
            --charcoal:   #1a2535;
            --warm:       #f5f0e8;
            --off:        #edeae2;
            --gold:       #c8922a;
            --gold-lt:    #e8b84b;
            --forest:     #264d38;
            --forest-lt:  #3a7055;
            --text-body:  #2c3a4a;
            --text-muted: #6b7a8d;
            --text-warm:  #d4cbbf;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; overflow-x: hidden; }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--warm);
            color: var(--text-body);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        ::selection { background: var(--gold); color: #fff; }

        ::-webkit-scrollbar { width: 7px; }
        ::-webkit-scrollbar-track { background: var(--ink); }
        ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

        img { display: block; max-width: 100%; }
        a { text-decoration: none; }

        /* ---- LAYOUT ---- */
        .container {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 32px;
        }
        @media (max-width: 560px) { .container { padding: 0 20px; } }

        /* ---- SCROLL REVEAL ---- */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity .9s cubic-bezier(.25,.8,.25,1),
                        transform .9s cubic-bezier(.25,.8,.25,1);
        }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .rv1 { transition-delay: .1s; }
        .rv2 { transition-delay: .2s; }
        .rv3 { transition-delay: .3s; }

        /* ---- SHARED TYPOGRAPHY ---- */
        .eyebrow {
            font-size: .85rem;
            font-weight: 600;
            letter-spacing: .28em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }
        .eyebrow::before {
            content: '';
            width: 28px;
            height: 1px;
            background: currentColor;
            flex-shrink: 0;
        }
        .eyebrow-center { justify-content: center; }
        .eyebrow-center::before { display: none; }

        .divider { width: 52px; height: 2px; background: var(--gold); }

        /* ---- BUTTONS ---- */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            padding: 14px 30px;
            border: 2px solid transparent;
            transition: all .22s;
            cursor: pointer;
        }
        .btn-gold  { background: var(--gold);  color: var(--ink); border-color: var(--gold); }
        .btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); }
        .btn-ghost { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.3); }
        .btn-ghost:hover { border-color: rgba(255,255,255,.75); color: #fff; transform: translateY(-2px); }
        .btn-dark  { background: var(--ink); color: #fff; border-color: var(--ink); }
        .btn-dark:hover { background: var(--charcoal); border-color: var(--charcoal); transform: translateY(-2px); }

        /* ============================================================
           ANNOUNCEMENT BAR
        ============================================================ */
        .announce {
            background: var(--gold);
            color: var(--ink);
            text-align: center;
            padding: 10px 20px;
            font-size: .95rem;
            font-weight: 600;
            letter-spacing: .03em;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .announce a { color: var(--ink); font-weight: 800; text-decoration: underline; flex-shrink: 0; }
        .ann-text-mob { display: none; }
        @media (max-width: 768px) {
            .announce { font-size: 0.75rem; padding: 0 10px; }
            .ann-text { display: none; }
            .ann-text-mob { display: inline; }
        }
        /* Push page content below fixed announce bar */
        body { padding-top: 44px; }

        /* ============================================================
           NAVIGATION
        ============================================================ */
        #navbar {
            position: fixed;
            top: 44px;
            width: 100%;
            z-index: 9000;
            padding: 18px 0;
            transition: padding .35s, background .35s, border-color .35s, box-shadow .35s, top .35s;
            border-bottom: 1px solid transparent;
        }
        #navbar.scrolled {
            background: rgba(8,12,18,.94);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            padding: 14px 0;
            top: 44px;
            border-color: rgba(200,146,42,.14);
            box-shadow: 0 4px 40px rgba(0,0,0,.35);
        }
        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            /* Gap is handled dynamically below */
        }
        .nav-logo img {
            width: 85px; /* Larger size on initial load */
            height: 85px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(200,146,42,.35);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .nav-logo:hover img { border-color: var(--gold); }
        .nav-brand {
            color: #fff;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            /* Hidden by default on initial load */
            max-width: 0;
            opacity: 0;
            overflow: hidden;
            white-space: nowrap;
            margin-left: 0;
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .nav-brand sub {
            display: block;
            font-family: 'DM Sans', sans-serif;
            font-size: .7rem;
            font-weight: 600;
            letter-spacing: .26em;
            text-transform: uppercase;
            color: var(--gold);
            vertical-align: baseline;
            line-height: 1.6;
        }
        
        /* ---- SCROLLED / STICKY STATE ---- */
        #navbar.scrolled .nav-logo img {
            width: 48px; /* Shrinks back for the sticky menu */
            height: 48px;
        }
        #navbar.scrolled .nav-brand {
            max-width: 250px; /* Expands to reveal text */
            opacity: 1;
            margin-left: 12px; /* Creates the gap */
        }

        .nav-links {
            display: none;
            gap: 16px; /* Tighter gap for smaller laptops */
            align-items: center;
        }
        @media (min-width: 1024px) { .nav-links { display: flex; } }
        @media (min-width: 1200px) { .nav-links { gap: 26px; } } /* Expands on larger screens */
        .nav-links a {
            color: rgba(255,255,255,.85);
            font-size: 0.85rem; /* Scaled down slightly to fit the new item */
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
            transition: color .2s;
        }
        .nav-links a:hover { color: var(--gold); }
        
        /* ---- DESKTOP DROPDOWN ---- */
        .dropdown {
            position: relative;
            display: inline-block;
            padding: 10px 0; /* Creates an invisible bridge to hover */
        }
        .dropdown-toggle {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            cursor: pointer;
        }
        .dropdown-content {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            top: 100%;
            left: -15px; /* Offset to align with text */
            background: rgba(8,12,18,.96);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            min-width: 200px;
            border: 1px solid rgba(200,146,42,.14);
            border-top: 2px solid var(--gold);
            transform: translateY(12px);
            transition: all 0.3s cubic-bezier(.25,.8,.25,1);
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            z-index: 500;
        }
        .dropdown:hover .dropdown-content {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }
        .dropdown-content a {
            padding: 16px 20px;
            font-size: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            display: block;
            margin: 0;
        }
        .dropdown-content a:last-child { border-bottom: none; }
        .dropdown-content a:hover { background: rgba(255,255,255,0.03); padding-left: 24px; }

        .nav-cta {
            background: var(--gold);
            color: var(--ink) !important;
            padding: 9px 18px; /* Slightly tighter padding to save space */
            font-size: .8rem !important;
            font-weight: 700 !important;
            letter-spacing: .08em !important;
            transition: background .2s !important;
        }
        .nav-cta:hover { background: var(--gold-lt) !important; }
        .hamburger {
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            display: flex;
        }
        @media (min-width: 1024px) { .hamburger { display: none; } }

        /* Mobile drawer – full-screen overlay, sits below the announce bar */
        #mob-menu {
            position: fixed;
            top: 44px;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 9999;
            background: rgba(8,12,18,.98);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity .25s ease, visibility .25s;
        }
        #mob-menu.open {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
        }
        @media (min-width: 1024px) { #mob-menu { display: none !important; } }

        /* Menu header row with logo image + close button */
        .mob-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 20px;
            border-bottom: 1px solid rgba(200,146,42,.22);
            flex-shrink: 0;
        }
        .mob-header-logo {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(200,146,42,.4);
            display: block;
        }
        .mob-close {
            background: none;
            border: 1px solid rgba(255,255,255,.18);
            color: #fff;
            cursor: pointer;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: border-color .2s, background .2s;
        }
        .mob-close:hover { background: rgba(255,255,255,.08); border-color: var(--gold); }

        /* Nav list */
        .mob-nav {
            display: flex;
            flex-direction: column;
            flex: 1;
            padding: 8px 0 40px;
        }
        .mob-item {
            color: rgba(255,255,255,.85);
            padding: 17px 28px;
            font-size: 1.05rem;
            font-weight: 500;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,.06);
            background: none;
            text-align: left;
            width: 100%;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            letter-spacing: .04em;
            transition: color .2s;
            text-decoration: none;
        }
        .mob-item:hover { color: var(--gold); }

        /* Accordion chevron */
        .mob-chevron { transition: transform .25s ease; flex-shrink: 0; }
        .mob-toggle[aria-expanded="true"] .mob-chevron { transform: rotate(180deg); }

        /* Collapsible sub-group */
        .mob-sub-group {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease;
            background: rgba(255,255,255,.03);
        }
        .mob-sub-group.open { max-height: 320px; }
        .mob-sub {
            display: block;
            padding: 13px 28px 13px 48px;
            color: rgba(255,255,255,.5);
            font-size: 0.93rem;
            border-bottom: 1px solid rgba(255,255,255,.03);
            font-weight: 400;
            transition: color .2s;
            text-decoration: none;
        }
        .mob-sub:hover { color: var(--gold); }

        /* CTA button at bottom */
        #mob-menu .mob-cta {
            display: block;
            background: var(--gold);
            color: var(--ink) !important;
            font-weight: 700;
            text-align: center;
            margin: 24px 20px 0;
            border-radius: 4px;
            padding: 15px 20px;
            letter-spacing: .05em;
            text-decoration: none;
        }

        /* ============================================================
           HERO
        ============================================================ */
        #hero {
            position: relative;
            min-height: 100svh;
            display: flex;
            align-items: flex-end;
            padding-bottom: 90px;
            overflow: hidden;
        }
        #hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            animation: heroZoom 22s ease-in-out infinite alternate;
        }
        @keyframes heroZoom {
            from { transform: scale(1); }
            to   { transform: scale(1.09); }
        }
        .hero-veil {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(8,12,18,.97)  0%,
                rgba(8,12,18,.58) 40%,
                rgba(8,12,18,.22) 68%,
                rgba(8,12,18,.38) 100%
            );
        }
        /* Subtle grain */
        .hero-veil::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
            pointer-events: none;
        }
        #snow-canvas {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 2;
        }
        .hero-body {
            position: relative;
            z-index: 10;
            width: 100%;
        }
        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold);
            font-size: .85rem;
            font-weight: 600;
            letter-spacing: .3em;
            text-transform: uppercase;
            margin-bottom: 24px;
            opacity: 0;
            animation: fadeUp .8s .3s forwards;
        }
        .hero-tag::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
        
        @media (max-width: 768px) {
            .hero-tag { display: none; }
        }

        .hero-h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.6rem, 8vw, 7rem);
            font-weight: 600;
            color: #fff;
            line-height: 1.05;
            letter-spacing: -.01em;
            margin-bottom: 18px;
            opacity: 0;
            animation: fadeUp .8s .5s forwards;
        }
        .hero-h1 em {
            font-style: italic;
            font-weight: 600;
            color: var(--gold-lt);
        }
        .hero-h1-sub {
            display: block;
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(.95rem, 1.6vw, 1.2rem);
            font-weight: 600;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--gold);
            margin-top: 16px;
        }
        .hero-sub {
            color: rgba(255,255,255,.85);
            font-size: clamp(1.15rem, 2vw, 1.35rem);
            font-weight: 400;
            line-height: 1.75;
            max-width: 580px;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeUp .8s .7s forwards;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            opacity: 0;
            animation: fadeUp .8s .9s forwards;
        }
        .scroll-cue {
            position: absolute;
            bottom: 36px;
            right: 36px;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .scroll-cue span {
            writing-mode: vertical-rl;
            font-size: .75rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: rgba(255,255,255,.5);
            font-weight: 500;
        }
        .scroll-line {
            width: 1px;
            height: 56px;
            background: linear-gradient(to bottom, transparent, var(--gold));
            animation: pulse 2.2s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: .35; transform: scaleY(.8); }
            50%       { opacity: 1;   transform: scaleY(1); }
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(28px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ============================================================
           STATS STRIP
        ============================================================ */
        .stats-strip {
            background: var(--ink);
            border-bottom: 1px solid rgba(200,146,42,.14);
        }
        .stats-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        }
        .stat {
            padding: 30px 20px;
            text-align: center;
            border-right: 1px solid rgba(255,255,255,.05);
        }
        .stat:last-child { border-right: none; }
        .stat-n {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.2rem;
            font-weight: 600;
            color: var(--gold-lt);
            line-height: 1;
            display: block;
        }
        .stat-l {
            font-size: .85rem;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: rgba(255,255,255,.65);
            margin-top: 8px;
            display: block;
        }
        @media (max-width: 480px) {
            .stats-inner { grid-template-columns: 1fr 1fr; }
            .stat:nth-child(even) { border-right: none; }
        }

        /* ============================================================
           SECTION: ABOUT
        ============================================================ */
        #about { padding: 120px 0; background: var(--warm); }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            align-items: center;
        }
        @media (min-width: 960px) {
            .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
        }
        .about-img-wrap { position: relative; }
        .about-img {
            width: 100%;
            height: 560px;
            object-fit: cover;
        }
        @media (max-width: 600px) { .about-img { height: 340px; } }
        /* Decorative offset frame */
        .img-frame {
            position: absolute;
            bottom: -18px;
            right: -18px;
            width: 68%;
            height: 68%;
            border: 2px solid rgba(200,146,42,.28);
            pointer-events: none;
            z-index: -1;
        }
        .about-badge {
            position: absolute;
            bottom: 32px;
            left: -16px;
            background: var(--ink);
            padding: 18px 22px;
            border-left: 4px solid var(--gold);
        }
        @media (max-width: 960px) { .about-badge { left: 14px; bottom: 16px; } }
        .badge-n {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--gold-lt);
            line-height: 1;
        }
        .badge-l {
            font-size: .75rem;
            font-weight: 500;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: rgba(255,255,255,.6);
            margin-top: 4px;
        }
        .about-copy h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 4vw, 3.6rem);
            font-weight: 600;
            color: var(--ink);
            line-height: 1.1;
            margin-bottom: 22px;
        }
        .about-copy h2 em { font-style: italic; color: var(--forest-lt); }
        .body-text {
            color: var(--text-body);
            font-size: 1.12rem;
            line-height: 1.82;
            margin-bottom: 18px;
        }
        .hq-chip {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--off);
            border: 1px solid rgba(0,0,0,.08);
            padding: 14px 22px;
            margin-top: 10px;
        }
        .hq-chip .hq-l { font-size: .8rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--text-muted); }
        .hq-chip .hq-v { font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-top: 4px; }

        /* ============================================================
           SECTION: EXPERTISE
        ============================================================ */
        #expertise {
            padding: 120px 0;
            background: var(--deep);
            position: relative;
            overflow: hidden;
        }
        #expertise::before {
            content: '';
            position: absolute;
            top: -180px;
            right: -180px;
            width: 460px;
            height: 460px;
            background: radial-gradient(circle, rgba(200,146,42,.07) 0%, transparent 70%);
            pointer-events: none;
        }
        #expertise::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -100px;
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, rgba(58,112,85,.09) 0%, transparent 70%);
            pointer-events: none;
        }
        .exp-hd {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 68px;
        }
        .exp-hd .eyebrow { color: var(--gold); }
        .exp-hd h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 4vw, 3.4rem);
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
            line-height: 1.1;
        }
        .exp-hd p { color: rgba(255,255,255,.75); font-size: 1.15rem; line-height: 1.75; }

        .exp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1px;
            background: rgba(255,255,255,.05);
            border: 1px solid rgba(255,255,255,.05);
        }
        .exp-card {
            background: var(--deep);
            padding: 44px 34px;
            position: relative;
            overflow: hidden;
            transition: background .3s;
        }
        .exp-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            width: 0;
            background: var(--gold);
            transition: width .4s ease;
        }
        .exp-card:hover { background: rgba(255,255,255,.035); }
        .exp-card:hover::after { width: 100%; }
        .exp-icon {
            width: 50px;
            height: 50px;
            border: 1px solid rgba(200,146,42,.28);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            margin-bottom: 26px;
        }
        .exp-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 12px;
        }
        .exp-card p { color: rgba(255,255,255,.75); font-size: 1.1rem; line-height: 1.78; }
        .exp-outro {
            max-width: 800px;
            margin: 68px auto 0;
            text-align: center;
        }
        .exp-outro p {
            color: rgba(255,255,255,.8);
            font-size: 1.2rem;
            line-height: 1.85;
            margin-bottom: 18px;
            font-weight: 300;
        }

        /* ============================================================
           SECTION: PHILOSOPHY / PARALLAX
        ============================================================ */
        #philosophy {
            position: relative;
            padding: 140px 0;
            overflow: hidden;
        }
        #phil-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        @media (min-width: 768px) { #phil-bg { background-attachment: fixed; } }
        .phil-veil {
            position: absolute;
            inset: 0;
            background: linear-gradient(140deg, rgba(8,12,18,.88) 0%, rgba(38,77,56,.74) 100%);
        }
        .phil-body {
            position: relative;
            z-index: 10;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 32px;
            text-align: center;
        }
        .phil-body .phil-icon { color: var(--gold); margin-bottom: 28px; }
        .phil-body h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            font-weight: 600;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 44px;
        }
        .phil-text {
            color: rgba(255,255,255,.9);
            font-size: 1.25rem;
            line-height: 1.9;
            font-weight: 400;
            margin-bottom: 22px;
        }
        .phil-quote {
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(1.2rem, 3vw, 1.6rem);
            font-weight: 500;
            color: var(--gold-lt);
            padding: 30px 0;
            border-top: 1px solid rgba(200,146,42,.28);
            border-bottom: 1px solid rgba(200,146,42,.28);
            margin-top: 44px;
            line-height: 1.7;
        }

        /* ============================================================
           SECTION: FOUNDER
        ============================================================ */
        #founder { padding: 120px 0; background: var(--warm); }
        .founder-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            align-items: start;
        }
        @media (min-width: 960px) {
            .founder-grid { grid-template-columns: 5fr 7fr; gap: 80px; }
        }
        .founder-img-wrap { position: relative; }
        .founder-img {
            width: 100%;
            height: 580px;
            object-fit: cover;
        }
        @media (max-width: 600px) { .founder-img { height: 380px; } }
        .founder-img-2 {
            position: absolute;
            bottom: -30px;
            right: -20px;
            width: 220px;
            height: 150px;
            object-fit: cover;
            object-position: right center;
            border: 4px solid var(--warm);
            box-shadow: 0 12px 24px rgba(0,0,0,0.12);
        }
        @media (max-width: 960px) { 
            .founder-img-2 { 
                right: 12px; 
                bottom: -20px; 
                width: 170px; 
                height: 115px; 
            } 
        }
        .founder-copy .eyebrow { color: var(--gold); }
        .founder-copy h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 4vw, 3.6rem);
            font-weight: 600;
            color: var(--ink);
            line-height: 1.1;
            margin-bottom: 4px;
        }
        .founder-texts { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
        blockquote.founder-q {
            background: var(--ink);
            color: rgba(255,255,255,.9);
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(1.05rem, 3vw, 1.2rem);
            font-weight: 400;
            line-height: 1.7;
            padding: 24px 26px;
            border-left: 4px solid var(--gold);
            margin-top: 28px;
        }

        /* ============================================================
           SECTION: WHY US
        ============================================================ */
        #why-us { padding: 120px 0; background: var(--off); }
        .why-hd {
            text-align: center;
            max-width: 820px;
            margin: 0 auto 72px;
        }
        .why-hd .eyebrow { color: var(--gold); }
        .why-hd h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 4vw, 3.4rem);
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 14px;
        }
        .why-hd p { color: rgba(8, 12, 18, 0.85); font-size: 1.15rem; line-height: 1.8; }
        
        .why-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
        @media (min-width: 768px) {
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            /* Force the dark box to be full width */
            .why-wide { grid-column: 1 / -1; }
        }
        @media (min-width: 1024px) {
            /* Keep gap slightly larger on big screens but maintain 2 columns */
            .why-grid { gap: 28px; }
        }

        .why-card {
            background: #fff;
            padding: 44px;
            border: 1px solid rgba(0,0,0,.04);
            border-top: 4px solid transparent;
            position: relative;
            overflow: hidden;
            transition: transform .4s cubic-bezier(.25,.8,.25,1), box-shadow .4s, border-color .4s;
        }
        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 28px 56px rgba(0,0,0,.08);
            border-top-color: var(--gold);
        }
        .why-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 6rem;
            font-weight: 700;
            color: rgba(200,146,42,.06);
            line-height: 0.8;
            position: absolute;
            top: 24px;
            right: 24px;
            pointer-events: none;
            transition: color .4s;
        }
        .why-card:hover .why-num { color: rgba(200,146,42,.12); }
        
        .why-icon {
            width: 58px;
            height: 58px;
            background: rgba(38, 77, 56, 0.06);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--forest-lt);
            margin-bottom: 28px;
            transition: transform .4s, background .4s, color .4s;
        }
        .why-card:hover .why-icon {
            background: var(--forest-lt);
            color: #fff;
            transform: scale(1.08);
        }
        
        .why-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 14px;
        }
        .why-card p { 
            color: rgba(8, 12, 18, 0.85); 
            font-size: 1.05rem; 
            line-height: 1.85; 
            font-weight: 400; 
        }

        /* Split Image Card */
        .why-wide {
            padding: 0 !important;
            background: #fff;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            border-top: 4px solid var(--forest-lt);
            gap: 0;
        }
        .why-wide:hover {
            border-top-color: var(--gold);
        }
        @media (min-width: 800px) { 
            .why-wide { flex-direction: row; } 
        }
        .why-wide-img {
            width: 100%;
            height: 280px;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }
        @media (min-width: 800px) {
            .why-wide-img { width: 45%; height: auto; min-height: 340px; }
        }
        .why-wide-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s cubic-bezier(.25,.8,.25,1);
        }
        .why-wide:hover .why-wide-img img {
            transform: scale(1.05);
        }
        .why-wide-content {
            padding: 40px 34px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }
        @media (min-width: 800px) {
            .why-wide-content { width: 55%; padding: 50px 60px; }
        }
        .why-wide h3 { color: var(--ink); margin-bottom: 14px; }
        .why-wide p { color: rgba(8, 12, 18, 0.85); margin: 0; }
        .why-wide .why-num { color: rgba(200,146,42,.06); top: 24px; right: 24px; z-index: 0; }
        .why-wide:hover .why-num { color: rgba(200,146,42,.12); }

        /* Image Banner Conclusion */
        .why-conclusion-img {
            grid-column: 1 / -1;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 56px 44px;
            border-bottom: 4px solid var(--gold);
        }
        @media (max-width: 700px) {
            .why-conclusion-img { padding: 40px 24px; }
        }
        .why-conclusion-img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .why-conclusion-img:hover img {
            transform: scale(1.05);
        }
        .wci-veil {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(8,12,18,.94) 0%, rgba(38,77,56,.88) 100%);
            z-index: 2;
        }
        .wci-content {
            position: relative;
            z-index: 3;
            display: flex;
            gap: 28px;
            align-items: flex-start;
        }
        @media (max-width: 700px) {
            .wci-content { flex-direction: column; gap: 18px; }
        }
        .wci-icon {
            flex-shrink: 0;
            color: var(--gold);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(200,146,42,.12);
            border: 1px solid rgba(200,146,42,.25);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .wci-content p {
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(1.05rem, 3vw, 1.25rem);
            color: rgba(255,255,255,.95);
            line-height: 1.75;
            font-weight: 400;
        }

        /* ============================================================
           SECTION: NOTICE
        ============================================================ */
        #notice { padding: 72px 0; background: var(--warm); }
        .notice-box {
            max-width: 900px;
            margin: 0 auto;
            background: var(--off);
            border: 1px solid rgba(0,0,0,.07);
            padding: 52px 60px;
            text-align: center;
            position: relative;
        }
        @media (max-width: 600px) { .notice-box { padding: 36px 22px; } }
        .notice-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
        }
        .notice-icon-wrap {
            width: 52px;
            height: 52px;
            border: 1px solid rgba(200,146,42,.38);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--gold);
        }
        .notice-box h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 14px;
        }
        .notice-box > p { color: var(--text-muted); font-size: 1.15rem; line-height: 1.72; max-width: 680px; margin: 0 auto 28px; }
        .notice-inner {
            background: #fff;
            border: 1px solid rgba(0,0,0,.055);
            padding: 30px 36px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            text-align: left;
            margin-bottom: 28px;
        }
        @media (min-width: 580px) {
            .notice-inner { flex-direction: row; align-items: center; justify-content: space-between; }
        }
        .notice-feats { display: flex; flex-direction: column; gap: 10px; }
        .nf {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.1rem;
            color: var(--text-body);
            font-weight: 500;
        }
        .nf svg { color: var(--forest-lt); flex-shrink: 0; }
        
        .notice-btn {
            flex-shrink: 0;
            text-align: center;
            justify-content: center;
        }
        @media (max-width: 600px) {
            .notice-inner { padding: 24px 20px; }
            .notice-btn {
                font-size: 0.8rem;
                padding: 14px 16px;
                width: 100%;
                overflow-wrap: anywhere;
                white-space: normal;
                letter-spacing: 0.08em;
            }
        }

        /* ============================================================
           SECTION: DESTINATIONS
        ============================================================ */
        #destinations { padding: 120px 0; background: var(--ink); }
        .dest-hd {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 56px;
        }
        @media (min-width: 700px) {
            .dest-hd { flex-direction: row; justify-content: space-between; align-items: flex-end; }
        }
        .dest-hd .eyebrow { color: var(--gold); }
        .dest-hd h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 4vw, 3.4rem);
            font-weight: 600;
            color: #fff;
            line-height: 1.1;
            max-width: 440px;
        }
        .dest-hd p { color: rgba(255,255,255,.75); font-size: 1.15rem; max-width: 380px; line-height: 1.72; }
        /* Asymmetric mosaic */
        .mosaic {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }
        @media (min-width: 700px) {
            .mosaic { grid-template-columns: 3fr 2fr; grid-template-rows: 300px 280px; }
        }
        @media (min-width: 1100px) {
            .mosaic {
                grid-template-columns: 2fr 1.15fr 1.15fr;
                grid-template-rows: 340px 230px;
            }
            .dc:nth-child(1) { grid-row: 1 / 3; grid-column: 1 / 2; }
            .dc:nth-child(2) { grid-row: 1 / 2; grid-column: 2 / 3; }
            .dc:nth-child(3) { grid-row: 1 / 2; grid-column: 3 / 4; }
            .dc:nth-child(4) { grid-row: 2 / 3; grid-column: 2 / 4; }
        }
        .dc {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            min-height: 240px;
        }
        .dc img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .8s cubic-bezier(.25,.8,.25,1);
        }
        .dc:hover img { transform: scale(1.08); }
        .dc-veil {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(8,12,18,.92) 0%, rgba(8,12,18,.18) 55%, transparent 100%);
        }
        .dc-info {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 24px 26px;
        }
        .dc-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.9rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 3px;
        }
        .dc-info p { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
        .dc-tag {
            position: absolute;
            top: 18px;
            left: 18px;
            background: var(--gold);
            color: var(--ink);
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            padding: 6px 14px;
            opacity: 0;
            transform: translateY(-6px);
            transition: all .28s;
        }
        .dc:hover .dc-tag { opacity: 1; transform: translateY(0); }
        /* Cultural card (no image) */
        .dc-cultural {
            background: var(--forest);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 38px;
        }
        .dc-cultural svg { color: var(--gold-lt); margin-bottom: 18px; }
        .dc-cultural h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.9rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }
        .dc-cultural p { color: rgba(255,255,255,.85); font-size: 1.1rem; line-height: 1.6; margin-bottom: 22px; }
        .dc-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--gold-lt);
            font-size: .9rem;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            transition: color .2s;
        }
        .dc-link:hover { color: #fff; }

        /* ============================================================
           SECTION: TESTIMONIALS (REDESIGNED SINGLE SLIDER)
        ============================================================ */
        #testimonials {
            padding: 100px 0;
            background: var(--warm);
            overflow: hidden;
        }
        
        .test-wrap-new {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
        }
        @media (min-width: 960px) {
            .test-wrap-new {
                grid-template-columns: 360px 1fr;
                gap: 60px;
                align-items: center;
            }
        }
        
        /* Left Column Formatting */
        .tw-left {
            display: flex;
            flex-direction: column;
            align-items: center; /* Centered on mobile */
            text-align: center;
        }
        .tw-left .eyebrow { justify-content: center; color: var(--gold); }
        .tw-left .eyebrow::before { display: none; }
        @media (min-width: 960px) {
            .tw-left { align-items: flex-start; text-align: left; }
            .tw-left .eyebrow { justify-content: flex-start; }
            .tw-left .eyebrow::before { display: block; }
        }
        .tw-left h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 4vw, 3.4rem);
            font-weight: 600;
            color: var(--ink);
            line-height: 1.1;
            margin-bottom: 20px;
        }
        .tw-sub {
            font-size: 1.05rem;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 30px;
            max-width: 400px;
        }
        
        /* Google Badge styling inside left col */
        .g-badge {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            background: #fff;
            padding: 18px 24px;
            border: 1px solid rgba(0,0,0,.05);
            box-shadow: 0 12px 30px rgba(0,0,0,.04);
            margin-bottom: 0;
        }
        .g-icon { flex-shrink: 0; display: flex; align-items: center; }
        .g-meta { display: flex; flex-direction: column; gap: 4px; text-align: left; }
        .g-rating-row { display: flex; align-items: center; gap: 8px; }
        .g-score { font-size: 1.3rem; font-weight: 700; color: var(--ink); line-height: 1; }
        .g-stars { display: flex; gap: 3px; color: #fbbc04; }
        .g-stars svg { width: 16px; height: 16px; fill: currentColor; }
        .g-count { font-size: .85rem; font-weight: 500; color: var(--text-muted); }

        /* Device Specific Buttons */
        .btn-desktop { display: none; margin-top: 36px; }
        .btn-mobile { display: inline-flex; margin-top: 24px; align-self: center; }
        @media (min-width: 960px) {
            .btn-desktop { display: inline-flex; }
            .btn-mobile { display: none; }
        }

        /* Right Column Slider Styling */
        .tw-right {
            position: relative;
            min-width: 0; 
        }
        
        .ts-track {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none; 
            -webkit-overflow-scrolling: touch;
            /* Bleed on mobile to ensure smooth swipe without cutting off */
            margin: 0 -20px;
            padding: 20px;
        }
        @media (min-width: 960px) {
            .ts-track { margin: 0; padding: 20px 0; overflow-x: hidden; }
        }
        .ts-track::-webkit-scrollbar { display: none; }
        
        .ts-slide {
            flex: 0 0 100%;
            scroll-snap-align: center;
            padding: 0 10px 24px; /* Space at bottom for author overlap */
            box-sizing: border-box;
            position: relative;
        }
        @media (min-width: 960px) {
            .ts-slide { padding: 0 0 24px 0; }
        }

        /* Review Card - Speech Bubble */
        .ts-card {
            background: #fff;
            padding: 40px;
            position: relative;
            box-shadow: 0 15px 40px rgba(0,0,0,0.06);
            border-bottom: 4px solid var(--forest-lt);
            border-radius: 4px;
            margin-bottom: 0;
        }
        /* Triangle Tail */
        .ts-card::after {
            content: '';
            position: absolute;
            bottom: -16px;
            left: 54px;
            border-width: 16px 16px 0 0;
            border-style: solid;
            border-color: var(--forest-lt) transparent transparent transparent;
        }
        
        /* Quote Decoration */
        .ts-quote-icon {
            position: absolute;
            top: 24px;
            right: 24px;
            color: rgba(200, 146, 42, 0.12);
            line-height: 1;
        }

        .ts-stars-display { display: flex; gap: 4px; color: #fbbc04; margin-bottom: 24px; }
        .ts-stars-display svg { width: 20px; height: 20px; fill: currentColor; }

        .ts-text {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.05rem;
            line-height: 1.85;
            color: var(--ink);
            position: relative;
            z-index: 2;
            font-style: italic;
        }

        /* Author Info Under Bubble */
        .ts-author {
            display: flex;
            align-items: flex-start; /* Align top so text margin works */
            gap: 16px;
            position: relative;
            margin-top: -24px; /* Pulls avatar up to overlap the card border */
            margin-left: 36px; /* Align with tail */
            z-index: 10;
        }
        @media (min-width: 960px) {
            .ts-author { margin-left: 26px; }
        }
        .ts-avatar {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: var(--off);
            color: var(--forest-lt);
            font-weight: 700;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 4px solid var(--warm); /* matches background to overlap cleanly */
            box-shadow: 0 6px 16px rgba(0,0,0,0.08);
            flex-shrink: 0;
        }
        .ts-ainfo { 
            display: flex; 
            flex-direction: column; 
            gap: 2px; 
            margin-top: 32px; /* Push text down strictly below the border line */
        }
        .ts-aname { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
        .ts-asrc { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

        /* Controls */
        .ts-controls {
            display: flex;
            gap: 12px;
            margin-top: 10px;
            justify-content: center;
        }
        @media (min-width: 960px) {
            .ts-controls { justify-content: flex-end; margin-top: 10px; }
        }
        .ts-btn {
            width: 48px; height: 48px;
            border-radius: 50%;
            border: 1px solid rgba(0,0,0,0.1);
            background: #fff;
            color: var(--ink);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        .ts-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-2px); }

        /* ============================================================
           SECTION: FAQ
        ============================================================ */
        #faq {
            position: relative;
            padding: 120px 0;
            background: var(--deep);
            border-top: 1px solid rgba(255,255,255,0.05);
            overflow: hidden;
        }
        #faq::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(200,146,42,0.3), transparent);
        }
        #faq::after {
            content: '';
            position: absolute;
            top: -200px; left: -200px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(200,146,42,.05) 0%, transparent 70%);
            pointer-events: none;
        }
        .faq-container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
        }
        @media (min-width: 960px) {
            .faq-container {
                grid-template-columns: 4fr 7fr;
                gap: 80px;
                align-items: start;
            }
            .faq-left {
                position: sticky;
                top: 120px;
            }
        }
        .faq-left {
            position: relative;
            z-index: 5;
        }
        .faq-left h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 4vw, 3.6rem);
            font-weight: 600;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 18px;
        }
        .faq-sub {
            color: rgba(255,255,255,.75);
            font-size: 1.15rem;
            line-height: 1.7;
        }
        .faq-right {
            display: flex;
            flex-direction: column;
        }
        .faq-item {
            border-bottom: 1px solid rgba(255,255,255,.1);
        }
        .faq-item:first-child {
            border-top: 1px solid rgba(255,255,255,.1);
        }
        .faq-btn {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            border: none;
            padding: 32px 0;
            color: #fff;
            text-align: left;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            font-weight: 500;
            transition: color .3s;
            gap: 20px;
        }
        .faq-btn:hover {
            color: var(--gold-lt);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,.2);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            color: var(--gold);
            transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .faq-btn:hover .faq-icon {
            border-color: var(--gold);
            background: rgba(200,146,42,.08);
        }
        .faq-icon .icon-minus {
            position: absolute;
            opacity: 0;
            transform: rotate(-90deg) scale(0.5);
            transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .faq-icon .icon-plus {
            position: absolute;
            opacity: 1;
            transform: rotate(0) scale(1);
            transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .faq-btn[aria-expanded="true"] .faq-icon {
            background: var(--gold);
            color: var(--ink);
            border-color: var(--gold);
        }
        .faq-btn[aria-expanded="true"] .icon-plus {
            opacity: 0;
            transform: rotate(90deg) scale(0.5);
        }
        .faq-btn[aria-expanded="true"] .icon-minus {
            opacity: 1;
            transform: rotate(0) scale(1);
        }
        /* Smooth Accordion Animation using CSS Grid */
        .faq-content {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows .4s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .faq-btn[aria-expanded="true"] + .faq-content {
            grid-template-rows: 1fr;
        }
        .faq-inner {
            overflow: hidden;
        }
        .faq-inner p {
            color: rgba(255,255,255,.75);
            font-size: 1.05rem;
            line-height: 1.8;
            padding-bottom: 24px;
            margin-bottom: 12px;
        }
        .faq-inner p:first-child {
            padding-top: 4px;
        }
        .faq-inner p:last-child {
            margin-bottom: 0;
            padding-bottom: 32px;
        }
        .faq-inner strong {
            color: var(--gold-lt);
            font-weight: 600;
        }

        /* ============================================================
           FOOTER / CONTACT
        ============================================================ */
        #contact {
            background: var(--charcoal);
            padding-top: 100px;
            position: relative;
        }
        /* Mountain SVG divider */
        .mtn-divider {
            position: absolute;
            top: -1px;
            left: 0;
            width: 100%;
            height: auto;
            display: block;
        }
        .ft-top {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            padding-bottom: 72px;
            border-bottom: 1px solid rgba(255,255,255,.06);
        }
        @media (min-width: 960px) { .ft-top { grid-template-columns: 1fr 1fr; gap: 72px; } }
        .ft-hl {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 4vw, 3.6rem);
            font-weight: 600;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 22px;
        }
        .ft-desc { color: rgba(255,255,255,.75); font-size: 1.15rem; line-height: 1.82; margin-bottom: 18px; }
        .ft-cit {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 400;
            color: rgba(255,255,255,.85);
            line-height: 1.75;
        }
        .ct-card {
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.07);
            padding: 36px;
        }
        .ct-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 7px;
        }
        .ct-card > p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 28px; }
        .ct-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px;
            border: 1px solid transparent;
            text-decoration: none;
            transition: all .28s;
            margin-bottom: 7px;
        }
        .ct-item:hover { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.07); }
        .ct-icon {
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255,255,255,.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: border-color .28s, color .28s;
        }
        .ct-item:hover .ct-icon { border-color: var(--gold); color: var(--gold); }
        .ct-item > div:last-child { min-width: 0; flex: 1; }
        .ct-lbl { font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 2px; }
        .ct-val { 
            font-size: clamp(0.95rem, 4vw, 1.15rem); 
            font-weight: 500; 
            color: rgba(255,255,255,.95); 
            word-break: break-word; 
            overflow-wrap: anywhere; 
        }
        .ct-mail { color: #93c5fd; }
        .ct-wa   { color: #86efac; }
        
        @media (max-width: 600px) {
            .ct-card { padding: 24px 20px; }
            .ct-item { padding: 14px 12px; gap: 12px; }
            .ct-icon { width: 38px; height: 38px; }
        }

        .soc-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 26px;
            margin-top: 28px;
            border-top: 1px solid rgba(255,255,255,.06);
        }
        .soc-lbl { font-size: .8rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-right: 6px; }
        .soc-btn {
            width: 42px;
            height: 42px;
            border: 1px solid rgba(255,255,255,.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,.6);
            transition: all .28s;
        }
        .soc-btn:hover { border-color: var(--gold); color: var(--gold); }
        .visit-btn {
            display: block;
            text-align: center;
            background: var(--gold);
            color: var(--ink);
            font-size: .95rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            padding: 17px;
            margin-top: 26px;
            transition: background .2s;
        }
        .visit-btn:hover { background: var(--gold-lt); }
        .ft-bottom {
            padding: 30px 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,.05);
        }
        @media (min-width: 700px) {
            .ft-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
        }
        .ft-brand { display: flex; align-items: center; gap: 12px; }
        .ft-brand img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
        .ft-brand span { font-size: .9rem; color: rgba(255,255,255,.65); }
        .ft-links { display: flex; gap: 24px; align-items: center; }
        .ft-links a { font-size: .9rem; color: rgba(255,255,255,.65); transition: color .2s; }
        .ft-links a:hover { color: rgba(255,255,255,.85); }
        .back-btn {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255,255,255,.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,.4);
            background: none;
            cursor: pointer;
            transition: all .28s;
        }
        .back-btn:hover { border-color: var(--gold); color: var(--gold); }

    