/* ============================================================
   NEXT STOP: HIGH SCHOOL — nextstophighschool.com
   Token system modeled on the Big Night / Pop Up Grocer approach:
   color + type + spacing variables, one committed palette.
   ============================================================ */

:root {
  /* color — from the NSHS logo sheet */
  --cr-navy: #102B52;
  --cr-navy-deep: #0B1E3D;
  --cr-cream: #F7F3E8;
  --cr-cream-2: #EFE8D6;
  --cr-coral: #F26A5B;
  --cr-coral-deep: #D94E3F;
  --cr-yellow: #F2C94C;
  --cr-blue: #2A46E8; /* electric blue — tiny accents only, never backgrounds */
  --cr-line: rgba(16, 43, 82, 0.22);

  /* type */
  --f-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --t-h0: clamp(2.75rem, 6.5vw, 5.25rem);
  --t-h1: clamp(2.25rem, 4.5vw, 3.5rem);
  --t-h2: clamp(1.75rem, 3.2vw, 2.5rem);
  --t-h3: 1.375rem;
  --t-body: 1.0625rem;
  --t-small: 0.9375rem;
  --t-label: 0.8125rem;

  /* space */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 40px;
  --s-5: 64px;
  --s-6: 104px;

  --w-max: 1200px;
  --w-text: 720px;

  --radius-card: 22px;
  --border: 2px solid var(--cr-navy);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
[id] { scroll-margin-top: 110px; }
body {
  margin: 0;
  background: var(--cr-cream);
  color: var(--cr-navy);
  font-family: var(--f-body);
  font-size: var(--t-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0 0 var(--s-2); line-height: 1.12; }
p { margin: 0 0 var(--s-2); }
a { color: inherit; }
::selection { background: var(--cr-coral); color: var(--cr-cream); }

:focus-visible {
  outline: 3px solid var(--cr-coral);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cr-navy);
  color: var(--cr-cream);
  padding: 10px 18px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- type helpers ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.display em {
  font-style: italic;
  font-weight: 700;
  color: var(--cr-coral);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.eyebrow::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cr-coral);
  flex: none;
}
.eyebrow--yellow::before { background: var(--cr-yellow); }
.lede { font-size: 1.1875rem; line-height: 1.6; }

/* ---------- ticker ---------- */
.ticker {
  background: var(--cr-navy);
  color: var(--cr-cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ticker__track {
  display: inline-flex;
  animation: ticker-roll 36s linear infinite;
}
.ticker__item { display: inline-flex; align-items: center; }
.ticker__item::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cr-yellow);
  margin: 0 26px;
}
.ticker__item:nth-child(even)::after { background: var(--cr-coral); }
@keyframes ticker-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cr-cream);
  border-bottom: var(--border);
}
.site-header__inner {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 14px var(--s-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex: none;
}
.brand__name {
  font-family: 'Shrikhand', var(--f-display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.brand__name .colon { color: var(--cr-coral); }
.brand__name .nows { white-space: nowrap; }
.footer-wordmark {
  font-family: 'Shrikhand', var(--f-display) !important;
  font-weight: 400 !important;
  font-size: 1.5rem !important;
  letter-spacing: 0.01em;
}

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: var(--t-small);
  padding: 9px 14px;
  border-radius: 999px;
  border: 2px solid transparent;
}
.site-nav a:hover { border-color: var(--cr-navy); }
.site-nav a[aria-current="page"] {
  border-color: var(--cr-navy);
  background: var(--cr-cream-2);
}
.site-nav .btn { margin-left: 10px; }

.nav-toggle {
  display: none;
  background: none;
  border: var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  font: 700 var(--t-small) var(--f-body);
  color: var(--cr-navy);
  cursor: pointer;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid var(--cr-navy);
  font: 700 var(--t-small) var(--f-body);
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s, color 0.18s, transform 0.18s;
}
.btn .arrow { transition: transform 0.18s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--cr-coral); color: var(--cr-navy); border-color: var(--cr-navy); }
.btn--primary:hover { background: var(--cr-coral-deep); }
.btn--ghost { background: transparent; color: var(--cr-navy); }
.btn--ghost:hover { background: var(--cr-navy); color: var(--cr-cream); }
.btn--cream { background: var(--cr-cream); color: var(--cr-navy); }
.btn--cream:hover { background: var(--cr-yellow); }
.btn--yellow { background: var(--cr-yellow); color: var(--cr-navy); }
.btn--yellow:hover { background: var(--cr-cream); }

/* ---------- layout ---------- */
.wrap { max-width: var(--w-max); margin: 0 auto; padding: 0 var(--s-3); }
.section { padding: var(--s-6) 0; }
.section--tint { background: var(--cr-cream-2); }
.section--navy { background: var(--cr-navy); color: var(--cr-cream); }

.section-head { max-width: 760px; margin-bottom: var(--s-5); }
.section-head h2 { font-size: var(--t-h1); }

/* subway-tile divider (the checkered ribbon, recolored) */
.tile-band {
  height: 16px;
  background-image: linear-gradient(90deg, var(--cr-navy) 50%, transparent 50%);
  background-size: 32px 16px;
  background-color: var(--cr-cream);
}
.tile-band--coral { background-image: linear-gradient(90deg, var(--cr-coral) 50%, transparent 50%); }

/* ---------- photo split hero (home) ---------- */
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  border-bottom: var(--border);
}
.hero-split__copy {
  padding: var(--s-6) var(--s-4) var(--s-6) max(var(--s-3), calc((100vw - var(--w-max)) / 2 + var(--s-3)));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-split__copy h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 1.03;
  margin-bottom: var(--s-3);
}
.hero-split__copy .lede { max-width: 30em; }
.hero-split__media { position: relative; min-height: 480px; }
.hero-split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caption-sticker {
  position: absolute;
  left: 28px;
  bottom: 36px;
  transform: rotate(-3deg);
  background: var(--cr-yellow);
  color: var(--cr-navy);
  border: 2px solid var(--cr-navy);
  padding: 12px 22px;
  font: 700 1rem/1.3 var(--f-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--cr-navy);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 2px solid var(--cr-line);
  font-size: var(--t-small);
  font-weight: 500;
}
.chips span { display: inline-flex; align-items: center; gap: 8px; }
.chips span::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cr-coral);
  flex: none;
}

/* ---------- editorial problem statement ---------- */
.editorial-statement h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: var(--t-h0);
  line-height: 1.05;
  max-width: 15em;
  margin-bottom: var(--s-3);
}
.editorial-statement h2 em {
  font-style: italic;
  font-weight: 700;
  color: var(--cr-blue);
}
.editorial-statement p { max-width: 42em; font-size: 1.1875rem; }

/* ---------- navy photo band ---------- */
.band-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s-5);
  align-items: center;
}
.band-split img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-card);
}
.band-split .band-logo {
  width: min(380px, 70%);
  height: auto;
  min-height: 0;
  margin: 0 auto;
  border-radius: 0;
}
.band-split h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: var(--t-h1);
  margin-bottom: var(--s-2);
}
.band-split .sub {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.35;
  color: var(--cr-yellow);
  margin-bottom: var(--s-3);
}
.band-split p { color: rgba(247, 243, 232, 0.85); max-width: 34em; }

/* ---------- pull quote banner ---------- */
.pullquote {
  background: var(--cr-coral);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: var(--s-4);
  text-align: center;
  margin-top: var(--s-5);
}
.pullquote p {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--t-h2);
  line-height: 1.25;
  margin: 0 auto;
  max-width: 24em;
}

/* ---------- departments grid ---------- */
.depts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--border);
  border-left: var(--border);
}
.dept {
  border-right: var(--border);
  border-bottom: var(--border);
  padding: var(--s-3);
  background: var(--cr-cream);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
}
.dept:hover { background: var(--cr-cream-2); }
.dept .dept__tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cr-coral-deep);
}
.dept h3 { font-family: var(--f-display); font-size: var(--t-h3); margin: 0; }
.dept p { font-size: var(--t-small); margin: 0; flex: 1; }

/* ---------- full-width photo breather ---------- */
.photo-break { position: relative; }
.photo-break img {
  width: 100%;
  height: min(64vh, 560px);
  object-fit: cover;
}
.photo-break figcaption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  background: var(--cr-cream);
  border: 2px solid var(--cr-navy);
  padding: 16px 30px;
  font: 700 1.15rem/1.3 var(--f-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--cr-navy);
  white-space: nowrap;
}

/* ---------- split CTA ---------- */
.cta-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--cr-coral);
  color: var(--cr-navy);
}
.cta-split__copy {
  padding: var(--s-6) var(--s-4) var(--s-6) max(var(--s-3), calc((100vw - var(--w-max)) / 2 + var(--s-3)));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.cta-split .eyebrow::before { background: var(--cr-navy); }
.cta-split__copy h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: var(--t-h1);
  margin-bottom: var(--s-2);
}
.cta-split__copy p { max-width: 30em; font-weight: 500; margin-bottom: var(--s-4); }
.cta-split__media { position: relative; min-height: 380px; }
.cta-split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- hero (interior pages) ---------- */
.hero { padding: var(--s-5) 0 var(--s-6); overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: var(--s-5);
  align-items: center;
}
.hero h1 {
  font-size: var(--t-h0);
  line-height: 1.02;
  margin-bottom: var(--s-3);
}
.hero .lede { max-width: 34em; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--s-4); }
.hero__meta {
  margin-top: var(--s-4);
  font-size: var(--t-small);
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta span::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cr-yellow);
  flex: none;
}

.hero__art { position: relative; justify-self: center; }
.hero__medallion {
  width: min(400px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}
.sticker {
  position: absolute;
  left: -8%;
  bottom: 2%;
  transform: rotate(-8deg);
  background: var(--cr-navy);
  color: var(--cr-cream);
  border-radius: 50%;
  width: 190px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 22px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 10px 22px rgba(16, 43, 82, 0.22);
}
.sticker em { font-family: var(--f-display); color: var(--cr-yellow); }

/* ---------- navy statement band ---------- */
.statement { text-align: center; }
.statement .wrap { max-width: 900px; }
.statement h2 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 700;
  font-size: var(--t-h1);
  letter-spacing: 0.01em;
  margin-bottom: var(--s-3);
}
.statement h2 mark {
  background: none;
  color: var(--cr-yellow);
}
.statement p {
  color: rgba(247, 243, 232, 0.85);
  max-width: 46em;
  margin: 0 auto;
}

/* ---------- route line / service stops ---------- */
.stops {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.stops::before {
  content: '';
  position: absolute;
  top: 31px;
  left: 4%;
  right: 4%;
  height: 6px;
  border-radius: 3px;
  background: var(--cr-coral);
}
.stop { position: relative; display: flex; flex-direction: column; }
.stop__bullet {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 800 1.5rem var(--f-display);
  margin: 0 0 var(--s-3) 24px;
  box-shadow: 0 0 0 7px var(--cr-cream);
}
.section--tint .stop__bullet { box-shadow: 0 0 0 7px var(--cr-cream-2); }
.stop__bullet--navy { background: var(--cr-navy); color: var(--cr-cream); }
.stop__bullet--coral { background: var(--cr-coral); color: var(--cr-cream); }
.stop__bullet--yellow { background: var(--cr-yellow); color: var(--cr-navy); }

.stop__card {
  flex: 1;
  border: var(--border);
  border-radius: var(--radius-card);
  background: var(--cr-cream);
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}
.stop__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 -4px var(--cr-navy);
}
.stop__card h3 { font-family: var(--f-display); font-size: var(--t-h3); margin-bottom: 4px; }
.stop__price {
  font-weight: 700;
  font-size: var(--t-small);
  color: var(--cr-coral-deep);
  margin-bottom: 10px;
}
.stop__card p { font-size: var(--t-small); flex: 1; }
.stop__link {
  font-weight: 700;
  font-size: var(--t-small);
  text-decoration: none;
  border-bottom: 2px solid var(--cr-coral);
  align-self: flex-start;
  padding-bottom: 1px;
}
.stop__link:hover { color: var(--cr-coral-deep); }

/* tier card color variants (must follow .stop__card base rules) */
.stop__card--navy { background: var(--cr-navy); color: var(--cr-cream); }
.stop__card--navy .stop__price { color: var(--cr-yellow); }
.stop__card--navy .stop__link { color: var(--cr-cream); border-bottom-color: var(--cr-yellow); }
.stop__card--navy .stop__link:hover { color: var(--cr-yellow); }
.stop__card--yellow { background: var(--cr-yellow); }
.stop__card--yellow .stop__price { color: var(--cr-navy); }
.stop__card--coral { background: var(--cr-coral); }
.stop__card--coral .stop__price { color: var(--cr-navy); }

/* ---------- steps (numbered — the journey is a real sequence) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4) var(--s-3);
  counter-reset: step;
}
.step { counter-increment: step; }
.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 800 1.25rem var(--f-display);
  margin-bottom: var(--s-2);
  background: var(--cr-cream);
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.125rem; font-family: var(--f-body); font-weight: 700; }
.step p { font-size: var(--t-small); margin: 0; }

/* ---------- definition rows (differentiators) ---------- */
.defs { border-top: var(--border); }
.def {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--s-2) var(--s-4);
  padding: var(--s-3) 0;
  border-bottom: var(--border);
}
.def dt {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: var(--t-h3);
  line-height: 1.2;
}
.def dd { margin: 0; font-size: var(--t-body); }

/* ---------- resource / article cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.card {
  border: var(--border);
  border-radius: var(--radius-card);
  background: var(--cr-cream);
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 -4px var(--cr-navy);
}
.card__tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--cr-navy);
  border-radius: 999px;
  padding: 4px 12px;
}
.card__tag--soon { border-color: var(--cr-coral); color: var(--cr-coral-deep); }
.card h3 { font-family: var(--f-display); font-size: var(--t-h3); margin: 0; }
.card p { font-size: var(--t-small); margin: 0; flex: 1; }

/* ---------- glossary tokens ---------- */
.glossary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
.term {
  border: var(--border);
  border-radius: var(--radius-card);
  padding: var(--s-3);
  background: var(--cr-cream);
}
.term dt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: var(--t-h3);
  margin-bottom: 8px;
}
.term dt::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cr-yellow);
  flex: none;
}
.term:nth-child(even) dt::before { background: var(--cr-coral); }
.term dd { margin: 0; font-size: var(--t-small); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--cr-coral);
  color: var(--cr-navy);
  text-align: center;
  padding: var(--s-6) 0;
}
.cta-band h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: var(--t-h1);
  max-width: 18em;
  margin: 0 auto var(--s-2);
}
.cta-band p { max-width: 38em; margin: 0 auto var(--s-4); font-weight: 500; }
.cta-band .btn { border-color: var(--cr-navy); }

/* ---------- tier detail (work with me) ---------- */
.tier {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--s-4);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: var(--s-4);
  background: var(--cr-cream);
  margin-bottom: var(--s-4);
}
.tier__head { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.tier__head .stop__bullet { margin: 0; box-shadow: none; }
.tier__head h3 { font-family: var(--f-display); font-size: var(--t-h2); margin: 0; }
.tier__price {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--cr-coral-deep);
}
.tier__fit {
  font-size: var(--t-small);
  font-weight: 500;
  background: var(--cr-cream-2);
  border-radius: 12px;
  padding: 12px 16px;
}
.tier__body ul { margin: 0 0 var(--s-3); padding: 0; list-style: none; }
.tier__body li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  font-size: var(--t-small);
}
.tier__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cr-coral);
}
.tier--flag { position: relative; }
.tier__limited {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--cr-yellow);
  border: var(--border);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- vertical route (how it works) ---------- */
.route {
  position: relative;
  max-width: var(--w-text);
  margin: 0 auto;
  padding-left: 44px;
}
.route::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 10px;
  bottom: 10px;
  width: 6px;
  border-radius: 3px;
  background: var(--cr-coral);
}
.route__stop { position: relative; padding-bottom: var(--s-4); }
.route__stop:last-child { padding-bottom: 0; }
.route__stop::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cr-navy);
  border: 4px solid var(--cr-cream);
  box-shadow: 0 0 0 2px var(--cr-navy);
}
.route__stop--terminal::before { background: var(--cr-yellow); }
.route__stop h3 { font-family: var(--f-display); font-size: var(--t-h3); }
.route__stop p { font-size: var(--t-body); margin: 0; max-width: 38em; }
.route__stop .note {
  margin-top: 10px;
  font-size: var(--t-small);
  background: var(--cr-cream-2);
  border-radius: 12px;
  padding: 12px 16px;
  display: inline-block;
}

/* ---------- FAQ ---------- */
.faq { max-width: var(--w-text); margin: 0 auto; }
.faq details {
  border: var(--border);
  border-radius: 16px;
  background: var(--cr-cream);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-2);
  padding: 18px 22px;
  font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font: 700 1.5rem var(--f-display);
  color: var(--cr-coral);
  flex: none;
  transition: transform 0.18s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 22px 20px; font-size: var(--t-small); }

/* ---------- prose pages ---------- */
.prose { max-width: var(--w-text); }
.prose h2 { font-family: var(--f-display); font-size: var(--t-h2); margin-top: var(--s-4); }

/* about page portrait card */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: var(--s-5);
  align-items: start;
}
.about-aside {
  border: var(--border);
  border-radius: var(--radius-card);
  padding: var(--s-3);
  background: var(--cr-cream-2);
  text-align: center;
}
.about-aside img { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto var(--s-2); }
.about-aside p { font-size: var(--t-small); margin: 0; }
.about-aside .display { font-size: 1.2rem; display: block; margin-bottom: 6px; }

/* ---------- book page ---------- */
.book-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
.book-card {
  border: var(--border);
  border-radius: var(--radius-card);
  background: var(--cr-cream);
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.book-card .stop__bullet { margin: 0; box-shadow: none; width: 52px; height: 52px; font-size: 1.25rem; }
.book-card h3 { font-family: var(--f-display); font-size: var(--t-h3); margin: 0; }
.book-card p { font-size: var(--t-small); flex: 1; margin: 0; }
.book-card .btn { align-self: flex-start; }

.intake-list { margin: 0; padding: 0; list-style: none; counter-reset: q; }
.intake-list li {
  counter-increment: q;
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 2px solid var(--cr-line);
  font-size: var(--t-body);
}
.intake-list li::before {
  content: counter(q);
  font: 800 1rem var(--f-display);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cr-navy);
  color: var(--cr-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transform: translateY(4px);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--cr-navy);
  color: var(--cr-cream);
  padding: var(--s-5) 0 var(--s-3);
}
.site-footer a { color: var(--cr-cream); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) repeat(3, minmax(0, 2.3fr));
  gap: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid rgba(247, 243, 232, 0.25);
}
.footer-brand .display { font-size: 1.4rem; }
.footer-brand p { color: rgba(247, 243, 232, 0.75); font-size: var(--t-small); max-width: 26em; }
.site-footer h4 {
  font-size: var(--t-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cr-yellow);
  margin-bottom: var(--s-2);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; font-size: var(--t-small); }
.site-footer ul a { text-decoration: none; }
.site-footer ul a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-2);
  padding-top: var(--s-3);
  font-size: 0.8125rem;
  color: rgba(247, 243, 232, 0.65);
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .stop__card { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stops { grid-template-columns: repeat(2, 1fr); gap: var(--s-4) var(--s-3); }
  .stops::before { display: none; }
  .stop__bullet { box-shadow: none !important; margin-left: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .band-split { grid-template-columns: 1fr; gap: var(--s-3); }
  .depts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split__media { min-height: 320px; order: -1; }
  .hero-split__copy { padding: var(--s-5) var(--s-3); }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split__copy { padding: var(--s-5) var(--s-3); }
  .cta-split__media { min-height: 300px; }
  .depts { grid-template-columns: 1fr; }
  .photo-break figcaption { white-space: normal; text-align: center; width: max-content; max-width: 86vw; font-size: 0.95rem; padding: 12px 20px; }
  .caption-sticker { font-size: 0.85rem; padding: 10px 16px; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cr-cream);
    border-bottom: var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: var(--s-2) var(--s-3) var(--s-3);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 16px; font-size: 1.05rem; }
  .site-nav .btn { margin: 8px 0 0; justify-content: center; }
  .nav-toggle { display: block; }
  .brand img { width: 42px; height: 42px; }
  .brand__name { font-size: 0.98rem; }

  .hero__grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .hero__art { order: -1; }
  .hero__medallion { width: min(280px, 70vw); }
  .sticker { width: 165px; height: 104px; font-size: 0.72rem; left: -4%; }

  .tier { grid-template-columns: 1fr; gap: var(--s-3); padding: var(--s-3); }
  .about-grid { grid-template-columns: 1fr; }
  .def { grid-template-columns: 1fr; gap: 6px; }
  .glossary { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section { padding: var(--s-5) 0; }
  .stops, .steps, .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}
