/* ============================================================
   ESSAYS WITH AVIGAIL
   Hybrid direction: bold serif headlines, uppercase sans labels,
   black on white, gold used only as an accent.
   ============================================================ */

:root {
  /* ground */
  --paper:      #ffffff;
  --paper-2:    #faf9f5;   /* warm off-white for alternating bands */
  --band:       #101010;   /* the one inverted section */

  /* ink */
  --ink:        #101010;
  --ink-2:      #3f3f3c;
  --ink-3:      #6e6e68;
  --ink-4:      #9b9b93;

  /* accent */
  --gold:       #cfae70;   /* backgrounds only, always with dark text */
  --gold-deep:  #8a6d1f;   /* gold as TEXT on white, contrast-safe */
  --gold-line:  #e0cfa6;

  /* rules */
  --hair:       #e6e5df;
  --hair-dark:  rgba(255,255,255,0.16);

  --font-display: 'Libre Caslon Text', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --page: 1120px;
  --measure: 62ch;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
blockquote { quotes: none; }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- shared type ---------- */
.container { max-width: var(--page); margin: 0 auto; padding: 0 40px; }

.section-label {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(27px, 3.6vw, 41px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.section-h2 em { font-style: italic; font-weight: 400; }
.narrow-h { max-width: 18ch; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ---------- buttons ---------- */
.btn-gold, .btn-offer, .btn-offer-gold, .btn-offer-navy {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 38px;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-gold:hover, .btn-offer:hover, .btn-offer-gold:hover, .btn-offer-navy:hover {
  background: var(--ink); border-color: var(--ink); color: var(--paper); transform: translateY(-2px);
}
.btn-ghost, .btn-ghost-navy, .btn-offer-ghost {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 34px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hair);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover, .btn-ghost-navy:hover, .btn-offer-ghost:hover {
  border-color: var(--ink); color: var(--ink); transform: translateY(-2px);
}
.btn-offer, .btn-offer-gold, .btn-offer-navy, .btn-offer-ghost { margin-top: 28px; }
.btn-offer-ghost { display: block; text-align: center; margin-top: 10px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  background: transparent;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav-scrolled {
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom-color: var(--hair);
}
.nav-inner {
  max-width: var(--page); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3); transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  color: var(--ink) !important;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--paper);
  padding: 190px 0 96px;
  border-bottom: 1px solid var(--hair);
}
.hero-grain { display: none; }
.hero-inner { max-width: var(--page); margin: 0 auto; padding: 0 40px; }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.hero-h1 em { font-style: italic; font-weight: 400; }
.hero-p {
  margin-top: 28px;
  max-width: var(--measure);
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-2);
}
.hero-stats {
  display: flex;
  margin: 48px 0 44px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.hstat { flex: 1; padding: 26px 0; }
.hstat + .hstat, .hstat-div + .hstat { border-left: 1px solid var(--hair); padding-left: 30px; }
.hstat-div { display: none; }
.hstat-n {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hstat-l {
  display: block; margin-top: 11px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink-4);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section { background: var(--paper-2); padding: 40px 0; border-bottom: 1px solid var(--hair); overflow: hidden; }
.marquee-label {
  text-align: center; margin-bottom: 22px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--ink-4);
}
.marquee-track-wrap { overflow: hidden; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 62s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.school-pill {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink-2);
  white-space: nowrap;
  padding: 0 26px;
  position: relative;
}
.school-pill::after {
  content: "";
  position: absolute; right: 0; top: 50%;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold); transform: translateY(-50%);
}
.school-pill.ivy { font-style: italic; color: var(--ink); }

/* ============================================================
   STORY
   ============================================================ */
.story-section { background: var(--paper); padding: 104px 0; }
.story-body-split { display: grid; grid-template-columns: 1.35fr 1fr; gap: 56px; align-items: start; margin-top: 34px; }
.story-body-text p { font-size: 16px; line-height: 1.85; color: var(--ink-2); max-width: var(--measure); }
.story-body-text p + p { margin-top: 18px; }
.story-body-img img { width: 100%; }

/* ============================================================
   INTRO VIDEO
   ============================================================ */
.intro-video-section { background: var(--paper-2); padding: 96px 0; border-bottom: 1px solid var(--hair); }
.video-wrap {
  max-width: 900px;
  margin: 40px auto 0;
  border: 1px solid var(--hair);
  background: var(--band);
  line-height: 0;
}
.intro-video { width: 100%; height: auto; display: block; }
.video-transcript { max-width: 900px; margin: 22px auto 0; border-top: 1px solid var(--hair); }
.video-transcript > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 2px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color 0.2s;
}
.video-transcript > summary::-webkit-details-marker { display: none; }
.video-transcript > summary:hover,
.video-transcript[open] > summary { color: var(--gold-deep); }
.video-transcript-body { padding: 4px 2px 30px; }
.video-transcript-body p { font-size: 15px; line-height: 1.88; color: var(--ink-2); max-width: var(--measure); }
.video-transcript-body p + p { margin-top: 15px; }

.story-block { margin-top: 84px; }
.story-block-h {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--ink);
  padding-bottom: 16px; border-bottom: 1px solid var(--ink);
}
.story-sub { margin-top: 18px; font-size: 15.5px; color: var(--ink-3); font-style: italic; font-family: var(--font-display); }

.acceptance-grid, .scholarship-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4px; }
.acc-card, .schol-card {
  padding: 26px 28px 26px 0;
  border-bottom: 1px solid var(--hair);
}
.acc-card:nth-child(3n+2), .acc-card:nth-child(3n),
.schol-card:nth-child(3n+2), .schol-card:nth-child(3n) {
  padding-left: 28px; border-left: 1px solid var(--hair);
}
.gold-card, .highlight-schol { background: var(--paper-2); }
.acc-school { font-family: var(--font-display); font-size: 20px; font-weight: 700; line-height: 1.25; }
.acc-rate { margin-top: 7px; font-size: 12.5px; color: var(--ink-4); letter-spacing: 0.02em; }
.acc-note { margin-top: 10px; font-size: 12px; line-height: 1.6; color: var(--gold-deep); font-weight: 500; }
.acc-also { font-size: 14px; color: var(--ink-2); line-height: 2; }
.more-card { display: flex; flex-direction: column; justify-content: center; }

/* ---------- photo strip ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.photo-strip figure { margin: 0; }
.photo-strip img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 22%;
  border: 1px solid var(--hair);
}
.photo-strip .ps-tall img { height: 300px; object-position: center 18%; }
.photo-strip figcaption {
  margin-top: 11px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-3);
  font-family: var(--font-display);
  font-style: italic;
}

/* ---------- school card with logo ---------- */
.acc-head { display: flex; align-items: center; gap: 14px; }
.acc-logo {
  width: 46px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ---------- scholarship bars ---------- */
.schol-bars { list-style: none; margin-top: 34px; }
.schol-bar { padding: 22px 0; border-bottom: 1px solid var(--hair); }
.schol-bar:first-child { border-top: 1px solid var(--hair); }
.sb-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}
.sb-name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.sb-amt {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.sb-track { height: 10px; background: var(--paper-2); border: 1px solid var(--hair); }
.sb-fill { display: block; height: 100%; background: var(--gold); }
.sb-note { margin-top: 11px; font-size: 13px; color: var(--ink-3); line-height: 1.65; }
.schol-hero .sb-amt { font-size: clamp(30px, 4vw, 44px); }
.schol-hero .sb-track { height: 16px; }
.schol-hero .sb-fill { background: var(--ink); }
.schol-hero .sb-name { color: var(--gold-deep); }

.pres-medal {
  width: 190px;
  max-width: 100%;
  min-width: 0;
  flex-shrink: 0;
  align-self: flex-start;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.18);
}
/* ---------- acceptance letters ---------- */
.letters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.letter { margin: 0; }
.letter img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--hair);
  box-shadow: 0 6px 26px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.letter:hover img {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}
.letter figcaption { margin-top: 15px; }
.lt-school {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink); line-height: 1.55;
}
.lt-note {
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 14px; font-style: italic;
  color: var(--ink-3); line-height: 1.5;
}
.letters-note {
  margin-top: 26px;
  font-size: 12.5px;
  color: var(--ink-4);
  font-style: italic;
  font-family: var(--font-display);
}

/* ---------- press citation ---------- */
.press-card {
  display: block;
  margin-top: 18px;
  padding: 28px 32px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-left: 3px solid var(--gold);
  transition: border-left-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.press-card:hover {
  border-left-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(0,0,0,0.07);
}
.press-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-4);
}
.press-outlet { color: var(--gold-deep); }
.press-sep { color: var(--hair); }
.press-headline {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 700;
  line-height: 1.24;
  color: var(--ink);
  text-wrap: balance;
}
.press-sub {
  margin-top: 13px;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--ink-2);
  max-width: var(--measure);
}
.press-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-deep);
}

.pres-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.total-banner {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  margin-top: 34px; padding: 26px 0;
  border-top: 2px solid var(--ink); border-bottom: 1px solid var(--hair);
}
.total-banner span { font-size: 10.5px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-3); }
.total-banner strong { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 38px); font-weight: 700; }

.presidential-banner {
  display: flex; gap: 34px; align-items: center; justify-content: space-between;
  margin-top: 40px; padding: 36px 38px;
  background: var(--band); color: var(--paper);
}
.pres-star { color: var(--gold); font-size: 20px; line-height: 1.4; }
.pres-title { font-family: var(--font-display); font-size: clamp(23px, 3vw, 32px); font-weight: 700; line-height: 1.2; }
.pres-sub { margin-top: 9px; font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.66); max-width: var(--measure); }

.proof-caption {
  margin: 44px 0 16px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--ink-4);
}
.proof-img-wrap { border: 1px solid var(--hair); }
.proof-img { width: 100%; }

/* ============================================================
   PAIN  (the one inverted band)
   ============================================================ */
.pain-section { background: var(--band); color: var(--paper); padding: 104px 0; }
.pain-section .section-label { color: var(--gold); }
.pain-section .section-h2 { color: var(--paper); }
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 46px; border-top: 1px solid var(--hair-dark); }
.pain-card { padding: 32px 34px 32px 0; border-bottom: 1px solid var(--hair-dark); }
.pain-card:nth-child(even) { padding-left: 34px; border-left: 1px solid var(--hair-dark); }
.pain-q { font-family: var(--font-display); font-size: 20px; font-weight: 700; font-style: italic; line-height: 1.4; color: var(--paper); }
.pain-a { margin-top: 14px; font-size: 14.5px; line-height: 1.8; color: rgba(255,255,255,0.62); }

/* ============================================================
   RESULTS
   ============================================================ */
.results-section { background: var(--paper); padding: 104px 0; }
.results-summary { max-width: 760px; margin: 34px auto 60px; }
.results-summary p { font-size: 16.5px; line-height: 1.9; color: var(--ink-2); }
.results-summary p + p { margin-top: 20px; }

.results-featured { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hair); }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair); margin-top: 1px; }
.result-card { background: var(--paper); padding: 30px 30px 34px; }
.result-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-deep); line-height: 1.7;
}
.result-quote { margin-top: 16px; font-family: var(--font-display); font-size: 18px; line-height: 1.55; color: var(--ink); }
.result-big .result-quote { font-size: 21px; }
.result-also { margin-top: 12px; font-size: 12.5px; color: var(--ink-4); }
.result-screenshot { margin-top: 22px; width: 100%; border: 1px solid var(--hair); }

/* ---------- logo row ---------- */
.logo-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.logo-row li {
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
  min-height: 130px;
}
.logo-row img {
  max-height: 62px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.logo-row-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--ink-3);
  font-style: italic;
  font-family: var(--font-display);
}

/* ---------- results gallery ---------- */
.results-gallery {
  columns: 3;
  column-gap: 26px;
}
.rcard {
  break-inside: avoid;
  margin: 0 0 26px;
  border: 1px solid var(--hair);
  background: var(--paper);
}
.rcard img { width: 100%; height: auto; display: block; }
.rcard figcaption { padding: 14px 16px 16px; border-top: 1px solid var(--hair); }
.rc-school {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.55;
  color: var(--ink);
}
.rc-note {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-style: italic;
  color: var(--gold-deep);
  line-height: 1.45;
}

.reviews-label {
  margin: 84px 0 30px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--ink);
  padding-bottom: 16px; border-bottom: 1px solid var(--ink);
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair); }
.review-card { background: var(--paper); padding: 28px 28px 30px; }
.review-stars { color: var(--gold); font-size: 13px; letter-spacing: 0.16em; }
.review-text { margin-top: 14px; font-size: 14.5px; line-height: 1.8; color: var(--ink-2); }
.review-name { margin-top: 16px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-4); }
.review-screenshot { margin-top: 20px; width: 100%; border: 1px solid var(--hair); }
.review-mini { margin-top: 20px; font-size: 13px; font-style: italic; font-family: var(--font-display); color: var(--ink-3); line-height: 1.7; }

/* ============================================================
   RESULTS TEASER (homepage)
   ============================================================ */
.results-teaser { background: var(--paper); padding: 104px 0; }
.teaser-stats {
  display: flex;
  margin: 8px 0 44px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.ts { flex: 1; padding: 26px 0; }
.ts + .ts { border-left: 1px solid var(--hair); padding-left: 30px; }
.ts-n {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ts-l {
  display: block; margin-top: 11px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink-4);
}
.teaser-cta { text-align: center; }

/* ============================================================
   THE YES PILE SYSTEM
   ============================================================ */
.yespile-section { background: var(--band); color: var(--paper); padding: 104px 0; }
.yespile-section .section-label { color: var(--gold); }
.yespile-section .section-h2 { color: var(--paper); }
.yp-lede {
  max-width: var(--measure);
  margin-top: 22px;
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.66);
}
.yp-stages { list-style: none; margin-top: 52px; border-top: 1px solid var(--hair-dark); }
.yp-stage {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--hair-dark);
}
.yp-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.yp-name {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  color: var(--paper);
  line-height: 1.2;
}
.yp-q {
  margin-top: 7px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
}
.yp-desc {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.82;
  color: rgba(255,255,255,0.62);
  max-width: var(--measure);
}
.yp-sheet {
  margin-top: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.yp-promise { margin-top: 52px; padding-top: 34px; border-top: 2px solid var(--gold); }
.yp-promise p {
  font-family: var(--font-display);
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.28;
  color: var(--paper);
  max-width: 24ch;
}
.yp-promise p em { font-style: italic; font-weight: 400; color: var(--gold); }
.yp-promise span {
  display: block; margin-top: 18px;
  font-size: 14.5px; line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: var(--measure);
}

/* ============================================================
   DOCUMENT PACK
   ============================================================ */
.pack-section { background: var(--paper); padding: 104px 0; }
.pack-lede {
  max-width: var(--measure);
  margin-top: 22px;
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink-2);
}
.pack-hero { margin-top: 44px; border: 1px solid var(--hair); }
.pack-hero img { width: 100%; height: auto; display: block; }
.pack-body {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 52px;
  margin-top: 52px;
  align-items: start;
}
.pack-includes-h {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--ink);
  padding-bottom: 15px; border-bottom: 1px solid var(--ink);
}
.pack-includes ul { list-style: none; }
.pack-includes li {
  padding: 17px 0 17px 28px;
  border-bottom: 1px solid var(--hair);
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink-2);
  position: relative;
}
.pack-includes li::before {
  content: "";
  position: absolute;
  left: 2px; top: 27px;
  width: 12px; height: 1px;
  background: var(--gold-deep);
}
.pack-buy {
  border: 1px solid var(--hair);
  background: var(--paper-2);
  padding: 30px 30px 34px;
  text-align: center;
  position: sticky;
  top: 96px;
}
.pack-thumb { width: 100%; height: auto; border: 1px solid var(--hair); background: var(--paper); }
.pack-price {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pack-price-note {
  margin: 12px auto 24px;
  max-width: 30ch;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-3);
}
.pack-buy .btn-gold { width: 100%; }
.pack-alt {
  margin-top: 20px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-4);
  font-family: var(--font-display);
  font-style: italic;
}

/* ============================================================
   RESULTS PAGE
   ============================================================ */
.nav-solid { position: sticky; background: var(--paper); border-bottom: 1px solid var(--hair); }
.nav-here { color: var(--ink) !important; }
.page-head { background: var(--paper-2); padding: 150px 0 74px; border-bottom: 1px solid var(--hair); }
.page-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.page-h1 em { font-style: italic; font-weight: 400; }
.page-lede {
  margin-top: 24px;
  max-width: var(--measure);
  font-size: 16px;
  line-height: 1.82;
  color: var(--ink-2);
}
.endorse-section { background: var(--paper-2); padding: 104px 0; border-top: 1px solid var(--hair); }
.endorse-gallery { columns: 3; column-gap: 24px; margin-top: 44px; }
.ecard {
  break-inside: avoid;
  margin: 0 0 24px;
  border: 1px solid var(--hair);
  background: var(--paper);
}
.ecard img { width: 100%; height: auto; display: block; }

/* ============================================================
   CTA BREAK
   ============================================================ */
.cta-break { background: var(--paper-2); padding: 92px 40px; text-align: center; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.cta-break-inner { max-width: 660px; margin: 0 auto; }
.cta-break-text { font-family: var(--font-display); font-size: clamp(25px, 3.3vw, 36px); font-weight: 700; line-height: 1.25; text-wrap: balance; }
.cta-break-sub { margin: 20px 0 36px; font-size: 15.5px; line-height: 1.8; color: var(--ink-2); }

/* ============================================================
   OFFERS
   ============================================================ */
.offers-section { background: var(--paper); padding: 104px 0; }
.offers-sub { max-width: var(--measure); margin-top: 24px; font-size: 16px; line-height: 1.8; color: var(--ink-2); }

.offer-group {
  margin: 64px 0 6px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--ink);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
}
.offer-group-sub {
  margin-top: 18px;
  max-width: var(--measure);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-3);
}
.offer-row { margin-top: 22px; position: relative; }
.offer-card-wrap { border: 1px solid var(--hair); padding: 40px 42px 44px; background: var(--paper); }
.offer-featured .offer-card-wrap, .featured-card { border-color: var(--ink); }
.offer-full-pkg .offer-card-wrap { background: var(--paper-2); }

.offer-tag, .offer-badge {
  display: inline-block; margin-bottom: 12px;
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; padding: 7px 14px;
  background: var(--ink); color: var(--paper);
}
.offer-tag-entry { background: transparent; color: var(--ink-3); border: 1px solid var(--hair); }
.offer-tag-premium, .offer-badge { background: var(--gold); color: var(--ink); }

.offer-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--hair); }
.offer-title { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; line-height: 1.2; }
.offer-subtitle { margin-top: 9px; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-4); }
.offer-price-wrap { text-align: right; flex-shrink: 0; }
.offer-price { font-family: var(--font-display); font-size: clamp(30px, 3.6vw, 42px); font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; }
.offer-original { font-size: 15px; color: var(--ink-4); text-decoration: line-through; margin-bottom: 5px; }
.offer-payment-plan { margin-top: 9px; font-size: 11.5px; color: var(--ink-3); }
.offer-desc { margin-top: 24px; font-size: 15.5px; line-height: 1.82; color: var(--ink-2); max-width: var(--measure); }

.session-list { margin-top: 30px; border-top: 1px solid var(--hair); }
.session-row { display: flex; gap: 22px; padding: 20px 0; border-bottom: 1px solid var(--hair); }
.session-num { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--gold-deep); flex-shrink: 0; min-width: 44px; font-variant-numeric: tabular-nums; }
.session-body { font-size: 14.5px; line-height: 1.8; color: var(--ink-2); }
.session-body strong { color: var(--ink); font-weight: 600; }

.offer-includes-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 30px; margin-top: 26px; }
.oi { font-size: 14px; line-height: 1.7; color: var(--ink-2); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--paper-2); padding: 104px 0; border-top: 1px solid var(--hair); }
.faq-group-label {
  max-width: 860px; margin: 56px auto 0;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--ink);
  padding-bottom: 15px; border-bottom: 1px solid var(--ink);
}
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 26px;
  padding: 26px 2px;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700; line-height: 1.35;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--gold-deep); }
.faq-item[open] .faq-q { color: var(--gold-deep); }
.faq-icon { position: relative; flex-shrink: 0; width: 16px; height: 16px; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--gold-deep);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon::before { top: 7px; left: 0; width: 16px; height: 1.5px; }
.faq-icon::after { left: 7px; top: 0; width: 1.5px; height: 16px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 44px 30px 2px; }
.faq-a p { font-size: 15.5px; line-height: 1.88; color: var(--ink-2); max-width: var(--measure); }
.faq-a p + p { margin-top: 16px; }
.faq-cta { max-width: 860px; margin: 56px auto 0; text-align: center; }
.faq-cta p { font-size: 15px; color: var(--ink-3); margin-bottom: 22px; }

/* ============================================================
   FINAL CTA + FOOTER
   ============================================================ */
.final-cta { background: var(--band); color: var(--paper); padding: 112px 40px; text-align: center; }
.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-h2 { font-family: var(--font-display); font-size: clamp(29px, 4vw, 46px); font-weight: 700; line-height: 1.18; text-wrap: balance; }
.final-h2 em { font-style: italic; font-weight: 400; color: var(--gold); }
.final-p { margin: 24px 0 38px; font-size: 16px; line-height: 1.85; color: rgba(255,255,255,0.68); }
.final-social { margin-top: 30px; }
.final-social a { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.final-social a:hover { color: var(--gold); }

.footer { background: var(--band); color: rgba(255,255,255,0.42); border-top: 1px solid var(--hair-dark); padding: 34px 40px; }
.footer-inner { max-width: var(--page); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-name { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.42); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .acceptance-grid, .scholarship-grid { grid-template-columns: repeat(2, 1fr); }
  .acc-card:nth-child(3n+2), .acc-card:nth-child(3n),
  .schol-card:nth-child(3n+2), .schol-card:nth-child(3n) { padding-left: 0; border-left: none; }
  .acc-card:nth-child(even), .schol-card:nth-child(even) { padding-left: 28px; border-left: 1px solid var(--hair); }
  .results-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .results-gallery, .endorse-gallery { columns: 2; }
  .letters-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-row { grid-template-columns: repeat(3, 1fr); }
  .story-body-split { grid-template-columns: 1fr; gap: 34px; }
  .story-body-img { max-width: 380px; }
}

@media (max-width: 768px) {
  .container, .nav-inner, .hero-inner { padding: 0 22px; }
  .nav-links { display: none; }
  .hero { padding: 132px 0 72px; }
  .hero-stats { flex-direction: column; }
  .hstat + .hstat, .hstat-div + .hstat { border-left: none; border-top: 1px solid var(--hair); padding-left: 0; }
  .hero-ctas { flex-direction: column; align-items: stretch; text-align: center; }
  .acceptance-grid, .scholarship-grid, .results-featured, .results-grid, .reviews-grid, .pain-grid, .offer-includes-row { grid-template-columns: 1fr; }
  .results-gallery, .endorse-gallery { columns: 1; }
  .logo-row { grid-template-columns: repeat(2, 1fr); }
  .teaser-stats { flex-direction: column; }
  .ts + .ts { border-left: none; border-top: 1px solid var(--hair); padding-left: 0; }
  .yp-stage { grid-template-columns: 1fr; gap: 10px; }
  .yespile-section, .results-teaser, .endorse-section, .pack-section { padding: 68px 0; }
  .pack-body { grid-template-columns: 1fr; gap: 34px; }
  .pack-buy { position: static; padding: 24px 20px 28px; }
  .page-head { padding: 110px 0 54px; }
  .logo-row li { padding: 22px 16px; min-height: 104px; }
  .logo-row img { max-height: 48px; }
  .acc-card:nth-child(even), .schol-card:nth-child(even) { padding-left: 0; border-left: none; }
  .pain-card, .pain-card:nth-child(even) { padding-left: 0; border-left: none; padding-right: 0; }
  .offer-card-wrap { padding: 30px 24px 34px; }
  .offer-head { flex-direction: column; gap: 18px; }
  .offer-price-wrap { text-align: left; }
  .faq-q { padding: 22px 2px; gap: 16px; }
  .faq-a { padding: 0 28px 26px 2px; }
  .story-section, .results-section, .offers-section, .faq-section, .pain-section { padding: 68px 0; }
  .total-banner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .presidential-banner { flex-direction: column; align-items: flex-start; gap: 24px; padding: 26px 22px; }
  .pres-medal { width: 100%; flex-shrink: 1; align-self: stretch; max-height: 240px; }
  .press-card { padding: 22px 20px; }
  .letters-grid { grid-template-columns: 1fr; gap: 30px; }
  .photo-strip { grid-template-columns: 1fr; gap: 26px; }
  .photo-strip img, .photo-strip .ps-tall img { height: 260px; }
  .sb-top { flex-direction: column; gap: 4px; align-items: flex-start; }
  .acc-logo { width: 38px; height: 34px; }
  .session-row { gap: 14px; }
  .session-num { min-width: 34px; }
}
