:root {
  --surface: #fafaf5;
  --surface-container: #eeeee9;
  --surface-container-low: #f4f4ef;
  --surface-container-lowest: #ffffff;
  --surface-container-high: #e8e8e3;
  --primary: #003215;
  --primary-container: #004b23;
  --secondary: #006d36;
  --accent-blue: #2f347f;
  --accent-blue-deep: #262d6f;
  --accent-blue-soft: #dfe4ff;
  --primary-fixed: #aef2bb;
  --secondary-container: #83fba5;
  --on-surface: #1a1c19;
  --on-surface-variant: #404941;
  --outline: #707970;
  --outline-variant: #c0c9be;
  --shadow: 0 20px 40px rgba(26, 28, 25, 0.06);
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --container: 1392px;
  --page-x: clamp(1.5rem, 4vw, 2.5rem);
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

button:disabled {
  cursor: default;
}

:focus-visible {
  outline: 3px solid rgba(0, 109, 54, 0.35);
  outline-offset: 4px;
}

@keyframes site-rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes site-scale-in {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.96);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes site-card-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes site-logo-in {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(60px) scale(0.97);
  filter: blur(4px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.container {
  width: min(calc(100% - (var(--page-x) * 2)), var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 50, 21, 0.15);
  animation: site-rise-in 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nav {
  display: flex;
  flex-direction: column;
  padding-block: 0.8rem 0rem;
}

.nav-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-top-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.72rem;
}

.nav-top-left strong {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.nav-hours {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.2rem 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.nav-brand-center {
  justify-self: center;
}

.brand {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: clamp(5.2rem, 7vw, 7.4rem);
  width: auto;
  display: block;
  object-fit: contain;
  animation: site-logo-in 760ms cubic-bezier(0.22, 1, 0.36, 1) 140ms both;
}

.footer-logo {
  height: 4rem;
  filter: none;
}

.nav-top-right {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.nav-phone {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nav-socials {
  display: flex;
  gap: 0.5rem;
}

.nav-socials a {
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 180ms ease;
}

.nav-socials a:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-2px);
}

.nav-socials svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

.nav-bottom {
  display: flex;
  justify-content: center;
  width: 100%;
}

.mobile-menu-meta {
  display: none;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  margin: 0;
  padding: 0.6rem 0;
  list-style: none;
  align-items: center;
}

.nav-top-left,
.nav-top-right,
.nav-links li,
.sub-link {
  animation: site-rise-in 580ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nav-top-left {
  animation-delay: 120ms;
}

.nav-top-right {
  animation-delay: 180ms;
}

.nav-links li:nth-child(1),
.sub-link:nth-child(1) {
  animation-delay: 220ms;
}

.nav-links li:nth-child(2),
.sub-link:nth-child(2) {
  animation-delay: 260ms;
}

.nav-links li:nth-child(3),
.sub-link:nth-child(3) {
  animation-delay: 300ms;
}

.nav-links li:nth-child(4),
.sub-link:nth-child(4) {
  animation-delay: 340ms;
}

.nav-links li:nth-child(5),
.sub-link:nth-child(5) {
  animation-delay: 380ms;
}

.nav-links li:nth-child(n + 6),
.sub-link:nth-child(n + 6) {
  animation-delay: 420ms;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-action-item {
  display: flex;
  align-items: center;
}

.ghost-action,
.book-action {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 180ms ease;
}

.ghost-action {
  color: rgba(255, 255, 255, 0.9);
}

.ghost-action:hover {
  color: #fff;
}

.book-action {
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  padding: 0.5rem 1.1rem;
}

.book-action:hover {
  background: var(--primary-fixed);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

/* Sub Navigation Bar */
.sub-nav-bar {
  width: 100%;
  padding-block: 1.5rem 0rem;
}

.sub-nav-container {
  background: var(--accent-blue);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(38, 45, 111, 0.16);
  border: 1px solid rgba(38, 45, 111, 0.22);
  display: flex;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: stretch;
  scrollbar-width: none;
}
.sub-nav-container::-webkit-scrollbar {
  display: none;
}

.sub-link {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.75rem 1.4rem;
  white-space: nowrap;
  transition: all 180ms ease;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.sub-link:last-child {
  border-right: none;
}

.sub-link:hover {
  background: rgba(38, 45, 111, 0.42);
}

.sub-link.active {
  background: var(--accent-blue-deep);
  color: #fff;
}

main {
  padding-block: 2.5rem 88px;
}

/* Hero Calendar Styles */
.hero {
  display: block;
  align-items: end;
  gap: 2rem;
  margin-bottom: 4rem;
}

.hero-copy {
  max-width: 52rem;
  padding-bottom: 3rem;
  animation: site-rise-in 760ms cubic-bezier(0.22, 1, 0.36, 1) 160ms both;
}

.hero-schedule-widget {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  background: #003d1a;
  border-radius: var(--radius-xl);
  padding: clamp(1.6rem, 3vw, 2.5rem);
  box-shadow: 0 24px 48px rgba(0, 50, 21, 0.25), 0 8px 16px rgba(0, 0, 0, 0.1);
  max-height: 38rem;
  border: 1px solid rgba(174, 242, 187, 0.12);
  animation: site-scale-in 820ms cubic-bezier(0.22, 1, 0.36, 1) 260ms both;
}

.minimalist {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(174, 242, 187, 0.15);
}

.minimalist h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.widget-today-label {
  color: var(--primary-fixed);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.widget-controls {
  display: flex;
  gap: 0.5rem;
}

.widget-arrow {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--surface-container);
  color: var(--primary);
  transition: all 180ms ease;
}

.widget-arrow:hover:not(:disabled) {
  background: var(--primary);
  color: #fff;
}

.widget-arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.widget-arrow svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.widget-viewport {
  height: calc(276px + 32px);
  padding: 16px 8px;
  margin: -16px -8px;
  overflow: hidden;
  position: relative;
}

.widget-track {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.widget-card {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  height: 84px;
  box-sizing: border-box;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(174, 242, 187, 0.1);
  transition: all 200ms ease;
  cursor: pointer;
  box-shadow: none;
  animation: site-card-in 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--widget-enter-delay, 420ms);
}

.widget-card:nth-child(2) {
  --widget-enter-delay: 500ms;
}

.widget-card:nth-child(3) {
  --widget-enter-delay: 580ms;
}

.widget-card:nth-child(4) {
  --widget-enter-delay: 660ms;
}

.widget-card:nth-child(n + 5) {
  --widget-enter-delay: 740ms;
}

.widget-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: rgba(174, 242, 187, 0.2);
}

.widget-card.is-active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(174, 242, 187, 0.25);
  transform: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.widget-card.is-full {
  opacity: 0.5;
  cursor: default;
}
.widget-card.is-full:hover {
  transform: none;
  box-shadow: none;
}

.widget-card-img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  object-fit: cover;
  flex-shrink: 0;
}

.widget-time {
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.widget-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.widget-info small {
  display: block;
  font-size: 0.8rem;
  color: rgba(174, 242, 187, 0.7);
  opacity: 1;
}

.widget-book {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(174, 242, 187, 0.5);
  transition: all 200ms ease;
}

.widget-book svg {
  width: 1.1rem;
  height: 1.1rem;
}

.widget-card:hover .widget-book {
  color: var(--primary-fixed);
  opacity: 1;
  transform: translateX(3px);
}

.widget-status {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(174, 242, 187, 0.15);
  color: rgba(174, 242, 187, 0.8);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(174, 242, 187, 0.2);
}

.widget-footer-minimal {
  margin-top: auto;
  padding-top: 2rem;
}

.full-schedule-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary-fixed);
  font-size: 1.05rem;
  transition: opacity 200ms ease;
  text-decoration: none;
}

.full-schedule-link:hover {
  opacity: 0.7;
}

.full-schedule-link svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--primary-fixed);
}


.eyebrow {
  margin: 0 0 1rem;
  color: var(--on-surface-variant);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 6.67vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  color: var(--accent-blue);
  font-weight: inherit;
}

.hero-lede {
  max-width: 34rem;
  margin: clamp(1.7rem, 3vw, 2.3rem) 0 0;
  color: var(--on-surface-variant);
  font-size: 1.25rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(2rem, 3vw, 3rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.9rem;
  gap: 0.65rem;
  border-radius: 1.4rem;
  padding: 0 1.6rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease,
    box-shadow 180ms ease;
}

.button svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

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

.button-primary {
  background: var(--primary);
  color: #fff;
}

.button-primary:hover {
  background: var(--secondary);
}

.button-secondary {
  background: transparent;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(112, 121, 112, 0.28);
}

.button-secondary:hover {
  background: var(--surface-container-low);
}

.button-lime {
  min-height: 3.1rem;
  border-radius: 999px;
  background: var(--primary-fixed);
  color: var(--primary);
  padding-inline: 1.45rem;
  font-size: 0.8125rem;
}

.button-lime:hover {
  background: var(--secondary-container);
}

.hero-media {
  position: relative;
  grid-column: span 5;
  min-height: 0;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 50, 21, 0.42));
  content: "";
  pointer-events: none;
}

.hero-media img,
.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  right: clamp(1.2rem, 5vw, 2.2rem);
  bottom: clamp(1.2rem, 5vw, 2.2rem);
  left: clamp(1.2rem, 5vw, 2.2rem);
  z-index: 2;
  border-radius: 1.35rem;
  background: rgba(250, 250, 245, 0.72);
  color: var(--primary);
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  backdrop-filter: blur(20px);
}

.hero-media figcaption span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--primary);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.action-card {
  min-height: 13.6rem;
  border-radius: var(--radius-lg);
  background: var(--accent-blue-deep);
  color: #fff;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: background 260ms ease, color 260ms ease, transform 260ms ease;
}

.action-card:hover {
  background: var(--accent-blue);
  color: #fff;
  transform: translateY(-4px);
}

.action-card p,
.action-card:hover p {
  color: rgba(255, 255, 255, 0.78);
}

.icon-badge {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-blue-soft);
  color: var(--accent-blue);
}

.icon-badge.medium {
  flex: 0 0 3.5rem;
  width: 3.5rem;
  height: 3.5rem;
  color: var(--primary);
}

.icon-badge svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.action-card h2 {
  margin: 1.5rem 0 0.55rem;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  letter-spacing: -0.035em;
}

.action-card p {
  max-width: 34ch;
  margin: 0;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  line-height: 1.55;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: clamp(3.5rem, 6vw, 5.3rem);
}

.schedule-card {
  display: flex;
  grid-column: span 4;
  min-height: 100%;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--surface-container);
  padding: clamp(1.6rem, 3vw, 2.25rem);
}

.schedule-card-green {
  background: #003d1a;
  border: 1px solid rgba(174, 242, 187, 0.12);
  box-shadow: 0 24px 48px rgba(0, 50, 21, 0.18), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.schedule-card-green .section-heading h2 {
  color: #ffffff;
}

.schedule-card-green .section-heading span {
  color: #c9f5ff;
}

.schedule-card-green .section-heading {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(174, 242, 187, 0.15);
}

.schedule-card-green .schedule-row {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(174, 242, 187, 0.1);
}

.schedule-card-green .schedule-row:not(:disabled):hover,
.schedule-card-green .schedule-row.is-active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(174, 242, 187, 0.25);
}

.schedule-card-green .schedule-row strong {
  color: #ffffff;
}

.schedule-card-green .schedule-row small {
  color: rgba(201, 245, 255, 0.76);
}

.schedule-card-green .schedule-row time {
  color: rgba(255, 255, 255, 0.9);
}

.schedule-card-green .schedule-row svg {
  fill: rgba(201, 245, 255, 0.42);
}

.schedule-card-green .schedule-row:hover svg {
  fill: #c9f5ff;
}

.schedule-card-green .schedule-row em {
  background: rgba(174, 242, 187, 0.15);
  color: rgba(174, 242, 187, 0.8);
  border: 1px solid rgba(174, 242, 187, 0.2);
}

.schedule-card-green .inline-link {
  color: var(--primary-fixed);
}

.schedule-card-green .inline-link svg {
  fill: var(--primary-fixed);
}

.schedule-row-img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.6rem;
  object-fit: cover;
  flex-shrink: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-heading h2,
.journal-header h2 {
  margin: 0;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 2.1vw, 2.1rem);
}

.section-heading span {
  color: var(--accent-blue);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-list {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  margin-block: clamp(2rem, 4vw, 3.2rem);
}

.schedule-row {
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 4.75rem;
  gap: 0.85rem;
  border-radius: 0.75rem;
  background: var(--surface-container-lowest);
  padding: 0.95rem 1rem;
  text-align: left;
  transition: transform 180ms ease, background 180ms ease;
}

.schedule-row:not(:disabled):hover,
.schedule-row.is-active {
  transform: translateY(-2px);
  background: #fff;
}

.schedule-row time {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.schedule-row strong {
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 800;
}

.schedule-row small {
  display: block;
  color: var(--on-surface-variant);
  font-size: 0.75rem;
}

.schedule-row .schedule-date {
  margin-top: 0.16rem;
  color: rgba(174, 242, 187, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-row svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--outline);
}

.schedule-row em {
  border-radius: 999px;
  background: rgba(192, 201, 190, 0.34);
  color: var(--on-surface-variant);
  padding: 0.22rem 0.55rem;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-row.is-muted {
  opacity: 0.58;
}

.schedule-empty {
  display: grid;
  gap: 0.45rem;
  border: 1px dashed rgba(174, 242, 187, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  padding: 1.1rem;
}

.schedule-empty strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.schedule-empty span {
  color: rgba(201, 245, 255, 0.72);
  font-size: 0.85rem;
  line-height: 1.5;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.4rem;
  margin-top: auto;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
}

.inline-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.inline-link svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

.featured-column {
  display: grid;
  grid-column: span 8;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.feature-card {
  position: relative;
  min-height: 19.5rem;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--primary);
  isolation: isolate;
}

.feature-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 50, 21, 0.86) 0%,
    rgba(0, 50, 21, 0.34) 48%,
    rgba(0, 50, 21, 0.02) 100%
  );
  content: "";
}

.feature-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-inline: clamp(1.8rem, 4vw, 3.6rem);
}

.feature-content h2 {
  margin: 0 0 1.7rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.25vw, 3.65rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.feature-content h2 span {
  display: block;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 2vw, 2rem);
}

.mini-card {
  display: flex;
  min-height: 7.1rem;
  align-items: center;
  gap: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--surface-container-lowest);
  padding: clamp(1rem, 2vw, 1.45rem);
  box-shadow: inset 0 0 0 1px rgba(192, 201, 190, 0.12), var(--shadow);
}

.mini-card:first-child {
  background: var(--accent-blue-soft);
  box-shadow: inset 0 0 0 1px rgba(47, 52, 127, 0.08), var(--shadow);
}

.mini-card img {
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 3.5rem;
  border-radius: 999px;
  object-fit: cover;
}

.mini-card h3 {
  margin: 0;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mini-card p {
  margin: 0.2rem 0 0;
  color: var(--on-surface-variant);
  font-size: 0.72rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: clamp(4rem, 7vw, 6rem);
  padding-block: clamp(2.2rem, 4vw, 3.8rem);
  box-shadow: inset 0 1px 0 rgba(192, 201, 190, 0.18),
    inset 0 -1px 0 rgba(192, 201, 190, 0.18);
}

.stats article {
  display: grid;
  place-items: center;
  min-height: 5rem;
  text-align: center;
}

.stats article + article {
  box-shadow: inset 1px 0 0 rgba(192, 201, 190, 0.16);
}

.stats strong {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.stats article:nth-child(even) strong {
  color: var(--accent-blue);
}

.stats span {
  margin-top: 0.55rem;
  color: var(--on-surface-variant);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent-blue);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.text-arrow svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
  transition: transform 180ms ease;
}

.text-arrow:hover svg,
.signature-card:hover .text-arrow svg {
  transform: translateX(4px);
}

.text-arrow.light {
  color: #c9f5ff;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.4rem, 2vw, 1.7rem);
  margin-bottom: clamp(6rem, 10vw, 9rem);
}

.opportunity-card {
  position: relative;
  display: flex;
  min-height: 18.35rem;
  overflow: hidden;
  border-radius: 1.75rem;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 400ms ease;
}

.opportunity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 64px rgba(0, 50, 21, 0.15);
}

.opp-card-img {
  position: relative;
  overflow: hidden;
}

.opp-card-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.opp-card-img:hover > img {
  transform: scale(1.05);
}

.opp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 33, 12, 0.25) 0%, rgba(0, 33, 12, 0.82) 100%);
  z-index: 1;
  transition: background 400ms ease;
}

.opp-card-img:hover .opp-card-overlay {
  background: linear-gradient(180deg, rgba(0, 33, 12, 0.15) 0%, rgba(0, 33, 12, 0.88) 100%);
}

.opp-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}

.opp-tag {
  display: inline-block;
  width: fit-content;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(47, 52, 127, 0.7);
  border: 1px solid rgba(201, 245, 255, 0.22);
  color: #eef1ff;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}

.opportunity-card h2 {
  margin: 0 0 0.6rem;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.opportunity-card p {
  max-width: 48ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 500;
  line-height: 1.55;
}

.opportunity-card-wide {
  grid-column: span 8;
  min-height: 22rem;
}

.opportunity-card .text-arrow {
  margin-top: 1.5rem;
}

.opportunity-card-small {
  grid-column: span 4;
  min-height: 22rem;
}

.signature-programs {
  margin-bottom: clamp(6rem, 10vw, 9rem);
}

.center-heading {
  margin-bottom: clamp(3.4rem, 6vw, 4.3rem);
  text-align: center;
}

.center-heading .eyebrow {
  margin-bottom: 0.55rem;
  letter-spacing: 0.42em;
}

.center-heading h2 {
  margin: 0;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 3vw, 2.35rem);
}

.signature-card a {
  display: block;
}

.program-media {
  position: relative;
  aspect-ratio: 1.58 / 1;
  margin: 0 0 1.7rem;
  overflow: hidden;
  border-radius: 1.35rem;
  background: var(--surface-container);
}

.program-media img,
.program-media > svg,
.program-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.program-placeholder {
  display: grid;
  place-items: center;
  background: #c43129;
  color: #113a37;
  font-weight: 900;
}

.program-placeholder span {
  display: grid;
  width: 7rem;
  height: 7rem;
  place-items: center;
  border-radius: 999px;
  background: #f7f4ec;
}

.basketball-photo {
  object-position: center 42%;
}

.wellness-photo {
  object-position: center 46%;
}

.signature-card:hover .program-media img,
.signature-card:hover .program-media > svg,
.signature-card:hover .program-placeholder {
  transform: scale(1.025);
}

.program-media figcaption {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  z-index: 2;
  border-radius: 999px;
  background: rgba(223, 228, 255, 0.92);
  color: var(--accent-blue-deep);
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature-card h3 {
  margin: 0 0 0.65rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.signature-card p {
  max-width: 38ch;
  margin: 0 0 1.55rem;
  color: var(--on-surface-variant);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}

.weekly-timeline {
  margin-bottom: 0;
  padding-block: clamp(5.5rem, 9vw, 7.3rem);
  background: var(--surface-container-low);
}

.timeline-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.2rem;
}

.timeline-header .eyebrow {
  margin-bottom: 0.4rem;
  letter-spacing: 0.32em;
}

.timeline-header h2 {
  margin: 0;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.timeline-header a {
  color: var(--accent-blue);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.55rem;
}

.timeline-list {
  display: grid;
  gap: 1.15rem;
}

.timeline-row {
  display: grid;
  grid-template-columns: minmax(210px, 0.23fr) 1fr auto;
  align-items: center;
  min-height: 5.15rem;
  gap: 2rem;
  border-radius: 1rem;
  background: var(--surface-container-lowest);
  padding: 1.25rem clamp(1.4rem, 3vw, 2rem);
}

.timeline-row time {
  color: var(--on-surface-variant);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.timeline-row h3 {
  margin: 0;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.timeline-row p {
  margin: 0.25rem 0 0;
  color: var(--on-surface-variant);
  font-size: 0.9rem;
  font-weight: 600;
}

.status-badge {
  min-width: 4.85rem;
  border-radius: 999px;
  padding: 0.42rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
}

.status-badge.open {
  background: var(--primary-fixed);
  color: var(--primary);
}

.status-badge.waitlist {
  background: var(--accent-blue-soft);
  color: var(--accent-blue-deep);
}

.status-badge.limited {
  background: #fff0ca;
  color: #6b4b00;
}

.timeline-empty {
  display: grid;
  gap: 0.35rem;
  border: 1px dashed rgba(0, 109, 54, 0.24);
  border-radius: 1rem;
  background: var(--surface-container-lowest);
  padding: 1.4rem 1.6rem;
}

.timeline-empty strong {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.timeline-empty span {
  color: var(--on-surface-variant);
  font-size: 0.95rem;
  font-weight: 600;
}

.community-proof {
  overflow: hidden;
  background: #002f13;
  color: #fff;
  padding-block: clamp(5.5rem, 9vw, 7.4rem);
}

.community-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(3rem, 6vw, 5rem);
}

.community-copy h2 {
  max-width: 12ch;
  margin: 0 0 2.7rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.quote-block {
  display: grid;
  grid-template-columns: 4.4rem minmax(0, 1fr);
  gap: 1.8rem;
  margin: 0;
}

.quote-block + .quote-block {
  margin-top: 2.1rem;
}

.quote-avatar {
  display: block;
  width: 4.4rem;
  height: 4.4rem;
  border: 2px solid #90d7ff;
  border-radius: 999px;
  background: #101a17;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.04);
}

.avatar-motion {
  background:
    radial-gradient(circle at 52% 51%, #e84b2e 0 5%, transparent 6%),
    radial-gradient(circle at 42% 53%, #e84b2e 0 4%, transparent 5%),
    radial-gradient(circle at 61% 49%, #e84b2e 0 3%, transparent 4%),
    linear-gradient(25deg, transparent 40%, #162a2a 41% 58%, transparent 59%),
    #0d1715;
}

.avatar-court {
  background:
    linear-gradient(90deg, transparent 30%, #b8c1bd 31% 35%, transparent 36%),
    linear-gradient(0deg, transparent 33%, #b8c1bd 34% 38%, transparent 39%),
    linear-gradient(90deg, #202629 0 58%, #30363a 58% 100%);
}

.quote-block blockquote {
  margin: 0;
  color: rgba(174, 242, 187, 0.68);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
}

.quote-block figcaption {
  grid-column: 2;
  margin-top: 0.95rem;
  color: rgba(174, 242, 187, 0.88);
  font-size: 1.05rem;
  font-weight: 800;
}

.community-collage {
  position: relative;
  min-height: 35rem;
}

.collage-card {
  position: absolute;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.2);
}

.collage-card svg {
  width: 100%;
  height: 100%;
}

.small-card {
  top: 4.4rem;
  left: 0;
  width: 46%;
  aspect-ratio: 1.52 / 1;
}

.bottom-card {
  top: 21rem;
  left: 0;
  width: 46%;
  aspect-ratio: 1.52 / 1;
  opacity: 0.8;
}

.tall-card {
  top: 0;
  right: 0;
  width: 46%;
  aspect-ratio: 1.48 / 1;
}

.lower-card {
  right: 0;
  bottom: 2.1rem;
  width: 46%;
  aspect-ratio: 1.48 / 1.36;
}

.community-proof + .journal {
  margin-top: clamp(5.5rem, 9vw, 7rem);
}

.journal {
  margin-bottom: clamp(4.5rem, 8vw, 7.4rem);
}

.journal-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.7rem, 3vw, 2.5rem);
}

.journal-header .eyebrow {
  margin-bottom: 0.65rem;
}

.journal-header h2 {
  font-size: 1.875rem;
}

.journal-header a {
  color: var(--accent-blue);
  font-size: 0.8125rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--accent-blue);
  text-underline-offset: 0.55rem;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 2vw, 2rem);
}

.newsletter-band {
  margin-bottom: clamp(5rem, 8vw, 7rem);
  background: #003215;
  color: #ffffff;
}

.newsletter-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.newsletter-layout h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.newsletter-layout p {
  max-width: 42ch;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.newsletter-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 0.8rem;
  align-items: end;
}

.newsletter-form > input[name="website"] {
  position: absolute;
  left: -9999px;
}

.newsletter-form label {
  display: grid;
  gap: 0.45rem;
}

.newsletter-form span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter-form input {
  min-height: 3.25rem;
  border: 1px solid rgba(174, 242, 187, 0.22);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0.85rem 1rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: rgba(174, 242, 187, 0.72);
}

.newsletter-message {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--primary-fixed);
  font-size: 0.88rem;
  font-weight: 800;
}

.newsletter-message.is-error {
  color: #ffd0d0;
}

.story-card a {
  display: block;
}

.story-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  object-fit: cover;
  transition: transform 500ms ease;
}

.story-card:hover img {
  transform: scale(1.025);
}

.story-card span {
  display: block;
  margin-top: 1.65rem;
  color: var(--accent-blue);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.story-card h3 {
  margin: 0.45rem 0 0;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.18;
  transition: color 180ms ease;
}

.story-card:hover h3 {
  color: var(--accent-blue);
}

.site-footer {
  background: var(--accent-blue-deep);
  padding-block: clamp(3rem, 6vw, 5.5rem) 1.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.footer-brand p {
  max-width: 28ch;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.footer-brand .brand {
  font-size: 1.25rem;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.site-footer h2 {
  margin: 0 0 1.1rem;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
}

.site-footer a:not(.brand) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 0.28rem;
  transition: color 180ms ease;
}

.site-footer a:not(.brand):hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.7rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 30;
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 50, 21, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.94);
  transition: opacity 220ms ease, transform 220ms ease, background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--secondary);
  transform: translateY(-3px) scale(1);
}

.back-to-top svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

@media (max-width: 1040px) {
  .nav-top {
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .nav-hours {
    gap: 0.2rem 0.8rem;
  }

  .nav-phone {
    font-size: 1rem;
  }

  .nav-links {
    gap: clamp(0.8rem, 1.6vw, 1.4rem);
  }

  .sub-link {
    padding-inline: 1rem;
  }

  .hero {
    gap: 2.3rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7.6vw, 5.6rem);
  }

  .hero-lede {
    max-width: 34rem;
  }

  .opportunity-card {
    min-height: 16rem;
  }

  .timeline-header h2 {
    letter-spacing: -0.03em;
  }

  .community-layout {
    grid-template-columns: 1fr;
  }

  .community-copy h2 {
    max-width: 15ch;
  }

  .community-collage {
    min-height: 42rem;
  }
}

@media (max-width: 760px) {
  :root {
    --page-x: 1rem;
  }

  body.nav-open::before {
    position: fixed;
    inset: 0;
    z-index: 18;
    background: rgba(26, 28, 25, 0.42);
    content: "";
  }

  .nav {
    padding-block: 0.9rem 0.25rem;
  }

  .nav-toggle {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 0.85rem);
    right: 1rem;
    z-index: 22;
    display: inline-grid;
    width: 2.7rem;
    height: 2.7rem;
    place-content: center;
    gap: 0.3rem;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 12px 24px rgba(0, 50, 21, 0.22);
  }

  .nav-toggle span {
    width: 1.05rem;
    height: 2px;
    border-radius: 999px;
    background: #fff;
  }

  .nav-top {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "contact";
    justify-items: center;
    gap: 0.75rem;
    padding-right: 4.25rem;
    padding-bottom: 0.4rem;
  }

  .nav-top-left {
    display: none;
  }

  .nav-brand-center {
    grid-area: brand;
    justify-self: center;
  }

  .brand-logo {
    height: 4.8rem;
  }

  .nav-top-right {
    grid-area: contact;
    justify-self: center;
    min-width: 0;
    align-items: center;
    gap: 0.35rem;
  }

  .nav-phone {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.4rem 0.85rem;
    font-size: 0.92rem;
    line-height: 1;
    letter-spacing: 0;
  }

  .nav-socials {
    display: none;
  }

  .nav-bottom {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 6.75rem);
    right: var(--page-x);
    left: var(--page-x);
    display: none;
    justify-content: stretch;
    width: auto;
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - 8rem);
    overflow-y: auto;
    border-radius: var(--radius-lg);
    background: #003d1a;
    padding: 1.25rem;
    box-shadow: 0 24px 48px rgba(0, 50, 21, 0.28);
    border: 1px solid rgba(174, 242, 187, 0.12);
  }

  body.nav-open .nav-bottom {
    display: flex;
  }

  .mobile-menu-meta {
    display: grid;
    width: 100%;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-menu-block {
    display: grid;
    gap: 0.6rem;
  }

  .mobile-menu-label {
    color: rgba(201, 245, 255, 0.82);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .mobile-menu-hours {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 0.35rem 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .mobile-menu-contact-row {
    display: grid;
    gap: 0.8rem;
  }

  .mobile-menu-phone {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .mobile-menu-socials {
    display: flex;
    gap: 0.55rem;
  }

  .mobile-menu-socials a {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .mobile-menu-socials svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    justify-self: stretch;
    width: 100%;
    gap: 0.35rem;
    padding: 0;
  }

  .nav-links li,
  .nav-action-item {
    width: 100%;
  }

  .nav-links a,
  .ghost-action,
  .book-action {
    display: block;
    width: 100%;
    border-radius: 1rem;
    padding: 0.95rem 1rem;
    text-align: center;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.88);
  }

  .book-action {
    width: min(100%, 12rem);
    margin: 0.35rem auto 0;
  }

  main {
    padding-top: 2rem;
  }

  .sub-nav-bar {
    padding-block: 1rem 0;
  }

  .sub-nav-container {
    justify-content: flex-start;
    padding-inline: 0.25rem;
    scroll-padding-inline: 0.25rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .sub-link {
    flex: 0 0 auto;
    padding: 0.82rem 1rem;
    font-size: 0.78rem;
  }

  .hero,
  .program-grid,
  .quick-actions,
  .opportunity-grid,
  .signature-grid,
  .mini-card-grid,
  .journal-grid,
  .newsletter-layout,
  .newsletter-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2.5rem;
  }

  .hero-copy,
  .hero-media,
  .schedule-card,
  .featured-column,
  .opportunity-card-wide,
  .opportunity-card-small {
    grid-column: 1 / -1;
  }

  .hero-copy {
    max-width: min(100%, 22.5rem);
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 9.5vw, 3rem);
  }

  .hero-lede {
    max-width: 22rem;
    font-size: 1rem;
  }

  .hero-schedule-widget {
    padding: 1.35rem;
  }

  .minimalist {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .minimalist h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .hero-media {
    aspect-ratio: 4 / 4.5;
  }

  .quick-actions {
    gap: 1rem;
  }

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

  .program-grid {
    gap: 1rem;
  }

  .feature-card {
    aspect-ratio: 4 / 3.5;
    min-height: 23rem;
  }

  .feature-content h2 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

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

  .stats article:nth-child(3) {
    box-shadow: none;
  }

  .opportunity-grid {
    margin-bottom: 5.5rem;
  }

  .opportunity-card {
    min-height: auto;
    padding: 2rem;
  }

  .opportunity-card-wide {
    min-height: 20rem;
  }

  .academy-visual {
    width: 7.5rem;
    height: 7.5rem;
  }

  .ghost-calendar {
    width: 8.5rem;
  }

  .center-heading {
    text-align: left;
  }

  .center-heading .eyebrow {
    letter-spacing: 0.22em;
  }

  .signature-programs {
    margin-bottom: 5.5rem;
  }

  .timeline-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-row {
    grid-template-columns: 1fr auto;
    gap: 0.6rem 1rem;
  }

  .timeline-row h3 {
    grid-column: 1 / -1;
  }

  .status-badge {
    align-self: start;
    grid-column: 2;
    grid-row: 1;
  }

  .community-layout {
    grid-template-columns: 1fr;
  }

  .community-copy h2 {
    max-width: 13ch;
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .quote-block {
    grid-template-columns: 3.8rem minmax(0, 1fr);
    gap: 1.2rem;
  }

  .quote-avatar {
    width: 3.8rem;
    height: 3.8rem;
  }

  .community-collage {
    display: grid;
    min-height: 0;
    gap: 1rem;
  }

  .collage-card,
  .small-card,
  .bottom-card,
  .tall-card,
  .lower-card {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1.55 / 1;
  }

  .bottom-card {
    opacity: 1;
  }

  .journal-header {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .nav-top {
    gap: 0.65rem;
    padding-right: 4rem;
  }

  .brand-logo {
    height: 4.1rem;
  }

  .nav-phone {
    font-size: 0.84rem;
  }

  .nav-bottom {
    top: calc(env(safe-area-inset-top, 0px) + 6.15rem);
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - 7.25rem);
  }

  .mobile-menu-hours {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 0.15rem;
  }

  .mobile-menu-phone {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sub-link {
    padding-inline: 0.9rem;
    font-size: 0.74rem;
  }

  .hero-schedule-widget {
    padding: 1.1rem;
  }

  .widget-viewport {
    height: 292px;
    padding: 12px 6px;
    margin: -12px -6px;
  }

  .widget-card {
    grid-template-columns: 3rem 1fr auto;
    gap: 0.75rem;
    padding: 0.7rem 0.8rem;
    height: auto;
    min-height: 80px;
  }

  .widget-card-img {
    width: 3rem;
    height: 3rem;
  }

  .widget-info strong {
    font-size: 0.95rem;
  }

  .widget-info small {
    font-size: 0.72rem;
  }

  .button {
    width: 100%;
  }

  .schedule-row {
    grid-template-columns: 2.8rem 1fr auto;
  }

  .mini-card {
    align-items: flex-start;
  }

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

  .stats article + article {
    box-shadow: inset 0 1px 0 rgba(192, 201, 190, 0.16);
  }

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

  .timeline-row h3,
  .status-badge {
    grid-column: 1;
  }

  .status-badge {
    grid-row: auto;
    justify-self: start;
  }

  .quote-block {
    grid-template-columns: 1fr;
  }

  .quote-block figcaption {
    grid-column: 1;
  }
}

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
