/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --paper:      #faf7f1;   /* warm cream */
  --paper-2:    #ffffff;
  --cream:      #f4efe4;   /* deeper cream for alt sections */
  --ink:        #131f36;
  --ink-2:      #48536b;
  --ink-3:      #7d8598;
  --line:       #e5ddcc;   /* warm hairline */
  --navy:       #1783c9;   /* Skoop bright blue — brand/CTAs/links (name kept for compatibility) */
  --navy-deep:  #0c3a66;   /* deep blue — button hovers + dark-section top */
  --navy-ink:   #082744;   /* deepest blue — dark section / footer backgrounds */
  --gold:       #ef4e63;   /* coral (the logo sneaker) — replaces gold accent */
  --gold-deep:  #d83a50;
  --green:      #16a34a;
  --max:        1080px;
  --g:          24px;
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.hidden { display: none !important; }

/* ── Type primitives ────────────────────────────────────────── */
.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.kicker--gold { color: rgba(255, 255, 255, 0.72); }
.section-title {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(32px, 4.6vw, 46px);
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 560px;
  margin-bottom: 44px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 2px 10px rgba(23, 131, 201, 0.35);
}
.btn-gold:hover { background: var(--navy-deep); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); }
.btn-ghost {
  color: var(--ink);
  border: 1.5px solid var(--line);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink-2); background: var(--paper-2); }

/* ── Nav ────────────────────────────────────────────────────── */
#nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 247, 241, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
#nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--g);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--gold);
  letter-spacing: -0.03em;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.wordmark .logo-img {
  display: block;
  height: 36px;
  width: auto;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}
.nav-links li a:hover { color: var(--ink); background: var(--cream); }
.nav-links .nav-cta {
  color: #fff;
  background: var(--navy);
  padding: 9px 18px;
  font-weight: 600;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--navy-deep); color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.hamburger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
#hero { padding: 72px var(--g) 96px; }
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero-text h1 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(40px, 5.6vw, 64px);
  letter-spacing: -0.015em;
  line-height: 1.04;
  margin-bottom: 24px;
}
.hero-text h1 em {
  font-style: italic;
  font-weight: 480;
  color: var(--navy);
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Notice card ────────────────────────────────────────────── */
.hero-notice { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.notice-card {
  position: relative;
  width: min(340px, 100%);
  background: linear-gradient(178deg, #ffffff 0%, #fdfbf6 100%);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px 34px 26px;
  text-align: center;
  transform: rotate(-1.6deg);
  box-shadow:
    0 1px 2px rgba(19, 31, 54, 0.06),
    0 12px 28px rgba(19, 31, 54, 0.1),
    0 32px 64px rgba(19, 31, 54, 0.12);
  transition: transform 0.3s ease;
}
.notice-card:hover { transform: rotate(-0.4deg); }
.notice-pin {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff9aa8, var(--gold-deep));
  box-shadow: 0 3px 6px rgba(19, 31, 54, 0.3);
}
.notice-school {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.notice-title {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 27px;
  line-height: 1.12;
  color: var(--navy-ink);
}
.notice-rule {
  height: 1px;
  background: var(--line);
  margin: 20px 8px;
}
.notice-qr {
  width: 158px;
  margin: 0 auto;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.notice-qr svg { width: 100%; height: auto; display: block; }
.notice-instruction {
  font-size: 13.5px;
  color: var(--ink-2);
  margin-top: 16px;
  line-height: 1.5;
}
.notice-foot {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.notice-caption {
  font-size: 13.5px;
  color: var(--ink-3);
  text-align: center;
  max-width: 300px;
  line-height: 1.5;
}
.notice-caption--mobile {
  display: none;
  color: var(--navy);
  font-weight: 600;
}

/* ── Stats band ─────────────────────────────────────────────── */
#stats { background: var(--navy-ink); padding: 44px var(--g); }
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.stat-num {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 34px;
  line-height: 1.1;
  color: #fff;
  font-variant-numeric: lining-nums;
}
.stat-label { font-size: 13.5px; color: rgba(255, 255, 255, 0.62); line-height: 1.4; }

/* ── Sections ───────────────────────────────────────────────── */
.section { padding: 108px var(--g); }
.section-cream { background: var(--cream); }
.section-inner { max-width: var(--max); margin: 0 auto; }

/* ── How it works ───────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}
.step { padding: 36px 32px 8px 0; }
.step + .step { padding-left: 32px; border-left: 1px solid var(--line); }
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 480;
  font-size: 40px;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.step p { font-size: 15px; color: var(--ink-2); }

/* ── For parents ────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-rows { margin: 8px 0 36px; }
.feature-row { padding: 20px 0; border-bottom: 1px solid var(--line); }
.feature-row:first-child { border-top: 1px solid var(--line); }
.feature-row h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 5px;
}
.feature-row p { font-size: 14.5px; color: var(--ink-2); }

.product-collage { position: relative; height: 480px; }
.product-card {
  position: absolute;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(19, 31, 54, 0.12);
}
.product-card img {
  width: 100%;
  height: calc(100% - 42px);
  object-fit: contain;
  padding: 18px;
}
.product-card figcaption {
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  background: #fdfbf6;
}
.product-card--a { width: 290px; height: 320px; top: 0; left: 0; z-index: 3; transform: rotate(-2deg); }
.product-card--b { width: 210px; height: 230px; top: 60px; right: 0;  z-index: 2; transform: rotate(1.8deg); }
.product-card--c { width: 240px; height: 250px; bottom: 0; left: 90px; z-index: 1; transform: rotate(0.8deg); }

/* ── For schools (dark) ─────────────────────────────────────── */
.section-navy {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-ink) 100%);
  color: #fff;
}
.section-navy .section-title { color: #fff; }
.section-navy .section-sub { color: rgba(255, 255, 255, 0.68); }
.pledges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 64px;
  margin-bottom: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.pledge { padding: 26px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.pledge h3 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 21px;
  color: #fff;
  margin-bottom: 8px;
}
.pledge p { font-size: 15px; color: rgba(255, 255, 255, 0.72); }

/* ── For suppliers ──────────────────────────────────────────── */
.supplier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
}
.supplier-grid .section-sub { margin-bottom: 36px; }
.supplier-side {
  border-left: 1px solid var(--line);
  padding-left: 48px;
}
.supplier-side-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.supplier-names li {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 24px;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.supplier-names li:last-child { border-bottom: none; }

/* ── Schools live strip ─────────────────────────────────────── */
#live { padding: 64px var(--g); }
.live-inner { text-align: center; }
.live-inner .kicker { margin-bottom: 14px; }
.live-names {
  font-family: var(--serif);
  font-weight: 480;
  font-size: clamp(17px, 2.4vw, 22px);
  line-height: 1.7;
  color: var(--ink);
  max-width: 860px;
  margin: 0 auto;
}
.live-names span { color: var(--gold-deep); padding: 0 6px; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.contact-alt { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.15s, opacity 0.15s;
  border: 1.5px solid var(--line);
  background: var(--paper-2);
}
.btn-contact:hover { transform: translateY(-1px); }
.btn-contact svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-wa { background: #22c55e; color: #fff; border-color: #22c55e; }
.btn-email { color: var(--ink); }
.reply-time { font-size: 13px; color: var(--ink-3); margin-top: 4px; }

/* ── Form ───────────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 20px 56px rgba(19, 31, 54, 0.07);
}
form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label, .form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.optional { font-weight: 400; color: var(--ink-3); }
.form-field input, .form-field textarea {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  resize: vertical;
  outline: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-3); }
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(23, 131, 201, 0.08);
}
.aud-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.aud-pill input { position: absolute; opacity: 0; pointer-events: none; }
.aud-pill span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.aud-pill input:checked + span {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.aud-pill input:focus-visible + span { box-shadow: 0 0 0 3px rgba(23, 131, 201, 0.25); }
.form-submit { align-self: flex-start; padding: 14px 36px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  padding: 12px 16px;
  background: rgba(22, 163, 74, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(22, 163, 74, 0.2);
}
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────────────────── */
#footer { background: var(--navy-ink); color: var(--paper); padding: 72px var(--g) 0; }
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-wordmark { color: var(--gold); margin-bottom: 6px; }
.footer-wordmark .logo-img { height: 42px; width: auto; display: block; }
.footer-tagline { font-size: 14px; color: rgba(255, 255, 255, 0.45); margin-top: 8px; }
.footer-nav { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: rgba(255, 255, 255, 0.65); transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 0 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .notice-card, .notice-card:hover { transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive: tablet ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 48px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; border-top: none; }
  .step { padding: 28px 0; border-top: 1px solid var(--line); }
  .step + .step { padding-left: 0; border-left: none; }
  .two-col, .supplier-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .supplier-side { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 36px; }
  .product-collage { height: 420px; max-width: 560px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Responsive: mobile ─────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --g: 20px; }
  .section { padding: 72px var(--g); }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(19, 31, 54, 0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 12px 14px; border-radius: 10px; }
  .nav-links .nav-cta { margin-left: 0; text-align: center; }
  .hamburger { display: flex; }

  #hero { padding: 48px var(--g) 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-ctas .btn { flex: 1; min-width: 200px; }
  .notice-card { transform: rotate(-1deg); }
  .notice-caption--desktop { display: none; }
  .notice-caption--mobile { display: block; }

  #stats { padding: 36px var(--g); }
  .stats-inner { gap: 24px; }
  .stat-num { font-size: 27px; }

  .product-collage { height: auto; display: flex; flex-direction: column; gap: 14px; }
  .product-card,
  .product-card--a,
  .product-card--b,
  .product-card--c {
    position: static;
    width: 100%;
    height: 220px;
    top: auto; left: auto; right: auto; bottom: auto;
    transform: none;
  }

  .pledges { grid-template-columns: 1fr; gap: 0; }

  .contact-form-wrap { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-nav { flex-direction: column; gap: 28px; }
}
