/* ===== colors_and_type.css (inlined) ===== */
/* ==========================================================================
   Live Scene — Colors & Type tokens
   Premium / dark / cinematic event production brand.
   Use these vars at the root of any Live Scene artifact.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter+Tight:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* --- Core brand palette ------------------------------------------------ */
  --ls-black:        #0A0A0A;   /* Background — deep black */
  --ls-ink:          #131313;   /* Surface 1 — cards on black */
  --ls-charcoal:     #1A1A1A;   /* Surface 2 — UI panels */
  --ls-graphite:     #242424;   /* Surface 3 — hover / raised */
  --ls-iron:         #2E2E2E;   /* Borders, dividers (strong) */
  --ls-smoke:        #3A3A3A;   /* Borders (subtle) */

  --ls-red:          #FF1A1A;   /* Signature red — Coca-Cola intense */
  --ls-red-deep:     #D60F0F;   /* Pressed / lower */
  --ls-red-glow:     #FF3838;   /* Hover lift */
  --ls-red-bg:       rgba(255, 26, 26, 0.12);
  --ls-red-bg-soft:  rgba(255, 26, 26, 0.06);

  --ls-bone:         #F5F5F5;   /* Off-white primary text */
  --ls-fog:          #C9C9C9;   /* Secondary text */
  --ls-stone:        #8A8A8A;   /* Tertiary / labels */
  --ls-dust:         #5A5A5A;   /* Disabled / quiet */

  /* --- Semantic foreground ---------------------------------------------- */
  --fg-1:  var(--ls-bone);
  --fg-2:  var(--ls-fog);
  --fg-3:  var(--ls-stone);
  --fg-4:  var(--ls-dust);
  --fg-on-red: #FFFFFF;

  /* --- Semantic background ---------------------------------------------- */
  --bg-0: var(--ls-black);
  --bg-1: var(--ls-ink);
  --bg-2: var(--ls-charcoal);
  --bg-3: var(--ls-graphite);

  /* --- Borders ---------------------------------------------------------- */
  --border-strong: var(--ls-iron);
  --border-subtle: var(--ls-smoke);
  --border-hairline: rgba(255, 255, 255, 0.08);

  /* --- Accent ----------------------------------------------------------- */
  --accent:           var(--ls-red);
  --accent-hover:     var(--ls-red-glow);
  --accent-pressed:   var(--ls-red-deep);
  --accent-bg:        var(--ls-red-bg);

  /* --- Status ----------------------------------------------------------- */
  --status-live:    #FF1A1A;        /* same as accent — "LIVE" tag */
  --status-upcoming:#FFFFFF;        /* white pill */
  --status-passed:  #5A5A5A;        /* muted */
  --status-success: #2BD17E;
  --status-warn:    #F5B544;

  /* --- Gradients (cinematic) -------------------------------------------- */
  --grad-stage:      radial-gradient(120% 80% at 50% 0%,
                       rgba(255, 26, 26, 0.18) 0%,
                       rgba(255, 26, 26, 0.04) 35%,
                       transparent 70%);
  --grad-haze:       linear-gradient(180deg,
                       rgba(10,10,10,0) 0%,
                       rgba(10,10,10,0.6) 60%,
                       rgba(10,10,10,0.95) 100%);
  --grad-redline:    linear-gradient(90deg, var(--ls-red) 0%, var(--ls-red-deep) 100%);
  --grad-spotlight:  radial-gradient(60% 50% at 50% 0%,
                       rgba(255, 255, 255, 0.10) 0%,
                       transparent 70%);

  /* --- Shadows / glow --------------------------------------------------- */
  --shadow-card:     0 12px 32px -8px rgba(0, 0, 0, 0.6),
                     0 2px 6px rgba(0, 0, 0, 0.4);
  --shadow-lift:     0 24px 60px -12px rgba(0, 0, 0, 0.75),
                     0 4px 12px rgba(0, 0, 0, 0.5);
  --glow-red:        0 0 0 1px rgba(255, 26, 26, 0.4),
                     0 0 24px rgba(255, 26, 26, 0.45),
                     0 0 64px rgba(255, 26, 26, 0.25);
  --glow-red-soft:   0 0 24px rgba(255, 26, 26, 0.35);
  --inset-hairline:  inset 0 1px 0 rgba(255, 255, 255, 0.06);

  /* --- Type families ---------------------------------------------------- */
  --font-display: 'Bebas Neue', 'Inter Tight', 'Helvetica Neue', sans-serif; /* Big Impact-style headers */
  --font-heading: 'Inter Tight', 'Helvetica Neue', sans-serif;               /* Section heads, subheads */
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;              /* Body text */
  --font-mono:    'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  /* --- Type scale (web) ------------------------------------------------- */
  --t-display-xl: clamp(72px, 11vw, 200px);   /* Hero monstrous */
  --t-display-lg: clamp(56px, 8vw,  140px);
  --t-display-md: clamp(40px, 5.5vw, 88px);
  --t-h1:         clamp(36px, 4.4vw, 64px);
  --t-h2:         clamp(28px, 3vw, 44px);
  --t-h3:         clamp(22px, 2vw, 28px);
  --t-h4:         18px;
  --t-body-lg:    18px;
  --t-body:       16px;
  --t-body-sm:    14px;
  --t-caption:    12px;
  --t-overline:   11px;

  /* --- Tracking --------------------------------------------------------- */
  --tr-display:   -0.02em;
  --tr-heading:   -0.01em;
  --tr-overline:  0.18em;
  --tr-button:    0.04em;

  /* --- Radii ------------------------------------------------------------ */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 9999px;

  /* --- Spacing (4px grid) ----------------------------------------------- */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* --- Motion ----------------------------------------------------------- */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    150ms;
  --dur-base:    260ms;
  --dur-slow:    520ms;
  --dur-cinema:  900ms;
}

/* ==========================================================================
   Base type — semantic helpers. Apply class or wrap in component.
   ========================================================================== */

.ls-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-display-lg);
  line-height: 0.92;
  letter-spacing: var(--tr-display);
  text-transform: uppercase;
  color: var(--fg-1);
}
.ls-display-xl { font-family: var(--font-display); font-weight: 400; font-size: var(--t-display-xl); line-height: 0.88; letter-spacing: var(--tr-display); text-transform: uppercase; }
.ls-display-md { font-family: var(--font-display); font-weight: 400; font-size: var(--t-display-md); line-height: 0.94; letter-spacing: var(--tr-display); text-transform: uppercase; }

.ls-h1 { font-family: var(--font-heading); font-weight: 800; font-size: var(--t-h1); line-height: 1.04; letter-spacing: var(--tr-heading); color: var(--fg-1); }
.ls-h2 { font-family: var(--font-heading); font-weight: 800; font-size: var(--t-h2); line-height: 1.06; letter-spacing: var(--tr-heading); color: var(--fg-1); }
.ls-h3 { font-family: var(--font-heading); font-weight: 700; font-size: var(--t-h3); line-height: 1.18; color: var(--fg-1); }
.ls-h4 { font-family: var(--font-heading); font-weight: 700; font-size: var(--t-h4); line-height: 1.3;  color: var(--fg-1); }

.ls-body-lg { font-family: var(--font-body); font-weight: 400; font-size: var(--t-body-lg); line-height: 1.55; color: var(--fg-2); }
.ls-body    { font-family: var(--font-body); font-weight: 400; font-size: var(--t-body);    line-height: 1.55; color: var(--fg-2); }
.ls-body-sm { font-family: var(--font-body); font-weight: 400; font-size: var(--t-body-sm); line-height: 1.5;  color: var(--fg-2); }

.ls-overline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--t-overline);
  line-height: 1;
  letter-spacing: var(--tr-overline);
  text-transform: uppercase;
  color: var(--fg-3);
}

.ls-mono {
  font-family: var(--font-mono);
  font-size: var(--t-body-sm);
  letter-spacing: 0;
  color: var(--fg-2);
}

/* ==========================================================================
   Page-level reset for Live Scene artifacts
   ========================================================================== */

.ls-root {
  background: var(--bg-0);
  color: var(--fg-1);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ===== site.css ===== */
/* Live Scene website kit — page styles */
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg-0); color: var(--fg-1); font-family: var(--font-body); overflow-x: hidden; max-width: 100vw; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* Hamburger button — hidden on desktop */
.ls-header-actions { display: flex; align-items: center; gap: 12px; }
.ls-burger { display: none; background: transparent; border: 1px solid var(--border-hairline); border-radius: 10px; width: 42px; height: 42px; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.ls-burger span { display: block; width: 18px; height: 1.5px; background: var(--fg-1); transition: transform 240ms var(--ease-out), opacity 180ms; }
.ls-header.menu-open .ls-burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.ls-header.menu-open .ls-burger span:nth-child(2) { opacity: 0; }
.ls-header.menu-open .ls-burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile drawer — hidden on desktop */
.ls-mobile-drawer { display: none; }

.ls-container { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1200px) { .ls-container { padding: 0 64px; } }

/* --- Header ----------------------------------------------------------- */
.ls-header { position: sticky; top: 0; z-index: 50; transition: background var(--dur-base), backdrop-filter var(--dur-base), border-color var(--dur-base); border-bottom: 1px solid transparent; }
.ls-header.scrolled { background: rgba(10,10,10,0.72); backdrop-filter: blur(16px); border-bottom-color: var(--border-hairline); }
.ls-header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.ls-logo { display: inline-flex; align-items: baseline; line-height: 1; font-family: var(--font-display); text-transform: uppercase; letter-spacing: -0.02em; }
.ls-logo .lv { font-size: 28px; color: #fff; }
.ls-logo .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--ls-red); box-shadow: 0 0 10px var(--ls-red); margin: 0 4px 16px 3px; }
.ls-logo .sc { font-size: 22px; color: var(--ls-bone); text-transform: lowercase; letter-spacing: 0; margin-left: 4px; }
.ls-nav { display: flex; gap: 28px; }
.ls-nav a { font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-2); position: relative; padding: 6px 0; transition: color var(--dur-fast); }
.ls-nav a:hover { color: var(--fg-1); }
.ls-nav a.active { color: #fff; }
.ls-nav a.active::after { content: ""; position: absolute; left: 50%; bottom: -4px; width: 5px; height: 5px; border-radius: 50%; background: var(--ls-red); transform: translateX(-50%); box-shadow: 0 0 8px var(--ls-red); }

/* --- Buttons ---------------------------------------------------------- */
.ls-btn { display: inline-flex; align-items: center; gap: 8px; height: 48px; padding: 0 22px; border-radius: 10px; border: 0; font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; transition: all var(--dur-base) var(--ease-out); }
.ls-btn-primary { background: var(--ls-red); color: #fff; }
.ls-btn-primary:hover { background: var(--ls-red-glow); box-shadow: var(--glow-red); transform: translateY(-1px); }
.ls-btn-primary:active { background: var(--ls-red-deep); transform: scale(0.98); }
.ls-btn-secondary { background: transparent; color: var(--fg-1); border: 1px solid var(--fg-1); }
.ls-btn-secondary:hover { background: var(--fg-1); color: var(--ls-black); }
.ls-btn-ghost { background: transparent; color: var(--fg-1); padding: 0; height: auto; }
.ls-btn-ghost:hover { color: var(--ls-red); }
.ls-btn-sm { height: 38px; padding: 0 16px; font-size: 11px; }

/* --- Tags ------------------------------------------------------------- */
.ls-tag { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 9999px; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.ls-tag-live { background: var(--ls-red); color: #fff; box-shadow: 0 0 16px rgba(255,26,26,0.4); }
.ls-tag-upcoming { background: #fff; color: var(--ls-black); }
.ls-tag-passed { background: var(--ls-charcoal); color: var(--fg-3); border: 1px solid var(--border-strong); }
.ls-tag-cat { background: transparent; color: var(--fg-1); border: 1px solid rgba(255,255,255,0.18); cursor: pointer; transition: all var(--dur-fast); padding: 8px 16px; font-size: 11px; }
.ls-tag-cat:hover { border-color: var(--fg-1); }
.ls-tag-cat.on { background: var(--ls-red); color: #fff; border-color: var(--ls-red); }
.ls-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* --- Hero ------------------------------------------------------------- */
.ls-hero { position: relative; min-height: 92vh; overflow: hidden; display: flex; align-items: flex-end; padding-bottom: 96px; }
.ls-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.ls-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.97) 100%); }
.ls-hero-stage { position: absolute; inset: 0; background: var(--grad-stage); pointer-events: none; }
.ls-hero-grain { position: absolute; inset: 0; opacity: 0.06; mix-blend-mode: overlay; pointer-events: none; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><filter id="n"><feTurbulence baseFrequency="0.9"/></filter><rect width="120" height="120" filter="url(%23n)"/></svg>'); }
.ls-hero-content { position: relative; z-index: 2; }
.ls-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(72px, 11vw, 180px); line-height: 0.88; letter-spacing: -0.02em; text-transform: uppercase; color: #fff; margin: 0 0 32px; max-width: 14ch; }
.ls-hero h1 .red { color: var(--ls-red); }
.ls-hero-sub { font-size: 18px; color: var(--fg-2); max-width: 52ch; margin: 0 0 32px; }
.ls-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ls-hero-meta { position: absolute; right: 24px; bottom: 32px; font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); letter-spacing: 0.16em; text-transform: uppercase; z-index: 2; display: flex; align-items: center; gap: 10px; }
.ls-hero-meta .pulse { width: 7px; height: 7px; background: var(--ls-red); border-radius: 50%; box-shadow: 0 0 8px var(--ls-red); animation: pulse 1.6s ease-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }

/* --- Hero accent animations (test) ----------------------------------- */
.ls-hero-bg { animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08) translate(-1%, 1%); } }

.ls-overline-dash { display: inline-block; width: 24px; height: 1px; background: var(--ls-red); animation: dashStretch 2.4s ease-in-out infinite; transform-origin: left center; }
@keyframes dashStretch { 0%,100% { transform: scaleX(1); opacity: 0.7; } 50% { transform: scaleX(1.8); opacity: 1; } }

.ls-hero h1 .red { position: relative; display: inline-block; }
.ls-hero h1 .red::after {
  content: ""; position: absolute; left: 0; bottom: -0.05em; height: 0.06em; width: 100%;
  background: var(--ls-red);
  transform-origin: left center; transform: scaleX(0);
  animation: underlineDraw 1.4s cubic-bezier(.7,0,.3,1) 0.6s forwards;
}
@keyframes underlineDraw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.ls-live-badge {
  position: absolute; top: 96px; right: 24px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 12px; border-radius: 999px;
  background: rgba(10,10,10,0.55); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #fff;
}
.ls-live-badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--ls-red); box-shadow: 0 0 0 0 var(--ls-red);
  animation: liveRing 1.4s ease-out infinite;
}
@keyframes liveRing {
  0% { box-shadow: 0 0 0 0 rgba(229,30,30,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(229,30,30,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,30,30,0); }
}

@media (prefers-reduced-motion: reduce) {
  .ls-hero-bg, .ls-overline-dash, .ls-hero h1 .red::after, .ls-live-badge::before { animation: none; }
}

/* --- Section ---------------------------------------------------------- */
.ls-section { padding: 96px 0; position: relative; }
@media (max-width: 760px) { .ls-section { padding: 64px 0; } }
.ls-section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.ls-section h2 { font-family: var(--font-heading); font-weight: 800; font-size: clamp(32px, 4vw, 56px); line-height: 1.04; letter-spacing: -0.02em; margin: 0; }
.ls-section .overline { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 16px; }
.ls-section .overline::before { content: ""; width: 24px; height: 1px; background: var(--ls-red); }

/* --- KPI -------------------------------------------------------------- */
.ls-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-hairline); border: 1px solid var(--border-hairline); border-radius: 16px; overflow: hidden; }
@media (max-width: 760px) { .ls-kpis { grid-template-columns: repeat(2, 1fr); } }
.ls-kpi { background: var(--bg-1); padding: 32px 24px; position: relative; }
.ls-kpi::before { content: ""; position: absolute; left: 24px; top: 0; width: 32px; height: 1px; background: var(--ls-red); }
.ls-kpi-value { font-family: var(--font-heading); font-weight: 800; font-size: clamp(36px, 4vw, 56px); line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.ls-kpi-label { margin-top: 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3); }

/* --- Featured event -------------------------------------------------- */
.ls-featured { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
@media (max-width: 900px) { .ls-featured { grid-template-columns: 1fr; } }
.ls-featured-card { position: relative; min-height: 480px; border-radius: 20px; overflow: hidden; background-size: cover; background-position: center; display: flex; align-items: end; padding: 36px; transition: transform var(--dur-base) var(--ease-out); cursor: pointer; }
.ls-featured-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0) 30%, rgba(10,10,10,0.92) 100%); }
.ls-featured-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift), var(--glow-red-soft); }
.ls-featured-card .body { position: relative; width: 100%; }
.ls-featured-card .title { font-family: var(--font-heading); font-weight: 800; font-size: clamp(24px, 2.6vw, 36px); line-height: 1.05; letter-spacing: -0.01em; margin: 8px 0 12px; max-width: 18ch; }
.ls-featured-card .meta { font-family: var(--font-mono); font-size: 12px; color: var(--fg-2); letter-spacing: 0.04em; }
.ls-featured-card .meta b { color: #fff; font-weight: 600; }
.ls-featured-card .price { display: inline-block; margin-top: 20px; padding: 10px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; font-family: var(--font-mono); font-size: 12px; }
.ls-featured-card .price b { color: var(--ls-red); }
.ls-featured-card .cta { position: absolute; right: 0; bottom: 0; }

/* --- Event card grid ------------------------------------------------- */
.ls-events-filters { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 32px; }
.ls-events-filters .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-3); margin-right: 8px; }
.ls-event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1100px) { .ls-event-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .ls-event-grid { grid-template-columns: 1fr; } }
.ls-event-card { background: var(--bg-1); border: 1px solid var(--border-hairline); border-radius: 16px; overflow: hidden; cursor: pointer; transition: all var(--dur-base) var(--ease-out); display: flex; flex-direction: column; }
.ls-event-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.18); box-shadow: var(--shadow-lift); }
.ls-event-card:hover .ls-event-thumb img { transform: scale(1.06); filter: none; }
.ls-event-thumb { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--bg-2); }
.ls-event-thumb img { width: 100%; height: 100%; object-fit: cover; transition: all var(--dur-slow) var(--ease-out); }
.ls-event-thumb.passed img { filter: grayscale(0.7) brightness(0.85); }
.ls-event-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.95) 100%); pointer-events: none; }
.ls-event-thumb .tag { position: absolute; top: 12px; left: 12px; z-index: 2; }
.ls-event-thumb .cat { position: absolute; top: 12px; right: 12px; z-index: 2; padding: 4px 10px; background: rgba(10,10,10,0.6); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.18); border-radius: 9999px; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; }
.ls-event-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.ls-event-body .artist { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-3); }
.ls-event-body .title { font-family: var(--font-heading); font-weight: 800; font-size: 20px; line-height: 1.1; letter-spacing: -0.01em; margin: 6px 0 12px; }
.ls-event-body .meta { font-family: var(--font-mono); font-size: 11px; color: var(--fg-2); letter-spacing: 0.04em; line-height: 1.5; }
.ls-event-body .footer { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border-hairline); }
.ls-event-body .price { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--ls-red); }
.ls-event-body .price.muted { color: var(--fg-3); }
.ls-event-body .arrow { color: var(--fg-2); font-size: 14px; transition: all var(--dur-fast); }
.ls-event-card:hover .ls-event-body .arrow { color: var(--ls-red); transform: translateX(4px); }

/* --- Activation case -------------------------------------------------- */
.ls-activations { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 900px) { .ls-activations { grid-template-columns: 1fr; } }
.ls-act-card { position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background-size: cover; background-position: center; cursor: pointer; transition: transform var(--dur-base) var(--ease-out); }
.ls-act-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.95) 95%); }
.ls-act-card:hover { transform: translateY(-4px); }
.ls-act-card .body { position: absolute; inset: auto 0 0 0; padding: 32px; }
.ls-act-card .brand { font-family: var(--font-heading); font-weight: 800; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ls-red); }
.ls-act-card .title { font-family: var(--font-heading); font-weight: 800; font-size: 30px; line-height: 1.05; letter-spacing: -0.01em; margin: 8px 0 12px; max-width: 16ch; }
.ls-act-card .concept { font-size: 14px; color: var(--fg-2); line-height: 1.5; max-width: 50ch; }
.ls-act-card .results { display: flex; gap: 24px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); }
.ls-act-card .results .r .v { font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: #fff; font-variant-numeric: tabular-nums; }
.ls-act-card .results .r .l { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-3); margin-top: 4px; }

/* --- Partners marquee -------------------------------------------------- */
.ls-partners { padding: 56px 0; border-top: 1px solid var(--border-hairline); border-bottom: 1px solid var(--border-hairline); overflow: hidden; }
.ls-partners-track { display: flex; gap: 56px; align-items: center; animation: marquee 40s linear infinite; white-space: nowrap; }
.ls-partners-track .p { font-family: var(--font-heading); font-weight: 700; font-size: 22px; letter-spacing: 0.04em; color: var(--fg-3); transition: color var(--dur-fast); }
.ls-partners-track .p:hover { color: var(--fg-1); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- About / final CTA ------------------------------------------------- */
.ls-about { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .ls-about { grid-template-columns: 1fr; gap: 32px; } }
.ls-about p { font-size: 18px; line-height: 1.55; color: var(--fg-2); }
.ls-cta-final { text-align: center; padding: 120px 0; position: relative; }
.ls-cta-final::before { content: ""; position: absolute; left: 50%; top: 0; width: 60%; height: 100%; background: var(--grad-stage); transform: translateX(-50%); pointer-events: none; }
.ls-cta-final h2 { position: relative; font-family: var(--font-display); font-weight: 400; font-size: clamp(48px, 7vw, 110px); line-height: 0.92; letter-spacing: -0.02em; text-transform: uppercase; margin: 0 0 36px; max-width: 22ch; margin-inline: auto; }
.ls-cta-final h2 .red { color: var(--ls-red); }

/* --- Footer ----------------------------------------------------------- */
.ls-footer { background: var(--bg-0); border-top: 1px solid var(--border-hairline); padding: 64px 0 40px; }
.ls-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .ls-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.ls-footer h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3); margin: 0 0 16px; }
.ls-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ls-footer a { color: var(--fg-2); font-size: 14px; transition: color var(--dur-fast); }
.ls-footer a:hover { color: var(--ls-red); }
.ls-footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--border-hairline); display: flex; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); letter-spacing: 0.04em; }

/* --- Profile chooser cards (Work With Us) --------------------------- */
.ls-profile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .ls-profile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ls-profile-grid { grid-template-columns: 1fr; } }
.ls-profile { background: var(--bg-1); border: 1px solid var(--border-hairline); border-radius: 16px; padding: 28px; cursor: pointer; transition: all var(--dur-base) var(--ease-out); position: relative; overflow: hidden; min-height: 260px; display: flex; flex-direction: column; }
.ls-profile:hover { border-color: var(--ls-red); box-shadow: var(--glow-red-soft); transform: translateY(-4px); }
.ls-profile.active { border-color: var(--ls-red); background: var(--bg-2); box-shadow: var(--glow-red); }
.ls-profile .icon { width: 40px; height: 40px; border-radius: 10px; background: var(--ls-red-bg); color: var(--ls-red); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.ls-profile h3 { font-family: var(--font-heading); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; margin: 0 0 8px; }
.ls-profile p { font-size: 14px; line-height: 1.5; color: var(--fg-2); margin: 0 0 20px; flex: 1; }
.ls-profile .cta { font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ls-red); display: inline-flex; align-items: center; gap: 8px; }

/* --- Artists grid ----------------------------------------------------- */
.ls-artist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1000px) { .ls-artist-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .ls-artist-grid { grid-template-columns: repeat(2, 1fr); } }
.ls-artist { aspect-ratio: 3/4; position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; }
.ls-artist img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(1) contrast(1.05); transition: filter var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.ls-artist:hover img { filter: none; transform: scale(1.04); }
.ls-artist .plate { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; background: linear-gradient(180deg, transparent, rgba(10,10,10,0.9)); }
.ls-artist .plate .n { font-family: var(--font-heading); font-weight: 800; font-size: 16px; letter-spacing: -0.01em; }

/* --- Page transitions / scroll reveal --------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* --- Page-route helpers ---------------------------------------------- */
.ls-page { animation: pagefade 0.4s var(--ease-out); }
@keyframes pagefade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* =====================================================================
   MOBILE — global responsive layer (≤ 760px)
   ===================================================================== */
@media (max-width: 760px) {
  .ls-container { padding: 0 18px; max-width: 100vw; }

  /* Header — hide inline nav, show hamburger */
  .ls-header-inner { height: 60px; }
  .ls-logo .lv { font-size: 22px; }
  .ls-logo .sc { font-size: 18px; }
  .ls-nav { display: none !important; }
  .ls-burger { display: inline-flex !important; }
  .ls-header-actions .ls-btn { display: none; }

  /* Full-screen mobile drawer */
  .ls-mobile-drawer {
    display: block;
    position: fixed; inset: 60px 0 0 0;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 49;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 280ms var(--ease-out), visibility 0s linear 280ms;
  }
  .ls-mobile-drawer.open { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity 280ms var(--ease-out); }
  .ls-mobile-nav { display: flex; flex-direction: column; padding: 32px 24px; gap: 4px; height: 100%; overflow-y: auto; }
  .ls-mobile-nav a {
    display: flex; align-items: center; gap: 18px;
    padding: 20px 4px;
    border-bottom: 1px solid var(--border-hairline);
    font-family: var(--font-display); font-weight: 400; font-size: 32px; line-height: 1; letter-spacing: -0.01em; text-transform: uppercase;
    color: var(--fg-1);
    opacity: 0; transform: translateX(-12px);
  }
  .ls-mobile-drawer.open .ls-mobile-nav a { animation: drawerIn 0.5s var(--ease-out) forwards; }
  @keyframes drawerIn { to { opacity: 1; transform: none; } }
  .ls-mobile-nav a .num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--ls-red); font-weight: 600; flex-shrink: 0; }
  .ls-mobile-nav a .lbl { flex: 1; }
  .ls-mobile-nav a .arr { font-size: 18px; color: var(--fg-3); transition: transform 200ms; }
  .ls-mobile-nav a:active .arr { transform: translateX(4px); color: var(--ls-red); }
  .ls-mobile-nav a.active { color: var(--ls-red); }
  .ls-mobile-nav a.active .num { color: var(--fg-3); }
  .ls-mobile-contact {
    margin-top: 24px;
    background: var(--ls-red); color: #fff !important;
    border-radius: 10px;
    padding: 18px !important;
    justify-content: center !important;
    font-family: var(--font-heading) !important; font-weight: 700 !important; font-size: 13px !important; letter-spacing: 0.1em !important;
    border-bottom: none !important;
  }
  .ls-mobile-contact::before, .ls-mobile-contact .num, .ls-mobile-contact .arr { display: none; }

  /* Hero */
  .ls-hero { min-height: 88vh; padding-bottom: 64px; }
  .ls-hero h1 { font-size: clamp(48px, 13vw, 80px); margin-bottom: 20px; max-width: 100%; word-break: break-word; }
  .ls-hero-sub { font-size: 15px; margin-bottom: 24px; max-width: 100%; }
  .ls-hero-actions { gap: 10px; }
  .ls-hero-actions .ls-btn { flex: 1 1 auto; justify-content: center; min-width: 0; }
  .ls-hero-meta { right: 18px; bottom: 18px; font-size: 10px; letter-spacing: 0.12em; }
  .ls-live-badge { top: 76px; right: 18px; font-size: 10px; padding: 6px 12px 6px 10px; }

  /* Sections / heads */
  .ls-section { padding: 56px 0; }
  .ls-section h2 { font-size: clamp(28px, 8vw, 40px); max-width: 100%; }
  .ls-section-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
  .ls-section-head .ls-btn { align-self: stretch; justify-content: center; }

  /* KPIs */
  .ls-kpi { padding: 22px 16px; }
  .ls-kpi-value { font-size: clamp(28px, 8vw, 40px); }
  .ls-kpi-label { font-size: 10px; letter-spacing: 0.14em; }

  /* Featured event card */
  .ls-featured-card { min-height: 380px; padding: 24px; border-radius: 16px; }
  .ls-featured-card .title { font-size: 24px; max-width: 100%; }
  .ls-featured-card .cta { position: relative; right: auto; bottom: auto; margin-top: 20px; display: inline-flex; }

  /* Activations */
  .ls-act-card { aspect-ratio: 3/4; border-radius: 16px; }
  .ls-act-card .body { padding: 22px; }
  .ls-act-card .title { font-size: 24px; max-width: 100%; }
  .ls-act-card .concept { font-size: 13px; max-width: 100%; }
  .ls-act-card .results { gap: 16px; margin-top: 16px; padding-top: 16px; flex-wrap: wrap; }
  .ls-act-card .results .r .v { font-size: 18px; }
  .ls-act-card .results .r .l { font-size: 9px; }

  /* Events filters — horizontal scroll strip (contained) */
  .ls-events-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin: 0 -18px 24px;
    padding: 0 18px 4px;
    max-width: 100vw;
  }
  .ls-events-filters::-webkit-scrollbar { display: none; }
  .ls-events-filters .lbl { display: none; }
  .ls-tag-cat { flex-shrink: 0; padding: 8px 14px; font-size: 11px; }

  /* Event grid */
  .ls-event-card { border-radius: 14px; }
  .ls-event-thumb { aspect-ratio: 16/10; }
  .ls-event-body { padding: 16px 16px 18px; }
  .ls-event-body .title { font-size: 18px; }
  .ls-event-body .meta { font-size: 11px; }

  /* Partners marquee */
  .ls-partners { padding: 36px 0; }
  .ls-partners-track { gap: 36px; animation-duration: 30s; }
  .ls-partners-track .p { font-size: 16px; }

  /* About + final CTA */
  .ls-about p { font-size: 16px; }
  .ls-cta-final { padding: 80px 0; }
  .ls-cta-final h2 { font-size: clamp(36px, 11vw, 60px); margin-bottom: 28px; max-width: 100%; }

  /* Footer */
  .ls-footer { padding: 48px 0 28px; }
  .ls-footer-grid { gap: 28px; }
  .ls-footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; margin-top: 40px; }

  /* Profile chooser */
  .ls-profile { padding: 22px; min-height: 220px; }
  .ls-profile h3 { font-size: 20px; }
  .ls-profile p { font-size: 13px; }

  /* Artists */
  .ls-artist-grid { gap: 10px; }
  .ls-artist .plate { padding: 10px 12px; }
  .ls-artist .plate .n { font-size: 13px; }

  /* Buttons */
  .ls-btn { height: 46px; padding: 0 18px; }
}

/* Very small phones (≤ 380px) — extra tightening */
@media (max-width: 380px) {
  .ls-container { padding: 0 14px; }
  .ls-hero h1 { font-size: 48px; }
  .ls-section h2 { font-size: 26px; }
  .ls-kpi-value { font-size: 24px; }
  .ls-act-card .results { gap: 12px; }
}

/* Prevent iOS auto-zoom on input focus (16px minimum) */
@media (max-width: 760px) {
  input, select, textarea { font-size: 16px !important; }
}
