/* ─── DESIGN TOKENS ────────────────────────── */
:root {
  --ink: #100e0b;
  --cream: #f3ede3;
  --cream-dark: #ede5d8;
  --forest: #172e22;
  --forest-mid: #254b38;
  --forest-lt: #3a6b52;
  --amber: #b4712a;
  --amber-lt: #cc8c3a;
  --sand: #ddd5c5;
  --muted: #6a6055;
  --white: #fff;
  --red-acc: #8b2e2e;

  --ff-display: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --ff-body: 'Karla', 'Trebuchet MS', sans-serif;
  --ff-label: 'Oswald', 'Arial Narrow', sans-serif;

  --expo: cubic-bezier(0.16, 1, 0.3, 1);
  --inout: cubic-bezier(0.45, 0, 0.55, 1);

  --max: 1320px;
  --pad: clamp(1.5rem, 5vw, 5rem);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-body);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ─── NOISE GRAIN ──────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.028;
}

/* ─── UTILITY ──────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.label {
  font-family: var(--ff-label);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

.label--light {
  color: var(--amber-lt);
}

.label--muted {
  color: var(--muted);
}

.label--cream {
  color: var(--cream);
  opacity: 0.7;
}

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

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.75s var(--expo), transform 0.75s var(--expo);
}

.reveal-left.in {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.75s var(--expo), transform 0.75s var(--expo);
}

.reveal-right.in {
  opacity: 1;
  transform: none;
}

[data-delay="1"] {
  transition-delay: 0.08s;
}

[data-delay="2"] {
  transition-delay: 0.16s;
}

[data-delay="3"] {
  transition-delay: 0.24s;
}

[data-delay="4"] {
  transition-delay: 0.32s;
}

[data-delay="5"] {
  transition-delay: 0.40s;
}

[data-delay="6"] {
  transition-delay: 0.48s;
}

/* ─── HERO LINE REVEAL ─────────────────────── */
.line-wrap {
  overflow: hidden;
  display: block;
}

.line-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.9s var(--expo), opacity 0.6s ease;
}

.hero-loaded .line-inner {
  transform: translateY(0);
  opacity: 1;
}

.line-inner:nth-child(1) {
  transition-delay: 0.1s;
}

.line-inner:nth-child(2) {
  transition-delay: 0.22s;
}

.line-inner:nth-child(3) {
  transition-delay: 0.34s;
}

/* ─── NAVIGATION ───────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

#nav.scrolled {
  background: rgba(243, 237, 227, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--sand), 0 4px 24px rgba(16, 14, 11, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  transition: padding 0.4s ease;
}

#nav.scrolled .nav-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-logo__mark {
  font-family: var(--ff-label);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1;
}

.nav-logo__sub {
  font-family: var(--ff-body);
  font-size: 0.63rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.3s var(--expo);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-enroll {
  font-family: var(--ff-label);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  padding: 0.6rem 1.4rem;
  background: var(--forest);
  color: var(--cream);
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-enroll:hover {
  background: var(--amber);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s ease;
}


/* ─── HERO ─────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg-numeral {
  position: absolute;
  right: -0.05em;
  top: 50%;
  transform: translateY(-56%);
  font-family: var(--ff-display);
  font-size: clamp(280px, 35vw, 580px);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(16, 14, 11, 0.05);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}

.hero-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: center;
  padding: clamp(7rem, 12vw, 10rem) var(--pad) 4rem;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero-title-block {}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
  opacity: 0;
  transition: opacity 0.6s ease 0.05s;
}

.hero-loaded .hero-eyebrow {
  opacity: 1;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber);
}

.hero-display {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero-display .line-1 {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
}

.hero-display .line-2 {
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding-left: clamp(1.5rem, 4vw, 3.5rem);
  color: var(--forest-mid);
  margin-top: 0.12em;
  margin-bottom: 0.08em;
}

.hero-display .line-3 {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
}

.hero-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  opacity: 0;
  transition: opacity 0.7s ease 0.5s;
}

.hero-loaded .hero-rule {
  opacity: 1;
}

.hero-rule::before {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
}

.hero-rule span {
  font-family: var(--ff-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  white-space: nowrap;
}

.hero-tagline {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0;
  transition: opacity 0.7s ease 0.55s;
}

.hero-loaded .hero-tagline {
  opacity: 1;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--forest-lt);
  padding: 0.6rem 1rem;
  color: var(--forest-mid);
  background: rgba(23, 46, 34, 0.04);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease 0.6s, transform 0.6s var(--expo) 0.6s;
}

.hero-loaded .hero-badge {
  opacity: 1;
  transform: none;
}

.hero-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: pulse 2.5s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

.hero-badge span {
  font-family: var(--ff-label);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: var(--sand);
  opacity: 0;
  transition: opacity 0.5s ease 0.7s;
}

.hero-loaded .hero-divider {
  opacity: 1;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease 0.75s, transform 0.6s var(--expo) 0.75s;
}

.hero-loaded .hero-ctas {
  opacity: 1;
  transform: none;
}

.btn-primary {
  display: block;
  font-family: var(--ff-label);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 1.1rem 2rem;
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--amber);
  transform: translateX(-100%);
  transition: transform 0.4s var(--expo);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  padding: 0.9rem 2rem;
  border: 1px solid var(--sand);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: rgba(16, 14, 11, 0.03);
}

.hero-meta {
  opacity: 0;
  transition: opacity 0.6s ease 0.9s;
}

.hero-loaded .hero-meta {
  opacity: 1;
}

.hero-meta p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.8;
}

.hero-meta strong {
  font-weight: 600;
  color: var(--ink);
}

.hero-footer {
  background: var(--forest);
  padding: 1.2rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  transition: opacity 0.7s ease 1s;
}

.hero-loaded .hero-footer {
  opacity: 1;
}

.hero-footer-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-footer-item .icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--amber-lt);
  flex-shrink: 0;
}

.hero-footer-item p {
  font-size: 0.75rem;
  color: rgba(243, 237, 227, 0.6);
  line-height: 1.4;
}

.hero-footer-item strong {
  display: block;
  color: var(--cream);
  font-weight: 500;
  font-size: 0.82rem;
}

/* ─── TICKER ───────────────────────────────── */
#ticker {
  background: var(--amber);
  overflow: hidden;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  gap: 0;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 2.5rem;
  font-family: var(--ff-label);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

.ticker-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── MISSION ──────────────────────────────── */
#mission {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.mission-quote {
  position: relative;
  padding-top: 2rem;
}

.mission-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--amber);
}

.mission-quote blockquote {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.mission-quote blockquote em {
  font-style: normal;
  color: var(--forest-lt);
}

.mission-quote figcaption {
  margin-top: 1.8rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.mission-body {}

.mission-body h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.mission-body p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1rem;
}

.mission-body p:last-child {
  margin-bottom: 0;
}

/* ─── STATS BAND ───────────────────────────── */
#stats {
  background: var(--forest);
  overflow: hidden;
  position: relative;
}

.stats-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.015) 0px,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 80px);
  pointer-events: none;
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  position: relative;
}

.stat-item {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-number .suffix {
  font-size: 0.55em;
  font-weight: 300;
  color: var(--amber-lt);
}

.stat-label {
  margin-top: 0.6rem;
  font-family: var(--ff-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.stat-desc {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

/* ─── QUICK LINKS ──────────────────────────── */
#links {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.links-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--sand);
}

.links-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.links-header-note {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 22ch;
  text-align: right;
  line-height: 1.6;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.link-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--sand);
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}

.link-row:nth-child(odd) {
  padding-right: 3rem;
}

.link-row:nth-child(even) {
  padding-left: 3rem;
  border-left: 1px solid var(--sand);
}

.link-row::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--expo);
}

.link-row:hover::after {
  transform: scaleX(1);
}

.link-num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: color 0.3s;
}

.link-row:hover .link-num {
  color: var(--amber);
}

.link-text h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.link-row:hover .link-text h3 {
  color: var(--forest-mid);
}

.link-text p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

.link-arrow {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--sand);
  transition: transform 0.3s var(--expo), color 0.3s;
  margin-top: 0.2rem;
}

.link-row:hover .link-arrow {
  transform: translate(4px, -4px);
  color: var(--amber);
}


/* ─── HIGHLIGHTS ───────────────────────────── */
#highlights {
  background: var(--cream-dark);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.highlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}

.highlight-row:not(:last-child) {
  border-bottom: 1px solid var(--sand);
}

.highlight-row:nth-child(even) .highlight-visual {
  order: 2;
}

.highlight-row:nth-child(even) .highlight-content {
  order: 1;
}

.highlight-content {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  border-right: 1px solid var(--sand);
}

.highlight-row:nth-child(even) .highlight-content {
  border-right: none;
  border-left: 1px solid var(--sand);
}

.highlight-content h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.highlight-content p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 44ch;
}

.highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-label);
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

.highlight-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--amber);
}

.highlight-visual {
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.highlight-visual--amber {
  background: var(--amber);
}

.highlight-visual--mid {
  background: var(--forest-mid);
}

.highlight-visual-text {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
  position: absolute;
}

.highlight-visual-icon {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-family: var(--ff-display);
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.3;
}

.highlight-visual-sub {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  font-family: var(--ff-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── RESOURCES ────────────────────────────── */
#resources {
  background: var(--ink);
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  position: relative;
  overflow: hidden;
}

.resources-bg-text {
  position: absolute;
  right: -0.02em;
  bottom: -0.15em;
  font-family: var(--ff-display);
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.resources-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(4rem, 7vw, 8rem);
  position: relative;
}

.resources-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 1rem;
}

.resources-header p {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: rgba(243, 237, 227, 0.45);
  line-height: 1.8;
  max-width: 38ch;
}

.resources-list {
  list-style: none;
}

.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.resource-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.resource-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  right: -2rem;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.03);
  opacity: 0;
  transition: opacity 0.2s;
}

.resource-item:hover::before {
  opacity: 1;
}

.res-num {
  font-family: var(--ff-label);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 1.5rem;
}

.res-body {
  flex: 1;
}

.res-title {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(243, 237, 227, 0.85);
  line-height: 1.4;
  transition: color 0.2s;
}

.resource-item:hover .res-title {
  color: var(--cream);
}

.res-sub {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
}

.res-arrow {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  margin-top: 0.2rem;
  transition: color 0.2s, transform 0.2s;
}

.resource-item:hover .res-arrow {
  color: var(--amber);
  transform: translateX(3px);
}

/* ─── ENROLLMENT CTA ───────────────────────── */
#enroll {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 10rem) var(--pad);
  text-align: center;
  border-top: 1px solid var(--sand);
  position: relative;
  overflow: hidden;
}

.enroll-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(26, 53, 40, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.enroll-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.enroll-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.enroll-eyebrow::before,
.enroll-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--amber);
}

.enroll-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.enroll-inner h2 em {
  font-style: italic;
  color: var(--forest-mid);
}

.enroll-inner p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.enroll-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-enroll-primary {
  font-family: var(--ff-label);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}

.btn-enroll-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--amber);
  transform: translateY(100%);
  transition: transform 0.4s var(--expo);
}

.btn-enroll-primary:hover::before {
  transform: translateY(0);
}

.btn-enroll-primary span {
  position: relative;
  z-index: 1;
}

.btn-enroll-secondary {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-enroll-secondary:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* ─── CONTACT ──────────────────────────────── */
#contact {
  border-top: 1px solid var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-map {
  background: var(--forest);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-map-inner {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}

.contact-map-pin {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.contact-map-text {
  font-size: 0.75rem;
  font-family: var(--ff-label);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-map-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 40px);
}

.contact-info {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.contact-info h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-row {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--sand);
}

.contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-row-label {
  font-family: var(--ff-label);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  width: 60px;
  flex-shrink: 0;
  margin-top: 0.12rem;
}

.contact-row-value {
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 500;
}

.contact-row-value a {
  color: var(--forest-lt);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-row-value a:hover {
  color: var(--amber);
}

/* ─── FOOTER ───────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(243, 237, 227, 0.45);
  padding: 2.5rem var(--pad);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--ff-label);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(243, 237, 227, 0.6);
}

.footer-brand span {
  color: var(--amber);
  margin-right: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(243, 237, 227, 0.85);
}

/* ─── RESPONSIVE ───────────────────────────── */
@media (max-width: 1000px) {
  .hero-body {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-panel {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-badge,
  .hero-ctas,
  .hero-meta {
    opacity: 1;
    transform: none;
  }

  .hero-divider {
    display: none;
  }

  .hero-ctas {
    flex-direction: row;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  #mission {
    grid-template-columns: 1fr;
  }

  .highlight-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .highlight-row:nth-child(even) .highlight-visual {
    order: 0;
  }

  .highlight-row:nth-child(even) .highlight-content {
    order: 0;
    border-left: none;
    border-right: none;
  }

  .highlight-visual {
    min-height: 200px;
  }

  .highlight-content {
    border-right: none;
  }

  .resources-inner {
    grid-template-columns: 1fr;
  }

  #contact {
    grid-template-columns: 1fr;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }

  .link-row:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  .link-row:nth-child(odd) {
    padding-right: 0;
  }
}

@media (max-width: 700px) {

  .nav-links,
  .nav-enroll {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-bg-numeral {
    display: none;
  }

  .hero-footer {
    flex-direction: column;
    gap: 1rem;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .enroll-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ─── MOBILE NAV ───────────────────────────── */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--ink);
  padding: 5rem 2rem 3rem;
  flex-direction: column;
  gap: 0;
}

#mobile-nav.open {
  display: flex;
}

.mobile-nav-item {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 600;
  color: rgba(243, 237, 227, 0.7);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.mobile-nav-item:hover {
  color: var(--cream);
}

.mobile-nav-close {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  font-size: 1.5rem;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
}