/* =========================================
   FONTS
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&family=Manrope:wght@300;400;500;600;700&display=swap');

/* =========================================
   DESIGN TOKENS — LIGHT (default, Apple-style)
   ========================================= */
:root {
    --bg-primary:   #FFFFFF;
    --bg-secondary: #F5F5F7;
    --bg-tertiary:  #F0F0F2;
    --bg-raised:    #E5E5EA;

    --text-primary:   #1D1D1F;
    --text-secondary: rgba(29,29,31,0.56);
    --text-faint:     rgba(29,29,31,0.32);

    /* Gold — rich metallic, shimmer via gradient */
    --gold:            #B8860B;
    --gold-light:      #D4A017;
    --gold-bright:     #F0C030;
    --gold-dim:        #8A6408;
    --gold-deep:       #4A3404;
    --gold-glow:       rgba(212,160,23,0.10);
    --gold-glare:      rgba(212,160,23,0.20);
    --gold-border:     rgba(212,160,23,0.25);
    --gold-border-mid: rgba(212,160,23,0.38);

    /* Metallic shimmer gradient — apply to text/elements */
    --gold-gradient: linear-gradient(
        135deg,
        #7A5800 0%,
        #C8940A 22%,
        #E8B820 42%,
        #E8B820 58%,
        #C8940A 78%,
        #7A5800 100%
    );
    --gold-gradient-subtle: linear-gradient(
        135deg,
        #9A6E0A 0%,
        #C8940A 30%,
        #DDB030 50%,
        #C8940A 70%,
        #9A6E0A 100%
    );

    --gold-accent: #B8860B;
    --gold-dim-alias: #8A6408;
    --cta-text:    #FFFFFF;

    --border-subtle:  rgba(212,160,23,0.14);
    --border-mid:     rgba(212,160,23,0.28);
    --section-border: rgba(0,0,0,0.05);
    --stat-border:    rgba(0,0,0,0.06);

    --shadow-heavy: rgba(10,8,4,0.14);
    --shadow-mid:   rgba(10,8,4,0.08);
    --shadow-gold:  rgba(212,160,23,0.22);

    --navbar-bg:          rgba(12,10,8,0.96);
    --hero-grain-opacity: 0.18;
    --img-brightness:     brightness(0.95);

    --font-display: 'EB Garamond', serif;
    --font-body:    'Manrope', sans-serif;
    --transition:   0.38s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* =========================================
   LIGHT MODE
   ========================================= */
/* body.light-mode removed — light is now :root default */
/* =========================================
   DARK MODE TOKEN OVERRIDES
   ========================================= */
body.dark-mode {
    --bg-primary:   #0C0A08;
    --bg-secondary: #131109;
    --bg-tertiary:  #1A1710;
    --bg-raised:    #221E14;

    --text-primary:   #F5F0E8;
    --text-secondary: rgba(245,240,232,0.52);
    --text-faint:     rgba(245,240,232,0.26);

    --gold:            #E8B820;
    --gold-light:      #F5CC40;
    --gold-bright:     #FFE066;
    --gold-dim:        #A88010;
    --gold-deep:       #604800;
    --gold-glow:       rgba(232,184,32,0.12);
    --gold-glare:      rgba(232,184,32,0.24);
    --gold-border:     rgba(232,184,32,0.26);
    --gold-border-mid: rgba(232,184,32,0.38);

    --gold-gradient: linear-gradient(
        135deg,
        #8C6400 0%,
        #D4960C 22%,
        #F0C030 42%,
        #F0C030 58%,
        #D4960C 78%,
        #8C6400 100%
    );
    --gold-gradient-subtle: linear-gradient(
        135deg,
        #A87C08 0%,
        #D4960C 30%,
        #EAC040 50%,
        #D4960C 70%,
        #A87C08 100%
    );

    --gold-accent: #E8B820;
    --gold-dim-alias: #A88010;
    --cta-text:    #0A0800;

    --border-subtle:  rgba(232,184,32,0.12);
    --border-mid:     rgba(232,184,32,0.26);
    --section-border: rgba(245,240,232,0.05);
    --stat-border:    rgba(245,240,232,0.06);

    --shadow-heavy: rgba(0,0,0,0.75);
    --shadow-mid:   rgba(0,0,0,0.50);
    --shadow-gold:  rgba(232,184,32,0.24);

    --navbar-bg:          rgba(12,10,8,0.94);
    --hero-grain-opacity: 1;
    --img-brightness:     brightness(0.82);
}

/* Dark mode navbar links — always light */
body.dark-mode .navbar .left a { color: rgba(245,240,232,0.70) !important; }
body.dark-mode .navbar .left a:hover { color: rgba(245,240,232,1.0) !important; background: rgba(245,240,232,0.07) !important; }
body.dark-mode header.scrolled .navbar .left a { color: rgba(245,240,232,0.75) !important; }
body.dark-mode header.scrolled .navbar .left a:hover { color: rgba(245,240,232,1.0) !important; }
body.dark-mode .right .get-started-btn { color: rgba(245,240,232,0.65) !important; border-color: rgba(245,240,232,0.18) !important; background: transparent !important; }
body.dark-mode .right .get-started-btn:hover { color: rgba(245,240,232,0.95) !important; border-color: rgba(245,240,232,0.30) !important; background: rgba(245,240,232,0.07) !important; }
body.dark-mode header { border-bottom: 2px solid rgba(245,240,232,0.14) !important; }
body.dark-mode .nav-sep { color: rgba(245,240,232,0.25) !important; }
body.dark-mode header.scrolled .nav-sep { color: rgba(245,240,232,0.25) !important; }
body.dark-mode .hamburger { border-color: rgba(245,240,232,0.25) !important; }
body.dark-mode .hamburger span { background: rgba(245,240,232,0.85) !important; }



/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background 0.5s ease, color 0.5s ease;
}

/* =========================================
   THEME TOGGLE
   ========================================= */
.theme-toggle {
    position: fixed; bottom: 32px; right: 32px; z-index: 99999;
    width: 54px; height: 54px; border-radius: 12px;
    border: 1px solid var(--gold-border-mid);
    background: var(--bg-raised);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px var(--shadow-mid);
    transition: background 0.4s ease, border-color 0.4s ease,
                box-shadow 0.3s ease, transform 0.2s ease;
    outline: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
}
.theme-toggle:hover {
    transform: scale(1.06); border-color: var(--gold);
    box-shadow: 0 8px 32px var(--shadow-mid), 0 0 20px var(--shadow-gold);
}
.theme-toggle:active { transform: scale(0.93); }

.toggle-icon {
    position: relative; width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
}
.toggle-icon svg {
    position: absolute; width: 18px; height: 18px;
    fill: none; stroke: var(--gold-accent);
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    transition: opacity 0.32s ease, transform 0.42s cubic-bezier(0.34,1.56,0.64,1);
}
.toggle-icon .icon-moon { opacity: 1; transform: scale(1) rotate(0deg); }
.toggle-icon .icon-sun  { opacity: 0; transform: rotate(90deg) scale(0.4); }
body.dark-mode .toggle-icon .icon-moon { opacity: 0; transform: rotate(-90deg) scale(0.4); }
body.dark-mode .toggle-icon .icon-sun  { opacity: 1; transform: scale(1) rotate(0deg); }

body.dark-mode header          { background: transparent; }
body.dark-mode header.scrolled { background: rgba(12,10,8,0.96); border-bottom-color: var(--gold-border-mid); }


.theme-toggle::after {
    content: attr(data-tooltip);
    position: absolute; right: 60px; bottom: 50%; transform: translateY(50%);
    background: var(--bg-raised); color: var(--text-secondary);
    font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 10px; border-radius: 6px; border: 1px solid var(--gold-border);
    white-space: nowrap; opacity: 0; pointer-events: none !important; transition: opacity 0.2s ease;
}
.theme-toggle:hover::after { opacity: 1; }

@keyframes togglePulse {
    0%   { box-shadow: 0 0 0 0 var(--gold-glare); }
    70%  { box-shadow: 0 0 0 14px rgba(212,160,23,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,160,23,0); }
}
.theme-toggle.pulse { animation: togglePulse 0.65s ease-out; }

/* =========================================
   NAVBAR
   ========================================= */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
    border-bottom: 2px solid rgba(0,0,0,0.18);
    transition: background var(--transition), backdrop-filter var(--transition), border-color 0.4s ease;
}
header.scrolled {
    background: var(--navbar-bg);
    backdrop-filter: blur(24px) saturate(160%);
    border-bottom: 1px solid var(--gold-border-mid);
}
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 52px; height: 68px;
}
.navbar .left, .navbar .right { flex: 1; display: flex; align-items: center; gap: 4px; }
.navbar .right { justify-content: flex-end; gap: 8px; }

.navbar .left a {
    font-family: var(--font-body); font-weight: 700; font-size: 0.76rem;
    letter-spacing: 0.09em; text-transform: uppercase;
    color: #1D1D1F; text-decoration: none;
    padding: 6px 12px; border-radius: 6px;
    transition: color 0.22s ease, background 0.22s ease;
}
.navbar .left a:hover { color: #000000; background: rgba(0,0,0,0.05); }
/* Once scrolled (dark bar) — links go white */
header.scrolled .navbar .left a { color: rgba(245,240,232,0.72); }
header.scrolled .navbar .left a:hover { color: rgba(245,240,232,1.0); background: rgba(245,240,232,0.07); }

.logo { flex: 0 0 auto; display: flex; justify-content: center; }
.logo img { height: 55px; width: auto; transition: opacity 0.3s ease; }
.logo:hover img { opacity: 0.75; }

.right .get-started-btn {
    font-family: var(--font-body); font-size: 0.74rem; font-weight: 700;
    letter-spacing: 0.07em; text-transform: uppercase;
    text-decoration: none; padding: 9px 18px; border-radius: 8px;
    transition: all 0.22s ease; display: inline-block;
    color: #1D1D1F;
    border: 1px solid rgba(0,0,0,0.30); background: transparent;
}
.right .get-started-btn:hover {
    color: #000000;
    border-color: rgba(0,0,0,0.50); background: rgba(0,0,0,0.04);
}
header.scrolled .right .get-started-btn {
    color: rgba(245,240,232,0.60);
    border-color: rgba(245,240,232,0.14);
}
header.scrolled .right .get-started-btn:hover {
    color: rgba(245,240,232,0.9);
    border-color: rgba(245,240,232,0.25); background: rgba(245,240,232,0.07);
}
/* Gold CTA — white text always, scrolled or not */
.right .get-started-btn:last-of-type,
header.scrolled .right .get-started-btn:last-of-type {
    color: #FFFFFF !important;
    border-color: transparent !important;
    background: var(--gold) !important;
}
.right .get-started-btn:last-of-type:hover,
header.scrolled .right .get-started-btn:last-of-type:hover {
    color: #FFFFFF !important;
    background: var(--gold-light) !important;
    box-shadow: 0 4px 20px var(--shadow-gold);
}
.right .get-started-btn:last-of-type {
    background: var(--gold); color: var(--cta-text);
    border-color: transparent; font-weight: 700;
}
.right .get-started-btn:last-of-type:hover {
    background: var(--gold-light); transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--shadow-gold);
}
body.dark-mode .right .get-started-btn:last-of-type { color: #FFFFFF !important; background: var(--gold) !important; border-color: transparent !important; }

.language-selector { margin-left: 12px; }
.lang-dropdown {
    background: transparent; border: 1px solid rgba(29,29,31,0.16);
    color: rgba(29,29,31,0.55); font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.07em;
    padding: 6px 10px; border-radius: 6px; cursor: pointer; outline: none;
    transition: border-color 0.22s ease, color 0.22s ease;
}
.lang-dropdown:hover, .lang-dropdown:focus { border-color: var(--gold); color: rgba(29,29,31,0.9); }
.lang-dropdown option { background: #1A1710; color: #F5F0E8; }
header.scrolled .lang-dropdown { color: rgba(245,240,232,0.55); border-color: rgba(245,240,232,0.16); }
header.scrolled .lang-dropdown:hover { color: rgba(245,240,232,0.9); border-color: var(--gold); }
body.dark-mode .lang-dropdown { color: rgba(245,240,232,0.6); border-color: rgba(245,240,232,0.2); }

.nav-sep { color: rgba(0,0,0,0.30); font-size: 1rem; user-select: none; line-height: 1; }
header.scrolled .nav-sep { color: rgba(245,240,232,0.22); }

/* =========================================
   HERO — centered
   ========================================= */
.hero {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 130px 72px 88px;
    overflow: hidden;
    background: var(--bg-primary);
    transition: background 0.5s ease;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(212,160,23,0.06) 0%, transparent 70%);
    pointer-events: none; z-index: 1;
}
.hero::after {
    content: '';
    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.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.032'/%3E%3C/svg%3E");
    opacity: var(--hero-grain-opacity);
    pointer-events: none; z-index: 1;
}
body.dark-mode .hero {
    background: var(--bg-primary);
}
.hero > * { position: relative; z-index: 3; }

.hero-eyebrow {
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 32px;
    opacity: 0; animation: fadeUp 0.7s 0.15s forwards;
    display: inline-flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    display: inline-block; width: 22px; height: 1px; background: var(--gold); opacity: 0.55;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.6rem, 8.5vw, 8.5rem);
    font-weight: 500; line-height: 1.0; letter-spacing: -0.01em;
    color: #1D1D1F; margin-bottom: 32px;
    opacity: 0; animation: fadeUp 0.85s 0.3s forwards;
    max-width: 960px; text-align: center;
    transition: color 0.5s ease;
}
body.dark-mode .hero-title { color: #F5F0E8; }
.hero-title .highlight { font-weight: 800; /* shimmer applied via METALLIC block below */ }
.hero-title .highlight-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold-light);
    opacity: 0.4; font-weight: 800;
}

.hero-subtext {
    font-family: var(--font-body); font-size: 1.05rem; font-weight: 400;
    color: rgba(29,29,31,0.62); letter-spacing: 0.01em;
    max-width: 460px; margin: 0 auto 52px; line-height: 1.78;
    opacity: 0; animation: fadeUp 0.85s 0.45s forwards;
    text-align: center; transition: color 0.5s ease;
}
body.dark-mode .hero-subtext { color: rgba(245,240,232,0.55); }

.cta-button {
    font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    border: 1px solid var(--gold-border-mid);
    padding: 15px 40px; border-radius: 8px;
    background: var(--gold-glow);
    transition: background 0.3s ease, border-color 0.3s ease,
                color 0.3s ease, box-shadow 0.3s ease;
    opacity: 0; animation: fadeUp 0.85s 0.6s forwards; display: inline-block;
}
.cta-button:hover {
    background: var(--gold); border-color: var(--gold);
    color: var(--cta-text); box-shadow: 0 0 32px var(--shadow-gold);
}
body.dark-mode .cta-button:hover { color: #0C0A08; }

.video-container {
    position: relative; width: min(900px, 90vw); border-radius: 14px; overflow: hidden;
    box-shadow: 0 40px 90px var(--shadow-heavy), 0 0 0 1px var(--gold-border);
    opacity: 0; animation: fadeUp 1s 0.75s forwards; margin-bottom: 52px;
    transition: box-shadow 0.4s ease;
}
.hero-video { width: 100%; height: auto; display: block; opacity: 0; visibility: hidden; transition: opacity 2s ease-in-out; }
#play-button {
    display: none; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    padding: 12px 28px; font-family: var(--font-body); font-size: 0.78rem;
    font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    background: rgba(212,160,23,0.14); color: var(--gold);
    border: 1px solid var(--gold-border-mid); border-radius: 8px;
    cursor: pointer; backdrop-filter: blur(12px); transition: background 0.3s ease;
}
#play-button:hover { background: rgba(212,160,23,0.28); }

/* =========================================
   FEATURE SECTIONS
   ========================================= */
.fade-section {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; overflow: hidden;
    background: var(--bg-secondary); border-top: 1px solid var(--section-border);
    transition: background 0.5s ease, border-color 0.5s ease;
}
#Special-design-1 .image-container,
#Special-design-2 .image-container { overflow: hidden; position: relative; }
#Special-design-1 .image-container img,
#Special-design-2 .image-container img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
    filter: var(--img-brightness);
}
.fade-section:hover .image-container img { transform: scale(1.035); }
#Special-design-1 .image-container::after,
#Special-design-2 .image-container::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(212,160,23,0.05) 0%, transparent 55%);
    pointer-events: none;
}
.text-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 72px; position: relative;
}
.text-content::before {
    content: ''; position: absolute; top: 80px; left: 72px;
    width: 36px; height: 2px; background: var(--gold);
    border-radius: 2px; transition: background 0.5s ease;
}
.text-content h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(2.6rem, 3.8vw, 4.2rem);
    line-height: 1.06; color: var(--text-primary);
    margin-top: 28px; margin-bottom: 20px; letter-spacing: -0.015em;
    transition: color 0.5s ease;
}
.text-content h3 .highlight-text { color: var(--gold); font-weight: 800; }
.text-content p {
    font-family: var(--font-body); font-weight: 400; font-size: 1rem;
    color: var(--text-secondary); line-height: 1.82; max-width: 380px;
    transition: color 0.5s ease;
}
#Special-design-1 .image-container,
#Special-design-1 .text-content { opacity: 0; transform: translateX(44px); transition: opacity 0.9s ease, transform 0.9s ease; }
#Special-design-2 .image-container,
#Special-design-2 .text-content { opacity: 0; transform: translateX(-44px); transition: opacity 0.9s ease, transform 0.9s ease; }
#Special-design-1.visible .image-container, #Special-design-1.visible .text-content,
#Special-design-2.visible .image-container, #Special-design-2.visible .text-content { opacity: 1; transform: translateX(0); }

/* =========================================
   STATS
   ========================================= */
.stats-section {
    background: var(--bg-primary); padding: 0;
    border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
    display: grid; grid-template-columns: repeat(3,1fr);
    transition: background 0.5s ease, border-color 0.5s ease;
}
.stat-item {
    padding: 72px 56px; text-align: left;
    border-right: 1px solid var(--stat-border);
    position: relative; overflow: hidden; transition: background 0.32s ease;
}
.stat-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.stat-item:hover { background: var(--bg-secondary); }
.stat-item:hover::before { transform: scaleX(1); }
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-display); display: block;
    font-size: clamp(3rem,4.5vw,5rem); font-weight: 600;
    line-height: 1; margin-bottom: 12px; letter-spacing: -0.03em;
    transition: color 0.5s ease;
}
.stat-label {
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-faint); transition: color 0.5s ease;
}

/* =========================================
   ABOUT
   ========================================= */
#about {
    padding: 130px 72px; max-width: 100%; text-align: center;
    background: var(--bg-tertiary); border-top: 1px solid var(--section-border);
}
#about h3 {
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 36px; transition: color 0.5s ease;
    display: inline-flex; align-items: center; gap: 14px;
}
#about h3::before, #about h3::after { content: ''; width: 22px; height: 1px; background: var(--gold); opacity: 0.5; }
#about p {
    font-family: var(--font-display); font-size: clamp(1.5rem,2.6vw,2.3rem);
    font-weight: 400; line-height: 1.6; font-style: italic; color: var(--text-secondary);
    max-width: 820px; margin: 0 auto; transition: color 0.5s ease;
}

/* =========================================
   MAP
   ========================================= */
.map-section {
    position: relative; padding: 100px 72px;
    background: var(--bg-primary); border-top: 1px solid var(--section-border);
}
.map-section h3 {
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 24px; transition: color 0.5s ease;
    display: flex; align-items: center; gap: 14px;
}
.map-section h3::before { content: ''; width: 22px; height: 1px; background: var(--gold); opacity: 0.5; }
#map-preview {
    border: 1px solid var(--gold-border); border-radius: 14px; overflow: hidden;
    box-shadow: 0 24px 64px var(--shadow-mid), 0 0 0 1px var(--gold-border);
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
#google-map { height: 420px; width: 100%; display: block; }

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: var(--bg-secondary); border-top: 1px solid var(--border-subtle);
    padding: 40px 72px;
    display: flex !important; align-items: center; justify-content: center;
    flex-direction: column !important; gap: 10px;
    transition: background 0.5s ease, border-color 0.5s ease;
}
footer p {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.1em; color: var(--text-faint); text-transform: uppercase;
    transition: color 0.5s ease;
}
.footer-legal {
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 400;
    letter-spacing: 0.08em; color: var(--text-faint);
}
.footer-legal a { color: var(--text-faint); text-decoration: none; transition: color 0.25s ease; }
.footer-legal a:hover { color: var(--gold); }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   HAMBURGER
   ========================================= */
.hamburger {
    display: none; flex-direction: column; justify-content: center;
    align-items: center; gap: 5px; width: 44px; height: 44px;
    background: none; border: 1px solid rgba(0,0,0,0.22);
    border-radius: 8px; cursor: pointer; padding: 4px; z-index: 10001;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.hamburger:hover { border-color: var(--gold); background: var(--gold-glow); }
.hamburger span {
    display: block; width: 18px; height: 1.5px;
    background: #1D1D1F; border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.25s ease, background 0.25s ease;
    transform-origin: center;
}
header.scrolled .hamburger { border-color: rgba(245,240,232,0.30); }
header.scrolled .hamburger span { background: rgba(245,240,232,0.9); }
.hamburger.open { border-color: var(--gold); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold); }

/* =========================================
   MOBILE NAV
   ========================================= */
.mobile-nav {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000; background: rgba(12,10,8,0.97);
    backdrop-filter: blur(24px) saturate(160%);
    flex-direction: column; justify-content: center; align-items: center; gap: 0;
    opacity: 0; pointer-events: none; transition: opacity 0.32s ease;
}
.mobile-nav-close {
    position: absolute; top: 16px; right: 16px;
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    background: none; border: 1px solid var(--gold-border); border-radius: 8px;
    cursor: pointer; color: var(--gold); font-size: 1.3rem;
    font-family: var(--font-body); transition: background 0.22s ease, border-color 0.22s ease;
}
.mobile-nav-close:hover { background: var(--gold-glow); border-color: var(--gold); }
body.dark-mode .mobile-nav { background: rgba(12,10,8,0.98); }
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
    font-family: var(--font-display); font-size: clamp(1.9rem,7vw,2.6rem);
    font-weight: 700; letter-spacing: -0.025em;
    color: rgba(245,240,232,0.6); text-decoration: none;
    padding: 14px 0; text-align: center; width: 100%; display: block;
    transition: color 0.2s ease, transform 0.2s ease;
}
.mobile-nav a:hover { color: var(--gold); transform: translateX(4px); }
.mobile-nav .mobile-divider { width: 28px; height: 1px; background: var(--gold-border); margin: 8px 0; }
.mobile-nav .mobile-cta {
    margin-top: 28px; font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--cta-text) !important; background: var(--gold);
    padding: 14px 44px !important; border-radius: 8px; width: auto !important;
    transition: background 0.3s ease, box-shadow 0.3s ease !important;
}
.mobile-nav .mobile-cta:hover {
    background: var(--gold-light) !important;
    box-shadow: 0 0 28px var(--shadow-gold) !important;
    transform: none !important;
}
body.dark-mode .mobile-nav .mobile-cta { color: #0C0A08 !important; }
.mobile-nav .mobile-lang { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.mobile-nav .mobile-lang select {
    background: transparent; border: 1px solid var(--gold-border);
    color: rgba(245,240,232,0.55); font-family: var(--font-body);
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
    padding: 8px 14px; border-radius: 6px; cursor: pointer; outline: none;
}
.mobile-nav .mobile-lang select option { background: #1A1710; color: #F5F0E8; }

.mobile-nav.open a,
.mobile-nav.open .mobile-divider,
.mobile-nav.open .mobile-lang { animation: mobileNavFade 0.4s ease forwards; }
.mobile-nav.open a:nth-child(1) { animation-delay: 0.04s; }
.mobile-nav.open a:nth-child(2) { animation-delay: 0.09s; }
.mobile-nav.open .mobile-divider { animation-delay: 0.12s; }
.mobile-nav.open a:nth-child(4) { animation-delay: 0.15s; }
.mobile-nav.open a:nth-child(5) { animation-delay: 0.18s; }
.mobile-nav.open a:nth-child(6) { animation-delay: 0.21s; }
.mobile-nav.open .mobile-cta    { animation-delay: 0.27s; }
.mobile-nav.open .mobile-lang   { animation-delay: 0.32s; }
@keyframes mobileNavFade {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   NEW SECTIONS (from index.html inline styles)
   ========================================= */
.ticker-wrap          { background: var(--gold) !important; }
.ticker-item          { color: #0C0A08 !important; font-family: var(--font-body) !important; font-weight: 600 !important; }

.section-cta-link     { color: var(--gold) !important; border-color: var(--gold-border-mid) !important; font-family: var(--font-body) !important; font-weight: 600 !important; }
.section-cta-link:hover { border-color: var(--gold) !important; }

.cta-primary {
    background: var(--gold) !important; color: var(--cta-text) !important;
    font-family: var(--font-body) !important; font-weight: 700 !important;
    border-radius: 8px !important; letter-spacing: 0.12em !important;
}
.cta-primary:hover {
    background: var(--gold-light) !important;
    box-shadow: 0 0 32px var(--shadow-gold) !important;
    transform: translateY(-2px) !important;
}
body.dark-mode .cta-primary { color: #0C0A08 !important; }
.cta-ghost { color: var(--text-secondary) !important; font-family: var(--font-body) !important; font-weight: 500 !important; }
.cta-ghost:hover { color: var(--gold) !important; }

/* Hero inner alignment — centered */
.hero-inner {
    display: flex !important; flex-direction: column !important;
    align-items: center !important; justify-content: center !important;
    text-align: center !important;
    padding: 130px 72px 88px !important;
    width: 100% !important;
}
.hero-actions { justify-content: center !important; }

.how-section      { background: var(--bg-tertiary); border-top: 1px solid var(--section-border); }
.how-eyebrow      { color: var(--gold) !important; font-family: var(--font-body) !important; font-weight: 600 !important; }
.how-eyebrow::before { background: var(--gold) !important; }
.how-grid         { background: transparent !important; gap: 1px; }
.how-card         { background: var(--bg-raised) !important; border: 1px solid var(--section-border); }
.how-card:hover   { background: var(--bg-secondary) !important; }
.how-number       { color: var(--gold) !important; opacity: 0.18 !important; font-family: var(--font-display) !important; font-weight: 800 !important; }
.how-card h4      { font-family: var(--font-display) !important; font-weight: 700 !important; letter-spacing: -0.02em !important; color: var(--text-primary) !important; }
.how-card p       { font-family: var(--font-body) !important; color: var(--text-secondary) !important; }

.venue-strip      { background: var(--bg-primary); border-top: 1px solid var(--section-border); }
.venue-strip-label { color: var(--text-faint) !important; font-family: var(--font-body) !important; font-weight: 600 !important; letter-spacing: 0.22em !important; }
.venue-name       { color: var(--text-faint) !important; font-family: var(--font-display) !important; font-weight: 600 !important; font-size: 0.88rem !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; }
.venue-name:hover { color: var(--gold) !important; }

.about-label      { color: var(--gold) !important; font-family: var(--font-body) !important; font-weight: 600 !important; }
.about-body h3    { font-family: var(--font-display) !important; font-weight: 500 !important; color: var(--text-secondary) !important; }
.about-body h3 strong { color: var(--text-primary) !important; font-weight: 700 !important; }
.about-link       { color: var(--text-faint) !important; font-family: var(--font-body) !important; font-weight: 500 !important; }
.about-link:hover { color: var(--gold) !important; }

.map-header-left h2 { font-family: var(--font-display) !important; font-weight: 800 !important; letter-spacing: -0.03em !important; color: var(--text-primary) !important; }
.map-cta          { color: var(--gold) !important; border-color: var(--gold-border-mid) !important; font-family: var(--font-body) !important; font-weight: 600 !important; }
.map-cta:hover    { background: var(--gold-glow) !important; border-color: var(--gold) !important; }

.footer-col-label { color: var(--gold) !important; font-family: var(--font-body) !important; font-weight: 600 !important; }
.footer-links a   { font-family: var(--font-body) !important; font-weight: 400 !important; }
.footer-links a:hover { color: var(--gold) !important; }
.footer-brand p   { font-family: var(--font-body) !important; }

.reveal           { opacity: 0; transform: translateY(28px); transition: opacity 0.82s ease, transform 0.82s ease; }
.reveal.visible   { opacity: 1; transform: translateY(0); }
.reveal-delay-1   { transition-delay: 0.13s; }
.reveal-delay-2   { transition-delay: 0.26s; }
.reveal-delay-3   { transition-delay: 0.39s; }


/* =========================================
   METALLIC SHIMMER — gradient on key elements
   ========================================= */

/* Ensure base hero title text is solid */
.hero-title { -webkit-text-fill-color: #1D1D1F; }
body.dark-mode .hero-title { -webkit-text-fill-color: #F5F0E8; }

/* Hero title gold word — metallic shimmer */
.hero-title .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    display: inline-block;
}

/* Stat numbers */
.stat-number {
    background: var(--gold-gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Feature section highlighted words */
.highlight-text {
    background: var(--gold-gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Hero eyebrow — solid gold, not gradient (too small for gradient) */
.hero-eyebrow { color: var(--gold-light); }

/* CTA button — metallic border + text */
.cta-button {
    border-color: var(--gold-border-mid);
    background: var(--gold-glow);
}

/* Gold border shimmer on hover for stat items */
.stat-item::before {
    background: var(--gold-gradient);
}

/* Text content gold rule */
.text-content::before {
    background: var(--gold-gradient-subtle);
}

/* Dark mode: gradient still works, just brighter values from dark token */
body.dark-mode .hero-title .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
body.dark-mode .stat-number {
    background: var(--gold-gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
body.dark-mode .highlight-text {
    background: var(--gold-gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   RESPONSIVE — TABLET
   ========================================= */
@media (max-width: 1024px) {
    .navbar          { padding: 0 32px; }
    .hero            { padding: 130px 48px 80px; }
    .text-content    { padding: 64px 52px; }
    .text-content::before { left: 52px; top: 64px; }
    .stat-item       { padding: 56px 40px; }
    .map-section     { padding: 80px 48px; }
    #about           { padding: 100px 48px; }
}

/* =========================================
   RESPONSIVE — MOBILE
   ========================================= */
@media (max-width: 768px) {
    .navbar .left, .navbar .right { display: none; }
    .hamburger  { display: flex; }
    .mobile-nav { display: flex; }
    .navbar     { padding: 0 20px; height: 60px; justify-content: space-between; }
    .logo img   { height: 30px; }

    .hero       { padding: 110px 28px 72px; }
    .hero::after { display: none; }
    .hero-inner { padding: 110px 28px 72px !important; }
    .hero-subtext { max-width: 100%; }
    .hero-actions { flex-direction: column !important; align-items: center !important; gap: 16px !important; }

    .fade-section { grid-template-columns: 1fr; min-height: auto; }
    #Special-design-1 .image-container,
    #Special-design-2 .image-container { height: 300px; }
    #Special-design-2 { direction: ltr; }
    .text-content { padding: 52px 28px; }
    .text-content::before { left: 28px; top: 52px; }

    .stats-section   { grid-template-columns: 1fr !important; }
    .stat-item       { border-right: none; border-bottom: 1px solid var(--stat-border); padding: 44px 28px; }
    .stat-item:last-child { border-bottom: none; }

    #about           { padding: 80px 28px; }
    .map-section     { padding: 80px 28px !important; }
    footer           { padding: 36px 28px; }

    .theme-toggle    { bottom: 20px; right: 20px; width: 56px; height: 56px; }
    .theme-toggle::after { display: none; }

    .how-section     { padding: 80px 28px !important; }
    .how-grid        { grid-template-columns: 1fr !important; }
    .venue-strip     { padding: 44px 28px !important; flex-direction: column !important; align-items: flex-start !important; gap: 24px !important; }
    .venue-strip-label { border-right: none !important; margin-right: 0 !important; padding-right: 0 !important; border-bottom: 1px solid var(--section-border) !important; padding-bottom: 18px !important; width: 100% !important; }
    .about-inner     { grid-template-columns: 1fr !important; gap: 28px !important; padding: 80px 28px !important; }
    .map-header      { flex-direction: column !important; align-items: flex-start !important; gap: 24px !important; }
    .footer-top      { grid-template-columns: 1fr !important; gap: 40px !important; padding: 60px 28px 40px !important; }
    .footer-bottom   { flex-direction: column !important; gap: 10px !important; text-align: center !important; padding: 24px 28px !important; }
    .footer-legal    { text-align: center !important; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 3.1rem !important; letter-spacing: -0.03em !important; }
    .navbar     { padding: 0 16px; height: 56px; }
    .logo img   { height: 26px; }
}

/* =========================================
   PREMIUM MOTION SUPPORT — LENIS + FILM GRAIN
   ========================================= */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    pointer-events: none;
    opacity: 0.075;
    mix-blend-mode: soft-light;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='0.55'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    animation: adbelivFilmGrain 0.9s steps(2) infinite;
}

body.dark-mode::after {
    opacity: 0.105;
}

@keyframes adbelivFilmGrain {
    0%   { transform: translate3d(0, 0, 0); }
    20%  { transform: translate3d(-2%, 1%, 0); }
    40%  { transform: translate3d(1%, -1%, 0); }
    60%  { transform: translate3d(-1%, -2%, 0); }
    80%  { transform: translate3d(2%, 2%, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.cta-primary {
    will-change: transform;
    transform-style: preserve-3d;
}

.reveal,
#Special-design-1 .image-container,
#Special-design-1 .text-content,
#Special-design-2 .image-container,
#Special-design-2 .text-content,
#Special-design-1 .image-container img,
#Special-design-2 .image-container img {
    will-change: transform, opacity;
}

#Special-design-1 .image-container img,
#Special-design-2 .image-container img {
    min-height: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html.lenis,
    html.lenis body,
    .lenis.lenis-smooth {
        scroll-behavior: auto !important;
    }

    body::after {
        animation: none;
    }

    .reveal,
    #Special-design-1 .image-container,
    #Special-design-1 .text-content,
    #Special-design-2 .image-container,
    #Special-design-2 .text-content {
        transition: none !important;
        transform: none !important;
    }
}

/* =========================================
   OPTIMIZED IMMERSIVE HERO — Premium but fast
   ========================================= */
body::after {
    opacity: 0.045 !important;
    animation: none !important;
    background-size: 220px 220px !important;
}
body.dark-mode::after { opacity: 0.065 !important; }

.hero.hero-immersive {
    min-height: 100svh !important;
    isolation: isolate !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 50% 46%, rgba(232,184,32,0.13), transparent 34%),
        radial-gradient(circle at 16% 76%, rgba(184,134,11,0.12), transparent 34%),
        linear-gradient(135deg, #070604 0%, #0c0a08 42%, #141008 100%) !important;
    contain: paint !important;
}

body:not(.dark-mode) .hero.hero-immersive {
    background:
        radial-gradient(circle at 50% 46%, rgba(184,134,11,0.13), transparent 34%),
        radial-gradient(circle at 16% 76%, rgba(184,134,11,0.09), transparent 34%),
        linear-gradient(135deg, #fbfaf7 0%, #f1eee6 48%, #ffffff 100%) !important;
}

.hero.hero-immersive::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0%, rgba(232,184,32,0.08) 49.8%, rgba(232,184,32,0.28) 50%, rgba(232,184,32,0.08) 50.2%, transparent 100%),
        radial-gradient(ellipse at 50% 100%, rgba(232,184,32,0.12), transparent 52%);
    opacity: 0.72;
}

.hero.hero-immersive::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.38), transparent 22%, transparent 70%, rgba(0,0,0,0.38)),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 90px);
    opacity: 0.9;
}

body:not(.dark-mode) .hero.hero-immersive::after {
    background:
        linear-gradient(to bottom, rgba(255,255,255,0.35), transparent 24%, transparent 70%, rgba(255,255,255,0.55)),
        repeating-linear-gradient(90deg, rgba(0,0,0,0.025) 0 1px, transparent 1px 90px);
    opacity: 0.72;
}

.hero-cinema {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    transform: translateZ(0);
}

.hero-inner {
    z-index: 3 !important;
    width: min(100% - 40px, 980px) !important;
    margin: 0 auto !important;
    padding: 138px 20px 104px !important;
    will-change: transform;
}

.hero.hero-immersive .hero-eyebrow {
    opacity: 1 !important;
    animation: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 10px 16px !important;
    border: 1px solid rgba(232,184,32,0.28) !important;
    border-radius: 999px !important;
    background: rgba(232,184,32,0.055) !important;
    color: var(--gold-light) !important;
    box-shadow: 0 10px 34px rgba(232,184,32,0.09) !important;
}

.hero.hero-immersive .hero-title {
    opacity: 1 !important;
    animation: none !important;
    color: #F5F0E8 !important;
    -webkit-text-fill-color: #F5F0E8 !important;
    font-size: clamp(4.4rem, 9vw, 9.4rem) !important;
    line-height: 0.91 !important;
    letter-spacing: -0.045em !important;
    max-width: 1040px !important;
    text-shadow: 0 18px 58px rgba(0,0,0,0.34) !important;
}

body:not(.dark-mode) .hero.hero-immersive .hero-title {
    color: #1D1D1F !important;
    -webkit-text-fill-color: #1D1D1F !important;
    text-shadow: 0 18px 54px rgba(93,62,0,0.12) !important;
}

.hero.hero-immersive .hero-title .highlight {
    background: linear-gradient(105deg, #8a6200 0%, #c88908 22%, #ffe780 45%, #c88908 66%, #8a6200 100%) !important;
    background-size: 190% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: none !important;
    animation: none !important;
}

.hero.hero-immersive .hero-title .highlight::after { display: none !important; }

.hero.hero-immersive .hero-subtext {
    opacity: 1 !important;
    animation: none !important;
    color: rgba(245,240,232,0.68) !important;
    max-width: 560px !important;
    font-size: clamp(1rem, 1.35vw, 1.18rem) !important;
    margin-bottom: 36px !important;
}

body:not(.dark-mode) .hero.hero-immersive .hero-subtext { color: rgba(29,29,31,0.62) !important; }

.hero.hero-immersive .hero-actions {
    opacity: 1 !important;
    animation: none !important;
    gap: 16px !important;
}

.hero.hero-immersive .cta-primary {
    position: relative !important;
    border: 1px solid rgba(255,224,102,0.42) !important;
    border-radius: 999px !important;
    padding: 16px 32px !important;
    color: #0A0800 !important;
    background: linear-gradient(135deg, #ffe780 0%, #d69a0d 45%, #ffda57 100%) !important;
    box-shadow: 0 14px 34px rgba(232,184,32,0.18), inset 0 1px 0 rgba(255,255,255,0.5) !important;
    overflow: hidden !important;
    will-change: transform !important;
}

.hero.hero-immersive .cta-primary::before {
    content: '';
    position: absolute;
    inset: -70% -35%;
    background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.62) 50%, transparent 64%);
    transform: translateX(-88%) rotate(8deg);
    transition: transform 0.62s ease;
}
.hero.hero-immersive .cta-primary:hover::before { transform: translateX(88%) rotate(8deg); }

.hero.hero-immersive .cta-ghost {
    border: 1px solid rgba(245,240,232,0.14) !important;
    border-radius: 999px !important;
    padding: 14px 25px !important;
    color: rgba(245,240,232,0.72) !important;
    background: rgba(255,255,255,0.035) !important;
    backdrop-filter: none !important;
}
body:not(.dark-mode) .hero.hero-immersive .cta-ghost {
    color: rgba(29,29,31,0.68) !important;
    background: rgba(255,255,255,0.45) !important;
    border-color: rgba(29,29,31,0.10) !important;
}

.hero-ambient {
    position: absolute;
    width: 34vw;
    height: 34vw;
    min-width: 300px;
    min-height: 300px;
    border-radius: 50%;
    opacity: 0.42;
    background: radial-gradient(circle, rgba(232,184,32,0.22), rgba(184,134,11,0.07) 48%, transparent 72%);
    transform: translateZ(0);
}
.hero-ambient-left { left: -10vw; bottom: 8vh; }
.hero-ambient-right { right: -12vw; top: 10vh; opacity: 0.32; }

.hero-gold-line {
    position: absolute;
    height: 1px;
    width: min(520px, 42vw);
    background: linear-gradient(90deg, transparent, rgba(255,224,102,0.46), transparent);
    opacity: 0.48;
}
.hero-gold-line-one { left: 8vw; top: 28vh; transform: rotate(-12deg); }
.hero-gold-line-two { right: 8vw; bottom: 25vh; transform: rotate(-12deg); opacity: 0.34; }

.hero-perspective-grid {
    position: absolute;
    left: 50%;
    bottom: -22vh;
    width: 138vw;
    height: 55vh;
    transform: translateX(-50%) rotateX(68deg);
    transform-origin: center bottom;
    background:
        linear-gradient(rgba(232,184,32,0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,184,32,0.12) 1px, transparent 1px);
    background-size: 76px 76px;
    opacity: 0.22;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.78), transparent 72%);
}

.hero-light-ring {
    position: absolute;
    left: 50%;
    top: 46%;
    width: min(760px, 72vw);
    height: min(760px, 72vw);
    border-radius: 50%;
    border: 1px solid rgba(232,184,32,0.10);
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 90px rgba(232,184,32,0.035), 0 0 90px rgba(232,184,32,0.035);
    opacity: 0.86;
}

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 6;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.46);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
body:not(.dark-mode) .hero-scroll-cue { color: rgba(29,29,31,0.42); }
.hero-scroll-cue span {
    width: 24px;
    height: 38px;
    border: 1px solid rgba(232,184,32,0.34);
    border-radius: 999px;
    position: relative;
}
.hero-scroll-cue span::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 8px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold-light);
    transform: translateX(-50%);
    animation: adbelivScrollDot 1.7s ease-in-out infinite;
}

@keyframes adbelivScrollDot {
    0% { transform: translate(-50%, 0); opacity: 0; }
    25% { opacity: 1; }
    100% { transform: translate(-50%, 16px); opacity: 0; }
}

@media (max-width: 768px) {
    .hero.hero-immersive { min-height: 100svh !important; }
    .hero-inner { width: min(100% - 28px, 720px) !important; padding: 116px 14px 92px !important; }
    .hero.hero-immersive .hero-title { font-size: clamp(3.4rem, 15vw, 5.5rem) !important; line-height: 0.94 !important; }
    .hero.hero-immersive .hero-eyebrow { font-size: 0.56rem !important; letter-spacing: 0.18em !important; padding: 9px 12px !important; }
    .hero.hero-immersive .hero-subtext { font-size: 0.95rem !important; }
    .hero-gold-line { display: none; }
    .hero-perspective-grid { height: 44vh; bottom: -17vh; opacity: 0.18; }
    .hero-light-ring { width: 92vw; height: 92vw; opacity: 0.55; }
    .hero-scroll-cue { bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero.hero-immersive .hero-title .highlight,
    .hero-scroll-cue span::after {
        animation: none !important;
    }
    .hero-inner,
    .hero-light-ring,
    .cta-primary,
    .reveal,
    #Special-design-1 .image-container img,
    #Special-design-2 .image-container img {
        will-change: auto !important;
    }
}


/* =========================================
   ADBELIV — BLENDED IMAGE FEATURE SECTIONS
   Makes Reach / Elevate sit inside half of the images, with premium gradient blending.
   ========================================= */
.fade-section.feature-immersive {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    min-height: clamp(620px, 72vw, 860px) !important;
    isolation: isolate !important;
    overflow: hidden !important;
    background: #080604 !important;
    border-top: 1px solid rgba(232,184,32,0.16) !important;
}

.fade-section.feature-immersive .image-container {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    opacity: 1 !important;
    transform: none !important;
    z-index: 0 !important;
}

.fade-section.feature-immersive .image-container img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    filter: brightness(0.82) contrast(1.08) saturate(1.08) !important;
    transform: none !important;
    transform-origin: center !important;
}

.fade-section.feature-immersive:hover .image-container img {
    transform: none !important;
}

.fade-section.feature-immersive::before,
.fade-section.feature-immersive::after,
.fade-section.feature-immersive .feature-atmosphere {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* Overall cinematic depth */
.fade-section.feature-immersive::before {
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.28), transparent 28%, rgba(0,0,0,0.34) 100%),
        radial-gradient(circle at 50% 45%, rgba(232,184,32,0.08), transparent 46%);
}

/* Thin premium gold details */
.fade-section.feature-immersive::after {
    opacity: 0.55;
    background:
        linear-gradient(90deg, transparent 0%, rgba(232,184,32,0.18) 50%, transparent 100%),
        repeating-linear-gradient(90deg, rgba(255,224,102,0.024) 0 1px, transparent 1px 112px);
    mix-blend-mode: screen;
}

/* Right text over image for Reach */
.feature-immersive--reach {
    justify-content: flex-end !important;
}
.feature-immersive--reach .feature-atmosphere {
    background:
        linear-gradient(90deg,
            rgba(0,0,0,0.06) 0%,
            rgba(0,0,0,0.20) 36%,
            rgba(0,0,0,0.74) 58%,
            rgba(0,0,0,0.96) 100%),
        radial-gradient(ellipse at 74% 48%, rgba(232,184,32,0.14), transparent 44%);
}

/* Left text over image for Elevate */
.feature-immersive--elevate {
    justify-content: flex-start !important;
}
.feature-immersive--elevate .feature-atmosphere {
    background:
        linear-gradient(90deg,
            rgba(0,0,0,0.98) 0%,
            rgba(0,0,0,0.78) 36%,
            rgba(0,0,0,0.30) 62%,
            rgba(0,0,0,0.08) 100%),
        radial-gradient(ellipse at 24% 45%, rgba(232,184,32,0.16), transparent 48%);
}

.fade-section.feature-immersive .feature-copy {
    position: relative !important;
    z-index: 3 !important;
    width: min(50%, 760px) !important;
    min-height: inherit !important;
    padding: clamp(70px, 8vw, 130px) clamp(48px, 6vw, 110px) !important;
    opacity: 0 !important;
    transform: translateY(36px) !important;
    transition: opacity 0.9s ease, transform 0.9s ease !important;
    background: transparent !important;
}

#Special-design-1.visible .feature-copy,
#Special-design-2.visible .feature-copy {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.fade-section.feature-immersive .feature-copy::before {
    top: clamp(54px, 7vw, 104px) !important;
    left: clamp(48px, 6vw, 110px) !important;
    width: 54px !important;
    height: 1px !important;
    background: linear-gradient(90deg, #ffe780, #b8860b, transparent) !important;
    opacity: 0.9 !important;
}

.feature-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 0 0 22px;
    padding: 8px 13px;
    border: 1px solid rgba(232,184,32,0.28);
    border-radius: 999px;
    background: rgba(232,184,32,0.07);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 18px 46px rgba(232,184,32,0.08);
}

.fade-section.feature-immersive .feature-copy h3 {
    margin-top: 0 !important;
    margin-bottom: 28px !important;
    color: #F5F0E8 !important;
    -webkit-text-fill-color: #F5F0E8 !important;
    font-family: var(--font-display) !important;
    font-size: clamp(4.2rem, 6.8vw, 8.4rem) !important;
    font-weight: 500 !important;
    line-height: 0.92 !important;
    letter-spacing: -0.055em !important;
    text-shadow: 0 22px 70px rgba(0,0,0,0.52) !important;
}

.fade-section.feature-immersive .feature-copy h3 .highlight-text {
    background: linear-gradient(105deg, #9c6a00 0%, #d89c0d 24%, #ffe780 48%, #d89c0d 72%, #9c6a00 100%) !important;
    background-size: 180% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-style: italic !important;
    font-weight: 700 !important;
}

.fade-section.feature-immersive .feature-copy p {
    max-width: 520px !important;
    margin-bottom: 34px !important;
    color: rgba(245,240,232,0.82) !important;
    font-family: var(--font-body) !important;
    font-size: clamp(1rem, 1.25vw, 1.18rem) !important;
    font-weight: 400 !important;
    line-height: 1.75 !important;
    text-shadow: 0 12px 34px rgba(0,0,0,0.45) !important;
}

.fade-section.feature-immersive .section-cta-link {
    width: fit-content !important;
    padding: 15px 26px !important;
    border: 1px solid rgba(232,184,32,0.52) !important;
    border-radius: 10px !important;
    background: rgba(0,0,0,0.22) !important;
    color: var(--gold-light) !important;
    backdrop-filter: blur(6px) !important;
    box-shadow: 0 16px 44px rgba(0,0,0,0.24) !important;
}

.fade-section.feature-immersive .section-cta-link:hover {
    background: rgba(232,184,32,0.12) !important;
    border-color: var(--gold-light) !important;
}

/* Make the second image focus on the screen side */
.feature-immersive--elevate .image-container img {
    object-position: 58% center !important;
}
.feature-immersive--reach .image-container img {
    object-position: center center !important;
}

body:not(.dark-mode) .fade-section.feature-immersive {
    background: #0a0703 !important;
}
body:not(.dark-mode) .fade-section.feature-immersive .feature-copy h3,
body:not(.dark-mode) .fade-section.feature-immersive .feature-copy p {
    color: #F5F0E8 !important;
    -webkit-text-fill-color: #F5F0E8 !important;
}
body:not(.dark-mode) .fade-section.feature-immersive .feature-copy h3 .highlight-text {
    -webkit-text-fill-color: transparent !important;
}

@media (max-width: 1024px) {
    .fade-section.feature-immersive .feature-copy {
        width: min(58%, 680px) !important;
    }
    .fade-section.feature-immersive .feature-copy h3 {
        font-size: clamp(3.7rem, 7.2vw, 6.4rem) !important;
    }
}

@media (max-width: 768px) {
    .fade-section.feature-immersive {
        min-height: 720px !important;
        justify-content: flex-end !important;
        align-items: flex-end !important;
    }
    .fade-section.feature-immersive .image-container {
        height: 100% !important;
    }
    .fade-section.feature-immersive .image-container img {
        object-position: center center !important;
        filter: brightness(0.76) contrast(1.08) saturate(1.05) !important;
    }
    .feature-immersive--reach .feature-atmosphere,
    .feature-immersive--elevate .feature-atmosphere {
        background:
            linear-gradient(to bottom,
                rgba(0,0,0,0.12) 0%,
                rgba(0,0,0,0.36) 40%,
                rgba(0,0,0,0.90) 100%),
            radial-gradient(ellipse at 50% 68%, rgba(232,184,32,0.15), transparent 50%) !important;
    }
    .fade-section.feature-immersive .feature-copy {
        width: 100% !important;
        min-height: auto !important;
        padding: 54px 28px 58px !important;
    }
    .fade-section.feature-immersive .feature-copy::before {
        left: 28px !important;
        top: 34px !important;
    }
    .fade-section.feature-immersive .feature-copy h3 {
        font-size: clamp(3.15rem, 16vw, 5rem) !important;
        line-height: 0.95 !important;
        letter-spacing: -0.045em !important;
    }
    .fade-section.feature-immersive .feature-copy p {
        max-width: 100% !important;
        font-size: 0.98rem !important;
    }
}


/* =========================================
   EC2 STABILITY OVERRIDES
   - keeps the same design
   - forces the compact feature height after all older !important rules
   - avoids local/EC2 differences caused by cached CSS
   ========================================= */
.fade-section.feature-immersive {
    min-height: clamp(430px, 58svh, 560px) !important;
}
.fade-section.feature-immersive .feature-copy {
    padding: clamp(38px, 4.5vw, 70px) clamp(36px, 5vw, 82px) !important;
}
.fade-section.feature-immersive .feature-copy h3 {
    font-size: clamp(3.0rem, 5.1vw, 6.0rem) !important;
    margin-bottom: 18px !important;
}
.fade-section.feature-immersive .feature-copy p {
    font-size: clamp(0.92rem, 1.05vw, 1.05rem) !important;
    line-height: 1.6 !important;
    margin-bottom: 22px !important;
}
.feature-kicker {
    margin-bottom: 16px !important;
}
@media (max-width: 768px) {
    .fade-section.feature-immersive {
        min-height: 560px !important;
    }
    .fade-section.feature-immersive .feature-copy {
        padding: 42px 24px 44px !important;
    }
    .fade-section.feature-immersive .feature-copy h3 {
        font-size: clamp(2.7rem, 13vw, 4.2rem) !important;
    }
}


/* =========================================
   ADBELIV — NO-ZOOM FEATURE IMAGE OVERRIDES
   Keeps the blended sections, but stops the images from looking cropped/zoomed.
   This must stay at the very bottom of the file.
   ========================================= */
.fade-section.feature-immersive .image-container img,
#Special-design-1 .image-container img,
#Special-design-2 .image-container img {
    transform: none !important;
    scale: 1 !important;
    min-height: 100% !important;
    object-fit: cover !important;
}

.fade-section.feature-immersive:hover .image-container img,
.fade-section:hover .image-container img {
    transform: none !important;
    scale: 1 !important;
}

/* slightly wider framing so the content feels less close-up */
.feature-immersive--reach .image-container img {
    object-position: center center !important;
}

.feature-immersive--elevate .image-container img {
    object-position: center center !important;
}

@media (max-width: 768px) {
    .fade-section.feature-immersive .image-container img,
    #Special-design-1 .image-container img,
    #Special-design-2 .image-container img {
        transform: none !important;
        scale: 1 !important;
        object-position: center center !important;
    }
}


/* =========================================
   ADBELIV — NO-CROP FEATURE IMAGES
   Uses contain instead of cover, so the full image is visible and not cut.
   The container still has a soft atmospheric background so the blended text style remains premium.
   ========================================= */
.fade-section.feature-immersive .image-container {
    background-color: #080604 !important;
    background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.22), rgba(0,0,0,0.34)),
        var(--feature-bg) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.fade-section.feature-immersive .image-container::before {
    content: '' !important;
    position: absolute !important;
    inset: -28px !important;
    background-image: var(--feature-bg) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    filter: blur(26px) brightness(0.48) saturate(1.05) !important;
    transform: none !important;
    opacity: 0.72 !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.fade-section.feature-immersive .image-container img,
#Special-design-1 .image-container img,
#Special-design-2 .image-container img {
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
    scale: 1 !important;
    filter: brightness(0.92) contrast(1.04) saturate(1.04) !important;
}

.fade-section.feature-immersive:hover .image-container img,
.fade-section:hover .image-container img {
    transform: none !important;
    scale: 1 !important;
}

.feature-immersive--reach .image-container img,
.feature-immersive--elevate .image-container img {
    object-position: center center !important;
}

@media (max-width: 768px) {
    .fade-section.feature-immersive .image-container img,
    #Special-design-1 .image-container img,
    #Special-design-2 .image-container img {
        object-fit: contain !important;
        object-position: center center !important;
        transform: none !important;
        scale: 1 !important;
    }
}


/* =========================================
   ADBELIV — VIDEO STRIP EC2 VISIBILITY FIX
   Forces the video strip to keep a real height and stay visible on production.
   ========================================= */
.video-strip {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    min-height: clamp(260px, 43vw, 560px) !important;
    background: #0C0A08 !important;
    overflow: hidden !important;
}
.video-strip video,
#hero-video {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: clamp(260px, 43vw, 560px) !important;
    object-fit: cover !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: #0C0A08 !important;
}
.video-strip-label,
#play-button {
    z-index: 5 !important;
}

/* =========================================
   ADBELIV — FEATURE IMAGE EDGE ALIGNMENT
   Pic 1 aligns fully to the left. Pic 2 aligns fully to the right.
   Keep this at the very bottom so it overrides previous center rules.
   ========================================= */
#Special-design-1 .image-container img,
.feature-immersive--reach .image-container img {
    object-position: left center !important;
    transform: none !important;
    scale: 1 !important;
}

#Special-design-2 .image-container img,
.feature-immersive--elevate .image-container img {
    object-position: right center !important;
    transform: none !important;
    scale: 1 !important;
}

#Special-design-1:hover .image-container img,
#Special-design-2:hover .image-container img,
.fade-section.feature-immersive:hover .image-container img {
    transform: none !important;
    scale: 1 !important;
}

@media (max-width: 768px) {
    #Special-design-1 .image-container img,
    .feature-immersive--reach .image-container img {
        object-position: left center !important;
    }

    #Special-design-2 .image-container img,
    .feature-immersive--elevate .image-container img {
        object-position: right center !important;
    }
}

/* Remove video play button completely */
#play-button {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =========================================
   ADBELIV — MOBILE FEATURE SECTION FILL FIX
   Fixes the gap/letterbox effect on phone screens by making the image
   fill the full feature section instead of sitting as a contained strip.
   Keep this at the very bottom of the file.
   ========================================= */
@media (max-width: 768px) {
    .fade-section.feature-immersive {
        min-height: 560px !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: flex-end !important;
        background: #080604 !important;
    }

    .fade-section.feature-immersive .image-container {
        position: absolute !important;
        inset: 0 !important;
        height: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .fade-section.feature-immersive .image-container::before {
        display: none !important;
    }

    .fade-section.feature-immersive .image-container img,
    #Special-design-1 .image-container img,
    #Special-design-2 .image-container img {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
        transform: none !important;
        scale: 1 !important;
        filter: brightness(0.78) contrast(1.08) saturate(1.05) !important;
    }

    #Special-design-1 .image-container img,
    .feature-immersive--reach .image-container img {
        object-position: center center !important;
    }

    #Special-design-2 .image-container img,
    .feature-immersive--elevate .image-container img {
        object-position: center center !important;
    }

    .fade-section.feature-immersive .feature-copy {
        width: 100% !important;
        min-height: auto !important;
        padding: 40px 24px 42px !important;
        background: transparent !important;
    }

    .fade-section.feature-immersive .feature-copy h3 {
        margin-bottom: 18px !important;
    }

    .fade-section.feature-immersive .feature-copy p {
        margin-bottom: 22px !important;
    }
}



/* =========================================
   COOKIE CONSENT — BRANDED BANNER + MODAL
   ========================================= */
.cookie-banner[hidden],
.cookie-modal[hidden],
.cookie-modal-backdrop[hidden] { display: none !important; }

.cookie-banner {
    position: fixed;
    left: 24px; right: 24px; bottom: 24px;
    z-index: 2147483600;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 22px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 24px;
    overflow: hidden;
    border: 1px solid rgba(232,184,32,.30);
    border-radius: 18px;
    background: linear-gradient(135deg,rgba(20,17,10,.97),rgba(8,7,5,.98));
    box-shadow: 0 24px 70px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.06);
    color: #F5F0E8;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity .26s ease, transform .26s ease;
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.cookie-banner-glow {
    position: absolute;
    left: -80px; bottom: -120px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(232,184,32,.18),transparent 68%);
    pointer-events: none;
}
.cookie-banner-copy,.cookie-banner-actions { position: relative; z-index: 1; }
.cookie-banner-copy { max-width: 720px; }

.cookie-eyebrow {
    margin: 0 0 6px;
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.cookie-banner h2,.cookie-modal h2 {
    margin: 0;
    color: #F5F0E8;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.1;
}
.cookie-banner p,.cookie-modal p {
    margin: 8px 0 0;
    color: rgba(245,240,232,.68);
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 400;
    line-height: 1.65;
}
.cookie-policy-link {
    display: inline-flex;
    margin-top: 9px;
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: .71rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
    border-bottom: 1px solid rgba(232,184,32,.34);
}
.cookie-policy-link:hover { color: #FFE780; border-color: #FFE780; }

.cookie-banner-actions,.cookie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}
.cookie-btn {
    min-height: 42px;
    border-radius: 999px;
    padding: 11px 16px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
    transition: background .22s ease,border-color .22s ease,color .22s ease,transform .22s ease,box-shadow .22s ease;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn-primary {
    border: 1px solid rgba(255,224,102,.48);
    background: linear-gradient(135deg,#FFE780 0%,#D69A0D 48%,#FFDA57 100%);
    color: #0A0800;
    box-shadow: 0 10px 26px rgba(232,184,32,.16);
}
.cookie-btn-primary:hover { box-shadow: 0 14px 32px rgba(232,184,32,.24); }
.cookie-btn-secondary {
    border: 1px solid rgba(245,240,232,.18);
    background: rgba(245,240,232,.045);
    color: rgba(245,240,232,.82);
}
.cookie-btn-secondary:hover { border-color: rgba(245,240,232,.32); background: rgba(245,240,232,.08); }
.cookie-btn-ghost {
    border: 1px solid transparent;
    background: transparent;
    color: var(--gold-light);
}
.cookie-btn-ghost:hover { background: rgba(232,184,32,.08); border-color: rgba(232,184,32,.20); }

.cookie-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2147483601;
    background: rgba(0,0,0,.58);
    opacity: 0;
    backdrop-filter: blur(6px);
    transition: opacity .24s ease;
}
.cookie-modal-backdrop.is-visible { opacity: 1; }

.cookie-modal {
    position: fixed;
    left: 50%; top: 50%;
    z-index: 2147483602;
    width: min(620px,calc(100vw - 32px));
    max-height: min(760px,calc(100vh - 32px));
    overflow-y: auto;
    border: 1px solid rgba(232,184,32,.30);
    border-radius: 20px;
    padding: 26px;
    background: radial-gradient(circle at 0% 100%,rgba(232,184,32,.12),transparent 34%),linear-gradient(145deg,#16120A,#090806 72%);
    box-shadow: 0 28px 90px rgba(0,0,0,.58);
    color: #F5F0E8;
    opacity: 0;
    transform: translate(-50%,calc(-50% + 16px)) scale(.985);
    transition: opacity .24s ease,transform .24s ease;
}
.cookie-modal.is-visible { opacity: 1; transform: translate(-50%,-50%) scale(1); }

.cookie-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    display: grid;
    width: 34px; height: 34px;
    place-items: center;
    border: 1px solid rgba(245,240,232,.14);
    border-radius: 50%;
    background: rgba(245,240,232,.04);
    color: rgba(245,240,232,.78);
    cursor: pointer;
    font-size: 1.2rem;
}
.cookie-modal-close:hover { border-color: rgba(232,184,32,.42); background: rgba(232,184,32,.10); }
.cookie-modal-header { padding-right: 42px; }

.cookie-preference-list { display: grid; gap: 12px; margin-top: 22px; }
.cookie-preference-row {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(245,240,232,.10);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
}
.cookie-preference-row h3 {
    margin: 0;
    color: #F5F0E8;
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 700;
}
.cookie-preference-row p { font-size: .75rem; line-height: 1.55; }
.cookie-status-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(232,184,32,.28);
    border-radius: 999px;
    padding: 6px 9px;
    background: rgba(232,184,32,.08);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: .60rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cookie-switch { display: inline-flex; cursor: pointer; }
.cookie-switch input { position: absolute; opacity: 0; pointer-events: none; }
.cookie-switch-track {
    position: relative;
    width: 50px; height: 28px;
    border: 1px solid rgba(245,240,232,.20);
    border-radius: 999px;
    background: rgba(245,240,232,.10);
    transition: background .22s ease,border-color .22s ease;
}
.cookie-switch-thumb {
    position: absolute;
    left: 3px; top: 3px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(245,240,232,.86);
    transition: transform .22s ease,background .22s ease;
}
.cookie-switch input:checked + .cookie-switch-track {
    border-color: rgba(255,224,102,.56);
    background: linear-gradient(135deg,#C88A08,#F0C030);
}
.cookie-switch input:checked + .cookie-switch-track .cookie-switch-thumb {
    transform: translateX(22px);
    background: #FFF5CC;
}
.cookie-modal-actions { margin-top: 20px; }

.footer-cookie-link {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .04em;
    text-align: left;
    transition: color .25s ease;
}
.footer-cookie-link:hover { color: var(--gold); }
.cookie-modal-open { overflow: hidden; }

@media (max-width: 860px) {
    .cookie-banner { grid-template-columns: 1fr; }
    .cookie-banner-actions { justify-content: flex-start; }
}
@media (max-width: 560px) {
    .cookie-banner {
        left: 12px; right: 12px; bottom: 12px;
        gap: 16px;
        padding: 18px;
        border-radius: 16px;
    }
    .cookie-banner h2,.cookie-modal h2 { font-size: 1.42rem; }
    .cookie-banner p,.cookie-modal p { font-size: .76rem; }
    .cookie-banner-actions,.cookie-modal-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }
    .cookie-btn { width: 100%; }
    .cookie-modal { padding: 22px 18px; border-radius: 17px; }
    .cookie-preference-row { grid-template-columns: 1fr; gap: 12px; }
    .cookie-status-pill,.cookie-switch { justify-self: start; }
}
