/* =========================================================================
   GET MAD ENTERTAINMENT - getmadent.com (v2)
   Style: Current campaign energy (Rep Your Flag) - warm, fiery, carnival
   ========================================================================= */

:root {
  /* Palette */
  --bg: #0c0604;
  --bg-2: #1a0a05;
  --bg-3: #2a120a;
  --ink: #FFF8E7;
  --ink-soft: rgba(255, 248, 231, 0.78);
  --ink-mute: rgba(255, 248, 231, 0.55);
  --orange: #FF6B35;
  --orange-hot: #FF3D1F;
  --red: #C8200B;
  --gold: #FFB800;
  --gold-soft: #FFD96B;
  --green: #2C8A47;

  /* Spacing */
  --pad: 1.25rem;
  --container: 1200px;
  --countdown-h: 48px;

  /* Type */
  --font-display: 'Anton', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Effects */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* =========================================================================
   RESET / BASE
   ========================================================================= */
* { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--countdown-h) + 64px); }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--orange-hot); color: var(--ink); }

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

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

.kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.lede {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-top: 1rem;
}
.accent { color: var(--orange); }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hot) 60%, var(--red) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 61, 31, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(255, 61, 31, 0.5); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(255, 248, 231, 0.35);
}
.btn--ghost:hover { background: rgba(255, 248, 231, 0.08); border-color: rgba(255, 248, 231, 0.7); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }

/* =========================================================================
   COUNTDOWN BANNER (sticky at very top)
   ========================================================================= */
.countdown {
  position: sticky;
  top: 0;
  z-index: 110;
  height: var(--countdown-h);
  background: linear-gradient(90deg, var(--orange-hot) 0%, var(--red) 50%, var(--orange-hot) 100%);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.countdown__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: nowrap;
}
.countdown__label {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.countdown__clock {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
}
.countdown__unit {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}
.countdown__num {
  font-size: 1.4rem;
  line-height: 1;
}
.countdown__l {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}
.countdown__cta {
  margin-left: auto;
  padding: 0.4rem 0.95rem;
  background: rgba(0, 0, 0, 0.32);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.18s ease, transform 0.18s ease;
}
.countdown__cta:hover { background: rgba(0, 0, 0, 0.55); transform: translateY(-1px); }
.countdown.is-done { display: none; }

/* =========================================================================
   NAV (logo as image)
   ========================================================================= */
.nav {
  position: sticky;
  top: var(--countdown-h);
  z-index: 100;
  padding: 0.85rem 0;
  background: linear-gradient(180deg, rgba(12, 6, 4, 0.92) 0%, rgba(12, 6, 4, 0) 100%);
  transition: background 0.25s ease, padding 0.25s ease;
}
.nav.is-scrolled {
  background: rgba(12, 6, 4, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 0;
  box-shadow: 0 1px 0 rgba(255, 184, 0, 0.15);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 56px;
  width: auto;
  transition: height 0.25s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}
.nav.is-scrolled .nav__logo img { height: 42px; }
.nav__links {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.18s ease;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta { padding: 0.55rem 1.2rem; font-size: 0.78rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem var(--pad) 2rem;
  background: rgba(12, 6, 4, 0.98);
  border-top: 1px solid rgba(255, 184, 0, 0.15);
}
.nav__mobile a {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0;
}
.nav__mobile.is-open { display: flex; }

/* =========================================================================
   HERO (clean two-column: big party name + date, flyer card on the right)
   ========================================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--countdown-h) - 80px);
  min-height: calc(100svh - var(--countdown-h) - 80px);
  display: flex;
  align-items: center;
  padding: 6rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(255, 184, 0, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 75%, rgba(200, 32, 11, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 107, 53, 0.45) 0%, transparent 60%),
    linear-gradient(135deg, #2a120a 0%, #1a0a05 50%, #0c0604 100%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 184, 0, 0.04) 0 2px, transparent 2px 6px);
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero__confetti {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 20%, var(--gold) 0 3px, transparent 4px),
    radial-gradient(circle at 80% 10%, var(--orange-hot) 0 3px, transparent 4px),
    radial-gradient(circle at 25% 70%, var(--gold-soft) 0 2px, transparent 3px),
    radial-gradient(circle at 65% 55%, var(--orange) 0 4px, transparent 5px),
    radial-gradient(circle at 90% 65%, var(--gold) 0 2px, transparent 3px),
    radial-gradient(circle at 45% 30%, var(--orange-hot) 0 2px, transparent 3px);
  opacity: 0.45;
  animation: confettiDrift 24s linear infinite;
}
@keyframes confettiDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(2vw, 3vh, 0); }
}

.hero__inner {
  position: relative;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid rgba(255, 184, 0, 0.4);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  line-height: 0.95;
}
.hero__brand {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(3rem, 8.4vw, 6.6rem);
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--orange) 60%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 30px rgba(255, 61, 31, 0.35);
}
.hero__theme {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(3.6rem, 10.5vw, 8.2rem);
  color: var(--ink);
  text-shadow: 0 0 1px rgba(255, 248, 231, 0.4), 0 6px 24px rgba(0, 0, 0, 0.45);
}

.hero__date {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.hero__meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.hero__meta .dot { color: var(--orange); }

.hero__cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__flyer-frame {
  position: relative;
  aspect-ratio: 5 / 7;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255, 184, 0, 0.25) inset;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}
.hero__flyer-frame:hover { transform: rotate(0deg) scale(1.02); }
.hero__flyer-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__scroll {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 248, 231, 0.55);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  z-index: 5;
}
.hero__scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollNudge 1.6s ease-in-out infinite;
}
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(10px); opacity: 1; }
}

/* =========================================================================
   SECTION HEAD (shared)
   ========================================================================= */
.section-head {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 720px;
}
.section-head .lede { margin: 1rem auto 0; }

/* =========================================================================
   EVENT
   ========================================================================= */
.event {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255, 184, 0, 0.12), transparent 50%),
    var(--bg);
  position: relative;
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 4rem;
}
.event-card {
  padding: 1.6rem 1.4rem;
  background: linear-gradient(160deg, rgba(255, 107, 53, 0.08), rgba(200, 32, 11, 0.06));
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 184, 0, 0.5);
  box-shadow: 0 16px 40px rgba(255, 61, 31, 0.18);
}
.event-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.event-card__value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.event-card__sub {
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.event-card__sub strong {
  color: var(--gold-soft);
  font-weight: 700;
}

.music-policy {
  padding: 2.4rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 184, 0, 0.15);
  border-bottom: 1px solid rgba(255, 184, 0, 0.15);
  margin-bottom: 4rem;
}
.music-policy__line {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.music-policy__sub {
  color: var(--ink-soft);
  font-size: 1rem;
}

.waves {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.waves__sub {
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
}
.waves__list {
  display: grid;
  gap: 0.6rem;
  margin: 0 0 2rem;
}
.waves__list li {
  display: grid;
  grid-template-columns: 1.4fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.3rem;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.06), rgba(200, 32, 11, 0.06));
  border: 1px solid rgba(255, 184, 0, 0.18);
  border-radius: var(--radius);
  text-align: left;
}
.waves__list li:first-child {
  border-color: rgba(255, 184, 0, 0.55);
  background: linear-gradient(90deg, rgba(255, 184, 0, 0.18), rgba(255, 61, 31, 0.12));
}
.waves__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.waves__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}
.waves__list li:first-child .waves__price { color: var(--gold-soft); }
.waves__note {
  font-size: 0.85rem;
  color: var(--ink-mute);
  text-align: right;
}

/* =========================================================================
   ABOUT
   ========================================================================= */
.about {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}
.about__copy p { margin-top: 1rem; color: var(--ink-soft); font-size: 1.05rem; max-width: 56ch; }
.about__copy h2 { margin-bottom: 0.5rem; }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat {
  padding: 1.5rem 1.2rem;
  background: linear-gradient(160deg, rgba(255, 184, 0, 0.1), rgba(200, 32, 11, 0.08));
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: var(--radius);
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  background: linear-gradient(180deg, var(--gold-soft), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat__label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* =========================================================================
   GALLERY
   ========================================================================= */
.gallery {
  padding: 6rem 0;
  background: var(--bg-2);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.gallery__tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.gallery__tile:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(255, 61, 31, 0.3); }
.gallery__tile::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}
.gallery__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.4rem 1.2rem;
  color: var(--ink);
}
.gallery__year {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.gallery__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gallery__sub { font-size: 0.85rem; color: var(--ink-soft); }

.gallery__tile--1 { background-image: linear-gradient(135deg, #FF6B35 0%, #C8200B 100%); }
.gallery__tile--2 { background-image: linear-gradient(135deg, #FFB800 0%, #FF3D1F 100%); }
.gallery__tile--3 { background-image: linear-gradient(135deg, #2C8A47 0%, #C8200B 100%); }
.gallery__tile--4 { background-image: linear-gradient(135deg, #FF3D1F 0%, #2a120a 100%); }
.gallery__tile--5 { background-image: linear-gradient(135deg, #FFD96B 0%, #FF6B35 100%); }
.gallery__tile--6 { background-image: linear-gradient(135deg, #C8200B 0%, #1a0a05 100%); }

.gallery__note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--ink-soft);
}
.gallery__note a { color: var(--gold); font-weight: 600; }

/* =========================================================================
   UKM (with logo + flyer)
   ========================================================================= */
.ukm {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(200, 32, 11, 0.2), transparent 55%),
    var(--bg-2);
}
.ukm__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}
.ukm__logo {
  width: clamp(140px, 22%, 200px);
  height: auto;
  margin-bottom: 1.2rem;
  display: block;
}
.ukm__copy h2 { margin-bottom: 0.5rem; }
.ukm__copy p { margin-top: 1rem; color: var(--ink-soft); font-size: 1.05rem; max-width: 56ch; }
.ukm__copy .btn { margin-top: 1.5rem; }

.ukm__flyer {
  position: relative;
  aspect-ratio: 5 / 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 184, 0, 0.5), transparent 55%),
    linear-gradient(135deg, #2C8A47 0%, #C8200B 60%, #FFB800 100%);
}
.ukm__flyer img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ukm__flyer-fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--ink);
  font-family: var(--font-display);
  gap: 0.5rem;
}
.ukm__flyer--fallback .ukm__flyer-fallback { display: flex; }
.ukm__flyer-fallback span { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: 0.04em; }
.ukm__flyer-fallback small { font-size: 0.85rem; letter-spacing: 0.25em; }
.ukm__flyer-fallback em {
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* =========================================================================
   FOOTER (with logo image + slim signup)
   ========================================================================= */
.footer {
  padding: 4rem 0 2rem;
  background: #050302;
  border-top: 1px solid rgba(255, 184, 0, 0.18);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 248, 231, 0.08);
}
.footer__logo {
  height: 64px;
  width: auto;
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}
.footer__tag { color: var(--ink-mute); font-size: 0.9rem; max-width: 28ch; }

.footer__signup { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__signup-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__form { display: flex; gap: 0.5rem; }
.footer__form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  background: rgba(12, 6, 4, 0.6);
  border: 1px solid rgba(255, 184, 0, 0.3);
  color: var(--ink);
  font: inherit;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  transition: border-color 0.18s ease;
}
.footer__form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
}
.footer__form input::placeholder { color: var(--ink-mute); }
.footer__form .btn { padding: 0.7rem 1.2rem; font-size: 0.78rem; }
.hp { display: none; }
.footer__signup-success {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer__links { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: flex-end; }
.footer__links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.18s ease;
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--ink-mute);
}

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

/* =========================================================================
   MOTION & ACCESSIBILITY
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .flag, .flagstrip__row, .hero__confetti { animation: none; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__links { justify-content: flex-start; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__flyer-frame { max-width: 320px; margin: 0 auto; }

  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ukm__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ukm__flyer { max-width: 360px; margin: 0 auto; }

  .waves__list li { grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; }
  .waves__note { grid-column: 1 / -1; text-align: left; padding-top: 0.2rem; }

  .countdown__label { display: none; }
  .countdown__cta { margin-left: 0.5rem; }
}

@media (max-width: 640px) {
  .hero { padding-top: 5rem; }
  .hero__scroll { display: none; }

  .countdown__inner { gap: 0.7rem; }
  .countdown__clock { gap: 0.5rem; }
  .countdown__num { font-size: 1.1rem; }
  .countdown__l { font-size: 0.55rem; }

  .footer__form { flex-direction: column; }
}
