/* ============================================================
   AGA_STYLES.CSS
   Alphonse Gallegos Academy — Main Stylesheet
   Option B: Cream nav · Warm page sections · Dark footer
   ============================================================ */


/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


/* ─── DESIGN TOKENS ─── */
:root {
  /* Brand colours */
  --forest-deep:  #0A1F11;
  --forest-mid:   #132B18;
  --forest-light: #1C3D24;
  --gold-warm:    #C9A23A;
  --gold-muted:   #A87E20;
  --white:        #FFFFFF;
  --off-white:    #EDF2E7;
  --warm-white:   #F5F2E8;

  /* Nav / light palette */
  --nav-cream:     #FAF8F3;
  --nav-cream-dim: #F1ECE1;
  --nav-border:    #E4DCCC;
  --nav-text:      rgba(10,31,17,.70);
  --nav-text-dim:  rgba(10,31,17,.42);
  --nav-divider:   rgba(10,31,17,.13);

  /* Section backgrounds */
  --section-pillars:  #F7F3EA;
  --section-programs: #FAF8F3;
  --section-building: #FFFFFF;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Layout */
  --max-w:        1200px;
  --section-gap:  96px;
}

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--forest-deep); background: var(--white); }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }


/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }


/* ─── SHARED UTILITIES ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-warm);
  flex-shrink: 0;
}
.eyebrow-light { color: var(--gold-warm); }
.eyebrow-light::before { background: var(--gold-warm); opacity: .6; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .03em;
  transition: all .22s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-teal        { background: var(--gold-warm); color: var(--forest-deep); }
.btn-teal:hover  { background: var(--gold-muted); color: var(--white); }
.btn-navy        { background: var(--forest-deep); color: var(--white); }
.btn-navy:hover  { background: var(--forest-light); }
.btn-ghost-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.btn-ghost-light:hover { border-color: var(--gold-warm); color: var(--gold-warm); }
.btn-ghost-dark  { background: transparent; color: var(--forest-deep); border: 1px solid rgba(11,25,41,.22); }
.btn-ghost-dark:hover  { border-color: var(--gold-muted); color: var(--gold-muted); }
.btn svg { width: 14px; height: 14px; transition: transform .22s; }
.btn:hover svg { transform: translateX(3px); }


/* ══════════════════════════════════════════════════════════════
   NAVIGATION — CREAM
   ══════════════════════════════════════════════════════════════ */

#aga-header {
  position: sticky;
  top: 0;
  z-index: 200;
}

.site-nav {
  background: var(--nav-cream);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 2px 16px rgba(10,31,17,.07);
}

/* Utility strip */
.nav-utility {
  background: var(--nav-cream-dim);
  padding: 6px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--nav-border);
}
.nav-utility-left {
  font-size: 11.5px;
  color: var(--nav-text-dim);
  letter-spacing: .04em;
  font-weight: 300;
}
.nav-utility-left strong { color: var(--gold-muted); font-weight: 500; }
.nav-utility-right { display: flex; align-items: center; gap: 18px; }
.nav-utility-right a {
  font-size: 11.5px;
  color: var(--nav-text);
  text-decoration: none;
  transition: color .2s;
  font-weight: 400;
}
.nav-utility-right a:hover { color: var(--gold-muted); }
.util-divider { width: 1px; height: 12px; background: var(--nav-divider); }
.util-badge {
  background: var(--gold-warm);
  color: var(--forest-deep);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 2px 9px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Main nav row */
.nav-main {
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  gap: 20px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--forest-deep);
}
.nav-logo span { color: var(--gold-muted); }
.nav-logo img {
  display: block;
  height: 92px;
  width: auto;
  max-width: 340px;
  border-radius: 0;
  object-fit: contain;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: stretch;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--nav-text);
  letter-spacing: .02em;
  border-bottom: 2px solid transparent;
  font-family: var(--font-body);
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.nav-link:hover,
.nav-item:hover > .nav-link {
  color: var(--gold-muted);
  border-bottom-color: var(--gold-warm);
}
.chevron {
  width: 10px;
  height: 10px;
  opacity: .28;
  transition: transform .2s;
  flex-shrink: 0;
}
.nav-item:hover > .nav-link .chevron { transform: rotate(180deg); opacity: .55; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--off-white);
  border-top: 2px solid var(--gold-warm);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 32px rgba(11,25,41,.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s;
  z-index: 300;
  overflow: hidden;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-header {
  padding: 11px 18px 7px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--gold-muted);
  border-bottom: 1px solid var(--off-white);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--forest-deep);
  font-weight: 300;
  transition: background .15s, color .15s;
}
.nav-dropdown a::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-warm);
  flex-shrink: 0;
  opacity: .5;
}
.nav-dropdown a:hover {
  background: var(--off-white);
  color: var(--gold-muted);
}
.nav-dropdown a:hover::before { opacity: 1; }

/* CTA buttons */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  color: var(--forest-deep);
  border: 1px solid rgba(10,31,17,.22);
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.nav-btn-ghost:hover { border-color: var(--gold-muted); color: var(--gold-muted); }
.nav-btn-teal {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  background: var(--gold-warm);
  color: var(--forest-deep);
  border: none;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.nav-btn-teal:hover { background: var(--gold-muted); color: var(--white); }


/* ══════════════════════════════════════════════════════════════
   NAV → HERO BRIDGE BAND
   ══════════════════════════════════════════════════════════════ */

.nav-hero-bridge { background: var(--nav-cream); border-bottom: none; }
.nav-hero-bridge-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bridge-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: var(--nav-text-dim);
  font-weight: 300;
}
.bridge-breadcrumb a { color: var(--nav-text-dim); transition: color .2s; }
.bridge-breadcrumb a:hover { color: var(--gold-muted); }
.bridge-breadcrumb .sep { color: rgba(10,31,17,.18); }
.bridge-breadcrumb strong { color: rgba(10,31,17,.52); font-weight: 400; }
.bridge-tag {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.bridge-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-warm);
  animation: pulse 2s ease-in-out infinite;
}


/* ══════════════════════════════════════════════════════════════
   HAMBURGER BUTTON
   ══════════════════════════════════════════════════════════════ */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--nav-divider);
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: border-color .2s, background .2s;
}
.nav-hamburger:hover {
  border-color: var(--gold-muted);
  background: rgba(201,162,58,.06);
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--forest-deep);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ══════════════════════════════════════════════════════════════
   MOBILE DRAWER
   ══════════════════════════════════════════════════════════════ */

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100dvh;
  background: var(--nav-cream);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-left: 1px solid var(--nav-border);
  box-shadow: -8px 0 40px rgba(10,31,17,.12);
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-bottom: env(safe-area-inset-bottom, 24px);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,31,17,.45);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  backdrop-filter: blur(2px);
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-utility {
  background: var(--nav-cream-dim);
  border-bottom: 1px solid var(--nav-border);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: rgba(10,31,17,.45);
  font-weight: 300;
}
.mobile-nav-utility strong { color: var(--gold-muted); font-weight: 500; }
.mobile-util-badge {
  background: var(--gold-warm);
  color: var(--forest-deep);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.mobile-nav-links {
  list-style: none;
  flex: 1;
  padding: 8px 0;
  border-bottom: 1px solid var(--nav-border);
}
.mobile-nav-item { border-bottom: 1px solid rgba(10,31,17,.06); }
.mobile-nav-item:last-child { border-bottom: none; }

.mobile-nav-row {
  display: flex;
  align-items: stretch;
}
.mobile-nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--forest-deep);
  text-decoration: none;
  transition: color .2s, background .2s;
  letter-spacing: .01em;
}
.mobile-nav-link:hover { color: var(--gold-muted); background: rgba(201,162,58,.04); }

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  flex-shrink: 0;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(10,31,17,.07);
  cursor: pointer;
  transition: background .2s;
}
.mobile-nav-toggle:hover { background: rgba(201,162,58,.06); }
.mobile-chevron {
  width: 11px;
  height: 11px;
  opacity: .35;
  transition: transform .25s ease, opacity .2s;
  flex-shrink: 0;
}
.mobile-nav-toggle.open .mobile-chevron { transform: rotate(180deg); opacity: .7; }

.mobile-accordion {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: rgba(10,31,17,.02);
  border-top: 1px solid transparent;
}
.mobile-accordion.open {
  max-height: 480px;
  border-top-color: rgba(10,31,17,.05);
}
.mobile-accordion-header {
  padding: 10px 20px 6px 28px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-muted);
}
.mobile-accordion a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 28px;
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(10,31,17,.72);
  text-decoration: none;
  transition: color .15s, background .15s;
}
.mobile-accordion a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-warm);
  flex-shrink: 0;
  opacity: .5;
}
.mobile-accordion a:hover { color: var(--gold-muted); background: rgba(201,162,58,.05); }
.mobile-accordion a:hover::before { opacity: 1; }

.mobile-nav-ctas {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-btn-teal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  background: var(--gold-warm);
  color: var(--forest-deep);
  text-decoration: none;
  transition: background .2s;
  letter-spacing: .02em;
}
.mobile-btn-teal:hover { background: var(--gold-muted); color: var(--white); }
.mobile-btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: var(--forest-deep);
  border: 1px solid rgba(10,31,17,.18);
  text-decoration: none;
  transition: all .2s;
  letter-spacing: .02em;
}
.mobile-btn-ghost:hover { border-color: var(--gold-muted); color: var(--gold-muted); }

.mobile-nav-contact {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav-contact a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(10,31,17,.4);
  text-decoration: none;
  transition: color .2s;
}
.mobile-nav-contact a:hover { color: var(--gold-muted); }


/* ══════════════════════════════════════════════════════════════
   1. HERO
   ══════════════════════════════════════════════════════════════ */

.hero {
  background: var(--forest-deep);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 5%,
    var(--gold-muted) 35%,
    var(--gold-warm) 50%,
    var(--gold-muted) 65%,
    transparent 95%
  );
  opacity: .45;
  z-index: 2;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(123,191,184,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,191,184,.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-cross {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  pointer-events: none;
  opacity: .045;
}
.hero-cross::before,
.hero-cross::after {
  content: '';
  position: absolute;
  background: var(--gold-warm);
  border-radius: 2px;
}
.hero-cross::before {
  width: 28px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.hero-cross::after {
  width: 100%;
  height: 28px;
  top: 32%;
  left: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123,191,184,.12);
  border: 1px solid rgba(123,191,184,.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-warm);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.hero-headline em { color: var(--gold-warm); font-style: italic; }
.hero-body {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(4px);
}
.hero-card-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 24px;
  opacity: .8;
}
.hero-card-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-card-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 24px 0;
}
.hero-stat-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(123,191,184,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stat-icon svg { width: 15px; height: 15px; color: var(--gold-warm); }
.hero-stat-title {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  margin-bottom: 2px;
}
.hero-stat-body {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.42);
  line-height: 1.5;
}


/* ══════════════════════════════════════════════════════════════
   2. THREE PILLARS
   ══════════════════════════════════════════════════════════════ */

.pillars { background: var(--section-pillars); padding: var(--section-gap) 0; }
.pillars-intro { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.pillars-intro .eyebrow { justify-content: center; }
.pillars-intro .eyebrow::before { display: none; }
.pillars-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--forest-deep);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 95%;
  margin: auto;
}
.pillar {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s;
  margin: 5px;
}
.pillar:hover {
  box-shadow: 0 8px 40px rgba(11,25,41,.09);
  z-index: 1;
}
.pillar-accent {
  position: absolute;
  top: 0;
  left: 15%;
  width: 75%;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold-muted) 30%, var(--gold-muted) 70%, transparent);
  transition: background .3s;
}
.pillar:hover .pillar-accent {
  background: linear-gradient(to right, transparent, var(--gold-warm) 30%, var(--gold-warm) 70%, transparent);
}
.pillar-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 600;
  color: var(--gold-muted);
  line-height: 1;
  margin-bottom: 24px;
  transition: color .3s;
}
.pillar:hover .pillar-number { color: var(--gold-warm); }
.pillar-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 16px;
}
.pillar-body {
  font-size: 14px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.75;
}
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--gold-muted);
  text-transform: uppercase;
  transition: gap .2s;
}
.pillar-link:hover { gap: 10px; }
.pillar-link svg { width: 12px; height: 12px; }


/* ══════════════════════════════════════════════════════════════
   3. ALPHONSE GALLEGOS STORY
   ══════════════════════════════════════════════════════════════ */

.gallegos {
  background: var(--forest-deep);
  padding: var(--section-gap) 0;
  overflow: hidden;
  position: relative;
}
.gallegos::before {
  content: 'AG';
  position: absolute;
  font-family: var(--font-display);
  font-size: 280px;
  font-weight: 600;
  color: rgba(255,255,255,.025);
  line-height: 1;
  right: -20px;
  bottom: -40px;
  pointer-events: none;
  letter-spacing: -.05em;
}
.gallegos-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.gallegos-portrait {
  aspect-ratio: 3 / 4;
  background: var(--forest-light);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
}
.gallegos-portrait-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px;
}
.gallegos-portrait::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(11,25,41,.7), transparent);
}
.gallegos-portrait-placeholder {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px dashed rgba(123,191,184,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(123,191,184,.4);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}
.gallegos-portrait-caption {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,.45);
}
.gallegos-content { padding: 20px 0; }
.gallegos-quote {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 32px;
}
.gallegos-quote span { color: var(--gold-warm); }
.gallegos-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 16px;
}
.gallegos-body strong { color: rgba(255,255,255,.85); font-weight: 400; }
.gallegos-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 32px 0;
}
.gallegos-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.gallegos-meta-item { text-align: left; }
.gallegos-meta-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold-warm);
  line-height: 1;
  margin-bottom: 4px;
}
.gallegos-meta-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,.4);
  letter-spacing: .05em;
}
.gallegos-meta-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
}


/* ══════════════════════════════════════════════════════════════
   4. FEATURED PROGRAMS
   ══════════════════════════════════════════════════════════════ */

.programs { background: var(--section-programs); padding: var(--section-gap) 0; }
.programs-intro { margin-bottom: 56px; }
.programs-intro-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.programs-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 500;
  color: var(--forest-deep);
  line-height: 1.15;
  max-width: 480px;
}
.programs-subhead {
  font-size: 14px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.7;
  max-width: 340px;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program-card {
  border: 1px solid #DDD8CC;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.program-card:hover {
  box-shadow: 0 12px 40px rgba(11,25,41,.1);
  transform: translateY(-4px);
}
.program-img {
  aspect-ratio: 4 / 3;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.program-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.program-img-1 { background: linear-gradient(135deg, #1E3450 0%, #0B1929 100%); }
.program-img-2 { background: linear-gradient(135deg, #2a4a3e 0%, #142338 100%); }
.program-img-3 { background: linear-gradient(135deg, #1a3040 0%, #1E3450 100%); }
.program-img-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  border: 1px dashed rgba(255,255,255,.15);
  padding: 8px 16px;
  border-radius: 4px;
}
.program-body {
  padding: 28px;
  background: var(--white);
}
.program-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 10px;
}
.program-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 10px;
  line-height: 1.2;
}
.program-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.7;
}
.program-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gold-muted);
  letter-spacing: .03em;
  transition: gap .2s;
}
.program-link:hover { gap: 10px; }
.program-link svg { width: 12px; height: 12px; }


/* ══════════════════════════════════════════════════════════════
   5. PRE-LAUNCH / BUILDING SECTION
   ══════════════════════════════════════════════════════════════ */

.building {
  background: var(--section-building);
  padding: var(--section-gap) 0;
  border-top: 1px solid #DDD8CC;
  border-bottom: 1px solid #DDD8CC;
}
.building-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.building-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  color: var(--forest-deep);
  line-height: 1.15;
  margin-bottom: 20px;
}
.building-body {
  font-size: 15px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 32px;
}
.building-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(11,25,41,.07);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 4px;
}
.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold-muted);
  background: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-dot.active { background: var(--gold-warm); border-color: var(--gold-warm); }
.timeline-line {
  width: 1px;
  flex: 1;
  min-height: 24px;
  background: rgba(11,25,41,.1);
  margin-top: 4px;
}
.timeline-item:last-child .timeline-line { display: none; }
.timeline-date {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 4px;
}
.timeline-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 13px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.6;
}


/* ══════════════════════════════════════════════════════════════
   6. DUAL-AUDIENCE CTA STRIP
   ══════════════════════════════════════════════════════════════ */

.cta-strip { background: var(--forest-mid); padding: 0; }
.cta-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
}
.cta-panel {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background .3s;
}
.cta-panel:hover { background: rgba(255,255,255,.03); }
.cta-panel-divider { background: rgba(255,255,255,.07); }
.cta-panel-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 16px;
}
.cta-panel-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.cta-panel-body {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px;
}


/* ══════════════════════════════════════════════════════════════
   7. NEWSLETTER
   ══════════════════════════════════════════════════════════════ */

.newsletter { background: var(--forest-light); padding: 56px 0; }
.newsletter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  margin-bottom: 6px;
}
.newsletter-sub {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  max-width: 400px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.newsletter-form input {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 5px;
  padding: 12px 18px;
  font-size: 13.5px;
  color: var(--white);
  font-family: var(--font-body);
  width: 260px;
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-form input:focus { border-color: var(--gold-warm); }


/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,.65);
  font-weight: 300;
}
.footer-body {
  padding: 52px 48px 36px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-logo-wrap {
  margin-bottom: 20px;
  display: inline-block;
  line-height: 0;
}
.footer-logo-wrap img {
  display: block;
  height: 44px;
  width: auto;
  border-radius: 0;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,.48);
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 270px;
}
.footer-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  line-height: 1.4;
}
.footer-contact-row svg {
  width: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold-muted);
}
.footer-contact-row a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.footer-contact-row a:hover { color: var(--gold-warm); }
.footer-diocese {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: rgba(123,191,184,.08);
  border: 1px solid rgba(123,191,184,.2);
  border-radius: 4px;
  font-size: 10.5px;
  color: var(--gold-warm);
  letter-spacing: .05em;
  margin-bottom: 18px;
}
.footer-diocese::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-muted);
  flex-shrink: 0;
}
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.36);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all .2s;
}
.social-icon:hover {
  background: rgba(123,191,184,.12);
  border-color: rgba(123,191,184,.3);
  color: var(--gold-warm);
}
.footer-col-heading {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(123,191,184,.2);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.46);
  text-decoration: none;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s;
}
.footer-col ul li a::before {
  content: '';
  width: 4px;
  height: 1px;
  background: var(--gold-muted);
  opacity: .5;
  flex-shrink: 0;
  transition: width .2s, opacity .2s;
}
.footer-col ul li a:hover { color: var(--gold-warm); }
.footer-col ul li a:hover::before { width: 8px; opacity: 1; }
.footer-col-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-cta-btn {
  display: block;
  text-align: center;
  padding: 9px 14px;
  border-radius: 5px;
  font-size: 12.5px;
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  transition: all .2s;
}
.footer-cta-teal { background: var(--gold-warm); color: var(--forest-deep); }
.footer-cta-teal:hover { background: var(--gold-muted); color: var(--white); }
.footer-cta-ghost {
  background: transparent;
  color: rgba(255,255,255,.46);
  border: 1px solid rgba(255,255,255,.14);
}
.footer-cta-ghost:hover { border-color: var(--gold-muted); color: var(--gold-warm); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 16px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom-left { font-size: 11.5px; color: rgba(255,255,255,.46); }
.footer-bottom-right {
  font-size: 11.5px;
  color: rgba(255,255,255,.46);
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-bottom-right a {
  font-size: 11.5px;
  color: rgba(255,255,255,.46);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom-right a:hover { color: var(--gold-warm); }
.footer-bottom-divider {
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,.12);
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  .container { padding: 0 24px; }

  .nav-utility,
  .nav-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-main {
    height: 92px;
  }

  .nav-logo img {
    height: 70px;
    max-width: 240px;
  }

  .nav-utility-left { display: none; }
  .nav-links,
  .nav-ctas { display: none !important; }
  .nav-hamburger { display: flex; }
  body.nav-open { overflow: hidden; }

  .nav-hero-bridge-inner { padding: 12px 20px; }
  .bridge-tag { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px;
  }
  .hero-card { display: none; }

  .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
  .programs-grid { grid-template-columns: 1fr; }
  .programs-intro-inner { flex-direction: column; align-items: flex-start; }
  .building-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }

  .cta-strip-inner { grid-template-columns: 1fr; }
  .cta-panel-divider { height: 1px; width: auto; }

  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }

  .footer-body {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 36px 24px 24px;
  }
  .footer-logo { font-size: 18px; }
  .footer-bottom {
    padding: 14px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .gallegos-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .gallegos-portrait { max-width: 320px; }
}

@media (max-width: 520px) {
  .nav-main {
    height: 86px;
  }

  .nav-logo img {
    height: 62px;
    max-width: 220px;
  }
}


/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════ */

.about-hero {
  background: var(--forest-deep);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(123,191,184,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,191,184,.035) 1px, transparent 1px);
  background-size: 72px 72px;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.about-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(255,255,255,.35);
  margin-bottom: 32px;
  font-weight: 300;
}
.about-hero-breadcrumb a { color: rgba(255,255,255,.35); transition: color .2s; }
.about-hero-breadcrumb a:hover { color: var(--gold-warm); }
.about-hero-breadcrumb span { color: rgba(255,255,255,.2); }
.about-hero-breadcrumb strong { color: rgba(255,255,255,.55); font-weight: 400; }
.about-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  max-width: 760px;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.about-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.58);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 40px;
}
.about-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.about-hero-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 40px;
}
.about-hero-pill {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.about-hero-pill:last-child { border-right: none; }
.about-hero-pill-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 8px;
}
.about-hero-pill-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  line-height: 1.3;
}

.about-subnav {
  background: var(--white);
  border-bottom: 1px solid var(--off-white);
  position: sticky;
  top: 112px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(11,25,41,.05);
}
.about-subnav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.about-subnav-inner::-webkit-scrollbar { display: none; }
.about-subnav-link {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  font-size: 12.5px;
  font-weight: 400;
  color: #6b7a8d;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  letter-spacing: .01em;
}
.about-subnav-link:hover { color: var(--forest-deep); }
.about-subnav-link.active {
  color: var(--gold-muted);
  border-bottom-color: var(--gold-warm);
  font-weight: 500;
}

.about-section {
  padding: var(--section-gap) 0;
  scroll-margin-top: 160px;
}
.about-section-alt { background: #F7F3EA; }
.about-section-dark { background: var(--forest-deep); }
.about-section-tinted {
  background: #FAF8F3;
  border-top: 1px solid #DDD8CC;
  border-bottom: 1px solid #DDD8CC;
}

.about-section-header { margin-bottom: 48px; }
.about-section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.about-section-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--forest-deep);
  line-height: 1.15;
}
.about-section-heading-light { color: var(--white); }
.about-section-intro {
  font-size: 15px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.8;
  max-width: 640px;
  margin-top: 16px;
}
.about-section-intro-light { color: rgba(255,255,255,.6); }

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.mission-body {
  font-size: 15px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.85;
}
.mission-body p + p { margin-top: 20px; }
.mission-pillars {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mission-pillar {
  background: var(--white);
  border: 1px solid var(--off-white);
  border-left: 3px solid var(--gold-warm);
  padding: 20px 24px;
  transition: border-left-color .2s, box-shadow .2s;
}
.mission-pillar:hover {
  border-left-color: var(--gold-muted);
  box-shadow: 0 4px 20px rgba(11,25,41,.07);
}
.mission-pillar-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 6px;
}
.mission-pillar-body {
  font-size: 13px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.6;
}

.history-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.history-body {
  font-size: 15px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.85;
}
.history-body p + p { margin-top: 20px; }
.history-aside {
  background: var(--forest-deep);
  border-radius: 10px;
  padding: 36px;
  color: var(--white);
}
.history-aside-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 16px;
}
.history-aside-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
}
.history-aside-body {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

.staff-group { margin-bottom: 56px; }
.staff-group:last-child { margin-bottom: 0; }
.staff-group-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--off-white);
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.staff-card {
  background: var(--white);
  border: 1px solid var(--off-white);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .3s, transform .25s;
}
.staff-card:hover {
  box-shadow: 0 8px 32px rgba(11,25,41,.09);
  transform: translateY(-3px);
}
.staff-photo {
  aspect-ratio: 1 / 1;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.staff-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.staff-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
}
.staff-silhouette-head {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11,25,41,.1);
}
.staff-silhouette-body {
  width: 68px;
  height: 40px;
  border-radius: 34px 34px 0 0;
  background: rgba(11,25,41,.08);
}
.staff-info { padding: 20px 22px 24px; }
.staff-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 3px;
  line-height: 1.2;
}
.staff-title {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 12px;
}
.staff-bio {
  font-size: 13px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.65;
}
.staff-card.placeholder .staff-name { color: rgba(11,25,41,.3); font-style: italic; }
.staff-card.placeholder .staff-title { color: rgba(79,168,160,.4); }
.staff-card.placeholder .staff-bio { color: rgba(11,25,41,.25); font-style: italic; }
.staff-card.placeholder .staff-photo { background: var(--nav-text-dim); }


/* ─────────────────────────────────────────
   OUR CAMPUS
───────────────────────────────────────── */

.campus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.campus-body {
  font-size: 15px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.95;
}
.campus-body p + p { margin-top: 24px; }
.campus-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.campus-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
}
.campus-photo.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.campus-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transition: transform .5s ease;
}
.campus-photo:hover img { transform: scale(1.02); }
.campus-photo-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(11,25,41,.3);
  border: 1px dashed rgba(11,25,41,.12);
  padding: 6px 12px;
  border-radius: 4px;
}

.campus-coming-soon {
  background: var(--white);
  border: 1px solid var(--off-white);
  border-radius: 12px;
  padding: 40px 36px;
  text-align: center;
  margin: 36px 0 64px;
  box-shadow: 0 4px 18px rgba(11,25,41,.03);
}
.campus-coming-soon-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.campus-coming-soon-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-muted);
}
.campus-coming-soon-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 12px;
}
.campus-coming-soon-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 300;
  color: #6b7a8d;
  line-height: 1.8;
}


/* ─────────────────────────────────────────
   ACCREDITATION
───────────────────────────────────────── */

.accreditation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.accreditation-card {
  background: var(--white);
  border: 1px solid var(--off-white);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 4px 18px rgba(11,25,41,.03);
}
.accreditation-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.status-pending {
  background: rgba(250,200,80,.12);
  color: #9a7a00;
  border: 1px solid rgba(250,200,80,.3);
}
.status-active {
  background: rgba(123,191,184,.12);
  color: var(--gold-muted);
  border: 1px solid rgba(123,191,184,.25);
}
.accreditation-card-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}
.accreditation-card-body {
  font-size: 13.5px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.8;
}
.accreditation-note {
  background: var(--off-white);
  border-left: 3px solid var(--gold-warm);
  border-radius: 8px;
  padding: 22px 26px;
  margin-top: 28px;
  font-size: 13.5px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.8;
}


/* ─────────────────────────────────────────
   SECTION SPACING TWEAKS
───────────────────────────────────────── */

#our-campus { padding-bottom: 80px; }
#transparency-goals,
.about-section-alt {
  padding-top: 72px;
  margin-top: 0;
}


/* ── Report Card ── */
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.report-card {
  background: var(--white);
  border: 1px solid var(--off-white);
  border-radius: 10px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s;
}
.report-card:hover { box-shadow: 0 8px 32px rgba(11,25,41,.08); }
.report-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold-warm), transparent);
}
.report-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.report-card-icon svg { width: 18px; height: 18px; color: var(--gold-muted); }
.report-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 10px;
}
.report-card-body {
  font-size: 13.5px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.7;
}
.report-card-placeholder {
  font-size: 12px;
  font-style: italic;
  color: rgba(11,25,41,.3);
  margin-top: 12px;
}


/* ── Principal's Message ── */
.principal-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.principal-portrait { position: sticky; top: 180px; }
.principal-photo {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: var(--forest-light);
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  position: relative;
}
.principal-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.principal-photo-placeholder {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.principal-silhouette-head {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(123,191,184,.15);
}
.principal-silhouette-body {
  width: 80px;
  height: 48px;
  border-radius: 40px 40px 0 0;
  background: rgba(123,191,184,.1);
}
.principal-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(11,25,41,.6), transparent);
}
.principal-name-block { text-align: center; }
.principal-name-block .staff-name { color: var(--white); font-size: 20px; }
.principal-name-block .staff-title { color: var(--gold-warm); }
.principal-letter { max-width: 640px; }
.principal-salutation {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 28px;
}
.principal-body {
  font-size: 15.5px;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.9;
  margin-bottom: 20px;
}
.principal-closing {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.principal-closing-phrase {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.principal-sig-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-warm);
  margin-bottom: 3px;
}
.principal-sig-title {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}


/* ── About bottom CTA ── */
.about-cta {
  background: var(--forest-light);
  padding: 72px 0;
  text-align: center;
}
.about-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  margin-bottom: 14px;
}
.about-cta-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.about-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* About responsive */
@media (max-width: 960px) {
  .about-hero-inner { padding: 0 24px; }
  .about-hero-pills { grid-template-columns: 1fr; gap: 0; }
  .about-hero-pill {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .about-hero-pill:last-child { border-bottom: none; }
  .about-subnav-inner { padding: 0 24px; }
  .about-section { padding: 56px 0; }
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .history-inner { grid-template-columns: 1fr; gap: 36px; }
  .staff-grid { grid-template-columns: 1fr 1fr; }
  .campus-inner { grid-template-columns: 1fr; }
  .accreditation-grid { grid-template-columns: 1fr; }
  .report-grid { grid-template-columns: 1fr; }
  .principal-inner { grid-template-columns: 1fr; }
  .principal-portrait {
    position: static;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .principal-photo {
    aspect-ratio: 1 / 1;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}


/* ══════════════════════════════════════════════════════════════
   ACADEMICS PAGE
   ══════════════════════════════════════════════════════════════ */

.curriculum-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.curriculum-body {
  font-size: 15px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.85;
}
.curriculum-body p + p { margin-top: 20px; }
.curriculum-subjects {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.curriculum-subject-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 14px;
  margin-top: 32px;
}
.curriculum-subject-label:first-child { margin-top: 0; }
.subject-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.subject-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--white);
  border: 1px solid var(--off-white);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 400;
  color: var(--forest-deep);
  transition: border-color .2s, color .2s, box-shadow .2s;
}
.subject-tag:hover {
  border-color: var(--gold-warm);
  color: var(--gold-muted);
  box-shadow: 0 2px 12px rgba(201,162,58,.12);
}
.subject-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-warm);
  flex-shrink: 0;
  opacity: .7;
}
.curriculum-callout {
  margin-top: 32px;
  background: var(--forest-deep);
  border-radius: 10px;
  padding: 28px 32px;
  color: var(--white);
}
.curriculum-callout-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 10px;
}
.curriculum-callout-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: rgba(255,255,255,.88);
}

.grade-levels {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.grade-band {
  background: var(--white);
  border: 1px solid var(--off-white);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .25s;
}
.grade-band:hover { box-shadow: 0 6px 28px rgba(11,25,41,.08); }
.grade-band-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  position: relative;
}
.grade-band-marker {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s;
}
.grade-band:hover .grade-band-marker { background: rgba(201,162,58,.15); }
.grade-band-marker svg {
  width: 20px;
  height: 20px;
  color: var(--gold-muted);
}
.grade-band-title-group { flex: 1; }
.grade-band-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--forest-deep);
  line-height: 1.1;
  margin-bottom: 3px;
}
.grade-band-subtitle {
  font-size: 12px;
  font-weight: 300;
  color: #6b7a8d;
}
.grade-band-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .3s;
}
.grade-band.open .grade-band-toggle {
  background: var(--gold-warm);
  transform: rotate(180deg);
}
.grade-band-toggle svg {
  width: 12px;
  height: 12px;
  color: var(--forest-deep);
}
.grade-band.open .grade-band-toggle svg { color: var(--white); }
.grade-band-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 28px;
}
.grade-band.open .grade-band-body {
  max-height: 800px;
  padding: 0 28px 28px;
}
.grade-band-divider {
  height: 1px;
  background: var(--off-white);
  margin-bottom: 24px;
}
.grade-band-intro {
  font-size: 14px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 20px;
}
.standards-group { margin-bottom: 20px; }
.standards-group:last-child { margin-bottom: 0; }
.standards-group-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 10px;
}
.standards-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.standards-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.5;
}
.standards-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-warm);
  flex-shrink: 0;
  margin-top: 6px;
  opacity: .7;
}

.standards-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.standards-card {
  background: var(--white);
  border: 1px solid var(--off-white);
  border-radius: 10px;
  padding: 28px 32px;
  border-top: 3px solid var(--gold-warm);
  transition: box-shadow .25s;
}
.standards-card:hover { box-shadow: 0 8px 32px rgba(11,25,41,.08); }
.standards-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.standards-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-muted);
}
.standards-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 14px;
}
.standards-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.standards-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.5;
}
.standards-card ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-muted);
  flex-shrink: 0;
  margin-top: 6px;
  opacity: .6;
}
.standards-note {
  background: var(--forest-deep);
  border-radius: 10px;
  padding: 28px 32px;
  margin-top: 24px;
  color: var(--white);
  grid-column: 1 / -1;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.standards-note-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201,162,58,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.standards-note-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-warm);
}
.standards-note-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.standards-note-body {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

.curmaps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.curmaps-body {
  font-size: 15px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.85;
}
.curmaps-body p + p { margin-top: 20px; }
.curmaps-visual {
  background: var(--white);
  border: 1px solid var(--off-white);
  border-radius: 12px;
  padding: 36px;
}
.curmaps-visual-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-muted);
  text-align: center;
  margin-bottom: 28px;
}
.curmaps-web {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  position: relative;
}
.curmap-node {
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  transition: transform .2s;
}
.curmap-node:hover { transform: scale(1.04); }
.curmap-center {
  background: var(--forest-deep);
  color: var(--gold-warm);
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}
.curmap-node-a {
  background: rgba(201,162,58,.1);
  color: var(--forest-deep);
  border: 1px solid rgba(201,162,58,.25);
}
.curmap-node-b {
  background: rgba(28,61,36,.07);
  color: var(--forest-deep);
  border: 1px solid rgba(28,61,36,.15);
}
.curmaps-caption {
  font-size: 11.5px;
  font-weight: 300;
  color: #6b7a8d;
  text-align: center;
  margin-top: 18px;
  line-height: 1.5;
}

.arts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.arts-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  padding: 28px 24px;
  transition: background .25s, border-color .25s;
}
.arts-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,162,58,.25);
}
.arts-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201,162,58,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.arts-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-warm);
}
.arts-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.arts-card-body {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.arts-research {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 36px 40px;
}
.arts-research-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 20px;
}
.arts-research-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.arts-research-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
.arts-research-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold-warm);
  flex-shrink: 0;
  line-height: 1.1;
  width: 24px;
  opacity: .6;
}

.road-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 56px;
}
.road-body {
  font-size: 15px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.85;
}
.road-body p + p { margin-top: 20px; }
.road-aside {
  background: var(--forest-deep);
  border-radius: 10px;
  padding: 32px;
  color: var(--white);
}
.road-aside-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 14px;
}
.road-aside-quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
}
.road-aside-body {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.road-destinations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.road-destination-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--off-white);
  transition: box-shadow .25s, transform .25s;
}
.road-destination-card:hover {
  box-shadow: 0 8px 32px rgba(11,25,41,.09);
  transform: translateY(-3px);
}
.road-destination-header {
  padding: 20px 24px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--off-white);
}
.road-destination-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.road-destination-badge svg {
  width: 18px;
  height: 18px;
  color: var(--gold-warm);
}
.road-destination-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--forest-deep);
}
.road-destination-sub {
  font-size: 11.5px;
  font-weight: 300;
  color: #6b7a8d;
  margin-top: 2px;
}
.road-destination-body {
  padding: 20px 24px;
  background: var(--white);
}
.road-destination-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.road-destination-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 300;
  color: #4a5568;
  line-height: 1.5;
}
.road-destination-body ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-warm);
  flex-shrink: 0;
  margin-top: 6px;
  opacity: .6;
}

.lc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.lc-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
}
.lc-body p + p { margin-top: 20px; }
.lc-body strong { color: rgba(255,255,255,.88); font-weight: 400; }
.lc-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lc-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 24px 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: background .2s, border-color .2s;
}
.lc-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,162,58,.2);
}
.lc-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201,162,58,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lc-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-warm);
}
.lc-card-title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  margin-bottom: 5px;
}
.lc-card-body {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.academics-cta {
  background: var(--forest-light);
  padding: 72px 0;
  text-align: center;
}
.academics-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  margin-bottom: 14px;
}
.academics-cta-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.academics-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .curriculum-grid,
  .curmaps-grid,
  .road-intro-grid,
  .lc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .standards-page-grid { grid-template-columns: 1fr; }
  .arts-grid { grid-template-columns: 1fr; }
  .road-destinations { grid-template-columns: 1fr; }
  .curmaps-web { gap: 6px; }
  .grade-band-header { padding: 18px 20px; }
  .grade-band.open .grade-band-body { padding: 0 20px 24px; }
}
