/* ============================================================
   POPPIN PRIZE POPCORN — style.css
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --navy:       #1B2A4A;
  --navy-dark:  #111c33;
  --navy-light: #243660;
  --gold:       #B8962E;
  --gold-light: #d4ad42;
  --gold-pale:  #f0d878;
  --white:      #FFFFFF;
  --cream:      #F9F5EC;
  --cream-dark: #ede8db;
  --text-dark:  #1a1a2e;
  --text-mid:   #3d4a6b;
  --text-light: #8899bb;
  --shadow-sm:  0 2px 8px rgba(27,42,74,0.10);
  --shadow-md:  0 6px 24px rgba(27,42,74,0.14);
  --shadow-lg:  0 12px 40px rgba(27,42,74,0.20);
  --shadow-gold:0 8px 32px rgba(184,150,46,0.30);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Keyframe Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(8deg); }
  66%       { transform: translateY(-8px) rotate(-5deg); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,150,46,0.4); }
  50%       { box-shadow: 0 0 0 14px rgba(184,150,46,0); }
}

@keyframes sparkle {
  0%   { transform: scale(1) rotate(0deg); filter: brightness(1); }
  50%  { transform: scale(1.15) rotate(8deg); filter: brightness(1.4); }
  100% { transform: scale(1) rotate(0deg); filter: brightness(1); }
}

@keyframes chestOpen {
  0%   { transform: translateY(0) scale(1); }
  40%  { transform: translateY(-8px) scale(1.08); }
  70%  { transform: translateY(-12px) scale(1.12) rotate(-3deg); }
  100% { transform: translateY(-8px) scale(1.1); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Fade-in (scroll-triggered via JS) ── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.fade-in:nth-child(2) { transition-delay: 0.10s; }
.fade-in:nth-child(3) { transition-delay: 0.20s; }
.fade-in:nth-child(4) { transition-delay: 0.30s; }

/* Hero immediate entrance */
.hero-animate {
  animation: fadeInUp 0.8s ease both;
}
.hero-animate-delay {
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-animate-delay2 {
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-animate-delay3 {
  animation: fadeInUp 0.8s 0.6s ease both;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(27,42,74,0.25);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  height: 40px;
  width: auto;
}

.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 60%; }

.nav-link.active {
  color: var(--gold);
  font-weight: 600;
}
.nav-link.active::after { width: 70%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── MAIN CONTENT ── */
.main-content { min-height: calc(100vh - 68px - 180px); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.03em;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── SECTION UTILITIES ── */
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.container { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 800px; margin: 0 auto; }

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 3.5rem;
}
.section-navy .section-subtitle { color: rgba(255,255,255,0.7); }

.gold-text { color: var(--gold); }
.divider {
  width: 64px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 1rem auto 0;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.card-navy {
  background: var(--navy);
  color: var(--white);
}
.card-navy h2, .card-navy h3, .card-navy h4 { color: var(--white); }
.card-navy:hover { box-shadow: 0 12px 40px rgba(27,42,74,0.35); }

.card-gold {
  background: var(--gold);
  color: var(--white);
}
.card-gold h2, .card-gold h3, .card-gold h4 { color: var(--white); }
.card-gold:hover { box-shadow: var(--shadow-gold); }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── HOME — HERO ── */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg-kernels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-kernel {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.18;
  animation: float linear infinite;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 24px rgba(184,150,46,0.4));
}

.hero-logo-fallback {
  font-size: 6rem;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-title .gold-text { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* ── HOME — HERO VIDEO ── */
.hero-video-wrap {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto 0;
}

.hero-video {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 0 3px rgba(184,150,46,0.4), 0 8px 40px rgba(184,150,46,0.35);
  display: block;
}

.hero-video-caption {
  color: var(--gold);
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 0.6rem;
  text-align: center;
}

@media (max-width: 640px) {
  .hero-video-wrap {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ── HOME — FEATURE CARDS ── */
.features-section {
  background: var(--white);
  padding: 5rem 1.5rem;
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.feature-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.feature-card p { color: var(--text-mid); font-size: 0.95rem; }

/* ── HOME — FLAVOR TEASER ── */
.flavor-teaser {
  background: var(--navy);
  padding: 5rem 1.5rem;
  text-align: center;
}

.flavor-teaser .section-title { color: var(--white); }

.teaser-flavors {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.teaser-flavor-pill {
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--gold);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
}
.teaser-flavor-pill:hover {
  background: var(--gold);
  transform: scale(1.05);
}

/* ── POPCORN PAGE ── */
.flavor-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flavor-card {
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.flavor-card:hover {
  transform: translateY(-6px);
}

.flavor-emoji {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  display: block;
}

.flavor-card h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

.flavor-card.card-navy h2 { color: var(--gold); }
.flavor-card.card-gold h2 { color: var(--navy); }
.flavor-card.card-gold p { color: rgba(27,42,74,0.85); }

.flavor-fact-container {
  min-height: 60px;
  margin-top: 1rem;
}

.flavor-fact {
  background: rgba(255,255,255,0.12);
  border-left: 4px solid var(--gold-pale);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  animation: fadeInUp 0.5s ease both;
}

.flavor-fact .fact-icon { font-size: 1.5rem; flex-shrink: 0; }
.flavor-fact p { font-size: 0.93rem; line-height: 1.6; }
.flavor-fact.card-gold-fact { border-left-color: var(--navy); }

/* ── PRIZES PAGE ── */
.guarantee-badge {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 900;
  text-align: center;
  padding: 1.5rem 2.5rem;
  border-radius: var(--radius-lg);
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-gold);
  animation: pulse-gold 3s infinite;
}

.prize-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.prize-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.prize-card:hover .prize-icon {
  animation: sparkle 0.6s ease;
}

.prize-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.prize-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.prize-card p { color: var(--text-mid); font-size: 0.9rem; }

.prize-tagline {
  font-style: italic;
  font-size: 0.78rem !important;
  color: var(--text-light) !important;
  margin-top: 0.4rem !important;
}

.prize-inventory-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

/* ── ABOUT PAGE ── */
.mission-box {
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  background: var(--white);
  text-align: center;
  position: relative;
}

.mission-box::before {
  content: '👑';
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  background: var(--cream);
  padding: 0 0.5rem;
}

.mission-box h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.timeline {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
  padding: 1rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--navy));
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 0;
}

.timeline-dot {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-gold);
  z-index: 1;
}

.timeline-body h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.timeline-body p { color: var(--text-mid); font-size: 0.95rem; }

/* ── TESTIMONIALS PAGE ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.testimonial-card video {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #B8962E;
}

.testimonial-card .reviewer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
}

.testimonial-card .review-quote {
  color: var(--navy);
  font-style: italic;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}


.video-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.video-placeholder {
  background: var(--navy);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,150,46,0.12) 0%, transparent 70%);
}

.play-btn {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1;
}

.video-card:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(184,150,46,0.2);
}

.video-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.video-info {
  padding: 1.5rem;
}

.reviewer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.review-quote {
  color: var(--text-mid);
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.6;
}

/* ── TEAM PAGE ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 4px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover .team-avatar {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(184,150,46,0.2);
}

.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.team-title {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.paw-badge {
  display: inline-block;
  background: var(--cream-dark);
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  padding: 0.2rem 0.6rem;
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  width: 100%;
  text-align: center;
}

/* ── PAGE HEADERS ── */
.page-header {
  background: var(--navy);
  padding: 5rem 1.5rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .prize-inventory-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-md);
  }
  .navbar.nav-open .nav-links { display: flex; }
  .nav-link { padding: 0.75rem 1rem; }
  .nav-link::after { display: none; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .prize-inventory-grid { grid-template-columns: repeat(3, 1fr); }

  .hero { min-height: 80vh; padding: 4rem 1.5rem 3rem; }

  .timeline::before { left: 28px; }
  .timeline-dot { width: 56px; height: 56px; font-size: 1.4rem; }
  .timeline-item { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 1rem; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .prize-inventory-grid { grid-template-columns: repeat(2, 1fr); }
  .teaser-flavors { flex-direction: column; align-items: center; }
  .hero-logo { width: 120px; height: 120px; }
}
