/* ============================================================
   TITI DOWNHILL — Landing styles
   Palette
     --bg          #08080a   page base
     --bg-deep     #050506   footer / hero base
     --bg-alt      #0a0a0c   alt sections
     --card        #0e0e11   cards
     --ink         #f4f3f1   primary text
     --ink-soft    #b9b9b4   body text
     --muted       #9a9a96 / #8a8a86 / #6f6f6c
     --orange      #FF5E1A   brand
     --orange-2    #ff7a40   hover
     --gold        #FFB23E   featured
   Fonts: Anton (display), Oswald (labels), Archivo (body)
   ============================================================ */

:root {
  --bg: #08080a;
  --bg-deep: #050506;
  --bg-alt: #0a0a0c;
  --card: #0e0e11;
  --ink: #f4f3f1;
  --ink-soft: #b9b9b4;
  --muted: #9a9a96;
  --muted-2: #8a8a86;
  --muted-3: #6f6f6c;
  --orange: #FF5E1A;
  --orange-2: #ff7a40;
  --gold: #FFB23E;
  --line: rgba(255, 255, 255, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--orange); color: var(--bg); }

/* ---------- Animations ---------- */
@keyframes heroUp   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes revealUp { from { opacity: 0; transform: translateY(42px); } to { opacity: 1; transform: none; } }
@keyframes scrollPulse { 0%,100% { opacity: .25; transform: translateY(0); } 50% { opacity: 1; transform: translateY(6px); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .15; } }

.reveal { opacity: 0; animation: revealUp .8s ease-out both; animation-timeline: view(); animation-range: entry 0% cover 22%; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0ms !important; }
}

/* ---------- Helpers ---------- */
.shell { max-width: 1320px; margin: 0 auto; }
.shell-narrow { max-width: 1180px; margin: 0 auto; }
.section { position: relative; padding: clamp(70px, 11vh, 140px) clamp(20px, 6vw, 90px); }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line); }

.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.eyebrow--center { display: inline-flex; }
.eyebrow__num { font-family: 'Anton', sans-serif; font-size: 13px; color: var(--orange); }
.eyebrow__rule { width: 40px; height: 1px; background: rgba(255, 255, 255, .25); }
.eyebrow__label { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 12px; letter-spacing: 5px; text-transform: uppercase; color: var(--muted); }

.h-display {
  font-family: 'Anton', sans-serif; font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: .95; letter-spacing: -1px; margin: 0; color: var(--ink); text-transform: uppercase;
}
.h-display .accent { color: var(--orange); }
.lead { font-size: 14px; line-height: 1.6; color: var(--muted-2); margin: 0; }

.section__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(36px, 6vh, 64px); }
.section__head .lead { max-width: 320px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn--primary { background: var(--orange); color: var(--bg); padding: 15px 28px; }
.btn--primary:hover { background: var(--orange-2); transform: translateY(-2px); }
.btn--ghost {
  font-weight: 500; font-size: 13px; color: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .3); border-radius: 0; padding-bottom: 4px;
}
.btn--ghost:hover { color: var(--orange); border-color: var(--orange); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(14px, 2.2vh, 22px) clamp(18px, 5vw, 64px);
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0));
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8, 8, 10, .82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__dot { width: 9px; height: 9px; background: var(--orange); border-radius: 1px; box-shadow: 0 0 14px var(--orange); }
.nav__name { font-family: 'Anton', sans-serif; font-size: 20px; letter-spacing: 2px; color: var(--ink); }
.nav__tag { font-family: 'Oswald', sans-serif; font-size: 9px; letter-spacing: 3px; color: var(--muted-3); text-transform: uppercase; align-self: flex-end; padding-bottom: 3px; }
.nav__links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__link {
  font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: #c9c9c5; text-decoration: none; transition: color .25s;
}
.nav__link:hover { color: var(--orange); }
.nav__cta {
  font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--bg); background: var(--orange); padding: 9px 16px; border-radius: 2px;
  text-decoration: none; transition: background .25s;
}
.nav__cta:hover { background: var(--orange-2); }
@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }

  /* Push video right so Titi (framed right) stays visible on phones */
  .hero__video { object-position: 78% 42%; }

  /* Hero name: tighter stack on phones */
  .hero__title--2 { margin-top: clamp(2.6rem, 8vh, 3.4rem); }
  .hero__role span { font-size: 16px !important; letter-spacing: 3px; }
  .hero__actions .btn--ghost { display: none; }

  /* Give the video more room: compact sponsor band to a thin logo strip */
  .sponsor-band__row { flex-direction: column; align-items: center; gap: 8px; padding: 10px clamp(16px,5vw,24px); }
  .sponsor-band__lead { font-size: 9px; letter-spacing: 2px; }
  .sponsor-band__list { width: 100%; flex-wrap: nowrap; justify-content: space-around; gap: 14px; }
  .sponsor-band__item { flex-direction: column; gap: 5px; text-align: center; padding: 0; opacity: 1; }
  .sponsor-band__item img { height: 24px; max-width: 72px; }
  .sponsor-band__name { font-size: 11px; letter-spacing: .5px; }
  .sponsor-band__handle { display: none; }
  .sponsor-band__name + br { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; width: 100%; height: 100svh; min-height: 520px;
  overflow: hidden; background: var(--bg-deep); display: flex; flex-direction: column;
}
.hero__video {
  position: absolute; inset: 0; top: -90px; width: 100%; height: 100%;
  object-fit: cover; object-position: 58% 42%; filter: brightness(.9) saturate(1.05) contrast(1.02);
}
.hero__scrim-h { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(5,5,6,.86) 0%, rgba(5,5,6,.55) 34%, rgba(5,5,6,.12) 62%, rgba(5,5,6,.35) 100%); }
.hero__scrim-v { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,5,6,.5) 0%, rgba(5,5,6,0) 24%, rgba(5,5,6,0) 55%, rgba(5,5,6,.85) 100%); }
.hero__inner { position: relative; flex: 1; min-height: 0; display: flex; align-items: center; padding: clamp(86px,12vh,120px) clamp(20px,6vw,80px) clamp(18px,3vh,30px); }
.hero__content { max-width: 720px; }
.hero__title {
  font-family: 'Anton', sans-serif; font-size: clamp(2.6rem, min(7.4vw, 10vh), 6rem);
  line-height: .88; letter-spacing: clamp(-.5px, -.1vw, -2px); margin: clamp(8px,1.4vh,14px) 0 0;
  text-transform: uppercase; color: var(--ink); text-shadow: 0 2px 24px rgba(0,0,0,.55);
  opacity: 0; animation: heroUp .9s cubic-bezier(.16,.84,.34,1) .45s both;
}
.hero__title--2 { margin-top: 4rem; }
.hero__nick { display: flex; align-items: baseline; gap: 10px; margin-top: clamp(15px,1.2vh,14px); opacity: 0; animation: heroUp .7s ease-out .6s both; }
.hero__nick span {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-style: italic;
  font-size: clamp(1.4rem, min(3.4vw, 4vh), 2.4rem); line-height: 1; letter-spacing: 1px;
  color: var(--orange); text-shadow: 0 2px 18px rgba(0,0,0,.5);
}
.hero__role { display: flex; align-items: center; gap: 12px; margin: 10px 0 clamp(10px,1.6vh,16px); opacity: 0; animation: heroUp .7s ease-out .15s both; }
.hero__role span { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: clamp(10px,1.4vw,13px); letter-spacing: clamp(3px,.5vw,5px); text-transform: uppercase; color: var(--ink); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(14px,2vw,24px); margin-top: clamp(16px,2.4vh,28px); opacity: 0; animation: heroUp .7s ease-out .85s both; }

/* Sponsor band inside hero */
.sponsor-band { position: relative; flex-shrink: 0; border-top: 1px solid rgba(255,94,26,.22); background: linear-gradient(to right, rgba(7,7,9,.85), rgba(14,9,6,.7)); backdrop-filter: blur(10px); opacity: 0; animation: heroUp .8s ease-out 1s both; }
.sponsor-band::before { content: ""; position: absolute; top: -1px; left: 0; width: clamp(80px,22vw,260px); height: 2px; background: linear-gradient(to right, var(--orange), transparent); }
.sponsor-band__row { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(16px,4vw,56px); padding: clamp(12px,2vh,18px) clamp(20px,6vw,80px); }
.sponsor-band__lead { display: flex; align-items: center; gap: 8px; font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted-2); flex-shrink: 0; }
.sponsor-band__list { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(20px,4.5vw,64px); flex: 1; justify-content: space-around; }
.sponsor-band__item { display: flex; align-items: center; gap: 12px; padding: 4px 6px; opacity: .85; transition: transform .3s, opacity .3s; }
.sponsor-band__item:hover { transform: translateY(-3px); opacity: 1; }
.sponsor-band__item img { height: clamp(26px,3vw,40px); width: auto; max-width: clamp(80px,9vw,120px); object-fit: contain; flex-shrink: 0; }
.sponsor-band__name { font-family: 'Anton', sans-serif; font-size: clamp(14px,1.6vw,20px); letter-spacing: 1px; color: #f0f0ec; text-transform: uppercase; line-height: 1; white-space: nowrap; }
.sponsor-band__handle { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 1px; color: var(--muted-3); white-space: nowrap; }
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); animation: blink 1.8s ease-in-out infinite; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: flex; flex-wrap: wrap; gap: clamp(36px,5vw,72px); align-items: stretch; }
.about__photo { flex: 1 1 360px; position: relative; min-height: 460px; }
.about__photo-img { position: absolute; inset: 0; background-image: url('../assets/titi-podium-mx.min.jpg'); background-size: cover; background-position: 50% 18%; border-radius: 3px; filter: saturate(1.05) contrast(1.02); }
.about__photo-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,10,.5), transparent 50%); border-radius: 3px; }
.corner { position: absolute; width: 26px; height: 26px; }
.corner--tl { top: 14px; left: 14px; border-top: 2px solid var(--orange); border-left: 2px solid var(--orange); }
.corner--br { bottom: 14px; right: 14px; border-bottom: 2px solid var(--orange); border-right: 2px solid var(--orange); }
.about__photo-badge { position: absolute; bottom: 16px; left: 16px; display: flex; align-items: center; gap: 8px; }
.about__photo-badge span:last-child { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 2px; color: var(--ink); }
.about__photo-badge .live-dot { width: 6px; height: 6px; }
.about__text { flex: 1 1 460px; display: flex; flex-direction: column; justify-content: center; }
.about__title { margin-bottom: 6px; }
.about__copy { max-width: 560px; font-size: clamp(15px,1.5vw,18px); line-height: 1.7; color: var(--ink-soft); margin: 18px 0 32px; }
.about__copy strong { color: var(--ink); font-weight: inherit; }
.champ-list { display: flex; flex-direction: column; gap: 10px; }

.champ {
  position: relative; display: flex; align-items: center; gap: 14px;
  padding: 16px 20px 16px 22px; border-radius: 4px; overflow: hidden;
  background: var(--card); border: 1px solid var(--line);
  transition: border-color .3s, transform .3s;
}
.champ:hover { border-color: rgba(255,94,26,.55); transform: translateX(4px); }
.champ::before { content: ""; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--orange); opacity: .7; }
.champ--featured { background: linear-gradient(120deg, #1a1207 0%, var(--card) 70%); border-color: rgba(255,180,70,.45); box-shadow: 0 0 30px rgba(255,150,40,.12); }
.champ--featured::before { background: var(--gold); opacity: 1; }
.champ__icon { font-size: clamp(22px,2.4vw,28px); line-height: 1; flex-shrink: 0; }
.champ__body { flex: 1 1 auto; min-width: 0; }
.champ__title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(13px,1.3vw,15px); line-height: 1.2; color: var(--ink); text-transform: uppercase; letter-spacing: .3px; }
.champ__sub { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-2); margin-top: 5px; }
.champ__rank { font-family: 'Anton', sans-serif; font-size: clamp(1.7rem,2.8vw,2.3rem); line-height: 1; flex-shrink: 0; text-transform: uppercase; color: var(--orange); }
.champ--featured .champ__rank { color: var(--gold); text-shadow: 0 2px 16px rgba(255,150,40,.4); }

/* ============================================================
   RESULTS timeline
   ============================================================ */
.timeline { position: relative; display: flex; flex-direction: column; }
.timeline::before { content: ""; position: absolute; left: clamp(46px,7vw,90px); top: 8px; bottom: 8px; width: 1px; background: linear-gradient(to bottom, var(--orange), rgba(255,94,26,.15)); }
.tl-row { position: relative; display: flex; flex-wrap: wrap; gap: clamp(20px,4vw,48px); padding: clamp(20px,3vh,30px) 0; align-items: flex-start; }
.tl-year { flex: 0 0 clamp(80px,12vw,140px); position: relative; padding-left: 4px; }
.tl-year span:first-child { font-family: 'Anton', sans-serif; font-size: clamp(2rem,4vw,3.4rem); line-height: 1; color: var(--ink); text-transform: uppercase; }
.tl-year--future span:first-child { color: var(--muted-3); }
.tl-dot { position: absolute; top: 10px; right: -1px; width: 11px; height: 11px; border-radius: 50%; background: var(--orange); border: 2px solid var(--bg-alt); box-shadow: 0 0 0 3px rgba(255,94,26,.12); transform: translateX(50%); }
.tl-year--future .tl-dot { background: #3a3a3d; }
.tl-card { flex: 1 1 340px; display: flex; flex-wrap: wrap; gap: 22px; padding: 22px 24px; background: var(--card); border: 1px solid var(--line); border-radius: 3px; transition: border-color .3s, transform .3s; }
.tl-card:hover { border-color: rgba(255,94,26,.4); transform: translateY(-3px); }
.tl-card__body { flex: 1 1 240px; }
.tl-card__place { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.tl-card__title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(1.1rem,1.8vw,1.5rem); line-height: 1.15; margin: 0 0 10px; color: var(--ink); }
.tl-card__desc { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }
.tl-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--orange);
  background: transparent; border: 1px solid rgba(255,94,26,.35);
  padding: 9px 16px; border-radius: 2px; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.tl-more:hover, .tl-card:hover .tl-more {
  background: var(--orange); color: var(--bg); border-color: var(--orange); transform: translateY(-1px);
}
.tl-more__arrow { transition: transform .25s; }
.tl-more:hover .tl-more__arrow { transform: translateX(3px); }
.tl-card__media { flex: 0 0 clamp(120px,16vw,180px); align-self: stretch; min-height: 110px; position: relative; border-radius: 2px; overflow: hidden; background-size: cover; background-position: center; filter: saturate(1.05); }
.tl-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(14,14,17,.35), transparent); }

/* ============================================================
   MOMENTS parallax
   ============================================================ */
.moment { position: relative; height: clamp(420px,90vh,720px); display: flex; align-items: flex-end; overflow: hidden; }
.parallax-bg { position: absolute; top: -20%; left: 0; right: 0; height: 140%; background-size: cover; background-position: center; filter: brightness(.7) saturate(1.06); will-change: transform; }
.moment__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,6,.92) 0%, rgba(5,5,6,.25) 50%, rgba(5,5,6,.5) 100%); }
.moment__inner { position: relative; padding: clamp(40px,7vh,90px) clamp(20px,6vw,90px); max-width: 1000px; }
.moment__kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.moment__kicker span:first-child { width: 30px; height: 2px; background: var(--orange); }
.moment__kicker span:last-child { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: #d8d8d4; }
.moment__title { font-family: 'Anton', sans-serif; font-size: clamp(2.4rem,7vw,6rem); line-height: .92; letter-spacing: -1px; margin: 0; color: var(--ink); text-transform: uppercase; max-width: 18ch; text-shadow: 0 6px 50px rgba(0,0,0,.55); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(clamp(150px,22vw,260px), 1fr)); grid-auto-rows: clamp(135px,15vw,195px); gap: 12px; grid-auto-flow: dense; }
.gallery__item { position: relative; overflow: hidden; border-radius: 3px; background: var(--card); cursor: pointer; border: 1px solid var(--line); transition: border-color .35s; text-decoration: none; display: block; }
.gallery__item:hover { border-color: rgba(255,94,26,.55); }
.gallery__img { position: absolute; inset: 0; background-size: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s; transform: scale(1); filter: brightness(.92) saturate(1.05); }
.gallery__item:hover .gallery__img { transform: scale(1.08); filter: brightness(.72) saturate(1.1); }
.gallery__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,6,.9) 0%, rgba(5,5,6,.1) 55%, transparent 100%); }
.gallery__cat { position: absolute; top: 12px; left: 12px; font-family: 'Oswald', sans-serif; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); background: rgba(8,8,10,.55); backdrop-filter: blur(4px); padding: 4px 9px; border-radius: 2px; border: 1px solid rgba(255,255,255,.12); }
.gallery__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(1); width: 52px; height: 52px; border-radius: 50%; background: rgba(244,243,241,.92); display: flex; align-items: center; justify-content: center; transition: transform .35s, background .35s; box-shadow: 0 6px 24px rgba(0,0,0,.5); }
.gallery__item:hover .gallery__play { transform: translate(-50%,-50%) scale(1.12); background: var(--orange); }
.gallery__play::before { content: ""; width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 13px solid var(--bg); margin-left: 3px; }
.gallery__cap { position: absolute; left: 14px; right: 14px; bottom: 13px; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.gallery__cap-title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(13px,1.3vw,16px); line-height: 1.15; color: var(--ink); text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.gallery__arrow { font-family: 'Oswald', sans-serif; font-size: 16px; color: var(--orange); opacity: 0; transform: translate(-4px,4px); transition: opacity .35s, transform .35s; }
.gallery__item:hover .gallery__arrow { opacity: 1; transform: translate(0,0); }
.gallery__item--c2 { grid-column: span 2; }
.gallery__item--r2 { grid-row: span 2; }

/* ============================================================
   SPONSORS + CTA
   ============================================================ */
.sponsors-head { text-align: center; margin-bottom: clamp(40px,6vh,64px); }
.sponsors-head .h-display { max-width: 16ch; margin: 0 auto; font-size: clamp(2.4rem,5vw,4.4rem); line-height: 1; }
.sponsors-head .lead { max-width: 560px; margin: 18px auto 0; font-size: 15px; color: var(--muted); }
.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-bottom: clamp(40px,6vh,64px); }
.sponsor-card { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; min-height: 170px; padding: 28px; background: var(--card); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; transition: border-color .3s, transform .3s; }
.sponsor-card:hover { border-color: rgba(255,94,26,.4); transform: translateY(-3px); }
.sponsor-card img { height: clamp(54px,6vw,80px); width: auto; max-width: 80%; object-fit: contain; }
.sponsor-card__handle { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2px; color: var(--muted-3); }
.sponsor-card::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--orange); opacity: .55; }

.cta { position: relative; overflow: hidden; border-radius: 4px; border: 1px solid rgba(255,94,26,.35); background: linear-gradient(120deg, #120b07 0%, var(--card) 60%); padding: clamp(36px,6vw,64px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.cta::before { content: ""; position: absolute; top: -40%; right: -5%; width: 380px; height: 380px; background: radial-gradient(circle, rgba(255,94,26,.22), transparent 65%); pointer-events: none; }
.cta__body { position: relative; flex: 1 1 360px; }
.cta__kicker { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.cta__title { font-family: 'Anton', sans-serif; font-size: clamp(2rem,4vw,3.4rem); line-height: 1; letter-spacing: -1px; margin: 0 0 14px; color: var(--ink); text-transform: uppercase; }
.cta__copy { max-width: 520px; font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0; }
.cta .btn--primary { position: relative; flex-shrink: 0; font-size: 15px; padding: 18px 30px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { position: relative; overflow: hidden; padding-bottom: clamp(50px,7vh,80px); }
.contact__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.contact__scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,8,10,.6) 0%, rgba(8,8,10,.5) 50%, rgba(8,8,10,1) 100%); }
.contact__inner { position: relative; }
.contact__head { text-align: center; margin-bottom: clamp(36px,6vh,56px); }
.contact__head .h-display { font-size: clamp(3rem,9vw,7rem); line-height: .9; letter-spacing: -2px; }
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-bottom: 34px; }
.social-card { position: relative; display: flex; flex-direction: column; gap: 10px; padding: 24px; background: rgba(14,14,17,.78); backdrop-filter: blur(6px); border: 1px solid var(--line); border-radius: 3px; text-decoration: none; overflow: hidden; transition: border-color .3s, transform .3s, background .3s; }
.social-card:hover { border-color: rgba(255,94,26,.5); transform: translateY(-4px); background: rgba(18,12,8,.85); }
.social-card__top { display: flex; align-items: center; justify-content: space-between; }
.social-card__net { font-family: 'Anton', sans-serif; font-size: clamp(18px,2vw,24px); color: var(--ink); text-transform: uppercase; }
.social-card__arrow { font-family: 'Oswald', sans-serif; font-size: 16px; color: var(--orange); }
.social-card__handle { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 1px; color: var(--muted-2); }
.contact__mail { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; padding: 22px; background: rgba(14,14,17,.6); border: 1px solid var(--line); border-radius: 3px; text-align: center; }
.contact__mail span { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); }
.contact__mail a { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(16px,2vw,22px); color: var(--orange); text-decoration: none; letter-spacing: .5px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; padding: clamp(28px,4vh,40px) clamp(20px,6vw,90px); background: var(--bg-deep); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__sq { width: 8px; height: 8px; background: var(--orange); border-radius: 1px; }
.footer__name { font-family: 'Anton', sans-serif; font-size: 17px; letter-spacing: 2px; color: var(--ink); }
.footer__meta { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 2px; color: var(--muted-3); text-transform: uppercase; }
.footer__credit { display: flex; align-items: center; gap: 10px; padding: 10px 18px; border: 1px solid rgba(255,94,26,.28); border-radius: 2px; background: linear-gradient(to right, rgba(255,94,26,.06), rgba(255,94,26,0)); transition: border-color .3s, background .3s; }
.footer__credit:hover { border-color: rgba(255,94,26,.55); background: linear-gradient(to right, rgba(255,94,26,.12), rgba(255,94,26,0)); }
.footer__credit .live-dot { animation: blink 2.4s ease-in-out infinite; }
.footer__credit span:last-child { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.footer__credit a { position: relative; text-decoration: none; }
.footer__credit strong {
  font-family: 'Anton', sans-serif; font-weight: 400; letter-spacing: 1.5px;
  font-size: 13px; color: var(--orange); text-shadow: 0 0 18px rgba(255,94,26,.45);
  transition: color .25s, text-shadow .25s;
}
.footer__credit a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1.5px;
  background: var(--orange); transition: width .3s ease;
}
.footer__credit a:hover strong { color: var(--orange-2); text-shadow: 0 0 24px rgba(255,122,64,.7); }
.footer__credit a:hover::after { width: 100%; }

/* ============================================================
   MODAL — event detail
   ============================================================ */
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }

.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: clamp(16px,4vw,40px); }
.modal.is-open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(3,3,4,.82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: overlayIn .3s ease both; }
.modal__panel {
  position: relative; width: min(880px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--card); border: 1px solid rgba(255,94,26,.3); border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0,0,0,.6); animation: modalIn .4s cubic-bezier(.2,.7,.2,1) both;
}
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  background: rgba(8,8,10,.6); border: 1px solid var(--line); border-radius: 50%;
  color: var(--ink); font-size: 22px; line-height: 1; transition: background .25s, border-color .25s, transform .25s;
}
.modal__close:hover { background: var(--orange); border-color: var(--orange); color: var(--bg); transform: rotate(90deg); }
.modal__hero { position: relative; height: clamp(180px,30vw,280px); background-size: cover; background-position: center; }
.modal__hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--card) 0%, rgba(14,14,17,.2) 50%, rgba(14,14,17,.45) 100%); }
.modal__hero-tag { position: absolute; left: clamp(20px,4vw,36px); bottom: 16px; z-index: 1; font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); }
.modal__body { padding: clamp(22px,4vw,36px); }
.modal__year { font-family: 'Anton', sans-serif; font-size: clamp(2rem,5vw,3rem); line-height: 1; color: var(--orange); margin-bottom: 6px; }
.modal__title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(1.3rem,2.4vw,1.9rem); line-height: 1.15; margin: 0 0 8px; color: var(--ink); }
.modal__place { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.modal__desc { font-size: clamp(14px,1.4vw,16px); line-height: 1.75; color: var(--ink-soft); margin: 0 0 24px; }
.modal__stats { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 26px; }
.modal__stat { flex: 1 1 120px; padding: 14px 16px; background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 4px; }
.modal__stat-num { font-family: 'Anton', sans-serif; font-size: clamp(1.4rem,2.4vw,1.9rem); line-height: 1; color: var(--ink); }
.modal__stat-lbl { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-2); margin-top: 6px; }
.modal__gallery-title { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
.modal__gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
.modal__shot { position: relative; height: clamp(110px,14vw,150px); border-radius: 4px; background-size: cover; background-position: center; border: 1px solid var(--line); transition: transform .4s, border-color .3s; }
.modal__shot:hover { transform: translateY(-3px); border-color: rgba(255,94,26,.4); }
.modal__empty { font-size: 14px; line-height: 1.6; color: var(--muted); font-style: italic; }
body.modal-open { overflow: hidden; }

/* ---------- Lightbox galería ---------- */
.lightbox { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: clamp(16px,4vw,48px); }
.lightbox.is-open { display: flex; }
.lightbox__overlay { position: absolute; inset: 0; background: rgba(3,3,4,.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); animation: overlayIn .3s ease both; }
.lightbox__figure { position: relative; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 100%; max-height: 100%; animation: modalIn .4s cubic-bezier(.2,.7,.2,1) both; }
.lightbox__img { max-width: min(1100px, 92vw); max-height: 82vh; width: auto; height: auto; object-fit: contain; border-radius: 4px; border: 1px solid rgba(255,94,26,.3); box-shadow: 0 30px 90px rgba(0,0,0,.7); }
.lightbox__cap { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); text-align: center; }
.lightbox__close {
  position: absolute; top: clamp(14px,3vw,28px); right: clamp(14px,3vw,28px); z-index: 2; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  background: rgba(8,8,10,.6); border: 1px solid var(--line); border-radius: 50%;
  color: var(--ink); font-size: 24px; line-height: 1; transition: background .25s, border-color .25s, transform .25s;
}
.lightbox__close:hover { background: var(--orange); border-color: var(--orange); color: var(--bg); transform: rotate(90deg); }
