/* ===== SUM TOTAL — SITE I: EDITORIAL IMMERSION / PROFESSIONAL SAGE & GOLD ===== */
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Outfit', sans-serif;
  --dark: #1E1E1E;
  --gold: #C5943A;
  --gold-glow: #D4A84E;
  --gold-dim: #A67C2E;
  --gold-pale: #E8D5A8;
  --sage: #7A8C6E;
  --sage-light: #E8EDE5;
  --off-white: #F8F8F6;
  --warm-white: #FAFAF8;
  --cream: #F0EDE6;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A44;
  --text-light: #8A8A80;
  --border: #E0DDD6;
  --sidebar-w: 220px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== GALLERY BANNER ===== */
.gallery-banner {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(30,30,30,0.97);
  color: rgba(197,148,58,0.5);
  text-align: center;
  padding: 6px 20px;
  font-size: 11px;
  font-family: var(--sans);
  z-index: 300;
  letter-spacing: 0.04em;
}
.gallery-banner a { color: rgba(197,148,58,0.7); text-decoration: none; transition: color 0.2s; }
.gallery-banner a:hover { color: var(--gold); }

/* ===== PROGRESS BAR ===== */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-glow));
  z-index: 400;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ===== WATERMARK ===== */
.watermark {
  position: fixed;
  top: 50%;
  left: calc(var(--sidebar-w) + (100vw - var(--sidebar-w)) / 2);
  transform: translate(-50%, -50%);
  width: 55vh;
  height: 55vh;
  max-width: 520px;
  max-height: 520px;
  pointer-events: none;
  z-index: 10;
}
.watermark-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.07;
  filter: saturate(0.15) brightness(1.3);
  transition: opacity 0.8s ease, filter 0.8s ease;
}
.watermark.glow .watermark-img {
  opacity: 0.14;
  filter: saturate(0.6) brightness(2.8) sepia(0.3);
}
@media (max-width: 1024px) {
  .watermark { left: 50%; }
}

/* ===== LAYOUT ===== */
.layout { display: flex; min-height: 100vh; padding-top: 24px; }

/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed;
  top: 24px; left: 0; bottom: 0;
  width: var(--sidebar-w);
  background: var(--dark);
  border-right: 1px solid rgba(197,148,58,0.1);
  padding: 40px 24px 24px;
  overflow-y: auto;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: background 0.8s ease, border-color 0.8s ease;
}
.sidebar.light {
  background: var(--sage-light);
  border-right-color: var(--border);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(197,148,58,0.6);
  margin-bottom: 48px;
  text-decoration: none;
  transition: color 0.8s;
}
.sidebar-brand strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1px;
  font-weight: 600;
}
.sidebar.light .sidebar-brand { color: var(--text-light); }
.sidebar.light .sidebar-brand strong { color: var(--text-dark); }

.sidebar-nav { margin-bottom: 32px; }
.sidebar-nav a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 400;
  color: rgba(197,148,58,0.4);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.02em;
  font-family: var(--sans);
}
.sidebar-nav a:hover { color: var(--gold); }
.sidebar-nav a.active { color: var(--sage); font-weight: 500; }
.sidebar.light .sidebar-nav a { color: var(--text-light); }
.sidebar.light .sidebar-nav a:hover { color: var(--text-dark); }
.sidebar.light .sidebar-nav a.active { color: var(--gold-dim); }
.sidebar-nav .sub { padding-left: 14px; font-size: 12px; }

.sidebar-rule { height: 1px; background: rgba(197,148,58,0.12); margin: 16px 0; transition: background 0.8s; }
.sidebar.light .sidebar-rule { background: var(--border); }

.toc-label {
  font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(197,148,58,0.35);
  margin-bottom: 12px;
  font-family: var(--sans);
  transition: color 0.8s;
}
.sidebar.light .toc-label { color: var(--text-light); }

.toc-item {
  display: block; padding: 4px 0 4px 12px;
  font-size: 11px; color: rgba(197,148,58,0.3);
  text-decoration: none; font-family: var(--sans);
  border-left: 1.5px solid transparent;
  transition: all 0.3s;
}
.toc-item:hover { color: rgba(197,148,58,0.7); }
.toc-item.active { color: var(--sage); border-left-color: var(--gold); font-weight: 500; }
.sidebar.light .toc-item { color: var(--text-light); }
.sidebar.light .toc-item:hover { color: var(--text-dark); }
.sidebar.light .toc-item.active { color: var(--gold-dim); border-left-color: var(--gold); }

.sidebar-cta {
  display: block; margin-top: auto;
  padding: 10px 14px;
  border: 1px solid rgba(197,148,58,0.35);
  color: var(--gold);
  text-align: center;
  border-radius: 3px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--sans);
  transition: all 0.3s;
}
.sidebar-cta:hover { background: var(--gold); color: var(--dark); }
.sidebar.light .sidebar-cta { border-color: var(--gold); }
.sidebar.light .sidebar-cta:hover { background: var(--gold); color: var(--dark); }

/* ===== CONTENT AREA ===== */
.content-area { margin-left: var(--sidebar-w); flex: 1; min-width: 0; }

/* ===== HERO: DARK, CINEMATIC ===== */
.hero-dark {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 60px;
  position: relative;
}
.hero-dark::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(197,148,58,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-brand-dark {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(197,148,58,0.55);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-headline-dark {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--gold-pale);
  max-width: 620px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}
.hero-sub-dark {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(232,213,168,0.45);
  max-width: 500px;
  margin-bottom: 56px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s ease 1s forwards;
}
.hero-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}
.hero-enter {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(197,148,58,0.3);
  transition: all 0.3s;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
}
.hero-enter:hover { border-bottom-color: var(--gold); letter-spacing: 0.18em; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero trust strip (inside hero, bottom) */
.hero-trust {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 32px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(197,148,58,0.25);
  flex-wrap: wrap;
  padding: 0 60px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.6s forwards;
}

/* ===== TRANSITIONS ===== */
.dark-to-light {
  height: 200px;
  background: linear-gradient(to bottom, var(--dark) 0%, var(--sage-light) 100%);
}
.light-to-dark {
  height: 200px;
  background: linear-gradient(to bottom, var(--sage-light) 0%, var(--dark) 100%);
}
.dark-to-light-2 {
  height: 200px;
  background: linear-gradient(to bottom, var(--dark) 0%, var(--sage-light) 100%);
}

/* Interior transitions */
.interior-d2l {
  height: 160px;
  background: linear-gradient(to bottom, var(--dark) 0%, var(--sage-light) 100%);
}
.interior-l2d {
  height: 160px;
  background: linear-gradient(to bottom, var(--sage-light) 0%, var(--dark) 100%);
}

/* ===== LIGHT CONTENT ===== */
.light-content { background: var(--sage-light); }
.interior-light { background: var(--sage-light); }

/* TRUST STRIP */
.trust-strip-light {
  padding: 36px 80px;
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  font-family: var(--sans);
}

/* PILLARS */
.pillars-section {
  padding: 100px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--sage-light);
}
.pillars-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.pillar {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
}
.pillar em { font-style: italic; color: var(--gold); }

/* STATEMENT SECTION */
.section-statement {
  padding: 120px 80px;
  border-bottom: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}
.section-statement h2 {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--text-dark);
}
.section-statement p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* QUOTE BREAK */
.quote-break {
  padding: 120px 80px;
  text-align: center;
  background: var(--sage-light);
  border-bottom: 1px solid var(--border);
}
.quote-break blockquote {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.45;
}
.quote-break cite {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 28px;
}

/* PROGRAMS EDITORIAL */
.programs-section {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--sage-light);
}
.programs-section > h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 56px;
  color: var(--text-dark);
}
.programs-editorial {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.prog-cell {
  background: var(--sage-light);
  padding: 36px 32px;
}
.prog-cell.primary {
  grid-row: 1 / 3;
  background: var(--off-white);
  padding: 48px 40px;
}
.prog-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.prog-cell h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.prog-cell.primary h3 { font-size: 2.2rem; }
.prog-grade {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  font-family: var(--sans);
}
.prog-cell ul { list-style: none; }
.prog-cell li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 3px 0;
  font-family: var(--sans);
}
.prog-cell.primary li { font-size: 16px; }
.prog-cell[data-href] { cursor: pointer; transition: background 0.2s ease, box-shadow 0.2s ease; }
.prog-cell[data-href]:hover { background: rgba(122,140,110,0.06) !important; box-shadow: inset 0 0 0 1px rgba(197,148,58,0.15); }
.prog-cell.primary[data-href]:hover { background: rgba(122,140,110,0.08) !important; }

.grade-row {
  margin-top: 48px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.grade-link {
  padding: 8px 20px;
  border: 1px solid var(--border);
  font-size: 13px; font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  font-family: var(--sans);
}
.grade-link:hover { border-color: var(--gold); color: var(--gold); }

/* HOW IT WORKS */
.how-section {
  padding: 120px 80px;
  border-bottom: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
  background: var(--sage-light);
}
.how-section h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.how-section .lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 72px;
  max-width: 500px;
  font-family: var(--sans);
}
.how-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}
.how-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}
.how-item h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.how-item p { font-size: 15px; color: var(--text-mid); margin: 0; }
.how-outcome {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  max-width: 500px;
}

/* ===== DARK IMMERSIVE ===== */
.dark-immersive {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 80px;
  position: relative;
}
.dark-immersive::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(197,148,58,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.dark-immersive-content { position: relative; z-index: 1; max-width: 520px; }
.dark-immersive h2 {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-glow);
  margin-bottom: 20px;
  line-height: 1.15;
}
.dark-immersive .di-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232,213,168,0.25);
  margin-bottom: 40px;
}
.dark-immersive p {
  font-size: 16px;
  color: rgba(232,213,168,0.4);
  line-height: 1.8;
  margin-bottom: 16px;
}
.dark-immersive ul {
  list-style: none;
  text-align: left;
  margin: 24px auto 24px;
  max-width: 380px;
}
.dark-immersive ul li {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(232,213,168,0.5);
  padding: 6px 0;
  border-bottom: 1px solid rgba(197,148,58,0.08);
}
.dark-immersive ul li::before { content: '— '; color: var(--gold-dim); }
.dark-immersive .closing {
  margin-top: 40px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(232,213,168,0.55);
  line-height: 1.4;
}

/* ===== PHILOSOPHY ===== */
.philosophy-section {
  padding: 140px 80px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--sage-light);
}
.philosophy-section h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 20px;
}
.philosophy-section p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 80px;
  border-top: 1px solid var(--border);
  background: var(--sage-light);
}
.faq-section h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 48px;
  color: var(--text-dark);
}
.faq-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  max-width: 840px;
}
.faq-questions { border-right: 1px solid var(--border); padding-right: 32px; }
.faq-q {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
  font-family: var(--sans);
  border-bottom: 1px solid rgba(224,221,214,0.6);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--text-dark); }
.faq-q.active { color: var(--gold); }
.faq-answer-area {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  padding-top: 12px;
}
.faq-answer-area .answer { display: none; }
.faq-answer-area .answer.active { display: block; }
.faq-answer-area p { margin-bottom: 12px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--dark);
  padding: 120px 80px;
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(197,148,58,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-pale);
  margin-bottom: 20px;
  position: relative;
}
.cta-section p {
  font-size: 15px;
  color: rgba(232,213,168,0.4);
  margin-bottom: 40px;
  position: relative;
}
.cta-btn {
  display: inline-block;
  padding: 14px 48px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--sans);
  transition: all 0.3s;
  position: relative;
}
.cta-btn:hover { background: var(--gold); color: var(--dark); }
.cta-note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(232,213,168,0.22);
  font-style: italic;
  position: relative;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 40px 80px 28px;
  border-top: 1px solid rgba(197,148,58,0.08);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,213,168,0.3);
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12px;
  color: rgba(232,213,168,0.2);
  text-decoration: none;
  font-family: var(--sans);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(232,213,168,0.55); }
.footer-bottom {
  font-size: 10px;
  color: rgba(232,213,168,0.12);
  font-family: var(--sans);
}

/* ===== INTERIOR PAGE HERO ===== */
.page-hero-dark {
  min-height: 70vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 80px 80px;
  position: relative;
}
.page-hero-dark::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(197,148,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(197,148,58,0.5);
  margin-bottom: 20px;
  position: relative;
}
.page-hero-dark h1 {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--gold-pale);
  max-width: 640px;
  margin-bottom: 28px;
  position: relative;
}
.page-hero-dark p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: rgba(232,213,168,0.45);
  max-width: 520px;
  line-height: 1.7;
  position: relative;
}

/* ===== INTERIOR LIGHT SECTIONS ===== */
.interior-section {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--sage-light);
}
.interior-section h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.interior-section h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.interior-section p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 16px;
}
.interior-section ul {
  list-style: none;
  margin: 20px 0;
}
.interior-section ul li {
  font-size: 15px;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
  font-family: var(--sans);
}
.interior-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 12px;
}

/* Section eyebrow label */
.section-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

/* Who block */
.who-block {
  max-width: 900px;
  margin: 0 auto;
}

/* SESSION BLOCKS */
.session-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.session-block-i {
  background: var(--sage-light);
  padding: 36px 28px;
}
.session-block-i h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.session-block-i .session-label {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.session-block-i ul { list-style: none; margin: 0; }
.session-block-i ul li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 4px 0;
  border-bottom: 1px solid rgba(224,221,214,0.5);
  font-family: var(--sans);
}
.session-block-i ul li::before { display: none; }

/* PRICING SECTION */
.pricing-section-i {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.pricing-section-i h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 48px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.price-card-i {
  background: var(--sage-light);
  padding: 40px 36px;
}
.price-card-i .card-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}
.price-card-i h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.price-amount {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}
.price-amount sup { font-size: 1.2rem; vertical-align: super; }
.price-detail {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
  font-family: var(--sans);
}
.price-card-i ul { list-style: none; }
.price-card-i ul li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--sans);
}
.price-card-i .card-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 10px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-family: var(--sans);
  transition: all 0.3s;
}
.price-card-i .card-cta:hover { background: var(--gold); color: var(--dark); }

/* SERVICE EDITORIAL (transfer/graduate/services beyond) */
.service-editorial {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 40px;
}
.service-card-i {
  background: var(--sage-light);
  padding: 36px 30px;
}
.service-card-i .sc-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.service-card-i h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.service-card-i .sc-price {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-card-i p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 12px;
  font-family: var(--sans);
}
.service-card-i ul { list-style: none; }
.service-card-i ul li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 4px 0;
  border-bottom: 1px solid rgba(224,221,214,0.5);
  font-family: var(--sans);
}

/* OUTCOMES */
.outcomes-i {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.outcome-item {
  border-left: 2px solid var(--sage);
  padding-left: 20px;
}
.outcome-item h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.outcome-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: none;
}

/* TIMELINE BLOCK */
.timeline-block {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.timeline-item {
  background: var(--sage-light);
  padding: 28px 24px;
}
.timeline-item .tl-period {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.timeline-item h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.timeline-item p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: none;
  margin: 0;
}

/* COUNSELOR GRID */
.counselor-grid-i {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.counselor-card-i {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--sage-light);
}
.counselor-photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--border);
  overflow: hidden;
}
.counselor-photo svg { opacity: 0.4; }
.counselor-info h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.counselor-info .c-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.counselor-info p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: none;
  margin: 0;
}

/* ABOUT WHY-TRUST BLOCKS */
.trust-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 40px;
}
.trust-block {
  background: var(--sage-light);
  padding: 36px 32px;
}
.trust-block h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.trust-block p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: none;
  margin: 0;
}

/* DARK CTA (interior) */
.cta-dark-i {
  background: var(--dark);
  padding: 100px 80px;
  text-align: center;
  position: relative;
}
.cta-dark-i::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(197,148,58,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.cta-dark-i h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-pale);
  margin-bottom: 16px;
  position: relative;
}
.cta-dark-i p {
  font-size: 15px;
  color: rgba(232,213,168,0.38);
  margin-bottom: 36px;
  position: relative;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-dark-i .cta-btn { position: relative; }
.cta-dark-i .cta-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(232,213,168,0.2);
  font-style: italic;
  position: relative;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== QUICK GUIDANCE 2-COL ===== */
.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 32px;
}
.quick-card {
  background: var(--sage-light);
  padding: 36px 32px;
}
.quick-card h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.quick-card .qc-price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 12px;
}
.quick-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: none;
  margin: 0;
  font-family: var(--sans);
}

/* ===== FOCUSED 3-COL ===== */
.focused-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 32px;
}
.focused-card {
  background: var(--sage-light);
  padding: 32px 28px;
}
.focused-card h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.focused-card .fc-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 12px;
}
.focused-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: none;
  margin: 0;
  font-family: var(--sans);
}

/* Essay full card */
.essay-full-card {
  background: var(--sage-light);
  border: 1px solid var(--border);
  padding: 48px 40px;
  margin-top: 1px;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.essay-full-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.essay-full-card .ef-price {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
}
.essay-full-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 480px;
  font-family: var(--sans);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .sidebar { display: none; }
  .content-area { margin-left: 0; }
  .watermark { left: 50%; }
  .hero-headline-dark { font-size: 2.75rem; }
  .section-statement, .how-section, .philosophy-section { padding-left: 32px; padding-right: 32px; }
  .programs-section, .faq-section, .pillars-section, .trust-strip-light, .quote-break, .dark-immersive, .cta-section, footer { padding-left: 32px; padding-right: 32px; }
  .interior-section, .pricing-section-i, .cta-dark-i { padding-left: 32px; padding-right: 32px; }
  .programs-editorial { grid-template-columns: 1fr; }
  .prog-cell.primary { grid-row: auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-questions { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
  .pillars-row { gap: 40px; }
  .session-blocks { grid-template-columns: 1fr; }
  .counselor-grid-i { grid-template-columns: 1fr; }
  .trust-blocks { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 1fr; }
  .focused-grid { grid-template-columns: 1fr; }
  .page-hero-dark h1 { font-size: 2.25rem; }
}
@media (max-width: 768px) {
  .hero-dark { padding: 60px 32px; }
  .hero-headline-dark { font-size: 2.25rem; }
  .section-statement h2 { font-size: 2.25rem; }
  .dark-immersive { min-height: 70vh; padding: 80px 32px; }
  .dark-immersive h2 { font-size: 2.25rem; }
  .pillar { font-size: 1.25rem; }
  .quote-break blockquote { font-size: 1.5rem; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
  .how-item { grid-template-columns: 1fr; }
  .how-number { font-size: 2rem; }
  .hero-trust { flex-direction: column; gap: 8px; align-items: center; }
  .counselor-card-i { flex-direction: column; }
  .essay-full-card { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-headline-dark { font-size: 1.875rem; }
  .pillars-row { flex-direction: column; gap: 16px; }
  .grade-row { flex-direction: column; }
}

/* ===== MOBILE TOP BAR ===== */
.mob-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: var(--dark);
  z-index: 500;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.mob-topbar-brand {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.mob-ham {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mob-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.25s;
}
.mob-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-ham.open span:nth-child(2) { opacity: 0; }
.mob-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== SLIDE-IN NAV PANEL ===== */
.mob-nav-panel {
  display: none;
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: var(--dark);
  z-index: 600;
  padding: 64px 0 40px;
  overflow-y: auto;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
}
.mob-nav-panel.open { left: 0; }
.mob-nav-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: rgba(197,148,58,0.5);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-nav-logo {
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(197,148,58,0.45);
  text-transform: uppercase;
}
.mob-nav-panel a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(248,248,246,0.7);
  text-decoration: none;
  min-height: 44px;
  transition: color 0.15s;
}
.mob-nav-panel a:hover { color: var(--gold); }
.mob-nav-panel a.sub { padding-left: 32px; font-size: 13px; color: rgba(248,248,246,0.5); }
.mob-nav-panel .mob-nav-cta {
  margin: 20px 20px 0;
  background: var(--gold);
  color: var(--dark) !important;
  border-radius: 4px;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 13px;
  justify-content: center;
  letter-spacing: 0.04em;
}
.mob-panel-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 599;
}
.mob-panel-overlay.open { display: block; }

/* ===== FLOATING TOC BUTTON ===== */
.mob-toc-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--gold);
  border: 1px solid rgba(197,148,58,0.3);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  z-index: 400;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* ===== FLOATING TOC OVERLAY ===== */
.mob-toc-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 450;
}
.mob-toc-overlay.open { display: block; }
.mob-toc-panel {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(197,148,58,0.15);
  border-radius: 16px 16px 0 0;
  padding: 20px 20px 40px;
  z-index: 460;
  max-height: 60vh;
  overflow-y: auto;
}
.mob-toc-panel.open { display: block; }
.mob-toc-header {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(197,148,58,0.45);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mob-toc-panel a {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(248,248,246,0.7);
  text-decoration: none;
  min-height: 44px;
  transition: color 0.15s;
}
.mob-toc-panel a:hover, .mob-toc-panel a.active { color: var(--gold); }
.mob-toc-panel a:last-child { border-bottom: none; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  /* Show mobile top bar */
  .mob-topbar { display: flex; }
  .mob-nav-panel { display: flex; }
  .mob-toc-btn { display: block; }

  /* Hide sidebar, expand content */
  .layout { display: block; }
  .sidebar { display: none; }
  .content-area { margin-left: 0; padding-top: 52px; }

  /* Gallery banner below topbar */
  .gallery-banner { top: 52px; }

  /* Watermark: center on full viewport */
  .watermark {
    left: 50%;
    transform: translateX(-50%);
    width: 45vh;
    height: 45vh;
    opacity: 0.06;
  }

  /* Hero */
  .hero-dark, .page-hero-dark { min-height: 80vh; padding: 80px 20px 60px; }
  .hero-headline-dark, .page-hero-dark h1 { font-size: 1.75rem; }
  .page-eyebrow { font-size: 11px; }

  /* Transitions */
  .interior-d2l, .interior-l2d { min-height: 80px; }

  /* Light content */
  .interior-section, .pricing-section-3, .about-block { padding: 48px 20px; }

  /* Editorial program grid */
  .programs-editorial { grid-template-columns: 1fr; padding: 0 20px; }
  .prog-cell.primary { grid-row: auto; }

  /* How items, sections */
  .how-item { grid-template-columns: 1fr; gap: 8px; }
  .how-section, .section-statement, .philosophy-section, .trust-strip-light, .pillars-section, .quote-break, .faq-section, .programs-section { padding-left: 20px; padding-right: 20px; }

  /* Dark sections */
  .dark-immersive { min-height: auto; padding: 60px 20px; }
  .dark-immersive h2 { font-size: 1.75rem; }
  .cta-dark-3, .cta-section, .cta-dark-i { padding: 60px 20px; }
  .cta-dark-3 h2, .cta-dark-i h2 { font-size: 1.75rem; }

  /* Mobile FAQ */
  .faq-grid { grid-template-columns: 1fr; }
  .faq-questions { border-right: none; padding-right: 0; border-bottom: none; }
  .faq-answers { display: none; }
  .faq-q { display: block; padding: 16px 0; border-bottom: 1px solid var(--border); min-height: 48px; cursor: pointer; }
  .faq-q.active { color: var(--gold); }

  /* Grids */
  .service-editorial { grid-template-columns: 1fr; }
  .trust-blocks { grid-template-columns: 1fr; }
  .counselor-editorial { grid-template-columns: 1fr; }
  .service-2col { grid-template-columns: 1fr; }

  /* Pricing */
  .price-card-3, .price-card-j, .price-card-i { padding: 32px 20px; }
  .price-card-3 .price, .price-card-j .price, .price-card-i .price { font-size: 2.75rem; }

  /* Pillars */
  .pillars-row { flex-direction: column; gap: 16px; }
  .pillar { font-size: 1.1rem; }

  /* Quote */
  .quote-break blockquote { font-size: 1.25rem; }

  /* Footer */
  .footer-row { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 8px; }

  /* CTA buttons full width */
  .cta-btn-3, .cta-btn-j, .cta-btn-i, .page-cta-gold {
    display: block;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .hero-headline-dark, .page-hero-dark h1 { font-size: 1.5rem; }
  .interior-section, .pricing-section-3 { padding: 40px 16px; }
  .price-card-3 .price { font-size: 2.25rem; }
}
.mob-topbar { z-index: 700; } .mob-ham { position: relative; z-index: 701; }

/* Fix: correct X animation translateY for space-between layout */
.mob-ham.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.mob-ham.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
