/* ============================================
   ZENITH FITNESS — Hyrox Programming
   Design System v3.0 — Dark Cinematic
   Inspired by bodhist.com / karimusamuels.com
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --bg-hover: #1c1c1c;
  --text: #f0ece6;
  --text-dim: rgba(240, 236, 230, 0.55);
  --text-muted: rgba(240, 236, 230, 0.35);
  --accent: #c44b2b;
  --accent-glow: rgba(196, 75, 43, 0.15);
  --accent-light: #e8654a;
  --rule: rgba(240, 236, 230, 0.08);
  --rule-strong: rgba(240, 236, 230, 0.15);
  --white: #ffffff;
  --font-heading: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --max-width: 1280px;
  --gutter: clamp(1.5rem, 4vw, 3rem);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

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

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* --- Typography Scale --- */
.t-massive {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.t-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.t-section {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.t-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.t-body-lg {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-dim);
  font-weight: 400;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(5rem, 10vw, 10rem) 0;
}

.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

.rule--thick {
  border-top-width: 2px;
  border-color: var(--rule-strong);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
}

.nav__brand-sub {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  transition: color 0.3s var(--ease);
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}

.nav__link:hover,
.nav__link--active {
  color: var(--text);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Mobile nav */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero (Home) --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 6rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

/* Hero background image */
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

/* Gradient overlay for depth */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

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

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.hero__title-wrap {
  position: relative;
}

.hero__issue {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__issue::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
}

.hero__title .hero__title--outline {
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent;
}

.hero__title .hero__title--accent {
  color: var(--accent);
  font-size: 0.45em;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: 0.3em;
}

.hero__right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 500px;
  margin-left: auto;
}

.hero__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 420px;
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.hero__scroll {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 60px;
  height: 1px;
  background: var(--rule-strong);
  position: relative;
  overflow: hidden;
}

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

@keyframes scrollLine {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* --- Marquee --- */
.marquee {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}

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

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: color 0.3s;
}

.marquee:hover .marquee__item {
  color: var(--text-dim);
}

.marquee__item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

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

/* --- Split Sections --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 80vh;
}

.split__text {
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}

.split__image {
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.split__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.split__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.split__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.split__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 480px;
}

/* --- Cards Grid --- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
}

.card {
  background: var(--bg-card);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  transition: background 0.4s var(--ease);
  border-bottom: 2px solid transparent;
}

.card:hover {
  background: var(--bg-hover);
  border-bottom-color: var(--accent);
}

.card__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--rule-strong);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.35s var(--ease);
}

.card:hover .card__number {
  color: var(--accent);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.card__body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
}

/* --- Stations Grid --- */
.stations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
}

.station {
  background: var(--bg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
}

.station:hover {
  background: var(--accent);
}

.station:hover .station__num {
  color: rgba(255,255,255,0.2);
}

.station:hover .station__name {
  color: var(--white);
}

.station:hover .station__detail {
  color: rgba(255,255,255,0.6);
}

.station__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--rule-strong);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color 0.35s var(--ease);
}

.station__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
  transition: color 0.35s var(--ease);
}

.station__detail {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.35s var(--ease);
}

/* --- Dark Section --- */
.section--dark {
  background: var(--bg-elevated);
}

.section--dark .t-label {
  color: var(--accent);
}

.section--dark .t-body-lg {
  color: var(--text-dim);
}

/* --- Warm Section (now muted dark) --- */
.section--warm {
  background: var(--bg-card);
}

/* --- CTA Band --- */
.cta-band {
  background: var(--bg);
  padding: clamp(5rem, 10vw, 10rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-band__text {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid var(--rule-strong);
  background: transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  color: var(--text);
  position: relative;
  min-height: 48px;
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn:active {
  transform: scale(0.98);
}

.btn--filled {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn--filled:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--white);
}

.btn--light {
  border-color: var(--text);
  color: var(--text);
}

.btn--light:hover {
  background: var(--text);
  color: var(--bg);
}

.btn__arrow {
  transition: transform 0.3s var(--ease);
  font-weight: 300;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* --- Footer --- */
.footer {
  background: var(--bg);
  color: var(--text);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
  border-top: 1px solid var(--rule);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__list a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.25s var(--ease);
}

.footer__list a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* --- Form Elements --- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--rule-strong);
  background: var(--bg-card);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input.error,
.form-textarea.error {
  border-color: var(--accent);
}

.form-error {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: 0.4rem;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='rgba(240,236,230,0.35)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--text-dim);
  line-height: 1.7;
}

/* --- Programs page --- */
.program-tier {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s;
}

.program-tier:hover {
  background: var(--bg-card);
  margin: 0 calc(var(--gutter) * -1);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.program-tier__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.3rem;
}

.program-tier__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
}

.program-tier__price span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.program-tier__content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.program-tier__features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.program-tier__features li {
  font-size: 0.95rem;
  color: var(--text-dim);
  padding-left: 1.5rem;
  position: relative;
}

.program-tier__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* --- About page --- */
.about-hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
}

.about-value {
  padding: 3rem 2rem;
  background: var(--bg);
  border-bottom: 2px solid transparent;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.about-value:hover {
  border-bottom-color: var(--accent);
  background: var(--bg-card);
}

.about-value__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--rule-strong);
  margin-bottom: 1.5rem;
}

.about-value__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.about-value__body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
}

/* --- Pull Quote --- */
.pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  padding: 2.5rem 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule);
  margin: 3rem 0;
  max-width: 600px;
  color: var(--text-dim);
}

/* --- Day card (weekly schedule) --- */
.day-card {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 2px solid transparent;
}

.day-card:hover {
  background: var(--bg-hover);
  border-bottom-color: var(--accent);
}

.day-card__label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.day-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.day-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Stat block --- */
.stat-block {
  transition: transform 0.3s var(--ease);
}

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

.stat-block__num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat-block__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* --- Contact info blocks --- */
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-info-value {
  font-size: 1.1rem;
  color: var(--text-dim);
}

.contact-info-value a {
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-info-value a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* --- Tier advice panel --- */
.tier-advice {
  background: var(--bg-card);
  padding: 2rem;
  border-left: 2px solid var(--accent);
}

.tier-advice__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tier-advice p {
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.tier-advice p:last-child {
  margin-bottom: 0;
}

.tier-advice strong {
  color: var(--text);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }

  .marquee__track {
    animation: none;
  }

  .hero__scroll-line::after {
    animation: none;
  }
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__right {
    margin-left: 0;
  }

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

  .split__image {
    min-height: 300px;
    order: -1;
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .program-tier {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .program-tier:hover {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .program-tier__features {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links .nav__link {
    font-size: 1.2rem;
    color: var(--text);
  }

  .nav__toggle {
    display: flex;
    z-index: 101;
  }
}

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

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

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

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

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* --- Print --- */
@media print {
  .nav, .marquee, .cta-band, .hero__scroll { display: none; }
  body { background: white; color: black; }
  .section { padding: 2rem 0; }
}
