/* ══════════════════════════════════════════════════════════
   DESIGN SYSTEM TOKENS & ROOT VARIABLES
   ══════════════════════════════════════════════════════════ */
:root {
  /* Colors - Oxford SBS Rutherford Theme */
  --oxford-blue: #002147;       /* Oxford Blue */
  --logo-blue: #24344d;         /* Marketplace Apostles Logo Blue */
  --oxford-gold: #ffd100;       /* Oxford Gold Accent */
  --brand-red: #d73232;         /* Brand Red Accent */
  --forest-green: #00524d;      /* Secondary Departmental Green */
  --theme-charcoal: #18171c;    /* Dark Theme BG */
  --soft-cream: #f6f4f1;        /* Light Theme BG */
  --muted-grey: #f4f4f4;        /* Card BG */
  --white: #ffffff;
  
  /* Layout Text colors */
  --dark-text: #18171c;
  --light-text: #f6f4f1;
  
  /* Compatibility mappings for existing classes */
  --gold: #ffd100;
  --gold-lt: #ffd100;
  --gold-pale: #fff3a8;
  --red-accent: #d73232;
  --ink: #f6f4f1;               /* Light BG by default */
  --ink-2: #18171c;             /* Dark BG */
  --ink-3: #ffffff;             /* Card Hover BG */
  --ink-4: #e5e5e5;             /* Border lines */
  --cream: #18171c;             /* Dark Text by default */
  
  /* Transparency veils */
  --fog: rgba(24, 23, 28, 0.75);
  --fog-2: rgba(24, 23, 28, 0.5);
  --fog-3: rgba(24, 23, 28, 0.1);
  
  /* Fonts */
  --serif: 'Libre Baskerville', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Spacings & Layouts */
  --nav-h: 82px;
  --gutter: clamp(1.5rem, 5vw, 6rem);
  --max: 1200px;
  --radius: 0px;                /* Sharp corners matching Oxford SBS */
  
  /* Timing / Transitions */
  --ease: cubic-bezier(.25, .46, .45, .94);
  --transition-smooth: all 0.35s cubic-bezier(.25, .46, .45, .94);
}

/* ══════════════════════════════════════════════════════════
   BASE STYLES
   ══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ══════════════════════════════════════════════════════════
   UTILITY & WRAPPERS
   ══════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Section Header Structure */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.5rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-lt);
  flex-shrink: 0;
}

.eyebrow.center {
  display: flex;
  justify-content: center;
}

.eyebrow.center::before {
  display: none;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-lt);
}

.section-body {
  font-size: clamp(0.85rem, 1.5vw, 0.98rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--fog);
  max-width: 650px;
  margin-inline: auto;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 550;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  background: transparent;
  border-bottom: 1px solid rgba(248, 243, 232, 0.05);
  transition: var(--transition-smooth);
}

.site-header.js-is-sticky {
  background: rgba(255, 255, 255, 0.98);
  color: var(--dark-text);
  height: 72px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--oxford-blue);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.site-header.js-is-sticky .nav-link {
  color: var(--dark-text);
}

.site-header.js-is-sticky .nav-brand__name {
  color: var(--oxford-blue);
}

.site-header.js-is-sticky .nav-brand__sub {
  color: rgba(0, 33, 71, 0.65);
}

.site-header.js-is-sticky .hamburger__line {
  background: var(--dark-text);
}

/* Branding Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand__logo {
  height: 52px;
  width: auto;
  border-radius: 50%;
  border: 1px solid rgba(221, 184, 74, 0.3);
  transition: var(--transition-smooth);
}

.site-header.js-is-sticky .nav-brand__logo {
  height: 44px;
}

.nav-brand__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-brand__name {
  font-family: var(--serif);
  font-size: clamp(0.85rem, 1.8vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--gold-lt);
  line-height: 1.1;
}

.nav-brand__sub {
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(221, 184, 74, 0.45);
}

/* Navigation Links & Megamenu */
.nav-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  min-height: var(--nav-h);
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.nav-link:hover, .nav-item:hover .nav-link {
  color: var(--gold-lt);
}

/* Oxford SBS Megamenu Dropdown styling */
.megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(850px, 90vw);
  background: var(--white);
  border: 1px solid var(--soft-cream);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 560;
}

.nav-item:hover .megamenu {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Megamenu Left Side (CTA Promo Column) */
.megamenu-promo {
  border-right: 1px solid var(--soft-cream);
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.megamenu-promo__title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--oxford-blue);
  margin-bottom: 0.75rem;
}

.megamenu-promo__desc {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--dark-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.btn-megamenu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border-bottom: 1.5px solid var(--gold-lt);
  padding-bottom: 4px;
}

.btn-megamenu:hover {
  color: var(--gold-pale);
  border-color: var(--gold-pale);
}

/* Megamenu Right Side (Links Columns) */
.megamenu-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.megamenu-section-title {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxford-blue);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--soft-cream);
  padding-bottom: 6px;
}

.megamenu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.megamenu-list-link {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--dark-text);
}

.megamenu-list-link span {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--oxford-blue);
  margin-right: 6px;
}

.megamenu-list-link:hover {
  color: var(--oxford-blue);
  padding-left: 4px;
}

/* Header CTAs */
.nav-cta {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold-lt);
  min-height: 46px;
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ══════════════════════════════════════════════════════════
   HERO BANNER
   ══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: clamp(7rem, 12vh, 10rem) clamp(5rem, 8vh, 6rem);
  padding-inline: var(--gutter);
  overflow: hidden;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: clamp(3rem, 6vh, 5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: clamp(2rem, 4vh, 3rem);
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.hero-stat {
  padding: 0.5rem 1rem;
}

.hero-stat__n {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--oxford-gold);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.hero-stat__l {
  font-size: 0.7rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/hero_bg.jpg') center/cover no-repeat;
  transform: scale(1.02);
  animation: bgZoom 15s ease infinite alternate;
}

@keyframes bgZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 33, 71, 0.85) 0%, rgba(24, 23, 28, 0.45) 50%, rgba(24, 23, 28, 0.98) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(192, 144, 32, 0.35);
  padding: 0.45rem 1.25rem;
  margin-bottom: 1.75rem;
  background: rgba(16, 14, 8, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 4px;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7.8vw, 5.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--oxford-gold);
}

.hero__sub {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 2.2vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--oxford-gold);
  margin-bottom: 2.25rem;
}

.hero__body {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  line-height: 1.92;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

/* Button system */
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.btn-gold {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 144, 32, 0.3);
}

.btn-outline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(248, 243, 232, 0.25);
  color: rgba(248, 243, 232, 0.75);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  background: rgba(192, 144, 32, 0.05);
  transform: translateY(-2px);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll span {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 243, 232, 0.25);
}

.scroll-wire {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: wirePulse 2.2s ease-in-out infinite;
}

@keyframes wirePulse {
  0%, 100% { opacity: .18; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ══════════════════════════════════════════════════════════
   STATS BAND
   ══════════════════════════════════════════════════════════ */
.stats-band {
  background: var(--ink-2);
  border-top: 1px solid rgba(255, 209, 0, 0.15);
  border-bottom: 1px solid rgba(255, 209, 0, 0.15);
  padding: 4.5rem var(--gutter);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: var(--max);
  margin-inline: auto;
  gap: 2rem;
}

.stat {
  padding: 1.5rem 2rem;
  text-align: center;
  position: relative;
}

.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(192, 144, 32, 0.15);
}

.stat__n {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 0.65rem;
}

.stat__l {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fog-2);
}

/* ══════════════════════════════════════════════════════════
   ABOUT US SECTION
   ══════════════════════════════════════════════════════════ */
#about {
  padding: 8rem var(--gutter);
  background: var(--soft-cream);
  color: var(--dark-text);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  max-width: var(--max);
  margin-inline: auto;
}

.about-imgs {
  position: relative;
}

.about-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Oxford SBS Offset accent circle */
.about-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 44%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  border: 6px solid var(--ink);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  border-radius: var(--radius);
}

.about-strap {
  position: absolute;
  top: 4rem;
  left: -1.25rem;
  width: 3px;
  height: 52%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.5;
}

/* About Text & Blockquote Style */
.about-text blockquote {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.62;
  color: var(--dark-text);
  padding: 2.5rem 1.75rem 1.75rem 2.25rem;
  margin-top: 2.75rem;
  border-left: 3px solid var(--oxford-gold);
  background: var(--muted-grey);
  z-index: 1;
  overflow: hidden;
}

/* Testimony Offset Circle Visual Motif (Oxford SBS Testimonial Accent) */
.about-text blockquote::before {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 130px;
  height: 130px;
  background: var(--oxford-gold);
  opacity: 0.12;
  border-radius: 50%;
  z-index: -1;
}

.about-text blockquote cite {
  display: block;
  margin-top: 1.15rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxford-blue);
}

/* ══════════════════════════════════════════════════════════
   FOUNDER PROFILE (THE PREFECT)
   ══════════════════════════════════════════════════════════ */
#prefect {
  padding: 8rem var(--gutter);
  background: var(--theme-charcoal);
  color: var(--light-text);
}

#prefect .section-title {
  color: var(--white);
}

#prefect .eyebrow {
  color: var(--oxford-gold);
}

.prefect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  max-width: var(--max);
  margin-inline: auto;
}

.prefect-photo-wrapper {
  position: relative;
  max-width: 440px;
  margin-inline: auto;
}

.prefect-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(221, 184, 74, 0.2);
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.prefect-photo-wrapper:hover .prefect-photo {
  transform: scale(1.02);
  border-color: var(--gold);
}

.prefect-photo-bg-decor {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border: 2px solid rgba(192, 144, 32, 0.3);
  z-index: 1;
  border-radius: var(--radius);
  transition: var(--transition-smooth);
}

.prefect-photo-wrapper:hover .prefect-photo-bg-decor {
  top: -1.75rem;
  left: -1.75rem;
  right: 1.75rem;
  bottom: 1.75rem;
  border-color: var(--gold-lt);
}

.prefect-text {
  display: flex;
  flex-direction: column;
}

.prefect-bio-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.prefect-bio-content p {
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(246, 244, 241, 0.75);
  text-align: justify;
}

.prefect-bio-content p strong {
  color: var(--white);
  font-weight: 600;
}

.prefect-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.prefect-actions .btn-gold, .prefect-actions .btn-outline {
  min-height: 46px;
  padding: 0.85rem 2rem;
}

/* ══════════════════════════════════════════════════════════
   PROGRAMS
   ══════════════════════════════════════════════════════════ */
#programs {
  padding: 8rem var(--gutter);
  background: var(--theme-charcoal);
  color: var(--light-text);
}

#programs .section-title {
  color: var(--white);
}

#programs .eyebrow {
  color: var(--oxford-gold);
}

.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  max-width: var(--max);
  margin-inline: auto;
  gap: 1.5rem;
  background: transparent;
}

/* SBS Column-reverse card style */
.prog-card {
  background: #201e1a;
  color: var(--light-text);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}

.prog-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--oxford-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.prog-card:hover {
  background: #282620;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 209, 0, 0.25);
}

.prog-card:hover::after {
  transform: scaleX(1);
}

.prog-body-wrapper {
  margin-top: 0.5rem;
}

.prog-tag {
  align-self: flex-start;
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--oxford-gold);
  border: 1px solid rgba(255, 209, 0, 0.32);
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.25rem;
  background: rgba(255, 209, 0, 0.05);
}

.prog-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.prog-focus {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(246, 244, 241, 0.75);
  margin-bottom: 1.5rem;
}

.prog-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.prog-list li {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(246, 244, 241, 0.55);
  padding-left: 0.95rem;
  position: relative;
  transition: var(--transition-smooth);
}

.prog-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--oxford-gold);
  opacity: 0.45;
}

.prog-card:hover .prog-list li {
  color: var(--white);
}

/* Enrollment CTA Banner */
.prog-enroll-cta {
  margin-top: 4.5rem;
  background: var(--oxford-blue);
  border: 1px solid rgba(255, 209, 0, 0.3);
  border-left: 4px solid var(--oxford-gold);
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: var(--max);
  margin-inline: auto;
  text-align: left;
}

.prog-enroll-cta__content {
  max-width: 600px;
}

.prog-enroll-cta__title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.prog-enroll-cta__text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(246, 244, 241, 0.75);
}

/* ══════════════════════════════════════════════════════════
   SEVEN MOUNTAINS OF SOCIETAL INFLUENCE
   ══════════════════════════════════════════════════════════ */
#mountains {
  background: var(--logo-blue);
  color: var(--light-text);
  padding: 0;
}

#mountains .section-title {
  color: var(--white);
}

#mountains .eyebrow {
  color: var(--oxford-gold);
}

/* Mountain Banner */
.mtn-banner {
  position: relative;
  height: clamp(340px, 50vh, 560px);
  display: flex;
  align-items: flex-end;
  padding: 4.5rem var(--gutter);
  overflow: hidden;
}

.mtn-banner__photo {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1633414219584-c47e32c0df5d?w=1800&q=80&fit=crop&crop=center') center/cover no-repeat;
  transform: scale(1.01);
}

.mtn-banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--logo-blue) 0%, rgba(36, 52, 77, 0.6) 65%, rgba(36, 52, 77, 0.2) 100%);
}

.mtn-banner__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.mtn-banner__verse {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--oxford-gold);
  margin-top: 1rem;
  line-height: 1.8;
}

/* Mountain Grid */
.mtn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 var(--gutter) 8rem;
  gap: 1.25rem;
}

.mtn-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
}

.mtn-card__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.85s var(--ease);
}

.mtn-card:hover .mtn-card__photo {
  transform: scale(1.08);
}

.mtn-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 6, 4, 0.96) 0%, rgba(8, 6, 4, 0.35) 60%, rgba(8, 6, 4, 0.05) 100%);
  transition: background 0.4s;
}

.mtn-card:hover .mtn-card__veil {
  background: linear-gradient(to top, rgba(8, 6, 4, 1) 0%, rgba(8, 6, 4, 0.55) 60%, rgba(8, 6, 4, 0.12) 100%);
}

.mtn-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.mtn-card__num {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxford-gold);
  margin-bottom: 0.4rem;
}

.mtn-card__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.mtn-card__goal {
  font-size: 0.74rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(246, 244, 241, 0.85);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease), opacity 0.45s var(--ease);
}

.mtn-card:hover .mtn-card__goal, .mtn-card:focus-within .mtn-card__goal {
  max-height: 90px;
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════
   CURRICULUM & PURCHASE SECTION
   ══════════════════════════════════════════════════════════ */
#curriculum {
  padding: 8rem var(--gutter);
  background: var(--soft-cream);
  color: var(--dark-text);
}

.curr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  max-width: var(--max);
  margin-inline: auto;
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}

.curr-card {
  background: var(--white);
  border: 1px solid rgba(0, 33, 71, 0.05);
  border-top: 3.5px solid var(--oxford-blue);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.curr-card:hover {
  border-top-color: var(--oxford-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 33, 71, 0.05);
}

.curr-card__header {
  display: flex;
  flex-direction: column;
}

.curr-card__tag {
  align-self: flex-start;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxford-blue);
  background: rgba(0, 33, 71, 0.05);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.75rem;
}

.curr-card__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--oxford-blue);
}

.curr-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
}

.curr-card__list li {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--dark-text);
  padding-left: 1.15rem;
  position: relative;
  line-height: 1.5;
}

.curr-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--oxford-gold);
  font-weight: 700;
}

/* Bottom Purchase Info Box */
.curr-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  max-width: var(--max);
  margin-inline: auto;
  align-items: center;
  border-top: 1.5px solid #e2cdc6;
  padding-top: 3.5rem;
}

.curr-delivery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.curr-delivery__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--oxford-blue);
}

.curr-delivery__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0;
}

.curr-delivery__list li {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--dark-text);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.curr-delivery__list li span {
  color: var(--oxford-gold);
  font-weight: bold;
}

.curr-cta-box {
  background: var(--white);
  border: 1px solid rgba(0, 33, 71, 0.06);
  border-left: 4px solid var(--oxford-gold);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.curr-cta-box__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--oxford-blue);
}

.curr-cta-box__text {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fog);
}

.curr-cta-box__actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.curr-cta-box__actions .btn-gold,
.curr-cta-box__actions .btn-outline {
  min-height: 44px;
  padding: 0.75rem 1.8rem;
  font-size: 0.65rem;
}

.curr-cta-box__actions .btn-outline {
  border-color: #d2cdc6;
  color: var(--dark-text);
}

.curr-cta-box__actions .btn-outline:hover {
  border-color: var(--oxford-blue);
  color: var(--oxford-blue);
  background: rgba(0, 33, 71, 0.03);
}

@media (max-width: 960px) {
  .curr-info {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .curr-cta-box {
    padding: 2rem 1.5rem;
  }
  .curr-cta-box__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .curr-cta-box__actions .btn-gold,
  .curr-cta-box__actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════
   OPERATIONAL ARMS
   ══════════════════════════════════════════════════════════ */
#arms {
  padding: 8rem var(--gutter);
  background: var(--theme-charcoal);
  color: var(--light-text);
}

#arms .section-title {
  color: var(--white);
}

#arms .eyebrow {
  color: var(--oxford-gold);
}

#arms .arm-item__name {
  color: var(--white);
}

#arms .arm-item__abbr {
  color: var(--oxford-gold);
}

#arms .arm-item__desc {
  color: rgba(246, 244, 241, 0.65);
}

#arms .arm-item__n {
  color: var(--oxford-gold);
  border-color: rgba(255, 209, 0, 0.35);
}

.arms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  max-width: var(--max);
  margin-inline: auto;
}

.arms-photo-wrap {
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.arms-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
}

.arms-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 6, 4, 0.8) 0%, transparent 50%);
}

.arms-list {
  display: flex;
  flex-direction: column;
}

.arm-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(192, 144, 32, 0.08);
  transition: var(--transition-smooth);
}

.arm-item:hover {
  border-color: rgba(192, 144, 32, 0.35);
  padding-left: 8px;
}

.arm-item:last-child {
  border-bottom: none;
}

.arm-item__n {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: rgba(192, 144, 32, 0.25);
  min-width: 2.2rem;
  line-height: 1;
  padding-top: 4px;
  flex-shrink: 0;
}

.arm-item__abbr {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.arm-item__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.arm-item__desc {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 243, 232, 0.45);
}

/* ══════════════════════════════════════════════════════════
   CALL TO ACTION (CTA)
   ══════════════════════════════════════════════════════════ */
#cta {
  position: relative;
  padding: 10rem var(--gutter);
  text-align: center;
  background: var(--oxford-blue);
  color: var(--light-text);
  border-top: 2px solid var(--oxford-gold);
  overflow: hidden;
}

#cta .cta__title {
  color: var(--white);
}

#cta .cta__text {
  color: rgba(246, 244, 241, 0.75);
}

#cta .cta__verse {
  color: var(--oxford-gold);
}

.cta__photo {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1531482615713-2afd69097998?w=1600&q=80&fit=crop&crop=center') center/cover no-repeat;
  opacity: 0.06;
}

.cta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(192, 144, 32, 0.06) 0%, transparent 70%);
}

.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: auto;
}

.cta__verse {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(221, 184, 74, 0.6);
  margin-bottom: 2.75rem;
  line-height: 1.85;
}

.cta__verse cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(221, 184, 74, 0.35);
}

.cta__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.cta__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-lt);
}

.cta__text {
  font-size: clamp(0.85rem, 1.5vw, 0.98rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--fog);
  margin-bottom: 3rem;
}

.cta__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer {
  padding: 4.5rem var(--gutter) 2.5rem;
  background: var(--oxford-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr 1.5fr;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  max-width: var(--max);
  margin-inline: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col--brand {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand__logo {
  height: 48px;
  width: auto;
  border-radius: 50%;
  border: 1px solid rgba(221, 184, 74, 0.3);
  transition: var(--transition-smooth);
}

.footer-brand__name {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.footer-brand__sub {
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.footer-creed {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 320px;
  margin-top: 1.5rem;
  text-align: left;
}

.footer-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxford-gold);
  margin-bottom: 1.5rem;
}

.footer-links, .footer-initiatives, .footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--oxford-gold);
  padding-left: 4px;
}

.footer-initiatives li {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}

.init-star {
  color: var(--oxford-gold);
  font-size: 0.7rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.contact-value {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}

a.contact-value {
  transition: var(--transition-smooth);
}

a.contact-value:hover {
  color: var(--oxford-gold);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background: var(--oxford-gold);
  border-color: var(--oxford-gold);
}

.footer-socials a svg {
  width: 15px;
  height: 15px;
  fill: rgba(255, 255, 255, 0.7);
  transition: fill 0.25s;
}

.footer-socials a:hover svg {
  fill: var(--theme-charcoal);
}

.footer-copyright {
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

/* ══════════════════════════════════════════════════════════
   MOBILE NAVIGATION DRAWER
   ══════════════════════════════════════════════════════════ */
#nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(8, 6, 4, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

#nav-toggle:checked ~ .nav-drawer {
  opacity: 1;
  pointer-events: all;
}

body:has(#nav-toggle:checked) {
  overflow: hidden;
}

.nav-drawer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
}

.nav-drawer a {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(248, 243, 232, 0.65);
  letter-spacing: 0.01em;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.nav-drawer a:hover {
  color: var(--gold-pale);
}

.nav-drawer__cta {
  margin-top: 1.5rem;
  font-family: var(--sans) !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  font-style: normal !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 1rem 3rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold-lt) !important;
  width: 100%;
  text-align: center;
  justify-content: center;
}

.nav-drawer__cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
}

/* Hamburger button */
.hamburger {
  display: none;
  position: relative;
  z-index: 600;
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5.5px;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s, width 0.3s;
  transform-origin: center center;
}

#nav-toggle:checked ~ .site-header .hamburger .hamburger__line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

#nav-toggle:checked ~ .site-header .hamburger .hamburger__line:nth-child(2) {
  opacity: 0;
  width: 0;
}

#nav-toggle:checked ~ .site-header .hamburger .hamburger__line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
   ══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .stat + .stat::before {
    display: none;
  }
  
  .about-accent, .about-strap {
    display: none;
  }
  
  .arms-photo-wrap {
    order: 1;
  }
  
  #arms .arms-grid > div:last-child {
    order: 0;
  }
  
  .megamenu {
    display: none !important; /* disabled on tablet, drawer handles links */
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links, .nav-cta {
    display: none !important;
  }
  
  /* Drawer checked header overrides */
  #nav-toggle:checked ~ .site-header {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  #nav-toggle:checked ~ .site-header .nav-brand__name {
    color: var(--gold-lt) !important;
  }

  #nav-toggle:checked ~ .site-header .nav-brand__sub {
    color: rgba(221, 184, 74, 0.45) !important;
  }

  #nav-toggle:checked ~ .site-header .hamburger .hamburger__line {
    background: var(--white) !important;
  }

  /* Show Seven Mountains goal description on touch devices */
  .mtn-card__goal {
    max-height: none !important;
    opacity: 1 !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-col--brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 70px;
    --gutter: 1.25rem;
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin-inline: auto;
  }
  
  .btn-gold, .btn-outline {
    justify-content: center;
  }
  
  .prefect-bio-content p {
    text-align: left;
  }

  .prefect-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin-inline: auto;
  }

  .prefect-actions .btn-gold, .prefect-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .prog-enroll-cta {
    padding: 2.5rem 1.5rem;
    text-align: center;
    justify-content: center;
    border-left: none;
    border-top: 4px solid var(--oxford-gold);
  }

  .prog-enroll-cta__content {
    text-align: center;
  }
  
  .mtn-card {
    aspect-ratio: 16/10;
  }
  
  .cta__btns {
    flex-direction: column;
    align-items: center;
  }
  
  .cta__btns .btn-gold, .cta__btns .btn-outline {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-col--brand {
    grid-column: span 1;
  }
  
  .footer-creed {
    display: none;
  }
  
  .about-main, .arms-photo {
    aspect-ratio: 3/2;
  }
  
  .stat {
    padding: 1.25rem 1rem;
  }
}

/* ══════════════════════════════════════════════════════════
   ENROLLMENT PORTAL STYLE SPECIFICATIONS
   ══════════════════════════════════════════════════════════ */
.subpage-body {
  background: var(--soft-cream);
  color: var(--dark-text);
}

.enroll-main {
  padding-block: calc(var(--nav-h) + 3.5rem) 7.5rem;
  background: var(--soft-cream);
}

.container--form {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.form-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.form-title-h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--oxford-blue);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.form-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--fog);
  max-width: 600px;
  margin-inline: auto;
}

.enroll-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-card {
  background: var(--white);
  border: 1.5px solid rgba(0, 33, 71, 0.06);
  border-top: 4px solid var(--oxford-blue);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  border-radius: 0px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.form-card__legend {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--oxford-blue);
  padding-inline: 0.5rem;
  margin-bottom: 1.5rem;
  float: left;
  width: 100%;
  border-bottom: 1.5px solid var(--soft-cream);
  padding-bottom: 0.75rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .form-card {
    padding: 2.5rem 1.75rem;
  }
  
  .form-actions {
    justify-content: center;
  }
  
  .btn-submit-form {
    width: 100%;
    justify-content: center;
  }
  
  .success-card {
    padding: 3rem 1.5rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oxford-blue);
}

.form-group-help {
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--fog);
  margin-top: -0.25rem;
  line-height: 1.5;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  background: var(--white);
  border: 1.5px solid #d2cdc6;
  color: var(--dark-text);
  border-radius: 0px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-control:focus {
  border-color: var(--oxford-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 33, 71, 0.08);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23002147' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.form-control--textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-checkmark {
  height: 20px;
  width: 20px;
  background-color: var(--white);
  border: 1.5px solid #d2cdc6;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, background-color 0.2s;
  top: 2px;
}

.checkbox-container:hover input ~ .checkbox-checkmark {
  border-color: var(--oxford-blue);
}

.checkbox-container input:checked ~ .checkbox-checkmark {
  background-color: var(--oxford-blue);
  border-color: var(--oxford-blue);
}

.checkbox-checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkbox-checkmark::after {
  display: block;
}

.checkbox-label-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--dark-text);
  line-height: 1.5;
}

.checkbox-label-text strong {
  font-weight: 600;
  color: var(--oxford-blue);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.btn-submit-form {
  padding: 1.1rem 3.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
}

.success-card {
  background: var(--white);
  border: 1.5px solid rgba(0, 33, 71, 0.06);
  border-top: 4px solid var(--oxford-gold);
  padding: 4.5rem 3rem;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(15px);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 209, 0, 0.1);
  color: var(--oxford-gold);
  border-radius: 50%;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.success-title {
  font-family: var(--serif);
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--oxford-blue);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.success-message {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--fog);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.success-step-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oxford-gold);
  margin-bottom: 0.5rem;
}

.success-step-text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--dark-text);
  margin-bottom: 2rem;
  max-width: 480px;
}

.btn-whatsapp-success {
  padding: 1.1rem 2.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 0px;
}

