/* ============================================================
   Free For All Festival 2027 — Site Stylesheet
   Bootstrap 5 (CDN) + custom brand layer on top.
   Fonts are self-hosted, see @font-face block below.
   ============================================================ */

/* ---------- Local fonts ---------- */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Variable.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Italic-Variable.woff2') format('woff2');
  font-weight: 400 800;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   Design tokens
   ============================================================ */
:root {
  /* Brand core */
  --ffa-yellow: #DEDC00;
  --ffa-magenta: #E60064;
  --ffa-green: #A6D044;
  --ffa-green-deep: #8CCA46;
  --ffa-pink-brush: #BB2C93;

  /* Plum darks */
  --ffa-plum-900: #14000A;
  --ffa-plum-800: #1F000D;
  --ffa-plum-700: #2A0A2E;
  --ffa-plum-600: #36144F;
  --ffa-plum-500: #4A1A6B;

  /* Neutrals */
  --ffa-white: #FFFFFF;
  --ffa-bone: #F4EEF2;
  --ffa-ash: #B9A7B6;
  --ffa-ash-dim: #6E5C6E;
  --ffa-ink: #14000A;

  /* Semantic aliases */
  --color-bg: var(--ffa-plum-900);
  --color-text: var(--ffa-bone);
  --color-text-muted: var(--ffa-ash);
  --color-text-dim: var(--ffa-ash-dim);
  --color-border: rgba(244, 238, 242, 0.16);

  /* Fonts */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-condensed: 'Bebas Neue', sans-serif;
  --font-body: 'Archivo', system-ui, -apple-system, sans-serif;

  /* Radii */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;

  /* Shadows / glows */
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.55);
  --glow-magenta: 0 8px 28px rgba(230, 0, 100, 0.45);
  --glow-yellow: 0 8px 28px rgba(222, 220, 0, 0.40);
  --glow-green: 0 8px 28px rgba(166, 208, 68, 0.40);
  --glow-black: 0 0 14px rgba(0, 0, 0, 0.45);
  --focus-ring: 0 0 0 3px rgba(222, 220, 0, 0.55);

  /* Motion */
  --ease-punch: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--ffa-yellow);
  text-decoration: none;
}
a:hover {
  color: var(--ffa-magenta);
}

::selection {
  background: var(--ffa-magenta);
  color: #fff;
}

h1, h2, h3, .font-display {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
}

.font-condensed {
  font-family: var(--font-condensed);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-muted-ffa { color: var(--color-text-muted); }
.text-dim-ffa { color: var(--color-text-dim); }
.text-yellow { color: var(--ffa-yellow); }
.text-magenta { color: var(--ffa-magenta); }
.text-green { color: var(--ffa-green); }

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* ============================================================
   Grain overlay
   ============================================================ */
.ffa-grain-local {
  position: relative;
}
.ffa-grain-local::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../img/grain.png");
  background-repeat: repeat;
  background-size: 180px 180px;
  opacity: 0.3;
}
.ffa-grain-local > * {
  position: relative;
  z-index: 1;
}

/* ============================================================
   Section backgrounds
   ============================================================ */
.section-plum       { background: var(--ffa-plum-900); }
.section-plum-fade   { background: linear-gradient(180deg, var(--ffa-plum-800) 0%, var(--ffa-plum-900) 100%); }
.section-plum-alt   { background: var(--ffa-plum-800); }
.section-bone        { background: var(--ffa-bone); color: var(--ffa-ink); }
.section-bone h1, .section-bone h2, .section-bone h3, .section-bone .font-display { color: var(--ffa-ink); }
.section-magenta      { background: var(--ffa-magenta); color: #fff; }

.section-border-top { border-top: 1px solid var(--color-border); }

.ghost-word {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(100px, 20vw, 280px);
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  color: rgba(244, 238, 242, 0.05);
}
.section-bone .ghost-word { color: rgba(20, 0, 10, 0.06); }

/* ============================================================
   Navbar
   ============================================================ */
.ffa-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(20, 0, 10, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.ffa-navbar .nav-link {
  font-family: var(--font-condensed);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--color-text);
  padding: 8px 12px;
}
.ffa-navbar .nav-link:hover,
.ffa-navbar .nav-link.active {
  color: var(--ffa-yellow);
}
.ffa-navbar .navbar-brand img {
  height: 34px;
}
.ffa-navbar .nav-tickets-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  margin-left: 10px;
}
.nav-ticket-icon {
  width: 18px;
  height: 18px;
  flex: none;
}
.ffa-navbar .navbar-toggler {
  border-color: var(--color-border);
}
.ffa-navbar .navbar-toggler-icon {
  filter: invert(1) grayscale(1);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-ffa {
  font-family: var(--font-condensed);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  border: 2px solid transparent;
  padding: 0.55rem 1.4rem;
  transition: transform 120ms var(--ease-punch), filter 120ms ease-out, background 120ms ease-out;
}
.btn-ffa:active {
  transform: translateY(1px) scale(0.98);
}
.btn-ffa-primary {
  background: var(--ffa-magenta);
  color: #fff;
}
.btn-ffa-primary:hover {
  filter: brightness(1.08);
  color: #fff;
  box-shadow: var(--glow-magenta);
}
.btn-ffa-accent {
  background: var(--ffa-yellow);
  color: var(--ffa-ink);
}
.btn-ffa-accent:hover {
  background: var(--ffa-magenta);
  color: #fff;
  box-shadow: var(--glow-magenta);
}
.btn-ffa-outline {
  background: transparent;
  border-color: var(--ffa-yellow);
  color: var(--color-text);
}
.btn-ffa-outline:hover {
  background: var(--ffa-yellow);
  color: var(--ffa-ink);
}
.btn-ffa-ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}
.btn-ffa-ghost:hover {
  border-color: var(--ffa-yellow);
  color: var(--ffa-yellow);
}
.btn-ffa-lg { padding: 0.85rem 1.8rem; font-size: 1.05rem; }
.btn-ffa-sm { padding: 0.35rem 0.9rem; font-size: 0.85rem; }

/* ============================================================
   Tags
   ============================================================ */
.tag-ffa {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-xs);
  border: 1px solid transparent;
  line-height: 1.4;
}
.tag-ffa-yellow   { background: var(--ffa-yellow); color: var(--ffa-ink); }
.tag-ffa-magenta  { background: var(--ffa-magenta); color: #fff; }
.tag-ffa-green    { background: var(--ffa-green); color: var(--ffa-ink); }
.tag-ffa-outline  { background: transparent; border-color: var(--color-border); color: var(--color-text-muted); }

.lineup-stage-tab { cursor: pointer; }
.lineup-stage-tab.active {
  background: var(--ffa-yellow);
  border-color: transparent;
  color: var(--ffa-ink);
}

/* ============================================================
   Cards
   ============================================================ */
.card-ffa {
  background: var(--ffa-plum-800);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  position: relative;
}
.card-ffa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.card-ffa-magenta::before { background: var(--ffa-magenta); }
.card-ffa-yellow::before  { background: var(--ffa-yellow); }
.card-ffa-green::before   { background: var(--ffa-green); }
.card-ffa-none::before    { background: transparent; }

/* ============================================================
   Guide rule (divider)
   ============================================================ */
.guide-rule {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 20px;
  color: var(--ffa-yellow);
}
.guide-rule::before {
  content: "";
  flex: 1;
  height: 1.5px;
  background: currentColor;
}
.guide-rule::after {
  content: "»";
  font-family: var(--font-condensed);
  font-size: 16px;
}
.guide-rule-magenta { color: var(--ffa-magenta); }

/* ============================================================
   Highlight (marker title)
   ============================================================ */
.highlight-ffa {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-family: var(--font-condensed);
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 18px;
  color: var(--ffa-ink);
}
.highlight-ffa::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  border-radius: 3px 10px 3px 10px / 10px 3px 10px 3px;
  z-index: -1;
  opacity: 0.94;
  transform: rotate(-0.6deg);
}
.highlight-ffa-green  { color: var(--ffa-green); }
.highlight-ffa-yellow { color: var(--ffa-yellow); }
.highlight-ffa-magenta { color: var(--ffa-magenta); }
.highlight-ffa span { position: relative; z-index: 1; color: var(--ffa-ink); }

/* ============================================================
   Pill label
   ============================================================ */
.pill-ffa {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(244, 238, 242, 0.08);
  color: var(--color-text-muted);
}
.pill-ffa-magenta {
  background: rgba(230, 0, 100, 0.18);
  color: var(--ffa-magenta);
}

/* ============================================================
   Date badge
   ============================================================ */
.date-badge-ffa {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}
.date-badge-ffa::before,
.date-badge-ffa::after {
  content: "";
  width: clamp(32px, 6vw, 64px);
  height: 1.5px;
  background: #fff;
  flex: none;
}
.date-badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.date-badge-ffa .date {
  font-family: var(--font-condensed);
  font-size: 30px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
}
.date-badge-ffa .place {
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

/* ============================================================
   Countdown
   ============================================================ */
.countdown-box {
  min-width: 100px;
  padding: 14px 16px 12px;
  background: rgba(20, 0, 10, 0.65);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  text-align: center;
}
.countdown-box .num {
  font-family: var(--font-condensed);
  font-size: 48px;
  line-height: 1;
  color: var(--ffa-yellow);
}
.countdown-box .num.accent { color: var(--ffa-magenta); }
.countdown-box .label {
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* ============================================================
   Lineup rows / band cards
   ============================================================ */
.lineup-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  color: inherit;
}
.lineup-row:hover .lineup-name { color: var(--ffa-yellow); }
.lineup-row .photo-slot {
  width: 96px;
  height: 72px;
  flex: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--ffa-plum-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  text-align: center;
}
.lineup-row .photo-slot.tba {
  border: 2px dashed var(--color-border);
  font-family: var(--font-display);
  font-size: 20px;
  color: rgba(244, 238, 242, 0.22);
}
.lineup-name {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
}
.lineup-meta {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.band-card {
  display: block;
  background: var(--ffa-plum-800);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  color: inherit;
  height: 100%;
}
.band-card:hover { border-color: var(--ffa-yellow); }
.band-card .photo-slot {
  aspect-ratio: 1 / 1;
  background: var(--ffa-plum-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}
.band-card .body { padding: 16px 18px 18px; }
.band-card .name {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-text);
}

.band-card-tba {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 280px;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-sm);
  height: 100%;
}
.band-card-tba .tba-word {
  font-family: var(--font-display);
  font-size: 44px;
  text-transform: uppercase;
  color: rgba(244, 238, 242, 0.22);
}
.band-card-tba .tba-label {
  font-family: var(--font-condensed);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

/* ============================================================
   Hero
   ============================================================ */
.hero-ffa {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5.25rem;
  background: var(--ffa-plum-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(120% 90% at 30% 20%, rgba(42, 10, 46, 0.2) 0%, rgba(20, 0, 10, 0.2) 60%),
    linear-gradient(160deg, rgba(18, 58, 58, 0.2) 0%, rgba(42, 10, 46, 0.2) 45%, rgba(20, 0, 10, 0.6) 100%),
    url('../img/hintergrund.jpeg');
  background-size: cover;
  background-position: center 40%;
  animation: ffa-kenburns 36s ease-in-out infinite alternate;
}
@keyframes ffa-kenburns {
  0%   { transform: scale(1.03); }
  100% { transform: scale(1.14) translateX(-2%); }
}
@keyframes ffa-kenburns-mobile {
  0%   { transform: scale(1.03); }
  100% { transform: scale(1.09); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20,0,10,0.5) 0%, rgba(20,0,10,0.5) 45%, rgba(20,0,10,0.5) 100%);
}
.hero-beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-beams span {
  position: absolute;
  top: -12%;
  width: clamp(140px, 18vw, 280px);
  height: 130%;
  transform-origin: 50% 0;
  filter: blur(26px);
  mix-blend-mode: screen;
}
.hero-beams span:nth-child(1) {
  left: 22%;
  background: linear-gradient(180deg, rgba(230,0,100,0.5) 0%, rgba(230,0,100,0) 72%);
  animation: ffa-beam-l 7s ease-in-out infinite alternate;
}
.hero-beams span:nth-child(2) {
  left: 58%;
  background: linear-gradient(180deg, rgba(222,220,0,0.36) 0%, rgba(222,220,0,0) 70%);
  animation: ffa-beam-r 9s ease-in-out infinite alternate;
}
.hero-beams span:nth-child(3) {
  left: 76%;
  background: linear-gradient(180deg, rgba(230,0,100,0.34) 0%, rgba(230,0,100,0) 68%);
  animation: ffa-beam-l 11s ease-in-out infinite alternate-reverse;
}
@keyframes ffa-beam-l { 0% { transform: rotate(-30deg); } 100% { transform: rotate(16deg); } }
@keyframes ffa-beam-r { 0% { transform: rotate(28deg); } 100% { transform: rotate(-18deg); } }

.mascot-slot {
  position: absolute;
  left: -40px;
  bottom: -20px;
  width: clamp(396px, 54vw, 756px);
  aspect-ratio: 4 / 3.4;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,238,242,0.15);
  text-align: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-kicker {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-condensed);
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hero-kicker .sep { color: var(--ffa-yellow); }

.hero-content img,
.hero-content h1,
.date-badge-text {
  filter: drop-shadow(var(--glow-black));
}
.date-badge-ffa::before,
.date-badge-ffa::after {
  filter: drop-shadow(var(--glow-black));
}

/* ============================================================
   Photo placeholder (image-slot substitute)
   ============================================================ */
.photo-placeholder {
  background: var(--ffa-plum-700);
  border: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dim);
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

/* ============================================================
   Reference logos (Startseite, dynamisch via canou "Referenzen")
   ============================================================ */
.reference-logo {
  /* Fixed box (not just a max-height on an auto-width image) so every
     logo occupies the exact same footprint regardless of its own aspect
     ratio — otherwise a narrow logo leaves visibly more whitespace than a
     wide one even with identical grid gutters, so the spacing between
     logos looks uneven despite the columns themselves being equal. */
  display: block;
  width: 100%;
  height: 128px;
  object-fit: contain;
  object-position: center;
  opacity: 0.85;
  transition: opacity 0.2s ease-in-out;
  /* Recolors any uploaded logo (regardless of its original colors) to
     solid white — relies on the logo having a transparent background;
     a logo with an opaque light/white background would just become a
     blank white rectangle. */
  filter: brightness(0) invert(1);
}
.reference-logo:hover { opacity: 1; }

@media (min-width: 768px) {
  /* Desktop only (3-per-row): the fixed full-width box that keeps mobile
     spacing even would leave no room to shift a logo left/right, so give
     it a natural width here instead. Which way each logo shifts (via the
     justify-content-md-* utility classes computed per item in index.php)
     depends on its position within its row. */
  .reference-logo { width: auto; max-width: 220px; }
}

/* ============================================================
   Sponsor logo slots
   ============================================================ */
.sponsor-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 88px;
  background: #fff;
  border: 1px solid rgba(20,0,10,0.15);
  border-radius: var(--radius-sm);
  color: rgba(20,0,10,0.6);
  font-family: var(--font-condensed);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
}
.sponsor-slot.placeholder {
  border-style: dashed;
  color: rgba(20,0,10,0.35);
}
.sponsor-slot.presenter {
  width: 320px;
  height: 140px;
  border: 2px solid var(--ffa-ink);
  flex-direction: column;
  gap: 6px;
}

/* ============================================================
   FAQ accordion (built on Bootstrap accordion)
   ============================================================ */
.accordion-ffa .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
}
.accordion-ffa .accordion-button {
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-condensed);
  font-size: 19px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.1rem 0.25rem;
  box-shadow: none;
}
.accordion-ffa .accordion-button:hover { color: var(--ffa-yellow); }
.accordion-ffa .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--ffa-yellow);
  box-shadow: none;
}
.accordion-ffa .accordion-button::after {
  filter: invert(78%) sepia(64%) saturate(1000%) hue-rotate(2deg) brightness(1.05);
}
.accordion-ffa .accordion-body {
  padding: 0 0.25rem 1.25rem;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   Forms
   ============================================================ */
.form-control-ffa {
  background: var(--ffa-plum-800);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
}
.form-control-ffa:focus {
  background: var(--ffa-plum-800);
  color: var(--color-text);
  border-color: var(--ffa-yellow);
  box-shadow: var(--focus-ring);
}
.form-control-ffa::placeholder { color: var(--color-text-dim); }
.form-label-ffa {
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.form-check-input-ffa {
  accent-color: var(--ffa-yellow);
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer-ffa {
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
  background: var(--ffa-plum-900);
}
.footer-ffa img { height: 40px; }
.footer-ffa .footer-links a {
  font-family: var(--font-condensed);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 6px 10px;
}
.footer-ffa .footer-links a:hover { color: var(--ffa-yellow); }

/* ============================================================
   Utilities
   ============================================================ */
.z-1 { z-index: 1; }
.max-w-lineup { max-width: 1080px; }

@media (max-width: 767.98px) {
  .hero-ffa { padding: 4.5rem 0 3.5rem; }
  h1, .font-display.display-headline { font-size: 2.4rem !important; }
  .mascot-slot { width: clamp(495px, 67.5vw, 945px); }

  /* The beams' width floor (140px min via clamp) and the Ken Burns pan
     were tuned against a wide desktop viewport — on a narrow phone they
     read as oversized/too busy relative to the screen. Scale both down. */
  .hero-bg { animation-name: ffa-kenburns-mobile; }
  .hero-beams span {
    width: clamp(70px, 24vw, 140px);
    filter: blur(14px);
  }

  #countdown {
    flex-wrap: nowrap;
    gap: 8px;
  }
  #countdown .countdown-box {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 2px;
  }
  #countdown .countdown-box .num { font-size: clamp(18px, 7vw, 32px); }
  #countdown .countdown-box .label { font-size: 9px; letter-spacing: 0.05em; }

  .hero-cta-row {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .hero-cta-row .btn-ffa-lg {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.7em 0.5em;
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-beams span { animation: none; }
}
