/* ==========================================================================
   HEART 2026 — Festival Ekaristi
   Design tokens taken from the official poster: deep maroon night, crimson
   and magenta glow, monstrance gold.
   ========================================================================== */

:root {
  --bg:          #12030a;
  --bg-2:        #1d0512;
  --bg-3:        #2a0819;
  --panel:       rgba(255, 255, 255, 0.045);
  --panel-solid: #220714;
  --line:        rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);

  --crimson: #c9102f;
  --red:     #e11d48;
  --rose:    #ff2e6a;
  --magenta: #ff3d8b;
  --gold:    #f6c964;
  --gold-2:  #ffe3a3;

  --ink:     #ffffff;
  --muted:   rgba(255, 255, 255, 0.74);
  --muted-2: rgba(255, 255, 255, 0.52);

  --grad-hot:  linear-gradient(135deg, var(--crimson), var(--rose) 55%, var(--magenta));
  --grad-gold: linear-gradient(135deg, var(--gold), var(--gold-2));

  --radius:    18px;
  --radius-lg: 26px;
  --radius-sm: 12px;

  --shadow:      0 18px 50px -20px rgba(0, 0, 0, 0.75);
  --shadow-glow: 0 0 60px -12px rgba(255, 46, 106, 0.55);

  --font-sans: 'Poppins', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;

  --wrap: 1180px;
  --nav-h: 68px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

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

h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.15; font-weight: 600; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.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;
}
.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 200;
  background: var(--panel-solid); padding: 10px 18px; border-radius: 0 0 10px 10px;
  border: 1px solid var(--line); transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ---------- Ambient background ------------------------------------------ */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(52vw 48vw at 12% -6%,  rgba(201, 16, 47, 0.55),  transparent 70%),
    radial-gradient(46vw 42vw at 92% 4%,   rgba(255, 61, 139, 0.34), transparent 70%),
    radial-gradient(60vw 52vw at 78% 96%,  rgba(140, 10, 60, 0.42),  transparent 72%),
    radial-gradient(40vw 40vw at 22% 78%,  rgba(246, 201, 100, 0.12), transparent 70%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 45%, var(--bg));
}
.aurora::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(34vw 34vw at 50% 50%, rgba(255, 46, 106, 0.2), transparent 68%);
  animation: drift 26s var(--ease) infinite alternate;
  will-change: transform;
}
@keyframes drift {
  from { transform: translate3d(-8%, -4%, 0) scale(1); }
  to   { transform: translate3d(10%, 6%, 0) scale(1.18); }
}

/* Slow-floating embers — 6 divs, pure CSS, no canvas. */
.embers { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.ember {
  position: absolute;
  bottom: -8vh;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  filter: blur(0.5px);
  box-shadow: 0 0 12px 3px rgba(246, 201, 100, 0.55);
  animation: rise linear infinite;
  will-change: transform, opacity;
}
.ember:nth-child(1) { left: 8%;  animation-duration: 21s; animation-delay: 0s;    }
.ember:nth-child(2) { left: 26%; animation-duration: 27s; animation-delay: -6s;  width: 4px; height: 4px; }
.ember:nth-child(3) { left: 45%; animation-duration: 24s; animation-delay: -12s; background: var(--rose); box-shadow: 0 0 12px 3px rgba(255,46,106,.5); }
.ember:nth-child(4) { left: 63%; animation-duration: 30s; animation-delay: -3s;  width: 5px; height: 5px; }
.ember:nth-child(5) { left: 79%; animation-duration: 23s; animation-delay: -16s; background: var(--magenta); box-shadow: 0 0 12px 3px rgba(255,61,139,.5); }
.ember:nth-child(6) { left: 93%; animation-duration: 28s; animation-delay: -9s;  width: 3px; height: 3px; }
@keyframes rise {
  0%   { transform: translate3d(0, 0, 0) scale(0.6);        opacity: 0; }
  12%  {                                                    opacity: 0.85; }
  50%  { transform: translate3d(22px, -52vh, 0) scale(1);    opacity: 0.6; }
  88%  {                                                    opacity: 0.25; }
  100% { transform: translate3d(-14px, -104vh, 0) scale(0.4); opacity: 0; }
}

/* ---------- Navigation --------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(18, 3, 10, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(18, 3, 10, 0.9); }
.nav .wrap { display: flex; align-items: center; gap: 18px; }

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; flex-shrink: 0; }
.brand svg { width: 34px; height: 34px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  letter-spacing: 0.34em;
  font-weight: 500;
  text-indent: 0.34em;
}
.brand-sub {
  font-size: 0.56rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); background: var(--panel); }

.nav-actions { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  --btn-bg: var(--panel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--btn-bg);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.22s var(--ease), box-shadow 0.22s, background 0.22s, border-color 0.22s, opacity 0.2s;
}
.btn:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-primary {
  --btn-bg: var(--grad-hot);
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 10px 30px -12px rgba(255, 46, 106, 0.8);
}
.btn-primary:hover { box-shadow: 0 16px 40px -12px rgba(255, 46, 106, 0.95); }

.btn-gold {
  --btn-bg: var(--grad-gold);
  border-color: transparent;
  color: #3a1006;
  font-weight: 600;
  box-shadow: 0 10px 30px -14px rgba(246, 201, 100, 0.8);
}

.btn-ghost { --btn-bg: transparent; }
.btn-ghost:hover { --btn-bg: var(--panel); }

.btn-sm { padding: 9px 16px; font-size: 0.84rem; }
.btn-block { width: 100%; }
.btn[disabled], .btn[aria-disabled='true'] { opacity: 0.5; pointer-events: none; }

/* Cart pill in the nav */
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 21px; height: 21px;
  display: none;
  align-items: center; justify-content: center;
  padding: 0 5px;
  background: var(--gold);
  color: #3a1006;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 2px var(--bg);
}
.cart-count.is-visible { display: flex; animation: pop 0.3s var(--ease); }
@keyframes pop {
  0%   { transform: scale(0.4); }
  60%  { transform: scale(1.22); }
  100% { transform: scale(1); }
}

/* ---------- Scroll reveal ------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay='1'] { transition-delay: 0.08s; }
.reveal[data-delay='2'] { transition-delay: 0.16s; }
.reveal[data-delay='3'] { transition-delay: 0.24s; }
.reveal[data-delay='4'] { transition-delay: 0.32s; }
.reveal[data-delay='5'] { transition-delay: 0.4s; }

/* ---------- Section furniture ------------------------------------------- */
section { position: relative; padding: 88px 0; }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.is-center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-head.is-center .eyebrow::after {
  content: '';
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub { color: var(--muted); font-size: 1.02rem; }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  place-items: center;
  padding: 56px 0 72px;
  text-align: center;
  overflow: hidden;
}

.hero-mark {
  width: clamp(112px, 17vw, 168px);
  margin: 0 auto 26px;
  animation: breathe 6s ease-in-out infinite;
  filter: drop-shadow(0 0 34px rgba(255, 46, 106, 0.6));
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.045); }
}

.hero-word {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 15vw, 8.5rem);
  font-weight: 300;
  letter-spacing: 0.17em;
  text-indent: 0.17em;
  line-height: 1;
  margin: 0 0 12px;
  background: linear-gradient(180deg, #fff, #ffd9e4 55%, var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Each letter carries its own clipped gradient: a transform or filter on a
   child creates a new paint layer, and a parent's background-clip:text does
   not reach into it — the letters would render fully transparent. */
.hero-word span {
  display: inline-block;
  background: linear-gradient(180deg, #fff, #ffd9e4 55%, var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: letterIn 0.9s var(--ease) both;
}
.hero-word span:nth-child(1) { animation-delay: 0.05s; }
.hero-word span:nth-child(2) { animation-delay: 0.14s; }
.hero-word span:nth-child(3) { animation-delay: 0.23s; }
.hero-word span:nth-child(4) { animation-delay: 0.32s; }
.hero-word span:nth-child(5) { animation-delay: 0.41s; }
@keyframes letterIn {
  from { opacity: 0; transform: translateY(26px) scale(0.92); }
  to   { opacity: 1; transform: none; }
}

.hero-expand {
  font-size: clamp(0.72rem, 1.9vw, 0.95rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 auto 26px;
  max-width: 34ch;
  animation: fadeUp 0.9s var(--ease) 0.5s both;
}

.hero-title {
  font-size: clamp(1.15rem, 3.1vw, 1.72rem);
  font-weight: 600;
  max-width: 26ch;
  margin: 0 auto 10px;
  line-height: 1.35;
  animation: fadeUp 0.9s var(--ease) 0.6s both;
}
.hero-relic {
  color: var(--muted);
  max-width: 44ch;
  margin: 0 auto 30px;
  font-size: 0.98rem;
  animation: fadeUp 0.9s var(--ease) 0.68s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  animation: fadeUp 0.9s var(--ease) 0.76s both;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 17px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
}
.chip svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  animation: fadeUp 0.9s var(--ease) 0.84s both;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 38px auto 0;
  animation: fadeUp 0.9s var(--ease) 0.92s both;
}
.cd-unit {
  min-width: 78px;
  padding: 13px 8px 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.cd-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cd-label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 4px;
}
.countdown.is-live .cd-live {
  grid-column: 1 / -1;
  font-weight: 600;
  color: var(--gold);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.scroll-cue i {
  width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue 2.1s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { opacity: 0.25; transform: scaleY(0.55); transform-origin: top; }
  50%      { opacity: 1;    transform: scaleY(1);    transform-origin: top; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: center;
}
.about-copy p { color: var(--muted); }
.about-copy strong { color: var(--ink); font-weight: 600; }

.acronym { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 11px; }
.acronym li { display: flex; gap: 14px; align-items: baseline; }
.acronym b {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  width: 24px;
  flex-shrink: 0;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.acronym span { color: var(--muted); font-size: 0.95rem; }
.acronym span i { font-style: normal; color: var(--ink); font-weight: 500; }

.poster-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--shadow-glow);
  transition: transform 0.4s var(--ease);
}
.poster-frame:hover { transform: translateY(-6px) rotate(-0.5deg); }
.poster-frame img { width: 100%; height: auto; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 54px;
}
.stat { text-align: center; padding: 22px 16px; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 600;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 7px;
}

/* ==========================================================================
   SCHEDULE
   ========================================================================== */
.sched { display: grid; gap: 16px; }

.day {
  display: grid;
  grid-template-columns: 148px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 24px 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.day::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-hot);
  opacity: 0.65;
  transition: opacity 0.3s;
}
.day:hover { transform: translateX(5px); border-color: var(--line-strong); }
.day:hover::before { opacity: 1; }
.day.is-free::before { background: var(--grad-gold); }

.day-date { display: flex; align-items: baseline; gap: 9px; }
.day-num {
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 0.9;
  background: linear-gradient(180deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.day-when { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.day-when b { display: block; color: var(--gold); font-weight: 600; letter-spacing: 0.14em; }

.day-body h3 {
  font-family: var(--font-display);
  font-size: 1.52rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.day-body h3 small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 5px;
}
.day-body p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.day-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 11px; }
.tag {
  font-size: 0.7rem;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}
.tag.is-time { color: var(--gold-2); border-color: rgba(246, 201, 100, 0.3); }

.day-price { text-align: right; }
.price-amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.price-amount.is-free {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-note { font-size: 0.68rem; color: var(--muted-2); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

.sched-note {
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px dashed rgba(246, 201, 100, 0.34);
  background: rgba(246, 201, 100, 0.06);
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.sched-note svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.sched-note b { color: var(--ink); }

/* ==========================================================================
   SPEAKERS
   ========================================================================== */
.speakers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(196px, 1fr));
  gap: 16px;
}
.speaker { text-align: center; padding: 30px 18px 24px; }
.speaker-avatar {
  width: 82px; height: 82px;
  margin: 0 auto 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-hot);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 0 34px -10px rgba(255, 46, 106, 0.85);
}
.speaker:nth-child(3n+2) .speaker-avatar { background: var(--grad-gold); color: #3a1006; box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 0 34px -10px rgba(246,201,100,.85); }
.speaker h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.speaker p { font-size: 0.8rem; color: var(--muted-2); margin: 0; }

/* ==========================================================================
   VENUES
   ========================================================================== */
.venues { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; }
.venue { display: flex; flex-direction: column; gap: 13px; }
.venue-icon {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--grad-hot);
}
.venue-icon svg { width: 21px; height: 21px; }
.venue h3 { font-size: 1.12rem; margin: 0; }
.venue p { color: var(--muted); font-size: 0.91rem; margin: 0; }
.venue .tag { align-self: flex-start; }
.venue-link {
  margin-top: auto;
  padding-top: 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}
.venue-link svg { width: 15px; height: 15px; }
.venue-link:hover { text-decoration: underline; }

/* ==========================================================================
   POSTER GALLERY
   ========================================================================== */
.posters { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.poster-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--panel-solid); }
.poster-card img { width: 100%; height: auto; transition: transform 0.6s var(--ease); }
.poster-card:hover img { transform: scale(1.04); }
.poster-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 18px 15px;
  background: linear-gradient(180deg, transparent, rgba(12, 2, 7, 0.94));
  font-size: 0.85rem;
  font-weight: 500;
}
.poster-cap span { display: block; font-size: 0.7rem; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; }

/* ==========================================================================
   MERCH TEASER
   ========================================================================== */
.merch-teaser {
  position: relative;
  padding: 54px 46px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 46, 106, 0.28);
  background:
    radial-gradient(70% 130% at 88% 12%, rgba(255, 61, 139, 0.3), transparent 62%),
    radial-gradient(60% 120% at 6% 90%, rgba(246, 201, 100, 0.16), transparent 60%),
    var(--panel-solid);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
}
.merch-teaser h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  font-weight: 500;
  margin-bottom: 12px;
}
.merch-teaser p { color: var(--muted); max-width: 52ch; margin-bottom: 0; }
.merch-teaser .btn { position: relative; z-index: 1; }
.merch-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }

/* ==========================================================================
   PARTNERS
   ========================================================================== */
.partners { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.partner {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 0.86rem;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.partner:hover { color: var(--ink); border-color: var(--line-strong); transform: translateY(-2px); }

/* ==========================================================================
   REGISTER + CONTACT
   ========================================================================== */
.register-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.reg-card {
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 46, 106, 0.26);
  background:
    radial-gradient(80% 120% at 10% 0%, rgba(201, 16, 47, 0.3), transparent 60%),
    var(--panel-solid);
}
.reg-card h3 { font-family: var(--font-display); font-size: 1.62rem; font-weight: 600; }
.reg-list { list-style: none; margin: 20px 0 24px; padding: 0; display: grid; gap: 10px; }
.reg-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  font-size: 0.9rem;
}
.reg-list b { color: var(--gold-2); white-space: nowrap; font-weight: 600; }

.contact-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; }
.contact-list a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.contact-list a:hover { border-color: rgba(246, 201, 100, 0.42); transform: translateX(4px); }
.contact-list svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; }
.contact-list span { font-size: 0.93rem; }
.contact-list small { display: block; color: var(--muted-2); font-size: 0.76rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 34px;
  margin-top: 30px;
  text-align: center;
}
.footer .brand { justify-content: center; margin: 0 0 18px; }
.footer p { color: var(--muted-2); font-size: 0.84rem; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin: 16px 0 20px; }
.footer-links a { font-size: 0.85rem; color: var(--muted); padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line); }
.footer-links a:hover { color: var(--ink); border-color: var(--line-strong); }
.footer-note { font-size: 0.74rem; color: rgba(255, 255, 255, 0.32); font-style: italic; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1000px) {
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .poster-frame { max-width: 420px; margin-inline: auto; }
  .register-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 20px 22px;
    background: rgba(18, 3, 10, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
  }
  .nav-links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 12px 15px; font-size: 0.95rem; border-radius: var(--radius-sm); }
  .nav-toggle { display: flex; }
  .nav-cta-desktop { display: none; }
  .day { grid-template-columns: 1fr; gap: 16px; }
  .day-price { text-align: left; }
  .merch-teaser { grid-template-columns: 1fr; padding: 38px 26px; }
}

@media (max-width: 620px) {
  section { padding: 66px 0; }
  .hero { padding: 34px 0 62px; }
  .brand-sub { display: none; }
  .countdown { flex-wrap: wrap; }
  .cd-unit { min-width: 68px; padding: 11px 6px 9px; }
  .cd-num { font-size: 1.5rem; }
  .btn { padding: 11px 18px; }
  .card, .reg-card { padding: 22px 20px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   MOTION PREFERENCES
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .embers { display: none; }
  .aurora::after { animation: none; }
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
  .nav, .embers, .aurora, .scroll-cue, .merch-teaser, .modal-root { display: none !important; }
  body { background: #fff; color: #000; }
}
