/*
Theme Name: Hello Elementor Child - Vegas ToyCon
Theme URI: https://vegastoycon.com
Description: Las Vegas ToyCon 2026 — Luxury collector convention site
Author: Amit Nandi
Author URI: https://yoursite.com
Template: hello-elementor
Version: 1.0
Text Domain: hello-elementor-child
*/

/* IMPORT PARENT THEME */
@import url("../hello-elementor/style.css");

/* IMPORT CUSTOM FONTS */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT,WONK@0,9..144,100..900,0..100,0..1;1,9..144,100..900,0..100,0..1&family=Inter+Tight:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=block');

/* ====== CSS VARIABLES - MIDNIGHT CHROME PALETTE ====== */
:root {
  --paper:    #0B1021;
  --paper-2:  #161E3D;
  --ink:      #F1F5F9;
  --ink-2:    #CBD5E1;
  --red:      #ED1C24;
  --red-2:    #FF3131;
  --silver:   #C8CDD4;
  --silver-2: #475569;
  --mute:     #8E97B0;
  --rule:     rgba(255, 255, 255, 0.08);
  --rule-soft: rgba(255, 255, 255, 0.03);
  
  --gold: #D4AF37;
  --red-glow: rgba(237, 28, 36, 0.5);
  --glass-bg: linear-gradient(145deg, rgba(22, 30, 56, 0.4) 0%, rgba(11, 16, 33, 0.8) 100%);
  --glass-border-top: rgba(255, 255, 255, 0.12);
  --glass-border-left: rgba(255, 255, 255, 0.06);

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans:  'Inter Tight', system-ui, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
  scroll-behavior: smooth; 
  background: #0B1021 !important;
}

/* FIX: Force background color on body and html */
body {
  font-family: var(--sans);
  background: #0B1021 !important;
  color: var(--ink);
  font-weight: 400;
  font-size: 18px; 
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Override any elementor defaults */
body.elementor {
  background-color: #0B1021 !important;
}

.elementor-page-188 {
  background-color: #0B1021 !important;
}

.wp-site-blocks {
  background-color: #0B1021 !important;
}

/* Base Atmospheric Grain */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.2;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

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

.mono { font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }

/* ====== TOP META BAR ====== */
.metabar {
  position: relative; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 32px;
  background: #060914; 
  color: var(--ink-2);
  font-family: var(--mono); 
  font-size: 13px !important; 
  letter-spacing: 0.16em; text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
}
.metabar .left, .metabar .right { display: flex; gap: 28px; align-items: center; }
.metabar .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); display: inline-block; margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.6);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.55); }
  50% { box-shadow: 0 0 0 5px rgba(237, 28, 36, 0); }
}

/* ====== NAV BAR ====== */
nav.primary {
  position: sticky; 
  top: 0; 
  z-index: 40;
  background: rgba(11, 16, 33, 0.7);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 40px; /* Adjusted padding for edge-to-edge look */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 100%;       /* Added width 100% */
  max-width: 100%;   /* Changed from 1200px to 100% */
  margin: 0;         /* Removed auto centering */
  left: 0;
  right: 0;
}

.brand-logo {
  display: inline-flex; 
  align-items: center;
  height: 70px !important; 
}
.brand-logo img {
  height: 100% !important;
  width: auto !important;
  filter: drop-shadow(0 2px 12px rgba(237, 28, 36, 0.2)) brightness(1.1);
  transition: transform .35s cubic-bezier(.2,.7,.1,1);
}
.brand-logo:hover img { transform: scale(1.06); }

nav.primary ul {
  display: flex; gap: 40px; list-style: none; justify-content: center;
}
nav.primary ul a {
  font-family: var(--mono); 
  font-size: 15px !important; 
  letter-spacing: 0.14em; text-transform: uppercase;
  position: relative; padding: 6px 0;
  font-weight: 500; color: var(--ink);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
nav.primary ul a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px;
  background: var(--red); transition: right .35s cubic-bezier(.7,0,.2,1);
  box-shadow: 0 0 8px var(--red);
}
nav.primary ul a:hover::after { right: 0; }
.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }

.ticket-btn {
  background: rgba(237, 28, 36, 0.1); color: var(--ink);
  padding: 12px 24px; border: 1px solid rgba(237, 28, 36, 0.3);
  font-family: var(--mono); 
  font-size: 13px !important; 
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: all .3s ease;
  display: inline-flex; align-items: center; gap: 10px;
  backdrop-filter: blur(4px);
}
.ticket-btn:hover { 
    background: var(--red); 
    border-color: var(--red); 
    color: #fff; 
    box-shadow: 0 0 20px rgba(237, 28, 36, 0.4);
}
.ticket-btn .arrow { display: inline-block; transition: transform .25s ease; }
.ticket-btn:hover .arrow { transform: translateX(4px); }

/* ====== HERO VAULT ====== */
.hero {
    position: relative; z-index: 5;
    min-height: 85vh; display: flex; flex-direction: column;
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(11, 16, 33, 0.5) 0%, var(--paper) 100%),
                radial-gradient(circle at 50% 50%, rgba(14, 21, 48, 0.2) 0%, rgba(6, 9, 20, 0.95) 100%);
}

/* Cinematic Background Slider */
.hero-slider {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: -3; overflow: hidden; background: #000;
}
.hero-slider .slide {
    position: absolute; inset: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    animation: cinematicFade 24s infinite linear;
    filter: brightness(0.8) contrast(1.1) saturate(1.2);
}
.hero-slider .slide-1 { background-image: url('https://images.unsplash.com/photo-1594787318286-3d835c1d207f?auto=format&fit=crop&q=80&w=2000'); animation-delay: 0s; }
.hero-slider .slide-2 { background-image: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&q=80&w=2000'); animation-delay: 6s; }
.hero-slider .slide-3 { background-image: url('https://images.unsplash.com/photo-1534447677768-be436bb09401?auto=format&fit=crop&q=80&w=2000'); animation-delay: 12s; }
.hero-slider .slide-4 { background-image: url('https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?auto=format&fit=crop&q=80&w=2000'); animation-delay: 18s; }

@keyframes cinematicFade {
    0%   { opacity: 0; transform: scale(1.05); }
    10%  { opacity: 0.35; }
    25%  { opacity: 0.35; }
    35%  { opacity: 0; transform: scale(1.15); }
    100% { opacity: 0; transform: scale(1.15); }
}

#vault-canvas {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2; opacity: 0.65;
}

.hero::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 70vw; height: 70vw;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.08) 0%, transparent 60%);
    z-index: -1; pointer-events: none;
    animation: pulse-glow 8s infinite alternate ease-in-out;
}
@keyframes pulse-glow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1.1; }
}

.hero-content {
    margin: auto; text-align: center; padding: 40px; position: relative; z-index: 2;
}
.hero-edition {
    font-family: var(--mono); font-size: 12px; color: var(--gold);
    letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 24px;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}
.hero-title {
    font-family: var(--serif);
    font-size: clamp(60px, 10vw, 160px);
    line-height: 0.9;
    font-weight: 700; /* Changed from 100 to 700 for Bold */
    font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 700; /* Explicitly tell the variable font to be bold */
    letter-spacing: -0.02em;
    color: var(--ink);
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.hero-title em {
    font-style: italic; 
    color: var(--red);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1, "wght" 700; /* Make sure the italic text stays bold too */
    text-shadow: 0 10px 40px var(--red-glow);
}
/* 1. PREVENT FONT SNAP: Hide content slightly during initial load */
.hero-content {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(15px);
    animation: heroReveal 1s cubic-bezier(0.2, 0, 0.2, 1) forwards;
    animation-delay: 0.4s; /* Gives the font ~400ms to load before showing */
}

/* 2. SMOOTH REVEAL ANIMATION */
@keyframes heroReveal {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

/* 3. OPTIMIZE FALLBACK: Match the thinness of Fraunces 100 */
.hero-title {
    /* This makes the system font bold as well while waiting */
    font-weight: 700; 
    -webkit-font-smoothing: antialiased;
}
.hero-subtitle {
    font-family: var(--sans);
    font-size: 20px;
    color: var(--ink-2);
    max-width: 680px;
    margin: 24px auto 0;
    font-weight: 300;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
/* ====== HERO META VAULT CONTAINER ====== */
.hero-meta-vault {
    display: flex; justify-content: center; gap: 56px;
    margin-top: 56px; padding-top: 40px;
    border-top: 1px solid var(--rule); flex-wrap: wrap;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.02), transparent);
}

/* ====== PREMIUM GLOBAL META ITEMS ====== */
.meta-item { 
    display: flex; 
    flex-direction: column; 
    align-items: center; /* Centers the label and value relative to each other */
    gap: 8px; 
}
.meta-item .label {
    font-family: var(--mono); 
    font-size: 11px; 
    letter-spacing: 0.3em; 
    text-transform: uppercase; 
    color: var(--gold); 
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3); 
    text-align: center; /* Ensures the label text is centered */
}
.meta-item .val {
    font-family: var(--serif); 
    font-size: 28px; 
    font-weight: 400; 
    font-variation-settings: "opsz" 144, "SOFT" 50; 
    color: var(--ink);
    letter-spacing: -0.01em;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.05); 
    
    /* Width and Centering Controls */
    max-width: 350px; 
    line-height: 1.2; 
    display: inline-block;
    text-align: center; /* Centers the actual text inside the container */
}
/* ====== SPONSOR MARQUEE TICKER ====== */
.sponsor-ticker {
  background: var(--paper-2);
  padding: 32px 0 40px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 5;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}
.sponsor-ticker-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 24px;
}
.sponsor-track-wrap {
  display: flex;
  width: max-content;
  animation: marquee-logos 40s linear infinite;
}
.sponsor-track-wrap:hover {
  animation-play-state: paused;
}
.sponsor-track {
  display: flex;
  gap: 24px;
  padding: 0 12px;
}
.sponsor-logo-box {
  height: 80px;
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 12px 24px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.sponsor-logo-box img {
  max-height: 100%;
  max-width: 120px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
}
.sponsor-logo-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.6), 0 0 0 2px var(--red);
}
@keyframes marquee-logos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====== SECTION HEADERS ====== */
.section {
  position: relative; z-index: 5;
  padding: 110px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.section::before {
    content:''; position:absolute; inset:0;
    background:
        radial-gradient(circle at 10% 20%, rgba(237,28,36,.06), transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212,175,55,.04), transparent 50%);
    pointer-events:none; z-index: -1;
}

.section-head {
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: end;
  margin-bottom: 64px; padding-bottom: 24px; 
  border-bottom: 1px solid var(--rule); position: relative;
}
.section-head::after {
  content: ''; position: absolute; left: 0; bottom: -1px; width: 100px; height: 2px;
  background: var(--red); box-shadow: 0 0 10px var(--red);
}
.section-num { font-family: var(--mono); font-size: 14px; letter-spacing: 0.14em; color: var(--silver); }
.section-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.95; letter-spacing: -0.03em;
}
.section-title em { font-style: italic; color: var(--red); font-weight: 400; text-shadow: 0 4px 20px var(--red-glow); }
.section-meta { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); text-align: right; }

/* ====== DISPLAY LOT GRID (GLASSMORPHISM) ====== */
.lots {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px; 
}
.lot {
  grid-column: span 4;
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--glass-border-top);
  border-left: 1px solid var(--glass-border-left);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 6px;
  padding: 0px;
  position: relative;
  transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  overflow: hidden;
}
.lot:hover { 
    transform: translateY(-8px); 
    background: linear-gradient(145deg, rgba(30, 40, 70, 0.6) 0%, rgba(14, 21, 48, 0.9) 100%);
    border-top: 1px solid rgba(237, 28, 36, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(237, 28, 36, 0.05);
}
.lot::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.04), transparent);
    transform: skewX(-20deg); transition: left 0.7s ease; pointer-events: none;
}
.lot:hover::after { left: 200%; }

.lot-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver);
}
.lot-head .est { color: var(--red); font-weight: bold; }
.lot-img {
  height: 280px; background: #000;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden; position: relative;
  margin-bottom: 26px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}
.lot-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.15) saturate(1.1) brightness(0.85);
  transition: all .8s cubic-bezier(.2,.7,.1,1);
}
.lot:hover .lot-img img { 
    transform: scale(1.05); 
    filter: contrast(1.1) saturate(1.2) brightness(1);
}
.lot-title {
  font-family: var(--serif); 
  font-size: 34px !important; 
  line-height: 1.1; font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 12px; color: var(--ink);
}
.lot-title em { font-style: italic; color: var(--red); }
.lot-desc {
  font-size: 16px !important; 
  color: var(--ink-2); line-height: 1.6;
  max-width: 95%;
}
.lot-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px; padding-top: 20px; border-top: 1px dashed var(--rule);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--silver);
}
.lot-foot .view { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: bold; }
.lot-foot .view .arr { transition: transform .3s ease; color: var(--red); }
.lot:hover .lot-foot .view .arr { transform: translateX(4px); }

/* ====== VISUAL PREVIEW BANNER GALLERY ====== */
.visual-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px;
}
.gallery-img-card {
  height: 220px; border: 1px solid rgba(255,255,255,0.08); overflow: hidden; position: relative; border-radius: 4px;
}
.gallery-img-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7) contrast(1.15); transition: all 0.5s ease; }
.gallery-img-card:hover img { filter: brightness(1) contrast(1); transform: scale(1.03); }
.gallery-label { position: absolute; bottom: 12px; left: 16px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: #fff; letter-spacing: 0.1em; background: rgba(0,0,0,0.75); padding: 6px 10px; border-left: 2px solid var(--red); backdrop-filter: blur(4px); }

/* ====== FLOOR TERMINAL DECK ====== */
.floor-terminal-deck {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--glass-border-top);
  border-left: 1px solid var(--glass-border-left);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 36px;
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.video-wrapper-box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.video-wrapper-box iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  filter: contrast(1.02) brightness(0.95);
}
.terminal-dashboard-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.telemetry-badge {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(214, 175, 55, 0.08);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(214, 175, 55, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dot-pulse-active {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse-telemetry 2s infinite alternate;
}
@keyframes pulse-telemetry { 0% { opacity: 0.4; } 100% { opacity: 1; } }
.telemetry-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
}
.telemetry-title em { font-style: italic; color: var(--red); }
.telemetry-desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}
.telemetry-log {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px dashed var(--rule);
  padding-top: 16px;
}
.log-entry {
  display: flex;
  gap: 16px;
  font-family: var(--mono);
  font-size: 13px;
}
.log-entry .timestamp { color: var(--red); font-weight: 600; }
.log-entry .detail { color: var(--ink); opacity: 0.85; }

/* ====== CINEMATIC DIVIDER ====== */
.cinematic-divider {
    position: relative;
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&q=80&w=2000'); 
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 40px 0;
    border-top: 0px solid var(--rule);
    border-bottom: 0px solid var(--rule);
}
.cinematic-divider .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, var(--paper) 0%, rgba(11, 16, 33, 0.5) 50%, var(--paper) 100%),
                radial-gradient(circle at center, rgba(237, 28, 36, 0.25) 0%, transparent 70%);
    backdrop-filter: blur(2px);
}
.divider-text {
    position: relative; z-index: 2;
    font-family: var(--serif);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 300; color: var(--ink);
    line-height: 1.2; letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0,0,0,0.9);
}
.divider-text em {
    font-style: italic; color: var(--red);
    text-shadow: 0 4px 24px var(--red-glow);
}

/* ====== SCHEDULE PROGRAMME ====== */
.schedule-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; }
.sched-aside { position: sticky; top: 120px; align-self: start; }
.sched-aside .pull {
  font-family: var(--serif); font-style: italic; font-size: 38px; line-height: 1.2;
  font-weight: 400; color: var(--ink); margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.sched-aside .pull em { color: var(--red); }
.sched-aside p { color: var(--mute); font-size: 17px; max-width: 340px; line-height: 1.6; }

.day { border-top: 1px solid var(--rule); padding: 32px 0; }
.day-head { display: grid; grid-template-columns: 80px 1fr auto; gap: 24px; align-items: baseline; margin-bottom: 36px; }
.day-num { font-family: var(--serif); font-size: 68px; font-weight: 400; line-height: 1; color: var(--ink); text-shadow: 0 4px 12px rgba(0,0,0,0.4);}
.day-title { font-family: var(--serif); font-style: italic; font-size: 28px; font-weight: 400; }
.day-date { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.sched-item {
  display: grid; grid-template-columns: 90px 1fr auto; gap: 24px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--rule-soft); transition: padding-left .3s ease;
}
.sched-item:hover { padding-left: 14px; background: linear-gradient(90deg, rgba(237,28,36,0.05), transparent 40%); border-left: 2px solid var(--red); }
.sched-time { font-family: var(--mono); font-size: 14px; color: var(--mute); font-weight: 500; }
.sched-event { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.sched-event em { font-style: italic; color: var(--red); }
.sched-event .sub { display: block; font-family: var(--sans); font-size: 14px; color: var(--mute); margin-top: 6px; }
.sched-room { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }

/* ====== PORTRAIT PROVENANCE GUESTS ROSTER ====== */
.guests {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.guest {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--glass-border-top);
  border-left: 1px solid var(--glass-border-left);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  padding: 32px 24px; position: relative; transition: all .4s ease;
  border-radius: 6px;
}
.guest:hover { 
    transform: translateY(-6px); 
    border-top: 1px solid rgba(212, 175, 55, 0.5); 
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(212, 175, 55, 0.05);
}
.guest-portrait {
  aspect-ratio: 1 / 1.15; background: #000; border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 22px; overflow: hidden; position: relative; border-radius: 4px;
}
.guest-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(80%) contrast(1.15) brightness(0.8);
  transition: all .5s cubic-bezier(.2,.7,.1,1);
}
.guest:hover .guest-portrait img { filter: grayscale(0%) contrast(1.1) brightness(1); transform: scale(1.05); }
.guest-portrait::after {
  content: attr(data-num); position: absolute; top: 12px; left: 14px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--ink); font-weight: bold;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.guest-name { font-family: var(--serif); font-size: 26px; font-weight: 400; line-height: 1.1; }
.guest-name em { font-style: italic; color: var(--gold); }
.guest-role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); margin-top: 10px; line-height: 1.4; }

/* ====== PASSES TIERS ====== */
.tickets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tier { 
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--glass-border-top);
  border-left: 1px solid var(--glass-border-left);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  border-radius: 6px;
  padding: 44px 32px; display: flex; flex-direction: column; gap: 20px; position: relative; 
  transition: all 0.4s ease;
}
.tier:hover { transform: translateY(-8px); }
.tier.featured { 
    background: linear-gradient(145deg, rgba(237, 28, 36, 0.1) 0%, rgba(14, 21, 48, 0.9) 100%);
    border: 1px solid rgba(237, 28, 36, 0.2);
    border-top: 1px solid rgba(237, 28, 36, 0.5);
    box-shadow: 0 16px 40px rgba(237, 28, 36, 0.15), inset 0 0 30px rgba(237, 28, 36, 0.05);
}
.tier.featured .price { color: var(--red); text-shadow: 0 0 16px rgba(237, 28, 36, 0.4); }
.tier-name { font-family: var(--serif); font-size: 32px; font-weight: 400; }
.tier-name em { font-style: italic; color: var(--red); }
.tier .price { font-family: var(--serif); font-size: 72px; font-weight: 300; line-height: 1; color: var(--ink); letter-spacing: -0.03em;}
.tier .price sup { font-size: 20px; vertical-align: top; margin-right: 4px; font-weight: 500;}
.tier .price-sub { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.tier ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 16px 0 28px; }
.tier li { font-size: 15px; padding-left: 24px; position: relative; line-height: 1.6; color: var(--ink-2); }
.tier li::before { content: '✦'; position: absolute; left: 0; top: 0; color: var(--red); font-size: 12px; }
.tier-cta {
  margin-top: auto; padding: 16px 0; text-align: center; border: 1px solid rgba(255,255,255,0.15);
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  background: transparent; color: var(--ink); cursor: pointer; transition: all .3s ease;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
}
.tier-cta:hover { background: rgba(255,255,255,0.05); border-color: #fff; box-shadow: 0 0 15px rgba(255,255,255,0.1); }
.tier.featured .tier-cta { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 4px 15px rgba(237, 28, 36, 0.4); }
.tier.featured .tier-cta:hover { background: var(--red-2); box-shadow: 0 8px 25px rgba(237, 28, 36, 0.6); }
.tier-tag { position: absolute; top: 16px; right: 16px; font-family: var(--mono); font-size: 10px; padding: 4px 10px; border: 1px solid var(--red); color: var(--red); border-radius: 999px; background: rgba(237,28,36,0.1); backdrop-filter: blur(4px); }

/* ====== LOCATION & VENUE MAP ====== */
.location { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.location-info > * + * { margin-top: 24px; }
.loc-block { padding-bottom: 24px; border-bottom: 1px solid var(--rule); }
.loc-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); margin-bottom: 8px;}
.loc-val { font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1.4; }
.loc-val em { font-style: italic; color: var(--red); text-shadow: 0 2px 10px var(--red-glow); }
.map-wrap { aspect-ratio: 4/5; background: var(--glass-bg); border: 1px solid var(--glass-border-left); border-top: 1px solid var(--glass-border-top); border-radius: 6px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); position: relative; overflow: hidden; }

/* ====== FOOTER ====== */
footer {
  background: #04060C; color: var(--ink);
  padding: 100px 32px 48px; position: relative; z-index: 5;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px;
  padding-bottom: 64px; border-bottom: 1px solid var(--rule);
}
.footer-brand .footer-logo-wrap {
  height: 70px !important; 
  margin-bottom: 28px;
}
.footer-brand .footer-logo-wrap img {
  height: 100% !important; width: auto !important;
  filter: drop-shadow(0 4px 12px rgba(237, 28, 36, 0.2));
}
.footer-brand p { color: var(--mute); font-size: 15px; max-width: 420px; line-height: 1.7; }

.footer-col h4 {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--silver); margin-bottom: 24px; font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 15px; color: var(--ink-2); transition: color .2s; }
.footer-col a:hover { color: var(--red); text-shadow: 0 0 8px var(--red-glow); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 36px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute);
}

/* ====== RESPONSIVE GRID UPDATES ====== */
@media (max-width: 700px) {
  .lot { grid-column: span 6; }
  .visual-gallery { grid-template-columns: repeat(2, 1fr); }
  .schedule-wrap { grid-template-columns: 1fr; }
  .sched-aside { position: static; }
  .guests { grid-template-columns: repeat(2, 1fr); }
  .tickets { grid-template-columns: 1fr; }
  .location { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .floor-terminal-deck { grid-template-columns: 1fr; gap: 32px; padding: 24px; }
}

@media (max-width: 700px) {
  .metabar { padding: 10px 18px; font-size: 11px !important; }
  .hide-sm { display: none; }
  nav.primary { padding: 12px 18px; grid-template-columns: 1fr auto; }
  nav.primary ul { display: none; }
  .brand-logo { height: 26px !important; }
  .section { padding: 72px 18px; }
  .lot { grid-column: span 12 !important; }
  .visual-gallery { grid-template-columns: 1fr; }
  .cinematic-divider { height: 300px; margin: 20px 0; }
  .day-head { grid-template-columns: 1fr; gap: 8px; }
  .day-num { font-size: 48px; }
  .sched-item { grid-template-columns: 70px 1fr; }
  .guests { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-meta-vault { gap: 32px; padding: 24px 0; margin-top: 32px; flex-direction: column; align-items: center; background: none; border-top: 1px solid rgba(255,255,255,0.05); }
  .hero-meta-vault .meta-item { text-align: center; }
  .hero-subtitle { font-size: 16px; margin-top: 16px; }
}