/* ============================================================
   130 ANI MIRCEA · Nostalgia Party
   Neon theme — gold + hot-pink neon, deep night-courtyard blues
   Colegiul Național Mircea cel Bătrân · Constanța
   ============================================================ */

:root {
  --bg: #08060f;
  --bg-2: #0c0a18;
  --bg-3: #141029;
  --surface: #16122b;
  --surface-2: #1e1838;
  --line: rgba(255, 255, 255, 0.08);
  --line-gold: rgba(245, 196, 81, 0.22);

  --text: #f6f1ff;
  --text-dim: #c4bcdc;
  --text-mute: #847ca6;

  --gold: #f5c451;
  --gold-deep: #d49b2c;
  --gold-soft: #ffe6a6;
  --pink: #ff2d87;
  --pink-soft: #ff7ab8;
  --violet: #b026ff;
  --blue: #4ea8ff;

  --grad-gold: linear-gradient(135deg, #ffe9ad 0%, #f5c451 45%, #d49b2c 100%);
  --grad-pink: linear-gradient(135deg, #ff2d87 0%, #b026ff 100%);

  --glow-gold: 0 0 28px rgba(245, 196, 81, 0.45);
  --glow-pink: 0 0 30px rgba(255, 45, 135, 0.55);

  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.6);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);

  --ff-display: 'Anton', 'Arial Narrow', system-ui, sans-serif;
  --ff-script: 'Great Vibes', cursive;
  --ff-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
*::selection { background: var(--pink); color: #fff; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(1100px 600px at 88% -8%, rgba(245, 196, 81, 0.14), transparent 60%),
    radial-gradient(900px 520px at -8% 30%, rgba(255, 45, 135, 0.12), transparent 60%),
    radial-gradient(700px 500px at 50% 110%, rgba(176, 38, 255, 0.10), transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--text); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  letter-spacing: 0.01em;
  line-height: 1.04;
  margin: 0 0 0.6em;
  font-weight: 400;
  text-transform: uppercase;
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ===================== UTILITIES ===================== */
.accent {
  background: var(--grad-pink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.accent-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 14px;
}
.eyebrow.center { display: block; text-align: center; }
.center { text-align: center; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--grad-gold);
  color: #2a1c00;
  box-shadow: var(--glow-gold);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(245, 196, 81, 0.6);
  color: #2a1c00;
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: var(--gold); }
.btn--small { padding: 10px 18px; font-size: 12px; }
.btn--lg { padding: 17px 34px; font-size: 14px; }

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  background: linear-gradient(to bottom, rgba(8, 6, 15, 0.85), rgba(8, 6, 15, 0));
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8, 6, 15, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.nav__inner { display: flex; align-items: center; gap: 28px; }
.nav__logo { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  width: 48px; height: 44px;
  border-radius: 10px;
  background: var(--grad-gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 21px;
  color: #2a1c00;
  box-shadow: var(--glow-gold);
}
.logo-text {
  font-family: var(--ff-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  display: flex; flex-direction: column;
  line-height: 0.95;
  color: #fff;
}
.logo-text small {
  font-family: var(--ff-body);
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}
.nav__links { margin-left: auto; display: flex; gap: 26px; align-items: center; }
.nav__links a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dim);
  position: relative;
}
.nav__links a:hover { color: #fff; }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -6px;
  width: 0; height: 2px;
  background: var(--grad-gold);
  transition: width 0.25s ease, left 0.25s ease;
}
.nav__links a:hover::after { width: 100%; left: 0; }
.nav__cta { flex-shrink: 0; }
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}
.nav__burger span { width: 22px; height: 2px; background: var(--text); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  /* Bottom-most layer: real courtyard photo with a heavy dark overlay so the
     neon headline stays readable. The circle gradients (.hero__lights) and
     everything else render above this. */
  background:
    linear-gradient(180deg, rgba(8,6,15,0.76) 0%, rgba(8,6,15,0.74) 45%, rgba(8,6,15,0.96) 100%),
    url('../assets/img/hero-curte.jpg') center 38% / cover no-repeat,
    #0c0a18;
  filter: saturate(1.05) brightness(0.82);
}
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  /* Soft edge vignette + a fade into the page at the very bottom — keeps the
     center of the photo visible while blending the edges into the dark. */
  background:
    radial-gradient(120% 90% at 50% 42%, transparent 45%, rgba(8,6,15,0.85) 100%),
    linear-gradient(to bottom, transparent 70%, var(--bg) 100%);
}
/* warm string-light glow */
.hero__lights {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 72% 26%, rgba(245,196,81,0.30), transparent 60%),
    radial-gradient(560px 380px at 22% 60%, rgba(255,45,135,0.22), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
  opacity: 0.35;
  pointer-events: none;
}
/* ---- Fireworks (PNG sprites + burst animation) ---- */
.hero__fireworks {
  position: absolute;
  inset: 0;
  z-index: 1;            /* above the photo + glows, below the text (z-index 2) */
  overflow: hidden;
  pointer-events: none;
}
.fw {
  position: absolute;
  width: clamp(130px, 17vw, 240px);
  opacity: 0;
  transform: scale(0.2);
  transform-origin: center;
  mix-blend-mode: screen; /* dark/transparent areas vanish, only the light adds */
  will-change: transform, opacity;
  animation: fwBurst 5s ease-out infinite;
}
@keyframes fwBurst {
  0%   { opacity: 0;    transform: scale(0.15); }
  10%  { opacity: 1;    transform: scale(0.8);  }
  24%  { opacity: 0.95; transform: scale(1.04); }
  46%  { opacity: 0;    transform: scale(1.18); }
  100% { opacity: 0;    transform: scale(1.18); }
}
/* position + stagger each burst across the sky */
.fw--1 { top: 6%;  left: 8%;  animation-delay: 0s;    }
.fw--2 { top: 12%; left: 70%; animation-delay: 1.2s;  width: clamp(110px, 14vw, 200px); }
.fw--3 { top: 3%;  left: 42%; animation-delay: 2.5s;  }
.fw--4 { top: 24%; left: 22%; animation-delay: 3.4s;  width: clamp(100px, 12vw, 180px); }
.fw--5 { top: 16%; left: 84%; animation-delay: 0.7s;  width: clamp(100px, 12vw, 175px); }
.fw--6 { top: 30%; left: 58%; animation-delay: 1.9s;  }

@media (prefers-reduced-motion: reduce) {
  .fw { animation: none; opacity: 0.35; transform: scale(1); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero__title {
  margin: 14px 0 10px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.12em 0.22em;
}
.hero__years {
  font-family: var(--ff-display);
  font-size: clamp(52px, 9vw, 104px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 22px rgba(245,196,81,0.45));
}
.hero__years-sm {
  font-family: var(--ff-display);
  font-size: clamp(20px, 3vw, 34px);
  color: var(--gold-soft);
  letter-spacing: 0.1em;
}
.hero__brand {
  font-family: var(--ff-display);
  font-size: clamp(50px, 8.5vw, 100px);
  line-height: 0.9;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero__tagline {
  font-family: var(--ff-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(13px, 1.7vw, 18px);
  color: var(--gold-soft);
  margin: 22px 0 4px;
}
.hero__tagline span { color: #fff; }
.hero__neon {
  font-family: var(--ff-script);
  font-size: clamp(44px, 8vw, 92px);
  line-height: 1;
  color: var(--pink-soft);
  margin: 0 0 26px;
  text-shadow:
    0 0 6px rgba(255,122,184,0.9),
    0 0 18px rgba(255,45,135,0.85),
    0 0 42px rgba(255,45,135,0.6),
    0 0 78px rgba(176,38,255,0.5);
  animation: neonFlicker 4.5s infinite;
}
@keyframes neonFlicker {
  0%, 100%   { opacity: 1; }
  92%, 94%   { opacity: 1; }
  93%        { opacity: 0.72; }
  96%        { opacity: 0.85; }
}

.hero__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding-top: 16px; margin-bottom: 18px; }
.chip__emoji { font-size: 1.05em; margin-right: 2px; -webkit-text-fill-color: initial; }
.chip {
  font-family: var(--ff-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--text);
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-gold);
  backdrop-filter: blur(6px);
}
.chip strong { color: var(--gold); margin-right: 6px; }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 52px; }

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2.4vw, 22px);
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 540px;
  margin: 0 auto;
}
.countdown__cell {
  display: flex; flex-direction: column; align-items: center;
  min-width: 64px;
}
.countdown__cell strong {
  font-family: var(--ff-display);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  color: #fff;
  text-shadow: var(--glow-gold);
}
.countdown__cell span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 6px;
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  display: flex; justify-content: center;
  padding-top: 8px;
  z-index: 2;
}
.hero__scroll span { width: 4px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 0.7; } 50% { transform: translateY(13px); opacity: 0; } }

/* ===================== SECTION BASE ===================== */
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section__title { font-size: clamp(38px, 6vw, 76px); margin-bottom: 24px; }
.section__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 56px; flex-wrap: wrap;
}
.section__lede { max-width: 420px; color: var(--text-dim); margin: 0; }

/* ===================== DESPRE ===================== */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
.about__copy p { color: var(--text-dim); }
.about__copy strong { color: var(--text); }
.about__list { margin: 28px 0 36px; }
.about__list li {
  display: flex; gap: 16px; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
}
.about__list li span {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--gold);
  width: 32px;
}
.about__media { display: flex; flex-direction: column; align-items: center; gap: 36px; }
.seal {
  width: min(360px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(245,196,81,0.18), transparent 60%),
    var(--surface);
  border: 2px solid var(--gold);
  box-shadow: var(--glow-gold), inset 0 0 40px rgba(245,196,81,0.12);
  position: relative;
}
.seal::before {
  content: '';
  position: absolute; inset: 14px;
  border-radius: 50%;
  border: 1px dashed rgba(245,196,81,0.4);
}
.seal__top, .seal__mid, .seal__years {
  font-family: var(--ff-body);
  text-transform: uppercase;
}
.seal__top { font-size: 11px; letter-spacing: 0.2em; color: var(--gold-soft); max-width: 70%; line-height: 1.5; }
.seal__big {
  font-family: var(--ff-display);
  font-size: clamp(80px, 16vw, 120px);
  line-height: 0.9;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 6px 0;
}
.seal__mid { font-size: 14px; letter-spacing: 0.16em; color: #fff; font-weight: 600; }
.seal__years { font-size: 12px; letter-spacing: 0.22em; color: var(--gold); margin-top: 12px; }
.about__quote {
  font-family: var(--ff-script);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.2;
  text-align: center;
  color: var(--pink-soft);
  text-shadow: 0 0 18px rgba(255,45,135,0.55), 0 0 44px rgba(176,38,255,0.4);
}

/* ===================== PROGRAM ===================== */
.program__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.feature__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}
.feature__icon--gold   { background: rgba(245,196,81,0.12); color: var(--gold);  box-shadow: 0 0 22px rgba(245,196,81,0.35), inset 0 0 0 1px rgba(245,196,81,0.4); }
.feature__icon--pink   { background: rgba(255,45,135,0.12); color: var(--pink-soft); box-shadow: 0 0 22px rgba(255,45,135,0.35), inset 0 0 0 1px rgba(255,45,135,0.4); }
.feature__icon--blue   { background: rgba(78,168,255,0.12); color: var(--blue);  box-shadow: 0 0 22px rgba(78,168,255,0.35), inset 0 0 0 1px rgba(78,168,255,0.4); }
.feature__icon--violet { background: rgba(176,38,255,0.14); color: #cf8bff; box-shadow: 0 0 22px rgba(176,38,255,0.4), inset 0 0 0 1px rgba(176,38,255,0.45); }
.feature h3 { font-size: 24px; margin-bottom: 10px; color: #fff; }
.feature p { color: var(--text-dim); font-size: 15px; margin: 0; }

/* ===================== DETALII ===================== */
.detalii {
  background:
    radial-gradient(700px 360px at 80% 50%, rgba(245,196,81,0.12), transparent 60%),
    radial-gradient(600px 320px at 18% 50%, rgba(255,45,135,0.12), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.detalii__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card {
  text-align: center;
  background: rgba(22,18,43,0.6);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}
.info-card:hover { transform: translateY(-4px); }
.info-card__ico { font-size: 34px; display: block; margin-bottom: 14px; }
.info-card__lbl {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin: 0 0 10px;
}
.info-card h3 { font-size: 30px; color: #fff; margin: 0 0 12px; }
.info-card__sub { color: var(--text-dim); font-size: 14px; margin: 0; }

/* ===================== GALERIE ===================== */
.galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.poster {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.poster:hover { transform: translateY(-4px); border-color: var(--line-gold); box-shadow: 0 20px 50px rgba(0,0,0,0.55); }
.poster img { width: 100%; height: 100%; object-fit: cover; }
.poster--lg { grid-row: span 1; }
.poster figcaption {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--ff-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(8,6,15,0.6);
  backdrop-filter: blur(6px);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-gold);
}
.poster--note {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  min-height: 280px;
  padding: 48px 28px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,45,135,0.16), transparent 60%),
    var(--surface);
}
.poster--note.poster--gold {
  background:
    radial-gradient(circle at 50% 30%, rgba(245,196,81,0.16), transparent 60%),
    var(--surface);
}
.poster--note blockquote {
  margin: 0 0 18px;
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  color: #fff;
}
.poster--note figcaption {
  position: static;
  background: none; border: none; padding: 0;
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.poster--gold figcaption { color: var(--gold-soft); }

/* ===================== ÎNSCRIERE ===================== */
.inscriere {
  background:
    radial-gradient(800px 420px at 78% 40%, rgba(176,38,255,0.18), transparent 60%),
    radial-gradient(640px 360px at 12% 70%, rgba(255,45,135,0.16), transparent 60%),
    var(--bg-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.inscriere__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.inscriere__copy p { color: var(--text-dim); }
.inscriere__note { margin-top: 16px; font-size: 13px; color: var(--text-mute); }
.inscriere__note strong { color: var(--gold); }

.inscriere__qr { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.inscriere__hand {
  font-family: var(--ff-script);
  font-size: 34px;
  color: var(--gold-soft);
  text-shadow: 0 0 16px rgba(245,196,81,0.5);
}
.qr-card {
  background: #fff;
  padding: 18px;
  border-radius: 22px;
  box-shadow: var(--glow-pink), 0 20px 50px rgba(0,0,0,0.5);
  border: 3px solid var(--gold);
}
.qr-card img { width: 240px; height: 240px; }
.qr-card__cap {
  font-family: var(--ff-display);
  letter-spacing: 0.12em;
  font-size: 16px;
  color: var(--gold);
  margin: 6px 0 0;
}

/* ===================== SPONSORI ===================== */
.sponsori__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.sponsor-logo {
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  border: 1px dashed var(--line-gold);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  color: var(--text-mute);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; line-height: 1.5;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.sponsor-logo:hover { color: var(--gold); border-color: var(--gold); background: rgba(245,196,81,0.04); }
.sponsori__cta {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.sponsori__note { text-align: center; margin: 0; color: var(--text-dim); }
.sponsori__btn-ico { font-size: 1.05em; -webkit-text-fill-color: initial; }

/* ===================== FOOTER ===================== */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 80px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__about { margin-top: 16px; color: var(--text-mute); font-size: 14px; max-width: 320px; }
.footer h6 { font-family: var(--ff-display); font-size: 18px; letter-spacing: 0.1em; margin: 6px 0 18px; color: var(--gold); }
.footer ul li { padding: 6px 0; font-size: 14px; color: var(--text-dim); }
.footer ul li a { color: var(--text-dim); }
.footer ul li a:hover { color: var(--gold); }
.footer > .footer__grid p { color: var(--text-mute); font-size: 14px; }
.footer__bottom {
  margin-top: 60px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--text-mute); font-size: 13px;
}

/* ===================== REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1080px) {
  .program__grid { grid-template-columns: repeat(2, 1fr); }
  .sponsori__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: rgba(8,6,15,0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 22px var(--gutter);
    gap: 0;
    border-top: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav__links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__links a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }

  .about__grid,
  .inscriere__inner { grid-template-columns: 1fr; }
  .about__media { order: -1; }
  .detalii__grid { grid-template-columns: 1fr; }
  .poster--note { min-height: 200px; }
  .section__head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .program__grid { grid-template-columns: 1fr; }
  .sponsori__grid { grid-template-columns: 1fr 1fr; }
  .galerie__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .countdown { gap: 8px; }
  .countdown__cell { min-width: 0; flex: 1; }
  .hero { padding: 124px 0 60px; }
  .qr-card img { width: 200px; height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
