:root {
  --navy:       #1c2233;
  --navy-mid:   #252d42;
  --red:        #bf1b1b;
  --red-dark:   #8c1111;
  --orange:     #e85d04;
  --cream:      #f5ede0;
  --gold:       #d4a017;
  --white:      #ffffff;
  --text-muted: #a0a8bb;
  --text-dark:  #2a2f3d;
  --text-mid:   #5a6070;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 2.5rem;
  overflow: visible;
  transition: padding 0.3s ease;
}
nav.scrolled {
  padding: 0.4rem 2.5rem;
}
nav.scrolled .nav-logo img {
  width: 125px;
  margin-bottom: -28px;
}
nav .nav-logo {
  display: flex;
  align-items: flex-start;
  position: relative;
  /* push logo up so it hangs below the nav border */
  margin-top: -10px;
}
nav .nav-logo img {
  width: 250px;
  height: auto;
  /* hang below the nav bottom border */
  margin-bottom: -60px;
  transition: width 0.3s ease, margin-bottom 0.3s ease;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5));
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
nav ul li a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
nav ul li a:hover { color: var(--orange); }
nav .nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 3px;
  transition: background 0.2s !important;
}
nav .nav-cta:hover { background: var(--orange) !important; color: var(--white) !important; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1e2a42 0%, #2e3f62 50%, #3a1f1f 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(232, 93, 4, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(191, 27, 27, 0.2) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
}
.hero-text .eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.hero-text h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-text h1 span {
  color: var(--red);
  display: block;
}
.hero-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  width: 100%;
  max-width: 500px;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 3px;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245,237,224,0.3);
}
.btn-secondary:hover {
  border-color: var(--cream);
  color: var(--white);
}
.btn-whatnot {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  font-size: 1rem;
}
.btn-whatnot:hover {
  background: #f0b820;
  border-color: #f0b820;
}

/* ── DIVIDER ── */
.stripe-divider {
  height: 6px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--orange), var(--red), var(--red-dark));
}

/* ── SECTION DEFAULTS ── */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}
.section-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.section-heading {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.section-heading span { color: var(--red); }
.section-intro {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ── CATEGORIES (white bg) ── */
.categories-bg {
  background: var(--white);
}
.categories-bg .section-heading {
  color: var(--text-dark);
}
.categories-bg .section-intro {
  color: var(--text-mid);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.category-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(191,27,27,0.12);
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange));
}
.category-card .icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.category-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.category-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── PHOTO ROW ── */
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.photo-placeholder {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.2);
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.photo-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.3; }
.photo-row img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* ── SUPPLIES ── */
.supplies-bg {
  background: var(--navy-mid);
}
.supplies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.supply-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}
.supply-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.supply-item h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.supply-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── SHOW BAND ── */
.show-band {
  background: var(--red-dark);
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}
.show-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}
.show-text .section-label { color: var(--gold); }
.show-text .section-heading { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.show-text p {
  color: rgba(245,237,224,0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.show-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ── FOOTER ── */
footer {
  background: #0e1220;
  border-top: 3px solid rgba(255,255,255,0.07);
  padding: 2.5rem;
  text-align: center;
}
footer img { height: 60px; margin-bottom: 1rem; opacity: 0.85; }
footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
footer a {
  color: var(--orange);
  text-decoration: none;
}
footer a:hover { text-decoration: underline; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(14, 18, 32, 0.98);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .mobile-cta {
  margin-top: 0.5rem;
  background: var(--red);
  color: var(--white) !important;
  padding: 0.75rem 2.5rem;
  border-radius: 4px;
  font-size: 1.4rem !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image { order: -1; }
  .hero-image img { max-width: 100%; height: 260px; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .category-grid,
  .supplies-grid,
  .photo-row { grid-template-columns: 1fr; }
  .show-inner { grid-template-columns: 1fr; }
  nav ul { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  nav { padding: 0.75rem 1.25rem; }
  section { padding: 3.5rem 1.25rem; }
}