/* ============================================================
   Growing Mindfully · VIP / state-employee landing page styles
   ───────────────────────────────────────────────────────────
   Built on top of the brand tokens defined in article.css.
   No new colors.uses --paper, --ink, --teal-deep, etc.
   "Two Doors" composition: a typographic-architectural treatment
   of building → walk → school. Editorial, generous whitespace,
   Newsreader serif at display scale, Caveat for handwritten notes.
   ============================================================ */

/* Page shell · matches .article-shell top spacing for fixed nav+banner */
.vip-shell {
  padding-top: clamp(7rem, 11vw, 9rem);
  background: var(--paper);
  color: var(--ink);
}
@media (max-width: 720px) {
  /* Banner (38px) + nav (≈92px with 50px mark + padding) needs more headspace
     before the dateline kicks in. */
  .vip-shell { padding-top: 10rem; }
}

/* ─────────────────────────  TWO DOORS HERO  ───────────────────────── */

.two-doors-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.dateline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(31,42,46,0.12);
  padding-bottom: 0.85rem;
  margin-bottom: 2rem;
}
.dateline .vol {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.dateline .vol::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal-deep);
}
.dateline .vol strong {
  color: var(--teal-deep);
  font-weight: 700;
  letter-spacing: 0.18em;
}
.dateline .dateline-r {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.95rem;
  color: var(--ink-mute);
}

.doors {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.door {
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  animation: doorIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.door:nth-child(1) { animation-delay: 0.1s; }
.door:nth-child(3) { animation-delay: 0.45s; }

@keyframes doorIn {
  to { opacity: 1; transform: translateY(0); }
}

.door .door-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}
.door .door-number {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "wght" 250;
  font-weight: 250;
  font-size: clamp(4.5rem, 11vw, 9rem);
  line-height: 0.92;
  color: var(--teal-deep);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 0.5rem;
  font-feature-settings: "lnum";
}
.door.door-school .door-number { color: var(--ink); }
.door .door-street {
  font-family: var(--serif);
  font-variation-settings: "opsz" 18, "wght" 400;
  font-style: italic;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.door .door-name {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

/* The walking arc */
.door-arc {
  position: relative;
  width: clamp(7.5rem, 13vw, 13rem);
  height: clamp(7rem, 10vw, 9rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.door-arc svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.door-arc .arc-path {
  fill: none;
  stroke: var(--teal-deep);
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0.85;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawArc 1.2s 0.7s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
.door-arc .arc-head {
  fill: var(--teal-deep);
  opacity: 0;
  animation: fadeIn 0.3s 1.85s ease-out forwards;
}
.door-arc .arc-time {
  position: absolute;
  top: -0.3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--hand);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  color: var(--teal-deep);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  animation: fadeIn 0.5s 1.2s ease-out forwards;
}
.door-arc .arc-foot {
  position: absolute;
  bottom: -0.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--hand);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-mute);
  font-style: italic;
  white-space: nowrap;
  opacity: 0;
  animation: fadeIn 0.5s 1.6s ease-out forwards;
}

@keyframes drawArc { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }

@media (max-width: 760px) {
  .doors { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.5rem 0; }
  /* Stack doors vertically; arc sits between them as a horizontal element with
     captions stacked above and below.uses normal flow, no rotation. */
  .door-arc {
    transform: none;
    width: 100%;
    max-width: 18rem;
    height: auto;
    margin: 0.6rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
  }
  .door-arc svg { height: 2.4rem; width: 100%; }
  .door-arc .arc-time,
  .door-arc .arc-foot {
    position: static;
    transform: none;
    left: auto; right: auto; top: auto; bottom: auto;
    text-align: center;
    line-height: 1.1;
  }
  .door-arc .arc-time { font-size: 1.5rem; }
  .door-arc .arc-foot { font-size: 0.95rem; }
}

/* ─────────────────────────  HEADLINE BLOCK  ───────────────────────── */

.headline-block {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  text-align: center;
  border-top: 1px solid rgba(31,42,46,0.08);
}
.headline-block .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-deep);
  background: rgba(95,174,182,0.14);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}
.headline-block h1 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 72, "wght" 320;
  font-weight: 320;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--ink);
  margin: 0 auto 1.5rem;
  letter-spacing: -0.022em;
  max-width: 22ch;
}
.headline-block h1 em {
  font-style: italic;
  color: var(--teal-deep);
  font-variation-settings: "opsz" 72, "wght" 320;
}
.headline-block .lede {
  font-family: var(--serif);
  font-variation-settings: "opsz" 24, "wght" 380;
  font-weight: 380;
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto 2rem;
}
.headline-block .actions {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-pill, .btn-pill-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, transform 0.25s, border-color 0.25s;
}
.btn-pill {
  background: var(--ink);
  color: var(--paper);
}
.btn-pill:hover { background: var(--teal-deep); color: var(--paper); transform: translateY(-1px); }
.btn-pill::after { content: "→"; transition: transform 0.25s; }
.btn-pill:hover::after { transform: translateX(3px); }
.btn-pill-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(31,42,46,0.2);
}
.btn-pill-ghost:hover { border-color: var(--ink); color: var(--ink); }

/* ─────────────────────────  EDITORIAL BODY  ───────────────────────── */

.editorial {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.5rem) var(--gutter);
  font-family: var(--sans);
  color: var(--ink);
}
.editorial .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 1rem;
}
.editorial .section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal-deep);
}
.editorial h2 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 48, "wght" 380;
  font-weight: 380;
  font-size: clamp(1.65rem, 3.2vw, 2.3rem);
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 1.4rem;
  letter-spacing: -0.018em;
}
.editorial h2 em {
  font-style: italic;
  color: var(--teal-deep);
}
.editorial p {
  font-size: 1.13rem;
  line-height: 1.78;
  margin: 0 0 1.3rem;
  color: var(--ink);
}
.editorial p strong { color: var(--ink); font-weight: 600; }
.editorial p em { font-family: var(--serif); font-style: italic; }
.editorial p a {
  color: var(--teal-deep);
  border-bottom: 1px solid rgba(61,129,137,0.3);
  transition: border-color 0.25s, color 0.25s;
}
.editorial p a:hover { color: var(--ink); border-bottom-color: var(--ink); }

.editorial + .editorial { padding-top: 0; }

/* Pull-quote break-out */
.pull {
  font-family: var(--serif);
  font-variation-settings: "opsz" 36, "wght" 360;
  font-style: italic;
  font-weight: 360;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.35;
  color: var(--ink);
  text-align: center;
  margin: clamp(2.5rem, 5vw, 3.5rem) calc(-1 * var(--gutter));
  padding: clamp(1.5rem, 3vw, 2.2rem) var(--gutter);
  border-top: 1px solid rgba(31,42,46,0.12);
  border-bottom: 1px solid rgba(31,42,46,0.12);
  position: relative;
}
.pull::before {
  content: "❋";
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  padding: 0 0.7rem;
  color: var(--teal-deep);
  font-size: 0.85rem;
}

/* ─────────────────────────  THE LEDGER (rates)  ───────────────────────── */

.ledger {
  max-width: 760px;
  margin: 1rem auto 0;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 3.5vw, 3rem);
  background: #fcf9ee;
  border: 1px solid rgba(31,42,46,0.1);
  border-radius: 0;
  position: relative;
  font-family: var(--sans);
}
.ledger .ledger-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.85rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ledger .ledger-title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 30, "wght" 460;
  font-weight: 460;
  font-size: 1.4rem;
  color: var(--ink);
}
.ledger .ledger-meta {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
}
.ledger-rates-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 0 0 0.85rem 0;
  border-bottom: 1px solid rgba(31,42,46,0.06);
  margin-bottom: 0.4rem;
  align-items: end;
}
.ledger-col-head {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: right;
  line-height: 1.2;
}
.ledger-col-head small {
  display: block;
  font-size: 0.66rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  font-family: var(--serif);
  font-style: italic;
  margin-top: 0.25rem;
}
.ledger-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: end;
  padding: 1rem 0;
  border-bottom: 1px dotted rgba(31,42,46,0.18);
  gap: 1rem;
}
.ledger-row:last-of-type { border-bottom: 2px solid var(--ink); }
.ledger-row .label {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.ledger-row .label small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-mute);
  font-style: italic;
  font-family: var(--serif);
}
.ledger-row .price {
  font-family: var(--serif);
  font-variation-settings: "opsz" 36, "wght" 350;
  font-weight: 350;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  color: var(--teal-deep);
  font-feature-settings: "lnum";
  letter-spacing: -0.01em;
  line-height: 1;
  text-align: right;
}
.ledger-row .price small {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.62rem;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 0.2rem;
}
@media (max-width: 760px) {
  .ledger-rates-header { display: none; }
  .ledger-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.2rem 0;
  }
  .ledger-row .label { margin-bottom: 0.4rem; }
  .ledger-row .price {
    text-align: right;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.35rem;
    font-size: 1.55rem;
    border-top: 1px dashed rgba(31,42,46,0.08);
    padding-top: 0.55rem;
  }
  .ledger-row .price::before {
    content: attr(data-schedule);
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
    align-self: center;
    margin-right: auto;
  }
  .ledger-row .price small {
    margin-left: 0;
  }
}

/* ───────── MOBILE NAV CTA (dual desktop/mobile pattern, scoped to VIP/state-employee pages) ─────────
   Mirrors the homepage pattern: long "Apply for our Waitlist" pill on desktop,
   compact "Now enrolling / Infants welcome" pill on mobile to avoid overlapping the logo. */
nav.top .cta-mobile { display: none; }
@media (max-width: 880px) {
  nav.top .cta-desktop { display: none; }
  nav.top .cta-mobile {
    display: inline-flex; align-items: center; gap: 0.7rem;
    background: rgba(31, 42, 46, 0.92);
    border: 1px solid rgba(201, 168, 106, 0.55);
    border-radius: 14px;
    padding: 0.65rem 0.95rem 0.65rem 0.85rem;
    color: var(--paper);
    box-shadow: 0 4px 14px rgba(31,42,46,0.18);
    text-decoration: none;
  }
  nav.top .cta-mobile::after { content: "→"; opacity: 0.85; font-size: 1rem; }
  nav.top .cta-mobile .cta-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(201,168,106,0.7);
    animation: ctaDotPulseVip 2.4s ease-out infinite;
  }
  nav.top .cta-mobile .cta-text { display: inline-flex; flex-direction: column; line-height: 1; gap: 3px; }
  nav.top .cta-mobile .cta-eyebrow {
    font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 600; color: var(--gold); line-height: 1;
  }
  nav.top .cta-mobile .cta-line {
    font-family: var(--serif);
    font-variation-settings: "opsz" 24, "wght" 460;
    font-size: 1rem; line-height: 1.05; letter-spacing: -0.005em;
  }
  nav.top .cta-mobile .cta-line em {
    font-style: italic; color: #B6E4DD;
    font-variation-settings: "opsz" 24, "wght" 360;
  }
}
@keyframes ctaDotPulseVip {
  0% { box-shadow: 0 0 0 0 rgba(201,168,106,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(201,168,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,106,0); }
}
.ledger-foot {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(31,42,46,0.06);
  flex-wrap: wrap;
  font-style: italic;
}
.ledger-note {
  position: absolute;
  top: 1.3rem;
  right: -8.5rem;
  width: 9rem;
  font-family: var(--hand);
  font-size: 1.45rem;
  color: var(--teal-deep);
  transform: rotate(-3.5deg);
  line-height: 1.2;
  pointer-events: none;
}
.ledger-note .arrow {
  display: inline-block;
  transform: rotate(135deg);
  font-size: 1.1rem;
  margin-right: 0.2rem;
  color: var(--teal-deep);
}
@media (max-width: 1080px) {
  .ledger-note {
    position: static;
    width: auto;
    margin: 1.1rem 0 0;
    transform: rotate(-1.5deg);
    text-align: right;
    font-size: 1.3rem;
  }
  .ledger-note .arrow { transform: rotate(45deg); }
}

/* ─────────────────────────  THREE STEPS (verification)  ───────────────────────── */

.steps {
  max-width: 760px;
  margin: 1.5rem auto 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(31,42,46,0.1);
  background: #fcf9ee;
}
.step {
  padding: 1.85rem 1.6rem;
  border-right: 1px solid rgba(31,42,46,0.1);
  position: relative;
}
.step:last-child { border-right: none; }
.step .step-num {
  font-family: var(--serif);
  font-variation-settings: "opsz" 60, "wght" 280;
  font-weight: 280;
  font-size: 3.2rem;
  line-height: 0.95;
  color: var(--teal-deep);
  margin-bottom: 0.7rem;
  letter-spacing: -0.04em;
}
.step h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.step p {
  font-family: var(--serif);
  font-variation-settings: "opsz" 18, "wght" 400;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 760px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(31,42,46,0.1); }
  .step:last-child { border-bottom: none; }
}

/* ─────────────────────────  FIELD NOTES (FAQ)  ───────────────────────── */
/* Reuses .article-faq from article.css for structural alignment, but with
   slightly tighter prose treatment to feel like an editorial endnote. */

.field-notes {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.5rem) var(--gutter);
}
.field-notes .field-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 1rem;
}
.field-notes .field-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal-deep);
}
.field-notes h2 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 48, "wght" 380;
  font-weight: 380;
  font-size: clamp(1.65rem, 3.2vw, 2.3rem);
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 2rem;
  letter-spacing: -0.018em;
}
.field-notes h2 em { font-style: italic; color: var(--teal-deep); }
.field-notes .qa {
  border-top: 1px solid rgba(31,42,46,0.12);
  padding: 1.4rem 0;
}
.field-notes .qa:last-child { border-bottom: 1px solid rgba(31,42,46,0.12); }
.field-notes .qa .q {
  font-family: var(--serif);
  font-variation-settings: "opsz" 24, "wght" 420;
  font-style: italic;
  font-weight: 420;
  font-size: 1.18rem;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.field-notes .qa .q::-webkit-details-marker { display: none; }
.field-notes .qa .q::after {
  content: "+";
  font-family: var(--serif);
  font-style: normal;
  color: var(--teal-deep);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
  font-weight: 300;
}
.field-notes .qa[open] .q::after { content: "−"; }
.field-notes .qa .a {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0.7rem 0 0.2rem;
}

/* ─────────────────────────  CROSSLINKS  ───────────────────────── */

.crosslinks {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 5vw, 4.5rem) var(--gutter);
}
.crosslinks .crosslinks-wrap { max-width: 1100px; margin: 0 auto; }
.crosslinks .crosslinks-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(182,228,221,0.7);
  margin-bottom: 1rem;
}
.crosslinks .crosslinks-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(182,228,221,0.5);
}
.crosslinks h2 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 48, "wght" 380;
  font-weight: 380;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  color: var(--paper);
  margin: 0 0 2rem;
  letter-spacing: -0.018em;
  max-width: 32ch;
}
.crosslinks h2 em { font-style: italic; color: #B6E4DD; }
.crosslinks ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.crosslinks ul li { border-bottom: 1px solid rgba(255,255,255,0.12); }
.crosslinks ul li a {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1.2rem;
  align-items: baseline;
  padding: 1.4rem 0.5rem;
  color: var(--paper);
  text-decoration: none;
  font-family: var(--serif);
  transition: padding 0.25s, color 0.25s;
}
.crosslinks ul li a:hover { padding-left: 1.4rem; color: #fff; }
.crosslinks ul li a:hover .arrow { color: #B6E4DD; transform: translateX(4px); }
.crosslinks ul li a .num {
  font-family: var(--serif);
  font-variation-settings: "opsz" 60, "wght" 250;
  font-weight: 250;
  font-size: 2.2rem;
  color: #B6E4DD;
  line-height: 1;
  letter-spacing: -0.025em;
  font-feature-settings: "lnum";
}
.crosslinks ul li a .label {
  font-family: var(--serif);
  font-variation-settings: "opsz" 22, "wght" 420;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--paper);
  font-weight: 420;
}
.crosslinks ul li a .label small {
  display: block;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-style: normal;
  color: rgba(182,228,221,0.65);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  font-weight: 500;
}
.crosslinks ul li a .arrow {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.4);
  font-weight: 200;
  transition: color 0.25s, transform 0.25s;
  align-self: center;
}
@media (max-width: 600px) {
  .crosslinks ul li a { grid-template-columns: 3rem 1fr auto; gap: 0.85rem; }
  .crosslinks ul li a .num { font-size: 1.6rem; }
  .crosslinks ul li a .label { font-size: 1rem; }
}

/* ─────────────────────────  FINAL CTA (uses article-cta from article.css)  ───────────────────────── */
/* Inherits .article-cta and its h2/p/btn-primary from article.css for full alignment. */

/* Hairline ornamental separator */
.hairline {
  max-width: 200px;
  margin: 3.5rem auto;
  border: none;
  border-top: 1px solid rgba(31,42,46,0.18);
  position: relative;
}
.hairline::before {
  content: "❋";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--paper);
  padding: 0 0.7rem;
  color: var(--teal-deep);
  font-size: 0.8rem;
}

/* ───────── MOBILE TOP BANNER (override article.css to match homepage truncation) ─────────
   article.css gives the banner height: 56px and flex-wraps onto two lines on mobile.
   That two-line stack pushes the nav down and crashes into the logo. Match the homepage
   pattern: single 38px line, hide the longer descriptor, center, no wrap. */
@media (max-width: 720px) {
  .enrolling-banner {
    height: 38px;
    padding: 0 var(--gutter);
    flex-wrap: nowrap;
    gap: 0.6rem;
    font-size: 0.7rem;
    line-height: 1.2;
    text-align: center;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
  }
  .enrolling-banner em { display: none; }
  /* Pull nav back up to sit directly under the now-shorter banner. */
  nav.top { top: 38px; }
}
@media (max-width: 380px) {
  .enrolling-banner { font-size: 0.64rem; }
}
