
        :root {
            --black: #080808;
            --charcoal: #181818;
            --dark: #222;
            --warm-white: #f7f3ee;
            --cream: #ede6db;
            --beige: #d6c9b5;
            --muted: #b8a99a;
            --text: #1a1a1a;
            --text-mid: #5a5248;
            --text-light: #8a7f72;
            --serif: 'Cormorant Garamond', Georgia, serif;
            --sans: 'Jost', system-ui, sans-serif;
            --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --pad: 4rem;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        h1 em, h2 em, h3 em, h4 em { font-style: normal; }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

        body {
            font-family: var(--sans);
            background: var(--warm-white);
            color: var(--text);
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
            -webkit-font-smoothing: antialiased;
            -webkit-tap-highlight-color: transparent;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            inset: 0 0 auto;
            z-index: 100;
            padding: 1.6rem 3.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
            border-bottom: 1px solid transparent;
        }
        nav.scrolled {
            background: rgba(247,243,238,0.96);
            backdrop-filter: blur(12px);
            padding: 1rem 3.5rem;
            border-bottom-color: rgba(214,201,181,0.25);
        }
        .nav-logo {
            font-family: var(--serif);
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--warm-white);
            text-decoration: none;
            transition: color 0.4s;
        }
        nav.scrolled .nav-logo { color: var(--charcoal); }
        .nav-links { display: flex; gap: 2.5rem; list-style: none; }
        .nav-links a {
            font-size: 0.65rem;
            font-weight: 400;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(247,243,238,0.75);
            text-decoration: none;
            transition: color 0.3s;
        }
        nav.scrolled .nav-links a { color: var(--text-mid); }
        .nav-links a:hover { color: var(--warm-white); }
        nav.scrolled .nav-links a:hover { color: var(--charcoal); }

        /* ── LANGUAGE SWITCHER ── */
        .lang-switcher { position: relative; margin-left: 1.5rem; }
        .lang-current {
            background: transparent;
            border: 1px solid rgba(214,201,181,0.28);
            padding: 0.42rem 0.7rem 0.42rem 0.85rem;
            color: rgba(247,243,238,0.85);
            font-family: var(--sans);
            font-size: 0.6rem;
            font-weight: 400;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: color 0.3s, border-color 0.3s, background 0.3s;
        }
        nav.scrolled .lang-current {
            color: var(--text-mid);
            border-color: rgba(60,52,40,0.22);
        }
        .lang-current:hover { color: var(--warm-white); border-color: var(--beige); }
        nav.scrolled .lang-current:hover { color: var(--charcoal); border-color: var(--beige); }
        .lang-chevron {
            width: 8px;
            height: 6px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.5;
            transition: transform 0.25s;
        }
        .lang-switcher.open .lang-chevron { transform: rotate(180deg); }
        .lang-dropdown {
            position: absolute;
            top: calc(100% + 0.4rem);
            right: 0;
            background: rgba(247,243,238,0.97);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(60,52,40,0.15);
            list-style: none;
            padding: 0.4rem 0;
            min-width: 140px;
            opacity: 0;
            transform: translateY(-4px);
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s;
            z-index: 110;
        }
        .lang-switcher.open .lang-dropdown {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        .lang-dropdown li { list-style: none; }
        .lang-dropdown button {
            width: 100%;
            background: transparent;
            border: 0;
            text-align: left;
            padding: 0.55rem 1.1rem;
            color: var(--text-mid);
            font-family: var(--sans);
            font-size: 0.66rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }
        .lang-dropdown button:hover { background: rgba(60,52,40,0.06); color: var(--charcoal); }
        .lang-dropdown button.active { color: var(--charcoal); }

        /* ── HAMBURGER ── */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 36px;
            height: 36px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 201;
        }
        .hamburger span {
            display: block;
            width: 22px;
            height: 1.5px;
            background: var(--warm-white);
            transition: background 0.4s, transform 0.35s, opacity 0.35s;
            transform-origin: center;
        }
        nav.scrolled .hamburger span { background: var(--charcoal); }
        .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
        .hamburger.open span { background: var(--charcoal) !important; }

        /* ── MOBILE MENU OVERLAY ── */
        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 200;
            background: var(--warm-white);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }
        .mobile-menu.open { display: flex; }
        .mobile-menu a {
            font-family: var(--sans);
            font-size: clamp(0.95rem, 4vw, 1.15rem);
            font-weight: 300;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: var(--charcoal);
            text-decoration: none;
            opacity: 0.75;
            transition: opacity 0.2s;
        }
        .mobile-menu a:hover { opacity: 1; }
        .menu-back {
            font-size: 0.62rem !important;
            letter-spacing: 0.3em !important;
            color: var(--text-light) !important;
            opacity: 0.6 !important;
            margin-bottom: 0.6rem;
        }
        .menu-back:hover { opacity: 0.9 !important; }
        .menu-close {
            position: absolute;
            top: 1.6rem;
            right: 1.8rem;
            background: none;
            border: none;
            color: rgba(26,26,26,0.4);
            font-size: 1.1rem;
            cursor: pointer;
            padding: 0.5rem;
            line-height: 1;
            transition: color 0.2s;
            z-index: 201;
        }
        .menu-close:hover { color: var(--charcoal); }

        /* ── VIDEO INTRO ── */
        .video-hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background: var(--black);
        }
        .video-hero video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .video-overlay {
            position: absolute;
            inset: 0;
            background: rgba(8,8,8,0.35);
        }
        .video-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
        }
        .video-brand {
            font-family: var(--serif);
            font-size: clamp(2rem, 6vw, 5.5rem);
            font-weight: 300;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--warm-white);
            line-height: 1;
            margin-bottom: 1.2rem;
        }
        .video-tagline {
            font-size: 0.68rem;
            font-weight: 300;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(247,243,238,0.65);
            margin-bottom: 3rem;
        }
        .video-scroll {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.6rem;
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            cursor: pointer;
            text-decoration: none;
        }
        .video-scroll span {
            font-size: 0.55rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: rgba(247,243,238,0.5);
        }
        .video-scroll-line {
            width: 1px;
            height: 40px;
            background: rgba(247,243,238,0.3);
            animation: scrollLine 1.8s ease-in-out infinite;
        }
        @keyframes scrollLine {
            0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
            50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
            51% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
            100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
        }
        @media (max-width: 860px) {
            .video-brand { letter-spacing: 0.1em; }
        }
        /* smooth fade from video into lobby cards */
        .video-hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 160px;
            background: linear-gradient(to bottom, transparent, rgba(5,5,5,0.7));
            pointer-events: none;
            z-index: 3;
        }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            background: var(--charcoal);
            display: flex;
            flex-direction: column;
        }
        .hero-header {
            padding: 7.5rem 4rem 2rem;
            text-align: center;
        }
        .brand-name {
            font-family: var(--serif);
            font-size: clamp(2.4rem, 4.5vw, 5rem);
            font-weight: 300;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: var(--warm-white);
            line-height: 1;
            margin-bottom: 0.9rem;
        }
        .brand-tagline {
            font-size: 0.68rem;
            font-weight: 300;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--muted);
        }

        /* ── PRODUCT GRID ── */
        .product-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.8rem;
            flex: 1;
            padding: 1.4rem 2rem 2.2rem;
            min-height: 76vh;
        }
        .product-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            background: #111;
        }
        .product-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.9s var(--ease), filter 0.6s;
            filter: brightness(0.72) saturate(0.9);
        }
        .product-card:hover img {
            transform: scale(1.05);
            filter: brightness(0.58) saturate(0.85);
        }
        .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 28%, rgba(8,8,8,0.38) 58%, rgba(8,8,8,0.88) 100%);
            transition: background 0.5s;
        }
        .product-card:hover .card-overlay {
            background: linear-gradient(to bottom, transparent 18%, rgba(8,8,8,0.5) 52%, rgba(8,8,8,0.92) 100%);
        }
        .card-badge {
            position: absolute;
            top: 1.6rem;
            right: 1.6rem;
            font-size: 0.58rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--beige);
            border: 1px solid rgba(214,201,181,0.35);
            padding: 0.38rem 0.8rem;
            background: rgba(8,8,8,0.18);
            backdrop-filter: blur(4px);
        }
        .card-body {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2.4rem 2.6rem;
        }
        .card-label {
            font-size: 0.58rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--beige);
            display: block;
            margin-bottom: 0.75rem;
        }
        .card-title {
            font-family: var(--serif);
            font-size: clamp(1.9rem, 2.4vw, 3rem);
            font-weight: 400;
            font-style: normal;
            color: var(--warm-white);
            line-height: 1.08;
            margin-bottom: 0.9rem;
        }
        .card-desc {
            font-size: 0.76rem;
            font-weight: 300;
            color: rgba(233,226,215,0.78);
            line-height: 1.75;
            margin-bottom: 1.6rem;
            max-width: 32ch;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.45s var(--ease) 0.05s, transform 0.45s var(--ease) 0.05s;
        }
        .product-card:hover .card-desc { opacity: 1; transform: translateY(0); }
        .card-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
        .card-btn-group { display: flex; flex-direction: column; align-items: flex-end; gap: 0.55rem; }
        .card-btn-free {
            display: inline-block;
            padding: 0.45rem 1.2rem;
            border: 1px solid #3a3028;
            color: #7a6a58;
            font-size: 0.57rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            text-decoration: none;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: var(--sans);
        }
        .card-btn-free:hover { border-color: #c9a86c; color: #c9a86c; }
        .card-price {
            font-family: var(--serif);
            font-size: 1.75rem;
            font-weight: 300;
            color: var(--warm-white);
            letter-spacing: 0.03em;
        }
        .card-btn {
            display: inline-block;
            padding: 0.72rem 2rem;
            border: 1px solid #c9a86c;
            color: #1a1a1a;
            font-size: 0.62rem;
            font-weight: 500;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            text-decoration: none;
            background: #c9a86c;
            cursor: pointer;
            transition: all 0.35s ease;
        }
        .card-btn:hover { background: #b8956a; border-color: #b8956a; color: #0a0a0a; }

        /* ── SECTION HELPERS ── */
        .section-eyebrow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            font-size: 0.6rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 5rem;
        }
        .section-eyebrow::before,
        .section-eyebrow::after { display: none; }
        .section-eyebrow.light { color: var(--muted); }
        .section-eyebrow.light::before,
        .section-eyebrow.light::after { background: var(--beige); }

        /* ── ABOUT ── */
        .about-section { padding: 9rem 4rem; background: var(--warm-white); }
        .about-card {
            max-width: 1080px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            background: var(--cream);
            overflow: hidden;
            cursor: default;
        }
        .about-img-wrap {
            position: relative;
            overflow: hidden;
            min-height: 580px;
        }
        .about-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: transform 0.9s var(--ease), filter 0.5s;
            filter: grayscale(12%);
        }
        .about-card:hover .about-img-wrap img { transform: scale(1.04); filter: grayscale(0%); }
        .about-img-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, transparent 65%, var(--cream));
        }
        .about-body {
            padding: 4.5rem 3.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }
        .about-body::before {
            content: '\201C';
            position: absolute;
            top: 0.5rem;
            left: 2.2rem;
            font-family: var(--serif);
            font-size: 9rem;
            color: var(--beige);
            opacity: 0.55;
            line-height: 1;
            transition: opacity 0.5s, transform 0.5s;
            pointer-events: none;
        }
        .about-card:hover .about-body::before { opacity: 0.85; transform: translateY(-4px); }
        .about-role {
            font-size: 0.62rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 1.4rem;
        }
        .about-headline {
            font-family: var(--serif);
            font-size: clamp(1.6rem, 2.2vw, 2.5rem);
            font-weight: 400;
            font-style: normal;
            line-height: 1.28;
            color: var(--charcoal);
            margin-bottom: 1.8rem;
        }
        .about-text {
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.9;
            color: var(--text-mid);
            margin-bottom: 1.4rem;
        }
        .about-more {
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.9;
            color: var(--text-mid);
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.6s var(--ease), opacity 0.45s ease;
        }
        .about-card:hover .about-more { max-height: 180px; opacity: 1; }
        .about-link {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            margin-top: 2.2rem;
            font-size: 0.62rem;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--text-mid);
            text-decoration: none;
            border-bottom: 1px solid var(--beige);
            padding-bottom: 0.3rem;
            transition: color 0.3s, border-color 0.3s;
        }
        .about-link:hover { color: var(--charcoal); border-color: var(--charcoal); }
        .about-link .wa-icon {
            width: 15px;
            height: 15px;
            flex-shrink: 0;
            opacity: 0.75;
            transition: opacity 0.3s;
        }
        .about-link:hover .wa-icon { opacity: 1; }
        .about-sig {
            margin-top: 2.8rem;
            font-family: var(--serif);
            font-size: 1.3rem;
            font-style: normal;
            font-weight: 300;
            color: var(--text-light);
        }

        /* ── SERVICES ── */
        .services-section { padding: 9rem 4rem; background: var(--warm-white); }
        .services-title {
            font-family: var(--serif);
            font-size: clamp(2rem, 3vw, 3.4rem);
            font-weight: 300;
            font-style: normal;
            color: var(--charcoal);
            text-align: center;
            line-height: 1.2;
            margin-bottom: 5rem;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            background: rgba(26,26,26,0.08);
            gap: 1px;
            max-width: 860px;
            margin: 0 auto;
        }
        .svc-card {
            background: var(--warm-white);
            padding: 0;
            position: relative;
            transition: background 0.35s;
            cursor: default;
            display: flex;
            flex-direction: column;
        }
        .svc-img {
            width: 100%;
            aspect-ratio: 4/3;
            overflow: hidden;
            flex-shrink: 0;
        }
        .svc-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            filter: brightness(0.88);
            transition: transform 0.7s var(--ease), filter 0.5s;
            display: block;
        }
        .svc-card:hover .svc-img img {
            transform: scale(1.04);
            filter: brightness(0.96);
        }
        .svc-body {
            padding: 2.4rem 2.6rem 3rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        @media (max-width: 860px) {
            .svc-body { padding: 2rem 1.8rem 2.4rem; }
        }
        .svc-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: rgba(26,26,26,0.08);
            transition: background 0.35s, height 0.35s;
        }
        .svc-card:hover { background: var(--cream); }
        .svc-card:hover::after { background: var(--charcoal); height: 2px; }
        .svc-num {
            display: block;
            font-family: var(--serif);
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            color: rgba(184,169,154,0.4);
            margin-bottom: 2rem;
        }
        .svc-name {
            font-family: var(--serif);
            font-size: 1.45rem;
            font-weight: 400;
            font-style: normal;
            color: var(--charcoal);
            line-height: 1.25;
            margin-bottom: 1.2rem;
        }
        .svc-desc {
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.85;
            color: var(--text-mid);
            margin-bottom: 2rem;
        }
        .svc-price {
            display: block;
            font-family: var(--serif);
            font-size: 1.1rem;
            font-weight: 300;
            color: var(--charcoal);
            margin-bottom: 1rem;
            letter-spacing: 0.02em;
        }
        .svc-price span {
            font-size: 0.6rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-light);
            margin-left: 0.4rem;
            font-family: var(--sans);
            vertical-align: middle;
        }
        .svc-link {
            font-size: 0.62rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--charcoal);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            opacity: 0;
            transform: translateY(5px);
            transition: opacity 0.35s, transform 0.35s;
        }
        .svc-card:hover .svc-link { opacity: 1; transform: translateY(0); }
        .svc-link::after { content: '→'; transition: transform 0.25s; }
        .svc-link:hover::after { transform: translateX(4px); }

        /* ── MEMBERSHIP ── */
        .membership-section {
            padding: 9rem 4rem;
            background: var(--warm-white);
            position: relative;
            overflow: hidden;
        }
        .membership-section::before {
            content: '';
            position: absolute;
            top: -40%;
            left: -10%;
            width: 55%;
            height: 180%;
            background: radial-gradient(ellipse, rgba(184,169,154,0.035) 0%, transparent 70%);
            pointer-events: none;
        }
        .mem-inner {
            max-width: 880px;
            margin: 0 auto;
            text-align: center;
        }
        .mem-eyebrow {
            font-size: 0.58rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(184,169,154,0.5);
            margin-bottom: 1.8rem;
        }
        .mem-title {
            font-family: var(--serif);
            font-size: clamp(2.6rem, 4.5vw, 5rem);
            font-weight: 300;
            font-style: normal;
            color: var(--charcoal);
            line-height: 1.12;
            margin-bottom: 1.4rem;
        }
        .mem-sub {
            font-size: 1rem;
            font-weight: 300;
            letter-spacing: 0.03em;
            color: var(--text-mid);
            line-height: 1.85;
            max-width: 46ch;
            margin: 0 auto 4.5rem;
        }
        .mem-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border: 1px solid rgba(26,26,26,0.1);
            margin-bottom: 4rem;
        }
        .mem-feat {
            padding: 2.6rem;
            border-right: 1px solid rgba(26,26,26,0.1);
            border-bottom: 1px solid rgba(26,26,26,0.1);
            text-align: left;
            transition: background 0.35s;
        }
        .mem-feat:nth-child(even) { border-right: none; }
        .mem-feat:nth-last-child(-n+2) { border-bottom: none; }
        .mem-feat:hover { background: rgba(26,26,26,0.03); }
        .feat-dash {
            font-family: var(--serif);
            font-size: 1rem;
            font-style: normal;
            color: var(--muted);
            opacity: 0.5;
            display: block;
            margin-bottom: 0.9rem;
        }
        .feat-name {
            font-family: var(--serif);
            font-size: 1.15rem;
            font-weight: 400;
            color: var(--charcoal);
            margin-bottom: 0.6rem;
        }
        .feat-desc {
            font-size: 0.95rem;
            font-weight: 300;
            color: var(--text-mid);
            line-height: 1.75;
        }
        .mem-price {
            font-family: var(--serif);
            font-size: 3.8rem;
            font-weight: 300;
            color: var(--charcoal);
            letter-spacing: -0.02em;
            line-height: 1;
        }
        .mem-period {
            font-size: 0.88rem;
            font-weight: 300;
            color: var(--text-light);
            letter-spacing: 0.1em;
            margin-bottom: 2.8rem;
            margin-top: 0.5rem;
        }
        .mem-btn {
            display: inline-block;
            padding: 1.1rem 3.8rem;
            border: 1px solid rgba(26,26,26,0.3);
            color: var(--charcoal);
            font-size: 0.62rem;
            font-weight: 400;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            text-decoration: none;
            background: transparent;
            cursor: pointer;
            transition: all 0.4s ease;
        }
        .mem-btn:hover { background: rgba(26,26,26,0.06); border-color: rgba(26,26,26,0.6); }

        /* ── SOCIALS ── */
        .socials-section { padding: 8rem 4rem; background: var(--cream); }
        .socials-inner { max-width: 680px; margin: 0 auto; text-align: center; }
        .socials-title {
            font-family: var(--serif);
            font-size: clamp(1.7rem, 2.5vw, 2.4rem);
            font-weight: 300;
            font-style: normal;
            color: var(--charcoal);
            margin-bottom: 0.6rem;
        }
        .socials-sub {
            font-size: 0.95rem;
            font-weight: 300;
            letter-spacing: 0.04em;
            color: var(--text-light);
            margin-bottom: 4rem;
        }
        .socials-row {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .s-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            padding: 0.82rem 1.7rem;
            border: 1px solid rgba(26,26,26,0.14);
            background: transparent;
            color: var(--charcoal);
            font-family: var(--sans);
            font-size: 0.62rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.35s var(--ease);
        }
        .s-btn:hover { background: var(--charcoal); color: var(--warm-white); border-color: var(--charcoal); }
        .s-btn svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
        .s-btn.wa { border-color: rgba(26,26,26,0.22); }

        /* ── CONTACT ── */
        .contact-section { padding: 9rem 4rem; background: var(--warm-white); }
        .contact-inner { max-width: 560px; margin: 0 auto; }
        .contact-title {
            font-family: var(--serif);
            font-size: clamp(2rem, 3vw, 3.2rem);
            font-weight: 300;
            font-style: normal;
            color: var(--charcoal);
            text-align: center;
            margin-bottom: 0.7rem;
        }
        .contact-sub {
            font-size: 0.95rem;
            font-weight: 300;
            letter-spacing: 0.04em;
            color: var(--text-light);
            text-align: center;
            margin-bottom: 0.5rem;
        }
        .contact-email {
            font-size: 0.88rem;
            color: var(--text-light);
            text-align: center;
            margin-bottom: 1.8rem;
            letter-spacing: 0.04em;
        }
        .contact-socials {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.55rem;
            margin: 0 auto 3.4rem;
            position: relative;
        }
        .contact-socials::before,
        .contact-socials::after {
            content: '';
            flex: 0 0 36px;
            height: 1px;
            background: rgba(26,26,26,0.1);
        }
        .ic-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(26,26,26,0.14);
            background: transparent;
            color: var(--charcoal);
            text-decoration: none;
            transition: all 0.35s var(--ease);
        }
        .ic-btn:hover {
            background: var(--charcoal);
            color: var(--warm-white);
            border-color: var(--charcoal);
        }
        .ic-btn svg { width: 14px; height: 14px; fill: currentColor; }
        .ic-btn.wa { border-color: rgba(26,26,26,0.22); }
        .contact-form { display: flex; flex-direction: column; gap: 1.8rem; }
        .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
        .form-label {
            font-size: 0.58rem;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--text-light);
        }
        .form-input, .form-textarea {
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--beige);
            padding: 0.75rem 0;
            font-family: var(--sans);
            font-size: 0.88rem;
            font-weight: 300;
            color: var(--text);
            outline: none;
            width: 100%;
            transition: border-color 0.3s;
        }
        .form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
        .form-input:focus, .form-textarea:focus { border-bottom-color: var(--charcoal); }
        .form-textarea { resize: none; min-height: 90px; }
        .form-submit {
            align-self: center;
            margin-top: 0.5rem;
            padding: 1rem 3.2rem;
            background: var(--charcoal);
            color: var(--warm-white);
            border: none;
            font-family: var(--sans);
            font-size: 0.62rem;
            font-weight: 400;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s;
        }
        .form-submit:hover { background: var(--black); }
        /* ── CONTACT SUCCESS STATE ── */
        .contact-success {
            text-align: center;
            padding: 3rem 0;
        }
        .success-rule {
            width: 36px;
            height: 1px;
            background: var(--beige);
            margin: 0 auto 2.8rem;
        }
        .success-sig {
            margin-top: 3rem;
            font-family: var(--serif);
            font-size: 1rem;
            font-style: normal;
            color: var(--text-light);
        }

        .service-selected-badge {
            font-family: var(--serif);
            font-size: 1rem;
            font-style: normal;
            font-weight: 400;
            color: var(--charcoal);
            padding: 0.6rem 0;
            border-bottom: 1px solid var(--beige);
            letter-spacing: 0.03em;
        }

        /* ── FOOTER ── */
        footer {
            padding: 2.2rem 3.5rem;
            background: var(--cream);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(26,26,26,0.1);
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-logo {
            font-family: var(--serif);
            font-size: 0.85rem;
            font-style: normal;
            letter-spacing: 0.2em;
            color: rgba(26,26,26,0.35);
        }
        .footer-nav {
            list-style: none;
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .footer-nav a {
            font-size: 0.6rem;
            font-weight: 400;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.25s;
        }
        .footer-nav a:hover { color: var(--charcoal); }
        .footer-copy {
            font-size: 0.58rem;
            letter-spacing: 0.1em;
            color: rgba(26,26,26,0.3);
        }
        @media (max-width: 860px) {
            footer { flex-direction: column; text-align: center; gap: 1.2rem; }
            .footer-nav { gap: 1.2rem; }
        }

        /* ── REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 0.85s ease, transform 0.85s ease;
        }
        .reveal.in { opacity: 1; transform: translateY(0); }

        /* ── RESPONSIVE ── */
        @media (max-width: 860px) {
            nav { padding: 1.2rem 1.5rem; }
            nav.scrolled { padding: 0.9rem 1.5rem; }
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .lang-switcher { margin-left: 0; margin-right: 0.7rem; }
            .lang-current { padding: 0.35rem 0.6rem; font-size: 0.55rem; }
            .lang-dropdown { right: -0.5rem; }
            .hero-header { padding: 5.5rem 1.2rem 1.5rem; }
            .brand-name { font-size: clamp(1.5rem, 7vw, 2.6rem); letter-spacing: 0.1em; }
            .brand-tagline { font-size: 0.6rem; letter-spacing: 0.15em; }
            .product-grid { grid-template-columns: 1fr; min-height: auto; padding: 0.8rem 1rem 1.2rem; gap: 0.6rem; }
            .product-card { min-height: 62vh; }
            .card-body { padding: 1.6rem 1.4rem; }
            .card-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
            .card-btn { padding: 0.65rem 1.4rem; }
            .about-section, .services-section, .membership-section,
            .socials-section, .contact-section { padding: 5.5rem 1.5rem; }
            .about-card { grid-template-columns: 1fr; }
            .about-img-wrap { min-height: 320px; }
            .about-img-gradient { background: linear-gradient(to bottom, transparent 65%, var(--cream)); }
            .about-body { padding: 3rem 1.8rem; }
            .services-grid { grid-template-columns: 1fr; }
            .svc-card { padding: 2.4rem 1.8rem; }
            .mem-features { grid-template-columns: 1fr; }
            .mem-feat { border-right: none !important; padding: 2rem 1.5rem; }
            .mem-feat:nth-last-child(-n+2) { border-bottom: 1px solid rgba(184,169,154,0.1); }
            .mem-feat:last-child { border-bottom: none; }
            .mem-btn { padding: 1rem 2.4rem; }
            footer { padding: 2rem 1.5rem; }
        }
        /* ── CHECKOUT MODAL ── */
        .checkout-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: rgba(8,8,8,0.88);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }
        .checkout-overlay.active { display: flex; }
        .checkout-box {
            background: var(--warm-white);
            width: 100%;
            max-width: 520px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            padding: 2.5rem 2rem;
        }
        .checkout-close {
            position: absolute;
            top: 1.2rem;
            right: 1.4rem;
            font-family: var(--sans);
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-light);
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.3s;
        }
        .checkout-close:hover { color: var(--charcoal); }
        .checkout-title {
            font-family: var(--serif);
            font-size: 1.5rem;
            font-weight: 400;
            font-style: normal;
            color: var(--charcoal);
            margin-bottom: 0.4rem;
        }
        .checkout-sub {
            font-size: 0.65rem;
            letter-spacing: 0.15em;
            color: var(--text-light);
            margin-bottom: 2rem;
            text-transform: uppercase;
        }
        .checkout-loading {
            text-align: center;
            padding: 3rem 0;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-light);
        }
        #checkout-container { min-height: 200px; }

        @media (hover: none) {
            .card-desc { opacity: 1; transform: none; }
            .svc-link { opacity: 1; transform: none; }
            .about-more { max-height: 200px; opacity: 1; }
        }

        /* ── TRANSFORMATIONS ── */
        /* ── TRANSFORMATION CAROUSEL ─────────────────────────────────── */
        .transform-section { padding: 9rem 0; background: var(--warm-white); }
        .transform-headline {
            font-family: var(--serif);
            font-size: clamp(2rem, 3vw, 3.2rem);
            font-weight: 300;
            font-style: normal;
            color: var(--charcoal);
            text-align: center;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .transform-sub {
            font-size: 0.95rem;
            font-weight: 300;
            letter-spacing: 0.06em;
            color: var(--text-light);
            text-align: center;
            margin-bottom: 4rem;
        }
        .carousel-viewport {
            overflow: hidden;
            width: 100%;
            position: relative;
            /* Force compositing layer — ensures iOS Safari clips the scrolling track */
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            isolation: isolate;
        }
        .carousel-viewport::before,
        .carousel-viewport::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            width: 120px;
            z-index: 2;
            pointer-events: none;
        }
        .carousel-viewport::before { left: 0; background: linear-gradient(to right, var(--warm-white), transparent); }
        .carousel-viewport::after  { right: 0; background: linear-gradient(to left, var(--warm-white), transparent); }
        .carousel-track {
            display: flex;
            gap: 1.2rem;
            padding: 0 1.2rem;
            animation: tScroll 65s linear infinite;
            width: max-content;
        }
        .carousel-viewport:hover .carousel-track { animation-play-state: paused; }
        @keyframes tScroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .transform-item {
            display: flex;
            flex-direction: column;
            gap: 0;
            flex-shrink: 0;
            width: 380px;
        }
        .transform-pair {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
        }
        .transform-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 2/3;
        }
        .transform-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            filter: brightness(0.82);
            transition: filter 0.5s, transform 0.7s var(--ease);
        }
        .transform-item:hover .transform-img-wrap img {
            filter: brightness(0.95);
            transform: scale(1.03);
        }
        .transform-tag {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 0.5rem;
            text-align: center;
            font-size: 0.5rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: rgba(247,243,238,0.8);
            background: linear-gradient(to top, rgba(8,8,8,0.7), transparent);
            padding-top: 1.5rem;
        }
        .transform-caption {
            padding: 1.2rem 0.5rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }
        .transform-caption span {
            font-size: 0.58rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: rgba(26,26,26,0.35);
        }
        .transform-caption::before,
        .transform-caption::after { content: ''; flex: 1; height: 1px; background: rgba(26,26,26,0.1); }
        @media (max-width: 860px) {
            .transform-section { padding: 5.5rem 0; }
            .transform-item { width: 260px; }
            .carousel-viewport::before,
            .carousel-viewport::after { width: 60px; }
        }

        /* ── CARD CAROUSEL ── */
        .card-slides {
            position: absolute;
            inset: 0;
        }
        .card-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.75s var(--ease);
        }
        .card-slide.cs-active { opacity: 1; }
        /* text slides */
        .card-slide--dark { background: #080706; }
        .card-info-panel {
            position: absolute;
            left: 0; right: 0;
            top: 0; bottom: 40%;
            z-index: 8;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            text-align: center;
        }
        .cip-item {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 2.8rem;
            opacity: 0;
            transition: opacity 0.6s var(--ease);
            font-family: var(--serif);
            font-size: clamp(1.2rem, 1.7vw, 1.62rem);
            font-style: normal;
            font-weight: 300;
            color: #e8ddd0;
            line-height: 1.55;
        }
        .cip-item.cip-on { opacity: 1; }
        /* arrows */
        .card-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 12;
            width: 38px;
            height: 38px;
            background: rgba(8,7,5,0.5);
            border: 1px solid rgba(214,201,181,0.18);
            color: rgba(247,243,238,0.65);
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s, background 0.2s, color 0.2s, border-color 0.2s;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            padding: 0;
            line-height: 1;
        }
        .card-arrow--prev { left: 14px; }
        .card-arrow--next { right: 14px; }
        .product-card:hover .card-arrow { opacity: 1; }
        .product-card.cs-text-active .card-arrow { opacity: 0.75; }
        .card-arrow:hover { background: rgba(201,168,108,0.18); color: #c9a96e; border-color: rgba(201,168,108,0.4); }
        /* dots */
        .card-slide-dots {
            position: absolute;
            top: 18px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 12;
            display: flex;
            gap: 5px;
            align-items: center;
        }
        .csd {
            display: block;
            width: 18px;
            height: 2px;
            background: rgba(247,243,238,0.25);
            transition: background 0.35s, width 0.35s;
            cursor: pointer;
        }
        .csd.csd-on { background: rgba(201,168,108,0.9); width: 26px; }
        /* ── REVIEWS ── */
        .reviews-section {
            background: var(--cream);
            padding: 7rem 3.5rem;
        }
        .reviews-eyebrow {
            font-size: 0.6rem;
            letter-spacing: 0.42em;
            text-transform: uppercase;
            color: var(--text-mid);
            font-family: var(--serif);
            text-align: center;
            margin-bottom: 4.5rem;
        }
        .reviews-grid {
            max-width: 1080px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(26,26,26,0.07);
        }
        .review-card {
            background: var(--cream);
            padding: 3rem 2.4rem;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        .review-stars {
            font-size: 0.75rem;
            color: #c9a96e;
            letter-spacing: 0.12em;
        }
        .review-text {
            font-family: var(--serif);
            font-size: 1.05rem;
            font-style: normal;
            font-weight: 300;
            color: var(--charcoal);
            line-height: 1.8;
            flex: 1;
        }
        .review-author {
            font-size: 0.58rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--text-light);
            font-family: var(--sans);
            padding-top: 1.2rem;
            border-top: 1px solid rgba(26,26,26,0.1);
        }
        @media (max-width: 860px) {
            .reviews-section { padding: 5rem 1.5rem; }
            .reviews-grid { grid-template-columns: 1fr; }
            .review-card { padding: 2.4rem 1.6rem; }
        }
        /* ── PEEK / INSIDE THE GUIDE (legacy, hidden) ── */
        .peek-section {
            background: #0c0b09;
            padding: 6rem 3.5rem;
            border-top: 1px solid #1e1c18;
        }
        .peek-inner { max-width: 1080px; margin: 0 auto; }
        .peek-eyebrow {
            font-size: 0.6rem;
            letter-spacing: 0.42em;
            text-transform: uppercase;
            color: #c9a96e;
            font-family: var(--serif);
            margin-bottom: 3.5rem;
        }
        .peek-row {
            padding-bottom: 3.5rem;
            margin-bottom: 3.5rem;
            border-bottom: 1px solid #1e1c18;
        }
        .peek-row--last { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
        .peek-row-label {
            display: flex;
            align-items: baseline;
            gap: 1.2rem;
            margin-bottom: 1.5rem;
        }
        .peek-row-num {
            font-family: var(--serif);
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            color: #3a3328;
        }
        .peek-row-name {
            font-family: var(--serif);
            font-size: 1.15rem;
            font-weight: 400;
            color: #e8ddd0;
            letter-spacing: 0.02em;
        }
        .peek-thumbs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.75rem;
        }
        .peek-thumb {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            cursor: pointer;
            background: #1a1714;
        }
        .peek-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
            filter: brightness(0.82) saturate(0.9);
        }
        .peek-thumb-overlay {
            position: absolute;
            inset: 0;
            background: rgba(8,7,6,0);
            transition: background 0.35s var(--ease);
        }
        .peek-thumb-icon {
            position: absolute;
            bottom: 12px;
            right: 14px;
            font-size: 14px;
            color: #c9a96e;
            opacity: 0;
            transform: translate(4px,-4px);
            transition: opacity 0.3s, transform 0.3s var(--ease);
            line-height: 1;
        }
        .peek-thumb:hover img { transform: scale(1.05); filter: brightness(0.72) saturate(1); }
        .peek-thumb:hover .peek-thumb-overlay { background: rgba(8,7,6,0.28); }
        .peek-thumb:hover .peek-thumb-icon { opacity: 1; transform: translate(0,0); }
        @media (max-width: 860px) {
            .peek-section { padding: 4rem 1.5rem; }
            .peek-thumbs { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
        }
        @media (max-width: 480px) {
            .peek-thumbs { grid-template-columns: repeat(2, 1fr); }
        }

        /* ── LIGHTBOX ── */
        #lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9998;
            background: rgba(5,4,3,0.96);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        #lightbox.lb-open { display: flex; }
        .lb-img-wrap {
            max-width: min(80vw, 680px);
            max-height: 74vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        #lbImg {
            max-width: 100%;
            max-height: 74vh;
            object-fit: contain;
            display: block;
            box-shadow: 0 24px 80px rgba(0,0,0,0.7);
            transition: opacity 0.22s;
        }
        #lbImg.lb-fade { opacity: 0; }
        .lb-close {
            position: fixed;
            top: 22px;
            right: 28px;
            background: none;
            border: none;
            color: #5a5040;
            font-size: 22px;
            cursor: pointer;
            line-height: 1;
            padding: 6px;
            transition: color 0.2s;
            z-index: 2;
        }
        .lb-close:hover { color: #c9a96e; }
        .lb-arrow {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: 1px solid #2a2520;
            color: #8a7d6a;
            font-size: 18px;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: border-color 0.2s, color 0.2s;
        }
        .lb-arrow:hover { border-color: #c9a96e; color: #c9a96e; }
        .lb-prev { left: 24px; }
        .lb-next { right: 24px; }
        .lb-caption {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            margin-top: 1.25rem;
        }
        #lbTitle {
            font-family: var(--serif);
            font-size: 0.8rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #7a7068;
        }
        #lbCount {
            font-family: var(--serif);
            font-size: 0.72rem;
            color: #3a3028;
            letter-spacing: 0.1em;
        }
        .lb-dots {
            display: flex;
            gap: 8px;
            margin-top: 14px;
        }
        .lb-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #2a2520;
            cursor: pointer;
            transition: background 0.2s;
        }
        .lb-dot.lb-dot--active { background: #c9a96e; }
        @media (max-width: 680px) {
            .lb-img-wrap { max-width: 92vw; max-height: 65vh; }
            #lbImg { max-height: 65vh; }
            .lb-prev { left: 10px; }
            .lb-next { right: 10px; }
            .lb-arrow { width: 36px; height: 36px; font-size: 15px; }
        }

        /* ── FAQ SECTION ── */
        .faq-section {
            background: var(--warm-white);
            padding: 9rem var(--pad);
        }
        .faq-inner {
            max-width: 760px;
            margin: 0 auto;
        }
        .faq-headline {
            font-family: var(--serif);
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 300;
            font-style: normal;
            color: var(--charcoal);
            line-height: 1.2;
            margin-bottom: 3.5rem;
        }
        .faq-list {
            width: 100%;
        }
        .faq-item {
            border-top: 1px solid rgba(26,26,26,0.1);
        }
        .faq-item:last-child {
            border-bottom: 1px solid rgba(26,26,26,0.1);
        }
        .faq-q {
            width: 100%;
            background: none;
            border: none;
            padding: 1.55rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            text-align: left;
            font-family: var(--serif);
            font-size: 1rem;
            color: var(--text-mid);
            letter-spacing: 0.01em;
            line-height: 1.5;
            gap: 1.2rem;
            transition: color 0.25s;
        }
        .faq-q:hover { color: var(--charcoal); }
        .faq-q[aria-expanded="true"] { color: var(--charcoal); }
        .faq-icon {
            flex-shrink: 0;
            width: 16px;
            height: 16px;
            position: relative;
        }
        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: currentColor;
            transition: opacity 0.3s, transform 0.3s;
        }
        .faq-icon::before {
            width: 12px;
            height: 1px;
            top: 50%;
            left: 2px;
            transform: translateY(-50%);
        }
        .faq-icon::after {
            width: 1px;
            height: 12px;
            left: 50%;
            top: 2px;
            transform: translateX(-50%);
        }
        .faq-q[aria-expanded="true"] .faq-icon::after {
            opacity: 0;
            transform: translateX(-50%) scaleY(0);
        }
        .faq-a {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.38s cubic-bezier(0.4,0,0.2,1);
        }
        .faq-a.open {
            grid-template-rows: 1fr;
        }
        .faq-a-inner { overflow: hidden; }
        .faq-a p {
            font-family: var(--serif);
            font-size: 1rem;
            line-height: 1.9;
            color: var(--text-mid);
            padding-bottom: 1.6rem;
            font-weight: 300;
        }
        @media (max-width: 860px) {
            .faq-section { padding: 6rem 1.5rem; }
            .faq-q { font-size: 0.93rem; }
        }

        /* ══════════════════════════════════════════════════════════════
           iPhone / Mobile — spacing tightening & iOS Safari fixes
           ══════════════════════════════════════════════════════════════ */
        @media (max-width: 860px) {
            /* ── Reduce section padding — main source of white space ─── */
            .about-section,
            .services-section,
            .membership-section,
            .socials-section,
            .contact-section { padding: 4.5rem 1.5rem; }
            .reviews-section  { padding: 4rem 1.5rem; }
            .transform-section { padding: 4.5rem 0; }

            /* ── Section eyebrow margin (was 5rem / 80px) ─────────────── */
            .section-eyebrow   { margin-bottom: 2.5rem; }
            .reviews-eyebrow   { margin-bottom: 2.5rem; }

            /* ── Headline / sub-text margins ──────────────────────────── */
            .services-title    { margin-bottom: 3rem; }
            .transform-headline { margin-bottom: 0.7rem; }
            .transform-sub     { margin-bottom: 2.5rem; }
            .mem-sub           { margin-bottom: 2.5rem; }
            .mem-features      { margin-bottom: 2.5rem; }

            /* ── About card ───────────────────────────────────────────── */
            .about-img-wrap { min-height: 260px; }
            .about-body     { padding: 2.5rem 1.6rem; }

            /* ── Form inputs — prevent iOS auto-zoom on focus ─────────── */
            .form-input,
            .form-textarea  { font-size: 16px; }
        }

        /* ── Extra small iPhones — SE, mini (≤ 390px) ────────────────── */
        @media (max-width: 390px) {
            .about-section,
            .services-section,
            .membership-section,
            .socials-section,
            .contact-section { padding: 3.5rem 1.2rem; }
            .reviews-section  { padding: 3.5rem 1.2rem; }
            .transform-section { padding: 3.5rem 0; }
            .hero-header      { padding: 4.5rem 1rem 1rem; }
            .card-body        { padding: 1.4rem 1.2rem; }
            .svc-card         { padding: 2rem 1.4rem; }
            .mem-feat         { padding: 1.6rem 1.2rem; }
            .review-card      { padding: 2rem 1.2rem; }
            .mem-btn          { padding: 1rem 2rem; }
            .transform-item   { width: 230px; }
        }


        /* ── LOBBY DESTINATION CARDS ────────────────────────────────── */
        .lobby-grid {
            background: var(--warm-white);
            padding: 5.5rem 1.4rem 4rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .lobby-card {
            position: relative;
            overflow: hidden;
            display: block;
            text-decoration: none;
            cursor: pointer;
            width: 100%;
            max-width: 560px;
            height: 200px;
            border-radius: 20px;
            transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
            box-shadow: 0 4px 24px rgba(8,8,8,0.12);
        }
        .lobby-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(8,8,8,0.18); }
        .lobby-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            filter: brightness(0.52);
            transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
        }
        .lobby-card:hover img { filter: brightness(0.68); transform: scale(1.04); }
        .lobby-card-overlay {
            position: absolute;
            inset: 0;
            background: rgba(8,8,8,0.28);
            border-radius: 20px;
            z-index: 1;
        }
        .lobby-card-body {
            position: absolute;
            inset: 0;
            z-index: 2;
            padding: 1.6rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0.6rem;
        }
        .lobby-card-title {
            font-family: var(--serif);
            font-size: clamp(1.8rem, 5vw, 2.6rem);
            font-weight: 600;
            color: #fff;
            line-height: 1.1;
            margin: 0;
            text-shadow: 0 2px 10px rgba(0,0,0,0.35);
        }
        .lobby-card-desc { display: none; }
        .lobby-card-arrow {
            font-size: 0.58rem;
            letter-spacing: 0.22em;
            color: rgba(201,169,110,0.9);
            text-transform: uppercase;
            display: inline-block;
        }
        @media (max-width: 600px) {
            .lobby-grid { padding: 5rem 1rem 3rem; gap: 0.85rem; }
            .lobby-card { height: 160px; border-radius: 16px; max-width: 100%; }
            .lobby-card-title { font-size: clamp(1.5rem, 7vw, 2rem); }
        }

        /* ── LOBBY TRUST LINE ────────────────────────────────────────── */
        .lobby-trust {
            padding: 4.2rem 3.5rem;
            background: var(--warm-white);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3.5rem;
            flex-wrap: wrap;
        }
        .trust-item {
            text-align: center;
        }
        .trust-num {
            font-family: var(--serif);
            font-size: clamp(1.8rem, 2.8vw, 2.8rem);
            font-weight: 300;
            font-style: normal;
            color: var(--charcoal);
            display: block;
            line-height: 1;
        }
        .trust-label {
            font-size: 0.58rem;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--text-light);
            display: block;
            margin-top: 0.4rem;
        }
        .trust-sep {
            width: 1px;
            height: 42px;
            background: var(--beige);
        }
        @media (max-width: 680px) {
            .lobby-trust { gap: 2rem; padding: 3.5rem 1.5rem; }
            .trust-sep { display: none; }
        }

        /* ── PAGE HERO (sub-pages) ───────────────────────────────────── */
        .page-hero {
            padding: 10rem 4rem 5rem;
            background: var(--warm-white);
            position: relative;
            text-align: center;
        }
        .page-hero-eyebrow {
            font-size: 0.58rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(140,110,70,0.7);
            display: block;
            margin-bottom: 1.6rem;
            font-family: var(--serif);
        }
        .page-hero-title {
            font-family: var(--serif);
            font-size: clamp(3.2rem, 7vw, 7.5rem);
            font-weight: 300;
            color: var(--charcoal);
            line-height: 1.05;
            letter-spacing: -0.01em;
            max-width: none;
            width: 100%;
        }
        .page-hero-sub {
            font-size: 1.05rem;
            font-weight: 300;
            letter-spacing: 0.03em;
            color: var(--text-mid);
            margin: 1.8rem auto 0;
            max-width: 520px;
            line-height: 1.75;
        }
        @media (max-width: 860px) {
            .page-hero { padding: 7rem 1.5rem 3.5rem; }
            .page-hero-title { font-size: clamp(2.4rem, 9vw, 4rem); }
            .page-hero-sub { font-size: 0.95rem; }
        }
