/* ============================================================
   LCDS Preschool & Kindergarten — 2026 redesign, rev 1 (JC)
   Palette: warm off-white / slate / amber / sage
   ============================================================ */

:root {
  --bg: #FAFAF9;          /* warm off-white (JC item 1) */
  --paper: #FFFFFF;
  --ink: #1E293B;          /* deep slate (JC item 2) */
  --ink-soft: #475569;
  --amber: #D97706;        /* primary action (JC item 3) */
  --amber-deep: #B45309;
  --amber-soft: #FEF3C7;
  --sage: #059669;         /* deep sage for text/accents */
  --sage-soft: #ECFDF5;    /* soft sage highlight (JC item 3) */
  --line: #E2E8F0;         /* subtle borders (JC item 8) */
  /* LCDS brand block colors (logo) — retained everywhere JC rev 1 didn't specify otherwise */
  --red: #F42941;
  --red-deep: #D31430;
  --red-soft: #FDE4E8;
  --yellow: #FCE000;
  --yellow-soft: #FEF8D2;
  --blue: #0082D1;
  --blue-deep: #056AA8;
  --blue-soft: #E0F1FB;
  --green: #00A844;
  --green-soft: #E0F5E8;
  --board-bg: #FDFBF7;     /* board of directors band (JC item 18) */
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 4px 18px rgba(30, 41, 59, .06);
  --shadow-lift: 0 14px 34px rgba(30, 41, 59, .12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }

.container { width: min(1160px, 92%); margin-inline: auto; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.2vw, 2.9rem); font-weight: 700; margin-bottom: .6em; }
h3 { font-size: 1.3rem; font-weight: 700; }

p { color: var(--ink-soft); }

a { color: var(--sage); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }

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

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .orbit-ring, .orbit-node .orbit-icon, .hero-chip { animation: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: .9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn:active { transform: translateY(0); }
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-deep); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); padding: calc(.9rem - 2px) calc(1.8rem - 2px); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--ink), var(--shadow); }
.btn-small { padding: .55rem 1.2rem; font-size: .92rem; }
.btn-small.btn-outline { padding: calc(.55rem - 2px) calc(1.2rem - 2px); }
.btn-full { display: block; text-align: center; margin-top: 1rem; }

/* ---------- Eyebrow / accents ---------- */
.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red-deep);
  background: var(--red-soft);
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.eyebrow-sage { color: var(--sage); background: var(--sage-soft); }
.eyebrow-light { color: #fff; background: rgba(255,255,255,.16); }

.accent { color: var(--amber); }
.underline-sage {
  background: linear-gradient(transparent calc(100% - .22em), var(--sage-soft) 0);
  border-bottom: 3px solid var(--sage);
  padding-bottom: .04em;
}
.hl-sage { background: linear-gradient(transparent 68%, var(--sage-soft) 0); }
.hl-amber { background: linear-gradient(transparent 68%, var(--amber-soft) 0); }
.hl-sun { background: linear-gradient(transparent 68%, var(--yellow-soft) 0); }
.hl-red { background: linear-gradient(transparent 68%, var(--red-soft) 0); }
.hl-blue { background: linear-gradient(transparent 68%, var(--blue-soft) 0); }

.section-sub { max-width: 640px; font-size: 1.12rem; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .section-sub { margin-inline: auto; }
.section-head-light h2 { color: #fff; }
.section-head-light .section-sub { color: rgba(255,255,255,.82); }

/* ---------- Einstein pull-quotes (JC item 25) ---------- */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  border-left: 4px solid var(--sage);
  padding: .4rem 0 .4rem 1.4rem;
  margin: 1.8rem 0;
  max-width: 44rem;
}
.pull-quote cite { display: block; margin-top: .5rem; font-family: var(--font-body); font-style: normal; font-weight: 700; font-size: .9rem; color: var(--ink-soft); }
.pull-quote-center { margin-inline: auto; text-align: left; }
/* white-card variant so the slate quote text stays readable on the blue STEAM band */
.pull-quote-card { background: var(--paper); border-radius: var(--radius); padding: 1.4rem 1.8rem 1.4rem 2rem; box-shadow: var(--shadow); }

/* ============================================================
   Announcement bar
   ============================================================ */
.announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: .95rem;
  font-weight: 600;
  padding: .55rem 1rem;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  flex-wrap: wrap;
}
.announce a { color: var(--yellow); font-weight: 800; }
.announce-badge {
  background: var(--red); color: #fff;
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  padding: .15rem .6rem; border-radius: 999px;
}

/* ============================================================
   Nav
   ============================================================ */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 249, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  width: min(1240px, 94%); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem 0;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.brand-mark img { border-radius: 7px; }
.brand-text { font-family: var(--font-display); font-weight: 900; font-size: 1.25rem; line-height: 1.05; }
.brand-text em { display: block; font-style: normal; font-family: var(--font-body); font-weight: 700; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); }

.nav-links { display: flex; align-items: center; gap: 1.3rem; list-style: none; }
.nav-links a:not(.btn) {
  text-decoration: none; color: var(--ink); font-weight: 700; font-size: .96rem;
  padding: .3rem 0; border-bottom: 2.5px solid transparent; transition: border-color .2s;
}
.nav-links a:not(.btn):hover { border-color: var(--red); }
.nav-stem { position: relative; }
.nav-stem .dot {
  position: absolute; top: 2px; right: -10px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .5; } }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 3px; margin: 5px 0; transition: transform .25s, opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 5rem 0 6rem; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .6; pointer-events: none; }
.hero-blob-1 { width: 480px; height: 480px; background: var(--yellow-soft); top: -160px; right: -120px; }
.hero-blob-2 { width: 420px; height: 420px; background: var(--blue-soft); bottom: -180px; left: -140px; }

.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center;
}
.hero h1 { margin: .4rem 0 1.2rem; }
.lead { font-size: 1.22rem; max-width: 32rem; }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; margin: 1.8rem 0 1.6rem; }
.hero-trust { list-style: none; display: grid; gap: .35rem; font-weight: 700; font-size: .95rem; color: var(--ink-soft); }

.hero-art { position: relative; }
/* Hero video container (JC item 4) */
.hero-video-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: .9rem;
  transform: rotate(1.5deg);
}
.hero-video-card video {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 20px;
  background: var(--sage-soft);
}
.hero-chip {
  position: absolute; background: var(--paper);
  font-weight: 800; font-size: .95rem;
  padding: .7rem 1.2rem; border-radius: 999px;
  box-shadow: var(--shadow-lift);
  animation: floaty 5s ease-in-out infinite;
  z-index: 2;
}
.hero-chip-1 { top: -18px; left: -14px; animation-delay: 0s; }
.hero-chip-2 { bottom: 42px; right: -20px; animation-delay: 1.2s; }
.hero-chip-3 { bottom: -22px; left: 36px; animation-delay: 2.4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ============================================================
   Stats
   ============================================================ */
.stats { padding: 0 0 4.5rem; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.2rem 2rem;
}
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-weight: 900; font-size: 2.6rem; color: var(--red); }
.stat:nth-child(2) .stat-num { color: var(--blue); }
.stat:nth-child(3) .stat-num { color: #d99a00; }
.stat:nth-child(4) .stat-num { color: var(--green); }
.stat-label { font-weight: 700; color: var(--ink-soft); font-size: .95rem; }

/* ============================================================
   STEAM 2027 (light, premium — JC items 7-10, 26)
   ============================================================ */
.steam {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue) 55%, #2B9DE8);
  padding: 5.5rem 0;
}
.steam h2 { color: #fff; }
.steam h2 span { color: var(--yellow); background: none; }
.steam-intro { text-align: center; max-width: 720px; margin-inline: auto; }
.steam-intro .section-sub { color: rgba(255,255,255,.88); }
.steam-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3.5rem; align-items: start; margin-top: 2.5rem; }

/* Interactive orbit (JC item 26) */
.steam-orbit {
  position: relative;
  width: min(360px, 88vw);
  aspect-ratio: 1;
  margin-inline: auto;
  position: sticky; top: 120px;
}
.orbit-path {
  position: absolute; inset: 8%;
  border: 2px dashed rgba(255, 255, 255, .4);
  border-radius: 50%;
}
.orbit-center {
  position: absolute; top: 50%; left: 50%;
  width: 96px; height: 96px;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 3px solid var(--amber);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 2.4rem;
  box-shadow: var(--shadow);
}
.orbit-ring {
  position: absolute; inset: 8%;
  animation: spin 20s linear infinite;
}
.orbit-node {
  position: absolute; top: 50%; left: 50%;
  width: 56px; height: 56px;
  margin: -28px 0 0 -28px;
  transform: rotate(var(--angle)) translate(var(--orbit-r, 150px));
}
.orbit-icon {
  width: 100%; height: 100%;
  background: #fff;
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 16px rgba(30,41,59,.14);
  animation: spin-reverse 20s linear infinite;
  transition: transform .2s ease, border-color .2s ease;
}
.orbit-node:nth-child(even) .orbit-icon { border-color: var(--sage); }
.orbit-node:hover .orbit-icon { transform: scale(1.1); border-color: var(--amber-deep); }
.steam-orbit:hover .orbit-ring,
.steam-orbit:hover .orbit-icon { animation-play-state: paused; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }
.orbit-hint { text-align: center; font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.85); margin-top: 1rem; }

/* STEAM cards (JC items 7-9) */
.steam-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.steam-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.5rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  scroll-margin-top: 110px;
}
.steam-card:hover { transform: translateY(-4px); border-color: var(--amber); box-shadow: var(--shadow-lift); }
.steam-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
.steam-icon { font-size: 1.7rem; display: block; margin-bottom: .5rem; }
.steam-card h3 { font-size: 1.1rem; margin-bottom: .15rem; }
.steam-card .steam-method { font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--sage); display: block; margin-bottom: .55rem; }
.steam-card p { font-size: .95rem; line-height: 1.55; }

/* IP note (JC item 10) */
.steam-ip-note {
  margin-top: 1.6rem;
  background: var(--sage-soft);
  border: 1px solid #D1FAE5;
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}

/* ============================================================
   Our Values
   ============================================================ */
.values { padding: 5.5rem 0 4.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.value-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem 1.6rem 1.8rem;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
/* P-L-A-Y letter blocks — slate border, amber letters (Sweep 2 item 4) */
.value-letter {
  display: inline-grid; place-items: center;
  width: 64px; height: 64px;
  background: #fff;
  border: 6px solid var(--ink);
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--amber);
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.value-card p { font-size: .95rem; }
.values .pull-quote { margin: 2.4rem auto 0; }

/* ============================================================
   About
   ============================================================ */
.about { padding: 4.5rem 0 5.5rem; }
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; align-items: start; }
.about-copy p + p { margin-top: 1rem; }

.team-card {
  background: var(--paper);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 2rem;
}
.team-card h3 { margin-bottom: 1.2rem; }
.team-list { list-style: none; display: grid; gap: 1rem; }
.team-list li { display: flex; align-items: center; gap: .9rem; }
.team-list strong { display: block; line-height: 1.2; }
.team-list span:not(.team-avatar) { font-size: .88rem; color: var(--ink-soft); font-weight: 700; }
.team-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--av, var(--red)); color: var(--av-fg, #fff);
  display: grid; place-items: center;
  font-weight: 800; font-size: .95rem; flex-shrink: 0;
}
.team-note { margin-top: 1.2rem; font-size: .88rem; padding-top: 1rem; border-top: 1px dashed var(--line); }

/* ============================================================
   Programs
   ============================================================ */
.programs { padding: 5.5rem 0; background: var(--paper); }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.program-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border-top: 8px solid var(--accent, var(--red));
  transition: transform .25s ease, box-shadow .25s ease;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.program-card-featured { background: var(--blue-soft); }
.program-emoji { font-size: 2.2rem; display: block; margin-bottom: .6rem; }
.program-age { font-weight: 800; font-size: .88rem; color: var(--ink); background: rgba(30,41,59,.06); display: inline-block; padding: .25rem .8rem; border-radius: 999px; margin: .5rem 0 1rem; }
.program-card ul { list-style: none; display: grid; gap: .55rem; }
.program-card li { padding-left: 1.4rem; position: relative; color: var(--ink-soft); font-size: .97rem; }
.program-card li::before { content: "●"; position: absolute; left: 0; color: var(--accent, var(--amber)); font-size: .7rem; top: .35rem; }

.schedule-band {
  margin-top: 2.5rem;
  background: var(--ink); color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.4rem;
  display: flex; justify-content: space-around; gap: 1.5rem; flex-wrap: wrap;
}
.schedule-item { display: flex; align-items: center; gap: .9rem; }
.schedule-icon { font-size: 1.9rem; }
.schedule-item strong { display: block; font-size: 1.05rem; color: #fff; }
.schedule-item span:not(.schedule-icon) { color: rgba(255,255,255,.75); font-weight: 700; font-size: .95rem; }

/* ============================================================
   A Day at LCDS
   ============================================================ */
.day { padding: 5.5rem 0; }
.day-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.skills { margin-top: 2rem; }
.skills h3 { margin-bottom: 1rem; }
.skill-chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { font-weight: 800; font-size: .92rem; padding: .55rem 1.1rem; border-radius: 999px; }
.chip-red { background: var(--red-soft); color: var(--red-deep); }
.chip-blue { background: var(--blue-soft); color: var(--blue-deep); }
.chip-sun { background: var(--yellow-soft); color: #8a5d00; }
.chip-green { background: var(--green-soft); color: #0B7A36; }
.skills-note { margin-top: 1rem; font-size: .95rem; }

.timeline { list-style: none; position: relative; padding-left: .4rem; }
.timeline::before {
  content: ""; position: absolute; left: 13px; top: 14px; bottom: 14px;
  width: 3px; border-radius: 3px;
  background: repeating-linear-gradient(to bottom, var(--line) 0 8px, transparent 8px 16px);
}
.timeline li { display: flex; gap: 1.2rem; padding: .85rem 0; position: relative; }
.tl-dot {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: .25rem;
  background: var(--accent, var(--red)); border: 5px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent, var(--red));
  position: relative; z-index: 1;
}
.timeline strong { font-size: 1.08rem; }
.timeline p { font-size: .96rem; }

/* ============================================================
   Photo gallery (JC item 14)
   ============================================================ */
.gallery { padding: 0 0 5.5rem; }
.gallery-grid { columns: 3; column-gap: 1.1rem; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  position: relative;
  background: var(--paper);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.gallery-ph {
  display: grid; place-items: center;
  font-size: 2.6rem;
  background: linear-gradient(135deg, var(--ph-a, var(--sage-soft)), var(--ph-b, #fff));
}
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(30,41,59,.72));
  color: #fff; font-weight: 700; font-size: .85rem;
  padding: 1.6rem .9rem .7rem;
}
/* heights to create the masonry rhythm */
.gallery-item:nth-child(3n+1) .gallery-ph { height: 240px; }
.gallery-item:nth-child(3n+2) .gallery-ph { height: 300px; }
.gallery-item:nth-child(3n)   .gallery-ph { height: 200px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(30, 41, 59, .82);
  display: none;
  place-items: center;
  padding: 2rem;
}
.lightbox.open { display: grid; }
.lightbox-body {
  background: var(--paper);
  border-radius: var(--radius);
  max-width: 640px; width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.lightbox-body .gallery-ph { height: 380px !important; font-size: 4rem; }
.lightbox-caption { padding: 1rem 1.4rem; font-weight: 700; }
.lightbox-close {
  position: fixed; top: 1.2rem; right: 1.5rem;
  background: #fff; border: none; border-radius: 50%;
  width: 44px; height: 44px; font-size: 1.4rem; font-weight: 800;
  cursor: pointer; color: var(--ink); box-shadow: var(--shadow-lift);
}

/* ============================================================
   Field trips
   ============================================================ */
.trips { padding: 0 0 5.5rem; }
.trips-card {
  background: var(--yellow-soft);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 2.5rem; align-items: center;
}
.trips-list { list-style: none; display: grid; gap: .7rem; }
.trips-list li {
  background: var(--paper); border-radius: 999px;
  padding: .75rem 1.4rem; font-weight: 800; box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.trips-list li:hover { transform: translateX(6px); }

/* ============================================================
   Register (JC items 11-13, 27-28)
   ============================================================ */
.register { padding: 5.5rem 0; background: var(--paper); }

/* Pricing table (JC items 11-12) */
.pricing { margin: 0 auto 3rem; max-width: 860px; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 1rem;
}
.pricing-table-wrap { overflow-x: auto; border-radius: var(--radius); }
.pricing-table th, .pricing-table td { padding: 1rem 1.3rem; text-align: left; border-bottom: 1px solid var(--line); }
.pricing-table thead th { background: var(--ink); color: #fff; font-family: var(--font-body); font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table .col-parent { background: var(--sage-soft); font-weight: 800; color: var(--ink); }
.pricing-table thead .col-parent { background: var(--sage); color: #fff; }

.register-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.register-card {
  background: var(--bg);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem;
}
.register-card h3 { margin-bottom: 1rem; }
.check-list { list-style: none; display: grid; gap: .6rem; }
.check-list li { padding-left: 1.7rem; position: relative; color: var(--ink-soft); font-size: .97rem; }
.check-list li::before { content: "✔"; position: absolute; left: 0; color: var(--sage); font-weight: 800; }
.doc-links { display: grid; gap: .7rem; }
.doc-link {
  display: block; background: var(--paper); border-radius: 14px;
  padding: .85rem 1.1rem; font-weight: 800; text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.doc-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); color: var(--red-deep); }

/* Registration portal iframe (JC item 28) */
.portal-wrap { margin-top: 3rem; }
.portal-frame {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
  padding: .8rem;
}
.portal-frame iframe {
  width: 100%;
  min-height: 800px;
  border: 0;
  border-radius: 6px;
  background: #fff;
}

.supports {
  margin-top: 2.5rem;
  background: var(--green-soft);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.5rem;
}
.supports h3 { margin-bottom: .7rem; }
.supports p + p { margin-top: .8rem; }
.supports-note { font-size: .92rem; }

/* ============================================================
   FAQs
   ============================================================ */
.faqs { padding: 5.5rem 0; }
.faqs-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: start; }
.faqs-head { position: sticky; top: 110px; }

.accordion details {
  background: var(--paper);
  border-radius: 16px; box-shadow: var(--shadow);
  margin-bottom: .9rem; overflow: hidden;
}
.accordion summary {
  list-style: none; cursor: pointer;
  font-weight: 800; font-size: 1.05rem;
  padding: 1.15rem 3.2rem 1.15rem 1.5rem;
  position: relative;
  transition: color .2s;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; position: absolute; right: 1.3rem; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--red-soft); color: var(--red-deep);
  display: grid; place-items: center;
  font-size: 1.3rem; font-weight: 800;
  transition: transform .25s ease, background .25s, color .25s;
}
.accordion details[open] summary { color: var(--red-deep); }
.accordion details[open] summary::after { content: "–"; transform: translateY(-50%) rotate(180deg); background: var(--red); color: #fff; }
.acc-body { padding: 0 1.5rem 1.3rem; }
.acc-body p + p { margin-top: .7rem; }
.acc-body p { font-size: .98rem; }

/* ============================================================
   School Calendar
   ============================================================ */
.calendar { padding: 5.5rem 0; background: var(--paper); }
.calendar-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1rem;
}
.calendar-card iframe {
  width: 100%;
  height: 620px;
  border: 0;
  border-radius: 16px;
  background: #fff;
}

/* ============================================================
   Donations (JC items 19-21)
   ============================================================ */
.donate { padding: 5.5rem 0; }
.donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; margin-inline: auto; }
.donate-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.4rem 2.2rem;
  text-align: center;
  display: flex; flex-direction: column; gap: 1rem; align-items: center;
}
.donate-card .donate-emoji { font-size: 2.4rem; }
.donate-card h3 { font-size: 1.3rem; }
.donate-card p { font-size: .98rem; }
.donate-card .btn { margin-top: auto; }

/* Bottle drop-off modal (JC item 21) */
.modal {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(30,41,59,.72);
  display: none; place-items: center; padding: 1.5rem;
}
.modal.open { display: grid; }
.modal-body {
  background: var(--paper);
  border-radius: var(--radius);
  max-width: 520px; width: 100%;
  padding: 2.2rem;
  box-shadow: var(--shadow-lift);
  position: relative;
}
.modal-body h3 { margin-bottom: 1rem; }
.modal-body ol { padding-left: 1.3rem; display: grid; gap: .6rem; color: var(--ink-soft); }
.modal-close {
  position: absolute; top: .9rem; right: .9rem;
  background: var(--bg); border: 1px solid var(--line); border-radius: 50%;
  width: 38px; height: 38px; font-size: 1.2rem; font-weight: 800;
  cursor: pointer; color: var(--ink);
}

/* ============================================================
   STEAM Sponsorship (JC items 22-23)
   ============================================================ */
.sponsor { background: var(--ink); padding: 5.5rem 0; }
.sponsor .eyebrow { color: var(--amber-soft); background: rgba(255,255,255,.12); }
.sponsor h2 { color: #fff; }
.sponsor .section-sub { color: rgba(255,255,255,.82); }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-bottom: 3rem; }
.tier-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.tier-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.1); border-color: var(--amber); }
.tier-card h3 { color: #fff; margin-bottom: .2rem; }
.tier-level { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--amber-soft); display: block; margin-bottom: .8rem; }
.tier-card ul { list-style: none; display: grid; gap: .5rem; }
.tier-card li { color: rgba(255,255,255,.8); font-size: .95rem; padding-left: 1.4rem; position: relative; }
.tier-card li::before { content: "✔"; position: absolute; left: 0; color: var(--amber); font-weight: 800; }
.logo-grid-label { text-align: center; color: rgba(255,255,255,.7); font-weight: 800; font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.2rem; }
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 820px; margin-inline: auto; }
.logo-slot {
  background: rgba(255,255,255,.08);
  border: 1px dashed rgba(255,255,255,.25);
  border-radius: 14px;
  min-height: 76px;
  display: grid; place-items: center;
  color: rgba(255,255,255,.55);
  font-weight: 700; font-size: .85rem;
}

/* ============================================================
   Contact
   ============================================================ */
.contact { padding: 5.5rem 0; background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: stretch; }
.contact-list { list-style: none; display: grid; gap: 1.2rem; margin: 2rem 0; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: var(--bg); box-shadow: var(--shadow);
  display: grid; place-items: center; font-size: 1.3rem;
}
.contact-list strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.contact-list a, .contact-list div > span { font-weight: 800; font-size: 1.05rem; color: var(--ink); text-decoration: none; }
.contact-list a:hover { color: var(--red-deep); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); border: 1px solid var(--line); min-height: 420px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; min-height: 420px; }

/* ============================================================
   Instagram grid (JC item 15)
   ============================================================ */
.insta { padding: 4.5rem 0; }
.insta-head { text-align: center; margin-bottom: 1.8rem; }
.insta-head a { color: var(--ink); text-decoration: none; font-weight: 800; }
.insta-head a:hover { color: var(--amber-deep); }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.insta-tile {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  display: grid; place-items: center;
  font-size: 2.4rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--ph-a, var(--sage-soft)), var(--ph-b, var(--amber-soft)));
  transition: transform .2s ease, box-shadow .2s ease;
}
.insta-tile:hover { transform: scale(1.03); box-shadow: var(--shadow-lift); }

/* ============================================================
   Team page (JC items 17-18)
   ============================================================ */
.page-hero { padding: 4rem 0 3rem; text-align: center; }
.staff { padding: 0 0 5rem; }
.staff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.staff-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.2rem 2rem;
  display: flex; gap: 1.4rem; align-items: flex-start;
}
.staff-photo {
  width: 84px; height: 84px; border-radius: 50%; flex-shrink: 0;
  background: var(--av-bg, var(--red));
  color: var(--av-fg, #fff);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.6rem;
}
.staff-card h3 { margin-bottom: .1rem; }
.staff-role { display: block; font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--amber-deep); margin-bottom: .6rem; }
.staff-card p { font-size: .96rem; }

.board { background: var(--board-bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 4.5rem 0; }
/* 6 roles → 3 columns keeps the grid balanced (Sweep 2 item 3) */
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 760px; margin-inline: auto; }
.board-item { text-align: center; }
.board-item strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.board-item span { font-weight: 400; color: var(--ink); }

/* ============================================================
   Google Reviews carousel (Sweep 2 item 5)
   ============================================================ */
.reviews { background: #ECFDF5; padding: 4rem 0; }
.reviews-head { color: var(--ink); font-weight: 700; text-align: center; margin-bottom: 2.2rem; }
.review-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 2.6rem 1.8rem 1.6rem;
  position: relative;
  height: auto;
}
.review-card::before {
  content: "\201C";
  position: absolute; top: .2rem; left: 1rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(217, 119, 6, .2);
}
.review-text { color: var(--ink); font-style: italic; font-size: .98rem; }
.review-meta { margin-top: 1rem; font-weight: 700; color: var(--ink); font-size: .9rem; display: flex; align-items: center; gap: .5rem; }
.review-stars { color: var(--amber); letter-spacing: .1em; }
.reviews-swiper { padding-bottom: 2.4rem; }
.reviews-swiper .swiper-pagination-bullet-active { background: var(--amber); }

/* ============================================================
   General Inquiries form (Sweep 2 item 1)
   ============================================================ */
.inquiry { padding: 4.5rem 0; }
.inquiry-card {
  background: #FAFAF9;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2.2rem 2rem;
}
.inquiry-card h2 { color: #1E293B; font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 1.4rem; }
.inquiry-card label { display: block; text-align: left; color: #1E293B; font-size: 0.875rem; font-weight: 600; margin: 1rem 0 .35rem; }
.inquiry-card input,
.inquiry-card select,
.inquiry-card textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 4px;
  padding: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}
.inquiry-card input:focus,
.inquiry-card select:focus,
.inquiry-card textarea:focus {
  outline: none;
  border-color: #D97706;
  box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.2);
}
.inquiry-submit {
  width: 100%;
  margin-top: 1.4rem;
  background: #D97706;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s ease;
}
.inquiry-submit:hover { background: #B45309; }
.inquiry-success {
  color: #15803D;
  background: #DCFCE7;
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  font-weight: 700;
  text-align: center;
}

/* ============================================================
   Footer (JC item 16)
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.8); padding: 3.5rem 0 2rem; }
.footer .brand-text { color: #fff; }
.footer .brand-text em { color: rgba(255,255,255,.6); }
.footer-logo { border-radius: 8px; margin-bottom: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr .9fr; gap: 3rem; padding-bottom: 2.5rem; }
.footer-brand p { color: rgba(255,255,255,.65); font-size: .95rem; margin-top: .9rem; max-width: 30rem; }
.footer-nav { display: grid; gap: .55rem; align-content: start; }
.footer-nav a, .footer-contact a { color: rgba(255,255,255,.85); text-decoration: none; font-weight: 700; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--yellow); }
.footer-contact { display: grid; gap: .55rem; align-content: start; font-size: .95rem; }
.footer-contact span { color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: .7rem; margin-top: 1.1rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  display: grid; place-items: center;
  transition: border-color .2s ease, background .2s ease;
}
.footer-social a:hover { border-color: var(--amber); background: rgba(255,255,255,.08); }
.footer-social svg { width: 18px; height: 18px; fill: rgba(255,255,255,.85); }
.footer-base {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: rgba(255,255,255,.55);
}

/* ============================================================
   Sticky mobile CTA (JC item 24)
   ============================================================ */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 50;
  background: var(--ink); color: #fff;
  text-align: center; text-decoration: none;
  font-weight: 800; font-size: 1.05rem;
  padding: 1rem;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .hero-grid, .steam-grid, .about-grid, .day-grid, .contact-grid, .faqs-grid { grid-template-columns: 1fr; gap: 2.8rem; }
  .faqs-head { position: static; }
  .steam-orbit { position: relative; top: 0; }
  .program-grid, .register-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .trips-card { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 3.5rem 0 4.5rem; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column; align-items: flex-start;
    gap: .2rem;
    padding: 1rem 4%;
    box-shadow: var(--shadow-lift);
    display: none;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a:not(.btn) { display: block; padding: .7rem 0; font-size: 1.1rem; }
  .nav-links .btn { margin-top: .6rem; }
  .nav-links a.nav-stem { display: inline-block; width: auto; }
  .nav-stem .dot { right: -14px; top: 12px; }

  .program-grid, .register-grid, .values-grid, .donate-grid, .insta-grid { grid-template-columns: 1fr; }
  .steam-cards { grid-template-columns: 1fr; }
  .steam-card:last-child:nth-child(odd) { grid-column: auto; }
  .gallery-grid { columns: 2; }
  .hero-chip-1 { left: 0; }
  .hero-chip-2 { right: 0; }
  .trips-card { padding: 2rem 1.5rem; }
  .supports { padding: 1.8rem 1.5rem; }
  .schedule-band { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .calendar-card iframe { height: 520px; }
  .portal-frame iframe { min-height: 720px; }
  .orbit-node { --orbit-r: 130px; }

  /* Sticky Book a Tour bar, mobile only (JC item 24) */
  .mobile-cta { display: block; }
  body { padding-bottom: 58px; }
}
