:root {
  color-scheme: light;
  --ink: #151313;
  --ink-2: #312c2d;
  --pine: #970528;
  --teal: #b0002c;
  --aqua: #ff6b89;
  --gold: #e4003b;
  --clay: #bf183e;
  --red: #e4003b;
  --red-dark: #b0002c;
  --red-bright: #ff315d;
  --paper: #ffffff;
  --bone: #f4f4f2;
  --mist: #fafafa;
  --white: #ffffff;
  --muted: #655f60;
  --line: rgba(21, 19, 19, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 100px rgba(56, 20, 30, 0.16);
  --radius: 8px;
  --max: 1220px;
  --header-height: 94px;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(21, 19, 19, 0.03) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(0deg, rgba(21, 19, 19, 0.024) 1px, transparent 1px) 0 0 / 76px 76px,
    var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 300;
  width: 100%;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.shell {
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0.85rem 0;
  background: transparent;
}

.nav-shell {
  width: min(calc(100% - 32px), 1320px);
  min-height: 70px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 0.4rem 0.55rem 0.4rem 0.75rem;
  border: 1px solid rgba(21, 19, 19, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 70px rgba(48, 19, 28, 0.14);
  backdrop-filter: blur(22px);
}

.site-header[data-scrolled="true"] .nav-shell {
  background: rgba(255, 255, 255, 0.98);
}

.brand {
  position: relative;
  display: block;
  align-items: center;
  justify-content: center;
  width: 104px;
  min-width: 104px;
  height: 58px;
  line-height: 1;
  text-decoration: none;
}

.brand-lockup {
  position: absolute;
  inset: 0;
  display: block;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo-symbol {
  clip-path: inset(0 0 25% 0);
}

.brand-logo-name {
  clip-path: inset(70% 0 0 0);
  filter: brightness(0) saturate(100%);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a,
.primary-nav summary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 0.72rem;
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav summary:hover,
.primary-nav a[aria-current="page"] {
  background: rgba(228, 0, 59, 0.09);
  color: var(--red-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown details {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  width: min(330px, 90vw);
  display: grid !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  gap: 0.22rem !important;
  padding: 0.65rem !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.nav-submenu a {
  justify-content: flex-start;
  border-radius: 6px;
  white-space: normal;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-primary {
  background: var(--red-dark);
  color: var(--white);
  border-color: var(--red-dark);
  box-shadow: 0 12px 28px rgba(176, 0, 44, 0.2);
}

.primary-nav .nav-cta {
  background: var(--red-dark);
  color: var(--white);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.page-hero .button-secondary,
.home-hero .button-secondary,
.section-soft .button-secondary,
.section-mist .button-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.button-secondary:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  min-height: 44px;
  padding: 0 0.95rem;
  border: 1px solid rgba(21, 19, 19, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] {
  border-color: var(--red-dark);
  background: var(--red-dark);
  color: var(--white);
  transform: scale(0.96);
}

.nav-backdrop {
  display: none;
}

.mobile-nav-intro {
  display: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.02;
  text-wrap: balance;
}

h1,
h2 {
  font-weight: 800;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 1040px;
  font-size: clamp(3.5rem, 9vw, 8.4rem);
}

h2 {
  font-size: clamp(2.35rem, 5.4vw, 5.8rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.95rem;
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  max-width: 820px;
  margin: 1.3rem 0 0;
  color: inherit;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.home-hero {
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-scroll: 0px;
  min-height: max(760px, 100svh);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  margin-top: -98px;
  padding-top: 98px;
  background: var(--ink);
  color: var(--ink);
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 4%;
  left: 35%;
  width: 38vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(228, 0, 59, 0.42);
  filter: blur(90px);
  opacity: 0.7;
  pointer-events: none;
  transform: translate3d(calc(var(--hero-x) * -0.35), calc(var(--hero-y) * -0.35), 0);
  animation: heroGlow 6s ease-in-out infinite alternate;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(21, 19, 19, 0.055) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(0deg, rgba(21, 19, 19, 0.045) 1px, transparent 1px) 0 0 / 92px 92px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.6) 57%, transparent 90%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--ink);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 36%, rgba(255, 255, 255, 0.78) 52%, rgba(255, 255, 255, 0.08) 82%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, rgba(228, 0, 59, 0.13), transparent 52%);
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.72) contrast(1.08);
  transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0) scale(1.075);
  animation: heroImageIn 1.8s cubic-bezier(0.2, 0.75, 0.2, 1) both;
  will-change: transform;
}

.hero-kinetic-word {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -0.12em;
  color: rgba(255, 255, 255, 0.13);
  font-family: "Manrope", sans-serif;
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.7;
  writing-mode: vertical-rl;
  transform: translate3d(calc(var(--hero-x) * -0.7), calc(-50% + (var(--hero-y) * -0.7)), 0);
  user-select: none;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  top: 47%;
  right: clamp(3rem, 11vw, 12rem);
  width: clamp(190px, 25vw, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate3d(calc(var(--hero-x) * -0.85), calc(-50% + (var(--hero-y) * -0.85)), 0);
  animation: orbitFloat 5.5s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after,
.hero-orbit span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-orbit::before {
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-orbit::after {
  inset: 28%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(228, 0, 59, 0.08);
  backdrop-filter: blur(3px);
}

.hero-orbit span {
  width: 9px;
  height: 9px;
  background: var(--red-bright);
  box-shadow: 0 0 24px rgba(255, 49, 93, 0.9);
}

.hero-orbit span:nth-child(1) {
  top: 8%;
  left: 47%;
}

.hero-orbit span:nth-child(2) {
  right: 2%;
  bottom: 29%;
}

.hero-orbit span:nth-child(3) {
  left: 13%;
  bottom: 14%;
}

.home-hero .shell {
  position: relative;
  z-index: 2;
  padding-block: clamp(8rem, 13vh, 10rem) clamp(3.5rem, 7vh, 5.5rem);
}

.hero-copy {
  width: min(1010px, 84%);
}

.home-hero h1 {
  max-width: 980px;
  font-size: clamp(3.4rem, 6.2vw, 6.65rem);
  line-height: 0.84;
  letter-spacing: -0.045em;
}

.hero-title-line {
  display: block;
}

.hero-title-line em,
.hero-title-line strong {
  font: inherit;
}

.hero-title-line em {
  color: var(--red-dark);
  font-style: italic;
}

.hero-title-line-last {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.2em;
  font-size: 0.78em;
  margin-top: 0.12em;
}

.hero-title-line-last strong {
  display: inline-block;
  padding: 0.07em 0.16em 0.12em;
  background: var(--ink);
  color: var(--white);
  font-size: 0.55em;
  font-family: "Manrope", sans-serif;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1;
  transform: rotate(-1.3deg);
}

.home-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.home-hero .eyebrow > span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(228, 0, 59, 0.45);
  animation: heroPulse 2s ease-out infinite;
}

.hero-copy .lead {
  max-width: 740px;
  color: var(--ink-2);
  font-size: clamp(1.02rem, 1.55vw, 1.27rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.hero-proof span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(21, 19, 19, 0.12);
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-2);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 35px rgba(42, 17, 24, 0.08);
}

.hero-proof strong {
  color: var(--red-dark);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
}

.hero-copy .button-row {
  margin-top: 2rem;
}

.hero-primary-button {
  position: relative;
  overflow: hidden;
  min-width: 250px;
}

.hero-primary-button::before {
  content: "";
  position: absolute;
  inset: -50% auto -50% -30%;
  width: 24%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-22deg) translateX(-350%);
  animation: buttonShine 4.8s 2s ease-in-out infinite;
}

.hero-primary-button span {
  font-size: 1.2em;
  transition: transform 180ms ease;
}

.hero-primary-button:hover span,
.hero-primary-button:focus-visible span {
  transform: translateX(4px);
}

.hero-scroll-cue {
  position: absolute;
  z-index: 3;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: 2.2rem;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll-cue i {
  position: relative;
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.hero-scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateY(-100%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

.hero-reveal,
.hero-copy .lead,
.hero-copy .button-row,
.hero-copy .hero-proof {
  opacity: 0;
  transform: translateY(34px);
  animation: heroReveal 900ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.hero-reveal-1 { animation-delay: 120ms; }
.hero-reveal-2 { animation-delay: 240ms; }
.hero-reveal-3 { animation-delay: 360ms; }
.hero-reveal-4 { animation-delay: 480ms; }
.hero-copy .lead { animation-delay: 620ms; }
.hero-copy .button-row { animation-delay: 740ms; }
.hero-copy .hero-proof { animation-delay: 860ms; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0) scale(1.16);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0) scale(1.075);
  }
}

@keyframes heroGlow {
  to {
    opacity: 0.95;
    transform: translate3d(calc((var(--hero-x) * -0.35) + 5vw), calc((var(--hero-y) * -0.35) + 2vh), 0) scale(1.13);
  }
}

@keyframes orbitFloat {
  to {
    margin-top: -12px;
    transform: translate3d(calc((var(--hero-x) * -0.85) - 8px), calc(-50% + (var(--hero-y) * -0.85)), 0) rotate(5deg);
  }
}

@keyframes heroPulse {
  70% {
    box-shadow: 0 0 0 9px rgba(228, 0, 59, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(228, 0, 59, 0);
  }
}

@keyframes buttonShine {
  0%, 68% { transform: skewX(-22deg) translateX(-350%); }
  82%, 100% { transform: skewX(-22deg) translateX(850%); }
}

@keyframes scrollCue {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}

.section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.section-tight {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section-soft {
  background: var(--bone);
}

.section-mist {
  background: var(--mist);
}

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

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.58fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.8rem);
}

.section-heading-row p,
.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.section-dark .section-heading-row p,
.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

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

.program-card {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(21, 19, 19, 0.12);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(47, 20, 28, 0.16);
  isolation: isolate;
}

.program-card::before {
  content: counter(programCounter, decimal-leading-zero);
  counter-increment: programCounter;
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.program-grid {
  counter-reset: programCounter;
}

.program-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.program-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(21, 19, 19, 0.96) 0%, rgba(21, 19, 19, 0.58) 48%, rgba(21, 19, 19, 0.08) 100%);
}

.program-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
  transition: transform 700ms ease, filter 700ms ease;
}

.program-card:hover .program-card-media img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.08);
}

.program-card-body {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 1.25rem;
}

.program-card h3 {
  color: var(--white);
  font-size: clamp(1.55rem, 2.5vw, 2.55rem);
}

.program-card p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.content-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  overflow: hidden;
  border: 1px solid rgba(21, 19, 19, 0.13);
  border-top: 5px solid var(--red);
  background: var(--white);
  box-shadow: 0 22px 65px rgba(48, 19, 28, 0.1);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.content-card::after {
  content: "";
  position: absolute;
  right: -4.5rem;
  bottom: -5.5rem;
  width: 11rem;
  aspect-ratio: 1;
  border: 1px solid rgba(228, 0, 59, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 1.25rem rgba(228, 0, 59, 0.035);
  pointer-events: none;
}

.content-card:hover {
  border-color: rgba(176, 0, 44, 0.3);
  box-shadow: 0 28px 75px rgba(48, 19, 28, 0.14);
  transform: translateY(-4px);
}

.content-card h3 {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.1;
}

.content-card p {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.content-card-linked .text-link {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1.5rem;
}

.feature-grid,
.testimonial-grid,
.method-grid,
.workshop-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: methodCounter;
}

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

.feature-card,
.testimonial,
.method-card,
.workshop-card,
.price-card,
.info-panel {
  margin: 0;
  padding: clamp(1.2rem, 2.8vw, 2rem);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 70px rgba(48, 19, 28, 0.08);
}

.feature-card,
.method-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.method-card::before {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-bottom: 1.2rem;
  background: var(--red);
}

.method-card::after {
  content: counter(methodCounter, decimal-leading-zero);
  counter-increment: methodCounter;
  position: absolute;
  right: 1.2rem;
  bottom: -0.1rem;
  color: rgba(21, 19, 19, 0.08);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  font-size: 7rem;
  line-height: 0.8;
}

.section-dark .testimonial,
.section-dark .feature-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.feature-card p,
.method-card p,
.workshop-card p,
.price-card p,
.info-panel p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.section-dark .testimonial blockquote,
.section-dark .testimonial figcaption,
.section-dark .feature-card p {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--red-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: ">";
  margin-left: 0.4rem;
}

.text-link:hover {
  color: var(--ink);
}

.program-card .text-link,
.section-dark .text-link {
  color: var(--red-bright);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.split-copy p {
  color: var(--muted);
}

.split-copy .button {
  margin-top: 1rem;
}

.split-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
  z-index: 1;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-top: -98px;
  padding-block: calc(98px + clamp(2.25rem, 4vw, 4rem)) clamp(2.25rem, 4vw, 3.5rem);
  background: var(--white);
  color: var(--ink);
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(228, 0, 59, 0.055) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(0deg, rgba(21, 19, 19, 0.035) 1px, transparent 1px) 0 0 / 92px 92px;
  opacity: 0.72;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: var(--red);
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.58fr);
  gap: clamp(2rem, 5vw, 4.25rem);
  align-items: center;
}

.page-hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(2.45rem, 3.8vw, 4.35rem);
  line-height: 1.02;
  overflow-wrap: break-word;
}

.page-hero .lead {
  max-width: 690px;
  color: var(--muted);
}

.page-hero .button-row {
  margin-top: 2rem;
}

.page-hero-image {
  position: relative;
  margin: 0;
  overflow: visible;
  box-shadow: var(--shadow);
}

.page-hero-image::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--red);
  z-index: -1;
}

.page-hero-image img {
  width: 100%;
  height: clamp(300px, 30vw, 400px);
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
}

.page-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(21, 19, 19, 0.18);
  background: transparent;
  pointer-events: none;
}

.band {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--red-dark);
  color: var(--white);
}

.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.band p {
  max-width: 760px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-2);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66rem;
  width: 0.56rem;
  height: 0.56rem;
  background: var(--red);
  transform: rotate(45deg);
}

.section-dark .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

.price-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.price-row {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 0.78rem;
  border-top: 1px solid var(--line);
}

.price-row strong {
  color: var(--red-dark);
  white-space: nowrap;
}

.testimonial {
  background: var(--white);
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink-2);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  line-height: 1.15;
}

.testimonial figcaption {
  margin-top: 1.25rem;
  color: var(--teal);
  font-weight: 900;
}

.form-section {
  background: var(--paper);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.form-side {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.form-side p,
.info-panel p {
  color: var(--muted);
}

.youfit-form {
  padding: clamp(1.2rem, 3vw, 2.3rem);
  border: 1px solid rgba(21, 19, 19, 0.16);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.form-title {
  margin-bottom: 1.35rem;
}

.form-title p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

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

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label,
.checkbox-group legend {
  color: var(--ink);
  font-weight: 900;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 50px;
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(21, 19, 19, 0.2);
  border-radius: 0;
  background: #ffffff;
  color: var(--ink);
}

.form-field textarea {
  resize: vertical;
}

.form-trap {
  position: absolute;
  left: -9999px;
}

.checkbox-group {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
}

.check-option {
  display: grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  gap: 0.6rem;
  margin-top: 0.65rem;
  font-weight: 700;
  color: var(--ink-2);
}

.check-option input {
  min-height: auto;
  margin-top: 0.35rem;
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-details-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(228, 0, 59, 0.045) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(0deg, rgba(21, 19, 19, 0.03) 1px, transparent 1px) 0 0 / 76px 76px,
    var(--bone);
}

.contact-details-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.82fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.contact-details-copy h2 {
  max-width: 680px;
  font-size: clamp(2.6rem, 5.2vw, 5.7rem);
}

.contact-details-copy p:not(.section-kicker) {
  max-width: 620px;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.contact-details-panel {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: clamp(0.85rem, 2vw, 1.2rem);
  border: 1px solid rgba(21, 19, 19, 0.18);
  background: var(--ink);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.contact-details-panel::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 2px solid var(--red);
  pointer-events: none;
}

.contact-method {
  display: grid;
  gap: 0.45rem;
  min-height: 132px;
  padding: clamp(1rem, 2.5vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  text-decoration: none;
}

.contact-method-primary {
  background: var(--red-dark);
  color: var(--white);
}

.contact-method:hover,
.contact-method:focus-visible {
  border-color: var(--red-bright);
  background: rgba(255, 255, 255, 0.12);
}

.contact-method-primary:hover,
.contact-method-primary:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.contact-method-primary:hover .contact-label,
.contact-method-primary:focus-visible .contact-label,
.contact-method-primary:hover .contact-note,
.contact-method-primary:focus-visible .contact-note {
  color: var(--ink);
}

.contact-label {
  color: var(--red-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-method-primary .contact-label {
  color: var(--white);
}

.contact-value {
  color: inherit;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.contact-note {
  align-self: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.contact-method-primary .contact-note {
  color: rgba(255, 255, 255, 0.78);
}

.contact-map-link {
  color: var(--red-bright);
  font-weight: 900;
  text-decoration: none;
}

.contact-map-link:hover,
.contact-map-link:focus-visible {
  color: var(--white);
}

.timeline-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.timeline-list strong {
  color: var(--red-dark);
}

.value-note {
  color: var(--muted);
  font-weight: 800;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr;
  gap: clamp(1.5rem, 5vw, 3rem);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.footer-wordmark {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 132px;
  min-height: 88px;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  line-height: 1;
  text-decoration: none;
}

.footer-logo {
  width: 96px;
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.footer-brand p,
.footer-contact p,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin: 0 0 1rem;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--red-bright);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem 0.55rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--red-bright);
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (min-width: 981px) {
  .home-hero {
    align-items: center;
  }

  .home-hero .shell {
    padding-block: clamp(5rem, 8vh, 6rem);
    transform: translateY(clamp(-3rem, -5vh, -2rem));
  }
}

@media (max-width: 1160px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-nav {
    position: fixed;
    z-index: 205;
    top: calc(var(--header-height) + 0.4rem);
    right: 1rem;
    width: min(430px, calc(100% - 2rem));
    max-height: calc(100svh - var(--header-height) - 1.4rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    align-content: start;
    justify-content: stretch;
    justify-items: stretch;
    gap: 0;
    overflow-y: auto;
    padding: 1.15rem;
    border: 1px solid rgba(21, 19, 19, 0.13);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 34px 110px rgba(42, 17, 24, 0.28);
    backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -18px, 0) scale(0.94);
    transform-origin: top right;
    transition:
      opacity 180ms ease,
      visibility 0s linear 360ms,
      transform 280ms ease;
  }

  .primary-nav[data-open="true"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    transition:
      opacity 190ms ease,
      visibility 0s linear 0s,
      transform 620ms cubic-bezier(0.16, 1.38, 0.36, 1);
  }

  .primary-nav ul {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    align-content: start;
    justify-content: stretch;
    justify-items: stretch;
    gap: 0;
  }

  .primary-nav li,
  .primary-nav details {
    width: 100%;
  }

  .mobile-nav-intro {
    width: 100%;
    display: grid;
    gap: 0.2rem;
    margin-bottom: 0.6rem;
    padding: 0.45rem 0.85rem 1rem;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-intro strong {
    color: var(--red-dark);
    font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    line-height: 1;
  }

  .mobile-nav-intro span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 750;
    line-height: 1.45;
  }

  .primary-nav > .mobile-nav-intro,
  .primary-nav > ul > li,
  .primary-nav > .nav-cta {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 240ms ease;
  }

  .primary-nav[data-open="true"] > .mobile-nav-intro,
  .primary-nav[data-open="true"] > ul > li,
  .primary-nav[data-open="true"] > .nav-cta {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 260ms ease, transform 520ms cubic-bezier(0.16, 1.3, 0.36, 1);
  }

  .primary-nav[data-open="true"] > .mobile-nav-intro { transition-delay: 55ms; }
  .primary-nav[data-open="true"] > ul > li:nth-child(1) { transition-delay: 90ms; }
  .primary-nav[data-open="true"] > ul > li:nth-child(2) { transition-delay: 125ms; }
  .primary-nav[data-open="true"] > ul > li:nth-child(3) { transition-delay: 160ms; }
  .primary-nav[data-open="true"] > ul > li:nth-child(4) { transition-delay: 195ms; }
  .primary-nav[data-open="true"] > ul > li:nth-child(5) { transition-delay: 230ms; }
  .primary-nav[data-open="true"] > ul > li:nth-child(6) { transition-delay: 265ms; }
  .primary-nav[data-open="true"] > ul > li:nth-child(7) { transition-delay: 300ms; }
  .primary-nav[data-open="true"] > .nav-cta { transition-delay: 335ms; }

  .primary-nav a,
  .primary-nav summary {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 0.78rem 0.9rem;
    border-bottom: 1px solid rgba(21, 19, 19, 0.09);
    border-radius: 0;
    font-size: 0.98rem;
    white-space: normal;
  }

  .primary-nav > ul > li:last-child > a {
    border-bottom: 0;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible,
  .primary-nav summary:hover,
  .primary-nav a[aria-current="page"] {
    background: rgba(228, 0, 59, 0.075);
    box-shadow: inset 3px 0 0 var(--red);
  }

  .primary-nav a[aria-current="page"] {
    color: var(--red-dark);
  }

  .nav-submenu {
    position: static;
    width: 100%;
    margin: 0.3rem 0 0.6rem !important;
    padding: 0.35rem !important;
    border: 0;
    border-radius: 14px;
    box-shadow: none;
    background: var(--bone);
  }

  .nav-submenu a {
    min-height: 46px;
    padding-inline: 0.75rem;
    border-bottom-color: rgba(21, 19, 19, 0.07);
    border-radius: 9px;
    font-size: 0.9rem;
  }

  .nav-cta {
    width: 100%;
    min-height: 54px;
    margin-top: 0.9rem;
    border-radius: 14px !important;
    box-shadow: 0 16px 35px rgba(176, 0, 44, 0.22);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 190;
    display: block;
    background: rgba(21, 19, 19, 0.3);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 240ms ease, visibility 0s linear 360ms;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 240ms ease, visibility 0s linear 0s;
  }
}

@media (max-width: 980px) {
  .hero-copy {
    width: min(850px, 92%);
  }

  .home-hero h1 {
    font-size: clamp(3.2rem, 7.9vw, 5rem);
  }

  .hero-orbit {
    right: -7rem;
    opacity: 0.65;
  }

  .hero-kinetic-word {
    right: -0.3em;
    opacity: 0.75;
  }

  .program-grid,
  .content-card-grid,
  .feature-grid,
  .testimonial-grid,
  .method-grid,
  .workshop-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-card {
    min-height: 460px;
  }

  .section-heading-row,
  .split,
  .page-hero-grid,
  .contact-details-shell,
  .form-layout,
  .band-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-side {
    position: static;
  }

  .band-grid {
    align-items: start;
  }

  .page-hero {
    padding-block: calc(86px + 2.35rem) 3rem;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 6.5vw, 3.35rem);
  }

  .contact-details-copy h2 {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 30px), var(--max));
  }

  .site-header {
    padding: 0.4rem 0;
  }

  .brand {
    width: 98px;
    min-width: 98px;
    height: 55px;
  }

  .nav-shell {
    min-height: 64px;
    padding: 0.28rem 0.45rem 0.28rem 0.65rem;
  }

  .primary-nav {
    top: 76px;
    right: 0.75rem;
    width: calc(100% - 1.5rem);
    max-height: calc(100svh - 88px);
    padding: 1rem;
    border-radius: 20px;
  }

  .primary-nav a,
  .primary-nav summary {
    min-height: 51px;
    padding-inline: 0.85rem;
  }

  .primary-nav .nav-cta {
    justify-content: center;
    min-height: 52px;
  }

  .program-grid,
  .content-card-grid,
  .feature-grid,
  .testimonial-grid,
  .method-grid,
  .workshop-grid,
  .pricing-grid,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: max(780px, 100svh);
  }

  .home-hero .shell {
    padding-block: 5.5rem 1.75rem;
  }

  .hero-copy {
    width: 100%;
  }

  .home-hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.1rem);
    line-height: 0.88;
  }

  .hero-title-line-last {
    display: block;
    font-size: 0.75em;
    line-height: 1.05;
  }

  .hero-title-line-last strong {
    margin-top: 0.2em;
    font-size: 0.66em;
  }

  .hero-backdrop img {
    object-position: 63% center;
    opacity: 0.78;
  }

  .hero-backdrop::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 64%, rgba(255, 255, 255, 0.26) 100%),
      linear-gradient(0deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0) 47%);
  }

  .hero-orbit,
  .hero-kinetic-word,
  .hero-scroll-cue {
    display: none;
  }

  .home-hero .eyebrow {
    max-width: 29rem;
    margin-bottom: 0.65rem;
    font-size: 0.66rem;
  }

  .hero-copy .lead {
    max-width: 34rem;
    margin-top: 1.05rem;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-copy .button-row {
    margin-top: 1.2rem;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .hero-proof span {
    min-height: 82px;
    display: grid;
    align-content: start;
    gap: 0.25rem;
    padding: 0.7rem;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .hero-proof strong {
    font-size: 1.28rem;
  }

  .program-card {
    min-height: 420px;
  }

  .content-card {
    min-height: 230px;
  }

  .page-hero {
    padding-block: calc(86px + 1.75rem) 2.25rem;
  }

  .page-hero h1 {
    font-size: clamp(2.05rem, 8vw, 2.55rem);
  }

  .page-hero-image img {
    height: 250px;
  }

  .page-hero-image::before {
    inset: 10px;
    z-index: 1;
  }

  .contact-details-panel::before {
    inset: 10px;
    z-index: 1;
  }

  .contact-method {
    min-height: auto;
  }

  .button,
  .button-row .button {
    width: 100%;
  }

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

@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;
  }

  .hero-reveal,
  .hero-copy .lead,
  .hero-copy .button-row,
  .hero-copy .hero-proof {
    opacity: 1;
    transform: none;
  }

  .hero-backdrop img,
  .hero-orbit,
  .hero-kinetic-word,
  .home-hero::before {
    transform: none;
  }
}
