:root {
  --paper: #f8f5ef;
  --paper-soft: #fcfaf6;
  --ink: #121317;
  --ink-soft: #2e3138;
  --navy: #152744;
  --navy-deep: #0f1b30;
  --heritage-red: #9f4233;
  --heritage-red-dark: #7f3327;
  --spark: #8e2019;
  --lime-spark: #f4f0e5;
  --line: rgba(21, 39, 68, 0.16);
  --shadow: 0 20px 48px rgba(12, 20, 34, 0.12);
  --paper-texture-url: url('assets/paper.jpg');
  --font-ui: 'Aktiv Grotesk', 'Sora', sans-serif;
  --font-editorial: 'Source Serif 4', Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-editorial);
  color: var(--ink);
  background:
    var(--paper-texture-url) center top / cover no-repeat fixed,
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at 12% 0%, rgba(159, 66, 51, 0.035), transparent 38%),
    radial-gradient(circle at 90% 0%, rgba(21, 39, 68, 0.035), transparent 44%),
    var(--paper);
  background-blend-mode: normal, normal, normal, normal, normal;
  font-size: 17px;
  line-height: 1.68;
}


body::before {
  content: none;
}

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

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

.container {
  width: min(1280px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 200;
  background: transparent;
  transition: all 0.28s ease;
}

.site-header.scrolled {
  background: rgba(248, 244, 237, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(14, 24, 42, 0.08);
}

.nav-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 54px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--navy);
  background: var(--paper-soft);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.65rem 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav > a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 0.4rem 0;
}

.site-nav > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--heritage-red);
  transition: width 0.2s ease;
}

.site-nav > a:hover::after,
.site-nav > a.active::after {
  width: 100%;
}

.site-nav > a.nav-cta {
  background: var(--navy);
  color: var(--paper-soft);
  border: 1px solid var(--navy);
  padding: 0.7rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.site-nav > a.nav-cta:hover {
  background: var(--heritage-red);
  border-color: var(--heritage-red);
  color: #f8f4ed;
}

.site-nav > a.nav-cta::after {
  display: none;
}

main {
  padding-top: 148px;
}

.hero {
  padding: 4.8rem 0 3.4rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: stretch;
}

.hero-content,
.panel {
  border: 1px solid var(--line);
  background: rgba(248, 244, 237, 0.82);
  box-shadow: var(--shadow);
}

.hero-content {
  position: relative;
  padding: 2.4rem;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background: radial-gradient(circle at 60% 30%, rgba(45, 77, 255, 0.08), transparent 58%);
  pointer-events: none;
}

.spark-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--spark);
  color: #fff;
  padding: 0.35rem 0.65rem;
  margin-bottom: 1rem;
}

.spark-tag::before {
  content: '●';
  color: var(--lime-spark);
  font-size: 0.66rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--heritage-red);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-editorial);
  color: var(--ink);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.3rem, 4.5vw, 4.15rem);
  margin-bottom: 0.9rem;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  margin-bottom: 0.5rem;
  font-style: italic;
}

h1 em,
h2 em,
.hero-emphasis {
  font-style: italic;
  color: var(--navy);
}

p {
  margin: 0;
}

.lede,
.muted {
  color: var(--ink-soft);
}

.lede {
  font-size: 1.12rem;
  max-width: 62ch;
}

.lede-full {
  max-width: none;
}

.lede-bold-full {
  max-width: none;
  width: 100%;
  font-weight: 700;
  color: var(--ink);
}

.status-copy {
  margin-top: 0.35rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--heritage-red);
  background: rgba(159, 66, 51, 0.06);
  color: var(--ink);
  max-width: 60ch;
}

.hero .program-card .lede {
  margin-bottom: 0.55rem;
}

.hero .program-card .meta-list {
  margin-top: 1.9rem;
}

.panel {
  padding: 1.6rem;
}

.program-card {
  position: relative;
  border: 1px solid rgba(21, 39, 68, 0.24);
  background:
    linear-gradient(160deg, rgba(21, 39, 68, 0.05), transparent 56%),
    rgba(248, 244, 237, 0.9);
}

.program-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.6rem;
  width: 120px;
  height: 3px;
  background: var(--heritage-red);
}

.founding-ideals-inline {
  grid-column: 1 / -1;
  margin: 0;
  width: 100%;
  padding: 0;
  font-family: var(--font-editorial);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
}

.meta-list {
  display: grid;
  gap: 0.45rem;
  color: var(--ink-soft);
}

.meta-list strong {
  color: var(--ink);
}

.actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  border: 1px solid transparent;
  padding: 0.78rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--heritage-red);
  border-color: var(--heritage-red);
  color: #f8f4ed;
}

.btn-primary:hover {
  background: var(--heritage-red-dark);
}

.btn-secondary {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: #f8f4ed;
}

.section {
  padding: 5.8rem 0 0;
}

.stack {
  display: grid;
  gap: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.program-dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.program-dual .panel.stack {
  gap: 0.4rem;
}

.program-subhead {
  font-style: italic;
}

.program-dual .panel h2 {
  margin-bottom: 0.15rem;
}

.program-dual .panel ul {
  margin-top: 0.2rem;
}

.program-intro-grid {
  align-items: start;
}

.contact-card-grid {
  align-items: start;
}

.contact-card-grid .actions {
  margin-top: 1rem;
}

.card {
  border: 1px solid var(--line);
  background: rgba(248, 244, 237, 0.86);
  box-shadow: 0 10px 24px rgba(14, 24, 42, 0.06);
  padding: 1.25rem;
}

.card ul,
.section ul {
  margin: 0.65rem 0 0;
  padding-left: 1.15rem;
}

.kicker {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.2rem 0.45rem;
  border: 1px solid rgba(21, 39, 68, 0.2);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.kicker.spark {
  border-color: transparent;
  background: rgba(45, 77, 255, 0.12);
  color: #2340db;
}

.notice {
  border-left: 4px solid var(--heritage-red);
}

.checklist {
  display: grid;
  gap: 0.45rem;
}

.checklist li {
  list-style: none;
  position: relative;
  padding-left: 1.12rem;
}

.checklist li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--heritage-red);
  font-weight: 700;
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

.email-signup-form {
  display: grid;
  gap: 0.7rem;
  max-width: 620px;
}

.email-signup-form label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.signup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
}

.email-signup-form input[type="email"] {
  width: 100%;
  border: 1px solid var(--navy);
  background: rgba(252, 250, 246, 0.88);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
}

.email-signup-form input[type="email"]:focus {
  outline: 2px solid var(--heritage-red);
  outline-offset: 2px;
}

.email-signup-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.company-field {
  display: none;
}

.form-message {
  min-height: 1.4em;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.form-message.is-success {
  color: var(--navy);
  font-weight: 700;
}

.form-message.is-error {
  color: var(--heritage-red);
  font-weight: 700;
}

.footer {
  margin-top: 4.2rem;
  background: var(--navy-deep);
  color: #edf2fb;
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.2rem;
}

.footer .brand img {
  height: 48px;
}

.footer h3,
.footer h4 {
  margin: 0 0 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d8e2f3;
}

.footer .muted,
.footer p,
.footer a {
  color: #ced9ec;
}

.footer a:hover {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.icon-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(206, 217, 236, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-link svg {
  width: 16px;
  height: 16px;
  stroke: #eef4ff;
  fill: none;
  stroke-width: 1.9;
}

.icon-link .icon-facebook {
  stroke: none;
  fill: #eef4ff;
}

.icon-link .icon-x {
  stroke: none;
  fill: #eef4ff;
}

.icon-link .icon-youtube .youtube-play {
  stroke: none;
  fill: #eef4ff;
}

.icon-link:hover {
  background: var(--heritage-red);
  border-color: var(--heritage-red);
}

hr {
  border: 0;
  border-top: 1px solid rgba(206, 217, 236, 0.28);
  margin: 1.5rem 0 1rem;
}

.small {
  font-family: var(--font-ui);
  font-size: 0.8rem;
}

@media (max-width: 1000px) {
  .hero-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-overview-grid,
  .program-dual {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 50px;
  }
}

@media (max-width: 780px) {
  .nav-wrap {
    min-height: 80px;
  }

  main {
    padding-top: 128px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 4vw;
    right: 4vw;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem;
    background: rgba(248, 244, 237, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    padding-top: 3.6rem;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }
}

/* 2026 visual refresh: varsity media clubhouse */
:root {
  --paper: #f4f0e5;
  --paper-soft: #fbf7ec;
  --ink: #101820;
  --ink-soft: #27313a;
  --navy: #071d32;
  --navy-deep: #051524;
  --heritage-red: #b42a21;
  --heritage-red-dark: #8e2019;
  --spark: #8e2019;
  --lime-spark: #f4f0e5;
  --line: rgba(7, 29, 50, 0.34);
  --shadow: none;
  --font-display: 'Roboto Condensed', 'Arial Narrow', 'Sora', sans-serif;
}

body {
  background:
    linear-gradient(rgba(244, 240, 229, 0.84), rgba(244, 240, 229, 0.84)),
    var(--paper-texture-url) center top / 1440px auto repeat-y,
    var(--paper);
  background-blend-mode: normal, multiply, normal;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(7, 29, 50, 0.08) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(7, 29, 50, 0.05) 23px 24px);
  mask-image: linear-gradient(to bottom, transparent 0, #000 38rem, #000 100%);
}

.container {
  width: min(1360px, 94vw);
}

.site-header,
.site-header.scrolled {
  background: rgba(244, 240, 229, 0.96);
  border-bottom: 2px solid var(--navy);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 78px;
}

.brand img {
  height: 52px;
}

.site-nav {
  position: relative;
  width: 100%;
  justify-content: flex-start;
  gap: clamp(0.9rem, 2vw, 2rem);
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 2rem);
}

.nav-left {
  position: absolute;
  right: calc(50% + 70px);
}

.nav-right {
  position: absolute;
  left: calc(50% + 70px);
}

.site-nav > .nav-cta {
  margin-left: auto;
}

.site-header .nav-wrap {
  position: relative;
  justify-content: flex-end;
}

.site-header .brand {
  position: absolute;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}

.menu-toggle {
  z-index: 3;
}

.site-nav a {
  font-family: var(--font-ui);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  height: 4px;
  width: 0;
  bottom: -0.25rem;
  background: var(--heritage-red);
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav a.nav-cta {
  background: var(--heritage-red);
  border: 2px solid var(--navy);
  color: var(--paper-soft);
  padding: 0.72rem 1.05rem;
  box-shadow: 4px 4px 0 var(--navy);
}

.site-nav a.nav-cta:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--paper-soft);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--navy);
}

.site-nav a.nav-cta::after {
  display: none;
}

main {
  padding-top: 78px;
}

.hero {
  padding: 2.4rem 0 2rem;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 0;
  border: 2px solid var(--navy);
  background: var(--paper-soft);
}

.hero-content,
.panel,
.card {
  border: 2px solid var(--navy);
  border-radius: 0;
  box-shadow: none;
}

.hero-layout > .hero-content,
.hero-layout > .panel {
  border: 0;
}

.hero-layout > .hero-content {
  border-right: 2px solid var(--navy);
}

.hero-content {
  overflow: hidden;
  min-height: 610px;
  padding: clamp(2rem, 4vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--navy);
  color: var(--paper-soft);
}

.hero-content::before {
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  opacity: 0.5;
  filter: none;
  background:
    linear-gradient(90deg, var(--navy) 0%, transparent 28%),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(244, 240, 229, 0.13) 34px 36px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(244, 240, 229, 0.13) 34px 36px),
    linear-gradient(135deg, transparent 0 62%, var(--heritage-red) 62% 74%, transparent 74%),
    var(--navy);
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

.hero-content h1,
.hero-content .lede {
  max-width: 760px;
}

.hero-content h1 {
  color: var(--paper-soft);
}

.hero-content h1 em {
  color: var(--paper-soft);
}

.hero-content .lede {
  color: rgba(251, 247, 236, 0.86);
}

.program-card {
  background:
    linear-gradient(to bottom, var(--heritage-red) 0 12px, transparent 12px),
    rgba(251, 247, 236, 0.94);
}

.hero .program-card {
  padding: clamp(1.8rem, 3.2vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}

.program-card::before {
  display: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  line-height: 0.97;
}

h1 {
  font-size: clamp(3rem, 6.4vw, 6.6rem);
  max-width: 12ch;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 4rem);
  max-width: 16ch;
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
}

h1 em,
h2 em,
.hero-emphasis,
.program-subhead {
  font-family: var(--font-editorial);
  font-weight: 600;
  letter-spacing: -0.035em;
  text-transform: none;
  font-style: italic;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 1.15rem;
  padding: 0.34rem 0.55rem;
  border: 1px solid currentColor;
  color: var(--heritage-red);
  background: transparent;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
}

.hero-content .eyebrow {
  color: var(--paper-soft);
}

.lede {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.52;
}

.panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.7rem);
  background: rgba(251, 247, 236, 0.9);
}

main.section {
  padding-top: 118px;
}

.section {
  padding: 2.2rem 0 0;
}

.stack {
  gap: 1.2rem;
}

.card-grid,
.program-dual {
  gap: 0.9rem;
}

.card {
  position: relative;
  min-height: 220px;
  padding: 1.55rem;
  background: rgba(251, 247, 236, 0.92);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.card::before {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  left: -2px;
  height: 8px;
  background: var(--heritage-red);
}

.card:nth-child(2n)::before {
  background: var(--navy);
}

.card:nth-child(3n)::before {
  background: var(--heritage-red);
}

.card:hover {
  transform: translateY(-4px);
  background: #fffaf0;
}

.card .muted {
  margin-top: 0.8rem;
}

.kicker {
  margin-bottom: 1rem;
  padding: 0.28rem 0.55rem;
  border: 2px solid var(--navy);
  background: var(--heritage-red);
  color: var(--paper-soft);
  font-weight: 700;
}

.status-copy {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  border: 2px solid var(--navy);
  border-left: 8px solid var(--heritage-red);
  background: rgba(180, 42, 33, 0.08);
}

.program-highlights {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0.55rem 0;
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}

.program-highlight {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  min-height: 0;
  padding: 0.7rem 1rem;
  border: 0;
  background: transparent;
}

.program-highlight + .program-highlight {
  border-left: 2px solid var(--navy);
}

.program-highlight strong {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-transform: uppercase;
}

.program-highlight span {
  margin-top: 0;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-grant-note {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 2px solid var(--navy);
  font-family: var(--font-ui);
}

.program-grant-note strong {
  color: var(--heritage-red);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.program-grant-note span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.btn {
  min-height: 48px;
  border-width: 2px;
  padding: 0.78rem 1.1rem;
  box-shadow: 4px 4px 0 var(--navy);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--navy);
}

.btn-secondary {
  background: var(--paper-soft);
}

.checklist li::before {
  content: '■';
  font-size: 0.55rem;
  top: 0.38rem;
}

.notice {
  border-left-width: 8px;
}

.footer {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 10px solid var(--heritage-red);
  background:
    repeating-linear-gradient(90deg, transparent 0 59px, rgba(244, 240, 229, 0.035) 59px 60px),
    var(--navy-deep);
}

.footer h3,
.footer h4,
.footer-links,
.small {
  font-family: var(--font-ui);
}

.icon-link {
  border-width: 2px;
}

@media (max-width: 1000px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout > .hero-content {
    border-right: 0;
    border-bottom: 2px solid var(--navy);
  }

  .hero-content {
    min-height: 540px;
  }
}

@media (min-width: 781px) and (max-width: 1100px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    width: auto;
    display: none;
    position: absolute;
    top: 78px;
    left: 3vw;
    right: 3vw;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem;
    border: 2px solid var(--navy);
    background: var(--paper-soft);
  }

  .nav-left,
  .nav-right {
    position: static;
  }

  .site-nav > .nav-cta {
    margin-left: 0;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-group {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Final cascade: keep the poster system above the legacy refresh rules. */
.hero-layout {
  box-shadow: none;
}

.hero-content h1 em {
  color: var(--paper-soft);
  text-shadow: none;
}

.hero .program-card {
  background: var(--paper-soft);
}

.kicker,
.card,
.card:hover {
  box-shadow: none;
}

.card:nth-child(3n + 2),
.card:nth-child(3n) {
  background: rgba(244, 236, 222, 0.52);
}

.footer {
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 0;
}

.footer .footer-updates {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
}

.footer .footer-updates h4 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.footer .footer-updates p {
  max-width: 34rem;
  margin: 0 0 1.1rem;
  color: rgba(244, 236, 222, 0.82);
  font-family: var(--font-editorial);
  font-size: 1rem;
  line-height: 1.5;
}

.footer .footer-updates a {
  min-height: 50px;
  font-size: 0.74rem;
}

.footer .footer-updates a span,
.footer .footer-updates a strong {
  padding: 0.82rem 0.95rem;
}

@media (max-width: 780px) {
  .hero-content {
    min-height: 520px;
    padding: 2.2rem 1.5rem;
    box-shadow: 9px 9px 0 rgba(6, 27, 46, 0.12);
  }

  .hero-content::before {
    width: 100%;
    opacity: 0.42;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .hero .program-card {
    width: 94%;
    margin-top: -1rem;
    transform: none;
  }

  .contact-page .contact-lead h1 {
    white-space: normal;
  }
}

/* Bold varsity edition: navy atmosphere, parchment, oxblood, vintage gold. */
:root {
  --paper: #d8c8aa;
  --paper-soft: #eadfc8;
  --bone-deep: #cbb88f;
  --ink: #101418;
  --ink-soft: #272c30;
  --navy: #061b2e;
  --navy-deep: #021421;
  --heritage-red: #8f201b;
  --heritage-red-dark: #681510;
  --varsity-gold: #d3a52f;
  --line: rgba(6, 27, 46, 0.35);
}

body {
  background:
    linear-gradient(rgba(216, 200, 170, 0.86), rgba(216, 200, 170, 0.86)),
    var(--paper-texture-url) center top / 1080px auto repeat,
    var(--paper);
}

.site-header,
.site-header.scrolled {
  background: rgba(216, 200, 170, 0.97);
}

.btn-secondary,
.hero .btn-secondary {
  border-color: var(--navy);
  background: var(--varsity-gold);
  color: var(--navy);
}

.btn-secondary:hover,
.hero .btn-secondary:hover {
  background: var(--bone-deep);
  color: var(--navy);
}

.home-page main {
  overflow: hidden;
  background: var(--navy);
}

.home-page .hero {
  position: relative;
  padding: clamp(2.2rem, 4vw, 4rem) 0 clamp(5rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 8% 24%, rgba(211, 165, 47, 0.14), transparent 20rem),
    linear-gradient(112deg, transparent 0 75%, rgba(143, 32, 27, 0.22) 75% 84%, transparent 84%),
    var(--navy);
}

.home-page .hero::after {
  content: '★   ★   ★   ’76 CREW   ★   ★   ★   ’76 CREW   ★   ★   ★';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 0.72rem 0;
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  color: var(--navy);
  background: var(--varsity-gold);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
  white-space: nowrap;
}

.home-page .hero-layout {
  background: transparent;
}

.home-page .hero-content {
  background:
    radial-gradient(circle at 9% 17%, rgba(211, 165, 47, 0.16), transparent 14rem),
    var(--navy-deep);
}

.home-page .hero-content::before {
  background:
    linear-gradient(90deg, var(--navy-deep) 0%, transparent 28%),
    repeating-linear-gradient(0deg, transparent 0 43px, rgba(234, 223, 200, 0.12) 43px 44px),
    repeating-linear-gradient(90deg, transparent 0 43px, rgba(234, 223, 200, 0.09) 43px 44px),
    linear-gradient(132deg, transparent 0 61%, rgba(143, 32, 27, 0.96) 61% 73%, transparent 73%);
}

.home-page .hero-content h1 em {
  color: var(--varsity-gold);
}

.home-page .hero-content .lede {
  color: var(--paper-soft);
  border-left-color: var(--varsity-gold);
}

.home-page .hero .program-card {
  color: var(--navy);
  background: var(--varsity-gold);
  box-shadow:
    14px 16px 0 rgba(0, 0, 0, 0.25),
    -8px -8px 0 var(--heritage-red);
}

.home-page .hero .program-card::before {
  content: '';
  display: block;
  position: absolute;
  top: -5px;
  left: 38%;
  width: 96px;
  height: 18px;
  background: rgba(234, 223, 200, 0.72);
  transform: rotate(2deg);
}

.home-page .hero .program-card::after {
  color: var(--navy);
}

.home-page .hero .program-card h2,
.home-page .hero .program-card .lede,
.home-page .hero .program-card .program-grant-note strong,
.home-page .hero .program-card .program-grant-note span,
.home-page .hero .program-card .status-copy {
  color: var(--navy);
}

.home-page .program-grant-note {
  border-color: var(--navy);
}

.home-page .hero .program-card .status-copy {
  border-left-color: var(--heritage-red);
  background: rgba(234, 223, 200, 0.32);
}

.home-page .hero .program-card .btn-secondary {
  background: var(--navy);
  color: var(--paper-soft);
}

.home-page .footer {
  margin-top: 0;
}

main.section {
  background:
    radial-gradient(circle at 92% 12%, rgba(211, 165, 47, 0.19), transparent 20rem),
    radial-gradient(circle at 8% 44%, rgba(143, 32, 27, 0.1), transparent 25rem),
    transparent;
}

.mission-page main.section > .container > .panel:first-child,
.program-page main.section > .container > .panel:first-child,
.contact-page main.section > .container > .panel:first-child {
  color: var(--paper-soft);
  background:
    repeating-linear-gradient(0deg, transparent 0 45px, rgba(234, 223, 200, 0.06) 45px 46px),
    var(--navy);
  border-top-color: var(--heritage-red);
}

.mission-page main.section > .container > .panel:first-child h1,
.program-page main.section > .container > .panel:first-child h1,
.contact-page main.section > .container > .panel:first-child h1,
.mission-page main.section > .container > .panel:first-child .lede,
.program-page main.section > .container > .panel:first-child .lede,
.contact-page main.section > .container > .panel:first-child .lede,
.program-page main.section > .container > .panel:first-child .status-copy {
  color: var(--paper-soft);
}

.mission-page main.section > .container > .panel:first-child h1 em,
.program-page main.section > .container > .panel:first-child h1 em,
.contact-page main.section > .container > .panel:first-child h1 em {
  color: var(--varsity-gold);
}

.mission-page main.section > .container > .panel:first-child h1::after {
  color: var(--varsity-gold);
}

.program-page .program-highlights {
  color: var(--navy);
  background: var(--varsity-gold);
}

.program-page .program-highlight + .program-highlight {
  border-color: var(--navy);
}

.program-page .program-highlight strong,
.program-page .program-highlight span {
  color: var(--navy);
}

.program-page main.section > .container > .panel:nth-child(2) {
  color: var(--navy);
  background: var(--varsity-gold);
  border-top: 0;
}

.program-page main.section > .container > .panel:nth-child(2) .muted,
.program-page main.section > .container > .panel:nth-child(2) .lede {
  color: var(--navy);
}

.program-page .program-dual > .panel:first-child {
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(234, 223, 200, 0.07) 31px 32px),
    var(--heritage-red);
}

.program-page .program-dual > .panel:first-child .checklist li::before {
  color: var(--varsity-gold);
}

.mission-page .card-grid .card:first-child,
.contact-page .card-grid .card:first-child,
.program-page .card-grid .card:first-child {
  color: var(--navy);
  background: var(--varsity-gold);
  border-left-color: var(--navy);
}

.mission-page .card-grid .card:last-child,
.contact-page .card-grid .card:last-child,
.program-page .card-grid .card:last-child {
  color: var(--paper-soft);
  background: var(--heritage-red);
  border-left-color: var(--navy);
}

.mission-page .card-grid .card:first-child .muted,
.contact-page .card-grid .card:first-child .muted,
.program-page .card-grid .card:first-child .muted {
  color: var(--navy);
}

.mission-page .card-grid .card:last-child .muted,
.contact-page .card-grid .card:last-child .muted,
.program-page .card-grid .card:last-child .muted {
  color: var(--paper-soft);
}

.mission-page .card-grid .card:last-child .kicker,
.contact-page .card-grid .card:last-child .kicker,
.program-page .card-grid .card:last-child .kicker {
  color: var(--navy);
  background: var(--varsity-gold);
}

.footer .footer-updates h4 {
  color: var(--varsity-gold);
}

.footer .footer-updates p {
  color: var(--paper-soft);
}

@media (max-width: 1000px) {
  .home-page .hero .program-card {
    margin-top: -1.2rem;
  }
}

@media (max-width: 780px) {
  .home-page .hero {
    padding-bottom: 5rem;
  }

  .home-page .hero .program-card {
    margin-top: -0.5rem;
  }

  .mission-page main.section > .container > .panel:first-child,
  .program-page main.section > .container > .panel:first-child,
  .contact-page main.section > .container > .panel:first-child {
    background: var(--navy);
  }
}

/* Editorial poster system: bone paper, midnight navy, oxblood ink */
:root {
  --paper: #e9e1d3;
  --paper-soft: #f4ecde;
  --ink: #11161b;
  --ink-soft: #30353a;
  --navy: #061b2e;
  --navy-deep: #031421;
  --heritage-red: #8d211d;
  --heritage-red-dark: #681713;
  --spark: #8d211d;
  --line: rgba(6, 27, 46, 0.28);
}

body {
  background:
    radial-gradient(circle at 12% 14%, rgba(141, 33, 29, 0.09), transparent 24rem),
    radial-gradient(circle at 86% 34%, rgba(6, 27, 46, 0.09), transparent 30rem),
    linear-gradient(rgba(233, 225, 211, 0.88), rgba(233, 225, 211, 0.88)),
    var(--paper-texture-url) center top / 1180px auto repeat,
    var(--paper);
}

body::before {
  opacity: 0.055;
  background-image: repeating-linear-gradient(0deg, transparent 0 31px, rgba(6, 27, 46, 0.11) 31px 32px);
}

.site-header,
.site-header.scrolled {
  background: rgba(233, 225, 211, 0.96);
}

.hero {
  padding: 2.8rem 0 3.2rem;
}

.hero-layout {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, 1.38fr) minmax(330px, 0.62fr);
  gap: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-content {
  min-height: 650px;
  padding: clamp(2.4rem, 5vw, 5.5rem);
  border: 0;
  background: var(--navy);
  box-shadow: 18px 18px 0 rgba(6, 27, 46, 0.12);
}

.hero-content::before {
  width: 58%;
  opacity: 0.7;
  background:
    linear-gradient(90deg, var(--navy) 0%, transparent 34%),
    repeating-linear-gradient(0deg, transparent 0 43px, rgba(244, 236, 222, 0.11) 43px 44px),
    repeating-linear-gradient(90deg, transparent 0 43px, rgba(244, 236, 222, 0.08) 43px 44px),
    linear-gradient(132deg, transparent 0 61%, rgba(141, 33, 29, 0.92) 61% 73%, transparent 73%);
}

.hero-content::after {
  content: '76';
  position: absolute;
  top: -0.16em;
  right: -0.02em;
  z-index: 0;
  color: rgba(244, 236, 222, 0.045);
  font-family: var(--font-display);
  font-size: clamp(15rem, 27vw, 27rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
}

.hero-content h1 {
  max-width: 10.4ch;
  font-size: clamp(3.6rem, 7vw, 7.4rem);
}

.hero-content h1 em {
  color: var(--paper-soft);
  text-shadow: none;
}

.hero-content .lede {
  max-width: 690px;
  padding-left: 1.1rem;
  border-left: 4px solid var(--heritage-red);
}

.hero .program-card {
  z-index: 2;
  align-self: center;
  min-height: 540px;
  margin-left: -1.5rem;
  padding: clamp(2rem, 3.4vw, 3.5rem);
  border: 0;
  background: var(--paper-soft);
  box-shadow: 14px 16px 0 rgba(0, 0, 0, 0.16);
  clip-path: polygon(2% 0, 100% 1.4%, 98% 98%, 0 100%);
  transform: rotate(-0.35deg);
}

.hero .program-card::after {
  content: '★  ★  ★';
  position: absolute;
  top: 1.15rem;
  right: 1.45rem;
  color: var(--heritage-red);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
}

.hero .program-card h2 {
  max-width: 9ch;
  padding-top: 0.5rem;
}

.hero .program-card .status-copy {
  border: 0;
  border-left: 6px solid var(--heritage-red);
  background: rgba(141, 33, 29, 0.07);
}

.hero .program-card .actions {
  margin-top: auto;
}

main.section > .container {
  gap: clamp(1.6rem, 4vw, 4.5rem);
}

.panel,
.card {
  border: 0;
  background: rgba(244, 236, 222, 0.66);
  box-shadow: none;
}

main.section > .container > .panel:not(.program-card),
.program-page main.section > .container > .program-card {
  border-top: 8px solid var(--heritage-red);
}

.mission-page main.section > .container > .panel:first-child,
.contact-page main.section > .container > .panel:first-child,
.program-page main.section > .container > .panel:first-child {
  padding: clamp(2.2rem, 5vw, 5rem);
  background: rgba(244, 236, 222, 0.72);
}

.mission-page main.section > .container > .panel:first-child {
  border-top-color: var(--heritage-red);
  background:
    linear-gradient(90deg, rgba(244, 236, 222, 0.9) 0 49.8%, rgba(6, 27, 46, 0.06) 49.8% 50%, rgba(244, 236, 222, 0.58) 50%),
    var(--paper-soft);
}

.mission-page main.section > .container > .panel:first-child h1 {
  position: relative;
}

.mission-page main.section > .container > .panel:first-child h1::after {
  content: '★ ★ ★';
  display: block;
  margin-top: 1.4rem;
  color: var(--heritage-red);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
}

.program-page .program-overview-grid > .stack {
  padding: 0;
}

.program-page .program-highlights {
  margin-top: 1rem;
  border-color: var(--navy);
  background: var(--navy);
  color: var(--paper-soft);
}

.program-page .program-highlight + .program-highlight {
  border-color: rgba(244, 236, 222, 0.36);
}

.program-page .program-highlight strong,
.program-page .program-highlight span {
  color: var(--paper-soft);
}

.program-page .program-dual {
  gap: 0;
  align-items: stretch;
  background: var(--navy);
}

.program-page .program-dual > .panel {
  padding: clamp(2rem, 4vw, 4rem);
}

.program-page .program-dual > .panel:first-child {
  border: 0;
}

.program-page .program-dual > .panel:last-child {
  border: 0;
  border-left: 1px solid rgba(6, 27, 46, 0.24);
  background: var(--paper-soft);
}

.card-grid {
  gap: clamp(1rem, 2.4vw, 2.5rem);
}

.card {
  min-height: 0;
  padding: 1.8rem 0 1.8rem 1.8rem;
  border-left: 6px solid var(--navy);
}

.card::before {
  display: none;
}

.card:nth-child(2n),
.card:nth-child(3n),
.card:nth-child(3n + 2) {
  background: rgba(244, 236, 222, 0.52);
}

.card:nth-child(2n) {
  border-left-color: var(--heritage-red);
}

.card:hover {
  background: rgba(244, 236, 222, 0.82);
  box-shadow: none;
  transform: translateX(5px);
}

.kicker {
  border: 0;
  box-shadow: none;
  transform: rotate(-1deg);
}

.footer {
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 0;
  background:
    linear-gradient(115deg, transparent 0 72%, rgba(141, 33, 29, 0.18) 72% 82%, transparent 82%),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(244, 236, 222, 0.035) 79px 80px),
    var(--navy-deep);
}

.footer::before {
  content: '';
  display: block;
  height: 10px;
  margin-bottom: 3rem;
  background: var(--heritage-red);
}

.footer-updates {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
}

.footer-updates h4 {
  margin-bottom: 0.7rem;
  color: var(--paper-soft);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1;
}

.footer-updates p {
  max-width: 34rem;
  margin-bottom: 1.1rem;
  color: rgba(244, 236, 222, 0.82);
  font-family: var(--font-editorial);
  font-size: 0.98rem;
  line-height: 1.5;
}

.footer-updates a {
  min-height: 50px;
  border-color: rgba(244, 236, 222, 0.82);
  font-size: 0.74rem;
}

.footer-updates a span,
.footer-updates a strong {
  display: flex;
  align-items: center;
  padding: 0.82rem 0.95rem;
}

@media (max-width: 1000px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: 570px;
  }

  .hero .program-card {
    width: min(90%, 680px);
    min-height: 0;
    margin: -2rem auto 0;
  }
}

@media (max-width: 780px) {
  .hero-content {
    min-height: 520px;
    box-shadow: 9px 9px 0 rgba(6, 27, 46, 0.12);
  }

  .hero-content h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .hero .program-card {
    width: 94%;
    margin-top: -1rem;
    transform: none;
  }

  .mission-page main.section > .container > .panel:first-child {
    background: rgba(244, 236, 222, 0.74);
  }

  .program-page .program-dual > .panel:last-child {
    border-left: 0;
    border-top: 1px solid rgba(6, 27, 46, 0.24);
  }
}

/* Full-site art direction: restrained Americana editorial */
:root {
  --cobalt: var(--navy);
  --sun: var(--heritage-red);
  --black: #090b0d;
}

::selection {
  color: var(--paper-soft);
  background: var(--heritage-red);
}

.site-header::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--heritage-red) 0 34%, var(--navy) 34% 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.site-header.scrolled::after {
  transform: scaleX(1);
}

.hero-layout {
  box-shadow: 10px 10px 0 rgba(7, 29, 50, 0.12);
}

.hero-content h1 em {
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.22);
}

.hero .program-card {
  background:
    linear-gradient(to bottom, var(--heritage-red) 0 10px, transparent 10px),
    rgba(251, 247, 236, 0.96);
}

.program-grant-note {
  border-color: var(--cobalt);
}

.program-grant-note strong {
  color: var(--cobalt);
}

.kicker {
  box-shadow: 3px 3px 0 var(--navy);
  transform: rotate(-1deg);
}

.card {
  box-shadow: 6px 6px 0 rgba(7, 29, 50, 0.12);
}

.card:nth-child(3n + 2) {
  background: rgba(180, 42, 33, 0.045);
}

.card:nth-child(3n) {
  background: rgba(7, 29, 50, 0.045);
}

.card:hover {
  box-shadow: 10px 10px 0 rgba(7, 29, 50, 0.18);
}

main.section > .container > .panel:not(.program-card):nth-child(3n + 1) {
  border-top: 9px solid var(--heritage-red);
}

main.section > .container > .panel:not(.program-card):nth-child(3n + 2) {
  border-top: 9px solid var(--navy);
}

main.section > .container > .panel:not(.program-card):nth-child(3n) {
  border-top: 9px solid var(--heritage-red);
}

.program-dual > .panel:first-child {
  color: var(--paper-soft);
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(244, 240, 229, 0.05) 31px 32px),
    var(--navy);
}

.program-dual > .panel:first-child h2,
.program-dual > .panel:first-child .muted,
.program-dual > .panel:first-child strong {
  color: var(--paper-soft);
}

.program-dual > .panel:first-child .checklist li::before {
  color: var(--paper-soft);
}

.program-highlights {
  border-color: var(--cobalt);
}

.program-highlight + .program-highlight {
  border-color: var(--cobalt);
}

.program-highlight strong {
  color: var(--cobalt);
}

.footer {
  margin-top: 3rem;
  border-top: 10px solid var(--heritage-red);
}

.footer-updates {
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(244, 240, 229, 0.24);
}

.footer-updates h4 {
  margin-bottom: 0.45rem;
}

.footer-updates p {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  line-height: 1.45;
}

.footer-updates a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid rgba(244, 240, 229, 0.72);
  color: var(--paper-soft);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-updates a span,
.footer-updates a strong {
  padding: 0.65rem 0.72rem;
}

.footer-updates a strong {
  background: var(--heritage-red);
  border-left: 1px solid rgba(244, 240, 229, 0.72);
}

.footer-updates a:hover strong {
  background: var(--heritage-red-dark);
}

@media (min-width: 1001px) {
  main.section > .container > .panel:first-child.stack:not(.program-card) {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    column-gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
  }

  main.section > .container > .panel:first-child.stack:not(.program-card) > h1 {
    grid-column: 1;
    grid-row: 1 / span 10;
  }

  main.section > .container > .panel:first-child.stack:not(.program-card) > :not(h1) {
    grid-column: 2;
  }

  .program-overview-grid > .stack {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    column-gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
  }

  .program-overview-grid > .stack > h1 {
    grid-column: 1;
    grid-row: 1 / span 8;
  }

  .program-overview-grid > .stack > :not(h1) {
    grid-column: 2;
  }
}

@media (max-width: 780px) {
  .nav-wrap {
    min-height: 72px;
  }

  main {
    padding-top: 72px;
  }

  main.section {
    padding-top: 100px;
  }

  .site-nav {
    width: auto;
    top: 72px;
    border: 2px solid var(--navy);
    background: var(--paper-soft);
  }

  .nav-left,
  .nav-right {
    position: static;
  }

  .site-nav > .nav-cta {
    margin-left: 0;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-content {
    min-height: 500px;
    padding: 2rem 1.4rem;
  }

  .hero-content::before {
    width: 100%;
    opacity: 0.16;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.4rem);
  }

  .card {
    min-height: 190px;
  }

  .program-highlights {
    align-items: stretch;
    flex-direction: column;
  }

  .program-highlight {
    flex-wrap: wrap;
  }

  .program-highlight + .program-highlight {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .program-grant-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-group {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Poster system must win the cascade. */
.hero-layout { box-shadow: none; }
.hero-content h1 em { color: var(--paper-soft); text-shadow: none; }
.hero .program-card { background: var(--paper-soft); }
.kicker,
.card,
.card:hover { box-shadow: none; }
.card:nth-child(3n + 2),
.card:nth-child(3n) { background: rgba(244, 236, 222, 0.52); }

.footer {
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 0;
}

.footer .footer-updates {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
}

.footer .footer-updates h4 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.footer .footer-updates p {
  max-width: 34rem;
  margin: 0 0 1.1rem;
  color: rgba(244, 236, 222, 0.82);
  font-family: var(--font-editorial);
  font-size: 1rem;
  line-height: 1.5;
}

.footer .footer-updates a {
  min-height: 50px;
  font-size: 0.74rem;
}

.footer .footer-updates a span,
.footer .footer-updates a strong {
  padding: 0.82rem 0.95rem;
}

.status-copy,
.hero .program-card .status-copy {
  border: 0;
  border-left: 6px solid var(--heritage-red);
  background: transparent;
}

/* Brand palette lock: final layer after all legacy refresh rules. */
:root {
  --paper: #d8c8aa;
  --paper-soft: #eadfc8;
  --bone-deep: #cbb88f;
  --navy: #061b2e;
  --navy-deep: #021421;
  --heritage-red: #8f201b;
  --heritage-red-dark: #681510;
  --varsity-gold: #d3a52f;
}

body {
  background:
    linear-gradient(rgba(216, 200, 170, 0.86), rgba(216, 200, 170, 0.86)),
    var(--paper-texture-url) center top / 1080px auto repeat,
    var(--paper);
}

.site-header,
.site-header.scrolled {
  background: rgba(216, 200, 170, 0.97);
}

.mission-page main.section > .container > .panel:first-child,
.program-page main.section > .container > .panel:first-child,
.contact-page main.section > .container > .panel:first-child {
  color: var(--paper-soft);
  background:
    repeating-linear-gradient(0deg, transparent 0 45px, rgba(234, 223, 200, 0.06) 45px 46px),
    var(--navy);
  border-top-color: var(--heritage-red);
}

.mission-page main.section > .container > .panel:first-child h1,
.program-page main.section > .container > .panel:first-child h1,
.contact-page main.section > .container > .panel:first-child h1,
.mission-page main.section > .container > .panel:first-child .lede,
.program-page main.section > .container > .panel:first-child .lede,
.contact-page main.section > .container > .panel:first-child .lede,
.program-page main.section > .container > .panel:first-child .status-copy {
  color: var(--paper-soft);
}

.mission-page main.section > .container > .panel:first-child h1 em,
.program-page main.section > .container > .panel:first-child h1 em,
.contact-page main.section > .container > .panel:first-child h1 em {
  color: var(--varsity-gold);
}

.mission-page main.section > .container > .panel:first-child h1::after {
  color: var(--varsity-gold);
}

.mission-page .card-grid .card:first-child h3,
.contact-page .card-grid .card:first-child h3,
.program-page .card-grid .card:first-child h3 {
  color: var(--navy);
}

.mission-page .card-grid .card:last-child h3,
.contact-page .card-grid .card:last-child h3,
.program-page .card-grid .card:last-child h3 {
  color: var(--paper-soft);
}

/* Refined hero: one flat editorial spread, with gold used only as punctuation. */
.btn-secondary,
.hero .btn-secondary {
  border-color: var(--navy);
  background: var(--paper-soft);
  color: var(--navy);
}

.btn-secondary:hover,
.hero .btn-secondary:hover {
  background: var(--bone-deep);
  color: var(--navy);
}

.home-page .hero {
  padding: clamp(2.5rem, 4vw, 4rem) 0 clamp(4.8rem, 8vw, 7rem);
  background: var(--navy);
}

.home-page .hero::after {
  color: var(--paper-soft);
  background: var(--heritage-red);
}

.home-page .hero-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  overflow: hidden;
  border-top: 1px solid rgba(234, 223, 200, 0.34);
  border-bottom: 1px solid rgba(234, 223, 200, 0.34);
  background: var(--navy-deep);
}

.home-page .hero-content {
  min-height: 650px;
  padding: clamp(2.7rem, 5vw, 5.4rem);
  border-right: 1px solid rgba(234, 223, 200, 0.28);
  background: var(--navy-deep);
  box-shadow: none;
}

.home-page .hero-content::before {
  width: 100%;
  opacity: 1;
  background: repeating-linear-gradient(0deg, transparent 0 95px, rgba(234, 223, 200, 0.055) 95px 96px);
}

.home-page .hero-content h1 em {
  color: #b7463d;
}

.home-page .hero-content .lede {
  border-left-color: var(--heritage-red);
}

.home-page .hero .program-card {
  align-self: stretch;
  min-height: 650px;
  margin: 0;
  padding: clamp(2.7rem, 4.3vw, 4.7rem);
  color: var(--paper-soft);
  background:
    repeating-linear-gradient(0deg, transparent 0 95px, rgba(234, 223, 200, 0.045) 95px 96px),
    var(--navy);
  box-shadow: none;
  clip-path: none;
  transform: none;
}

.home-page .hero .program-card::before {
  display: none;
}

.home-page .hero .program-card::after {
  top: 2.1rem;
  right: 2.4rem;
  color: var(--varsity-gold);
}

.home-page .hero .program-card h2,
.home-page .hero .program-card .lede,
.home-page .hero .program-card .program-grant-note strong,
.home-page .hero .program-card .program-grant-note span,
.home-page .hero .program-card .status-copy {
  color: var(--paper-soft);
}

.home-page .hero .program-card h2 {
  max-width: 10ch;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
}

.home-page .hero .program-card .lede {
  max-width: 38rem;
}

.home-page .program-grant-note {
  margin-top: 1.4rem;
  padding: 1rem 0;
  border-top-color: rgba(234, 223, 200, 0.52);
  border-bottom: 1px solid rgba(234, 223, 200, 0.52);
}

.home-page .hero .program-card .status-copy {
  margin: 1.45rem 0 0;
  padding: 0.9rem 0 0.9rem 1.1rem;
  border-left-color: var(--heritage-red);
  background: transparent;
}

.home-page .hero .program-card .actions {
  margin-top: 1.65rem;
  gap: 1rem;
}

.home-page .hero .program-card .btn-secondary {
  background: var(--paper-soft);
  color: var(--navy);
}

.program-page .program-highlights {
  color: var(--navy);
  background: var(--bone-deep);
}

.program-page .program-highlight strong,
.program-page .program-highlight span {
  color: var(--navy);
}

.mission-page main.section > .container > .panel:first-child h1 em,
.program-page main.section > .container > .panel:first-child h1 em,
.contact-page main.section > .container > .panel:first-child h1 em {
  color: #b7463d;
}

.program-page main.section > .container > .panel:nth-child(2) {
  color: var(--navy);
  background: var(--paper-soft);
  border-top: 8px solid var(--heritage-red);
}

.mission-page .card-grid .card:first-child,
.contact-page .card-grid .card:first-child,
.program-page .card-grid .card:first-child {
  color: var(--navy);
  background: var(--paper-soft);
}

.mission-page .card-grid .card:first-child .kicker,
.contact-page .card-grid .card:first-child .kicker,
.program-page .card-grid .card:first-child .kicker {
  color: var(--paper-soft);
  background: var(--heritage-red);
}

/* Contemporary varsity pass: a lively header and one intentional navy field. */
.site-header,
.site-header.scrolled {
  border-top: 6px solid var(--heritage-red);
  border-bottom: 3px solid var(--navy);
  background:
    linear-gradient(90deg, rgba(143, 32, 27, 0.055), transparent 30%, rgba(6, 27, 46, 0.055)),
    var(--paper);
  box-shadow: none;
}

.site-header::after {
  display: none;
}

.nav-wrap {
  min-height: 84px;
}

.site-header .brand::before,
.site-header .brand::after {
  position: absolute;
  top: 50%;
  color: var(--heritage-red);
  font-size: 0.56rem;
  transform: translateY(-50%);
}

.site-header .brand::before {
  content: '★';
  left: -1.35rem;
}

.site-header .brand::after {
  content: '★';
  right: -1.35rem;
}

.site-header .brand img {
  height: 56px;
}

.site-nav a::after {
  display: none;
}

.site-nav a:not(.nav-cta) {
  padding: 0.58rem 0.72rem;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--paper-soft);
  background: var(--navy);
}

.site-nav a:not(.nav-cta).active {
  color: var(--paper-soft);
  background: var(--heritage-red);
}

.site-nav a.nav-cta {
  box-shadow: 4px 4px 0 var(--navy);
}

main {
  padding-top: 93px;
}

main.section {
  padding-top: 133px;
}

.home-page .hero {
  padding-bottom: 3.6rem;
}

.home-page .hero::after {
  content: none;
}

.home-page .hero-layout,
.home-page .hero-content,
.home-page .hero .program-card {
  background: var(--navy);
}

.home-page .hero-layout {
  border: 1px solid rgba(234, 223, 200, 0.34);
}

.home-page .hero-content {
  border-right: 4px solid var(--heritage-red);
}

.home-page .hero-content::before,
.home-page .hero-content::after {
  content: none;
}

.home-page .hero-content h1 {
  max-width: 10.5ch;
  line-height: 1.03;
}

.home-page .hero-content h1 em {
  display: block;
  margin-bottom: 0.14em;
  color: var(--paper-soft);
  font-size: 0.82em;
  line-height: 0.96;
}

.home-page .hero-content h1 em::after {
  content: '★';
  display: inline-block;
  margin-left: 0.65em;
  color: var(--varsity-gold);
  font-family: var(--font-ui);
  font-size: 0.16em;
  vertical-align: top;
}

.hero-modern {
  display: inline;
  padding: 0.01em 0.1em 0.04em;
  color: var(--paper-soft);
  background: var(--heritage-red);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-transform: uppercase;
}

.home-page .hero .program-card {
  border: 0;
}

.home-page .hero .program-card h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 3.7vw, 4.1rem);
  letter-spacing: -0.035em;
}

.home-page .footer {
  border-top: 7px solid var(--heritage-red);
}

.home-page .footer::before {
  display: none;
}

/* Unified system: one navy, one bone, one oxblood, and no accidental variants. */
:root {
  --paper: #dfd3bd;
  --paper-soft: #eee5d4;
  --bone-deep: #cdbb98;
  --navy: #061b2e;
  --navy-deep: #061b2e;
  --heritage-red: #8f201b;
  --heritage-red-dark: #681510;
}

body {
  font-family: var(--font-ui);
  background:
    radial-gradient(circle at 12% 18%, rgba(143, 32, 27, 0.055), transparent 21rem),
    radial-gradient(circle at 88% 42%, rgba(6, 27, 46, 0.055), transparent 25rem),
    var(--paper);
}

body::before {
  content: none;
}

.site-header,
.site-header.scrolled {
  background: var(--paper);
}

.site-header .brand::before,
.site-header .brand::after {
  color: var(--varsity-gold);
}

.home-page main,
.home-page .hero,
.home-page .hero-layout,
.home-page .hero-content,
.home-page .hero .program-card,
.footer {
  background: var(--navy);
}

.home-page .hero .program-card::after,
.home-page .hero-content h1 em::after,
.mission-page main.section > .container > .panel:first-child h1::after {
  content: none;
}

.mission-page main.section > .container > .panel:first-child,
.program-page main.section > .container > .panel:first-child,
.contact-page main.section > .container > .panel:first-child {
  background: var(--navy);
}

.program-page .program-highlights {
  color: var(--paper-soft);
  background: transparent;
  border-top-color: rgba(238, 229, 212, 0.48);
  border-bottom-color: rgba(238, 229, 212, 0.48);
}

.program-page .program-highlight + .program-highlight {
  border-color: rgba(238, 229, 212, 0.48);
}

.program-page .program-highlight strong,
.program-page .program-highlight span {
  color: var(--paper-soft);
}

.program-page main.section > .container > .panel:not(:first-child) {
  color: var(--navy);
  background: transparent;
  border-top: 6px solid var(--heritage-red);
}

.program-page main.section > .container > .panel:not(:first-child) .muted,
.program-page main.section > .container > .panel:not(:first-child) .lede {
  color: var(--navy);
}

.program-page .program-dual {
  gap: 0;
  background: var(--navy);
  border-top: 6px solid var(--heritage-red);
}

.program-page .program-dual > .panel:first-child,
.program-page .program-dual > .panel:last-child {
  color: var(--paper-soft);
  background: var(--navy);
  border: 0;
}

.program-page .program-dual > .panel:last-child {
  border-left: 1px solid rgba(238, 229, 212, 0.28);
}

.program-page .program-dual h2,
.program-page .program-dual .muted,
.program-page .program-dual strong {
  color: var(--paper-soft);
}

.program-page .program-dual .checklist li::before {
  color: var(--heritage-red);
}

.program-page .program-dual > .panel:first-child .checklist li::before,
.program-page .program-dual > .panel:last-child .checklist li::before {
  color: var(--heritage-red);
}

.mission-page main.section .card-grid .card,
.contact-page main.section .card-grid .card,
.program-page main.section .card-grid .card {
  min-height: 0;
  padding: 1.7rem 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-top: 6px solid var(--heritage-red);
}

.mission-page main.section .card-grid .card h3,
.contact-page main.section .card-grid .card h3,
.program-page main.section .card-grid .card h3,
.mission-page main.section .card-grid .card .muted,
.contact-page main.section .card-grid .card .muted,
.program-page main.section .card-grid .card .muted {
  color: var(--navy);
}

.mission-page main.section .card-grid .card .kicker,
.contact-page main.section .card-grid .card .kicker,
.program-page main.section .card-grid .card .kicker {
  color: var(--paper-soft);
  background: var(--heritage-red);
}

.panel,
.card {
  border-radius: 0;
}

.footer {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding: 3rem 0 1.25rem;
  border-top: 7px solid var(--heritage-red);
}

.home-page .footer {
  margin-top: 0;
}

.footer::before,
.home-page .footer::before {
  display: none;
}

.footer-grid {
  grid-template-columns: minmax(250px, 0.9fr) minmax(170px, 0.55fr) minmax(360px, 1.35fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.footer-social-block {
  margin-top: 1.65rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(238, 229, 212, 0.25);
}

.footer .footer-social-block h4 {
  margin-bottom: 0.8rem;
  color: var(--paper-soft);
}

.footer .footer-updates {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

.footer .footer-updates h4 {
  color: var(--paper-soft);
}

.footer .footer-updates p {
  color: rgba(238, 229, 212, 0.78);
  font-family: var(--font-ui);
}

.footer hr {
  margin-top: 2.2rem;
}

/* Spacing and hierarchy refinement. */
.home-page .hero-layout {
  overflow: hidden;
  border: 0;
  border-radius: 0 30px 0 30px;
}

.home-page .hero-content {
  border-right: 2px solid var(--heritage-red);
}

.home-page .hero .program-card::before {
  content: none;
  display: none;
}

.home-page .hero .program-card .status-copy strong {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--paper-soft);
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.015em;
  line-height: 1.05;
  text-transform: uppercase;
}

.program-page main.section > .container > .panel:first-child {
  min-height: 0;
  padding: clamp(2.4rem, 3.4vw, 3.4rem);
  padding-bottom: 2rem;
}

@media (min-width: 1001px) {
  .program-page .program-overview-grid > .stack > h1 {
    grid-row: 1 / span 4;
  }
}

.program-page .program-promise-section,
.program-page .completion-section,
.program-page .submissions-section {
  min-height: 0;
  padding-block: clamp(2.2rem, 3.5vw, 3.4rem);
}

.program-page main.section > .container {
  gap: 1.75rem;
}

.program-page .program-promise-section {
  padding-bottom: 1.25rem;
}

.program-page .program-promise-section h2,
.program-page .completion-section h2,
.program-page .submissions-section h2 {
  max-width: none;
  width: 100%;
  text-align: center;
}

.program-page .program-promise-section > p,
.program-page .completion-section > p {
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.program-page .completion-section .checklist {
  width: auto;
  margin: 0;
}

.program-page .completion-section {
  padding-bottom: 1rem;
}

.program-page .checklist {
  gap: 0.68rem;
}

.program-page .checklist li {
  padding-left: 1.75rem;
}

.program-page .checklist li::before,
.program-page .program-dual > .panel:first-child .checklist li::before,
.program-page .program-dual > .panel:last-child .checklist li::before {
  content: '→';
  top: -0.08rem;
  color: var(--heritage-red);
  font-size: 1.05rem;
  font-weight: 900;
}

.program-page .submissions-section {
  padding-top: 1.8rem;
  padding-bottom: 1rem;
}

.program-page .submissions-section .actions {
  justify-content: center;
}

.program-page .card-grid {
  align-items: start;
}

.program-page .program-dual {
  overflow: hidden;
  border-radius: 0 24px 0 24px;
}

.program-page .program-dual > .panel {
  align-content: start;
}

.program-page .program-dual .program-subhead {
  margin-bottom: 0.65rem;
}

.home-page .hero-content h1 {
  margin-bottom: 1.85rem;
}

.home-page .hero-content .hero-modern {
  font-size: clamp(4.2rem, 5vw, 5.9rem);
  line-height: 1.06;
}

.home-page .hero .program-card h2 {
  max-width: 16ch;
}

.program-page main.section > .container > .panel:first-child h1 em {
  color: var(--heritage-red);
}

.program-page .completion-details {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  width: min(1050px, 100%);
  margin: 0.8rem auto 0;
}

.program-page .completion-notes {
  display: grid;
  gap: 1.25rem;
  padding-left: clamp(1.4rem, 3vw, 2.4rem);
  border-left: 3px solid var(--heritage-red);
}

.program-page .completion-notes p {
  margin: 0;
  text-align: left;
}

@media (min-width: 781px) {
  .program-page .card-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }
}

.program-page .card-grid .card,
.mission-page .card-grid .card {
  padding-bottom: 0.8rem;
}

@media (min-width: 1001px) {
  .mission-page main.section > .container > .panel:first-child.stack:not(.program-card) > h1 {
    grid-row: 1 / span 4;
  }
}

.mission-page .footer {
  margin-top: 2rem;
}

.program-page .footer {
  margin-top: 2rem;
}

.mission-page main.section > .container > .panel:first-child {
  padding-bottom: 2.5rem;
}

.contact-page .contact-lead {
  min-height: 0;
  padding: clamp(2.8rem, 4.5vw, 4.5rem);
  border-top: 0;
  border-radius: 0 40px 0 40px;
}

.contact-page .contact-lead h1 {
  max-width: none;
  white-space: nowrap;
}

.contact-page .contact-lead .lede {
  max-width: none;
  white-space: nowrap;
}

.contact-page .contact-card-grid {
  gap: clamp(2rem, 4vw, 4rem);
}

.contact-page .footer {
  margin-top: 2rem;
}

@media (max-width: 780px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-page .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .hero-content {
    min-height: 0;
    padding: 2.6rem 1.5rem;
    border-right: 0;
    border-bottom: 2px solid var(--heritage-red);
    box-shadow: none;
  }

  .home-page .hero-content h1 {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 4.6rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .home-page .hero-content .hero-modern {
    display: inline;
    font-size: clamp(2.55rem, 11.5vw, 3.3rem);
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .home-page .hero .program-card {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 2.6rem 1.5rem;
  }

  .program-page .completion-details {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .program-page .completion-notes {
    padding-top: 1.2rem;
    padding-left: 0;
    border-top: 3px solid var(--heritage-red);
    border-left: 0;
  }

  .contact-page .contact-lead h1 {
    white-space: normal;
  }

  .contact-page .contact-lead .lede {
    white-space: normal;
  }

  .hero-content {
    min-height: 520px;
    padding: 2.2rem 1.5rem;
    box-shadow: 9px 9px 0 rgba(6, 27, 46, 0.12);
  }

  .hero-content::before {
    width: 100%;
    opacity: 0.42;
  }

  .hero-content h1 { font-size: clamp(3rem, 15vw, 5.2rem); }
  .hero .program-card {
    width: 94%;
    margin-top: -1rem;
    transform: none;
  }
}

.footer-updates .footer-signup-form {
  max-width: none;
}

.footer-updates .footer-signup-form label {
  color: var(--paper-soft);
}

.footer-updates .footer-signup-form .signup-row {
  grid-template-columns: minmax(0, 1fr);
}

.footer-updates .footer-signup-form input[type="email"] {
  min-height: 46px;
  border-color: rgba(244, 240, 229, 0.58);
  background: rgba(244, 240, 229, 0.08);
  color: var(--paper-soft);
}

.footer-updates .footer-signup-form input[type="email"]::placeholder {
  color: rgba(244, 240, 229, 0.62);
}

.footer-updates .footer-signup-form button {
  min-height: 46px;
  border: 1px solid var(--paper-soft);
  background: transparent;
  color: var(--paper-soft);
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-updates .footer-signup-form button:hover {
  background: var(--paper-soft);
  color: var(--navy);
}

.footer-updates .form-message {
  color: rgba(244, 240, 229, 0.78);
}

.footer-updates .form-message.is-success,
.footer-updates .form-message.is-error {
  color: var(--paper-soft);
}

@media (max-width: 620px) {
  .signup-row {
    grid-template-columns: 1fr;
  }
}

.modal-open {
  overflow: hidden;
}

.signup-modal[hidden] {
  display: none;
}

.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.signup-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 29, 50, 0.58);
}

.signup-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 2px solid var(--navy);
  background: var(--paper-soft);
  box-shadow: 10px 10px 0 rgba(7, 29, 50, 0.28);
}

.signup-modal-panel h2 {
  margin-bottom: 0.65rem;
}

.signup-modal-panel .muted {
  margin-bottom: 1.1rem;
}

.signup-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 38px;
  height: 38px;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.signup-modal-close:hover {
  background: var(--navy);
  color: var(--paper-soft);
}

.modal-signup-form {
  max-width: none;
}

@media (max-width: 620px) {
  .signup-modal-panel {
    padding-top: 3.25rem;
  }
}

/* Mobile navigation rebuild: full-width sheet instead of a cramped dropdown. */
@media (max-width: 780px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header,
  .site-header.scrolled {
    background: var(--paper);
    border-top: 5px solid var(--heritage-red);
    border-bottom: 2px solid var(--navy);
  }

  .site-header .nav-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    min-height: 82px;
    gap: 0.75rem;
    align-items: center;
  }

  .site-header .brand {
    position: static;
    grid-column: 2;
    justify-self: center;
    transform: none;
  }

  .site-header .brand::before,
  .site-header .brand::after {
    display: none;
  }

  .site-header .brand img {
    height: 46px;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 1;
    justify-self: start;
    align-items: center;
    justify-content: center;
    min-width: 94px;
    min-height: 44px;
    padding: 0.75rem 0.9rem;
    border: 2px solid var(--navy);
    background: var(--paper-soft);
    color: var(--navy);
    box-shadow: 3px 3px 0 var(--navy);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .menu-toggle[aria-expanded='true'] {
    background: var(--navy);
    color: var(--paper-soft);
    box-shadow: 2px 2px 0 var(--heritage-red);
  }

  .site-nav {
    position: fixed;
    inset: 82px 0 0 0;
    z-index: 190;
    display: flex;
    width: 100%;
    min-height: calc(100dvh - 82px);
    padding: 1.25rem max(1.35rem, env(safe-area-inset-right)) calc(2rem + env(safe-area-inset-bottom)) max(1.35rem, env(safe-area-inset-left));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    background:
      linear-gradient(135deg, rgba(6, 27, 46, 0.045), transparent 34%),
      var(--paper-soft);
    border: 0;
    border-top: 3px solid var(--heritage-red);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.85rem);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-left,
  .nav-right,
  .nav-group {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a,
  .site-nav a:not(.nav-cta) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 1rem 0.15rem;
    border-bottom: 1px solid rgba(6, 27, 46, 0.24);
    color: var(--navy);
    background: transparent;
    font-size: clamp(1rem, 4.7vw, 1.18rem);
    line-height: 1.1;
    letter-spacing: 0.11em;
  }

  .site-nav a:not(.nav-cta)::after {
    content: '→';
    display: block;
    position: static;
    width: auto;
    height: auto;
    margin-left: 1rem;
    color: var(--heritage-red);
    background: transparent;
    font-size: 1.1rem;
  }

  .site-nav a:not(.nav-cta):hover,
  .site-nav a:not(.nav-cta).active {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
    color: var(--paper-soft);
    background: var(--heritage-red);
  }

  .site-nav a:not(.nav-cta):hover::after,
  .site-nav a:not(.nav-cta).active::after {
    color: var(--paper-soft);
  }

  .site-nav a.nav-cta {
    width: 100%;
    min-height: 58px;
    margin: 1.25rem 0 0;
    padding: 1rem 1.2rem;
    justify-content: center;
    border: 2px solid var(--navy);
    background: var(--heritage-red);
    color: var(--paper-soft);
    box-shadow: 4px 4px 0 var(--navy);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }

  .site-nav a.nav-cta::after {
    display: none;
  }

  main {
    padding-top: 82px;
  }

  main.section {
    padding-top: 112px;
  }
}

@media (max-width: 780px) {
  .site-header .brand,
  .menu-toggle {
    grid-row: 1;
  }
}

/* Dedicated QR/signup landing page. */
.signup-page {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 18% 12%, rgba(143, 32, 27, 0.08), transparent 24rem),
    radial-gradient(circle at 88% 70%, rgba(6, 27, 46, 0.12), transparent 28rem),
    var(--paper);
}

.signup-page main.signup-landing {
  display: grid;
  min-height: calc(100dvh - 93px);
  padding-top: 93px;
  padding-bottom: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.signup-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  min-height: min(720px, calc(100dvh - 150px));
  background: var(--navy);
  color: var(--paper-soft);
  border-top: 7px solid var(--heritage-red);
  box-shadow: 14px 14px 0 rgba(6, 27, 46, 0.14);
}

.signup-landing-copy,
.signup-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.signup-landing-copy {
  position: relative;
  overflow: hidden;
  border-right: 2px solid var(--heritage-red);
}

.signup-landing-copy::after {
  content: '';
  position: absolute;
  right: -18%;
  bottom: -18%;
  width: min(420px, 72vw);
  aspect-ratio: 1;
  border: 1px solid rgba(238, 229, 212, 0.15);
  transform: rotate(14deg);
}

.signup-landing-copy > * {
  position: relative;
  z-index: 1;
}

.signup-landing-copy .eyebrow {
  color: var(--paper-soft);
}

.signup-landing-copy h1 {
  max-width: 100%;
  margin-bottom: 1.4rem;
  color: var(--paper-soft);
  font-size: clamp(3.1rem, 6.1vw, 6.25rem);
}

.signup-landing-copy h1 em {
  display: block;
  margin-bottom: 0.1em;
  color: var(--paper-soft);
  font-size: 0.56em;
  line-height: 0.98;
}

.signup-landing-copy .lede {
  max-width: 680px;
  color: rgba(238, 229, 212, 0.9);
  font-size: clamp(1.08rem, 1.8vw, 1.48rem);
}

.signup-note {
  margin: 1.3rem 0 0;
  padding-left: 1rem;
  border-left: 4px solid var(--heritage-red);
  color: rgba(238, 229, 212, 0.74);
  font-family: var(--font-ui);
  font-weight: 700;
  line-height: 1.45;
}

.signup-panel {
  background: var(--paper-soft);
  color: var(--navy);
}

.signup-panel h2 {
  max-width: 10ch;
  margin-bottom: 0.85rem;
  color: var(--navy);
}

.signup-panel .muted {
  max-width: 32rem;
  margin-bottom: 1.6rem;
  color: rgba(6, 27, 46, 0.78);
  font-family: var(--font-ui);
}

.signup-panel .email-signup-form {
  max-width: none;
}

.signup-panel .signup-row {
  grid-template-columns: minmax(0, 1fr);
}

.signup-panel .email-signup-form input[type="email"] {
  min-height: 58px;
  border: 2px solid var(--navy);
  background: #fffaf0;
  font-size: 1.05rem;
}

.signup-panel .email-signup-form .btn {
  width: 100%;
  min-height: 58px;
  justify-content: center;
}

.signup-footer {
  padding: 1.1rem 0 1.4rem;
  background: var(--paper);
  color: var(--navy);
}

.signup-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.signup-footer a {
  color: var(--navy);
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .signup-page main.signup-landing {
    min-height: auto;
    padding-top: 112px;
  }

  .signup-landing-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .signup-landing-copy {
    border-right: 0;
    border-bottom: 2px solid var(--heritage-red);
  }

  .signup-landing-copy h1 {
    max-width: none;
    font-size: clamp(3.1rem, 16vw, 4.9rem);
  }
}

@media (max-width: 620px) {
  .signup-page main.signup-landing {
    padding-top: 88px;
    padding-bottom: 1.4rem;
    align-items: start;
  }

  .signup-landing-grid {
    width: min(100%, 94vw);
    box-shadow: none;
  }

  .signup-landing-copy,
  .signup-panel {
    padding: 1.5rem 1.4rem;
  }

  .signup-panel {
    order: -1;
  }

  .signup-panel .email-signup-form {
    order: -1;
    margin-bottom: 1.2rem;
  }

  .signup-landing-copy h1 {
    font-size: clamp(2.35rem, 12vw, 4.9rem);
    line-height: 0.95;
  }

  .signup-landing-copy h1 em {
    font-size: 0.62em;
  }

  .signup-panel h2 {
    max-width: none;
    margin-bottom: 0.55rem;
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .signup-panel .muted {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .signup-panel .email-signup-form input[type="email"],
  .signup-panel .email-signup-form .btn {
    min-height: 52px;
  }

  .signup-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
