/* ============================================================
   GHETZDASBOOTZ – Dark Mode Premium Collector Edition
   style.css
   ============================================================ */

/* ── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Permanent+Marker&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400;500&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg-base:       #09090c;
  --bg-surface:    #101014;
  --bg-raised:     #16161c;
  --bg-card:       #1b1b22;
  --bg-hover:      #202028;

  --border-dim:    rgba(255,255,255,0.055);
  --border-mid:    rgba(255,255,255,0.11);
  --border-bright: rgba(255,255,255,0.2);

  --text-primary:  #efede7;
  --text-secondary:#95938e;
  --text-muted:    #525050;

  --gold:          #d4a843;
  --gold-bright:   #f0c45a;
  --gold-dim:      rgba(212,168,67,0.14);
  --gold-glow:     rgba(212,168,67,0.22);

  --red:           #e05252;
  --red-dim:       rgba(224,82,82,0.11);

  --teal:          #3ecfcf;
  --teal-dim:      rgba(62,207,207,0.1);

  --font-display:  'Bebas Neue', sans-serif;
  --font-marker:   'Permanent Marker', cursive;
  --font-body:     'DM Sans', sans-serif;
  --font-mono:     'DM Mono', monospace;

  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;

  --shadow-card:   0 1px 3px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lift:   0 8px 32px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.3);
  --shadow-gold:   0 0 28px rgba(212,168,67,0.2);

  --max-width:     1200px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain overlay — sits over everything, non-interactive */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ── HEADER / NAV ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,9,12,0.82);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid var(--border-dim);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.nav-logo { display: none; }

/* Hero logo image */
.hero-logo-img {
  display: block;
  width: 75%;
  max-width: 560px;
  min-width: 280px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 40px var(--gold-glow));
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  align-items: center;
  line-height: 1;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--text-primary); }

/* ── NAV DROPDOWN ──────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
  /* extend hover area downward to bridge the gap to the menu */
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
  line-height: inherit;
  vertical-align: middle;
}
.nav-dropdown-toggle:hover { color: var(--text-primary); }

.nav-caret {
  font-size: 0.65rem;
  opacity: 0.6;
  transition: transform 0.2s var(--ease), opacity 0.2s;
  display: inline-block;
  /* nudge caret to sit on the same baseline as the text */
  position: relative;
  top: 1px;
}

.nav-dropdown:hover .nav-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  list-style: none;
  position: absolute;
  /* sit flush below the padded hover zone — no extra gap needed */
  top: calc(100% - 10px);
  left: 50%;
  min-width: 230px;
  background: rgba(13, 13, 17, 0.97);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.04);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
  z-index: 300;
}

/* Arrow pointer */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  background: rgba(13, 13, 17, 0.97);
  border-left: 1px solid var(--border-mid);
  border-top: 1px solid var(--border-mid);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: background 0.15s var(--ease), color 0.15s var(--ease), padding-left 0.15s var(--ease);
  white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
  background: rgba(212,168,67,0.12);
  color: var(--gold-bright);
  padding-left: 22px;
  border-left: 2px solid var(--gold);
}

.nav-dropdown-menu li + li {
  border-top: 1px solid var(--border-dim);
}

.nav-active {
  color: var(--gold) !important;
  border: 1px solid rgba(212,168,67,0.35);
  padding: 7px 18px;
  border-radius: 20px;
  background: var(--gold-dim);
}
.nav-active:hover {
  background: rgba(212,168,67,0.22) !important;
  border-color: var(--gold) !important;
  color: var(--gold-bright) !important;
}

/* Active item inside dropdown */
.dropdown-active {
  color: var(--gold) !important;
  background: rgba(212,168,67,0.08);
}
.dropdown-active::before {
  color: var(--gold) !important;
}

/* Keep contact as a plain link now */
.nav-cta {
  color: var(--text-secondary);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 20px 0 60px;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 40%, rgba(212,168,67,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 85% 60%, rgba(62,207,207,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 50% 0%,  rgba(224,82,82,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

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

/* Hero load-in animation */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow  { animation: heroFadeUp 0.7s var(--ease) 0.1s both; }
.hero-logo-img { animation: heroFadeUp 0.8s var(--ease) 0.25s both; }
.hero-desc     { animation: heroFadeUp 0.7s var(--ease) 0.45s both; }
.hero-actions  { animation: heroFadeUp 0.7s var(--ease) 0.6s both; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(212,168,67,0.28);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}

.hero-title {
  margin-bottom: 26px;
}

.hero-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 21px;
  line-height: 1.82;
  font-weight: 300;
}
.hero-desc a {
  color: var(--teal);
  border-bottom: 1px solid rgba(62,207,207,0.28);
  transition: border-color 0.2s;
}
.hero-desc a:hover { border-color: var(--teal); }

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.77rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-base);
  border-color: var(--gold);
  font-weight: 500;
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-mid);
}
.btn-ghost:hover {
  background: var(--bg-raised);
  color: var(--text-primary);
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

/* ── ANNOUNCEMENT ──────────────────────────────────────────── */
.announcement {
  padding: 28px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  position: relative;
  overflow: hidden;
}
.announcement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(212,168,67,0.08) 0%, transparent 70%);
  pointer-events: none;
}
/* Scanline texture for the bootleg aesthetic */
.announcement::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.07) 3px,
    rgba(0,0,0,0.07) 4px
  );
  pointer-events: none;
  z-index: 0;
}
.announcement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  text-align: left;
  position: relative;
  z-index: 1;
}
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  text-align: left;
}

.announcement-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.announcement-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid rgba(224,82,82,0.22);
  padding: 3px 10px;
  border-radius: 4px;
}
.announcement-badge::before {
  content: '● ';
  animation: blink 1.6s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.announcement-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.announcement-date {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 30px;
}

.announcement-img-wrap a { display: block; }
.announcement-img-wrap img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-mid);
  box-shadow: var(--shadow-lift), 0 0 48px var(--gold-glow);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.announcement-img-wrap a:hover img {
  transform: scale(1.025);
  box-shadow: var(--shadow-lift), 0 0 70px rgba(212,168,67,0.3);
}
.img-caption {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.08em;
}

/* ── SECTION SHARED ────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.06em;
  color: var(--text-primary);
  line-height: 1;
}
.section-intro {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.78;
  font-weight: 300;
}

.series-section .section-header {
  padding-top: 40px;
  margin-bottom: 32px;
}
.series-section {
  padding: 0 0 80px;
  background: var(--bg-base);
}

/* Gold gradient divider above series section */
.series-section::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-bright) 50%, var(--gold) 70%, transparent 100%);
  opacity: 0.35;
  margin-bottom: 0;
}

/* ── SCROLL-REVEAL ─────────────────────────────────────────── */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.series-card {
  opacity: 0;
  animation: revealUp 0.55s var(--ease) both;
}
/* Stagger each card */
.series-card:nth-child(1) { animation-delay: 0.05s; }
.series-card:nth-child(2) { animation-delay: 0.13s; }
.series-card:nth-child(3) { animation-delay: 0.21s; }
.series-card:nth-child(4) { animation-delay: 0.29s; }
.series-card:nth-child(5) { animation-delay: 0.37s; }
.series-card:nth-child(6) { animation-delay: 0.45s; }

/* Pause animation until section is in view — JS adds .is-visible */
.series-section:not(.is-visible) .series-card { animation-play-state: paused; }
.series-section.is-visible .series-card       { animation-play-state: running; }

.series-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.series-card {
  position: relative;
  width: 281px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
  opacity: 0;
  animation: revealUp 0.55s var(--ease) both;
}
/* Even cards nudge down slightly for a staggered row feel */
.series-card:nth-child(even) { margin-top: 22px; }

.series-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-lift);
}
/* Even cards start lower, so hover lifts from that offset */
.series-card:nth-child(even):hover { transform: translateY(17px); }

.series-card-img { overflow: hidden; border-bottom: 1px solid var(--border-dim); }
.series-card img {
  display: block;
  width: 281px;
  height: 394px;
  object-fit: cover;
  transition: transform 0.3s var(--ease);
}
.series-card:hover img { transform: scale(1.05); }

.series-info { padding: 18px 20px 22px; }
.series-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 6px;
}
.series-info p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}
.series-info a { color: var(--teal); border-bottom: 1px solid rgba(62,207,207,0.28); }

.series-card--placeholder {
  opacity: 0.55;
  filter: saturate(0.3);
  pointer-events: none;
}

.series-card--upcoming {
  border-color: rgba(212,168,67,0.18);
}
.series-card--upcoming:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lift), var(--shadow-gold);
}

.coming-soon-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  color: var(--bg-base);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 0;
  font-weight: 500;
}

/* ── REDEMPTION SECTION ────────────────────────────────────── */
.redemption-section {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  position: relative;
  overflow: hidden;
}
.redemption-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(212,168,67,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.redemption-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  position: relative;
}

.redemption-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.redemption-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,168,67,0.3);
  box-shadow: var(--shadow-lift), 0 0 28px rgba(212,168,67,0.1);
}
.redemption-card-img { overflow: hidden; border-bottom: 1px solid var(--border-dim); }
.redemption-card img {
  width: 100%;
  display: block;
  transition: transform 0.3s var(--ease);
}
.redemption-card:hover img { transform: scale(1.04); }

.redemption-info { padding: 20px 22px 24px; }
.series-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--teal-dim);
  color: var(--teal);
  border: 1px solid rgba(62,207,207,0.22);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.redemption-info h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.redemption-info p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.68;
  font-weight: 300;
}

/* ── VARIANTS SECTION ──────────────────────────────────────── */
.variants-section {
  padding: 80px 0;
  background: var(--bg-base);
}

.variants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}

.variant-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  padding: 14px 10px 12px;
  text-align: center;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.variant-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-lift);
}
.variant-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border-dim);
}
.variant-item span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-dim);
}

.footer-inner {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-marker);
  font-size: 1.5rem;
  color: var(--gold);
  justify-self: start;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  justify-self: start;
  filter: drop-shadow(0 0 6px rgba(212,168,67,0.2));
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--text-primary); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: right;
  justify-self: end;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .announcement-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .footer-logo  { justify-self: center; }
  .footer-copy  { justify-self: center; text-align: center; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(9,9,12,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-mid);
    padding: 8px 0 16px;
    z-index: 200;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a  { display: block; padding: 13px 20px; font-size: 0.88rem; }
  .nav-cta      { margin: 8px 20px 0; border-radius: var(--radius-sm); }
  .site-header  { position: relative; }

  /* Mobile dropdown */
  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: rgba(255,255,255,0.03);
    border: none;
    border-top: 1px solid var(--border-dim);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    display: none;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown.is-open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu li + li { border-top: 1px solid var(--border-dim); }
  .nav-dropdown-menu li a { padding: 11px 20px; border-radius: 0; font-size: 0.8rem; }

  .hero { padding: 70px 0 60px; }
  .series-grid     { gap: 12px; }
  .redemption-grid { grid-template-columns: 1fr; }
  .variants-grid   { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
}

@media (max-width: 480px) {
  /* Reset even-card stagger so they don't hang below siblings */
  .series-card:nth-child(even) { margin-top: 0; }
  .series-card:nth-child(even):hover { transform: translateY(-5px); }
  .series-card { width: calc(50vw - 24px); }
  .series-card img { width: 100%; height: auto; }
  .hero-actions  { flex-direction: column; align-items: center; }
  /* Announcement stacks cleanly on small phones */
  .announcement-title { font-size: 2rem; }
}
