:root {
  --green-900: #143a2b;
  --green-800: #1f593f;
  --green-700: #2f724d;
  --green-200: #dfead7;
  --green-100: #eff6eb;
  --yellow-500: #f4bf38;
  --yellow-300: #ffd76e;
  --yellow-200: #fff2b8;
  --sky-400: #8fc1cd;
  --sky-100: #eaf5f7;
  --clay-400: #f0a986;
  --clay-100: #fbebe1;
  --lavender-100: #f0e9f7;
  --cream: #faf8f1;
  --cream-2: #f3eee1;
  --ink: #122017;
  --muted: #58675d;
  --line: #d9e4d4;
  --white: #ffffff;
  --shadow-sm: 0 6px 18px rgba(20, 58, 43, 0.08);
  --shadow: 0 10px 24px rgba(20, 58, 43, 0.08), 0 30px 80px rgba(20, 58, 43, 0.12);
  --shadow-lg: 0 18px 38px rgba(20, 58, 43, 0.12), 0 46px 110px rgba(20, 58, 43, 0.18);
  --radius: 14px;
  --radius-lg: 26px;
  --radius-xl: 42px;
  --transition: 220ms cubic-bezier(0.22, 1, 0.36, 1);
  --spring: 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Fraunces", "Roboto Slab", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
  scroll-margin-top: 92px;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 228, 212, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-900);
  text-decoration: none;
}

.brand img {
  width: 78px;
  height: auto;
}

.brand strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--green-900);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--green-100);
  outline: none;
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--green-800);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--green-900);
  background: var(--yellow-500);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
  border-radius: 999px;
}

.hero {
  overflow: hidden;
  padding-top: 76px;
  padding-bottom: 78px;
  background:
    linear-gradient(90deg, rgba(239, 246, 235, 0.96) 0%, rgba(255, 255, 255, 0.96) 48%, rgba(234, 245, 247, 0.9) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--green-700), var(--yellow-500), #78a2aa);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 52px;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.day-copy h2,
.tuition-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 680px;
  font-size: clamp(3rem, 6vw, 5.85rem);
}

.hero-copy > p {
  max-width: 610px;
  margin: 24px 0 0;
  color: #314b3c;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions,
.tuition-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 14px 32px rgba(31, 89, 63, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-900);
}

.button-secondary {
  color: var(--green-900);
  background: var(--white);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--yellow-500);
  background: var(--yellow-200);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: 34px 0 0;
}

.quick-facts div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 228, 212, 0.9);
  border-radius: var(--radius);
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 2px 0 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: 1.24rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(280px, calc(100% - 36px));
  padding: 16px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 228, 212, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(18, 32, 23, 0.15);
}

.hero-note span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-top: 3px;
  font-family: var(--font-serif);
  font-size: 1.08rem;
}

.method-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8fbf5 0%, var(--white) 44%, var(--sky-100) 100%);
}

.method-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.method-copy h2,
.method-section-heading h3,
.method-why h3 {
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.04;
}

.method-copy h2 {
  max-width: 820px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

.method-copy h3 {
  margin: 28px 0 0;
  color: var(--green-800);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.method-copy p,
.method-section-heading p,
.method-why p,
.method-cta p {
  color: #314b3c;
  font-size: clamp(1.02rem, 1.65vw, 1.16rem);
}

.method-copy p {
  max-width: 760px;
  margin: 18px 0 0;
}

.method-image {
  margin: 0;
  color: var(--green-900);
}

.method-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.method-image figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.method-principles,
.planes-layout,
.method-why {
  margin-top: clamp(66px, 9vw, 112px);
}

.method-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: end;
}

.method-section-heading h3,
.method-why h3 {
  font-size: clamp(2.05rem, 4.2vw, 4.05rem);
}

.method-section-heading p {
  margin: 0;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.principle-card,
.plane-card {
  border: 1px solid rgba(217, 228, 212, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(20, 58, 43, 0.08);
}

.principle-card {
  min-height: 310px;
  padding: clamp(20px, 3vw, 30px);
}

.principle-card span,
.plane-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 10px;
  color: var(--green-900);
  background: var(--yellow-200);
  border: 1px solid rgba(244, 191, 56, 0.68);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.principle-card h4,
.plane-card h4,
.method-why h4 {
  margin: 18px 0 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: clamp(1.24rem, 2vw, 1.62rem);
  line-height: 1.12;
}

.principle-card p,
.plane-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.62;
}

.guide-card {
  color: var(--white);
  background: var(--green-900);
  border-color: var(--green-900);
}

.guide-card span {
  color: var(--green-900);
  background: var(--yellow-500);
}

.guide-card h4,
.guide-card p {
  color: var(--white);
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.plane-card {
  display: grid;
  align-content: start;
  min-height: 420px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

.plane-card strong {
  display: block;
  margin-top: 8px;
  color: var(--green-800);
  font-size: 1rem;
}

.plane-card small {
  display: block;
  align-self: end;
  margin-top: 24px;
  color: var(--green-900);
  font-weight: 900;
}

.method-why {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
  padding: clamp(26px, 5vw, 52px);
  color: var(--green-900);
  background: var(--white);
  border: 1px solid rgba(217, 228, 212, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.method-why h4 {
  margin-top: 14px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.method-why p {
  margin: 18px 0 0;
}

.method-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
}

.method-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.method-cta .button {
  width: fit-content;
  margin-top: 4px;
  background: var(--yellow-500);
  color: var(--green-900);
  box-shadow: none;
}

.method-cta .button:hover,
.method-cta .button:focus-visible {
  background: var(--yellow-200);
}

.method-cta strong {
  color: var(--yellow-200);
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.funnel-section {
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, #f7fbf4 100%);
}

.funnel-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: 42px;
  align-items: stretch;
}

.funnel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
}

.funnel-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 4.8vw, 4.6rem);
  line-height: 1.04;
}

.funnel-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: #314b3c;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.funnel-photo {
  position: relative;
  margin-top: 32px;
  border: 1px solid rgba(217, 228, 212, 0.95);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(20, 58, 43, 0.12);
}

.funnel-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--green-700), var(--yellow-500), #78a2aa);
}

.funnel-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.funnel-card {
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: clamp(20px, 3vw, 34px);
  background: var(--green-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.funnel-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.funnel-progress div {
  height: 9px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.funnel-progress i {
  display: block;
  width: 16.666%;
  height: 100%;
  background: var(--yellow-500);
  border-radius: inherit;
  transition: width 220ms ease;
}

.funnel-status {
  min-height: 24px;
  color: var(--yellow-200);
  font-size: 0.9rem;
  font-weight: 800;
}

.funnel-status.is-error {
  color: #ffe0df;
}

.funnel-status.is-success {
  color: #dff4df;
}

.funnel-step {
  display: none;
  min-height: 360px;
  margin: 0;
  padding: 0;
  border: 0;
}

.funnel-step.is-active {
  display: block;
}

.funnel-step legend {
  width: 100%;
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.68rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1.12;
}

.funnel-option {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 78px;
  margin-top: 10px;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.funnel-option:hover,
.funnel-option:focus-within {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(244, 191, 56, 0.7);
  transform: translateY(-1px);
}

.funnel-option input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--yellow-500);
}

.funnel-option strong,
.funnel-option small {
  display: block;
}

.funnel-option strong {
  font-size: 1rem;
  line-height: 1.24;
}

.funnel-option small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  line-height: 1.38;
}

.funnel-option:has(input:checked) {
  color: var(--green-900);
  background: var(--yellow-500);
  border-color: var(--yellow-500);
}

.funnel-option:has(input:checked) small {
  color: rgba(20, 58, 43, 0.78);
}

.funnel-choice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.funnel-option.compact {
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 96px;
  margin-top: 0;
  text-align: center;
}

.funnel-option.compact input {
  position: absolute;
  opacity: 0;
}

.funnel-option.compact strong {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1;
}

.funnel-result-step {
  color: var(--white);
}

.funnel-match {
  padding: 18px;
  color: var(--green-900);
  background: var(--yellow-500);
  border-radius: var(--radius);
}

.funnel-match span {
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.funnel-match h3 {
  margin: 6px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.funnel-match p {
  margin: 8px 0 0;
  color: rgba(20, 58, 43, 0.82);
  line-height: 1.45;
}

.funnel-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.funnel-contact-grid label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
}

.funnel-contact-grid label:first-child {
  grid-column: 1 / -1;
}

.funnel-contact-grid input {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.funnel-contact-grid input:focus {
  border-color: var(--yellow-500);
  outline: 3px solid rgba(244, 191, 56, 0.28);
}

.funnel-card .funnel-consent {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9) !important;
}

.funnel-card .funnel-consent a {
  color: var(--yellow-200) !important;
}

.funnel-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.funnel-controls .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.26);
}

.funnel-controls .button-secondary:hover,
.funnel-controls .button-secondary:focus-visible {
  color: var(--green-900);
  background: var(--white);
  border-color: var(--white);
}

.is-hidden {
  display: none !important;
}

.program-band {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.day-copy h2,
.tuition-copy h2,
.final-cta h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.section-copy p,
.section-heading p,
.day-copy p,
.tuition-copy p,
.final-cta p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--green-800);
  font-weight: 800;
  text-decoration: none;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pillar-card,
.schedule-card,
.campus-card,
.resource-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pillar-card {
  min-height: 230px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(20, 58, 43, 0.07);
}

.pillar-card:nth-child(2) {
  background: var(--sky-100);
}

.pillar-card:nth-child(3) {
  background: var(--green-100);
}

.pillar-card:nth-child(4) {
  background: var(--clay-100);
}

.pillar-card svg {
  width: 42px;
  height: 42px;
  color: var(--green-800);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card h3,
.schedule-card h3,
.campus-card h3,
.timeline h3 {
  margin: 18px 0 8px;
  color: var(--green-900);
  font-size: 1.16rem;
  line-height: 1.25;
}

.pillar-card p,
.schedule-card p,
.campus-card p,
.timeline p {
  margin: 0;
  color: var(--muted);
}

.day-section {
  background: linear-gradient(180deg, var(--green-100), var(--white));
}

.day-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.day-media img {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.timeline div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--green-900);
  background: var(--yellow-500);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-weight: 700;
}

.timeline h3 {
  margin-top: 2px;
}

.timeline p {
  grid-column: 2;
}

.schedule-band {
  background: var(--green-900);
}

.schedule-band h2,
.schedule-band .section-heading p {
  color: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 650px;
}

.section-heading p {
  max-width: 340px;
}

.section-heading > div {
  max-width: 440px;
}

.section-heading > div p {
  max-width: none;
}

.notice-effective {
  margin-top: 10px;
  color: var(--green-800);
  font-size: 0.86rem;
  font-weight: 900;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.schedule-card {
  min-height: 360px;
  padding: 26px;
}

.schedule-card.featured {
  background: var(--yellow-200);
  border-color: var(--yellow-500);
}

.schedule-icon {
  display: inline-flex;
  min-width: 54px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: var(--radius);
  font-weight: 900;
}

.schedule-card.featured .schedule-icon {
  background: var(--white);
}

.schedule-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.schedule-card li {
  position: relative;
  padding-left: 24px;
  color: #314b3c;
  font-weight: 600;
}

.schedule-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  background: var(--green-700);
  border-radius: 50%;
  transform: translateY(-50%);
}

.campuses-section {
  background: var(--white);
}

.campuses-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 54px;
}

.campus-list {
  display: grid;
  gap: 16px;
}

.campus-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(20, 58, 43, 0.07);
}

.campus-card img {
  width: 190px;
  height: 128px;
  object-fit: cover;
  border-radius: var(--radius);
}

.campus-card h3 {
  margin-top: 0;
}

.campus-card address {
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
}

.campus-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green-800);
  font-weight: 800;
  text-decoration: none;
}

.campus-card a:hover,
.campus-card a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.tuition-section {
  background: linear-gradient(135deg, var(--sky-100), var(--green-100));
}

.tuition-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: 44px;
  align-items: center;
}

.resource-panel {
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.resource-panel img {
  max-width: 260px;
  margin: 0 auto 20px;
}

.resource-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.resource-panel dl > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.resource-panel dt {
  color: var(--muted);
  font-weight: 800;
}

.resource-panel dd {
  margin: 0;
  color: var(--green-900);
  font-weight: 800;
  text-align: right;
}

.resource-panel-copy {
  margin-bottom: 18px;
  text-align: center;
}

.resource-panel-copy h3 {
  margin: 0;
  color: var(--green-900);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.16;
}

.resource-panel-copy p {
  max-width: 34rem;
  margin: 8px auto 0;
  color: var(--muted);
  line-height: 1.55;
}

.resource-downloads {
  display: grid;
  gap: 10px;
}

.resource-download {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 12px;
  color: var(--green-900);
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.resource-download:hover,
.resource-download:focus-visible {
  border-color: rgba(42, 101, 74, 0.35);
  box-shadow: 0 14px 26px rgba(25, 67, 47, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.resource-filetype {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--green-800);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.resource-download strong,
.resource-download small {
  display: block;
}

.resource-download strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.resource-download small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.forms-section {
  background: var(--white);
}

.forms-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1.42fr);
  gap: 52px;
  align-items: start;
}

.forms-copy {
  position: sticky;
  top: 116px;
}

.forms-copy h2 {
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.06;
}

.forms-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.form-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.form-points li {
  position: relative;
  padding-left: 26px;
  color: #314b3c;
  font-weight: 800;
}

.form-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 12px;
  height: 12px;
  background: var(--yellow-500);
  border: 3px solid var(--green-800);
  border-radius: 50%;
  transform: translateY(-50%);
}

.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.school-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: linear-gradient(180deg, var(--green-100), var(--white));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.school-form h3 {
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.15;
}

.form-note {
  margin: -4px 0 2px;
  padding: 12px 14px;
  color: #314b3c;
  background: rgba(255, 242, 184, 0.72);
  border: 1px solid rgba(244, 191, 56, 0.58);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.5;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.school-form label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 800;
}

.optional-label,
.field-hint {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.field-hint {
  margin-top: -3px;
}

.school-form input,
.school-form select,
.school-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd9c6;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.96rem;
}

.school-form textarea {
  resize: vertical;
}

.school-form input:focus,
.school-form select:focus,
.school-form textarea:focus {
  border-color: var(--green-800);
  box-shadow: 0 0 0 3px rgba(31, 89, 63, 0.14);
  outline: none;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px !important;
  align-items: start;
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.45;
}

.consent-field input {
  min-height: 20px;
  width: 20px;
  margin-top: 2px;
  accent-color: var(--green-800);
}

.consent-field a {
  color: var(--green-800);
  font-weight: 900;
}

.consent-field a:hover,
.consent-field a:focus-visible {
  color: var(--green-900);
  outline: none;
}

.form-submit {
  width: fit-content;
  min-width: 170px;
  cursor: pointer;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #0f3b2a;
  background: #dff4df;
  border: 1px solid #9dd39d;
}

.form-status.is-error {
  color: #5d1c1c;
  background: #ffe7e2;
  border: 1px solid #f3aaa0;
}

.quote-section {
  overflow: hidden;
  padding-top: 74px;
  padding-bottom: 74px;
  background: var(--white);
}

.quote-grid {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: center;
}

.quote-mark {
  color: var(--yellow-500);
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: 0.78;
}

blockquote {
  margin: 0;
}

blockquote p {
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.25;
}

blockquote cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.quote-grid img {
  align-self: end;
  width: 220px;
  border-radius: var(--radius);
}

.final-cta {
  padding: 84px 0;
  background: var(--green-800);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.final-cta .button-secondary:hover,
.final-cta .button-secondary:focus-visible {
  color: var(--green-900);
  background: var(--white);
}

.compliance-section {
  background: linear-gradient(180deg, var(--white), var(--green-100));
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.notice-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 24px;
  color: #314b3c;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(20, 58, 43, 0.09);
}

.notice-link-card {
  color: #314b3c;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.notice-link-card:hover,
.notice-link-card:focus-visible {
  border-color: rgba(31, 89, 63, 0.42);
  box-shadow: 0 24px 58px rgba(20, 58, 43, 0.14);
  outline: none;
  transform: translateY(-2px);
}

.notice-card span {
  width: fit-content;
  padding: 4px 9px;
  color: var(--green-900);
  background: var(--yellow-200);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.notice-card h3 {
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: 1.16rem;
  line-height: 1.2;
}

.notice-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.62;
}

.notice-card strong {
  width: fit-content;
  margin-top: 4px;
  color: var(--green-800);
  font-size: 0.9rem;
}

.legal-page-section {
  min-height: 62vh;
  background: linear-gradient(180deg, var(--green-100), var(--white));
}

.legal-page-card {
  max-width: 840px;
  padding: clamp(26px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-back {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  color: var(--green-800);
  font-weight: 900;
  text-decoration: none;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--green-900);
  outline: none;
}

.legal-page-card h1 {
  max-width: 720px;
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  line-height: 1.04;
}

.legal-page-card h2 {
  margin: 24px 0 0;
  color: var(--green-800);
  font-family: var(--font-serif);
  font-size: clamp(1.42rem, 3vw, 2rem);
  line-height: 1.18;
}

.legal-page-card p {
  margin: 18px 0 0;
  color: #314b3c;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.72;
}

.legal-page-card .notice-effective {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.site-footer {
  padding: 34px 0;
  color: var(--white);
  background: var(--green-900);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.footer-brand img {
  width: 94px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-contact p {
  margin: 0 0 4px;
  font-weight: 800;
}

.footer-contact a,
.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-contact a + a {
  margin-left: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 16px;
  font-weight: 800;
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--yellow-500);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, 760px);
  }

  .section {
    padding: 74px 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: grid;
    gap: 4px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .site-nav a {
    justify-content: flex-start;
  }

  .hero-grid,
  .split,
  .day-grid,
  .campuses-layout,
  .tuition-grid,
  .funnel-shell,
  .forms-layout,
  .forms-grid {
    grid-template-columns: 1fr;
  }

  .method-intro,
  .method-section-heading,
  .method-why {
    grid-template-columns: 1fr;
  }

  .method-image img {
    aspect-ratio: 16 / 10;
  }

  .principle-grid,
  .planes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plane-card {
    min-height: auto;
  }

  .funnel-copy {
    min-height: auto;
  }

  .funnel-card {
    min-height: 560px;
  }

  .forms-copy {
    position: static;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 11vw, 4.8rem);
  }

  .hero-media img {
    aspect-ratio: 1.35 / 1;
  }

  .pillar-grid,
  .schedule-grid,
  .compliance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 14px;
  }

  .campus-card {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .campus-card img {
    width: 170px;
  }

  .quote-grid {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .quote-grid img {
    display: none;
  }

  .final-cta-inner,
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 560px);
  }

  .section {
    padding: 58px 0;
  }

  .brand img {
    width: 58px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.34rem, 12vw, 3.2rem);
  }

  .hero-copy > p {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .pillar-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .method-copy h2 {
    font-size: clamp(2.45rem, 13vw, 3.65rem);
  }

  .method-principles,
  .planes-layout,
  .method-why {
    margin-top: 54px;
  }

  .principle-grid,
  .planes-grid {
    grid-template-columns: 1fr;
  }

  .principle-card,
  .plane-card,
  .method-why,
  .method-cta {
    padding: 20px;
  }

  .quick-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 18px;
  }

  .quick-facts div {
    min-width: 0;
    padding: 10px 8px;
  }

  .quick-facts dt {
    font-size: 0.63rem;
  }

  .quick-facts dd {
    font-size: 1.02rem;
  }

  .hero-media img {
    border-width: 6px;
  }

  .hero-note {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .funnel-shell {
    gap: 24px;
  }

  .funnel-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .funnel-photo {
    margin-top: 20px;
  }

  .funnel-card {
    min-height: auto;
    padding: 18px;
  }

  .funnel-step {
    min-height: 330px;
  }

  .funnel-step legend {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .funnel-choice-grid {
    grid-template-columns: repeat(5, minmax(44px, 1fr));
    gap: 6px;
  }

  .funnel-option {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    min-height: 72px;
    padding: 13px;
  }

  .funnel-option.compact {
    min-height: 74px;
    padding: 10px 4px;
  }

  .funnel-option.compact strong {
    font-size: 1.65rem;
  }

  .funnel-contact-grid {
    grid-template-columns: 1fr;
  }

  .funnel-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .timeline div {
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 14px;
    padding: 16px;
  }

  .timeline span {
    width: 40px;
    height: 40px;
  }

  .timeline p {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .schedule-card,
  .pillar-card {
    min-height: auto;
  }

  .campus-card {
    grid-template-columns: 1fr;
  }

  .campus-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .resource-panel dl > div {
    display: block;
  }

  .resource-panel dd {
    margin-top: 4px;
    text-align: left;
  }

  .resource-panel {
    padding: 20px;
  }

  .resource-download {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 66px;
    padding: 10px;
  }

  .resource-filetype {
    width: 42px;
    height: 42px;
  }

  .school-form {
    padding: 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

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

  .notice-card {
    padding: 18px;
  }

  .form-submit {
    width: 100%;
  }

  .quote-grid {
    display: block;
  }

  .quote-mark {
    margin-bottom: 8px;
    font-size: 5rem;
  }

  .footer-contact a {
    display: block;
    margin: 4px 0 0;
  }

  .footer-contact a + a {
    margin-left: 0;
  }

  .button {
    width: 100%;
  }
}

/* ============================================================
   PREMIUM + FUN LAYER
   Warm, layered, playful. CSP-safe (no inline), AA-safe,
   honors prefers-reduced-motion via the existing media query
   plus explicit reveal guards below.
   ============================================================ */

/* ---------- Header: pill nav + soft elevation ---------- */

.site-header {
  background: rgba(250, 248, 241, 0.88);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(20, 58, 43, 0.1);
}

.site-nav a {
  border-radius: 999px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  padding: 0 18px;
  box-shadow: 0 3px 0 rgba(13, 42, 30, 0.9);
}

/* ---------- Buttons: chunky, springy, pushable ---------- */

.button {
  border-radius: 999px;
  transition: transform var(--spring), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button svg,
.text-link svg {
  transition: transform var(--spring);
}

.button:hover svg,
.button:focus-visible svg,
.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(4px);
}

.button-primary {
  box-shadow: 0 4px 0 #0d2a1e, 0 18px 34px rgba(31, 89, 63, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 7px 0 #0d2a1e, 0 24px 44px rgba(31, 89, 63, 0.3);
}

.button-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 #0d2a1e, 0 10px 22px rgba(31, 89, 63, 0.22);
}

.button-secondary {
  border-width: 2px;
}

/* ---------- Hero: warm canvas, doodles, stickers ---------- */

.hero {
  background:
    radial-gradient(rgba(31, 89, 63, 0.05) 1.4px, transparent 1.5px),
    linear-gradient(115deg, #fdf9ee 0%, var(--cream) 46%, #eef6f3 100%);
  background-size: 26px 26px, 100% 100%;
}

.hero::after {
  height: 12px;
  border-radius: 999px 999px 0 0;
}

.hero-copy h1 {
  letter-spacing: -0.015em;
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: min(240px, 56%);
  height: 16px;
  margin-top: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14'%3E%3Cpath d='M2 9 C 22 2, 42 12, 64 7 S 104 2, 126 8 S 168 12, 198 4' fill='none' stroke='%23f4bf38' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat left center / contain;
}

.quick-facts div {
  border: 2px solid var(--green-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--spring), box-shadow var(--transition);
}

.quick-facts div:nth-child(1) { transform: rotate(-2deg); background: var(--white); }
.quick-facts div:nth-child(2) { transform: rotate(1.4deg); background: var(--yellow-200); border-color: rgba(244, 191, 56, 0.6); }
.quick-facts div:nth-child(3) { transform: rotate(2.4deg); background: var(--sky-100); border-color: rgba(143, 193, 205, 0.55); }

.quick-facts div:hover {
  transform: rotate(0deg) translateY(-3px);
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -26px -20px auto auto;
  width: 120px;
  height: 120px;
  border: 3px dashed rgba(244, 191, 56, 0.85);
  border-radius: 50%;
  animation: spin-slow 26s linear infinite;
}

.hero-media img {
  border-radius: 58% 42% 52% 48% / 46% 50% 50% 54%;
  border-width: 12px;
  box-shadow: var(--shadow-lg);
}

.hero-note {
  border-radius: var(--radius-lg);
  border-top: 6px solid var(--yellow-500);
  transform: rotate(-1.6deg);
  animation: float-soft 6s ease-in-out infinite alternate;
}

@keyframes float-soft {
  from { transform: rotate(-1.6deg) translateY(0); }
  to { transform: rotate(-1.6deg) translateY(-8px); }
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* ---------- Card system: soft slabs that lift ---------- */

.principle-card,
.plane-card,
.pillar-card,
.schedule-card,
.campus-card,
.resource-panel,
.notice-card,
.school-form,
.method-why,
.funnel-card,
.timeline div,
.legal-page-card {
  border-radius: var(--radius-lg);
}

.principle-card,
.plane-card,
.pillar-card,
.schedule-card,
.campus-card,
.notice-card {
  transition: transform var(--spring), box-shadow var(--transition), border-color var(--transition);
}

.principle-card:hover,
.plane-card:hover,
.pillar-card:hover,
.schedule-card:hover,
.campus-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: var(--shadow);
  border-color: rgba(244, 191, 56, 0.65);
}

/* sticker number badges, each its own color */

.principle-card span,
.plane-card span {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 0.92rem;
  transform: rotate(-4deg);
  border-width: 2px;
}

.principle-card:nth-child(1) span { background: var(--yellow-200); border-color: rgba(244, 191, 56, 0.7); }
.principle-card:nth-child(2) span { background: var(--sky-100); border-color: rgba(143, 193, 205, 0.7); }
.principle-card:nth-child(3) span { background: var(--green-100); border-color: rgba(47, 114, 77, 0.4); }
.principle-card:nth-child(4) span { background: var(--clay-100); border-color: rgba(240, 169, 134, 0.7); }
.principle-card:nth-child(5) span { background: var(--lavender-100); border-color: rgba(167, 139, 196, 0.5); }

.plane-card:nth-child(1) { border-top: 8px solid var(--yellow-500); }
.plane-card:nth-child(2) { border-top: 8px solid var(--sky-400); }
.plane-card:nth-child(3) { border-top: 8px solid var(--clay-400); }

.pillar-card svg {
  transition: transform var(--spring);
}

.pillar-card:hover svg {
  transform: rotate(-8deg) scale(1.14);
}

/* ---------- Schedule band: premium inset slab ---------- */

.schedule-band {
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(rgba(255, 255, 255, 0.05) 1.6px, transparent 1.7px),
    var(--green-900);
  background-size: 30px 30px, 100% 100%;
}

.schedule-card {
  position: relative;
}

.schedule-card.featured {
  transform: rotate(-1.2deg);
}

.schedule-card.featured:hover {
  transform: rotate(0deg) translateY(-6px);
}

.schedule-card.featured::before {
  content: "★ Most popular";
  position: absolute;
  top: -15px;
  right: 20px;
  padding: 5px 12px;
  color: var(--green-900);
  background: var(--white);
  border: 2px solid var(--yellow-500);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}

.schedule-icon {
  border-radius: 14px;
  transform: rotate(-3deg);
}

/* ---------- Day timeline: colorful steps ---------- */

.timeline span {
  transform: rotate(-5deg);
  transition: transform var(--spring);
  font-size: 1.25rem;
}

.timeline div:nth-child(1) span { background: var(--yellow-500); }
.timeline div:nth-child(2) span { background: var(--sky-400); }
.timeline div:nth-child(3) span { background: var(--clay-400); }

.timeline div {
  transition: transform var(--spring), box-shadow var(--transition);
}

.timeline div:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.timeline div:hover span {
  transform: rotate(0deg) scale(1.08);
}

/* ---------- Funnel: confetti card + candy progress ---------- */

.funnel-card {
  background:
    radial-gradient(rgba(255, 255, 255, 0.07) 1.6px, transparent 1.7px),
    var(--green-900);
  background-size: 28px 28px, 100% 100%;
}

.funnel-progress i {
  background: repeating-linear-gradient(
    45deg,
    var(--yellow-500) 0 10px,
    var(--yellow-300) 10px 20px
  );
  animation: candy-stripes 1.4s linear infinite;
}

@keyframes candy-stripes {
  to { background-position: 28px 0; }
}

.funnel-option {
  border-radius: 18px;
}

.funnel-option:has(input:checked) {
  transform: scale(1.015);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.funnel-option.compact:has(input:checked) strong {
  animation: pop 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pop {
  0% { transform: scale(0.8); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.funnel-match {
  border-radius: var(--radius-lg);
  transform: rotate(-0.8deg);
}

.funnel-photo {
  border-radius: var(--radius-lg);
}

/* ---------- Campus + resources ---------- */

.campus-card img {
  border-radius: 18px;
  transition: transform var(--spring);
}

.campus-card:hover img {
  transform: scale(1.04) rotate(-1deg);
}

.resource-download {
  border-radius: 16px;
}

.resource-filetype {
  border-radius: 12px;
  transform: rotate(-4deg);
}

.resource-download:hover .resource-filetype {
  transform: rotate(0deg);
  transition: transform var(--spring);
}

/* ---------- Forms ---------- */

.school-form input,
.school-form select,
.school-form textarea {
  border-radius: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-note {
  border-radius: 14px;
}

/* ---------- Quote: sticker mark ---------- */

.quote-mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: var(--green-900);
  background: var(--yellow-500);
  border-radius: 50%;
  font-size: 4.2rem;
  line-height: 0;
  padding-top: 22px;
  transform: rotate(-7deg);
  box-shadow: var(--shadow-sm);
}

.quote-grid img {
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  transform: rotate(2deg);
  border: 8px solid var(--white);
  box-shadow: var(--shadow-sm);
}

/* ---------- Final CTA: rounded slab + confetti ---------- */

.final-cta {
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto 26px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(rgba(255, 255, 255, 0.07) 1.6px, transparent 1.7px),
    var(--green-800);
  background-size: 30px 30px, 100% 100%;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  background: rgba(244, 191, 56, 0.16);
  border-radius: 50%;
}

/* ---------- Notices & footer ---------- */

.notice-card span {
  border-radius: 999px;
  transform: rotate(-2deg);
}

.site-footer {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* ---------- Scroll reveals (JS adds .reveal / .is-visible) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-note,
  .hero-media::before,
  .funnel-progress i {
    animation: none !important;
  }
}

/* ---------- Small screens: tame the slabs ---------- */

@media (max-width: 980px) {
  .schedule-band,
  .final-cta {
    width: min(100% - 16px, 760px);
    border-radius: var(--radius-lg);
  }

  .hero-media::before {
    inset: -18px -8px auto auto;
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 640px) {
  .hero-copy h1::after {
    height: 12px;
    margin-top: 12px;
  }

  .quote-mark {
    width: 62px;
    height: 62px;
    font-size: 3.4rem;
    padding-top: 18px;
  }
}

/* ============================================================
   AWWWARDS LAYER
   Editorial type, masked reveals, marquee, parallax-ready,
   luxurious easing, obsessive details.
   ============================================================ */

/* ---------- Global details ---------- */

::selection {
  color: var(--green-900);
  background: var(--yellow-300);
}

:focus-visible {
  outline: 3px solid var(--green-700);
  outline-offset: 3px;
  border-radius: 4px;
}

html {
  scrollbar-color: var(--green-700) var(--cream-2);
}

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

/* ---------- Editorial typography scale ---------- */

.hero-copy h1,
.method-copy h2,
.funnel-copy h2,
.section-copy h2,
.section-heading h2,
.day-copy h2,
.tuition-copy h2,
.final-cta h2,
.forms-copy h2 {
  font-optical-sizing: auto;
  letter-spacing: -0.022em;
  line-height: 1.02;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 6.6vw, 6.6rem);
  font-weight: 600;
}

.method-copy h2 {
  font-size: clamp(2.7rem, 6.2vw, 6.1rem);
  font-weight: 600;
}

.funnel-copy h2 {
  font-weight: 600;
}

.method-copy h3 {
  font-style: italic;
  font-weight: 500;
}

.method-image figcaption,
.hero-note span,
.quick-facts dt,
.funnel-match span,
.notice-card span {
  letter-spacing: 0.08em;
}

/* ---------- Nav: sliding underline ---------- */

.site-nav a:not(.nav-cta) {
  position: relative;
  background: transparent;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  background: var(--green-800);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  background: transparent;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- Masked word reveals (JS wraps words) ---------- */

.w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.wi {
  display: inline-block;
  transform: translateY(118%) rotate(2.2deg);
  opacity: 0;
  transition:
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 500ms ease;
  transition-delay: var(--wi-delay, 0ms);
}

.words-in .wi {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}

/* ---------- Marquee strip ---------- */

.marquee {
  overflow: hidden;
  padding: 30px 0;
  background: var(--cream-2);
  border-block: 1px solid var(--green-200);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-row {
  white-space: nowrap;
  padding-right: 0.6em;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(31, 89, 63, 0.5);
}

.marquee-row b {
  font-weight: 600;
  color: var(--green-800);
  -webkit-text-stroke: 0;
}

@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Luxurious reveal upgrade ---------- */

.reveal {
  transform: translateY(36px) scale(0.98);
  transition:
    opacity 950ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 950ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

/* ---------- Parallax targets get GPU hints ---------- */

.hero-media img,
.method-image img,
.quote-grid img {
  will-change: transform;
}

/* ---------- Footer: editorial weight ---------- */

.site-footer {
  padding: 64px 0 44px;
}

.footer-contact p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer-contact a:first-of-type {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--yellow-300);
}

/* ---------- Reduced motion: calm everything ---------- */

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

  .wi {
    transform: none;
    opacity: 1;
    transition: none;
  }

  body::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .marquee {
    padding: 18px 0;
  }

  .footer-contact p {
    font-size: 1.25rem;
  }
}

/* ============================================================
   COLOR POP LAYER — green header, white logo, more color
   ============================================================ */

:root {
  --sky-700: #2e7486;
  --clay-700: #b65e34;
}

/* ---------- Green header, white logo ---------- */

.site-header {
  background: rgba(16, 46, 34, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(10, 28, 20, 0.35);
}

.site-header .brand img {
  filter: brightness(0) invert(1);
}

.site-header .brand strong {
  color: var(--white);
}

.site-header .brand small {
  color: rgba(255, 255, 255, 0.72);
}

.site-nav a {
  color: var(--white);
}

.site-nav a:not(.nav-cta)::after {
  background: var(--yellow-500);
}

.site-nav .nav-cta {
  color: var(--green-900);
  background: var(--yellow-500);
  box-shadow: 0 3px 0 rgba(178, 131, 21, 0.9);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--green-900);
  background: var(--yellow-300);
}

.nav-toggle {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.nav-toggle span:not(.sr-only) {
  background: var(--white);
}

@media (max-width: 980px) {
  .site-nav {
    background: var(--green-900);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .site-nav a:not(.nav-cta):hover,
  .site-nav a:not(.nav-cta):focus-visible {
    background: rgba(255, 255, 255, 0.1);
  }
}

/* ---------- More color through the page ---------- */

.pillar-card:nth-child(2) svg { color: var(--sky-700); }
.pillar-card:nth-child(3) svg { color: var(--green-700); }
.pillar-card:nth-child(4) svg { color: var(--clay-700); }

.schedule-card:nth-child(2) .schedule-icon { background: var(--sky-100); }
.schedule-card:nth-child(3) .schedule-icon { background: var(--clay-100); }

.notice-card:nth-child(2) span { background: var(--sky-100); }
.notice-card:nth-child(3) span { background: var(--green-100); }
.notice-card:nth-child(4) span { background: var(--clay-100); }
.notice-card:nth-child(5) span { background: var(--lavender-100); }
.notice-card:nth-child(6) span { background: var(--yellow-200); }

.resource-download:nth-child(even) .resource-filetype { background: var(--sky-700); }
.resource-download:nth-child(3n) .resource-filetype { background: var(--clay-700); }

#tour-form {
  border-top: 8px solid var(--yellow-500);
}

#contact-form {
  border-top: 8px solid var(--sky-400);
}

/* ---------- Consent checkboxes ---------- */

.consent-promo input {
  accent-color: var(--yellow-500);
}

.consent-promo span {
  font-size: 0.84rem !important;
}

/* WCAG 2.2.2: marquee pauses on hover/focus-within */
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

/* ============================================================
   TEXTURE + CARD SEPARATION LAYER
   Colorful, textured canvas; cards as crisp lifted surfaces.
   ============================================================ */

/* ---------- Section canvases: dots + pastel tints ---------- */

.section > .container {
  position: relative;
  z-index: 1;
}

.method-section {
  background:
    radial-gradient(rgba(31, 89, 63, 0.05) 1.3px, transparent 1.4px) 0 0 / 24px 24px,
    linear-gradient(180deg, #f8fbf5 0%, #fdfcf6 44%, var(--sky-100) 100%);
}

.program-band {
  background:
    radial-gradient(rgba(46, 116, 134, 0.06) 1.3px, transparent 1.4px) 0 0 / 24px 24px,
    linear-gradient(165deg, #fdfcf7 0%, #eef6f4 100%);
}

.day-section {
  background:
    radial-gradient(rgba(31, 89, 63, 0.055) 1.3px, transparent 1.4px) 0 0 / 24px 24px,
    linear-gradient(180deg, var(--green-100), #fdfcf6);
}

.campuses-section {
  background:
    radial-gradient(rgba(182, 94, 52, 0.05) 1.3px, transparent 1.4px) 0 0 / 24px 24px,
    linear-gradient(200deg, #fdf9ee 0%, #faf3e4 100%);
}

.tuition-section {
  background:
    radial-gradient(rgba(46, 116, 134, 0.06) 1.3px, transparent 1.4px) 0 0 / 24px 24px,
    linear-gradient(135deg, var(--sky-100), var(--green-100));
}

.forms-section {
  background:
    radial-gradient(rgba(122, 91, 158, 0.05) 1.3px, transparent 1.4px) 0 0 / 24px 24px,
    linear-gradient(180deg, #f9f6fb 0%, #f3f4ec 100%);
}

.quote-section {
  background:
    radial-gradient(rgba(31, 89, 63, 0.05) 1.3px, transparent 1.4px) 0 0 / 24px 24px,
    var(--cream-2);
}

.compliance-section {
  background:
    radial-gradient(rgba(31, 89, 63, 0.05) 1.3px, transparent 1.4px) 0 0 / 24px 24px,
    linear-gradient(180deg, #fdfcf6, var(--green-100));
}

/* ---------- Soft color blobs per section ---------- */

.method-section::before,
.program-band::before,
.campuses-section::before,
.forms-section::before,
.quote-section::before,
.compliance-section::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  pointer-events: none;
}

.method-section::before {
  top: 4%;
  right: -220px;
  background: radial-gradient(closest-side, rgba(244, 191, 56, 0.2), transparent);
}

.program-band::before {
  top: -120px;
  left: -240px;
  background: radial-gradient(closest-side, rgba(143, 193, 205, 0.28), transparent);
}

.campuses-section::before {
  bottom: -180px;
  left: -200px;
  background: radial-gradient(closest-side, rgba(240, 169, 134, 0.26), transparent);
}

.forms-section::before {
  top: -140px;
  right: -200px;
  background: radial-gradient(closest-side, rgba(196, 170, 222, 0.25), transparent);
}

.quote-section::before {
  top: -160px;
  left: 12%;
  background: radial-gradient(closest-side, rgba(244, 191, 56, 0.22), transparent);
}

.compliance-section::before {
  top: -100px;
  right: -180px;
  background: radial-gradient(closest-side, rgba(143, 193, 205, 0.24), transparent);
}

/* ---------- Cards: crisp, solid, clearly lifted ---------- */

.principle-card,
.plane-card,
.pillar-card,
.schedule-card,
.campus-card,
.resource-panel,
.notice-card,
.school-form,
.method-why,
.timeline div,
.quick-facts div,
.resource-download,
.hero-note {
  border-width: 2px;
  border-color: #e2ead9;
  box-shadow:
    0 1px 0 rgba(20, 58, 43, 0.05),
    0 14px 30px rgba(20, 58, 43, 0.1),
    0 36px 72px rgba(20, 58, 43, 0.08);
}

.principle-card,
.plane-card,
.campus-card,
.notice-card,
.resource-panel,
.resource-download,
.timeline div {
  background-color: var(--white);
}

/* re-assert special card faces after the white base */

.guide-card {
  background: var(--green-900);
  border-color: var(--green-900);
}

.schedule-card.featured {
  background: var(--yellow-200);
  border-color: var(--yellow-500);
}

.quick-facts div:nth-child(2) { background: var(--yellow-200); border-color: rgba(244, 191, 56, 0.6); }
.quick-facts div:nth-child(3) { background: var(--sky-100); border-color: rgba(143, 193, 205, 0.55); }

.hero-note {
  border-top: 6px solid var(--yellow-500);
}

#tour-form { border-top: 8px solid var(--yellow-500); }
#contact-form { border-top: 8px solid var(--sky-400); }

/* a touch more air between cards */

.principle-grid,
.planes-grid,
.pillar-grid,
.schedule-grid,
.compliance-grid {
  gap: 18px;
}

/* ============================================================
   LOCATION PAGES LAYER
   ============================================================ */

.location-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 14px;
  color: var(--green-900);
  background: var(--yellow-200);
  border: 2px solid rgba(244, 191, 56, 0.65);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: rotate(-1.2deg);
}

.location-hero .hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.location-hero .hero-media img {
  aspect-ratio: 16 / 10;
}

.serving-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.06rem;
  color: var(--green-800);
}

.nap-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 2px solid #e2ead9;
  border-radius: var(--radius-lg);
  border-top: 8px solid var(--yellow-500);
  box-shadow:
    0 1px 0 rgba(20, 58, 43, 0.05),
    0 14px 30px rgba(20, 58, 43, 0.1),
    0 36px 72px rgba(20, 58, 43, 0.08);
}

.nap-card h3 {
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: 1.45rem;
}

.nap-card address {
  color: #314b3c;
  font-style: normal;
  line-height: 1.55;
}

.nap-phone {
  color: var(--green-800);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
}

.nap-phone:hover,
.nap-phone:focus-visible {
  color: var(--green-900);
  outline: none;
}

.nap-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nap-actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.location-body .section-copy p {
  max-width: 640px;
}

.campus-page-link {
  display: inline-flex;
  margin-top: 6px;
  margin-left: 16px;
  color: var(--sky-700);
  font-weight: 800;
  text-decoration: none;
}

.campus-page-link:hover,
.campus-page-link:focus-visible {
  text-decoration: underline;
  outline: none;
}
