        :root {
            --gold: #A47149;
            --gold-light: #C9A882;
            --gold-pale: #EDE0D0;
            --cream: #FDFAF5;
            --cream-dark: #F5EDE0;
            --ink: #1A1209;
            --ink-soft: #3D2E1E;
            --muted: #7A6855;
            --border: rgba(164,113,73,0.18);
        }

        html { scroll-behavior: smooth; }
        body { overflow-x: clip; }

        /* ── HERO ── */
        .gl-hero {
            min-height: 100vh;
            background: var(--cream);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 90px;
        }

        .gl-hero-grain {
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
            background-size: 200px;
            pointer-events: none;
            z-index: 0;
        }

        .gl-hero-backdrop {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(164,113,73,0.10) 0%, transparent 65%),
                        radial-gradient(ellipse 40% 40% at 15% 80%, rgba(164,113,73,0.07) 0%, transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        .gl-hero-giant {
            position: absolute;
            right: -3%;
            bottom: -8%;
            top: auto;
            transform: none;
            font-family: 'Syne', sans-serif;
            font-size: clamp(180px, 18vw, 320px);
            font-weight: 800;
            font-style: normal;
            color: transparent;
            -webkit-text-stroke: 1px rgba(164,113,73,0.10);
            line-height: 1;
            letter-spacing: -0.05em;
            user-select: none;
            pointer-events: none;
            z-index: 0;
        }

        .gl-hero-inner {
            position: relative;
            z-index: 1;
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 80px;
            align-items: center;
        }

        .gl-hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Syne', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 28px;
        }

        .gl-hero-tag::before {
            content: '';
            display: block;
            width: 36px;
            height: 1px;
            background: var(--gold);
        }

        .gl-hero h1 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(3rem, 7vw, 5.2rem);
            font-weight: 800;
            line-height: 1.05;
            color: var(--ink);
            letter-spacing: -0.03em;
            margin-bottom: 28px;
        }

        .gl-hero h1 em {
            font-style: normal;
            color: var(--gold);
            font-weight: 300;
        }

        .gl-hero-sub {
            font-size: 1.05rem;
            color: var(--muted);
            line-height: 1.75;
            font-weight: 400;
            max-width: 520px;
            margin-bottom: 48px;
        }

        /* Search bar */
        .gl-search-wrap {
            position: relative;
            max-width: 480px;
        }

        .gl-search {
            width: 100%;
            padding: 18px 52px 18px 24px;
            background: white;
            border: 1.5px solid var(--border);
            border-radius: 12px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.95rem;
            color: var(--ink);
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 24px rgba(164,113,73,0.06);
        }

        .gl-search:focus {
            border-color: var(--gold);
            box-shadow: 0 8px 32px rgba(164,113,73,0.12);
        }

        .gl-search-icon {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gold);
            pointer-events: none;
        }

        .gl-search-count {
            font-family: 'Syne', sans-serif;
            font-size: 0.78rem;
            letter-spacing: 0.1em;
            color: var(--muted);
            margin-top: 12px;
            text-transform: uppercase;
        }

        /* Hero image mosaic */
        .gl-hero-mosaic {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 200px 160px 200px;
            gap: 12px;
        }

        .gl-mosaic-img {
            overflow: hidden;
            border-radius: 12px;
            position: relative;
        }

        .gl-mosaic-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
        }

        .gl-mosaic-img:hover img { transform: scale(1.06); }

        .gl-mosaic-img.span2 { grid-column: span 2; }

        .gl-mosaic-label {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(8px);
            font-family: 'Syne', sans-serif;
            font-size: 0.65rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--gold);
            padding: 5px 10px;
            font-weight: 700;
        }

        /* Alpha nav strip */
        .gl-alpha-strip {
            background: white;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            position: relative;
            z-index: 90;
            padding: 0;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .gl-alpha-strip::-webkit-scrollbar { display: none; }

        .gl-alpha-inner {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: stretch;
            gap: 0;
        }

        .gl-alpha-btn {
            flex-shrink: 0;
            padding: 14px 16px;
            border: none;
            background: transparent;
            font-family: 'Syne', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            color: var(--muted);
            cursor: pointer;
            transition: all 0.25s ease;
            position: relative;
            border-right: 1px solid var(--border);
        }

        .gl-alpha-btn::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .gl-alpha-btn:hover, .gl-alpha-btn.active {
            color: var(--gold);
            background: rgba(164,113,73,0.04);
        }

        .gl-alpha-btn:hover::after, .gl-alpha-btn.active::after {
            transform: scaleX(1);
        }

        /* ── MAIN LAYOUT ── */
        .gl-body {
            background: #ffffff;
        }

        .gl-layout {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 200px 1fr 300px;
            gap: 80px;
            padding: 100px 0 160px;
            align-items: start;
        }

        /* Left sticky nav */
        .gl-sidenav {
            position: sticky;
            top: 130px;
            height: fit-content;
        }

        .gl-sidenav-label {
            font-family: 'Syne', sans-serif;
            font-size: 0.65rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .gl-sidenav ul {
            list-style: none;
            border-left: 1.5px solid var(--border);
        }

        .gl-sidenav a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 13px 16px;
            font-family: 'Syne', sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--muted);
            text-decoration: none;
            border-left: 2px solid transparent;
            margin-left: -1.5px;
            transition: all 0.3s ease;
            letter-spacing: 0.04em;
        }

        .gl-sidenav a .count {
            font-size: 0.65rem;
            font-family: 'Manrope', sans-serif;
            font-weight: 600;
            background: var(--gold-pale);
            color: var(--gold);
            padding: 1px 6px;
            border-radius: 20px;
        }

        .gl-sidenav a:hover, .gl-sidenav a.active {
            color: var(--gold);
            border-left-color: var(--gold);
            background: rgba(164,113,73,0.04);
        }

        /* ── GLOSSARY CONTENT ── */
        .gl-content {
            min-width: 0;
        }

        .gl-section {
            margin-bottom: 120px;
            scroll-margin-top: 160px;
        }

        .gl-letter-header {
            display: flex;
            align-items: baseline;
            gap: 24px;
            margin-bottom: 56px;
            padding-bottom: 28px;
            border-bottom: 1.5px solid var(--border);
            position: relative;
        }

        .gl-letter-char {
            font-family: 'Syne', sans-serif;
            font-size: 7rem;
            font-weight: 800;
            font-style: normal;
            color: var(--gold-pale);
            line-height: 1;
            flex-shrink: 0;
        }

        .gl-letter-meta {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .gl-letter-title {
            font-family: 'Syne', sans-serif;
            font-size: 0.65rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 800;
        }

        .gl-letter-count {
            font-family: 'Manrope', sans-serif;
            font-size: 0.9rem;
            color: var(--muted);
            font-weight: 400;
        }

        /* Term cards */
        .gl-terms {
            display: grid;
            gap: 20px;
        }

        .gl-term-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 36px 40px;
            position: relative;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
            overflow: hidden;
        }

        .gl-term-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gold);
            transform: scaleY(0);
            transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
        }

        .gl-term-card:hover {
            border-color: var(--gold-light);
            box-shadow: 0 12px 40px rgba(164,113,73,0.10);
            transform: translateX(4px);
        }

        .gl-term-card:hover::before { transform: scaleY(1); }

        .gl-term-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: nowrap;
        }

        .gl-term-top .gl-term-name {
            flex: 1 1 auto;
            min-width: 0;
        }

        .gl-term-name {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -0.02em;
        }

        .gl-term-type {
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 700;
            background: var(--gold-pale);
            padding: 4px 12px;
            border-radius: 20px;
            flex-shrink: 0;
        }

        .gl-term-def {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--muted);
            margin-top: 16px;
            font-weight: 400;
        }

        .gl-term-arrow {
            position: absolute;
            right: 20px;
            bottom: 20px;
            color: var(--gold-pale);
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .gl-term-card:hover .gl-term-arrow {
            color: var(--gold);
            transform: translateX(3px);
        }

        /* Featured cards with image */
        .gl-term-card.has-img {
            padding: 0;
            display: grid;
            grid-template-columns: 180px 1fr;
        }

        .gl-term-card.has-img .gl-term-img {
            overflow: hidden;
            position: relative;
        }

        .gl-term-card.has-img .gl-term-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
        }

        .gl-term-card.has-img:hover .gl-term-img img { transform: scale(1.07); }

        .gl-term-card.has-img .gl-term-body {
            padding: 36px 40px;
        }

        /* Spotlight card (base) */
        .gl-spotlight {
            background: var(--cream-dark);
            border: 1px solid rgba(164,113,73,0.22);
            color: var(--ink);
            margin-bottom: 16px;
            padding: 0;
            overflow: hidden;
            position: relative;
        }

        .gl-spotlight::before { display: none; }

        .gl-spotlight-img {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .gl-spotlight-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.22;
        }

        .gl-spotlight-body {
            position: relative;
            z-index: 1;
            padding: 60px 52px;
        }

        .gl-spotlight-tag {
            font-family: 'Syne', sans-serif;
            font-size: 0.65rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 800;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .gl-spotlight-tag::before {
            content: '';
            display: block;
            width: 24px;
            height: 1px;
            background: var(--gold);
        }

        .gl-spotlight .gl-term-name {
            color: var(--ink);
            font-size: 1.8rem;
        }

        .gl-spotlight .gl-term-def {
            color: var(--ink-soft);
            margin-top: 14px;
        }

        /* Divider between letters */
        .gl-divider {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 40px 0 80px;
            opacity: 0.25;
        }

        .gl-divider span { flex: 1; height: 1px; background: var(--gold); }
        .gl-divider svg { color: var(--gold); width: 12px; height: 12px; }

        /* "Did you know" callout */
        .gl-callout {
            background: linear-gradient(135deg, var(--cream-dark), white);
            border-left: 3px solid var(--gold);
            border-radius: 0 16px 16px 0;
            padding: 32px 36px;
            margin: 20px 0;
            position: relative;
        }

        .gl-callout-tag {
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 800;
            margin-bottom: 10px;
        }

        .gl-callout p {
            font-family: 'Manrope', sans-serif;
            font-size: 0.97rem;
            color: var(--ink-soft);
            line-height: 1.7;
            font-style: normal;
            font-weight: 500;
        }

        /* ── RIGHT SIDEBAR ── */
        .gl-sidebar {
            position: sticky;
            top: 130px;
            height: fit-content;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        /* Video card */
        .gl-video-card {
            position: relative;
            overflow: hidden;
            background: var(--ink);
            border-radius: 16px;
            aspect-ratio: 9/14;
        }

        .gl-video-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.75;
        }

        .gl-video-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26,18,9,0.90) 0%, rgba(26,18,9,0.30) 50%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 28px 24px;
        }

        .gl-video-eyebrow {
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold-light);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .gl-video-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .gl-video-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Syne', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: white;
            text-decoration: none;
            background: var(--gold);
            padding: 12px 20px;
            border-radius: 40px;
            transition: all 0.35s ease;
            cursor: pointer;
            border: none;
        }

        .gl-video-btn:hover { background: var(--gold-light); }

        .gl-play-indicator {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gl-play-indicator svg { color: white; width: 16px; height: 16px; }

        /* Sidebar CTA box */
        .gl-sidebar-cta {
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px 24px;
        }

        .gl-sidebar-cta-tag {
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 800;
            margin-bottom: 14px;
        }

        .gl-sidebar-cta h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .gl-sidebar-cta p {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.65;
            margin-bottom: 20px;
        }

        .gl-sidebar-cta .btn-gold {
            display: block;
            text-align: center;
            padding: 13px 20px;
            background: var(--gold);
            color: white;
            font-family: 'Syne', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .gl-sidebar-cta .btn-gold:hover { background: var(--ink); }

        /* Sidebar mini-gallery */
        .gl-sidebar-gallery {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .gl-sidebar-gallery-item {
            overflow: hidden;
            aspect-ratio: 1;
            border-radius: 10px;
            position: relative;
        }

        .gl-sidebar-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gl-sidebar-gallery-item:hover img { transform: scale(1.08); }

        /* ── CTA SECTION ── */
        .gl-cta-section {
            background:
                radial-gradient(ellipse 60% 50% at 80% 20%, rgba(164,113,73,0.12), transparent 60%),
                linear-gradient(180deg, #FBF6ED 0%, #F0E2C8 100%);
            border-top: 1px solid rgba(164,113,73,0.18);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .gl-cta-bg-text {
            position: absolute;
            bottom: -5%;
            right: -2%;
            font-family: 'Syne', sans-serif;
            font-size: clamp(120px, 18vw, 280px);
            font-weight: 800;
            font-style: normal;
            color: transparent;
            -webkit-text-stroke: 1px rgba(164,113,73,0.12);
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }

        .gl-cta-inner {
            position: relative;
            z-index: 1;
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .gl-cta-eyebrow {
            font-family: 'Syne', sans-serif;
            font-size: 0.65rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .gl-cta-h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2rem, 5vw, 3.4rem);
            font-weight: 800;
            color: var(--ink);
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
        }

        .gl-cta-h2 em { font-style: normal; color: var(--gold); font-weight: 300; }

        .gl-cta-p {
            font-size: 1rem;
            color: var(--ink-soft);
            line-height: 1.75;
            margin-bottom: 36px;
        }

        .gl-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 40px;
            background: var(--gold);
            color: white;
            font-family: 'Syne', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
        }

        .gl-cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

        .gl-cta-image {
            position: relative;
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
        }

        .gl-cta-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gl-cta-image-frame {
            position: absolute;
            inset: 16px;
            border: 1px solid rgba(164,113,73,0.3);
            pointer-events: none;
        }

        /* ── POPUP (retain existing) ── */
        .popupOverlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(26,18,9,0.55);
            backdrop-filter: blur(12px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .popupOverlay[style*="display: flex"] { display: flex !important; }

        .popup-container {
            background: white;
            width: 90%;
            max-width: 540px;
            border-radius: 20px;
            position: relative;
            box-shadow: 0 40px 100px rgba(0,0,0,0.25);
            animation: popupIn 0.45s cubic-bezier(0.23,1,0.32,1);
            overflow: hidden;
        }

        @keyframes popupIn {
            from { opacity: 0; transform: scale(0.93) translateY(24px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        .popup-header {
            background: linear-gradient(135deg, var(--gold) 0%, #8B5A2B 100%);
            padding: 32px 36px 24px;
            border-radius: 20px 20px 0 0;
        }

        .popup-header h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.7rem;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .popup-header p {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.6;
        }

        .popup-body { padding: 32px 36px; }

        .popup-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.1);
            border: none;
            color: rgba(255,255,255,0.7);
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .popup-close:hover { background: rgba(255,255,255,0.2); color: white; }

        #contactForm {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        #contactForm input,
        #contactForm textarea {
            width: 100%;
            padding: 13px 16px;
            border: 1px solid var(--border);
            border-radius: 10px;
            background: var(--cream);
            font-family: 'Manrope', sans-serif;
            font-size: 0.9rem;
            color: var(--ink);
            outline: none;
            transition: border-color 0.3s ease;
        }

        #contactForm input:focus,
        #contactForm textarea:focus { border-color: var(--gold); }

        #contactForm button[type="submit"] {
            padding: 14px;
            background: var(--gold);
            color: white;
            border: none;
            border-radius: 40px;
            font-family: 'Syne', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        #contactForm button[type="submit"]:hover { background: var(--ink); }

        .popup-thank-you {
            text-align: center;
            padding: 40px;
        }

        .popup-thank-you h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 12px;
        }

        /* Search highlight */
        mark {
            background: rgba(164,113,73,0.2);
            color: var(--gold);
            border-radius: 2px;
        }

        /* Empty search state */
        .gl-no-results {
            text-align: center;
            padding: 80px 0;
            display: none;
        }

        .gl-no-results h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--muted);
            font-style: italic;
            margin-bottom: 12px;
        }

        .gl-no-results p { color: var(--muted); font-size: 0.9rem; }

        /* Scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1100px) {
            .gl-layout { grid-template-columns: 180px 1fr 260px; gap: 40px; }
            .gl-hero-inner { grid-template-columns: 1fr 340px; gap: 50px; }
        }

        @media (max-width: 900px) {
            .gl-hero-inner { grid-template-columns: 1fr; }
            .gl-hero-mosaic { display: none; }
            .gl-layout { grid-template-columns: 1fr; }
            .gl-sidenav { display: none; }
            .gl-term-card.has-img { grid-template-columns: 140px 1fr; }
            .gl-cta-inner { grid-template-columns: 1fr; }
            .gl-cta-image { display: none; }
        }

        @media (max-width: 600px) {
            .gl-hero h1 { font-size: 3rem; }
            .gl-term-card.has-img { grid-template-columns: 1fr; }
            .gl-term-card.has-img .gl-term-img { height: 180px; }
            .gl-spotlight-body { padding: 32px 24px; }
        }

        /* ══════════════════════════════════════
           LUXURY MICRO-INTERACTIONS + PREMIUM SVG
           ══════════════════════════════════════ */

        /* Keep the native pointer/caret visible until a working custom cursor is implemented. */
        body { cursor: auto; }
        a, button, input, textarea, [role="button"], .trigger-popup { cursor: auto; }
        .gl-search,
        #contactForm input,
        #contactForm textarea {
            caret-color: var(--gold);
        }
        .lux-cursor-dot {
            position: fixed;
            width: 6px; height: 6px;
            background: var(--gold);
            border-radius: 50%;
            left: -100px; top: -100px;
            pointer-events: none;
            z-index: 999999;
            transform: translate(-50%,-50%);
            transition: width .25s ease, height .25s ease;
        }
        .lux-cursor-ring {
            position: fixed;
            width: 30px; height: 30px;
            border: 1.5px solid rgba(164,113,73,.5);
            border-radius: 50%;
            left: -100px; top: -100px;
            pointer-events: none;
            z-index: 999998;
            transform: translate(-50%,-50%);
            transition: width .4s cubic-bezier(.23,1,.32,1),
                        height .4s cubic-bezier(.23,1,.32,1),
                        border-color .3s ease,
                        opacity .3s ease;
        }
        .lux-cursor-ring.lux-hovering {
            width: 52px; height: 52px;
            border-color: var(--gold);
            opacity: .45;
        }
        .lux-cursor-dot.lux-hovering { width: 9px; height: 9px; }

        /* Card shimmer sweep */
        .gl-shimmer-layer {
            position: absolute;
            inset: 0;
            background: linear-gradient(108deg, transparent 34%, rgba(201,168,130,.18) 50%, transparent 66%);
            transform: translateX(-200%);
            pointer-events: none;
            z-index: 3;
            border-radius: inherit;
        }
        .gl-term-card:hover .gl-shimmer-layer {
            animation: luxShimmer .7s ease forwards;
        }
        @keyframes luxShimmer { to { transform: translateX(260%); } }

        /* SVG corner ornament on plain cards */
        .lux-corner-svg {
            position: absolute;
            top: 12px; right: 14px;
            opacity: 0;
            transform: scale(.6) rotate(-18deg);
            transition: opacity .4s ease, transform .4s cubic-bezier(.23,1,.32,1);
            pointer-events: none;
            z-index: 4;
        }
        .gl-term-card:hover .lux-corner-svg { opacity: .5; transform: scale(1) rotate(0deg); }
        .gl-spotlight .lux-corner-svg, .has-img .lux-corner-svg { display: none; }

        /* Alpha button ripple */
        .gl-alpha-btn { position: relative; overflow: hidden; }
        .lux-ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(164,113,73,.2);
            transform: scale(0);
            animation: luxRipple .55s ease-out forwards;
            pointer-events: none;
        }
        @keyframes luxRipple { to { transform: scale(5); opacity: 0; } }

        /* Callout animated border beam */
        .gl-callout { overflow: hidden; }
        .gl-callout::after {
            content: '';
            position: absolute;
            left: 0; top: -40%;
            width: 3px; height: 40%;
            background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
            animation: calloutBeam 3.2s ease-in-out infinite;
        }
        @keyframes calloutBeam {
            0%   { top: -40%; opacity: 0; }
            15%  { opacity: 1; }
            85%  { opacity: 1; }
            100% { top: 130%; opacity: 0; }
        }

        /* Floating hero SVG ornaments */
        .lux-float-ornament {
            position: absolute;
            pointer-events: none;
            z-index: 0;
        }
        .lux-float-ornament:nth-of-type(1) { animation: luxFloat 7s ease-in-out infinite; }
        .lux-float-ornament:nth-of-type(2) { animation: luxFloat 5.5s ease-in-out infinite reverse; animation-delay: -2.2s; }
        .lux-float-ornament:nth-of-type(3) { animation: luxFloat 9s ease-in-out infinite; animation-delay: -4.5s; }
        @keyframes luxFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50%       { transform: translateY(-16px) rotate(7deg); }
        }

        /* Hero line art SVG */
        .lux-line-art {
            position: absolute;
            pointer-events: none;
            z-index: 0;
            opacity: .11;
        }

        /* Spotlight glow pulse overlay */
        .lux-spotlight-glow {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 55% 65% at 50% 50%, rgba(164,113,73,.07) 0%, transparent 70%);
            pointer-events: none;
            z-index: 1;
            animation: spotGlow 4s ease-in-out infinite;
        }
        @keyframes spotGlow { 0%,100%{opacity:.55;} 50%{opacity:1;} }

        /* Progress bar gold glow */
        .progress-bar {
            background: linear-gradient(90deg, var(--gold), var(--gold-light)) !important;
            box-shadow: 0 0 10px rgba(164,113,73,.45) !important;
        }

        /* Search wrap animated underline */
        .gl-search-wrap::after {
            content: '';
            position: absolute;
            bottom: -2px; left: 50%;
            width: 0; height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            transform: translateX(-50%);
            transition: width .4s cubic-bezier(.23,1,.32,1);
            pointer-events: none;
            border-radius: 1px;
        }
        .gl-search-wrap:focus-within::after { width: 78%; }

        /* Ornate divider override */
        .gl-divider { opacity: 1; gap: 0; }
        .gl-divider .lux-ornate-div { flex-shrink: 0; color: var(--gold); }
        .gl-divider span { opacity: .18; }

        /* Particle burst */
        .lux-particle {
            position: fixed;
            width: 4px; height: 4px;
            border-radius: 50%;
            background: var(--gold-light);
            pointer-events: none;
            z-index: 99990;
        }

        /* CTA image frame pulse */
        .gl-cta-image-frame { animation: framePulse 4s ease-in-out infinite; }
        @keyframes framePulse { 0%,100%{opacity:.25;} 50%{opacity:.6;} }

        /* Sidebar gallery tint */
        .gl-sidebar-gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(164,113,73,.14), transparent);
            opacity: 0;
            transition: opacity .4s ease;
            border-radius: 10px;
        }
        .gl-sidebar-gallery-item:hover::after { opacity: 1; }

        /* Hero tag line expand */
        .gl-hero-tag::before {
            animation: tagExpand 1.2s cubic-bezier(.23,1,.32,1) .4s both;
        }
        @keyframes tagExpand { from{width:0;opacity:0;} to{width:36px;opacity:1;} }

        /* Letter char morph */
        .gl-section.visible .gl-letter-char {
            animation: letterAppear .9s cubic-bezier(.23,1,.32,1) forwards;
        }
        @keyframes letterAppear {
            from { color: rgba(237,224,208,.3); }
            to   { color: var(--gold-pale); }
        }

        /* Letter header accent SVG */
        .gl-letter-accent {
            position: absolute;
            right: 0; bottom: -1px;
            opacity: .18;
        }

        /* Magnetic button base */
        .gl-cta-btn, .gl-video-btn { will-change: transform; }

        /* Card preserve-3d */
        .gl-term-card { transform-style: preserve-3d; }

        /* CTA SVG ornaments */
        .lux-cta-ornament {
            position: absolute;
            pointer-events: none;
            z-index: 0;
        }

        .gl-hero-tools {
            display: flex;
            align-items: stretch;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 28px;
        }

        .gl-hero-stat {
            min-width: 140px;
            padding: 18px 20px;
            background: rgba(255,255,255,0.72);
            border: 1px solid rgba(164,113,73,0.16);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            box-shadow: 0 14px 36px rgba(164,113,73,0.08);
        }

        .gl-hero-stat-value {
            display: block;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--ink);
            line-height: 1;
        }

        .gl-hero-stat-label {
            display: block;
            margin-top: 8px;
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .gl-hero-jump {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 24px;
            min-height: 100%;
            border-radius: 16px;
            background: var(--ink);
            color: white;
            text-decoration: none;
            font-family: 'Syne', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .gl-hero-jump:hover,
        .gl-hero-jump:focus-visible {
            background: var(--gold);
            transform: translateY(-2px);
        }

        .gl-alpha-btn[disabled] {
            color: rgba(122,104,85,0.38);
            cursor: not-allowed;
            background: transparent;
        }

        .gl-alpha-btn[disabled]::after {
            display: none;
        }

        .gl-content {
            position: relative;
        }

        .gl-term-card,
        .gl-callout {
            isolation: isolate;
        }

        .gl-term-card {
            padding-top: 44px;
            background:
                linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(253,250,245,0.92) 100%);
        }

        .gl-term-card.has-img,
        .gl-spotlight {
            padding-top: 0;
        }

        .gl-term-card:focus-visible {
            outline: 2px solid rgba(164,113,73,0.5);
            outline-offset: 4px;
        }

        .gl-term-card.match {
            border-color: rgba(164,113,73,0.72);
            box-shadow: 0 18px 46px rgba(164,113,73,0.16);
        }

        .gl-term-name {
            max-width: 100%;
        }

        .gl-term-def {
            color: #5f5040;
            max-width: 62ch;
        }

        .gl-term-index {
            position: absolute;
            top: 16px;
            left: 20px;
            padding: 5px 10px;
            border-radius: 999px;
            background: var(--gold-pale);
            color: var(--gold);
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            z-index: 2;
        }

        .gl-term-link {
            position: absolute;
            top: 18px;
            right: 20px;
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(164,113,73,0.08);
            color: var(--gold);
            text-decoration: none;
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            opacity: 0;
            transform: translateY(-4px);
            transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
            z-index: 3;
        }

        .gl-term-card:hover .gl-term-link,
        .gl-term-card:focus-visible .gl-term-link {
            opacity: 1;
            transform: translateY(0);
        }

        .gl-term-link:hover,
        .gl-term-link:focus-visible {
            opacity: 1;
            background: rgba(164,113,73,0.16);
        }

        .gl-callout {
            border: 1px solid rgba(164,113,73,0.14);
            box-shadow: 0 16px 34px rgba(164,113,73,0.08);
        }

        .gl-sidebar-cta,
        .gl-video-card,
        .gl-sidebar-gallery {
            box-shadow: 0 18px 40px rgba(164,113,73,0.08);
        }

        @media (max-width: 900px) {
            .gl-hero-tools {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .gl-hero-jump {
                min-height: 56px;
                grid-column: 1 / -1;
            }

            .gl-alpha-strip {
                backdrop-filter: blur(12px);
            }

            .gl-content {
                padding-top: 20px;
            }
        }

        /* ════════════════════════════════════════
           PREMIUM HERO REDESIGN · v2
           ════════════════════════════════════════ */

        .gl-hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 100px 0 0;
            background:
                radial-gradient(ellipse 60% 50% at 12% 18%, rgba(201,168,130,0.18) 0%, transparent 60%),
                radial-gradient(ellipse 50% 60% at 88% 75%, rgba(164,113,73,0.10) 0%, transparent 60%),
                linear-gradient(180deg, #FDFAF5 0%, #F8F1E5 100%);
        }

        /* SVG ornaments — premium decorative layer */
        .lux-orn {
            position: absolute;
            color: var(--gold);
            pointer-events: none;
            z-index: 0;
        }

        .lux-orn-tl {
            top: 110px;
            left: -60px;
            width: 280px;
            height: 280px;
            opacity: 0.32;
            animation: luxRotate 60s linear infinite;
        }

        .lux-orn-br {
            bottom: 80px;
            right: 4%;
            width: 200px;
            height: 200px;
            opacity: 0.22;
            animation: luxFloat 9s ease-in-out infinite;
        }

        @keyframes luxRotate {
            to { transform: rotate(360deg); }
        }

        .lux-filigree {
            position: absolute;
            color: var(--gold);
            pointer-events: none;
            z-index: 0;
            opacity: 0.5;
        }

        .lux-filigree-mid {
            bottom: 110px;
            left: 4%;
            width: 280px;
            height: 40px;
            opacity: 0.4;
            animation: filigreeGlow 5s ease-in-out infinite;
        }

        @keyframes filigreeGlow {
            0%, 100% { opacity: 0.35; }
            50% { opacity: 0.7; }
        }

        /* Hero inner grid */
        .gl-hero-inner {
            width: 90%;
            max-width: 1240px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
            gap: 60px;
            padding: 10px 0 30px;
            align-items: center;
        }

        .gl-hero-left { min-width: 0; }
        .gl-hero-artifact { min-width: 0; }

        /* Tag */
        .gl-hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(10px);
            padding: 9px 18px 9px 14px;
            border-radius: 999px;
            border: 1px solid rgba(164,113,73,0.18);
            box-shadow: 0 6px 20px rgba(164,113,73,0.06);
            font-size: 0.7rem;
        }

        .gl-hero-tag::before { display: none; }

        .lux-tag-dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 0 3px rgba(164,113,73,0.18);
            animation: pulseDot 2.4s ease-in-out infinite;
        }

        @keyframes pulseDot {
            0%, 100% { box-shadow: 0 0 0 3px rgba(164,113,73,0.18); }
            50% { box-shadow: 0 0 0 8px rgba(164,113,73,0.05); }
        }

        .lux-tag-meta {
            font-family: 'Manrope', sans-serif;
            font-weight: 500;
            letter-spacing: 0.04em;
            color: var(--muted);
            text-transform: none;
            padding-left: 12px;
            border-left: 1px solid rgba(164,113,73,0.25);
        }

        /* Title with kinetic word reveal */
        .gl-hero-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2.2rem, 3.6vw, 3.4rem);
            font-weight: 800;
            line-height: 1;
            color: var(--ink);
            letter-spacing: -0.035em;
            margin: 18px 0 18px;
            display: flex;
            flex-direction: column;
            gap: 0;
            max-width: 100%;
        }

        .lux-line {
            display: flex;
            align-items: center;
            gap: 0.3em;
            flex-wrap: wrap;
        }

        .lux-word {
            display: inline-block;
            position: relative;
            opacity: 0;
            transform: translateY(40%);
            animation: wordRise 1s cubic-bezier(.23,1,.32,1) forwards;
        }

        .lux-word:nth-child(1) { animation-delay: 0.15s; }
        .lux-word:nth-child(2) { animation-delay: 0.3s; }
        .lux-line:nth-child(2) .lux-word { animation-delay: 0.5s; }

        @keyframes wordRise {
            to { opacity: 1; transform: translateY(0); }
        }

        .lux-italic {
            font-family: 'Syne', sans-serif;
            font-style: italic;
            font-weight: 400;
            color: var(--gold);
            background: linear-gradient(135deg, var(--gold) 0%, #8B5A2B 50%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .lux-flourish {
            width: 110px;
            height: 38px;
            color: var(--gold);
            margin-left: 14px;
            opacity: 0;
            animation: flourishDraw 1.2s ease 0.9s forwards;
        }

        .lux-flourish path,
        .lux-flourish circle {
            stroke-dasharray: 200;
            stroke-dashoffset: 200;
            animation: drawPath 1.4s ease 1s forwards;
        }

        @keyframes flourishDraw {
            to { opacity: 1; }
        }

        @keyframes drawPath {
            to { stroke-dashoffset: 0; }
        }

        /* Subtitle */
        .gl-hero-sub {
            font-family: 'Manrope', sans-serif;
            font-size: 0.98rem;
            color: var(--ink-soft);
            line-height: 1.6;
            font-weight: 400;
            max-width: 520px;
            margin-bottom: 22px;
            opacity: 0;
            animation: fadeUp 1s ease 0.7s forwards;
        }

        .gl-hero-sub strong {
            color: var(--ink);
            font-weight: 700;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* Search — premium */
        .gl-search-wrap {
            position: relative;
            max-width: 520px;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeUp 1s ease 0.85s forwards;
        }

        .gl-search {
            padding: 15px 80px 15px 50px;
            border-radius: 16px;
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(12px);
            border: 1.5px solid rgba(164,113,73,0.18);
            box-shadow:
                0 4px 16px rgba(164,113,73,0.05),
                inset 0 1px 0 rgba(255,255,255,0.8);
            transition: all 0.4s cubic-bezier(.23,1,.32,1);
        }

        .gl-search:focus {
            background: white;
            border-color: var(--gold);
            box-shadow:
                0 12px 36px rgba(164,113,73,0.16),
                0 0 0 4px rgba(164,113,73,0.08);
            transform: translateY(-1px);
        }

        .gl-search-icon {
            left: 22px;
            right: auto;
            color: var(--gold);
            transition: transform 0.4s ease;
        }

        .gl-search-wrap:focus-within .gl-search-icon {
            transform: translateY(-50%) scale(1.1);
        }

        .lux-kbd {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'Syne', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--muted);
            background: rgba(164,113,73,0.08);
            border: 1px solid rgba(164,113,73,0.18);
            padding: 5px 10px;
            border-radius: 6px;
            pointer-events: none;
        }

        .gl-search-count {
            margin-top: 10px;
            margin-left: 2px;
        }

        /* Meta row */
        .gl-hero-meta-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 22px;
            padding: 14px 0;
            border-top: 1px solid rgba(164,113,73,0.15);
            border-bottom: 1px solid rgba(164,113,73,0.15);
            opacity: 0;
            animation: fadeUp 1s ease 1s forwards;
        }

        .lux-meta-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--ink);
        }

        .lux-meta-item svg {
            width: 22px;
            height: 22px;
            color: var(--gold);
            flex-shrink: 0;
        }

        .lux-meta-item span {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .lux-meta-item b {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.15rem;
            font-weight: 800;
            line-height: 1;
            color: var(--ink);
            letter-spacing: -0.02em;
        }

        .lux-meta-item i {
            font-family: 'Syne', sans-serif;
            font-style: normal;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .lux-meta-divider {
            width: 1px;
            height: 32px;
            background: linear-gradient(to bottom, transparent, rgba(164,113,73,0.3), transparent);
        }

        /* Tools */
        .gl-hero-tools {
            opacity: 0;
            animation: fadeUp 1s ease 1.1s forwards;
            display: flex;
            align-items: center;
            gap: 18px;
            margin-top: 0;
        }

        .gl-hero-jump {
            position: relative;
            background: linear-gradient(135deg, var(--gold) 0%, #8B5A2B 100%);
            color: white;
            padding: 14px 26px;
            font-size: 0.74rem;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            overflow: hidden;
            isolation: isolate;
            box-shadow: 0 10px 24px rgba(164,113,73,0.28);
        }

        .gl-hero-jump::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--gold) 0%, #8B5A2B 100%);
            border-radius: inherit;
            transform: translateY(102%);
            transition: transform 0.5s cubic-bezier(.23,1,.32,1);
            z-index: -1;
        }

        .gl-hero-jump:hover::before {
            transform: translateY(0);
        }

        .gl-hero-jump:hover {
            background: transparent;
            transform: translateY(-2px);
            box-shadow: 0 14px 30px rgba(164,113,73,0.3);
        }

        .gl-hero-jump svg {
            transition: transform 0.4s cubic-bezier(.23,1,.32,1);
        }

        .gl-hero-jump:hover svg { transform: translateX(4px); }

        .gl-hero-ghost {
            font-family: 'Syne', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--ink);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
        }

        .gl-hero-ghost em {
            font-style: italic;
            color: var(--gold);
            font-family: 'Syne', sans-serif;
            margin-left: 4px;
        }

        .gl-hero-ghost::after {
            content: '';
            position: absolute;
            left: 0; right: 0; bottom: 0;
            height: 1px;
            background: var(--ink);
            transform: scaleX(0.4);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(.23,1,.32,1);
        }

        .gl-hero-ghost:hover::after { transform: scaleX(1); }

        /* ── ARTIFACT PANEL ── */
        .gl-hero-artifact {
            position: relative;
            opacity: 0;
            animation: fadeUp 1.2s ease 0.6s forwards;
        }

        .lux-artifact-frame {
            position: relative;
            background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(253,250,245,0.75));
            backdrop-filter: blur(14px);
            border: 1px solid rgba(164,113,73,0.18);
            border-radius: 20px;
            padding: 22px 22px 18px;
            box-shadow:
                0 30px 80px rgba(164,113,73,0.14),
                0 8px 24px rgba(26,18,9,0.06),
                inset 0 1px 0 rgba(255,255,255,0.9);
        }

        .lux-artifact-corner {
            position: absolute;
            width: 22px; height: 22px;
            border: 1.5px solid var(--gold);
        }
        .lux-corner-tl { top: -1px; left: -1px; border-right: none; border-bottom: none; border-radius: 24px 0 0 0; }
        .lux-corner-tr { top: -1px; right: -1px; border-left: none; border-bottom: none; border-radius: 0 24px 0 0; }
        .lux-corner-bl { bottom: -1px; left: -1px; border-right: none; border-top: none; border-radius: 0 0 0 24px; }
        .lux-corner-br { bottom: -1px; right: -1px; border-left: none; border-top: none; border-radius: 0 0 24px 0; }

        .lux-artifact-eyebrow {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Syne', sans-serif;
            font-size: 0.6rem;
            font-weight: 800;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .lux-eyebrow-mark {
            width: 8px; height: 8px;
            background: var(--gold);
            transform: rotate(45deg);
        }

        .lux-artifact-stage {
            position: relative;
            aspect-ratio: 16/10;
            border-radius: 14px;
            overflow: hidden;
            transform-style: preserve-3d;
            perspective: 1200px;
            transition: transform 0.4s cubic-bezier(.23,1,.32,1);
        }

        .lux-artifact-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(.23,1,.32,1), filter 0.6s ease;
        }

        .lux-artifact-stage:hover .lux-artifact-img {
            transform: scale(1.06);
            filter: saturate(1.15) contrast(1.05);
        }

        .lux-artifact-overlay {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .lux-artifact-caption {
            position: absolute;
            left: 18px;
            bottom: 18px;
            display: flex;
            align-items: flex-end;
            gap: 14px;
            color: white;
            z-index: 2;
        }

        .lux-cap-no {
            font-family: 'Syne', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1;
            color: rgba(255,255,255,0.95);
            letter-spacing: -0.04em;
            -webkit-text-stroke: 0;
        }

        .lux-cap-text {
            font-family: 'Manrope', sans-serif;
            font-size: 0.78rem;
            line-height: 1.4;
            color: rgba(255,255,255,0.85);
            font-weight: 500;
        }

        .lux-cap-text i {
            font-family: 'Syne', sans-serif;
            font-style: italic;
            font-size: 0.7rem;
            color: var(--gold-light);
        }

        /* Pin micro-interactions */
        .lux-pin {
            position: absolute;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0;
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.6);
            transition: opacity 0.4s ease, transform 0.4s cubic-bezier(.23,1,.32,1);
            pointer-events: none;
        }

        .lux-artifact-stage:hover .lux-pin {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .lux-artifact-stage:hover .lux-pin-2 { transition-delay: 0.12s; }

        .lux-pin i {
            display: block;
            width: 12px; height: 12px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 0 4px rgba(255,255,255,0.4), 0 0 0 8px rgba(164,113,73,0.25);
            animation: pinPulse 2s ease-in-out infinite;
        }

        @keyframes pinPulse {
            0%, 100% { box-shadow: 0 0 0 4px rgba(255,255,255,0.4), 0 0 0 8px rgba(164,113,73,0.25); }
            50% { box-shadow: 0 0 0 6px rgba(255,255,255,0.5), 0 0 0 14px rgba(164,113,73,0.05); }
        }

        .lux-pin b {
            font-family: 'Manrope', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--ink);
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(8px);
            padding: 6px 12px;
            border-radius: 20px;
            white-space: nowrap;
            border: 1px solid rgba(164,113,73,0.2);
            box-shadow: 0 6px 14px rgba(26,18,9,0.12);
        }

        /* Thumb strip */
        .lux-artifact-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 6px;
            margin-top: 10px;
        }

        .lux-artifact-thumb {
            position: relative;
            aspect-ratio: 1.4 / 1;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.35s cubic-bezier(.23,1,.32,1);
        }

        .lux-artifact-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, filter 0.4s ease;
            filter: saturate(0.8) brightness(0.9);
        }

        .lux-artifact-thumb span {
            position: absolute;
            bottom: 4px;
            left: 6px;
            font-family: 'Syne', sans-serif;
            font-size: 0.55rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: white;
            text-shadow: 0 1px 4px rgba(0,0,0,0.6);
            opacity: 0;
            transform: translateY(4px);
            transition: all 0.3s ease;
        }

        .lux-artifact-thumb:hover {
            transform: translateY(-3px);
            border-color: rgba(164,113,73,0.4);
        }

        .lux-artifact-thumb:hover img {
            filter: saturate(1.05) brightness(1);
            transform: scale(1.08);
        }

        .lux-artifact-thumb:hover span {
            opacity: 1;
            transform: translateY(0);
        }

        .lux-artifact-thumb.active {
            border-color: var(--gold);
            box-shadow: 0 8px 20px rgba(164,113,73,0.25);
        }

        .lux-artifact-thumb.active img { filter: saturate(1.1) brightness(1); }
        .lux-artifact-thumb.active span { opacity: 1; transform: translateY(0); }

        /* Spec card */
        .lux-spec-card {
            position: absolute;
            bottom: -20px;
            right: -16px;
            background: linear-gradient(160deg, #FFFDF8 0%, #F5EAD3 100%);
            border: 1px solid rgba(164,113,73,0.28);
            color: var(--ink);
            padding: 14px 18px;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(164,113,73,0.22);
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 160px;
            animation: specFloat 6s ease-in-out infinite;
        }

        @keyframes specFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        .lux-spec-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding-bottom: 6px;
            border-bottom: 1px solid rgba(164,113,73,0.18);
        }

        .lux-spec-row:last-child { border-bottom: none; padding-bottom: 0; }

        .lux-spec-row i {
            font-family: 'Syne', sans-serif;
            font-style: normal;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .lux-spec-row b {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--gold);
        }

        /* Marquee */
        .lux-hero-marquee {
            position: relative;
            margin-top: 30px;
            padding: 12px 0;
            border-top: 1px solid rgba(164,113,73,0.18);
            border-bottom: 1px solid rgba(164,113,73,0.18);
            background: rgba(255,255,255,0.4);
            backdrop-filter: blur(8px);
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
        }

        .lux-marquee-track {
            display: flex;
            align-items: center;
            gap: 28px;
            white-space: nowrap;
            animation: marqueeSlide 38s linear infinite;
            width: max-content;
        }

        @keyframes marqueeSlide {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }

        .lux-marquee-track span {
            font-family: 'Syne', sans-serif;
            font-size: 0.95rem;
            font-style: italic;
            font-weight: 400;
            letter-spacing: 0.04em;
            color: var(--ink);
        }

        .lux-marquee-track i {
            font-style: normal;
            color: var(--gold);
            font-size: 1.1rem;
        }

        .lux-hero-marquee:hover .lux-marquee-track {
            animation-play-state: paused;
        }

        /* Override mosaic — hide old, no longer used */
        .gl-hero-mosaic { display: none; }

        /* Responsive — artifact */
        @media (max-width: 1100px) {
            .gl-hero-inner { grid-template-columns: 1fr 380px; gap: 50px; }
            .lux-spec-card { right: 8px; bottom: -20px; min-width: 160px; padding: 14px 18px; }
            .lux-orn-tl { width: 200px; height: 200px; }
        }

        @media (max-width: 900px) {
            .gl-hero-inner { grid-template-columns: 1fr; gap: 50px; }
            .gl-hero-artifact { max-width: 540px; margin: 0 auto; width: 100%; }
            .lux-orn-tl, .lux-orn-br, .lux-filigree-mid { display: none; }
            .gl-hero-meta-row { flex-wrap: wrap; gap: 14px; }
            .lux-meta-divider { display: none; }
            .lux-spec-card { right: 12px; bottom: -16px; }
        }

        @media (max-width: 600px) {
            .gl-hero-tools {
                grid-template-columns: 1fr;
            }

            .gl-hero-tools {
                flex-wrap: wrap;
            }

            .gl-hero-jump {
                width: 100%;
                justify-content: center;
            }

            .gl-hero-stat,
            .gl-hero-jump-old {
                width: 100%;
            }

            .lux-spec-card {
                position: relative;
                right: auto;
                bottom: auto;
                margin-top: 16px;
                width: 100%;
            }

            .lux-flourish { display: none; }
            .gl-search { padding: 18px 70px 18px 50px; font-size: 0.92rem; }
            .lux-kbd { display: none; }
        }

        /* Legacy stat block — hide (replaced by meta-row) */
        .gl-hero-stat { display: none; }

        /* Original 600 query overrides */
        @media (max-width: 600px) {
            .gl-hero-tools--legacy {
                grid-template-columns: 1fr;
            }

            .gl-hero-stat-legacy,
            .gl-hero-jump-legacy {
                width: 100%;
            }

            .gl-term-card {
                padding: 52px 24px 28px;
            }

            .gl-term-card.has-img {
                padding-top: 0;
            }

            .gl-term-top {
                align-items: flex-start;
                flex-direction: column;
            }

            .gl-term-name {
                max-width: 100%;
            }

            .gl-term-link {
                opacity: 1;
                transform: none;
            }
        }

        /* ════════════════════════════════════════
           BODY REDESIGN · v3 (Premium · Editorial)
           ════════════════════════════════════════ */

        /* Alpha strip — refined */
        .gl-alpha-strip {
            background: rgba(253, 250, 245, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-top: 1px solid rgba(164,113,73,0.14);
            border-bottom: 1px solid rgba(164,113,73,0.14);
            box-shadow: 0 4px 20px rgba(164,113,73,0.04);
        }

        .gl-alpha-inner {
            max-width: 1240px;
            position: relative;
        }

        .gl-alpha-inner::before,
        .gl-alpha-inner::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 32px;
            pointer-events: none;
            z-index: 2;
        }

        .gl-alpha-inner::before {
            left: 0;
            background: linear-gradient(90deg, rgba(253,250,245,0.95), transparent);
        }

        .gl-alpha-inner::after {
            right: 0;
            background: linear-gradient(-90deg, rgba(253,250,245,0.95), transparent);
        }

        .gl-alpha-btn {
            padding: 16px 18px;
            font-size: 0.78rem;
            letter-spacing: 0.1em;
            border-right: none;
            min-width: 44px;
        }

        .gl-alpha-btn::before {
            content: '';
            position: absolute;
            inset: 6px;
            border-radius: 8px;
            background: rgba(164,113,73,0.06);
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.3s cubic-bezier(.23,1,.32,1);
            z-index: -1;
        }

        .gl-alpha-btn:hover::before { opacity: 1; transform: scale(1); }

        .gl-alpha-btn.active {
            color: white !important;
            background: transparent !important;
        }

        .gl-alpha-btn.active::before {
            opacity: 1;
            transform: scale(1);
            background: var(--ink);
        }

        .gl-alpha-btn.active::after {
            display: none;
        }

        /* ── BODY · EDITORIAL CANVAS ── */
        .gl-body {
            background: #ffffff;
            position: relative;
        }

        .gl-body::before,
        .gl-body::after { content: none; display: none; }

        .gl-layout {
            width: 94%;
            max-width: 1500px;
            grid-template-columns: 200px minmax(0, 1fr) 300px;
            column-gap: 32px;
            padding: 140px 0 200px;
            position: relative;
            z-index: 1;
            align-items: start;
        }

        /* ── SIDENAV (LEFT) ── */
        .gl-sidenav {
            top: 110px;
            padding: 26px 22px;
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(164,113,73,0.12);
            border-radius: 18px;
            box-shadow: 0 14px 40px rgba(164,113,73,0.06);
        }

        .gl-sidenav-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.6rem;
            margin-bottom: 16px;
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(164,113,73,0.14);
        }

        .gl-sidenav-label::before {
            content: '';
            width: 16px;
            height: 1px;
            background: var(--gold);
        }

        .gl-sidenav ul {
            border-left: 1px solid rgba(164,113,73,0.14);
            padding-left: 0;
        }

        .gl-sidenav a {
            padding: 9px 14px;
            font-size: 0.78rem;
            border-radius: 0 8px 8px 0;
            position: relative;
        }

        .gl-sidenav a::before {
            content: '';
            position: absolute;
            left: -1px;
            top: 50%;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            opacity: 0;
            transform: translate(-50%, -50%) scale(0);
            transition: all 0.3s cubic-bezier(.23,1,.32,1);
        }

        .gl-sidenav a:hover::before,
        .gl-sidenav a.active::before {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .gl-sidenav a .count {
            font-size: 0.62rem;
            min-width: 22px;
            text-align: center;
        }

        .gl-sidenav a:hover {
            transform: translateX(2px);
        }

        /* ── CONTENT (CENTER) ── */
        .gl-content {
            position: relative;
        }

        .gl-section {
            margin-bottom: 180px;
            position: relative;
        }

        /* Massive ghost letter behind section */
        .gl-section::before {
            content: attr(data-letter);
            position: absolute;
            top: -180px;
            right: -80px;
            font-family: 'Syne', sans-serif;
            font-size: clamp(280px, 32vw, 460px);
            font-weight: 800;
            line-height: 0.8;
            color: transparent;
            -webkit-text-stroke: 1px rgba(164,113,73,0.08);
            text-transform: uppercase;
            pointer-events: none;
            user-select: none;
            z-index: 0;
            letter-spacing: -0.05em;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1.2s ease, transform 1.2s cubic-bezier(.23,1,.32,1);
        }

        .gl-section.visible::before {
            opacity: 1;
            transform: translateY(0);
        }

        /* Floating compass mark — removed */
        .gl-section::after { content: none; display: none; }
        .gl-section.visible::after { content: none; display: none; animation: none; }

        @keyframes sectionMarkSpin {
            to { transform: rotate(360deg); }
        }

        .gl-letter-header,
        .gl-terms { position: relative; z-index: 1; }

        /* Letter header — editorial plate */
        .gl-letter-header {
            display: grid;
            grid-template-columns: auto 1fr;
            align-items: center;
            gap: 36px;
            margin-bottom: 80px;
            padding: 0 0 36px;
            border-bottom: none;
            position: relative;
        }

        .gl-letter-header::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            background: linear-gradient(90deg,
                rgba(164,113,73,0.5) 0%,
                rgba(164,113,73,0.1) 50%,
                transparent 100%);
        }

        .gl-letter-header::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 80px;
            height: 5px;
            background: var(--gold);
            border-radius: 2px;
        }

        .gl-letter-char {
            font-family: 'Syne', sans-serif;
            font-size: clamp(7rem, 12vw, 10rem);
            font-weight: 800;
            line-height: 0.78;
            background: linear-gradient(165deg, var(--gold) 0%, #8B5A2B 45%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            letter-spacing: -0.06em;
            margin-left: -8px;
        }

        .gl-letter-char::after {
            content: '';
            position: absolute;
            right: -22px;
            top: 14%;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 0 4px rgba(164,113,73,0.14);
        }

        .gl-letter-meta {
            gap: 14px;
            padding-top: 14px;
        }

        .gl-letter-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: -0.035em;
            text-transform: none;
            line-height: 1;
        }

        .gl-letter-title::before {
            content: '— ';
            color: var(--gold);
            font-weight: 400;
        }

        .gl-letter-count {
            display: flex;
            align-items: center;
            gap: 14px;
            font-family: 'Syne', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .gl-letter-count::before {
            content: '';
            width: 36px;
            height: 1px;
            background: var(--gold);
        }

        .gl-letter-count::after {
            content: 'Read ↓';
            margin-left: auto;
            font-size: 0.68rem;
            color: var(--gold);
            opacity: 0.7;
            animation: bounceArrow 2s ease-in-out infinite;
        }

        @keyframes bounceArrow {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(3px); }
        }

        /* ── TERM CARD · EDITORIAL ASYMMETRY ── */
        .gl-terms { gap: 48px; }

        .gl-term-card {
            background: linear-gradient(180deg, #FDFAF5 0%, #F6EEDF 100%);
            border: 1px solid rgba(164,113,73,0.22);
            border-radius: 22px;
            padding: 42px 48px 42px 56px;
            box-shadow:
                0 1px 2px rgba(60,40,20,0.05),
                0 24px 50px -28px rgba(60,40,20,0.18),
                0 6px 14px -8px rgba(60,40,20,0.08);
        }

        /* Subtle stagger — only kicks in on very wide screens */
        @media (min-width: 1400px) {
            .gl-terms > .gl-term-card:not(.has-img):not(.gl-spotlight):nth-of-type(odd) {
                margin-right: 40px;
            }
            .gl-terms > .gl-term-card:not(.has-img):not(.gl-spotlight):nth-of-type(even) {
                margin-left: 40px;
            }
        }

        .gl-term-card:hover {
            border-color: rgba(164,113,73,0.32);
            box-shadow:
                0 28px 70px rgba(164,113,73,0.14),
                0 6px 18px rgba(164,113,73,0.06);
            transform: translateY(-5px) translateX(3px);
        }

        .gl-term-card::before {
            width: 4px;
            background: linear-gradient(180deg, var(--gold) 0%, #8B5A2B 100%);
            border-radius: 0 4px 4px 0;
        }

        /* Decorative corner SVG */
        .gl-term-card > .gl-term-top::before {
            content: '';
            position: absolute;
            top: 16px;
            right: 60px;
            width: 28px;
            height: 28px;
            background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 2 C 14 8, 8 14, 2 14 C 8 14, 14 20, 14 26 C 14 20, 20 14, 26 14 C 20 14, 14 8, 14 2 Z' stroke='%23A47149' stroke-width='0.7' opacity='0.5'/%3E%3Ccircle cx='14' cy='14' r='1.5' fill='%23A47149' opacity='0.6'/%3E%3C/svg%3E");
            background-size: contain;
            opacity: 0;
            transform: scale(0.6) rotate(-30deg);
            transition: all 0.5s cubic-bezier(.23,1,.32,1);
            pointer-events: none;
        }

        .gl-term-card:hover > .gl-term-top::before {
            opacity: 0.7;
            transform: scale(1) rotate(0deg);
        }

        .gl-term-name {
            font-size: 1.55rem;
            letter-spacing: -0.025em;
            font-weight: 800;
        }

        .gl-term-card:not(.has-img):not(.gl-spotlight) .gl-term-name {
            position: relative;
            display: inline-block;
        }

        .gl-term-card:not(.has-img):not(.gl-spotlight) .gl-term-name::after {
            content: '';
            display: block;
            width: 28px;
            height: 2px;
            background: var(--gold);
            margin-top: 14px;
            transition: width 0.5s cubic-bezier(.23,1,.32,1);
        }

        .gl-term-card:not(.has-img):not(.gl-spotlight):hover .gl-term-name::after {
            width: 64px;
        }

        .gl-term-type {
            font-size: 0.6rem;
            padding: 5px 13px;
            background: rgba(164,113,73,0.08);
            border: 1px solid rgba(164,113,73,0.18);
            transition: all 0.3s ease;
        }

        .gl-term-card:hover .gl-term-type {
            background: var(--gold);
            color: white;
            border-color: var(--gold);
        }

        .gl-term-def {
            font-family: 'Manrope', sans-serif;
            font-size: 1.02rem;
            line-height: 1.75;
            color: #5f5040;
            margin-top: 22px;
            max-width: 60ch;
            font-weight: 400;
        }

        .gl-term-card:not(.has-img):not(.gl-spotlight) .gl-term-def::first-letter {
            font-family: 'Syne', serif;
            font-size: 1.4em;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
        }

        .gl-term-arrow {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(164,113,73,0.06);
            border: 1px solid rgba(164,113,73,0.14);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--gold);
            right: 24px;
            bottom: 24px;
        }

        .gl-term-card:hover .gl-term-arrow {
            background: var(--gold);
            color: white;
            border-color: var(--gold);
            box-shadow: 0 8px 18px rgba(164,113,73,0.3);
            transform: translateX(3px) rotate(-8deg);
        }

        /* Term index pill — fancier */
        .gl-term-index {
            top: 14px;
            left: 18px;
            padding: 5px 11px;
            background: var(--gold-pale);
            color: var(--gold);
            font-size: 0.6rem;
            border: 1px solid rgba(164,113,73,0.32);
            box-shadow: 0 2px 6px rgba(164,113,73,0.12);
        }

        .gl-term-link {
            background: rgba(164,113,73,0.1);
            border: 1px solid rgba(164,113,73,0.18);
            font-size: 0.85rem;
            top: 14px;
            right: 64px;
        }

        /* Image cards — magazine plate */
        .gl-term-card.has-img {
            padding: 0;
            grid-template-columns: minmax(280px, 38%) 1fr;
            gap: 0;
            min-height: 320px;
            border-radius: 26px;
            overflow: hidden;
        }

        .gl-term-card.has-img .gl-term-img {
            position: relative;
            min-height: 320px;
        }

        .gl-term-card.has-img .gl-term-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 40%, rgba(26,18,9,0.28) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        /* Plate number badge over image */
        .gl-term-card.has-img .gl-term-img::before {
            content: 'PLATE';
            position: absolute;
            top: 22px;
            left: 22px;
            font-family: 'Syne', sans-serif;
            font-size: 0.6rem;
            font-weight: 800;
            letter-spacing: 0.22em;
            color: var(--gold);
            background: rgba(253,250,245,0.92);
            backdrop-filter: blur(8px);
            padding: 6px 12px;
            border-radius: 20px;
            border: 1px solid rgba(164,113,73,0.28);
            z-index: 2;
        }

        .gl-term-card.has-img:hover .gl-term-img::after { opacity: 1; }

        .gl-term-card.has-img .gl-term-body {
            padding: 50px 56px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .gl-term-card.has-img .gl-term-name { font-size: 1.7rem; }

        .gl-term-card.has-img > .gl-term-body > .gl-term-top::before { display: none; }

        /* Reverse every 2nd image card → asymmetric flow */
        .gl-terms > .gl-term-card.has-img:nth-of-type(even) {
            grid-template-columns: 1fr minmax(280px, 38%);
        }

        .gl-terms > .gl-term-card.has-img:nth-of-type(even) .gl-term-img {
            order: 2;
        }

        /* Spotlight — editorial cream plate */
        .gl-spotlight {
            background:
                radial-gradient(ellipse 60% 80% at 90% 50%, rgba(164,113,73,0.10), transparent 65%),
                linear-gradient(135deg, #FBF4E6 0%, #F5EAD3 100%);
            border: 1px solid rgba(164,113,73,0.22);
            border-radius: 28px;
            margin: 16px 0 24px;
            min-height: 360px;
        }

        .gl-spotlight::after {
            content: '';
            position: absolute;
            top: 20px;
            right: 22px;
            width: 60px;
            height: 60px;
            background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23A47149' stroke-width='0.7'%3E%3Ccircle cx='30' cy='30' r='28' opacity='0.55'/%3E%3Cpath d='M30 4 L34 30 L30 56 L26 30 Z' opacity='0.65'/%3E%3Cpath d='M4 30 L30 26 L56 30 L30 34 Z' opacity='0.65'/%3E%3C/g%3E%3Ccircle cx='30' cy='30' r='2' fill='%23A47149'/%3E%3C/svg%3E");
            background-size: contain;
            opacity: 0.65;
            z-index: 2;
            animation: luxRotate 40s linear infinite;
            pointer-events: none;
        }

        .gl-spotlight-img img {
            opacity: 0.22;
            filter: saturate(0.9);
            transition: all 0.7s cubic-bezier(.23,1,.32,1);
        }

        .gl-spotlight:hover .gl-spotlight-img img {
            opacity: 0.32;
            transform: scale(1.04);
        }

        .gl-spotlight-body {
            padding: 80px 64px 80px 64px;
            max-width: 75%;
        }

        .gl-spotlight-tag {
            color: var(--gold-light);
        }

        .gl-spotlight .gl-term-name {
            font-size: 3rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1;
            background: linear-gradient(135deg, var(--ink) 0%, #8B5A2B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }

        .gl-spotlight .gl-term-name::after { display: none; }

        .gl-spotlight .gl-term-def {
            color: var(--ink-soft);
            font-size: 1.08rem;
            line-height: 1.75;
            max-width: 56ch;
            margin-top: 24px;
        }

        .gl-spotlight .gl-term-def::first-letter {
            color: var(--gold);
        }

        /* Callout — editorial pull-quote, breaks the rhythm */
        .gl-callout {
            background: transparent;
            border: none;
            border-left: none;
            border-radius: 0;
            padding: 60px 80px 60px 100px;
            margin: 50px clamp(0px, 6vw, 80px);
            position: relative;
            box-shadow: none;
            text-align: left;
        }

        .gl-callout::before {
            content: '"';
            position: absolute;
            top: -30px;
            left: 0;
            font-family: 'Syne', serif;
            font-size: 14rem;
            font-style: italic;
            font-weight: 800;
            color: var(--gold);
            opacity: 0.18;
            line-height: 0.8;
            pointer-events: none;
        }

        .gl-callout::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            width: 60px;
            height: 1px;
            background: var(--gold);
            opacity: 0.4;
        }

        .gl-callout-tag {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: 'Syne', sans-serif;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 22px;
        }

        .gl-callout-tag::before {
            content: '';
            width: 28px;
            height: 1px;
            background: var(--gold);
            background-image: none;
        }

        .gl-callout p {
            font-family: 'Syne', serif;
            font-size: 1.7rem;
            font-style: italic;
            font-weight: 400;
            line-height: 1.5;
            color: var(--ink);
            position: relative;
            z-index: 1;
            letter-spacing: -0.01em;
            max-width: 30ch;
        }

        /* ── DIVIDER · ORNATE ── */
        .gl-divider {
            margin: 56px 0 64px;
            opacity: 0.7;
            gap: 16px;
        }

        .gl-divider span {
            background: linear-gradient(90deg, transparent, rgba(164,113,73,0.4), transparent);
            opacity: 1;
        }

        .gl-divider svg {
            width: 16px;
            height: 16px;
            color: var(--gold);
            animation: dividerPulse 4s ease-in-out infinite;
        }

        @keyframes dividerPulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1) rotate(45deg); }
        }

        /* ── RIGHT SIDEBAR (sticky, vertically centered) ── */
        .gl-sidebar {
            position: sticky;
            top: calc(50vh - 220px);
            height: fit-content;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .gl-video-card {
            border-radius: 20px;
            aspect-ratio: 9/13;
            box-shadow:
                0 24px 60px rgba(26,18,9,0.18),
                0 4px 12px rgba(26,18,9,0.08);
            position: relative;
        }

        .gl-video-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            pointer-events: none;
            z-index: 3;
        }

        .gl-video-overlay {
            background: linear-gradient(to top,
                rgba(26,18,9,0.95) 0%,
                rgba(26,18,9,0.5) 40%,
                transparent 70%);
            padding: 24px 22px;
        }

        .gl-video-eyebrow {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .gl-video-eyebrow::before {
            content: '';
            width: 5px; height: 5px;
            border-radius: 50%;
            background: #ff5252;
            box-shadow: 0 0 0 3px rgba(255,82,82,0.18);
            animation: liveDot 1.6s ease-in-out infinite;
        }

        @keyframes liveDot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .gl-video-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.1rem;
            line-height: 1.25;
        }

        .gl-video-btn {
            background: rgba(255,255,255,0.94);
            color: var(--ink);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.4);
        }

        .gl-video-btn:hover {
            background: var(--gold);
            color: white;
            transform: translateY(-1px);
        }

        .gl-play-indicator {
            background: rgba(255,255,255,0.18);
            border: 1px solid rgba(255,255,255,0.25);
            backdrop-filter: blur(10px);
        }

        .gl-play-indicator::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.3);
            animation: playPulse 2.4s ease-out infinite;
        }

        @keyframes playPulse {
            0% { transform: scale(0.95); opacity: 0.8; }
            100% { transform: scale(1.4); opacity: 0; }
        }

        /* Sidebar mini gallery — editorial grid */
        .gl-sidebar-gallery {
            gap: 10px;
        }

        .gl-sidebar-gallery-item {
            border-radius: 14px;
            border: 1px solid rgba(164,113,73,0.14);
            transition: all 0.4s cubic-bezier(.23,1,.32,1);
        }

        .gl-sidebar-gallery-item::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid transparent;
            border-radius: inherit;
            transition: border-color 0.4s ease;
            pointer-events: none;
            z-index: 2;
        }

        .gl-sidebar-gallery-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(164,113,73,0.16);
        }

        .gl-sidebar-gallery-item:hover::before {
            border-color: var(--gold);
        }

        /* Sidebar CTA — premium dark */
        .gl-sidebar-cta {
            background:
                radial-gradient(ellipse at top right, rgba(164,113,73,0.18), transparent 60%),
                linear-gradient(160deg, #1A1209 0%, #2D1F12 100%);
            border: 1px solid rgba(164,113,73,0.22);
            border-radius: 20px;
            padding: 32px 28px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 24px 50px rgba(26,18,9,0.16);
        }

        .gl-sidebar-cta::after {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 130px;
            height: 130px;
            background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 130 130' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23C9A882' stroke-width='0.6' opacity='0.35'%3E%3Ccircle cx='65' cy='65' r='62'/%3E%3Ccircle cx='65' cy='65' r='48' stroke-dasharray='1 3'/%3E%3Ccircle cx='65' cy='65' r='32'/%3E%3C/g%3E%3C/svg%3E");
            background-size: contain;
            animation: luxRotate 50s linear infinite;
            pointer-events: none;
        }

        .gl-sidebar-cta-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gold-light);
            position: relative;
            z-index: 1;
        }

        .gl-sidebar-cta-tag::before {
            content: '';
            width: 14px;
            height: 1px;
            background: var(--gold-light);
        }

        .gl-sidebar-cta h3 {
            color: white;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.3rem;
            line-height: 1.3;
            position: relative;
            z-index: 1;
            letter-spacing: -0.02em;
        }

        .gl-sidebar-cta p {
            color: rgba(255,255,255,0.62);
            font-size: 0.85rem;
            line-height: 1.65;
            position: relative;
            z-index: 1;
        }

        .gl-sidebar-cta .btn-gold {
            background: var(--gold);
            border-radius: 999px;
            padding: 14px 22px;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 24px rgba(164,113,73,0.32);
            overflow: hidden;
        }

        .gl-sidebar-cta .btn-gold::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gl-sidebar-cta .btn-gold:hover {
            background: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 14px 32px rgba(164,113,73,0.4);
        }

        .gl-sidebar-cta .btn-gold:hover::before { opacity: 1; }

        /* Reveal — refined */
        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity 0.9s cubic-bezier(.23,1,.32,1), transform 0.9s cubic-bezier(.23,1,.32,1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Match flash — fancier */
        .gl-term-card.match {
            border-color: var(--gold);
            box-shadow:
                0 0 0 4px rgba(164,113,73,0.18),
                0 24px 50px rgba(164,113,73,0.2);
            animation: matchPulse 1.2s ease;
        }

        @keyframes matchPulse {
            0% { transform: scale(1); }
            30% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        /* No-results — premium empty state */
        .gl-no-results {
            background: rgba(255,255,255,0.7);
            border: 1px dashed rgba(164,113,73,0.32);
            border-radius: 22px;
            padding: 70px 40px;
        }

        .gl-no-results h3 {
            font-family: 'Syne', sans-serif;
            font-size: 2.2rem;
            color: var(--ink);
            margin-bottom: 10px;
            font-style: italic;
        }

        /* Responsive body */
        @media (max-width: 1100px) {
            .gl-layout {
                grid-template-columns: 180px minmax(0, 1fr) 260px;
                column-gap: 28px;
                padding: 100px 0 140px;
            }
            .gl-section { margin-bottom: 140px; }
            .gl-section::before { font-size: clamp(220px, 28vw, 360px); right: -40px; }
            .gl-section::after { left: -90px; width: 52px; height: 52px; }
            .gl-spotlight-body { padding: 56px 44px; max-width: 100%; }
            .gl-spotlight .gl-term-name { font-size: 2.2rem; }
            .gl-term-card { padding: 36px 40px 36px 48px; }
            .gl-term-card.has-img { grid-template-columns: 240px 1fr; }
            .gl-terms > .gl-term-card.has-img:nth-of-type(even) { grid-template-columns: 1fr 240px; }
            .gl-callout { padding: 48px 50px 48px 80px; margin: 30px 20px; }
            .gl-callout::before { font-size: 11rem; }
            .gl-callout p { font-size: 1.4rem; }
        }

        @media (max-width: 900px) {
            .gl-layout { padding: 60px 0 100px; gap: 40px; }
            .gl-section { margin-bottom: 100px; }
            .gl-section::before { display: none; }
            .gl-section::after { display: none; }
            .gl-letter-char { font-size: clamp(5rem, 14vw, 7rem); }
            .gl-letter-title { font-size: 1.5rem; }
            .gl-letter-header { gap: 24px; margin-bottom: 50px; }
            .gl-letter-count::after { display: none; }
            .gl-term-card { padding: 32px 32px 32px 40px; }
            .gl-terms > .gl-term-card:not(.has-img):not(.gl-spotlight):nth-of-type(odd),
            .gl-terms > .gl-term-card:not(.has-img):not(.gl-spotlight):nth-of-type(even) {
                margin-left: 0;
                margin-right: 0;
            }
            .gl-term-card.has-img { grid-template-columns: 160px 1fr; min-height: 200px; }
            .gl-terms > .gl-term-card.has-img:nth-of-type(even) { grid-template-columns: 1fr 160px; }
            .gl-term-card.has-img .gl-term-img { min-height: 200px; }
            .gl-term-card.has-img .gl-term-body { padding: 24px 28px; }
            .gl-term-name { font-size: 1.3rem; }
            .gl-spotlight { min-height: 280px; }
            .gl-spotlight-body { padding: 40px 30px; }
            .gl-spotlight .gl-term-name { font-size: 1.8rem; }
            .gl-spotlight::after { width: 44px; height: 44px; }
            .gl-callout { padding: 40px 40px 40px 70px; margin: 20px 0; }
            .gl-callout::before { font-size: 9rem; top: -20px; }
            .gl-callout p { font-size: 1.2rem; max-width: 100%; }
        }

        @media (max-width: 600px) {
            .gl-letter-char { font-size: 4.4rem; }
            .gl-letter-title { font-size: 1.2rem; }
            .gl-letter-header { grid-template-columns: 1fr; gap: 12px; }
            .gl-term-card { padding: 50px 24px 28px 32px; }
            .gl-term-name { font-size: 1.2rem; }
            .gl-term-def { font-size: 0.95rem; margin-top: 16px; }
            .gl-term-card.has-img,
            .gl-terms > .gl-term-card.has-img:nth-of-type(even) {
                grid-template-columns: 1fr;
            }
            .gl-term-card.has-img .gl-term-img,
            .gl-terms > .gl-term-card.has-img:nth-of-type(even) .gl-term-img {
                order: 0;
                min-height: 200px;
            }
            .gl-callout { padding: 30px 24px 30px 50px; }
            .gl-callout::before { font-size: 7rem; top: -10px; }
            .gl-callout p { font-size: 1.05rem; }
            .gl-divider { margin: 36px 0 44px; }
        }

        /* ═══════════════════════════════════════════════
           SIDEBAR REDESIGN · v4 · Archive / Dossier
           ═══════════════════════════════════════════════ */

        /* ── LEFT · Index Card ── */
        .gl-sidenav {
            top: 100px;
            padding: 0;
            background: linear-gradient(180deg,
                rgba(255,255,255,0.92) 0%,
                rgba(253,250,245,0.85) 100%);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(164,113,73,0.16);
            border-radius: 22px;
            box-shadow:
                0 24px 60px -20px rgba(164,113,73,0.16),
                0 1px 2px rgba(164,113,73,0.05);
            overflow: hidden;
            position: sticky;
            max-height: calc(100vh - 120px);
            display: flex;
            flex-direction: column;
        }

        /* Tab cut-out at top corner */
        .gl-sidenav::before {
            content: '';
            position: absolute;
            top: 0;
            right: 22px;
            width: 38px;
            height: 14px;
            background: var(--gold);
            border-radius: 0 0 4px 4px;
            box-shadow: 0 4px 8px rgba(164,113,73,0.25);
        }

        .gl-sidenav-head {
            padding: 22px 22px 16px;
            border-bottom: 1px dashed rgba(164,113,73,0.22);
            position: relative;
            flex-shrink: 0;
        }

        .gl-sidenav-head + ul,
        .gl-sidenav ul + .gl-sidenav-foot {
            position: relative;
        }

        .gl-sidenav-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Syne', sans-serif;
            font-size: 0.6rem;
            font-weight: 800;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 14px;
        }

        .gl-sidenav-eyebrow svg {
            width: 14px;
            height: 14px;
            color: var(--gold);
        }

        .gl-sidenav-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            line-height: 1.15;
            color: var(--ink);
            letter-spacing: -0.03em;
            margin-bottom: 12px;
            white-space: normal;
            overflow: visible;
        }

        .gl-sidenav-title em {
            font-family: 'Syne', sans-serif;
            font-style: italic;
            font-weight: 400;
            background: linear-gradient(135deg, var(--gold) 0%, #8B5A2B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gl-sidenav-meta {
            font-family: 'Manrope', sans-serif;
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--muted);
            letter-spacing: 0.04em;
        }

        .gl-sidenav ul {
            list-style: none;
            border-left: none;
            padding: 8px 18px;
            margin: 0;
            position: relative;
            overflow-y: auto;
            overflow-x: hidden;
            flex: 1 1 auto;
            min-height: 0;
            scrollbar-width: thin;
            scrollbar-color: rgba(164,113,73,0.3) transparent;
        }

        .gl-sidenav ul::-webkit-scrollbar { width: 4px; }
        .gl-sidenav ul::-webkit-scrollbar-thumb { background: rgba(164,113,73,0.3); border-radius: 2px; }

        /* The vertical guide rail — sits inside tick column at x=30 from sidebar edge */
        .gl-sidenav ul::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 18px;
            bottom: 18px;
            width: 1px;
            background: linear-gradient(to bottom,
                transparent,
                rgba(164,113,73,0.22) 10%,
                rgba(164,113,73,0.22) 90%,
                transparent);
        }

        .gl-sidenav li { margin: 0; }

        .gl-sidenav a {
            display: grid;
            grid-template-columns: 16px 1fr auto;
            align-items: center;
            gap: 10px;
            padding: 5px 12px 5px 6px;
            margin-left: 0;
            font-family: 'Syne', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--muted);
            text-decoration: none;
            border: none;
            border-left: none;
            border-radius: 8px;
            transition: all 0.35s cubic-bezier(.23,1,.32,1);
            position: relative;
            letter-spacing: 0.06em;
        }

        /* Tick mark on the rail */
        .gl-sidenav a::before {
            content: '';
            display: block;
            width: 10px;
            height: 1px;
            background: rgba(164,113,73,0.4);
            justify-self: center;
            transition: all 0.35s cubic-bezier(.23,1,.32,1);
        }

        .gl-sidenav a .count {
            font-size: 0.62rem;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            background: transparent;
            color: var(--muted);
            padding: 0;
            border-radius: 0;
            min-width: auto;
            letter-spacing: 0.06em;
            opacity: 0.55;
        }

        .gl-sidenav a::after { display: none; }

        .gl-sidenav a:hover {
            color: var(--ink);
            background: rgba(164,113,73,0.05);
            padding-left: 4px;
        }

        .gl-sidenav a:hover::before {
            width: 16px;
            background: var(--gold);
        }

        .gl-sidenav a:hover .count {
            color: var(--gold);
            opacity: 1;
        }

        .gl-sidenav a.active {
            color: var(--ink);
            background: linear-gradient(90deg, rgba(164,113,73,0.12), rgba(164,113,73,0.02) 80%);
            font-weight: 800;
            padding-left: 4px;
        }

        .gl-sidenav a.active::before {
            width: 16px;
            height: 4px;
            background: var(--gold);
            border-radius: 2px;
            box-shadow: 0 0 0 3px rgba(164,113,73,0.18);
        }

        .gl-sidenav a.active .count {
            color: var(--gold);
            opacity: 1;
            font-weight: 800;
        }

        .gl-sidenav a.disabled {
            color: rgba(122,104,85,0.32);
            pointer-events: none;
            cursor: not-allowed;
        }

        .gl-sidenav a.disabled .count {
            opacity: 0.3;
        }

        .gl-sidenav a.disabled::before {
            background: rgba(164,113,73,0.18);
        }

        .gl-sidenav-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 22px 14px;
            border-top: 1px dashed rgba(164,113,73,0.22);
            background: rgba(164,113,73,0.04);
            flex-shrink: 0;
        }

        .gl-sidenav-back {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'Syne', sans-serif;
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--ink);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .gl-sidenav-back svg {
            width: 12px;
            height: 12px;
            transition: transform 0.4s cubic-bezier(.23,1,.32,1);
        }

        .gl-sidenav-back:hover { color: var(--gold); }
        .gl-sidenav-back:hover svg { transform: translateY(-3px); }

        .gl-sidenav-stamp {
            font-family: 'Syne', sans-serif;
            font-size: 0.58rem;
            font-style: italic;
            font-weight: 400;
            color: var(--muted);
            letter-spacing: 0.14em;
        }

        /* ── RIGHT · Dossier Stack ── */
        .gl-sidebar { gap: 18px; }

        /* Video card · cinematic cream plate */
        .gl-video-card {
            position: relative;
            background: linear-gradient(160deg, #FBF4E6 0%, #F0E2C8 100%);
            border: 1px solid rgba(164,113,73,0.22);
            border-radius: 22px;
            aspect-ratio: 9 / 13;
            overflow: hidden;
            box-shadow:
                0 30px 80px -20px rgba(164,113,73,0.22),
                0 4px 16px rgba(164,113,73,0.10),
                inset 0 1px 0 rgba(255,255,255,0.6);
            isolation: isolate;
        }

        .gl-video-frame {
            position: absolute;
            inset: 10px;
            border-radius: 14px;
            overflow: hidden;
            z-index: 0;
        }

        .gl-video-frame video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 1;
            filter: contrast(1.05) saturate(1.05);
        }

        .gl-video-grain {
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
            mix-blend-mode: overlay;
            pointer-events: none;
            opacity: 0.6;
        }

        /* Frame corner brackets */
        .gl-video-corners span {
            position: absolute;
            width: 14px;
            height: 14px;
            border: 1.5px solid rgba(164,113,73,0.8);
            pointer-events: none;
            z-index: 3;
        }

        .gl-video-corners span:nth-child(1) { top: 8px; left: 8px; border-right: none; border-bottom: none; }
        .gl-video-corners span:nth-child(2) { top: 8px; right: 8px; border-left: none; border-bottom: none; }
        .gl-video-corners span:nth-child(3) { bottom: 8px; left: 8px; border-right: none; border-top: none; }
        .gl-video-corners span:nth-child(4) { bottom: 8px; right: 8px; border-left: none; border-top: none; }

        .gl-play-indicator {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.18);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 4;
        }

        .gl-play-indicator::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.35);
            animation: playRing 2.5s ease-out infinite;
        }

        @keyframes playRing {
            0%   { transform: scale(0.92); opacity: 0.9; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        .gl-play-indicator svg { width: 12px; height: 12px; color: white; margin-left: 2px; }

        .gl-video-timecode {
            position: absolute;
            top: 18px;
            left: 18px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: white;
            background: rgba(0,0,0,0.45);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.14);
            padding: 5px 10px;
            border-radius: 999px;
            z-index: 4;
        }

        .gl-video-timecode i {
            display: block;
            width: 1px;
            height: 10px;
            background: rgba(255,255,255,0.3);
        }

        .gl-video-overlay {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 5;
            padding: 28px 24px 24px;
            background: linear-gradient(to top,
                rgba(253,250,245,0.97) 0%,
                rgba(253,250,245,0.85) 40%,
                rgba(253,250,245,0.45) 70%,
                transparent 100%);
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .gl-video-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Syne', sans-serif;
            font-size: 0.6rem;
            font-weight: 800;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold);
        }

        .gl-video-rec {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: #ff5252;
            box-shadow: 0 0 0 3px rgba(255,82,82,0.18);
            animation: pulseRec 1.6s ease-in-out infinite;
        }

        @keyframes pulseRec {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.35; }
        }

        .gl-video-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            line-height: 1.15;
            color: var(--ink);
            letter-spacing: -0.03em;
        }

        .gl-video-title em {
            font-family: 'Syne', sans-serif;
            font-style: italic;
            font-weight: 400;
            color: var(--gold);
            display: inline-block;
        }

        .gl-video-btn {
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 14px 18px;
            font-family: 'Syne', sans-serif;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--ink);
            background: rgba(255,255,255,0.95);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 999px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(.23,1,.32,1);
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
            backdrop-filter: blur(8px);
            width: 100%;
        }

        .gl-video-btn svg {
            transition: transform 0.4s cubic-bezier(.23,1,.32,1);
        }

        .gl-video-btn:hover {
            background: var(--gold);
            color: white;
            border-color: var(--gold);
            transform: translateY(-1px);
            box-shadow: 0 12px 28px rgba(164,113,73,0.4);
        }

        .gl-video-btn:hover svg { transform: translateX(4px); }

        /* ── Sidebar block (archive plates section header) ── */
        .gl-sidebar-block {
            padding: 4px 4px 0;
        }

        .gl-sb-head {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            padding: 0 4px;
        }

        .gl-sb-eyebrow {
            font-family: 'Syne', sans-serif;
            font-size: 0.6rem;
            font-weight: 800;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: var(--gold);
        }

        .gl-sb-rule {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, rgba(164,113,73,0.4), transparent);
        }

        .gl-sb-meta {
            font-family: 'Syne', sans-serif;
            font-size: 0.58rem;
            font-style: italic;
            font-weight: 400;
            color: var(--muted);
            letter-spacing: 0.06em;
        }

        /* Gallery — archive grid */
        .gl-sidebar-gallery {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .gl-sidebar-gallery-item {
            position: relative;
            aspect-ratio: 1 / 1;
            border-radius: 14px;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid rgba(164,113,73,0.16);
            transition: all 0.45s cubic-bezier(.23,1,.32,1);
            box-shadow: 0 4px 14px -4px rgba(164,113,73,0.18);
        }

        .gl-sidebar-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(.23,1,.32,1), filter 0.5s ease;
            filter: saturate(0.85);
        }

        .gl-sidebar-gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                rgba(26,18,9,0.6) 0%,
                rgba(26,18,9,0.15) 40%,
                transparent 70%);
            opacity: 0.45;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .gl-gal-num {
            position: absolute;
            top: 8px;
            left: 8px;
            font-family: 'Syne', sans-serif;
            font-size: 0.55rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            color: white;
            background: rgba(26,18,9,0.6);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255,255,255,0.18);
            padding: 3px 8px;
            border-radius: 999px;
            z-index: 2;
        }

        .gl-gal-cap {
            position: absolute;
            bottom: 10px;
            left: 10px;
            right: 10px;
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            color: white;
            letter-spacing: 0.08em;
            opacity: 0;
            transform: translateY(6px);
            transition: all 0.4s cubic-bezier(.23,1,.32,1);
            z-index: 2;
            text-shadow: 0 1px 4px rgba(0,0,0,0.4);
        }

        .gl-sidebar-gallery-item:hover {
            border-color: rgba(164,113,73,0.5);
            transform: translateY(-3px);
            box-shadow: 0 18px 36px -8px rgba(164,113,73,0.3);
        }

        .gl-sidebar-gallery-item:hover img {
            transform: scale(1.08);
            filter: saturate(1.05);
        }

        .gl-sidebar-gallery-item:hover::after { opacity: 0.7; }
        .gl-sidebar-gallery-item:hover .gl-gal-cap {
            opacity: 1;
            transform: translateY(0);
        }

        /* CTA · specimen card (cream) */
        .gl-sidebar-cta {
            position: relative;
            background: linear-gradient(160deg, #FBF4E6 0%, #F5EAD3 50%, #EDE0CB 100%);
            border: 1px solid rgba(164,113,73,0.28);
            border-radius: 22px;
            padding: 36px 28px 28px;
            color: var(--ink);
            overflow: hidden;
            box-shadow:
                0 30px 60px -20px rgba(164,113,73,0.22),
                inset 0 1px 0 rgba(255,255,255,0.6);
            isolation: isolate;
        }

        .gl-cta-sigil {
            position: absolute;
            top: -22px;
            right: -22px;
            width: 130px;
            height: 130px;
            color: var(--gold-light);
            opacity: 0.35;
            animation: sigilSpin 60s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes sigilSpin {
            to { transform: rotate(360deg); }
        }

        .gl-sidebar-cta::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 60%;
            height: 1px;
            background: linear-gradient(90deg, var(--gold), transparent);
            z-index: 1;
        }

        .gl-sidebar-cta::after {
            content: '';
            position: absolute;
            bottom: 0; right: 0;
            width: 60%;
            height: 1px;
            background: linear-gradient(-90deg, var(--gold), transparent);
            z-index: 1;
        }

        .gl-sidebar-cta-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 18px;
            position: relative;
            z-index: 2;
        }

        .gl-sidebar-cta-tag::before {
            content: '';
            width: 18px;
            height: 1px;
            background: var(--gold);
        }

        .gl-sidebar-cta h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--ink);
            letter-spacing: -0.025em;
            margin-bottom: 14px;
            position: relative;
            z-index: 2;
            max-width: 90%;
        }

        .gl-sidebar-cta h3 em {
            font-family: 'Syne', sans-serif;
            font-style: italic;
            font-weight: 400;
            color: var(--gold);
            background: linear-gradient(135deg, var(--gold), #8B5A2B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gl-sidebar-cta p {
            font-family: 'Manrope', sans-serif;
            font-size: 0.86rem;
            line-height: 1.65;
            color: var(--ink-soft);
            margin-bottom: 22px;
            position: relative;
            z-index: 2;
            max-width: 92%;
        }

        .gl-sidebar-cta .btn-gold {
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            width: 100%;
            padding: 14px 22px;
            background: linear-gradient(135deg, var(--gold) 0%, #8B5A2B 100%);
            color: white;
            font-family: 'Syne', sans-serif;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            border: none;
            border-radius: 999px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(.23,1,.32,1);
            box-shadow:
                0 12px 24px -8px rgba(164,113,73,0.5),
                inset 0 1px 0 rgba(255,255,255,0.18);
            position: relative;
            z-index: 2;
            text-align: left;
        }

        .gl-sidebar-cta .btn-gold svg {
            transition: transform 0.4s cubic-bezier(.23,1,.32,1);
        }

        .gl-sidebar-cta .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow:
                0 16px 32px -8px rgba(164,113,73,0.6),
                inset 0 1px 0 rgba(255,255,255,0.25);
        }

        .gl-sidebar-cta .btn-gold:hover svg { transform: translateX(5px); }

        .gl-cta-foot {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px dashed rgba(164,113,73,0.28);
            font-family: 'Manrope', sans-serif;
            font-size: 0.7rem;
            color: var(--muted);
            position: relative;
            z-index: 2;
            letter-spacing: 0.04em;
        }

        .gl-cta-dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: #5dd66e;
            box-shadow: 0 0 0 3px rgba(93,214,110,0.2);
            animation: pulseLive 2s ease-in-out infinite;
            flex-shrink: 0;
        }

        @keyframes pulseLive {
            0%, 100% { box-shadow: 0 0 0 3px rgba(93,214,110,0.2); }
            50%      { box-shadow: 0 0 0 7px rgba(93,214,110,0.05); }
        }

        /* Footer stamp */
        .gl-sidebar-stamp {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 4px 0;
            font-family: 'Syne', sans-serif;
            font-size: 0.58rem;
            font-style: italic;
            font-weight: 400;
            color: var(--muted);
            letter-spacing: 0.18em;
            text-transform: uppercase;
            opacity: 0.6;
        }

        .gl-sidebar-stamp i {
            display: block;
            width: 4px; height: 4px;
            border-radius: 50%;
            background: var(--gold);
            opacity: 0.5;
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .gl-sidenav-title { font-size: 1.25rem; }
            .gl-sidebar-cta { padding: 28px 22px 22px; }
            .gl-sidebar-cta h3 { font-size: 1.2rem; }
            .gl-cta-sigil { width: 100px; height: 100px; }
        }

        @media (max-width: 900px) {
            .gl-sidenav { display: none; }
            .gl-sidebar {
                position: static;
                margin-top: 40px;
                max-width: 420px;
            }
            .gl-video-card { aspect-ratio: 16 / 10; }
        }

        /* ════════════════════════════════════════════════
           CONSOLIDATED RESPONSIVE FIXES · v5
           ════════════════════════════════════════════════ */

        /* Tablet landscape ≤1200px */
        @media (max-width: 1200px) {
            .gl-hero-inner {
                grid-template-columns: 1fr 360px;
                gap: 40px;
                padding: 10px 16px 30px;
            }
            .gl-layout {
                width: 92%;
                column-gap: 24px;
                padding: 100px 0 140px;
                grid-template-columns: 180px minmax(0, 1fr) 280px;
            }
            .lux-orn-tl, .lux-orn-br { opacity: 0.18; }
        }

        /* Tablet ≤960px — drop 3-col layout, sidebar inline below content */
        @media (max-width: 960px) {
            .navbar .container.nav-grid {
                grid-template-columns: auto 1fr auto;
                gap: 12px;
            }
            .navbar .nav-left, .navbar .nav-right { gap: 14px; font-size: 0.78rem; }
            .navbar .brand-name { font-size: 0.85rem !important; letter-spacing: 0.16em !important; }

            .gl-hero { min-height: auto; padding: 90px 0 40px; }
            .gl-hero-inner {
                grid-template-columns: 1fr;
                gap: 50px;
                padding: 20px 24px 40px;
            }
            .gl-hero-artifact { max-width: 560px; margin: 0 auto; width: 100%; }
            .gl-hero-giant { font-size: clamp(140px, 22vw, 220px); right: -4%; bottom: -4%; }
            .lux-spec-card { right: 12px; bottom: -16px; min-width: 140px; padding: 12px 14px; }

            .gl-layout {
                width: 92%;
                grid-template-columns: 1fr;
                column-gap: 0;
                row-gap: 32px;
                padding: 60px 0 100px;
            }
            .gl-sidebar {
                position: static;
                top: auto;
                margin-top: 24px;
                max-width: 480px;
                width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .gl-video-card { aspect-ratio: 16 / 9; }

            .gl-section { margin-bottom: 80px; }
            .gl-section::before { display: none; }
            .gl-section::after { display: none; }
            .gl-letter-header { gap: 20px; margin-bottom: 40px; }
            .gl-letter-char { font-size: clamp(4.5rem, 12vw, 6.5rem); }
            .gl-letter-title { font-size: 1.4rem; }
            .gl-letter-count::after { display: none; }

            .gl-term-card { padding: 32px 28px 32px 36px; border-radius: 18px; }
            .gl-term-card.has-img,
            .gl-terms > .gl-term-card.has-img:nth-of-type(even) {
                grid-template-columns: 180px 1fr;
                min-height: 220px;
            }
            .gl-term-card.has-img .gl-term-img { min-height: 220px; }
            .gl-term-card.has-img .gl-term-body { padding: 24px 28px; }

            .gl-spotlight { min-height: 280px; }
            .gl-spotlight-body { padding: 44px 32px; max-width: 100%; }
            .gl-spotlight .gl-term-name { font-size: 2rem; }

            .gl-callout { padding: 36px 32px 36px 64px; margin: 24px 0; }
            .gl-callout::before { font-size: 8rem; top: -16px; }
            .gl-callout p { font-size: 1.1rem; max-width: 100%; }

            .gl-cta-section { padding: 80px 0; }
            .gl-cta-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
            .gl-cta-image { display: block; height: 280px; max-width: 540px; margin: 0 auto; }
        }

        /* Phone ≤640px */
        @media (max-width: 640px) {
            .progress-container { height: 2px; }
            .navbar { padding: 14px 0; }
            .navbar .container.nav-grid {
                grid-template-columns: 1fr;
                justify-items: center;
                gap: 0;
                text-align: center;
            }
            .navbar .nav-left, .navbar .nav-right { display: none; }
            .navbar .brand-name { font-size: 0.92rem !important; letter-spacing: 0.22em !important; }

            .gl-hero { padding: 70px 0 24px; }
            .gl-hero-inner { padding: 12px 16px 24px; gap: 36px; }
            .gl-hero-tag { font-size: 0.62rem; padding: 7px 14px 7px 12px; gap: 10px; }
            .lux-tag-meta { padding-left: 8px; }
            .gl-hero-title { font-size: clamp(2rem, 9vw, 2.6rem); margin: 14px 0; }
            .lux-flourish { display: none; }
            .gl-hero-sub { font-size: 0.92rem; margin-bottom: 18px; }

            .gl-search { padding: 14px 56px 14px 48px; font-size: 0.9rem; }
            .lux-kbd { display: none; }
            .gl-search-icon { left: 18px; }

            .gl-hero-meta-row {
                flex-wrap: wrap;
                gap: 12px;
                padding: 12px 0;
            }
            .lux-meta-item { flex: 1 1 calc(50% - 8px); min-width: 0; }
            .lux-meta-divider { display: none; }
            .lux-meta-item b { font-size: 1rem; }

            .gl-hero-tools { gap: 12px; flex-wrap: wrap; }
            .gl-hero-jump { width: 100%; justify-content: center; padding: 13px 22px; }
            .gl-hero-ghost { width: 100%; text-align: center; }

            .lux-artifact-frame { padding: 14px 14px 12px; border-radius: 16px; }
            .lux-artifact-stage { aspect-ratio: 16 / 11; border-radius: 10px; }
            .lux-artifact-strip { gap: 4px; margin-top: 8px; }
            .lux-artifact-thumb { border-radius: 6px; border-width: 1.5px; }
            .lux-artifact-caption { left: 14px; bottom: 14px; gap: 10px; }
            .lux-cap-no { font-size: 1.6rem; }
            .lux-cap-text { font-size: 0.7rem; }
            .lux-pin { display: none; }
            .lux-spec-card {
                position: relative;
                right: auto;
                bottom: auto;
                margin-top: 12px;
                width: 100%;
                animation: none;
            }

            .gl-alpha-strip { padding: 0; }
            .gl-alpha-btn { padding: 12px 12px; font-size: 0.72rem; min-width: 36px; }

            .gl-layout {
                width: 100%;
                padding: 40px 16px 80px;
            }
            .gl-letter-header { grid-template-columns: 1fr; gap: 12px; padding-bottom: 24px; margin-bottom: 32px; }
            .gl-letter-char { font-size: 4rem; margin-left: 0; }
            .gl-letter-char::after { display: none; }
            .gl-letter-title { font-size: 1.15rem; }
            .gl-letter-count { font-size: 0.62rem; }

            .gl-term-card { padding: 44px 20px 24px 24px; border-radius: 16px; }
            .gl-term-name { font-size: 1.15rem; }
            .gl-term-def { font-size: 0.92rem; line-height: 1.7; margin-top: 14px; }
            .gl-term-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .gl-term-type { font-size: 0.55rem; padding: 4px 10px; }
            .gl-term-arrow { width: 30px; height: 30px; right: 16px; bottom: 16px; }
            .gl-term-index { top: 10px; left: 14px; font-size: 0.55rem; padding: 4px 9px; }
            .gl-term-link {
                opacity: 1;
                transform: none;
                top: 10px;
                right: 14px;
                width: 28px;
                height: 28px;
                font-size: 0.75rem;
            }

            .gl-term-card.has-img,
            .gl-terms > .gl-term-card.has-img:nth-of-type(even) {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            .gl-term-card.has-img .gl-term-img,
            .gl-terms > .gl-term-card.has-img:nth-of-type(even) .gl-term-img {
                order: 0;
                min-height: 180px;
                aspect-ratio: 16 / 10;
            }
            .gl-term-card.has-img .gl-term-body { padding: 22px 22px 26px; }

            .gl-spotlight { min-height: auto; border-radius: 18px; }
            .gl-spotlight-body { padding: 36px 24px; }
            .gl-spotlight .gl-term-name { font-size: 1.7rem; }
            .gl-spotlight .gl-term-def { font-size: 0.95rem; }
            .gl-spotlight::after { width: 38px; height: 38px; top: 14px; right: 14px; }

            .gl-callout { padding: 28px 22px 28px 50px; margin: 20px 0; }
            .gl-callout::before { font-size: 6rem; top: -10px; }
            .gl-callout p { font-size: 1rem; }
            .gl-callout-tag { font-size: 0.6rem; margin-bottom: 14px; }

            .gl-divider { margin: 28px 0 36px; }

            .gl-sidebar { margin-top: 16px; max-width: 100%; }
            .gl-video-card { aspect-ratio: 16 / 11; border-radius: 18px; }
            .gl-video-overlay { padding: 22px 18px 18px; gap: 12px; }
            .gl-video-title { font-size: 1.1rem; }
            .gl-video-btn { padding: 12px 16px; font-size: 0.65rem; }
            .gl-video-timecode { font-size: 0.55rem; padding: 4px 8px; top: 12px; left: 12px; }
            .gl-play-indicator { width: 30px; height: 30px; top: 12px; right: 12px; }

            .gl-cta-section { padding: 60px 0; }
            .gl-cta-inner { padding: 0 20px; gap: 32px; }
            .gl-cta-h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
            .gl-cta-p { font-size: 0.92rem; margin-bottom: 24px; }
            .gl-cta-btn { padding: 14px 28px; font-size: 0.72rem; width: 100%; justify-content: center; }
            .gl-cta-image { height: 220px; }
            .gl-cta-bg-text { font-size: clamp(80px, 30vw, 180px); }

            .popup-container { width: 94%; }
            .popup-header { padding: 24px 24px 18px; }
            .popup-header h2 { font-size: 1.4rem; }
            .popup-body { padding: 24px; }
        }

        /* Small phone ≤380px */
        @media (max-width: 380px) {
            .gl-hero-title { font-size: 1.85rem; }
            .gl-hero-sub { font-size: 0.86rem; }
            .lux-meta-item { flex: 1 1 100%; }
            .gl-letter-char { font-size: 3.4rem; }
            .gl-term-card { padding: 40px 16px 22px 18px; }
            .gl-spotlight-body { padding: 28px 18px; }
            .gl-spotlight .gl-term-name { font-size: 1.4rem; }
            .gl-callout { padding: 24px 18px 24px 38px; }
            .gl-callout::before { font-size: 4.8rem; }
            .gl-cta-image { height: 180px; }
        }

        /* Touch — disable hover-only effects */
        @media (hover: none) {
            .gl-term-link { opacity: 1; transform: none; }
            .lux-pin { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            .gl-term-card:hover { transform: none; }
        }

        /* ════════════════════════════════════════════════
           MINIMAL LETTER INDEX  (sidenav v6)
           ════════════════════════════════════════════════ */

        .gl-sidenav.gl-typecase {
            position: sticky;
            top: 110px;
            display: block;
            max-height: none;
            padding: 26px 22px 28px;
            background: rgba(253,250,245,0.92);
            backdrop-filter: blur(14px) saturate(130%);
            -webkit-backdrop-filter: blur(14px) saturate(130%);
            border: 1px solid rgba(164,113,73,0.14);
            border-radius: 16px;
            box-shadow:
                0 1px 0 rgba(255,255,255,0.6) inset,
                0 14px 32px -20px rgba(60,40,20,0.18),
                0 2px 8px -4px rgba(60,40,20,0.08);
            overflow: hidden;
            isolation: isolate;
        }

        .gl-sidenav.gl-typecase::before { display: none; }

        /* Hide all legacy children */
        .gl-sidenav.gl-typecase ul,
        .gl-sidenav.gl-typecase .gl-sidenav-head,
        .gl-sidenav.gl-typecase .gl-sidenav-foot { display: none; }

        .gl-typecase-head {
            margin-bottom: 22px;
            padding-bottom: 18px;
            border-bottom: 1px solid rgba(164,113,73,0.16);
        }

        .gl-typecase-eyebrow {
            display: block;
            font-family: 'Syne', sans-serif;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 8px;
        }

        .gl-typecase-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.03em;
            color: var(--ink);
            margin: 0;
            display: flex;
            align-items: baseline;
            gap: 6px;
        }

        .gl-typecase-title span {
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--muted);
        }

        /* Grid — clean, airy */
        .gl-typecase-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
        }

        .gl-cell {
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 1 / 1;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.92rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: var(--muted);
            text-decoration: none;
            border-radius: 6px;
            transition: color 0.2s ease, background 0.2s ease;
        }

        .gl-cell.is-active { color: var(--ink); }

        .gl-cell.is-active:hover,
        .gl-cell.is-active:focus-visible {
            color: var(--gold);
            background: rgba(164,113,73,0.06);
            outline: none;
        }

        .gl-cell.is-active.active {
            color: var(--gold);
            background: rgba(164,113,73,0.10);
            font-weight: 800;
        }

        .gl-cell.is-empty {
            color: rgba(122,104,85,0.25);
            cursor: default;
            pointer-events: none;
        }

        /* Override legacy v3 .gl-sidenav a rules for typecase variant */
        .gl-typecase-grid a.gl-cell {
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 1 / 1;
            grid-template-columns: none;
            gap: 0;
            padding: 0;
            margin: 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.92rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            border-radius: 6px;
            background: transparent;
            color: var(--muted);
            text-align: center;
        }
        .gl-typecase-grid a.gl-cell::before,
        .gl-typecase-grid a.gl-cell::after { display: none !important; content: none !important; }
        .gl-typecase-grid a.gl-cell:hover { padding: 0; background: rgba(164,113,73,0.06); color: var(--gold); }
        .gl-typecase-grid a.gl-cell.active {
            padding: 0;
            background: rgba(164,113,73,0.10);
            color: var(--gold);
            font-weight: 800;
            box-shadow: none;
        }

        @media (max-width: 1100px) {
            .gl-typecase-title { font-size: 1.2rem; }
            .gl-cell { font-size: 0.85rem; }
        }

        @media (max-width: 960px) {
            .gl-sidenav.gl-typecase { display: none; }
        }

        /* ============================================
           GLOSSARY · DEEP LINK OVERLAY
           Makes matched term cards clickable while
           preserving original layout. No layout shift.
           ============================================ */
        .gl-card-link {
            position: absolute;
            inset: 0;
            z-index: 4;
            text-indent: -9999px;
            overflow: hidden;
            white-space: nowrap;
            border-radius: inherit;
            background: transparent;
            color: transparent;
            text-decoration: none;
            outline: none;
        }
        .gl-card-link:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }
        .gl-term-card:has(.gl-card-link) { cursor: pointer; }
