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

        :root {
            --bg:        #28201a;
            --bg2:       #322820;
            --bg3:       #3c2e22;
            --glass:     rgba(240, 224, 200, 0.085);
            --glass2:    rgba(240, 224, 200, 0.13);
            --glass3:    rgba(240, 224, 200, 0.18);
            --border:    rgba(240, 224, 200, 0.15);
            --border2:   rgba(240, 224, 200, 0.30);
            --text:      #faf6f0;
            --muted:     #c0afa0;
            --dim:       #9a8878;
            --accent:    #c08860;
            --accent-hi: #d4a07a;
            --accent-lo: #8a5e3a;
        }

        /* NOTE: no scroll-behavior:smooth here — site.js animates anchor scrolls
           itself, and CSS smooth fights it (each scrollTo becomes its own slow
           animation) and makes browser Back-navigation scroll restore crawl. */
        html { overflow-x: hidden; max-width: 100%; -webkit-overflow-scrolling: touch; background-color: #474221; }

        body {
            position: relative;
            max-width: 100%;
            background-color: #474221;
            color: var(--text);
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ── GLASS PANEL — reusable card for copy sitting on top of a
           section's photo. CRYSTAL CLEAR: no backdrop blur anywhere —
           the photo behind stays 100% crisp, like looking through real
           glass. A dark tint alone keeps the text legible. ── */
        .glass-panel {
            background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 45%), rgba(12,8,5,0.62);
            border: 1px solid rgba(255,255,255,0.16); border-radius: 16px;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 20px 50px rgba(0,0,0,0.35), 0 4px 14px rgba(0,0,0,0.20);
        }

        /* ── COLLAPSIBLE GLASS PANELS — closed by default so the photo is
           the first thing you see; tap anywhere on the card to open it,
           tap again to close. Links/buttons/inputs inside still work
           normally (see toggleGlassPanel in site.js).
           Collapsed height (--peek) is measured in JS so the label +
           title always show whole — never sliced mid-glyph — and the
           tap hint gets its own reserved band below them. Everything
           after the title is opacity-hidden while collapsed, so no
           stray text ever peeks through or escapes the box. ── */
        .glass-panel.collapsible, .review-card.collapsible {
            position: relative; cursor: pointer;
            max-height: var(--peek, 132px); overflow: hidden;
            padding-bottom: 34px; /* room for the tap hint */
            -webkit-tap-highlight-color: transparent;
            transform: translateZ(0); /* keeps Safari clipping children to the rounded box */
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 30px 64px rgba(0,0,0,0.55), 0 8px 20px rgba(0,0,0,0.34);
            transition: max-height .26s cubic-bezier(.3,1.2,.4,1), box-shadow .2s ease;
        }
        .glass-panel.collapsible::after, .review-card.collapsible::after {
            content: 'Tap to read \2193';
            position: absolute; left: 0; right: 0; bottom: 12px;
            text-align: center; font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
            color: rgba(255,255,255,.50); pointer-events: none;
        }
        .glass-panel.collapsible.expanded, .review-card.collapsible.expanded {
            max-height: 2400px; /* no-JS fallback — JS sets the real measured height inline */
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 20px 50px rgba(0,0,0,0.35), 0 4px 14px rgba(0,0,0,0.20);
        }
        .glass-panel.collapsible.expanded::after, .review-card.collapsible.expanded::after { content: 'Tap to close \2191'; }
        /* Content below the peek line: invisible while collapsed, fades
           in a beat after the panel starts opening. */
        .glass-panel.collapsible .ev-peek-hide, .review-card.collapsible .ev-peek-hide { opacity: 1; transition: opacity .18s ease .06s; }
        .glass-panel.collapsible:not(.expanded) .ev-peek-hide, .review-card.collapsible:not(.expanded) .ev-peek-hide { opacity: 0; transition: opacity .12s ease; }
        /* .story-content vertically centers its content when expanded
           (nice for the full split-screen layout) — while collapsed it
           needs to pin to the top so the peek shows the title, not a
           random slice from the middle of the paragraph stack. */
        .story-content.collapsible:not(.expanded) { justify-content: flex-start; }

        body::before {
            content: '';
            position: fixed; inset: 0; z-index: 0; pointer-events: none;
            background-size: cover; background-position: center center;
            filter: blur(0px) brightness(1.3) saturate(0.85);
        }

        body::after {
            content: '';
            position: fixed; inset: 0; z-index: 0; pointer-events: none;
            background:
                rgba(20, 12, 6, 0.16),
                radial-gradient(ellipse 90% 60% at 15% 20%, rgba(170, 90, 35, 0.08) 0%, transparent 55%),
                radial-gradient(ellipse 70% 50% at 85% 80%, rgba(110, 60, 20, 0.05) 0%, transparent 55%),
                radial-gradient(ellipse 50% 80% at 50% 50%,  rgba(90, 50, 15, 0.04) 0%, transparent 70%);
        }

        /* ── BRANDMARK — the one true "Eagle Vision" treatment (Option 9B:
           Gilda Display, tightened). Use this class anywhere the brand
           name appears as a mark (nav, footer, hero eyebrow, future
           pages) so it's identical every time. At small print sizes use
           letter-spacing .13em for clarity. ── */
        .brandmark {
            font-family: 'Gilda Display', 'Cormorant Garamond', serif; font-weight: 400;
            text-transform: uppercase; letter-spacing: .11em;
            color: rgba(240,220,190,0.95);
        }

        /* ── NAV ── */
        #nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 200;
            height: 72px; padding: 0 48px;
            display: flex; align-items: center; justify-content: space-between;
        }
        .nav-logo {
            font-family: 'Gilda Display', 'Cormorant Garamond', serif;
            font-size: 19px; font-weight: 400;
            letter-spacing: .11em; text-transform: uppercase;
            color: rgba(240,220,190,0.95); text-decoration: none;
            display: flex; align-items: center; gap: 10px;
            text-shadow: 0 1px 8px rgba(0,0,0,0.5);
        }
        .nav-links { display: flex; gap: 40px; list-style: none; }
        .nav-links a {
            font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
            color: rgba(240,220,190,0.88); text-decoration: none; transition: color .2s;
            text-shadow: 0 1px 6px rgba(0,0,0,0.45);
        }
        .nav-links a:hover { color: rgba(240,220,190,0.95); }
        .nav-right { display: flex; align-items: center; gap: 20px; }
        .cart-btn {
            background: none; border: none; cursor: pointer;
            display: flex; align-items: center; gap: 8px;
            font-family: 'Inter', sans-serif; font-size: 11px;
            letter-spacing: .12em; text-transform: uppercase; color: rgba(240,220,190,0.88);
            transition: color .2s;
            text-shadow: 0 1px 6px rgba(0,0,0,0.45);
        }
        .cart-btn:hover { color: rgba(240,220,190,0.95); }
        .cart-count {
            background: var(--accent); color: #fff;
            font-size: 10px; font-weight: 600;
            width: 18px; height: 18px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
        }
        .hamburger {
            display: none; flex-direction: column; gap: 5px;
            cursor: pointer; background: none; border: none; padding: 4px;
        }
        .hamburger span { display: block; width: 22px; height: 1px; background: var(--text); transition: .3s; }

        .mobile-menu {
            display: flex; position: fixed; top: 72px; left: 0; right: 0; z-index: 199;
            background: linear-gradient(to bottom, rgba(255,248,238,0.12) 0%, rgba(255,248,238,0.09) 100%);
            backdrop-filter: blur(24px) saturate(1.9); -webkit-backdrop-filter: blur(24px) saturate(1.9);
            border-bottom: 1px solid rgba(255,255,255,0.22);
            flex-direction: column; align-items: center; padding: 28px 0;
            transform: translateY(-8px); opacity: 0; pointer-events: none;
            transition: transform .3s, opacity .3s;
        }
        .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
        .mobile-menu a {
            font-size: 13px; letter-spacing: .15em; text-transform: uppercase;
            color: var(--text); text-decoration: none; padding: 15px 48px;
            width: 100%; text-align: center; border-bottom: 1px solid var(--border);
            transition: color .2s;
        }
        .mobile-menu a:hover { color: var(--accent); }

        /* ── HERO ── */
        .hero {
            position: relative; min-height: 100dvh;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden; isolation: isolate;
        }
        .hero-bg {
            position: absolute; inset: 0;
            background: radial-gradient(ellipse 180% 100% at 50% 60%, rgba(155, 80, 30, 0.055) 0%, transparent 65%);
        }
        .hero-grid {
            position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(192,138,94,.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(192,138,94,.03) 1px, transparent 1px);
            background-size: 64px 64px;
            mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
        }
        .hero-deco {
            position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
            width: 580px; opacity: .05; pointer-events: none;
        }
        .hero-content {
            position: relative; z-index: 2;
            text-align: center; max-width: 920px; padding: 0 40px;
            margin-bottom: 60px;
        }
        .hero-eyebrow {
            font-size: 11px; letter-spacing: .45em; text-transform: uppercase;
            color: var(--accent); margin-bottom: 28px;
            opacity: 0; transform: translateY(18px);
            animation: fadeUp .8s ease .3s forwards;
            text-shadow: 0 1px 12px rgba(0,0,0,0.8);
        }
        .hero-headline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 6.6vw, 77px);
            font-weight: 300; line-height: 1.1; letter-spacing: .14em;
            color: var(--text); margin-bottom: 0;
            opacity: 0; transform: translateY(28px);
            animation: fadeUpDim 1s ease .5s forwards;
            text-shadow: 0 2px 18px rgba(0,0,0,0.7);
        }
        .hero-sub {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 6.6vw, 77px);
            font-weight: 300; line-height: 1.1; letter-spacing: .14em;
            margin-bottom: 36px;
            opacity: 0; transform: translateY(28px);
            animation: fadeUpDim 1s ease .68s forwards;
            text-shadow: 0 2px 18px rgba(0,0,0,0.7);
        }
        .hero-sub em { font-style: italic; color: var(--accent); }
        .hero-tagline {
            font-size: 15px; color: rgba(200,185,168,0.92); letter-spacing: .04em;
            max-width: 460px; margin: 0 auto 10px; font-weight: 300;
            opacity: 0; transform: translateY(18px);
            animation: fadeUp .8s ease .88s forwards;
            text-shadow: 0 1px 12px rgba(0,0,0,0.8);
        }
        .hero-tagline em { font-style: italic; color: var(--text); }
        .hero-tagline-sub {
            font-size: 12px; color: rgba(160,142,124,0.92); letter-spacing: .06em;
            max-width: 400px; margin: 0 auto 38px; font-weight: 300; font-style: italic;
            opacity: 0; transform: translateY(14px);
            animation: fadeUp .8s ease 1.02s forwards;
            text-shadow: 0 1px 12px rgba(0,0,0,0.85);
        }
        .hero-cta {
            display: inline-flex; gap: 32px; flex-wrap: wrap; justify-content: center;
            align-items: center;
            opacity: 0; transform: translateY(18px);
            animation: fadeUp .8s ease 1.05s forwards;
        }
        .btn-primary {
            color: var(--accent); font-size: 11px; font-weight: 500;
            letter-spacing: .22em; text-transform: uppercase;
            text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
            border-bottom: 1px solid rgba(192,136,96,.35); padding-bottom: 3px;
            transition: border-color .25s, gap .3s;
            text-shadow: 0 1px 10px rgba(0,0,0,0.7);
        }
        .btn-primary:hover { border-color: var(--accent); gap: 12px; }
        .btn-ghost {
            color: rgba(155,136,116,0.88); font-size: 11px; font-weight: 400;
            letter-spacing: .22em; text-transform: uppercase;
            text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
            border-bottom: 1px solid rgba(240,224,200,.1); padding-bottom: 3px;
            transition: color .25s, border-color .25s, gap .3s;
            text-shadow: 0 1px 10px rgba(0,0,0,0.8);
        }
        .btn-ghost:hover { color: var(--muted); border-color: rgba(240,224,200,.25); gap: 11px; }
        .hero-scroll {
            display: flex; flex-direction: column; align-items: center; gap: 16px;
            margin: 0 auto 56px;
            opacity: 0; transform: translateY(14px);
            animation: fadeUp .9s ease .1s forwards;
        }
        .scroll-putter {
            width: 68px;
            animation: scrollPulse 3s ease-in-out infinite;
            overflow: visible;
        }
        .scroll-label { font-size: 9px; letter-spacing: .35em; text-transform: uppercase; color: rgba(155,136,116,0.92); text-shadow: 0 1px 10px rgba(0,0,0,0.88); }

        /* ── TICKER ── */
        .ticker { background: rgba(20,14,8,0.76); backdrop-filter: blur(24px) saturate(1.9); -webkit-backdrop-filter: blur(24px) saturate(1.9); border-bottom: 1px solid rgba(255,220,150,0.12); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08); padding: 7px 0; overflow: hidden; white-space: nowrap; position: absolute; top: 72px; left: 0; right: 0; z-index: 150; }
        .ticker-track { display: inline-flex; animation: ticker 30s linear infinite; }
        .ticker-item { font-size: 10px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: rgba(240,220,190,0.92); padding: 0 36px; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
        .ticker-sep { opacity: .4; }

        /* ── SHARED ── */
        .section-label { font-size: 10px; letter-spacing: .45em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; text-shadow: 0 1px 10px rgba(0,0,0,0.75); }
        .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 62px); font-weight: 300; line-height: 1.05; letter-spacing: -.01em; text-shadow: 0 2px 14px rgba(0,0,0,0.6); }

        /* ── COLLECTION ── */
        .collection { padding: 80px 48px; position: relative; background: transparent; overflow: hidden; isolation: isolate; }
        .collection-header { max-width: 441px; margin: 0 auto 28px; padding: 24px 28px; display: flex; justify-content: space-between; align-items: flex-end; }
        .view-all {
            font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
            color: rgba(200,185,168,0.90); text-decoration: none;
            border-bottom: 1px solid var(--border2); padding-bottom: 3px;
            transition: color .2s, border-color .2s; white-space: nowrap; margin-bottom: 8px;
            text-shadow: 0 1px 8px rgba(0,0,0,0.6);
        }
        .view-all:hover { color: var(--accent); border-color: var(--accent); }
        .products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; max-width: 441px; margin: 0 auto; }
        .product-card {
            background: linear-gradient(145deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0) 55%), rgba(12,8,5,0.55);
            border: 1px solid rgba(255,255,255,0.22); border-radius: 8px; overflow: hidden; cursor: pointer;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 20px 50px rgba(0,0,0,0.22), 0 4px 14px rgba(0,0,0,0.12);
            transition: transform .25s cubic-bezier(0.16,1,.3,1), box-shadow .25s cubic-bezier(0.16,1,.3,1), border-color .2s ease;
        }
        .product-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.32); box-shadow: inset 0 1px 0 rgba(255,255,255,0.34), 0 28px 56px rgba(0,0,0,.24), 0 6px 20px rgba(0,0,0,0.14); }
        /* Dark studio tile — opaque so the glasses read identically on
           every card, with a soft light pool behind them (Apple-tile style). */
        .product-image {
            aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden; border-radius: 7px 7px 0 0;
            background: radial-gradient(ellipse 85% 70% at 50% 38%, #2b2016 0%, #1a120b 62%, #120c07 100%);
        }
        .product-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 55%, rgba(16,11,7,.55) 100%); pointer-events: none; z-index: 1; }
        .product-photo { width: 92%; height: 92%; object-fit: contain; object-position: center; display: block; transition: transform .3s ease; filter: drop-shadow(0 10px 18px rgba(0,0,0,.45)); }
        .product-card:hover .product-photo { transform: scale(1.06); }
        .product-badge { position: absolute; top: 7px; left: 7px; z-index: 2; background: rgba(192,136,96,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; font-size: 8px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; padding: 2px 6px; border-radius: 2px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.20); }
        .product-info { padding: 12px 14px 14px; background: linear-gradient(to bottom, rgba(6,4,2,0.22), rgba(6,4,2,0.48)); }
        .product-num { font-size: 9px; letter-spacing: .2em; color: var(--muted); margin-bottom: 2px; }
        .product-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; letter-spacing: .04em; margin-bottom: 2px; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
        .product-variant { font-size: 13px; color: rgba(200,185,168,0.88); margin-bottom: 8px; }
        .product-price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .product-price { font-size: 16px; font-weight: 500; letter-spacing: .04em; color: var(--text); text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
        .btn-buy-now {
            width: 100%; padding: 9px;
            background: var(--accent); color: #fff;
            font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
            letter-spacing: .16em; text-transform: uppercase;
            border: none; border-radius: 6px; cursor: pointer; margin-bottom: 5px;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.20), 0 2px 12px rgba(192,136,96,0.28);
            transition: background .18s ease, transform .18s cubic-bezier(0.16,1,.3,1), box-shadow .18s;
        }
        .btn-buy-now:hover { background: var(--accent-hi); transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 28px rgba(192,136,96,0.55); }
        /* ── "Try Them On" — quiet secondary feature, lives inside the card ── */
        .product-tryon-link {
            display: block; width: 100%; padding: 6px 0 2px;
            background: none; border: none; cursor: pointer;
            font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500;
            letter-spacing: .12em; text-transform: uppercase;
            color: var(--dim);
            transition: color .2s;
        }
        .product-tryon-link:hover { color: var(--accent); }
        .btn-add-bag {
            width: 100%; padding: 7px;
            background: rgba(255,255,255,0.05); color: var(--muted);
            font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 400;
            letter-spacing: .13em; text-transform: uppercase;
            border: 1px solid rgba(192,136,96,.18); border-radius: 5px; cursor: pointer;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
            transition: border-color .25s, color .25s, background .25s, box-shadow .25s;
        }
        .btn-add-bag:hover { border-color: rgba(192,136,96,.45); color: var(--text); background: rgba(255,255,255,0.09); box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 0 14px rgba(192,136,96,0.15); }

        /* ── PUTT CTA ── */
        .putt-cta-wrap {
            max-width: 441px; margin: 0 auto 22px; text-align: center;
        }
        .putt-cta-wrap.entered { /* no-op — button is always visible */ }
        .putt-cta-btn {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px, 4.2vw, 46px);
            font-style: italic; font-weight: 600;
            color: #FFD97A;
            background: rgba(255,200,60,.12);
            border: 2px solid rgba(255,210,80,.65);
            border-radius: 6px; padding: 28px 72px; cursor: pointer;
            letter-spacing: .05em; line-height: 1.25;
            transition: background .3s, border-color .3s, color .3s, box-shadow .3s;
            animation: puttCtaContinuousPulse 2s ease-in-out infinite;
        }
        /* .putt-cta-wrap.entered .putt-cta-btn — pulse runs from base rule, no override needed */
        .putt-cta-btn:hover {
            background: rgba(255,210,80,.22);
            border-color: rgba(255,225,120,1);
            color: #FFF5E4;
            box-shadow: 0 0 60px rgba(255,210,60,.8), 0 0 120px rgba(255,190,40,.4);
            animation-play-state: paused;
        }
        @media (max-width: 430px) {
            .putt-cta-wrap { margin-bottom: 32px; }
            .putt-cta-btn { padding: 16px 28px; }
        }

        /* ── PERFORMANCE ── */
        .performance { padding: 80px 48px; background: transparent; position: relative; overflow: hidden; isolation: isolate; }
        .performance-inner { max-width: 1280px; margin: 0 auto; }
        .performance-header { text-align: center; margin: 0 auto 72px; padding: 40px 36px; max-width: 620px; }
        .performance-header .section-title { max-width: 560px; margin: 0 auto; }
        .features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
        .feature-card {
            background: linear-gradient(145deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0) 55%), rgba(12,8,5,0.58);
            border: 1px solid rgba(255,255,255,0.22); border-radius: 14px; padding: 48px 40px;
            position: relative; overflow: hidden; border-top: 2px solid transparent;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 16px 44px rgba(0,0,0,0.18);
            transition: border-color .2s ease, background .2s ease, transform .25s cubic-bezier(0.16,1,.3,1), box-shadow .2s ease;
        }
        .feature-card:hover { border-color: var(--accent); background: linear-gradient(145deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0) 55%), rgba(14,9,5,0.66); transform: translateY(-3px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.34), 0 20px 48px rgba(0,0,0,0.20), 0 0 22px rgba(192,136,96,0.14); }
        .feature-ghost { font-family: 'Cormorant Garamond', serif; font-size: 88px; font-weight: 600; color: rgba(192,136,96,.07); position: absolute; top: 10px; right: 20px; line-height: 1; pointer-events: none; }
        .feature-icon { width: 44px; height: 44px; margin-bottom: 28px; }
        .feature-label { font-size: 9px; letter-spacing: .45em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
        .feature-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; margin-bottom: 14px; letter-spacing: .02em; }
        .feature-desc { font-size: 14px; line-height: 1.85; color: var(--muted); font-weight: 300; }
        .feature-rule { width: 28px; height: 1px; background: var(--accent); margin-top: 24px; opacity: .6; }

        /* ── STORY ── */
        .story { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; background: transparent; position: relative; overflow: hidden; isolation: isolate; }
        /* Fully transparent — this half of the split IS the photo. */
        .story-visual { position: relative; overflow: hidden; min-height: 580px; background: transparent; }
        .story-visual-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 65% 55% at 35% 60%, rgba(192,136,96,.18) 0%, transparent 60%), radial-gradient(ellipse 45% 40% at 75% 25%, rgba(110,60,20,.12) 0%, transparent 55%); }
        .story-ev { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
        .story-ev-text { font-family: 'Cormorant Garamond', serif; font-size: 200px; font-weight: 700; color: rgba(192,136,96,.065); line-height: 1; user-select: none; }
        .story-divider { position: absolute; top: 0; bottom: 0; right: 0; width: 1px; background: linear-gradient(to bottom, transparent, var(--border) 30%, var(--border) 70%, transparent); }
        .story-content { padding: 80px 80px; display: flex; flex-direction: column; justify-content: center; }
        .story-content .section-title { margin-bottom: 32px; }
        .story-text { font-size: 15px; line-height: 1.9; color: rgba(200,185,168,0.92); margin-bottom: 22px; text-shadow: 0 1px 10px rgba(0,0,0,0.6); }
        .story-text strong { color: var(--text); font-weight: 400; }
        .story-stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
        .stat { flex: 1; }
        .stat-n { font-family: 'Cormorant Garamond', serif; font-size: 50px; font-weight: 300; color: var(--accent); line-height: 1; margin-bottom: 8px; text-shadow: 0 1px 12px rgba(0,0,0,0.65); }
        .stat-l { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(200,185,168,0.88); text-shadow: 0 1px 8px rgba(0,0,0,0.6); }

        /* ── NEWSLETTER ── */
        .newsletter { padding: 80px 48px; text-align: center; position: relative; overflow: hidden; background: transparent; isolation: isolate; }
        .newsletter-inner { position: relative; max-width: 520px; margin: 0 auto; padding: 48px 40px; }
        .newsletter .section-title { margin-bottom: 16px; }
        .newsletter-sub { font-size: 14px; color: var(--muted); margin-bottom: 44px; }
        .newsletter-form { display: flex; max-width: 440px; margin: 0 auto; border-radius: 8px; overflow: hidden; }
        .newsletter-input { flex: 1; background: rgba(10,7,4,0.55); border: 1px solid rgba(255,255,255,0.20); border-right: none; color: var(--text); font-family: 'Inter', sans-serif; font-size: 13px; padding: 14px 20px; outline: none; box-shadow: inset 0 1px 0 rgba(255,255,255,0.22); transition: border-color .2s; }
        .newsletter-input::placeholder { color: var(--dim); }
        .newsletter-input:focus { border-color: var(--accent); }
        .newsletter-btn { background: var(--accent); border: 1px solid var(--accent); color: #fff; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; padding: 14px 28px; cursor: pointer; transition: background .25s; white-space: nowrap; }
        .newsletter-btn:hover { background: var(--accent-hi); }

        /* ── FOOTER ── */
        footer { background: transparent; padding: 72px 48px 40px; position: relative; overflow: hidden; isolation: isolate; }
        .footer-inner { max-width: 1280px; margin: 0 auto; padding: 40px 44px; }
        .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
        .footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.75; max-width: 230px; margin-top: 16px; }
        .footer-col h4 { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--dim); margin-bottom: 20px; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer-col a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
        .footer-col a:hover { color: var(--text); }
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border); }
        .footer-copy { font-size: 12px; color: var(--dim); }
        .footer-legal { display: flex; gap: 24px; }
        .footer-legal a { font-size: 12px; color: var(--dim); text-decoration: none; transition: color .2s; }
        .footer-legal a:hover { color: var(--muted); }

        /* ── REVIEWS ── */
        .reviews { padding: 80px 48px; background: transparent; position: relative; overflow: hidden; isolation: isolate; }
        .reviews-inner { max-width: 1280px; margin: 0 auto; }
        .reviews-header { text-align: center; margin: 0 auto 64px; padding: 40px 36px; max-width: 560px; }
        .reviews-header .section-title { max-width: 480px; margin: 0 auto; }
        .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
        .review-card {
            background: linear-gradient(145deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0) 55%), rgba(12,8,5,0.58);
            border: 1px solid rgba(255,255,255,0.22); border-radius: 16px; padding: 40px 36px;
            display: flex; flex-direction: column; gap: 22px;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 16px 44px rgba(0,0,0,0.18);
            transition: transform .25s cubic-bezier(0.16,1,.3,1), border-color .2s, box-shadow .2s;
        }
        .review-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.32); box-shadow: inset 0 1px 0 rgba(255,255,255,0.34), 0 24px 48px rgba(0,0,0,0.22); }
        .review-stars { color: var(--accent); font-size: 13px; letter-spacing: 3px; }
        .review-text { font-size: 15px; line-height: 1.9; color: var(--muted); font-weight: 300; flex: 1; }
        .review-source { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--border); padding-top: 20px; }
        .review-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.14); box-shadow: inset 0 1px 0 rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--accent); flex-shrink: 0; }
        .review-meta { flex: 1; }
        .review-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; margin-bottom: 2px; }
        .review-detail { font-size: 11px; letter-spacing: .1em; color: var(--dim); text-transform: uppercase; }
        .review-product { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); opacity: .75; }
        .review-verified { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #6fbf6f; margin-top: 4px; }
        .review-community-badge { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); margin-top: 4px; }
        .review-card.community { background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 55%), rgba(12,8,5,0.44); border-color: rgba(255,255,255,0.11); }
        .review-card.community .review-text { font-size: 14px; color: rgba(154,130,112,.72); }
        .review-card.community:hover { border-color: rgba(255,255,255,0.12); }

        /* ── MODAL DISCOUNT ── */
        .modal-discount {
            display: none; background: rgba(80,160,80,.1); border: 1px solid rgba(100,200,100,.22);
            border-radius: 8px; padding: 10px 16px; text-align: center;
            font-size: 12px; letter-spacing: .07em; color: #7fd87f; margin-bottom: 16px;
        }
        .modal-discount.show { display: block; }

        /* ── BUY MODAL ── */
        .buy-modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .18s; }
        .buy-modal.open { opacity: 1; pointer-events: all; }
        .modal-overlay { position: absolute; inset: 0; background: rgba(12,9,6,.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
        .modal-card {
            position: relative; z-index: 1;
            background: linear-gradient(145deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0) 55%), rgba(255,248,238,0.11);
            backdrop-filter: blur(28px) saturate(2.0); -webkit-backdrop-filter: blur(28px) saturate(2.0);
            border: 1px solid rgba(255,255,255,0.24); border-radius: 20px;
            width: 100%; max-width: 420px; margin: 0 20px; padding: 32px;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.32), 0 48px 96px rgba(0,0,0,.45), 0 8px 28px rgba(0,0,0,0.22);
            transform: translateY(14px) scale(.97);
            transition: transform .2s cubic-bezier(.2,.8,.4,1);
        }
        .buy-modal.open .modal-card { transform: translateY(0) scale(1); }
        .modal-close { position: absolute; top: 18px; right: 20px; z-index: 10; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); box-shadow: inset 0 1px 0 rgba(255,255,255,0.16); border-radius: 50%; width: 32px; height: 32px; cursor: pointer; color: var(--muted); font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
        .modal-close:hover { background: rgba(255,255,255,0.14); color: var(--text); }
        .modal-img-wrap { position: relative; border-radius: 12px; overflow: hidden; margin-bottom: 24px; background: radial-gradient(ellipse 85% 70% at 50% 38%, #2b2016 0%, #1a120b 62%, #120c07 100%); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
        .modal-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 55%, rgba(16,11,7,.45) 100%); pointer-events: none; }
        .modal-img-wrap img { width: 92%; height: 92%; object-fit: contain; object-position: center; display: block; filter: drop-shadow(0 10px 18px rgba(0,0,0,.45)); }
        .modal-eyebrow { font-size: 9px; letter-spacing: .4em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
        .modal-name { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; letter-spacing: .03em; margin-bottom: 4px; }
        .modal-variant { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
        .modal-price { font-size: 22px; font-weight: 500; color: var(--text); margin-bottom: 24px; }
        .apple-pay-btn { display: block; width: 100%; height: 54px; -webkit-appearance: -apple-pay-button; -apple-pay-button-type: buy; -apple-pay-button-style: black; border-radius: 12px; border: none; cursor: pointer; margin-bottom: 12px; }
        .modal-pay-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .modal-pay-divider::before, .modal-pay-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
        .modal-pay-divider span { font-size: 11px; color: var(--dim); letter-spacing: .06em; }
        .modal-checkout { display: block; width: 100%; padding: 16px; background: var(--accent); color: #fff; text-align: center; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; border: none; border-radius: 10px; cursor: pointer; box-shadow: inset 0 1px 0 rgba(255,255,255,0.20), 0 2px 16px rgba(192,136,96,0.35); transition: background .25s, transform .15s, box-shadow .25s; }
        .modal-checkout:hover { background: var(--accent-hi); transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 28px rgba(192,136,96,0.55); }

        /* ── SIZING GUIDE MODAL — fine line-drawn spec sheet ── */
        .sizing-card { text-align: center; }
        .sizing-sub { font-size: 13px; color: var(--muted); line-height: 1.7; margin: 6px auto 0; max-width: 300px; }
        .sizing-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 22px 8px; margin: 28px 0 22px;
            padding: 22px 6px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
        }
        .spec-cell { display: flex; flex-direction: column; align-items: center; gap: 7px; }
        .spec-icon { width: 52px; height: 26px; }
        .spec-icon path, .spec-icon rect, .spec-icon circle, .spec-icon line {
            stroke: var(--accent); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
        }
        .spec-icon .dim { stroke: rgba(240,224,200,.38); stroke-width: 1; }
        .spec-value { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--text); line-height: 1; }
        .spec-label { font-size: 8.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); }
        .sizing-note { font-size: 11.5px; color: var(--dim); line-height: 1.7; font-style: italic; max-width: 320px; margin: 0 auto; }

        /* ── FLOATING PUTTING CHALLENGE ── always visible, unmissable */
        .floating-putt {
            position: fixed; bottom: calc(32px + env(safe-area-inset-bottom, 0px)); left: 32px; z-index: 300;
            display: flex; align-items: center; gap: 10px;
            background: linear-gradient(145deg, rgba(255,225,130,0.24) 0%, rgba(255,190,60,0.14) 100%), rgba(20,14,6,0.60);
            backdrop-filter: blur(20px) saturate(1.8); -webkit-backdrop-filter: blur(20px) saturate(1.8);
            border: 1.5px solid rgba(255,215,110,0.80); border-radius: 50px;
            padding: 13px 22px 13px 8px;
            text-decoration: none; color: #FFEBC0;
            font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .05em;
            box-shadow: 0 0 22px rgba(255,200,60,.32), 0 12px 30px rgba(0,0,0,.35);
            animation: puttFloatPulse 2.4s ease-in-out infinite;
            transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
            /* hidden while the hero (with its own big putt CTA) is on screen —
               appears once you scroll, so it never covers the headline */
            opacity: 0; pointer-events: none;
        }
        .floating-putt.visible { opacity: 1; pointer-events: all; }
        .floating-putt:hover { transform: translateY(-3px) scale(1.03); animation-play-state: paused; box-shadow: 0 0 42px rgba(255,215,80,.65), 0 16px 36px rgba(0,0,0,.40); }
        .floating-putt-badge {
            background: #FFD97A; color: #3a2408; font-size: 9px; font-weight: 800; letter-spacing: .07em;
            text-transform: uppercase; padding: 6px 10px; border-radius: 20px; white-space: nowrap;
        }
        .floating-putt-label { white-space: nowrap; }
        @keyframes puttFloatPulse {
            0%,100% { box-shadow: 0 0 18px rgba(255,200,60,.28), 0 12px 28px rgba(0,0,0,.32); }
            50%     { box-shadow: 0 0 36px rgba(255,218,85,.62), 0 12px 30px rgba(0,0,0,.35); }
        }
        @media (max-width: 600px) {
            .floating-putt { left: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); padding: 10px 16px 10px 6px; }
        }
        @media (max-width: 430px) {
            .floating-putt-label { display: none; }
            .floating-putt { padding: 9px 14px; border-radius: 50%; }
        }

        /* ── FLOATING BUY NOW ── */
        .floating-buy { position: fixed; bottom: calc(32px + env(safe-area-inset-bottom, 0px)); right: 32px; z-index: 300; opacity: 0; transform: translateY(12px); transition: opacity .4s, transform .4s; pointer-events: none; }
        .floating-buy.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
        .floating-trigger { display: flex; align-items: center; gap: 8px; background: linear-gradient(145deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0) 55%), rgba(255,248,238,0.11); backdrop-filter: blur(24px) saturate(1.9); -webkit-backdrop-filter: blur(24px) saturate(1.9); border: 1px solid rgba(255,255,255,0.24); border-radius: 50px; padding: 14px 22px; color: var(--text); font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; box-shadow: inset 0 1px 0 rgba(255,255,255,0.30), 0 16px 40px rgba(0,0,0,.32); transition: background .2s, border-color .2s, box-shadow .2s; }
        .floating-trigger:hover { background: linear-gradient(145deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 55%), rgba(255,248,238,0.15); border-color: rgba(192,136,96,0.55); box-shadow: inset 0 1px 0 rgba(255,255,255,0.36), 0 16px 40px rgba(0,0,0,.32), 0 0 22px rgba(192,136,96,0.22); }
        .floating-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: dotPulse 2s ease-in-out infinite; }
        .floating-menu { position: absolute; bottom: 60px; right: 0; min-width: 280px; background: linear-gradient(145deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0) 45%), rgba(255,248,238,0.11); backdrop-filter: blur(24px) saturate(1.9); -webkit-backdrop-filter: blur(24px) saturate(1.9); border: 1px solid rgba(255,255,255,0.24); border-radius: 16px; overflow: hidden; opacity: 0; transform: translateY(8px) scale(.97); pointer-events: none; transition: opacity .16s, transform .16s; box-shadow: inset 0 1px 0 rgba(255,255,255,0.30), 0 24px 52px rgba(0,0,0,.32); }
        .floating-menu.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
        .floating-menu-header { padding: 14px 18px 10px; font-size: 9px; letter-spacing: .4em; text-transform: uppercase; color: var(--accent); border-bottom: 1px solid var(--border); }
        .floating-menu-item { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--border); cursor: pointer; transition: background .2s; background: none; border-left: none; border-right: none; border-top: none; width: 100%; text-align: left; color: var(--text); font-family: 'Inter', sans-serif; }
        .floating-menu-item:last-child { border-bottom: none; }
        .floating-menu-item:hover { background: rgba(255,255,255,0.08); }
        .fmi-name { font-size: 14px; font-weight: 400; letter-spacing: .02em; }
        .fmi-price { font-size: 13px; color: var(--accent); font-weight: 500; display: flex; align-items: center; gap: 6px; }
        .fmi-arrow { font-size: 12px; opacity: .6; }

        /* ── REVEAL — fast pop, barely-staggered ── */
        .reveal {
            opacity: 0; transform: translateY(14px);
            transition: opacity 0.24s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .delay-1 { transition-delay: 0.04s; }
        .delay-2 { transition-delay: 0.08s; }
        .delay-3 { transition-delay: 0.12s; }

        /* ── SECTION BACKGROUNDS — one crisp photo per section, shown
           full-strength so it reads as art. Normal scroll (not fixed),
           no blur on the image itself — only a light darkening so the
           photo stays the protagonist. ── */
        .bg-frame {
            position: absolute; inset: 0; z-index: -1; pointer-events: none;
            background-size: cover; background-position: center; background-attachment: scroll;
            filter: saturate(1.05);
        }
        .bg-frame::after {
            content: ''; position: absolute; inset: 0;
            background: rgba(14, 9, 5, 0.18);
        }

        /* ── KEYFRAMES ── */
        @keyframes fadeUp    { to { opacity:1;   transform:translateY(0); } }
        @keyframes fadeUpDim { to { opacity:0.6; transform:translateY(0); } }
        @keyframes fadeIn    { to { opacity:1;   } }
        @keyframes ticker   { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
        @keyframes scrollPulse { 0%,100%{opacity:.35} 50%{opacity:1} }
        @keyframes dotPulse { 0%,100%{opacity:.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.3)} }
        @keyframes puttCtaContinuousPulse {
            0%,100% {
                box-shadow: 0 0 18px rgba(255,210,60,.4), 0 0 45px rgba(255,185,30,.18), inset 0 0 14px rgba(255,200,60,.08);
                border-color: rgba(255,210,80,.55);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 42px rgba(255,215,70,.75), 0 0 90px rgba(255,190,30,.38), inset 0 0 28px rgba(255,210,70,.16);
                border-color: rgba(255,225,110,.95);
                transform: scale(1.028);
            }
        }

        /* ── EDITORIAL HERO ── */
        .editorial-hero {
            position: relative;
            width: 100%;
            min-height: 85vh;
            min-height: 85svh; /* stable on mobile — no jump when the URL bar collapses */
            overflow: hidden;
            isolation: isolate;
            display: flex;
            align-items: flex-end;
        }
        .editorial-hero-bg {
            position: absolute; inset: 0;
            background-size: cover;
            background-position: top center;
        }
        .editorial-hero-scrim {
            position: absolute; inset: 0; z-index: 1;
            background: linear-gradient(to top, rgba(8,5,2,0.88) 0%, rgba(8,5,2,0.36) 45%, transparent 72%);
        }
        .editorial-hero-content {
            position: relative; z-index: 2;
            padding: 28px 28px 32px;
            margin: 0 20px calc(20px + env(safe-area-inset-bottom, 0px));
            will-change: transform, opacity;
            transition: opacity .45s ease, transform .45s ease;
        }
        .editorial-hero-content.hero-content-pre { opacity: 0; transform: translateY(16px); pointer-events: none; }

        /* ── HERO INTRO EFFECTS (mode chosen in data.js: none | sweep | tap) ── */
        .hero-intro-sweep {
            position: absolute; inset: 0; z-index: 3; pointer-events: none;
            background: rgba(139,90,20,0.55); /* amber lens tint */
            clip-path: circle(0% at 50% 55%); opacity: 1;
            transition: clip-path .7s cubic-bezier(.76,0,.24,1), opacity .45s ease .1s;
        }
        .hero-intro-sweep.sweeping { clip-path: circle(140% at 50% 55%); }
        .hero-intro-sweep.fading { opacity: 0; }
        .hero-teaser {
            display: none; position: absolute; z-index: 4;
            left: 50%; top: 55%; transform: translate(-50%, -50%);
            align-items: center; gap: 8px;
            font-family: 'Cormorant Garamond', serif; font-style: italic;
            font-size: 20px; font-weight: 600; letter-spacing: .05em;
            color: #FFEBC0; cursor: pointer;
            background: rgba(12,8,4,0.60);
            border: 1.5px solid rgba(255,210,110,0.75); border-radius: 50px;
            padding: 16px 30px;
            animation: puttFloatPulse 2.2s ease-in-out infinite;
            transition: opacity .2s ease;
        }
        .hero-teaser.show { display: flex; }
        .editorial-hero-eyebrow {
            /* Brand wordmark treatment — same face as the nav/footer logo,
               slightly wider tracking at this small size for clarity */
            font-family: 'Gilda Display', 'Cormorant Garamond', serif; font-weight: 400;
            font-size: 13px; letter-spacing: .13em; text-transform: uppercase;
            color: rgba(240,220,190,0.92); margin-bottom: 14px;
            text-shadow: 0 1px 8px rgba(0,0,0,0.85);
        }
        .editorial-hero-headline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(42px, 9vw, 86px);
            font-weight: 300; line-height: 1.06; letter-spacing: .02em;
            color: var(--text); margin-bottom: 28px;
            text-shadow: 0 2px 22px rgba(0,0,0,0.75);
        }
        .editorial-hero-cta {
            display: inline-block;
            font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
            color: var(--text); text-decoration: underline;
            text-underline-offset: 4px;
            text-decoration-color: rgba(255,255,255,0.40);
            text-shadow: 0 1px 8px rgba(0,0,0,0.75);
            transition: text-decoration-color .2s;
        }
        .editorial-hero-cta:hover { text-decoration-color: rgba(255,255,255,0.88); }

        /* ── HERO CTAS — the two doors in. Big, glowing, unmissable. ── */
        .editorial-hero-ctas {
            display: flex; flex-direction: column; gap: 10px;
            max-width: 340px; margin-bottom: 18px;
        }
        .hero-cta-putt {
            display: flex; align-items: center; justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic; font-weight: 600; font-size: 21px;
            letter-spacing: .04em; text-decoration: none;
            color: #FFD97A; text-align: center;
            background: rgba(255,200,60,.14);
            border: 1.5px solid rgba(255,210,80,.70); border-radius: 50px;
            padding: 15px 28px; min-height: 44px;
            animation: puttCtaContinuousPulse 2s ease-in-out infinite;
            transition: background .18s, color .18s, border-color .18s;
        }
        .hero-cta-putt:active, .hero-cta-putt:hover {
            background: rgba(255,210,80,.24); color: #FFF5E4;
            border-color: rgba(255,225,120,1);
        }
        .hero-cta-lens {
            position: relative; overflow: hidden;
            display: flex; align-items: center; justify-content: center; gap: 8px;
            font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
            letter-spacing: .18em; text-transform: uppercase;
            color: var(--text); cursor: pointer; text-align: center;
            background: rgba(12,8,5,0.55);
            border: 1px solid rgba(255,255,255,0.35); border-radius: 50px;
            padding: 15px 28px; min-height: 44px;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 8px 24px rgba(0,0,0,.35);
            transition: border-color .18s, background .18s;
        }
        /* amber light sweeping across the lens button — begs to be tapped */
        .hero-cta-lens::after {
            content: ''; position: absolute; top: 0; bottom: 0; left: -60%;
            width: 45%; pointer-events: none;
            background: linear-gradient(105deg, transparent 0%, rgba(255,190,110,.28) 50%, transparent 100%);
            animation: lensShimmer 2.8s ease-in-out infinite;
        }
        @keyframes lensShimmer {
            0%, 55% { left: -60%; }
            85%, 100% { left: 120%; }
        }
        .hero-cta-lens:active, .hero-cta-lens:hover {
            border-color: rgba(255,190,110,.75); background: rgba(20,13,7,0.72);
        }

        /* ── FEATURED PRODUCT CARD ── */
        .featured-card-wrap {
            padding: 48px 24px 0;
            max-width: 489px; /* 441px card + 48px padding */
            margin: 0 auto;
        }
        .badge-best-seller {
            background: #9e3d24 !important;
        }
        .featured-buy-row {
            display: flex; justify-content: flex-end; margin-top: 8px;
        }
        .btn-buy-pill {
            display: inline-flex; align-items: center; gap: 7px;
            background: rgba(12,8,4,0.90); color: var(--text);
            font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600;
            letter-spacing: .20em; text-transform: uppercase;
            border: 1px solid rgba(255,255,255,0.13); border-radius: 50px;
            padding: 9px 20px; cursor: pointer;
            backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 4px 16px rgba(0,0,0,0.40);
            transition: background .25s, border-color .25s, box-shadow .25s, transform .2s;
        }
        .btn-buy-pill:hover {
            background: rgba(22,14,8,0.96);
            border-color: rgba(192,136,96,0.42);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 4px 22px rgba(0,0,0,0.50), 0 0 16px rgba(192,136,96,0.16);
            transform: translateY(-1px);
        }
        .btn-buy-pill-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: var(--accent); flex-shrink: 0;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 960px) {
            #nav { padding: 0 24px; }
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .hero-deco { display: none; }
            .editorial-hero { min-height: 85vh; }
            .editorial-hero-content { padding: 24px 24px 36px; }
            .featured-card-wrap { padding: 36px 16px 0; }
            .collection { padding: 60px 24px; }
            .collection-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
            .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 460px; }
            .performance { padding: 60px 24px; }
            .features-grid { grid-template-columns: 1fr; }
            .feature-card { padding: 40px 32px; }
            .feature-ghost { font-size: 72px; }
            .story { grid-template-columns: 1fr; }
            .story-visual { min-height: 260px; }
            .story-content { padding: 60px 24px; }
            .story-stats { gap: 28px; }
            .newsletter { padding: 60px 24px; }
            footer { padding: 60px 24px 36px; }
            .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
            .floating-buy { bottom: calc(20px + env(safe-area-inset-bottom, 0px)); right: 20px; }
            .hero-content { margin-bottom: 40px; }
            .hero-scroll { margin-bottom: 36px; gap: 12px; }
            .scroll-putter { width: 52px; }
            .reviews { padding: 60px 24px; }
            .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
            .review-card { padding: 32px 28px; }
        }
        @media (max-width: 768px) {
            body::before { background-position: center 40%; }
        }


        /* ── 600px and below ── */
        @media (max-width: 600px) {
            /* Hero */
            .hero { min-height: 600px; }
            .hero-content { padding: 0 20px; margin-bottom: 70px; }
            .hero-cta { flex-direction: column; align-items: center; gap: 20px; }
            .hero-tagline { font-size: 14px; max-width: 100%; }

            /* Story */
            .story-visual { min-height: 180px; }
            .story-ev-text { font-size: 130px; }
            .story-stats { flex-direction: column; gap: 24px; }

            /* Newsletter */
            .newsletter-form { flex-direction: column; }
            .newsletter-input {
                border-right: 1px solid var(--border);
                border-bottom: none;
                border-radius: 8px 8px 0 0;
            }
            .newsletter-btn { border-radius: 0 0 8px 8px; padding: 15px; }

            /* Footer */
            .footer-top { grid-template-columns: 1fr; gap: 32px; }
            .footer-legal { flex-wrap: wrap; gap: 16px; justify-content: center; }

            /* Floating */
            .floating-buy {
                bottom: calc(16px + env(safe-area-inset-bottom, 0px));
                right: 16px;
            }
        }

        /* ── 430px iPhone ── */
        @media (max-width: 430px) {
            /* Nav */
            #nav { padding: 0 16px; height: 64px; }
            .nav-logo { font-size: 16px; letter-spacing: .10em; gap: 8px; }
            .mobile-menu { top: 64px; }

            /* Hero */
            .hero { min-height: 560px; }
            .hero-content { padding: 0 16px; margin-bottom: 30px; }
            .hero-scroll { margin-bottom: 24px; gap: 10px; }
            .scroll-putter { width: 44px; }
            .hero-eyebrow { font-size: 9px; letter-spacing: .28em; margin-bottom: 18px; }
            .hero-headline,
            .hero-sub { font-size: clamp(30px, 8.4vw, 43px); }
            .hero-tagline { font-size: 13px; margin-bottom: 32px; }
            /* Sections spacing */
            .ticker { top: 64px; }
            .collection  { padding: 48px 16px; }
            .performance { padding: 48px 16px; }
            .newsletter  { padding: 48px 16px; }
            footer       { padding: 48px 16px 32px; }

            /* Collection header */
            .collection-header { margin-bottom: 28px; }
            .view-all { font-size: 10px; }

            /* Product cards — 2-up grid, so keep everything compact */
            .products-grid { gap: 8px; }
            .product-info { padding: 9px 10px 10px; }
            .product-name { font-size: 14px; }
            .product-variant { font-size: 11px; margin-bottom: 6px; }
            .product-price { font-size: 13px; }
            .product-num { font-size: 8px; }
            .btn-buy-now { padding: 7px; font-size: 10px; letter-spacing: .10em; }
            .product-tryon-link { font-size: 9px; padding: 5px 0 1px; }
            .btn-add-bag { padding: 7px; font-size: 12px; letter-spacing: .10em; }

            /* Feature cards */
            .feature-card { padding: 32px 24px 36px; }
            .feature-title { font-size: 24px; }
            .feature-ghost { font-size: 60px; }
            .feature-desc { font-size: 13px; }
            .performance-header { margin-bottom: 40px; }

            /* Story */
            .story-visual { min-height: 140px; }
            .story-ev-text { font-size: 88px; }
            .story-content { padding: 48px 16px 56px; }
            .story-text { font-size: 14px; line-height: 1.8; }
            .stat-n { font-size: 42px; }
            .stat-l { font-size: 10px; }

            /* Newsletter */
            .newsletter-sub { font-size: 13px; margin-bottom: 28px; }
            .newsletter-input { font-size: 14px; padding: 14px 16px; }

            /* Footer — scoped so it doesn't shrink the top nav logo too */
            footer .nav-logo { font-size: 16px; }
            .footer-tagline { font-size: 12px; }
            .footer-col h4 { margin-bottom: 14px; }
            .footer-bottom { gap: 12px; }
            .footer-copy,
            .footer-legal a { font-size: 11px; }

            /* Modal */
            .modal-card { padding: 24px 20px; margin: 0 10px; border-radius: 16px; }
            .modal-close { width: 44px; height: 44px; }
            .modal-name { font-size: 26px; }
            .modal-price { font-size: 20px; margin-bottom: 20px; }

            /* Floating buy */
            .floating-trigger { padding: 12px 16px; font-size: 10px; letter-spacing: .1em; }
            .floating-menu { min-width: calc(100vw - 32px); right: 0; }

            /* Reviews */
            .reviews { padding: 48px 16px; }
            .review-card { padding: 26px 22px; gap: 16px; }
            .review-text { font-size: 14px; }
        }

        /* ══════════════════════════════════════════════════════════
           TRY THEM ON — per-product lens preview modal
           Opened from a product card's "Try Them On" link. Fixed
           full-screen overlay, hidden until .open is added.
        ══════════════════════════════════════════════════════════ */
        #heroPortal {
            position: fixed; inset: 0;
            z-index: 500;
            width: 100%; height: 100%;
            overflow: hidden;
            isolation: isolate;
            opacity: 0;
            pointer-events: none;
            transition: opacity .4s ease;
        }
        #heroPortal.open { opacity: 1; pointer-events: all; }

        /* ── Sweep overlays ── */
        #portalSweepLeft,
        #portalSweepRight {
            position: absolute; inset: 0;
            z-index: 10;
            pointer-events: none;
            clip-path: circle(0% at 0% 50%);
            transition: clip-path 800ms cubic-bezier(0.76, 0, 0.24, 1);
        }
        #portalSweepRight { clip-path: circle(0% at 100% 50%); }
        #portalSweepLeft.sweeping  { clip-path: circle(160% at 0% 50%); }
        #portalSweepRight.sweeping { clip-path: circle(160% at 100% 50%); }

        /* reverse */
        #portalSweepLeft.retreat  { clip-path: circle(0% at 0% 50%); }
        #portalSweepRight.retreat { clip-path: circle(0% at 100% 50%); }

        /* ── The World ── */
        #theWorld {
            position: absolute; inset: 0;
            z-index: 5;
            opacity: 0;
            transition: opacity .4s ease;
            pointer-events: none;
        }
        #theWorld.visible { opacity: 1; pointer-events: all; }

        #worldPhoto {
            position: absolute; inset: 0;
            background-size: cover; background-position: center center;
            pointer-events: none;
        }

        #worldWarmth {
            position: absolute; inset: 0;
            background: rgba(180,120,40,0.08);
            pointer-events: none;
        }

        #worldSunGlare {
            position: absolute; inset: 0;
            background: radial-gradient(ellipse 42% 38% at 12% 16%, rgba(255,240,200,0.18) 0%, transparent 65%);
            pointer-events: none;
        }

        #worldMist {
            position: absolute; left: -25%; right: -25%; top: 28%; height: 44%;
            background: linear-gradient(to bottom,
                transparent 0%,
                rgba(255,255,255,0.12) 28%,
                rgba(255,255,255,0.12) 68%,
                transparent 100%);
            pointer-events: none;
            animation: mistDrift 22s ease-in-out infinite alternate;
        }

        @keyframes mistDrift {
            0%   { transform: translateX(0%); }
            100% { transform: translateX(12%); }
        }

        #worldCanvas {
            position: absolute; inset: 0;
            width: 100%; height: 100%; display: block;
            background: transparent;
        }

        #lensTint {
            position: absolute; inset: 0;
            pointer-events: none;
        }

        #worldVignette {
            position: absolute; inset: 0;
            background: radial-gradient(ellipse 100% 100% at 50% 50%,
                transparent 45%,
                rgba(0,0,0,.30) 72%,
                rgba(0,0,0,.72) 100%);
            pointer-events: none;
        }

        /* ── Remove button ── */
        #portalRemoveBtn {
            position: fixed; top: 122px; left: 32px;
            z-index: 251;
            background: rgba(10,8,4,0.62);
            backdrop-filter: blur(16px) saturate(1.6);
            -webkit-backdrop-filter: blur(16px) saturate(1.6);
            border: 1px solid rgba(200,144,42,0.25);
            border-radius: 24px;
            cursor: pointer;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 15px;
            letter-spacing: .12em;
            color: #C8902A;
            padding: 8px 18px;
            text-shadow: 0 1px 8px rgba(0,0,0,0.8);
            opacity: 0; pointer-events: none;
            transition: opacity .4s ease, color .2s, background .2s, border-color .2s;
        }
        #portalRemoveBtn::after {
            content: '';
            display: block; width: 100%; height: 1px;
            background: rgba(200,144,42,.45);
            margin-top: 3px;
        }
        #portalRemoveBtn:hover {
            color: rgba(228,174,100,1);
            background: rgba(10,8,4,0.82);
            border-color: rgba(200,144,42,0.45);
        }
        #portalRemoveBtn.visible { opacity: 1; pointer-events: all; }

        /* ── Discount card ── */
        #portalDiscountCard {
            position: fixed; bottom: 36px; right: 32px;
            z-index: 251;
            background: rgba(10,8,4,0.75);
            backdrop-filter: blur(28px) saturate(1.8);
            -webkit-backdrop-filter: blur(28px) saturate(1.8);
            border: 1px solid rgba(192,136,96,0.35);
            border-top: 1px solid rgba(192,136,96,0.50);
            border-radius: 14px;
            padding: 22px 28px;
            max-width: 300px;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.18),
                        0 24px 56px rgba(0,0,0,.55);
            transform: translateY(30px);
            opacity: 0;
            transition: transform .7s cubic-bezier(0.16,1,.3,1), opacity .5s ease;
            pointer-events: none;
        }
        #portalDiscountCard.visible {
            transform: translateY(0); opacity: 1; pointer-events: all;
        }
        .portal-card-seeing {
            font-size: 12px; letter-spacing: .06em;
            color: rgba(192,136,96,.85);
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            margin-bottom: 10px;
            line-height: 1.5;
        }
        .portal-card-code {
            font-family: 'Inter', monospace;
            font-size: 20px; font-weight: 700;
            letter-spacing: .22em;
            color: var(--accent);
            margin-bottom: 6px;
        }
        .portal-card-pct {
            font-size: 11px; letter-spacing: .08em;
            color: rgba(240,224,200,.6);
        }

        /* ── Portal responsive ── */
        @media (max-width: 600px) {
            #portalRemoveBtn { top: 110px; left: 20px; }
            #portalDiscountCard { right: 16px; bottom: 24px; left: 16px; max-width: none; }
        }

        /* ══════════════════════════════════════════════════════════
           MOBILE PORTRAIT BACKGROUNDS  (≤ 600 px)

           Landscape images crop to a narrow strip on phones.
           To add portrait versions, drop files into /images/ and
           update the paths in data.js, under images.hero.mobile
           (used for body bg + the try-on preview world-view) and
           images.sections (each section's own background photo).

           Until portrait images are set, focal-point overrides
           below prevent subjects being cropped off-screen.
        ══════════════════════════════════════════════════════════ */
        @media (max-width: 600px) {
            body::before { background-position: center 35%; }
            #heroPortal  { background-position: center 38%; }
            #worldPhoto  { background-position: center 40%; }
        }

        /* ── Glass panel padding — tighten on small screens ── */
        @media (max-width: 430px) {
            .collection-header,
            .performance-header,
            .reviews-header  { padding: 20px 20px; }
            .newsletter-inner { padding: 32px 24px; }
            .footer-inner     { padding: 28px 22px; }
        }

        /* ── FLOATING BUTTONS YIELD TO THE FOOTER — once the footer card
           scrolls into view the pills fade out so they never sit on top
           of the logo, links, or legal line (site.js toggles the class). ── */
        body.ev-footer-near .floating-putt,
        body.ev-footer-near .floating-buy {
            opacity: 0; pointer-events: none; transform: translateY(14px);
        }

        /* ── OS SAFE AREAS — keep the last tappable things clear of the
           iOS home-indicator bar. ── */
        footer { padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px)); }
        @media (max-width: 960px) { footer { padding-bottom: calc(36px + env(safe-area-inset-bottom, 0px)); } }
        @media (max-width: 430px) { footer { padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px)); } }

        /* ── Game page: the "Back to Shop" link must survive on mobile,
           where .nav-links is normally hidden (there's no hamburger there). ── */
        .nav-links--always { display: flex !important; }

        /* ── MOBILE TAP + INPUT ERGONOMICS ── */
        @media (max-width: 960px) {
            /* 44px+ hit area for the hamburger without moving it visually */
            .hamburger { padding: 16px 12px; margin: -12px -8px; }
        }
        @media (max-width: 600px) {
            /* 16px stops iOS Safari from auto-zooming the page on focus */
            .newsletter-input { font-size: 16px; }
            /* roomier secondary tap targets inside product cards */
            .product-tryon-link { padding: 10px 0 6px; }
        }
