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

:root {
  --bg: #f0ebe0;
  --ink: #131310;
  --ink-soft: rgba(19, 19, 16, 0.65);
  --ink-faint: #8a8478;
  --accent: #c94b2a;
  --dark: #0c0c09;
  --white-soft: rgba(240, 235, 224, 0.68);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  cursor: none;
  overflow-x: hidden;
}

a {
  color: inherit;
}

@media (hover: none) {
  body {
    cursor: auto;
  }

  .cur {
    display: none !important;
  }
}

@keyframes roll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

  50% {
    opacity: .45;
    transform: scale(.75);
  }
}

.page-shell {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding-left: 72px;
  padding-right: 72px;
}

.cur {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  will-change: transform;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.cursor-ring {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(19, 19, 16, 0.3);
  transition: width .25s, height .25s, border-color .25s;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0;
  background: var(--accent);
  z-index: 1001;
  transition: width .07s linear;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 17px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: var(--ink);
  transition: background .4s, color .4s, border-color .4s;
}

.site-nav.is-scrolled {
  background: rgba(19, 19, 16, 0.93);
  color: var(--bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-nav__brand,
.site-footer__brand {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: .07em;
}

.site-nav__brand {
  font-size: 14px;
}

.site-nav__subbrand {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1px;
}

.site-nav.is-scrolled .site-nav__subbrand {
  color: rgba(240, 235, 224, 0.38);
}

.site-nav__links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nl {
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  font-family: "Syne", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .35s cubic-bezier(.4, 0, .2, 1);
}

.nl:hover::after {
  width: 100%;
}

.fill {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-105%);
  transition: transform .42s var(--ease);
}

.fill:hover::before {
  transform: translateX(0);
}

.fill > * {
  position: relative;
}

.nav-cta,
.primary-btn {
  font-family: "Syne", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-cta {
  padding: 11px 22px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
}

.site-nav.is-scrolled .nav-cta {
  border-color: rgba(255, 255, 255, 0.1);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 118px;
  overflow: hidden;
  background: var(--bg);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(19, 19, 16, .038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 19, 16, .038) 1px, transparent 1px);
  background-size: 74px 74px;
  pointer-events: none;
}

.hero__circle,
.cta__circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__circle--large {
  right: -90px;
  top: 50px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(19, 19, 16, 0.07);
}

.hero__circle--medium {
  right: -20px;
  top: 120px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(19, 19, 16, 0.05);
}

.hero__ghost {
  position: absolute;
  left: -30px;
  bottom: -20px;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: clamp(100px, 20vw, 280px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(19, 19, 16, 0.045);
  user-select: none;
  pointer-events: none;
  letter-spacing: -.05em;
}

.hero__side {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__side-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Syne", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.hero__side-line,
.hero__scroll-line {
  background: rgba(19, 19, 16, 0.13);
}

.hero__side-line {
  width: 1px;
  height: 56px;
}

.hero__side-dot,
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: dot 2s ease-in-out infinite;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 36px;
}

.hero__badge {
  margin-bottom: 36px;
}

.hero__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 15px;
  border: 1px solid rgba(19, 19, 16, 0.16);
  font-family: "Syne", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #5a5448;
}

.hero__title {
  font-family: "Fraunces", serif;
  font-size: clamp(54px, 10.5vw, 156px);
  font-weight: 900;
  letter-spacing: -.046em;
  line-height: .87;
  color: var(--ink);
}

.hero__title em {
  color: var(--accent);
  font-style: italic;
}

.hero__rule {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 38px 0;
}

.hero__rule-line {
  flex: 1;
  height: 1px;
  background: rgba(19, 19, 16, 0.12);
  transform-origin: left;
}

.hero__rule span,
.hero__scroll,
.section__label,
.facts-card__eyebrow,
.list-eyebrow,
.site-footer__subbrand,
.site-footer__meta {
  font-family: "Syne", sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero__rule span,
.hero__scroll {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--ink-faint);
  white-space: nowrap;
}

.hero__grid-two,
.split-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 52px;
  align-items: start;
}

.split-grid {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.split-grid--cta {
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: end;
}

.hero__intro,
.section-copy,
.cta__copy {
  font-size: 16px;
  line-height: 1.8;
}

.hero__intro {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.78;
  color: var(--ink-soft);
  max-width: 500px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}

.primary-btn {
  padding: 14px 28px;
  background: var(--ink);
  color: var(--bg);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border: 1px solid rgba(19, 19, 16, 0.22);
  font-family: "Syne", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: background .3s;
}

.secondary-btn:hover {
  background: rgba(19, 19, 16, 0.05);
}

.facts-card {
  background: var(--ink);
  color: var(--bg);
  padding: 34px 30px;
  position: relative;
}

.facts-card__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.facts-card__eyebrow {
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(240, 235, 224, 0.32);
  margin-bottom: 22px;
}

.facts-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 1px;
}

.fact-box {
  background: var(--ink);
  padding: 17px 15px;
}

.fact-box__value {
  font-family: "Fraunces", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
}

.fact-box__label {
  font-family: "Syne", sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.32);
  margin-top: 5px;
}

.facts-card__address {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(240, 235, 224, 0.5);
}

.facts-card__address strong {
  color: rgba(240, 235, 224, 0.88);
}

.facts-card__address span {
  font-size: 12px;
}

.facts-card__address-line {
  width: 3px;
  background: var(--accent);
  align-self: stretch;
  flex-shrink: 0;
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 26px;
}

.hero__scroll-line {
  width: 30px;
  height: 1px;
}

.marquee {
  background: var(--accent);
  overflow: hidden;
  padding: 13px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.roll {
  display: flex;
  animation: roll 34s linear infinite;
  width: max-content;
}

.roll:hover {
  animation-play-state: paused;
}

.marquee__chunk,
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.marquee__chunk {
  padding: 0 16px;
  white-space: nowrap;
}

.marquee__item-text {
  font-family: "Syne", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
}

.marquee__separator {
  opacity: .38;
  color: #fff;
}

.section {
  padding: 94px 0;
}

.section--light {
  background: var(--bg);
  border-bottom: 1px solid rgba(19, 19, 16, 0.08);
}

.section--dark {
  background: var(--ink);
  color: var(--bg);
}

.section__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 62px;
}

.section__head--tight {
  margin-bottom: 0;
}

.section__label {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--ink-faint);
  white-space: nowrap;
}

.section__label--dark,
.list-eyebrow,
.list-eyebrow--cta {
  color: rgba(240, 235, 224, 0.28);
}

.section__line {
  flex: 1;
  height: 1px;
  background: rgba(19, 19, 16, 0.1);
}

.section__line--dark {
  background: rgba(240, 235, 224, 0.08);
}

.mission-quote {
  font-family: "Fraunces", serif;
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.22;
  border-left: 4px solid var(--accent);
  padding-left: 26px;
  color: var(--ink);
  margin: 0;
  font-style: italic;
}

.mission-stats {
  display: flex;
  gap: 38px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(19, 19, 16, 0.1);
}

.mission-stat__value {
  font-family: "Fraunces", serif;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--ink);
}

.mission-stat__label {
  font-family: "Syne", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 5px;
}

.section-copy {
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.section-copy--spaced {
  margin-bottom: 32px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 13px;
  border: 1px solid rgba(19, 19, 16, 0.16);
  font-family: "Syne", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #5a5448;
}

.pathways {
  background: var(--bg);
  border-bottom: 1px solid rgba(19, 19, 16, 0.08);
}

.pathways__intro {
  padding-top: 62px;
  padding-bottom: 0;
}

.track {
  border-bottom: 1px solid rgba(19, 19, 16, 0.08);
  background: transparent;
  transition: background .45s, opacity .85s var(--ease), transform .85s var(--ease);
}

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

.track:hover {
  background: rgba(201, 75, 42, 0.028);
}

.track__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 58px 72px;
  display: grid;
  grid-template-columns: 130px 1fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.track__num {
  font-family: "Fraunces", serif;
  font-size: clamp(72px, 9vw, 128px);
  font-weight: 900;
  line-height: 1;
  user-select: none;
  color: transparent;
  -webkit-text-stroke: 1px rgba(19, 19, 16, 0.13);
  transition: color .4s, -webkit-text-stroke .4s;
}

.track:hover .track__num {
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.track__sub {
  font-family: "Syne", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}

.track__title {
  font-family: "Fraunces", serif;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.06;
}

.track__body {
  font-size: 16px;
  line-height: 1.82;
  color: rgba(19, 19, 16, 0.62);
  margin: 0 0 18px;
}

.track__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Syne", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.06;
  margin-bottom: 38px;
}

.section-title--dark {
  color: var(--bg);
}

.info-card-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-card {
  padding: 22px 26px;
  position: relative;
  background: rgba(240, 235, 224, 0.05);
  border: 1px solid rgba(240, 235, 224, 0.09);
}

.info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
}

.info-card__label {
  font-family: "Syne", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.28);
  margin-bottom: 8px;
}

.info-card__value {
  font-size: 15px;
  line-height: 1.72;
  color: var(--bg);
  white-space: pre-line;
}

.list-eyebrow,
.list-eyebrow--cta {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.list-eyebrow--cta {
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 18px;
}

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

.enroll-item {
  padding: 18px 20px;
  border: 1px solid rgba(19, 19, 16, 0.09);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 2px;
  transition: border-color .3s, background .3s;
  cursor: default;
}

.enroll-item:hover {
  border-color: var(--accent);
  background: rgba(201, 75, 42, 0.035);
}

.enroll-item__num {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 3px;
}

.enroll-item__text {
  font-size: 15px;
  line-height: 1.74;
  color: rgba(240, 235, 224, 0.65);
}

.cta {
  background: var(--accent);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta__circle--one {
  right: -90px;
  bottom: -90px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cta__circle--two {
  right: -20px;
  bottom: -20px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta__circle--three {
  left: 45%;
  top: -100px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cta__content {
  position: relative;
}

.cta__title {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 6.5vw, 88px);
  font-weight: 900;
  letter-spacing: -.046em;
  line-height: .92;
  color: #fff;
}

.cta__copy {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 30px;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  font-family: "Syne", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .25s, border-color .3s;
}

.cta__btn--light {
  background: #fff;
  color: var(--accent);
}

.cta__btn--light:hover {
  opacity: .9;
}

.cta__btn--ghost {
  padding: 14px 30px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.cta__btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.85);
}

.site-footer {
  background: var(--dark);
  color: var(--bg);
  padding: 38px 56px;
}

.site-footer__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer__brand {
  font-size: 13.5px;
}

.site-footer__subbrand {
  font-weight: 600;
  font-size: 9px;
  color: rgba(240, 235, 224, 0.25);
  margin-top: 3px;
}

.site-footer__links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.site-footer__links a {
  font-family: "Syne", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.32);
  text-decoration: none;
  transition: color .2s;
}

.site-footer__links a:hover {
  color: var(--bg);
}

.site-footer__meta {
  font-size: 9.5px;
  color: rgba(240, 235, 224, 0.18);
  letter-spacing: .12em;
}

.reveal-stagger,
.reveal-item,
.track {
  opacity: 0;
  transform: translateY(38px);
}

.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hsm {
    display: none !important;
  }

  .page-shell,
  .track__inner {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .hero__grid-two,
  .split-grid,
  .split-grid--cta,
  .track__inner {
    grid-template-columns: 1fr !important;
  }

  .site-nav {
    padding: 17px 24px;
  }

  .site-footer {
    padding: 38px 24px;
  }

  .mission-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
}
