:root {
  --black: #050607;
  --charcoal-950: #090b0e;
  --charcoal-900: #101318;
  --charcoal-850: #15191f;
  --charcoal-800: #1b2129;
  --navy-950: #04101f;
  --navy-900: #071a33;
  --navy-800: #0a274d;
  --blue-700: #124d95;
  --blue-600: #1765bd;
  --red-700: #b6172b;
  --red-600: #d21f38;
  --red-500: #ed2944;
  --white: #ffffff;
  --gray-50: #13171c;
  --gray-100: #20262e;
  --gray-300: #3d4652;
  --gray-500: #929ca9;
  --gray-700: #c2c9d1;
  --text: #e7ebef;
  --shadow-sm: 0 14px 34px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 30px 72px rgba(0, 0, 0, 0.42);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --container: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 200ms ease;
  --transition-slow: 560ms var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--charcoal-950);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-900);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 7vw, 6.9rem);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  text-transform: uppercase;
}

h3 {
  font-size: 1.7rem;
}

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

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--red-600);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform var(--transition);
}

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

:focus-visible {
  outline: 3px solid #62aaff;
  outline-offset: 4px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.15rem;
  color: var(--red-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: #ff6479;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.45rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(4, 16, 31, 0.12);
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
}

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

.button:active {
  box-shadow: 0 4px 12px rgba(4, 16, 31, 0.12);
  transform: translateY(0) scale(0.985);
}

.button:focus-visible {
  outline-color: var(--white);
  box-shadow: 0 0 0 2px var(--navy-900), 0 0 0 5px #62aaff;
}

.button-small {
  min-height: 44px;
  padding: 0.75rem 1.05rem;
  font-size: 0.76rem;
}

.button-red {
  color: var(--white);
  background: var(--red-600);
}

.button-red:hover {
  background: var(--red-500);
  box-shadow: 0 12px 28px rgba(182, 23, 43, 0.3);
}

.button-blue {
  color: var(--white);
  background: var(--blue-700);
}

.button-blue:hover {
  background: var(--blue-600);
  box-shadow: 0 12px 28px rgba(18, 77, 149, 0.25);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  box-shadow: 0 10px 24px rgba(4, 16, 31, 0.2);
}

.reveal-ready {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready.reveal-left {
  transform: translate3d(-18px, 0, 0);
}

.reveal-ready.reveal-right {
  transform: translate3d(18px, 0, 0);
}

.reveal-ready.reveal-scale {
  transform: translate3d(0, 10px, 0) scale(0.985);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(4, 16, 31, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition: background-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(4, 16, 31, 0.96);
  box-shadow: 0 10px 30px rgba(4, 16, 31, 0.18);
}

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

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

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 96px;
  max-height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
  transition: filter var(--transition), transform var(--transition);
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 8px 18px rgba(210, 31, 56, 0.24));
  transform: translateY(-1px);
}

.brand-logo-footer {
  max-width: 110px;
  max-height: 64px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-transform: uppercase;
}

.brand-copy span {
  margin-top: 0.32rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.primary-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.primary-nav > a:not(.button):hover,
.primary-nav > a:not(.button):focus-visible {
  color: var(--white);
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: inherit;
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
}

.nav-toggle:active {
  transform: scale(0.96);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  display: flex;
  min-height: 800px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(23, 101, 189, 0.28), transparent 32%),
    linear-gradient(125deg, var(--navy-950) 0%, var(--navy-900) 60%, #0b315f 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.09;
  background-image: linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero-accent {
  position: absolute;
  top: -8%;
  right: -12%;
  width: 46vw;
  height: 120%;
  background: var(--red-600);
  opacity: 0.1;
  transform: skewX(-14deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: 1.08fr 0.92fr;
  padding-top: 118px;
  padding-bottom: 70px;
}

.hero-content {
  max-width: 690px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content > .eyebrow,
  .hero-content > h1,
  .hero-content > .hero-lead,
  .hero-content > .hero-actions,
  .hero-content > .hero-proof {
    animation: hero-content-enter 620ms var(--ease-out) both;
  }

  .hero-content > h1 {
    animation-delay: 80ms;
  }

  .hero-content > .hero-lead {
    animation-delay: 150ms;
  }

  .hero-content > .hero-actions {
    animation-delay: 220ms;
  }

  .hero-content > .hero-proof {
    animation-delay: 300ms;
  }

  .hero-visual {
    animation: hero-visual-enter 760ms 180ms var(--ease-out) both;
  }
}

@keyframes hero-content-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-visual-enter {
  from {
    opacity: 0;
    transform: translate3d(18px, 10px, 0) rotate(1.5deg) scale(0.985);
  }

  to {
    opacity: 1;
    transform: rotate(1.5deg);
  }
}

.hero h1 {
  color: var(--white);
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-proof {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  border-left: 3px solid var(--red-500);
}

.hero-proof strong {
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-proof span {
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.77rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 150px 18px 150px 18px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}

.photo-placeholder {
  position: absolute;
  inset: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(23, 101, 189, 0.2)),
    var(--navy-800);
  border-radius: 138px 10px 138px 10px;
}

.photo-placeholder::before {
  position: absolute;
  width: 260px;
  height: 260px;
  content: "";
  border: 50px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.photo-placeholder strong,
.photo-placeholder p,
.placeholder-kicker {
  position: relative;
  z-index: 1;
}

.placeholder-kicker {
  margin-bottom: 1rem;
  color: #ff8d9d;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.photo-placeholder strong {
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

.photo-placeholder p {
  max-width: 280px;
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.58);
}

.belt-stripe {
  position: absolute;
  right: -24px;
  bottom: 72px;
  left: -24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transform: rotate(-5deg);
}

.belt-stripe span {
  display: block;
  height: 14px;
  background: var(--red-600);
  box-shadow: 0 8px 18px rgba(4, 16, 31, 0.25);
}

.belt-stripe span:last-child {
  width: 72%;
  margin-left: auto;
  background: var(--white);
}

.intro-strip {
  padding-block: 1.45rem;
  color: var(--white);
  background: var(--red-600);
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.intro-strip p {
  margin: 0;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.intro-strip span {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--white);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: 0.95fr 1.05fr;
}

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

.about-copy {
  max-width: 660px;
  padding-top: 2.6rem;
  color: var(--gray-700);
}

.lead-copy {
  color: var(--navy-900);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 650;
  line-height: 1.5;
}

.text-link,
.program-card > a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--blue-700);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.text-link {
  margin-top: 1rem;
}

.text-link span,
.program-card > a span {
  transition: transform var(--transition);
}

.text-link:hover span,
.program-card > a:hover span {
  transform: translateX(4px);
}

.text-link:hover,
.program-card > a:hover {
  color: var(--blue-600);
}

.programs {
  background: var(--gray-50);
}

.section-heading-centered {
  max-width: 760px;
  margin: 0 auto 3.4rem;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.section-heading-centered h2 {
  margin-inline: auto;
}

.section-heading-centered > p:last-child {
  color: var(--gray-700);
}

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

.program-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 0 rgba(4, 16, 31, 0.04);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.program-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 18px 42px rgba(4, 16, 31, 0.11);
  transform: translateY(-4px);
}

.program-card:focus-within {
  border-color: rgba(18, 77, 149, 0.4);
  box-shadow: var(--shadow-sm);
}

.program-number {
  position: absolute;
  top: 0.2rem;
  right: 1.2rem;
  color: var(--gray-100);
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 6.4rem;
  font-weight: 900;
  line-height: 1;
}

.program-card > div:not(.program-number) {
  position: relative;
  z-index: 1;
}

.card-status,
.placeholder-label,
.review-meta {
  margin-bottom: 1.5rem;
  color: var(--red-600);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.program-card h3 {
  margin-bottom: 0.9rem;
  font-size: 2rem;
  text-transform: uppercase;
}

.program-card div p:last-child {
  max-width: 470px;
  color: var(--gray-700);
}

.benefits {
  color: var(--white);
  background: var(--navy-900);
}

.benefits-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
  grid-template-columns: 0.9fr 1.1fr;
}

.benefits h2 {
  color: var(--white);
}

.benefits-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.67);
}

.benefit-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.benefit-list article {
  display: grid;
  align-items: center;
  gap: 1.3rem;
  grid-template-columns: 44px 1fr;
  padding-block: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color var(--transition), border-color var(--transition), padding var(--transition);
}

.benefit-list article:hover {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.26);
}

.benefit-list article > span {
  color: #ff8b9a;
  font-size: 0.75rem;
  font-weight: 800;
}

.benefit-list h3 {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-size: 1.4rem;
  text-transform: uppercase;
}

.benefit-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

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

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

.reviews-header h2 {
  margin-bottom: 0;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(4, 16, 31, 0.06);
}

.rating-value {
  color: var(--navy-900);
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stars {
  color: #f0a000;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.rating-summary p {
  margin: 0.22rem 0 0;
  color: var(--gray-500);
  font-size: 0.8rem;
}

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

.review-card {
  padding: 2rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.review-card:hover {
  background: var(--white);
  border-color: var(--gray-300);
  box-shadow: 0 16px 38px rgba(4, 16, 31, 0.09);
  transform: translateY(-3px);
}

.review-placeholder {
  border-style: dashed;
}

.review-card blockquote {
  margin: 1.1rem 0 1.7rem;
  color: var(--navy-900);
  font-size: 1.08rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
}

.review-author {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.83rem;
}

.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}

.reviews-footer p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.78rem;
}

.contact {
  padding-top: 0;
  color: var(--white);
  background: linear-gradient(to bottom, var(--white) 0%, var(--white) 18%, var(--gray-100) 18%, var(--gray-100) 100%);
}

.contact-grid {
  display: grid;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  grid-template-columns: 0.95fr 1.05fr;
  transition: box-shadow var(--transition);
}

.contact-grid:hover {
  box-shadow: 0 32px 76px rgba(4, 16, 31, 0.23);
}

.contact-card {
  padding: clamp(2.5rem, 6vw, 5.3rem);
}

.contact-card h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
}

.contact-intro {
  color: rgba(255, 255, 255, 0.66);
}

.contact-details {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1.2fr 0.8fr;
  margin-block: 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-details span {
  display: block;
  margin-bottom: 0.45rem;
  color: #ff8b9a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details address {
  font-style: normal;
}

.contact-details a {
  font-weight: 750;
  text-decoration-color: rgba(255, 255, 255, 0);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.contact-details a:hover {
  color: #ff9baa;
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.phone-emphasis {
  display: inline-block;
  border-radius: 4px;
  transform-origin: center;
}

.phone-emphasis.is-emphasized {
  animation: phone-number-emphasis 760ms var(--ease-out);
}

@keyframes phone-number-emphasis {
  0% {
    opacity: 0.65;
    box-shadow: 0 0 0 0 rgba(237, 41, 68, 0);
    transform: translateY(12px) scale(0.92);
  }

  36% {
    opacity: 1;
    box-shadow: 0 0 0 7px rgba(237, 41, 68, 0.18);
    transform: translateY(-8px) scale(1.12);
  }

  58% {
    box-shadow: 0 0 0 4px rgba(237, 41, 68, 0.12);
    transform: translateY(3px) scale(1.04);
  }

  78% {
    transform: translateY(-3px) scale(1.07);
  }

  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(237, 41, 68, 0);
    transform: none;
  }
}

.map-wrap {
  min-height: 590px;
  background: var(--gray-300);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 590px;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

.site-footer {
  padding-top: 4rem;
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-950);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
}

.brand-footer {
  color: var(--white);
}

.footer-address {
  margin: 1.5rem 0 0.45rem;
}

.footer-phone {
  color: var(--white);
  font-weight: 750;
  transition: color var(--transition);
}

.footer-phone:hover {
  color: #ff8b9a;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 0.8rem 2.4rem;
  grid-template-columns: repeat(2, minmax(80px, 1fr));
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.72rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    height: calc(100vh - 80px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 20px;
    opacity: 0;
    background: rgba(4, 16, 31, 0.99);
    transform: translateY(-14px);
    transition: visibility var(--transition), opacity var(--transition), transform var(--transition);
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav > a:not(.button) {
    padding: 1rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .primary-nav > a:not(.button)::after {
    right: auto;
    bottom: 8px;
    width: 42px;
  }

  .primary-nav > .button {
    margin-top: 1.5rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .benefits-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 4rem;
    padding-top: 150px;
    padding-bottom: 80px;
  }

  .hero-content {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .about-copy {
    max-width: 760px;
    padding-top: 0;
  }

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

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

  .program-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .contact-grid {
    overflow: hidden;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 440px;
  }
}

@media (max-width: 680px) {
  .reveal-ready.reveal-left,
  .reveal-ready.reveal-right {
    transform: translate3d(0, 14px, 0);
  }

  .reveal-ready.is-visible {
    transform: none;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 4.5rem;
  }

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

  .primary-nav {
    top: 72px;
    height: calc(100vh - 72px);
    padding-inline: 14px;
  }

  .brand-logo {
    max-width: 78px;
    max-height: 46px;
  }

  .brand-logo-footer {
    max-width: 96px;
    max-height: 56px;
  }

  .brand-copy strong {
    font-size: 0.84rem;
  }

  .brand-copy span {
    font-size: 0.58rem;
  }

  .hero-grid {
    padding-top: 126px;
  }

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

  .hero h1 span {
    -webkit-text-stroke-width: 1px;
  }

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

  .hero-proof {
    gap: 1.5rem;
  }

  .hero-proof div {
    flex: 1;
  }

  .hero-visual {
    min-height: 390px;
    border-radius: 92px 14px 92px 14px;
  }

  .photo-placeholder {
    border-radius: 82px 8px 82px 8px;
  }

  .belt-stripe {
    right: -12px;
    left: -12px;
  }

  .intro-strip-inner {
    flex-direction: column;
    gap: 0.5rem;
  }

  .intro-strip span {
    display: none;
  }

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

  .program-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

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

  .reviews-header,
  .reviews-footer,
  .footer-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .rating-summary {
    width: 100%;
  }

  .reviews-footer .button {
    width: 100%;
  }

  .contact {
    background: var(--gray-100);
  }

  .contact-grid {
    width: 100%;
    border-radius: 0;
  }

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

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* Dark martial arts theme */

h1,
h2,
h3 {
  color: var(--white);
}

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

.button-outline-light {
  border-color: rgba(237, 41, 68, 0.72);
}

.button-outline-light:hover {
  background: rgba(210, 31, 56, 0.14);
  border-color: #ff6479;
}

.site-header {
  background: rgba(5, 6, 7, 0.82);
  border-bottom-color: rgba(237, 41, 68, 0.18);
}

.site-header.is-scrolled {
  background: rgba(5, 6, 7, 0.97);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.36);
}

.primary-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.76);
}

.hero {
  background:
    radial-gradient(circle at 12% 12%, rgba(23, 101, 189, 0.2), transparent 32%),
    radial-gradient(circle at 88% 72%, rgba(182, 23, 43, 0.16), transparent 34%),
    linear-gradient(125deg, var(--black) 0%, #0a0e13 62%, #171014 100%);
}

.hero-accent {
  opacity: 0.15;
}

.photo-placeholder {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(182, 23, 43, 0.15)),
    var(--charcoal-900);
}

.intro-strip {
  background: var(--red-700);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.about {
  background: var(--charcoal-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.lead-copy {
  color: var(--white);
}

.text-link,
.program-card > a {
  color: #ff6479;
}

.text-link:hover,
.program-card > a:hover {
  color: #ff8b9a;
}

.programs {
  background: var(--black);
  border-bottom: 1px solid rgba(237, 41, 68, 0.12);
}

.program-card {
  background: var(--charcoal-900);
  border-color: var(--charcoal-800);
}

.program-card:hover {
  border-color: rgba(237, 41, 68, 0.46);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.program-card:focus-within {
  border-color: rgba(237, 41, 68, 0.66);
}

.program-number {
  color: rgba(255, 255, 255, 0.055);
}

.benefits {
  background: var(--charcoal-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.benefit-list {
  border-top-color: rgba(237, 41, 68, 0.28);
}

.benefit-list article {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.benefit-list article:hover {
  background: rgba(210, 31, 56, 0.08);
  border-color: rgba(237, 41, 68, 0.38);
}

.reviews {
  background: var(--charcoal-950);
}

.rating-summary {
  background: var(--charcoal-850);
  border-color: var(--charcoal-800);
}

.rating-value,
.review-card blockquote {
  color: var(--white);
}

.review-card {
  background: var(--charcoal-900);
  border-color: var(--charcoal-800);
}

.review-card:hover {
  background: var(--charcoal-850);
  border-color: rgba(237, 41, 68, 0.4);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
}

.contact {
  padding-top: clamp(4rem, 7vw, 6rem);
  background: linear-gradient(
    to bottom,
    var(--charcoal-950) 0%,
    var(--charcoal-950) 18%,
    var(--black) 18%,
    var(--black) 100%
  );
}

.contact-grid {
  background: #0b0e12;
  border: 1px solid rgba(237, 41, 68, 0.24);
}

.contact-details {
  border-top-color: rgba(237, 41, 68, 0.24);
  border-bottom-color: rgba(237, 41, 68, 0.24);
}

.map-wrap {
  background: var(--charcoal-800);
}

.map-wrap iframe {
  filter: saturate(0.72) contrast(1.08) brightness(0.86);
}

.site-footer {
  background: #030405;
  border-top: 1px solid rgba(237, 41, 68, 0.2);
}

@media (max-width: 980px) {
  .primary-nav {
    background: rgba(5, 6, 7, 0.99);
  }
}

@media (max-width: 680px) {
  .contact {
    background: var(--black);
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-emphasis.is-emphasized {
    color: #ff8b9a;
    animation: none;
    box-shadow: 0 0 0 4px rgba(237, 41, 68, 0.2);
  }
}

/* Softer geometry */

.button,
.nav-toggle {
  border-radius: 14px;
}

.primary-nav > a:not(.button)::after {
  border-radius: 999px;
}

.hero-visual {
  border-radius: 160px 28px 160px 28px;
}

.photo-placeholder {
  border-radius: 146px 20px 146px 20px;
}

.program-card {
  border-radius: 24px;
}

.rating-summary,
.review-card {
  border-radius: 24px;
}

.contact-grid {
  border-radius: 38px;
}

.phone-emphasis {
  border-radius: 7px;
}

@media (max-width: 680px) {
  .hero-visual {
    border-radius: 108px 22px 108px 22px;
  }

  .photo-placeholder {
    border-radius: 96px 16px 96px 16px;
  }

  .contact-grid {
    border-radius: 0;
  }
}

.review-card {
  display: flex;
  flex-direction: column;
}

.review-author {
  margin-top: auto;
}

.hero-lead {
  margin-bottom: 1.25rem;
}

.hero-about {
  max-width: 610px;
  margin-bottom: 2rem;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.76);
  border-left: 2px solid rgba(237, 41, 68, 0.72);
  font-size: 0.98rem;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content > .hero-about {
    animation: hero-content-enter 620ms 200ms var(--ease-out) both;
  }
}

.hero-photo {
  position: absolute;
  top: 16px;
  left: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: cover;
  object-position: center;
  border-radius: 146px 20px 146px 20px;
}

@media (max-width: 680px) {
  .hero-photo {
    border-radius: 96px 16px 96px 16px;
  }
}

/* Persistent school interior background */

body {
  position: relative;
  isolation: isolate;
  background: var(--black);
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  content: "";
  pointer-events: none;
}

body::before {
  background-image: url("../images/school-inside.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body::after {
  z-index: -1;
  background: rgba(3, 4, 5, 0.35);
}

.hero {
  background:
    radial-gradient(circle at 12% 12%, rgba(23, 101, 189, 0.18), transparent 32%),
    radial-gradient(circle at 88% 72%, rgba(182, 23, 43, 0.18), transparent 34%),
    linear-gradient(125deg, rgba(5, 6, 7, 0.88), rgba(10, 14, 19, 0.76) 62%, rgba(23, 16, 20, 0.82));
}

.intro-strip {
  background: rgba(182, 23, 43, 0.92);
}

.about {
  background: rgba(9, 11, 14, 0.9);
}

.reviews {
  background: rgba(9, 11, 14, 0.88);
}

.programs {
  background: rgba(5, 6, 7, 0.9);
}

.benefits {
  background: rgba(16, 19, 24, 0.92);
}

.contact {
  background: linear-gradient(
    to bottom,
    rgba(9, 11, 14, 0.88) 0%,
    rgba(9, 11, 14, 0.88) 18%,
    rgba(5, 6, 7, 0.92) 18%,
    rgba(5, 6, 7, 0.92) 100%
  );
}

.contact-grid {
  background: rgba(11, 14, 18, 0.94);
}

.program-card,
.review-card {
  background: rgba(16, 19, 24, 0.94);
}

.program-card:hover,
.review-card:hover {
  background: rgba(21, 25, 31, 0.98);
}

.rating-summary {
  background: rgba(21, 25, 31, 0.94);
}

.site-footer {
  background: rgba(3, 4, 5, 0.97);
}

@media (max-width: 680px) {
  body::before {
    background-position: center center;
  }

  body::after {
    background: rgba(3, 4, 5, 0.35);
  }

  .contact {
    background: rgba(5, 6, 7, 0.93);
  }
}

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

.contact-call-button {
  grid-column: 1 / -1;
}

@media (max-width: 680px) {
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-call-button {
    grid-column: auto;
  }
}

.contact-note {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-hours {
  grid-column: 1 / -1;
  margin-top: 0.35rem;
}

.hours-list {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hours-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.48rem 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.hours-list dt,
.hours-list dd {
  margin: 0;
  font-size: 0.85rem;
}

.hours-list dt {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.hours-list dd {
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

.hours-list .hours-closed {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 600;
}

@media (max-width: 680px) {
  .hours-list {
    grid-template-columns: 1fr;
  }
}
