/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --color-black: #050505;
  --color-black-soft: #090909;
  --color-card: #111111;
  --color-card-2: #161113;

  --color-magenta: #E60073;
  --color-magenta-dark: #A8005D;
  --color-magenta-light: #FF1685;

  --color-gold: #C99A3D;
  --color-gold-light: #F4D27A;

  --color-white: #F5F2EE;
  --color-mute: #a89a9e;
  --color-line: rgba(245, 242, 238, 0.12);

  --display: 'Playfair Display', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-sm: 8px;

  --header-h: 76px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  font-family: var(--sans);
  background: var(--color-black);
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--display); font-weight: 600; }
::selection { background: var(--color-magenta); color: var(--color-white); }

:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--color-white); color: var(--color-black);
  border-radius: 8px; font-weight: 700; transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.reveal { opacity: 0; transform: translateY(28px); }
.is-ready .reveal.is-visible,
.no-js .reveal { opacity: 1; transform: none; transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Typography
   ============================================================= */
.section-kicker {
  font-family: var(--sans); font-weight: 700; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--color-gold-light);
  margin-bottom: .9rem;
}
.section-title { font-size: clamp(1.9rem, 4.4vw, 3.1rem); margin-bottom: 1rem; }
.section-lead { color: var(--color-mute); max-width: 46ch; font-size: 1.05rem; }
em { font-style: italic; color: var(--color-magenta-light); }

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: .95rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out), color .35s var(--ease-out), border-color .35s var(--ease-out);
  white-space: nowrap; min-height: 48px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-magenta-light), var(--color-magenta-dark));
  color: var(--color-white);
  box-shadow: 0 10px 30px -8px rgba(230, 0, 115, .55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -6px rgba(255, 22, 133, .65); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  border: 1.5px solid var(--color-line); color: var(--color-white); background: rgba(245,242,238,.03);
}
.btn-outline:hover { border-color: var(--color-gold-light); color: var(--color-gold-light); background: rgba(201,154,61,.08); }

.btn-ghost { color: var(--color-white); padding: .6rem; min-height: auto; }
.btn-ghost:hover { color: var(--color-gold-light); }

.btn-lg { padding: 1rem 1.9rem; font-size: 1rem; }

.has-magnetic { isolation: isolate; }
.magnetic-inner {
  display: inline-flex; align-items: center; justify-content: center; gap: inherit;
  will-change: transform; transition: transform .8s var(--ease-soft);
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 500; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(5,5,5,.65); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.site-header.is-scrolled { border-bottom-color: var(--color-line); background: rgba(5,5,5,.9); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }

.brand-mark { display: inline-flex; align-items: center; gap: .6rem; }
.brand-glyph { display: flex; flex-shrink: 0; }
.brand-glyph img { display: block; }
.brand-text {
  font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: .01em;
  display: flex; flex-direction: column; line-height: 1.05;
}
.brand-sub { font-family: var(--sans); font-weight: 600; font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--color-gold-light); }

.main-nav { display: none; }
.main-nav a {
  position: relative; font-size: .92rem; font-weight: 600; padding: .4rem 0; margin-inline: .9rem;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--color-gold-light); transition: width .3s var(--ease-out);
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: .6rem; }
.header-social { display: none; }
.header-cta { display: none; padding: .7rem 1.25rem; font-size: .85rem; }

/* Hamburger */
.hamburger {
  width: 44px; height: 44px; display: grid; place-items: center; gap: 5px;
  position: relative; z-index: 610;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--color-white);
  transition: transform .35s var(--ease-out), opacity .25s var(--ease-out);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(340px, 84vw); height: 100dvh;
  background: linear-gradient(180deg, var(--color-black-soft), var(--color-black));
  border-left: 1px solid var(--color-line);
  z-index: 600; padding: calc(var(--header-h) + 1.5rem) 1.75rem 2rem;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateX(100%); transition: transform .45s var(--ease-out);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.4rem; }
.mobile-menu nav a { font-family: var(--display); font-size: 1.5rem; font-weight: 600; }
.mobile-menu-cta { width: 100%; }

.menu-backdrop {
  position: fixed; inset: 0; background: rgba(5,5,5,.6); backdrop-filter: blur(3px);
  z-index: 590; opacity: 0; pointer-events: none; transition: opacity .35s var(--ease-out);
}
.menu-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* Hero */
.hero {
  position: relative; z-index: 0; min-height: auto; display: flex; align-items: center;
  padding-block: calc(var(--header-h) + 1rem) 2rem; overflow: hidden;
  background: #0a0508;
}

/* Hero background media: poster <img> is the LCP element and permanent fallback;
   the <video> fades in on top only once JS confirms it's safe to play. */
.hero-media {
  position: absolute; inset: 0; z-index: -1; overflow: hidden; background: #0a0508;
}
.hero-poster, .hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 30%;
}
.hero-video {
  opacity: 0; transition: opacity 1.1s var(--ease-soft);
}
.hero-video.is-playing { opacity: 1; }
.hero-video-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,.55) 0%, rgba(5,5,5,.72) 55%, var(--color-black) 100%),
    radial-gradient(ellipse 120% 70% at 50% 0%, rgba(21,9,16,.2) 0%, transparent 55%);
}

.hero-mesh {
  position: absolute; inset: -10%; z-index: 0; opacity: .5; mix-blend-mode: screen;
  background:
    conic-gradient(from var(--mesh-angle) at 30% 30%, rgba(230,0,115,.35), transparent 35%, rgba(201,154,61,.28) 55%, transparent 80%);
  filter: blur(70px);
  animation: meshRotate 22s linear infinite;
}
@keyframes meshRotate { to { --mesh-angle: 360deg; } }

.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute; z-index: 0; border-radius: 50%; filter: blur(90px); pointer-events: none; opacity: .7;
}
.hero-glow-magenta { width: 46vw; height: 46vw; background: rgba(230,0,115,.35); top: -10%; right: -12%; }
.hero-glow-gold { width: 34vw; height: 34vw; background: rgba(201,154,61,.28); bottom: -12%; left: -8%; }
.hero-glow[data-hero-glow] { transition: transform 1.2s var(--ease-soft); will-change: transform; }

.hero-embers { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.ember {
  position: absolute; bottom: -10%; border-radius: 50%; opacity: 0;
  animation: emberRise linear infinite;
}
@keyframes emberRise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: .6; }
  100% { transform: translateY(-115vh) translateX(var(--drift, 20px)); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-embers { display: none; }
}

.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero-kicker {
  font-weight: 700; font-size: .82rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--color-gold-light); margin-bottom: .9rem;
}
.hero-emblem { margin-bottom: .9rem; filter: drop-shadow(0 0 24px rgba(230,0,115,.35)); }
.hero-emblem svg { width: 52px; height: 52px; }
.hero-title {
  font-size: clamp(2.1rem, 6vw, 4.6rem); font-weight: 600; margin-bottom: 1rem;
}
.hero-sub { font-size: clamp(.95rem, 1.6vw, 1.15rem); color: var(--color-mute); max-width: 52ch; margin-bottom: 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-tertiary {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.4rem;
  font-size: .9rem; font-weight: 600; color: var(--color-mute);
  border-bottom: 1px solid transparent; transition: color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.hero-tertiary span { transition: transform .3s var(--ease-out); }
.hero-tertiary:hover { color: var(--color-gold-light); border-color: rgba(244,210,122,.4); }
.hero-tertiary:hover span { transform: translateX(3px); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 1.5px solid var(--color-line); border-radius: 999px;
  display: none;
}
.scroll-cue span {
  display: block; width: 4px; height: 8px; margin: 8px auto 0; border-radius: 999px;
  background: var(--color-gold-light); animation: scrollCue 1.8s var(--ease-soft) infinite;
}
@keyframes scrollCue { 0% { transform: translateY(0); opacity: 1; } 70% { opacity: 0; } 100% { transform: translateY(14px); opacity: 0; } }

/* Marquee */
.marquee {
  overflow: hidden; position: relative; border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line);
  padding-block: 1.1rem; background: var(--color-black-soft);
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 10%; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--color-black-soft), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--color-black-soft), transparent); }
.marquee-track {
  display: inline-flex; gap: 1.2rem; white-space: nowrap; will-change: transform;
  animation: marqueeScroll 26s linear infinite;
}
.marquee-track span {
  font-family: var(--display); font-style: italic; font-size: 1.05rem; color: var(--color-mute);
}
.marquee-track .dot { color: var(--color-gold-light); font-style: normal; font-size: .8rem; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* Stats */
.stats { padding-block: clamp(3rem, 6vw, 4.5rem); border-bottom: 1px solid var(--color-line); }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(.75rem, 4vw, 2rem); text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-value { display: inline-flex; align-items: flex-start; }
.stat-num {
  font-family: var(--display); font-weight: 700; font-size: clamp(1.9rem, 7vw, 4rem);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-magenta-light));
  -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1;
}
.stat-suffix {
  font-family: var(--display); font-weight: 700; font-size: clamp(1.1rem, 2.4vw, 1.5rem); color: var(--color-gold-light);
  line-height: 1; margin-top: .15em;
}
.stat p { color: var(--color-mute); font-size: clamp(.72rem, 2vw, .9rem); margin-top: .5rem; line-height: 1.35; }

/* Manifesto */
.manifesto { position: relative; padding-block: clamp(4rem, 9vw, 8rem); border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); overflow: hidden; }
.manifesto-bg { position: absolute; inset: 0; z-index: 0; }
.manifesto-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  opacity: .22; filter: saturate(1.1);
}
.manifesto-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--color-black) 0%, rgba(5,5,5,.75) 40%, var(--color-black) 100%);
}
.manifesto-grid { position: relative; z-index: 1; display: grid; gap: 1.5rem; align-items: start; }
.manifesto-num {
  font-family: var(--display); font-size: 1rem; color: var(--color-mute); letter-spacing: .1em;
}
.manifesto-text {
  font-size: clamp(1.5rem, 3.6vw, 2.4rem); font-family: var(--display); font-weight: 500; line-height: 1.35;
}

/* Experience / pillars */
.experience { padding-block: clamp(4rem, 9vw, 7rem); }
.pillars { display: grid; gap: 1.5rem; margin-top: 3rem; }
.pillar {
  padding: 2rem 1.75rem; border: 1px solid var(--color-line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--color-card), var(--color-black-soft));
  transition: border-color .35s var(--ease-out), transform .35s var(--ease-out);
}
.pillar:hover { border-color: rgba(201,154,61,.4); transform: translateY(-4px); }
.pillar-index {
  display: inline-block; font-family: var(--display); font-style: italic; font-size: 1.4rem;
  color: var(--color-magenta-light); margin-bottom: 1rem;
}
.pillar h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.pillar p { color: var(--color-mute); font-size: .95rem; }

/* Events */
.events { padding-block: clamp(4rem, 9vw, 7rem) 3rem; }
.events-head { margin-bottom: 2.5rem; }
.events-viewport { overflow: visible; }
.events-track {
  display: flex; gap: 1.25rem; overflow-x: auto; padding-inline: var(--gutter); padding-bottom: 1rem;
  scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none;
}
.events-track::-webkit-scrollbar { display: none; }
.event-card {
  flex: 0 0 auto; width: min(78vw, 300px); scroll-snap-align: start;
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, var(--color-card-2), var(--color-black-soft));
  border: 1px solid var(--color-line);
  transition: transform .5s var(--ease-out), border-color .35s var(--ease-out), box-shadow .5s var(--ease-out);
  transform-style: preserve-3d; will-change: transform;
}
.event-card .event-body { padding: 1.5rem 1.5rem 1.75rem; position: relative; }
.event-card:not(.has-photo) .event-body { padding-top: 1.75rem; }
.event-photo { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.event-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform .6s var(--ease-out);
}
.event-card:hover .event-photo img { transform: scale(1.06); }
.event-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(9,9,9,.85) 92%, var(--color-black-soft) 100%);
}
.event-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0; z-index: -1;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(230,0,115,.25), transparent 60%);
  transition: opacity .4s var(--ease-out);
}
.event-card:hover::before { opacity: 1; }
.event-card:hover { border-color: rgba(230,0,115,.45); box-shadow: 0 24px 48px -20px rgba(230,0,115,.35); }
.event-date { display: flex; align-items: baseline; gap: .4rem; margin-bottom: 1.1rem; }
.event-day { font-size: .75rem; font-weight: 700; letter-spacing: .12em; color: var(--color-mute); }
.event-num { font-family: var(--display); font-size: 2.2rem; font-weight: 700; color: var(--color-white); }
.event-month { font-size: .75rem; font-weight: 700; letter-spacing: .12em; color: var(--color-gold-light); }
.event-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-magenta-light); border: 1px solid rgba(230,0,115,.4); border-radius: 999px;
  padding: .25rem .7rem; margin-bottom: .9rem;
}
.event-tag--today {
  color: var(--color-black); background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  border-color: transparent;
}

/* Recurring / multi-day promos (e.g. Barra Libre jue–vie–sáb) get a day-chip
   row instead of a single calendar date. */
.event-days { display: flex; gap: .35rem; margin-bottom: 1.1rem; }
.event-days span {
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  color: var(--color-gold-light); border: 1px solid rgba(244,210,122,.35); border-radius: 999px;
  padding: .3rem .55rem;
}

/* "Happening today" emphasis */
.event-card.is-today { border-color: rgba(244,210,122,.55); }
.event-card.is-today:hover { border-color: rgba(244,210,122,.75); box-shadow: 0 24px 48px -20px rgba(244,210,122,.4); }
.event-card.is-today::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: 0 0 0 1px rgba(244,210,122,.3) inset;
  animation: todayPulse 2.6s ease-in-out infinite;
}
@keyframes todayPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(244,210,122,.25) inset; }
  50% { box-shadow: 0 0 0 1px rgba(244,210,122,.6) inset, 0 0 22px rgba(244,210,122,.18) inset; }
}
@media (prefers-reduced-motion: reduce) {
  .event-card.is-today::after { animation: none; }
}

.event-card h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.event-card p { color: var(--color-mute); font-size: .9rem; margin-bottom: 1.4rem; }
.event-link { font-weight: 700; font-size: .88rem; color: var(--color-gold-light); display: inline-flex; gap: .4rem; align-items: center; }
.event-link span { transition: transform .3s var(--ease-out); }
.event-link:hover span { transform: translateX(4px); }

/* Events carousel controls */
.events-controls {
  display: flex; align-items: center; justify-content: center; gap: 1.4rem;
  margin-top: 1.75rem;
}
.events-arrow {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--color-line); color: var(--color-white);
  background: rgba(245,242,238,.03);
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out), transform .25s var(--ease-out);
}
.events-arrow:hover { border-color: var(--color-magenta-light); color: var(--color-magenta-light); background: rgba(230,0,115,.08); }
.events-arrow:active { transform: scale(.92); }
.events-arrow:disabled { opacity: .3; pointer-events: none; }

.events-dots { display: flex; align-items: center; gap: .5rem; }
.events-dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--color-line);
  transition: width .4s var(--ease-out), background .4s var(--ease-out);
}
.events-dot.is-active { width: 26px; background: linear-gradient(90deg, var(--color-magenta-light), var(--color-gold-light)); }

/* CTA band */
.cta-band {
  padding-block: clamp(4rem, 9vw, 7rem); border-top: 1px solid var(--color-line);
  background: linear-gradient(180deg, transparent, rgba(230,0,115,.06));
}
.cta-band-inner { display: grid; gap: 2rem; align-items: center; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Location */
.location { padding-block: clamp(4rem, 9vw, 7rem); }
.location-grid { display: grid; gap: 1.5rem; }
.location-map {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-line);
  aspect-ratio: 16/11; min-height: 260px;
}
.location-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25) invert(.92) contrast(.9); }
.location-card {
  padding: 2rem; border-radius: var(--radius); border: 1px solid var(--color-line);
  background: linear-gradient(180deg, var(--color-card), var(--color-black-soft));
  display: flex; flex-direction: column; gap: .5rem; justify-content: center;
}
.location-card h3 { font-size: 1.4rem; margin-bottom: .3rem; }
.location-address { color: var(--color-white); }
.location-hours { color: var(--color-mute); margin-bottom: 1.2rem; font-size: .9rem; }
.location-card .btn { align-self: flex-start; }

/* Social */
.social-band { padding-block: clamp(4rem, 9vw, 6rem); border-top: 1px solid var(--color-line); text-align: center; }
.social-band-inner { display: flex; flex-direction: column; align-items: center; }
.social-links { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 1.6rem; }
.social-pill {
  display: inline-flex; align-items: center; gap: .55rem; padding: .8rem 1.4rem; border-radius: 999px;
  border: 1px solid var(--color-line); font-weight: 600; transition: border-color .3s var(--ease-out), color .3s var(--ease-out);
}
.social-pill:hover { border-color: var(--color-magenta-light); color: var(--color-magenta-light); }

/* Footer */
.site-footer { padding-block: 3rem calc(3rem + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--color-line); }
.footer-inner { display: grid; gap: 1.5rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-nav a { font-size: .9rem; color: var(--color-mute); }
.footer-nav a:hover { color: var(--color-white); }
.footer-meta, .footer-copy { color: var(--color-mute); font-size: .85rem; }

/* Mobile sticky bar */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(9,9,9,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--color-line);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
  padding: .7rem .5rem; font-size: .72rem; font-weight: 700; color: var(--color-white);
}
.mobile-bar a span { font-size: 1.15rem; }
.mobile-bar a:active { color: var(--color-magenta-light); }

/* =============================================================
   6. Effects
   ============================================================= */
[data-tilt] { transition: transform .25s var(--ease-out); }

/* =============================================================
   7. Responsive — mobile-first
   ============================================================= */
body { padding-bottom: 62px; } /* space for mobile bar */

@media (min-width: 540px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .cta-band-actions { flex-wrap: nowrap; }
}

@media (min-width: 720px) {
  .manifesto-grid { grid-template-columns: 100px 1fr; }
  .location-grid { grid-template-columns: 1.4fr 1fr; }
  .location-map { aspect-ratio: auto; height: 100%; }
}

@media (min-width: 960px) {
  .main-nav { display: flex; align-items: center; }
  .header-social { display: inline-flex; }
  .header-cta { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
  .scroll-cue { display: block; }

  .pillars { grid-template-columns: repeat(3, 1fr); }
  .cta-band-inner { grid-template-columns: 1.3fr 1fr; }
  .event-card { width: 340px; }
}

@media (min-width: 1280px) {
  .hero-title { font-size: clamp(2.6rem, 5vw, 4.8rem); }
}

/* =============================================================
   8. Reduced motion — only truly intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .scroll-cue span { animation: none; }
  html { scroll-behavior: auto; }
  /* Autoplay video is a full-bleed, always-moving background — the kind of
     motion prefers-reduced-motion exists for. The static poster stays. */
  .hero-video { display: none; }
}

/* No-JS fallback: always show content */
.no-js .reveal { opacity: 1 !important; transform: none !important; }
