/* ═══════════════════════════════════════════════
   CROWN POINT HIGH SCHOOL — REDESIGN
   Aesthetic: Editorial Institutional
   Display:   Cormorant Garamond
   UI:        Syne
   Body:      Source Serif 4
   ═══════════════════════════════════════════════ */

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

:root {
  --parchment: #f0ead9;
  --parchment-2: #e8e0cc;
  --warm-mid: #ddd7c9;
  --forest: #0e1510;
  --forest-2: #192118;
  --forest-3: #233028;
  --gold: #c0881e;
  --gold-2: #dda83a;
  --gold-light: #e8c76a;
  --ink: #1a1a10;
  --muted: #7a7564;
  --muted-2: #5c5648;
  --rule-light: rgba(26, 26, 16, .1);
  --rule-dark: rgba(240, 234, 217, .1);

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-ui: 'Syne', sans-serif;
  --f-body: 'Source Serif 4', Georgia, serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--parchment);
  overflow-x: hidden;
  cursor: none;
}

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

/* ── WRAP ── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ── SECTION BACKGROUNDS ── */
.s-dark {
  background: var(--forest);
  color: var(--parchment);
}

.s-light {
  background: var(--parchment);
}

.s-mid {
  background: var(--warm-mid);
}

/* ══════════════════════════════
   CUSTOM CURSOR
══════════════════════════════ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor__ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: .7;
  transition: width .25s var(--ease-out), height .25s var(--ease-out), opacity .25s, background .25s;
}

body:not(.cursor-ready) .cursor {
  opacity: 0;
}

.cursor-hover .cursor__ring {
  width: 56px;
  height: 56px;
  background: rgba(192, 136, 30, .08);
  opacity: 1;
}

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .35s, border-color .35s, box-shadow .35s;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(14, 21, 16, .92);
  backdrop-filter: blur(18px);
  border-color: var(--rule-dark);
  box-shadow: 0 4px 40px rgba(0, 0, 0, .25);
}

.nav.is-light {
  background: rgba(240, 234, 217, .9);
  backdrop-filter: blur(18px);
  border-color: var(--rule-light);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--parchment);
  transition: color .3s;
}

.nav.is-light .nav__brand {
  color: var(--ink);
}

.nav__brand strong {
  font-family: var(--f-ui);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.nav__brand span {
  font-family: var(--f-ui);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: rgba(240, 234, 217, .55);
  display: none;
}

.nav.is-light .nav__brand span {
  color: var(--muted);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav__links a {
  font-family: var(--f-ui);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(240, 234, 217, .7);
  transition: color .2s;
}

.nav__links a:hover {
  color: var(--parchment);
}

.nav.is-light .nav__links a {
  color: var(--muted-2);
}

.nav.is-light .nav__links a:hover {
  color: var(--ink);
}

.nav__actions {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: 32px;
}

.nbtn {
  font-family: var(--f-ui);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 2px;
  transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease-out);
  cursor: none;
}

.nbtn:hover {
  transform: translateY(-1px);
}

.nbtn--outline {
  border: 1px solid rgba(240, 234, 217, .3);
  color: rgba(240, 234, 217, .8);
}

.nbtn--outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.nav.is-light .nbtn--outline {
  border-color: var(--rule-light);
  color: var(--muted-2);
}

.nav.is-light .nbtn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nbtn--solid {
  background: var(--gold);
  color: var(--forest);
}

.nbtn--solid:hover {
  background: var(--gold-2);
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--parchment);
  transition: background .2s, transform .3s, opacity .3s;
}

.nav.is-light .nav__hamburger span {
  background: var(--ink);
}

.nav__hamburger.is-open span:first-child {
  transform: translateY(7.5px) rotate(45deg);
}

.nav__hamburger.is-open span:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--forest);
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 120px clamp(20px, 4vw, 48px) 60px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: var(--f-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 400;
  color: var(--parchment);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-dark);
  transition: color .2s, padding-left .25s var(--ease-out);
}

.mobile-nav a:hover {
  color: var(--gold-light);
  padding-left: 16px;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Noise texture */
.hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

/* Dot grid */
.hero__dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(192, 136, 30, .18) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  opacity: .5;
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 130px;
  padding-bottom: 80px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-family: var(--f-ui);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240, 234, 217, .5);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(192, 136, 30, .6);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(192, 136, 30, .6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(192, 136, 30, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(192, 136, 30, 0);
  }
}

.hero__meta-tag {
  margin-left: 6px;
  padding: 3px 10px;
  border: 1px solid rgba(192, 136, 30, .4);
  border-radius: 2px;
  color: var(--gold-light);
  letter-spacing: .2em;
}

/* Headline — line-by-line clip reveal */
.hero__headline {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 7.5vw, 6.8rem);
  font-weight: 300;
  line-height: .96;
  letter-spacing: -.02em;
  color: var(--parchment);
  margin-bottom: 52px;
  overflow: hidden;
}

.hl-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: .08em;
}

.hl {
  display: block;
  transform: translateY(110%);
  transition: transform .9s var(--ease-out);
}

.hl-wrap:nth-child(1) .hl {
  transition-delay: .05s;
}

.hl-wrap:nth-child(2) .hl {
  transition-delay: .18s;
}

.hl-wrap:nth-child(3) .hl {
  transition-delay: .31s;
}

.hl-wrap:nth-child(4) .hl {
  transition-delay: .44s;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__headline.is-visible .hl {
  transform: translateY(0);
}

.hero__body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px 48px;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out) .7s, transform .8s var(--ease-out) .7s;
}

.hero__headline.is-visible~.hero__body {
  opacity: 1;
  transform: translateY(0);
}

.hero__desc {
  font-family: var(--f-body);
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240, 234, 217, .65);
  max-width: 420px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* CTA Buttons */
.cbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-ui);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 2px;
  transition: background .22s, color .22s, border-color .22s, transform .22s var(--ease-out), box-shadow .22s;
  cursor: none;
}

.cbtn:hover {
  transform: translateY(-2px);
}

.cbtn--gold {
  background: var(--gold);
  color: var(--forest);
  box-shadow: 0 6px 24px rgba(192, 136, 30, .35);
}

.cbtn--gold:hover {
  background: var(--gold-2);
  box-shadow: 0 10px 32px rgba(192, 136, 30, .45);
}

.cbtn--dark {
  background: var(--forest);
  color: var(--parchment);
}

.cbtn--dark:hover {
  background: var(--forest-3);
}

.cbtn--ghost {
  border: 1px solid rgba(240, 234, 217, .25);
  color: rgba(240, 234, 217, .75);
}

.cbtn--ghost:hover {
  border-color: rgba(240, 234, 217, .5);
  color: var(--parchment);
}

/* Hero Stats */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--rule-dark);
  padding-top: 32px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease-out) 1s, transform .7s var(--ease-out) 1s;
}

.hero__headline.is-visible~.hero__body~.hero__stats {
  opacity: 1;
  transform: translateY(0);
}

.hero__stat {
  padding: 0 clamp(20px, 3vw, 40px);
  text-align: center;
}

.hero__stat:first-child {
  padding-left: 0;
}

.hero__stat-val {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--parchment);
  letter-spacing: -.02em;
  line-height: 1;
}

.hero__stat-val sup {
  font-size: 55%;
  vertical-align: super;
  color: var(--gold);
}

.hero__stat-label {
  margin-top: 6px;
  font-family: var(--f-ui);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(240, 234, 217, .45);
}

.hero__stat-rule {
  width: 1px;
  height: 44px;
  background: var(--rule-dark);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.5s forwards;
}

.hero__scroll span {
  font-family: var(--f-ui);
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(240, 234, 217, .35);
  writing-mode: vertical-rl;
}

.hero__scroll-bar {
  width: 1px;
  height: 48px;
  background: var(--rule-dark);
  position: relative;
  overflow: hidden;
}

.hero__scroll-bar::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s var(--ease-in-out) 1.8s infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.marquee {
  overflow: hidden;
  background: var(--gold);
  padding: 13px 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  font-family: var(--f-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--forest);
  padding: 0 28px;
}

.mq-sep {
  padding: 0 !important;
  color: rgba(14, 21, 16, .4) !important;
}

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

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

/* ══════════════════════════════
   SECTION TAG / EYEBROW
══════════════════════════════ */
.stag {
  display: inline-block;
  font-family: var(--f-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.stag--dark {
  color: var(--muted);
}

/* ══════════════════════════════
   REVEAL ANIMATION
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}

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

/* ══════════════════════════════
   MISSION
══════════════════════════════ */
.mission {
  padding: clamp(64px, 8vw, 120px) 0;
}

.mission__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.mission__sidebar {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sidebar-label {
  font-family: var(--f-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.sidebar-rule {
  flex: 1;
  height: 1px;
  background: var(--rule-light);
  max-width: 80px;
}

.mission__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.55rem, 3.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--ink);
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  margin-bottom: 32px;
}

.mission__prose {
  display: grid;
  gap: 16px;
}

.mission__prose p {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 56ch;
}

.mission__bigstats {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}

.mbig {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--rule-light);
}

.mbig:last-child {
  border-right: none;
}

.mbig:not(:first-child) {
  padding-left: 40px;
}

.mbig__num {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
}

.mbig__label {
  font-family: var(--f-ui);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════
   PROGRAMS
══════════════════════════════ */
.programs {
  padding: clamp(64px, 8vw, 120px) 0;
}

.programs__head {
  margin-bottom: 56px;
}

.programs__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--parchment);
}

.programs__title em {
  font-style: italic;
  color: var(--gold-light);
}

.programs__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-dark);
}

.prog-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: start;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule-dark);
  transition: background .25s, padding-left .25s var(--ease-out);
  cursor: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out),
    background .25s, padding-left .3s var(--ease-out);
}

.prog-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.prog-item:hover {
  padding-left: 12px;
}

.prog-num {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(240, 234, 217, .15);
  line-height: 1;
  padding-top: 4px;
  transition: color .25s;
}

.prog-item:hover .prog-num {
  color: var(--gold);
}

.prog-title {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--parchment);
  line-height: 1.2;
  margin-bottom: 10px;
}

.prog-desc {
  font-family: var(--f-body);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240, 234, 217, .55);
  max-width: 52ch;
}

.prog-tag {
  font-family: var(--f-ui);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(240, 234, 217, .3);
  padding-top: 6px;
  white-space: nowrap;
  transition: color .25s;
}

.prog-item:hover .prog-tag {
  color: var(--gold);
}

/* ══════════════════════════════
   CAMPUS
══════════════════════════════ */
.campus {
  padding: clamp(64px, 8vw, 120px) 0;
}

.campus__grid {
  display: grid;
  gap: 64px;
}

.campus__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.campus__text {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 36px;
}

.campus__deets {
  background: var(--forest);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(14, 21, 16, .12);
}

.campus__deet {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--rule-dark);
}

.campus__deet:last-child {
  border-bottom: none;
}

.campus__deet-label {
  font-family: var(--f-ui);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.campus__deet-val {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--parchment);
}

/* ══════════════════════════════
   TRUST
══════════════════════════════ */
.trust {
  padding: clamp(64px, 8vw, 120px) 0;
}

.trust__grid {
  display: grid;
  gap: 56px;
}

.trust__title {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--ink);
}

.trust__title em {
  font-style: italic;
  color: var(--muted-2);
}

.trust__items {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-light);
  margin-bottom: 36px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-light);
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  transition: padding-left .25s var(--ease-out);
  cursor: default;
}

.trust-item:hover {
  padding-left: 8px;
}

.trust-item::before {
  content: '';
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  transition: transform .25s var(--ease-out);
}

.trust-item:hover::before {
  transform: scale(1.5);
}

.trust__pullquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted-2);
  padding-left: 20px;
  border-left: 2px solid var(--parchment-2);
}

.trust__pullquote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: var(--f-ui);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════
   RESOURCES
══════════════════════════════ */
.resources {
  padding: clamp(64px, 8vw, 120px) 0;
}

.resources__head {
  margin-bottom: 48px;
}

.resources__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
}

.resources__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-light);
}

.res-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule-light);
  transition: padding-left .25s var(--ease-out);
  cursor: none;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out),
    padding-left .25s var(--ease-out);
}

.res-link.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.res-link:hover {
  padding-left: 12px;
}

.res-link__text {
  font-family: var(--f-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--ink);
  transition: color .2s;
}

.res-link:hover .res-link__text {
  color: var(--gold);
}

.res-link__arrow {
  font-family: var(--f-ui);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  border: 1px solid var(--rule-light);
  padding: 6px 14px;
  border-radius: 2px;
  transition: border-color .2s, color .2s, background .2s;
}

.res-link:hover .res-link__arrow {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(192, 136, 30, .05);
}

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact {
  padding: clamp(80px, 10vw, 140px) 0;
}

.contact__grid {
  display: grid;
  gap: 64px;
}

.contact__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--parchment);
  margin-bottom: 24px;
}

.contact__title em {
  font-style: italic;
  color: var(--gold-light);
}

.contact__text {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240, 234, 217, .6);
  max-width: 44ch;
  margin-bottom: 36px;
}

.contact__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact__info {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-dark);
}

.ci {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-dark);
}

.ci__label {
  font-family: var(--f-ui);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.ci__val {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(240, 234, 217, .75);
  line-height: 1.6;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--forest-2);
  border-top: 1px solid var(--rule-dark);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
}

.footer__name {
  font-family: var(--f-ui);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--parchment);
  margin-right: auto;
}

.footer__copy,
.footer__sub {
  font-family: var(--f-ui);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(240, 234, 217, .35);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (min-width: 640px) {
  .hero__headline {
    font-size: clamp(3.5rem, 8vw, 6.8rem);
  }
}

@media (min-width: 768px) {

  .nav__links,
  .nav__actions {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }

  .nav__brand span {
    display: block;
  }

  .mission__grid {
    grid-template-columns: 160px 1fr;
  }

  .mission__sidebar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .sidebar-rule {
    width: 1px;
    height: 48px;
    flex: 0 0 auto;
  }

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

  .campus__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .prog-item {
    grid-template-columns: 80px 1fr auto;
  }
}

@media (max-width: 640px) {

  .hero__stat:nth-child(4),
  .hero__stat:nth-child(5) {
    display: none;
  }

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

  .mission__bigstats .mbig:nth-child(3) {
    grid-column: span 2;
    border-right: none;
    border-top: 1px solid var(--rule-light);
    padding-left: 0;
  }

  .mbig:nth-child(2) {
    border-right: none;
  }
}