@font-face {
  font-family: "WR Display";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://irp.cdn-website.com/fonts/s/jost/v20/92zatBhPNqw73oTd4g.woff2") format("woff2");
}

@font-face {
  font-family: "WR Text";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://irp.cdn-website.com/fonts/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2") format("woff2");
}

:root {
  --navy: #182850;
  --navy-2: #0e1c3b;
  --red: #e81820;
  --stripe-blue: #243765;
  --paper: #f7f5f0;
  --silver: #eef0f3;
  --white: #ffffff;
  --ink: #191b22;
  --muted: #6f737b;
  --line: rgba(25, 27, 34, 0.14);
  --radius: 22px;
  --radius-small: 16px;
  --shadow: 0 18px 50px rgba(24, 40, 80, 0.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "WR Text", "Source Sans 3", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.has-lightbox {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(232, 24, 32, 0.55);
  outline-offset: 3px;
}

.container {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section.tight {
  padding: 72px 0;
}

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

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

.section-title,
.hero h1,
.page-hero h1,
.card-title,
.footer-title {
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-title {
  position: relative;
  max-width: 780px;
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.12;
  text-transform: none;
}

.section-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 10px;
  margin-top: 18px;
  background: linear-gradient(180deg, var(--red) 0 45%, var(--stripe-blue) 45% 100%);
  transform: skewX(-18deg);
  transform-origin: left center;
}

.navy-section .section-title::after,
.cta-section .section-title::after {
  background: linear-gradient(180deg, var(--red) 0 45%, rgba(255, 255, 255, 0.88) 45% 100%);
}

.section-copy {
  max-width: 720px;
  margin: 0 0 34px;
  color: var(--muted);
}

.navy-section .section-copy,
.navy-section .muted {
  color: rgba(255, 255, 255, 0.76);
}

.utility-bar {
  height: 36px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
}

.utility-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.utility-left,
.utility-right,
.utility-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.utility-prompt {
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(24, 40, 80, 0.12);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  z-index: 2;
  background: linear-gradient(90deg, var(--red) 0 58%, var(--stripe-blue) 58% 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 80ms linear;
}

.site-header.is-compact {
  box-shadow: 0 10px 28px rgba(24, 40, 80, 0.1);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-left: 38px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.nav-item {
  position: relative;
  padding: 29px 0;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0 55%, var(--stripe-blue) 55% 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.nav-item:hover::after,
.nav-item:focus-within::after {
  transform: scaleX(1);
}

.nav-item.is-active::after {
  background: linear-gradient(90deg, var(--stripe-blue) 0 55%, var(--red) 55% 100%);
  transform: scaleX(1);
}

.nav-item.is-active:hover::after,
.nav-item.is-active:focus-within::after {
  height: 6px;
}

.nav-item > a,
.nav-item > button {
  color: var(--navy);
  background: none;
  border: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.nav-item.is-active > a,
.nav-item.is-active > button {
  color: var(--red);
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-trigger span {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.nav-item:hover .nav-trigger span,
.nav-item:focus-within .nav-trigger span {
  transform: rotate(225deg) translateY(-1px);
}

.mega {
  position: absolute;
  left: 50%;
  top: calc(100% - 8px);
  width: min(780px, calc(100vw - 48px));
  max-height: 70vh;
  overflow: auto;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  background: var(--white);
  border: 1px solid rgba(24, 40, 80, 0.12);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow);
  padding: 18px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mega-compact {
  width: min(360px, calc(100vw - 48px));
}

.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

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

.mega-grid.cities {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mega-grid.single {
  grid-template-columns: 1fr;
}

.mega-link {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--ink);
}

.mega-link strong {
  display: block;
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.1;
}

.mega-link span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.mega-link:hover {
  background: var(--paper);
}

.mega-link.is-active {
  background: var(--paper);
  box-shadow: inset 4px 0 0 var(--red);
}

.mega-link.is-active strong {
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  margin-left: 36px;
  gap: 12px;
}

.phone-link {
  display: none;
  align-items: center;
  min-height: 48px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 850;
  font-size: 15px;
  line-height: 1.18;
  text-align: center;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-actions .btn {
  min-height: 48px;
  padding-inline: 16px;
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn.primary:hover {
  background: #c9151c;
  border-color: #c9151c;
}

.btn.secondary {
  color: var(--navy);
  border-color: rgba(24, 40, 80, 0.38);
  background: transparent;
}

.btn.secondary:hover {
  border-color: var(--navy);
  background: rgba(24, 40, 80, 0.06);
}

.btn.light {
  color: var(--navy);
  background: var(--white);
}

.mobile-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 114px);
  display: grid;
  place-items: center;
  padding: clamp(30px, 4vw, 54px) 0 clamp(46px, 5vw, 70px);
  overflow: hidden;
  background: var(--silver);
}

.hero::before {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - 1500px) / 2));
  right: max(20px, calc((100vw - 1500px) / 2));
  top: clamp(30px, 4vw, 54px);
  bottom: clamp(46px, 5vw, 70px);
  border: 1px solid rgba(24, 40, 80, 0.1);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 22px 56px rgba(24, 40, 80, 0.09);
}

.hero::after {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - 1500px) / 2));
  right: max(20px, calc((100vw - 1500px) / 2));
  top: clamp(30px, 4vw, 54px);
  z-index: 1;
  height: 10px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(90deg, var(--red) 0 32%, var(--stripe-blue) 32% 66%, rgba(24, 40, 80, 0.12) 66% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-area: 1 / 1;
  width: min(1500px, calc(100% - 56px));
  justify-self: center;
  display: flex;
  align-items: center;
  padding: clamp(54px, 5.7vw, 86px) clamp(34px, 4vw, 58px);
}

.hero-content::after {
  content: "";
  position: absolute;
  right: -96px;
  bottom: 64px;
  width: 360px;
  height: 16px;
  background: var(--red);
  box-shadow: 0 22px 0 var(--stripe-blue);
  transform: rotate(-8deg);
  opacity: 0.96;
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(595px, calc(48% - 70px));
  min-width: 0;
}

.hero-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(46px, 4.8vw, 72px);
  line-height: 1.04;
}

.hero-line {
  display: block;
}

@media (min-width: 721px) {
  .hero-line {
    white-space: normal;
  }
}

.hero-subhead {
  max-width: 620px;
  margin: 22px 0 0;
  color: #3e424c;
  font-size: 19px;
  line-height: 1.55;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 30px;
}

.proof-row span {
  border-left: 4px solid var(--red);
  padding: 8px 12px;
  background: var(--white);
  border-radius: 0 12px 12px 0;
  color: var(--navy);
  font-weight: 850;
  font-size: 14px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-line {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  position: relative;
  z-index: 2;
  width: min(1500px, calc(100% - 56px));
  justify-self: center;
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: 48fr 52fr;
  align-self: stretch;
  pointer-events: none;
  background: transparent;
}

.hero-media img,
.hero-video-frame {
  grid-column: 2;
  align-self: stretch;
  width: 100%;
  min-height: min(700px, calc(100svh - 170px));
  height: 100%;
  border-radius: 28px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--red) 0 24%, var(--stripe-blue) 24% 52%, var(--red) 52% 76%, var(--stripe-blue) 76% 100%) border-box;
  border: 8px solid transparent;
  box-shadow: 0 18px 42px rgba(24, 40, 80, 0.13);
  animation: heroScale 1700ms cubic-bezier(0.16, 1, 0.3, 1) both;
  overflow: hidden;
}

.hero-media img {
  object-fit: cover;
  border: 12px solid var(--white);
  filter: saturate(0.95) contrast(1.04);
}

.hero-video-frame {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: clamp(8px, 1vw, 14px);
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.68);
  border: 7px solid var(--white);
  border-radius: 18px;
  background: var(--white);
  filter: saturate(0.98) contrast(1.04);
}

.hero-media::after {
  content: "";
  position: absolute;
  left: calc(48% + 34px);
  right: 34px;
  bottom: 30px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(232, 24, 32, 0.9) 0 48%, rgba(36, 55, 101, 0.9) 48% 100%);
  box-shadow: 0 10px 26px rgba(24, 40, 80, 0.16);
}

.accent-slash {
  position: absolute;
  right: 42px;
  bottom: 178px;
  z-index: 2;
  width: 260px;
  height: 10px;
  background: var(--red);
  transform: rotate(-7deg);
  box-shadow: 0 14px 0 rgba(24, 40, 80, 0.88);
  display: none;
}

.trust-cards {
  position: absolute;
  z-index: 3;
  left: calc(48% + 52px);
  right: 34px;
  bottom: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(24, 40, 80, 0.9);
  box-shadow: 0 18px 42px rgba(14, 28, 59, 0.32);
  backdrop-filter: blur(8px);
}

.trust-card {
  position: relative;
  overflow: hidden;
  min-height: 68px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 16px 12px 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.12;
}

.trust-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--red) 0 58%, var(--stripe-blue) 58% 100%);
}

.problem-strip {
  position: relative;
  overflow: hidden;
  padding: 56px 0 84px;
  background: var(--white);
  color: var(--ink);
}

.problem-strip::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  background: linear-gradient(90deg, var(--red) 0 34%, var(--stripe-blue) 34% 68%, rgba(24, 40, 80, 0.1) 68% 100%);
}

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

.problem-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(24, 40, 80, 0.12);
  border-radius: var(--radius-small);
  background:
    linear-gradient(180deg, var(--white), rgba(247, 245, 240, 0.76));
  box-shadow: 0 14px 34px rgba(24, 40, 80, 0.08);
}

.problem-card::before,
.why-card::before,
.step::before,
.trainer-card::before,
.city-link::before,
.mini-card::before,
.article-card::before,
.side-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red) 0 58%, var(--stripe-blue) 58% 100%);
}

.problem-card::before {
  background: linear-gradient(90deg, var(--red) 0 58%, var(--stripe-blue) 58% 100%);
}

.problem-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.1;
}

.problem-card p {
  margin: 0 0 12px;
  color: #4f545e;
  font-size: 15px;
}

.text-link {
  color: var(--red);
  font-weight: 900;
}

.dog-divider {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(28px, 1fr) auto minmax(28px, 1fr);
  align-items: center;
  gap: clamp(18px, 4vw, 54px);
  padding: clamp(36px, 6vw, 74px) clamp(24px, 6vw, 96px);
  background:
    linear-gradient(90deg, transparent, rgba(24, 40, 80, 0.035), transparent);
}

.dog-divider span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0 42%, var(--stripe-blue) 42% 100%);
  opacity: 0.96;
}

.dog-divider img {
  width: clamp(86px, 13vw, 148px);
  max-width: 32vw;
  height: auto;
  filter: drop-shadow(0 16px 22px rgba(24, 40, 80, 0.14));
}

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

.service-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: 0 10px 26px rgba(24, 40, 80, 0.12);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.service-card.service-trick-training img {
  object-position: center 22%;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14, 28, 59, 0.1), rgba(14, 28, 59, 0.86));
}

.service-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--red) 0 58%, var(--stripe-blue) 58% 100%);
}

.service-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: var(--white);
}

.service-card h3 {
  margin: 0 0 10px;
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-size: 26px;
  line-height: 1;
}

.service-card p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.45;
}

.service-card .text-link::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 8px;
  background: var(--red);
  transition: width 200ms ease;
}

.service-card:hover .text-link::after {
  width: 78px;
}

.difference-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: start;
}

.sticky-block {
  position: sticky;
  top: 128px;
}

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

.why-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-small);
  background: var(--white);
  border: 1px solid rgba(24, 40, 80, 0.12);
}

.why-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--red);
  color: var(--white);
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-size: 23px;
  font-weight: 900;
}

.why-card h3 {
  margin: 0 0 6px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(24, 40, 80, 0.16);
  color: var(--navy);
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.1;
}

.why-card p {
  margin: 0;
  color: #4f545e;
  font-size: 16px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: var(--red);
}

.step {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 78px 24px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(24, 40, 80, 0.12);
}

.step-number {
  position: absolute;
  top: 0;
  left: 24px;
  transform: translateY(-2px);
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  border: 5px solid var(--paper);
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.step h3,
.trainer-card h3,
.mini-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.05;
}

.step p,
.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.trainer-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(24, 40, 80, 0.12);
  box-shadow: 0 18px 42px rgba(24, 40, 80, 0.08);
}

.trainer-card img {
  width: 100%;
  height: clamp(300px, 30vw, 390px);
  object-fit: cover;
  border-radius: 18px;
}

.trainer-card:first-child img {
  object-position: center top;
}

.trainer-card > div {
  padding: 22px 4px 4px;
}

.trainer-card:nth-child(3) {
  grid-column: 1 / -1;
  grid-template-columns: minmax(300px, 0.44fr) minmax(0, 0.56fr);
  gap: 30px;
  align-items: center;
}

.trainer-card:nth-child(3) img {
  height: 360px;
}

.trainer-card:nth-child(3) > div {
  padding: 8px 14px 8px 0;
}

.service-detail-stack {
  display: grid;
  gap: 28px;
}

.training-video-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(24, 40, 80, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(24, 40, 80, 0.08);
}

.training-video-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  background: linear-gradient(90deg, var(--stripe-blue) 0 48%, var(--red) 48% 76%, rgba(24, 40, 80, 0.12) 76% 100%);
}

.training-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.training-video-grid.is-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.training-video-card {
  display: grid;
  gap: 12px;
}

.training-video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-small);
  background: #111827;
  box-shadow: 0 14px 30px rgba(24, 40, 80, 0.12);
}

.training-video-card p {
  margin: 0;
  color: var(--navy);
  font-weight: 850;
  line-height: 1.35;
}

.service-feature-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(24, 40, 80, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 240, 243, 0.88));
  box-shadow: 0 18px 42px rgba(24, 40, 80, 0.08);
}

.service-feature-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  background: linear-gradient(90deg, var(--red) 0 42%, var(--stripe-blue) 42% 74%, rgba(24, 40, 80, 0.12) 74% 100%);
}

.feature-panel-header {
  max-width: 780px;
  margin-bottom: 22px;
}

.feature-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-panel-header h2 {
  margin-top: 0;
}

.feature-panel-header p:last-child {
  margin-bottom: 0;
}

.service-feature-faq {
  gap: 10px;
}

.service-feature-faq .accordion-item {
  border-color: rgba(24, 40, 80, 0.12);
  box-shadow: 0 10px 24px rgba(24, 40, 80, 0.06);
}

.service-feature-faq .accordion-trigger {
  padding: 18px 20px;
}

.service-feature-faq .accordion-trigger span {
  font-size: 21px;
}

.service-feature-faq .accordion-panel-inner {
  padding: 0 20px 20px;
}

.service-feature-faq .accordion-panel-inner p {
  margin: 0;
  color: #4f545e;
}

.support-classes-section {
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
}

.support-classes-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1.05fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-small);
  border: 1px solid rgba(24, 40, 80, 0.12);
  background:
    linear-gradient(180deg, var(--white), rgba(247, 245, 240, 0.72));
  box-shadow: 0 18px 42px rgba(24, 40, 80, 0.08);
}

.support-classes-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: linear-gradient(90deg, var(--red) 0 58%, var(--stripe-blue) 58% 100%);
}

.support-classes-copy {
  position: relative;
}

.support-classes-copy h2 {
  max-width: 560px;
  margin: 0 0 16px;
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  color: var(--navy);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.06;
}

.support-classes-copy p:last-child {
  max-width: 620px;
  margin: 0;
  color: #4f545e;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.5;
}

.support-classes-section .feature-kicker {
  color: var(--red);
}

.support-classes-details {
  position: relative;
  display: grid;
  gap: 12px;
}

.support-classes-details span {
  display: block;
  padding: 15px 18px;
  border-left: 5px solid var(--red);
  border-radius: 0 12px 12px 0;
  background: var(--white);
  border-top: 1px solid rgba(24, 40, 80, 0.08);
  border-right: 1px solid rgba(24, 40, 80, 0.08);
  border-bottom: 1px solid rgba(24, 40, 80, 0.08);
  color: var(--navy);
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 0 10px 24px rgba(24, 40, 80, 0.06);
}

.trainer-role {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 900;
  font-size: 14px;
}

.trainer-card p {
  margin: 0 0 16px;
  color: #4f545e;
  font-size: 16px;
  line-height: 1.55;
}

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

.city-link {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 13px 15px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(24, 40, 80, 0.12);
  color: var(--navy);
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease;
}

.city-link:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 24, 32, 0.42);
}

.city-link.featured {
  border-color: rgba(232, 24, 32, 0.44);
  box-shadow: inset 4px 0 0 var(--red);
}

.js .city-grid.is-collapsed .city-link.is-extra {
  display: none;
}

.city-more-button {
  width: 100%;
  margin-top: 14px;
}

.accordion-list {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid rgba(24, 40, 80, 0.13);
  border-radius: var(--radius-small);
  background: var(--white);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  background: none;
  border: 0;
  color: var(--navy);
  text-align: left;
  font-weight: 900;
}

.accordion-trigger span {
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-size: 23px;
  line-height: 1.12;
}

.accordion-trigger::after {
  content: "+";
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.accordion-item.is-open .accordion-trigger::after {
  content: "-";
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.accordion-panel-inner {
  padding: 0 22px 22px;
  color: #4f545e;
  font-size: 16px;
}

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

.reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

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

.review-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(24, 40, 80, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, var(--white), rgba(247, 245, 240, 0.72));
  box-shadow: 0 16px 36px rgba(24, 40, 80, 0.08);
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--red) 0 58%, var(--stripe-blue) 58% 100%);
}

.review-stars {
  margin: 8px 0 16px;
  color: var(--red);
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-size: 27px;
  line-height: 1.06;
}

.review-card p {
  margin: 0;
  color: #424752;
  font-size: 16px;
  line-height: 1.55;
}

.review-card footer {
  margin-top: auto;
  padding-top: 18px;
  color: var(--navy);
  font-weight: 900;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--white) 30%, var(--navy) 30%, var(--navy) 100%);
  color: var(--ink);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 42px;
  right: -80px;
  width: 430px;
  height: 18px;
  background: var(--red);
  transform: rotate(-9deg);
  box-shadow: 0 20px 0 var(--stripe-blue);
  display: none;
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
  padding: 10px;
  border: 1px solid rgba(24, 40, 80, 0.12);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 24px 62px rgba(14, 28, 59, 0.18);
}

.cta-grid::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(90deg, var(--red) 0 44%, var(--stripe-blue) 44% 78%, rgba(24, 40, 80, 0.12) 78% 100%);
}

.cta-copy-card,
.cta-form-card {
  position: relative;
  z-index: 1;
}

.cta-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 22px;
  background:
    linear-gradient(180deg, var(--white), rgba(247, 245, 240, 0.72));
}

.cta-section .section-title {
  color: var(--navy);
}

.cta-section .section-title::after {
  background: linear-gradient(180deg, var(--red) 0 45%, var(--stripe-blue) 45% 100%);
}

.cta-section .section-copy {
  color: #424752;
}

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

.contact-action {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 116px;
  align-content: start;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(24, 40, 80, 0.14);
  border-radius: 18px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(24, 40, 80, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-action::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0 52%, var(--stripe-blue) 52% 100%);
}

.primary-contact {
  grid-column: 1 / -1;
  min-height: 132px;
  padding: 22px;
  border-color: transparent;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(232, 24, 32, 0.2);
}

.primary-contact::before {
  left: 0;
  right: auto;
  width: 6px;
  height: auto;
  background: rgba(255, 255, 255, 0.74);
}

.primary-contact::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(10px, 2vw, 18px);
  background: var(--stripe-blue);
  z-index: 0;
}

.contact-action:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 24, 32, 0.38);
  box-shadow: 0 18px 36px rgba(24, 40, 80, 0.14);
}

.contact-action span {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-action.primary-contact span,
.contact-action.primary-contact strong,
.contact-action.primary-contact em {
  color: var(--white);
}

.contact-action strong {
  position: relative;
  z-index: 1;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
}

.contact-action em {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.35;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(24, 40, 80, 0.1);
}

.contact-detail {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 5px;
  min-height: 82px;
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(24, 40, 80, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(247, 245, 240, 0.86), var(--white));
}

.contact-detail::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--red) 0 50%, var(--stripe-blue) 50% 100%);
}

.contact-detail span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
}

.hours-detail strong {
  display: grid;
  gap: 7px;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(24, 40, 80, 0.05);
}

.hours-row span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.hours-row em {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(24, 40, 80, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.field {
  display: grid;
  gap: 7px;
}

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

.field span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(24, 40, 80, 0.16);
  background: rgba(247, 245, 240, 0.72);
  color: var(--ink);
  padding: 11px 13px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(232, 24, 32, 0.48);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 24, 32, 0.08);
  outline: 0;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 78px 0 96px;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--white) 20%, var(--navy-2) 20%, var(--navy-2) 100%);
  color: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--red) 0 34%, var(--stripe-blue) 34% 68%, rgba(24, 40, 80, 0.12) 68% 100%);
}

.footer-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 40, 80, 0.14);
  border-radius: 30px;
  background: var(--navy-2);
  box-shadow: 0 24px 62px rgba(14, 28, 59, 0.2);
}

.footer-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 10px;
  background: linear-gradient(90deg, var(--red) 0 42%, var(--stripe-blue) 42% 78%, rgba(255, 255, 255, 0.18) 78% 100%);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  padding: 18px;
  background: var(--white);
  color: var(--ink);
}

.footer-brand-panel,
.footer-contact-panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.footer-brand-panel {
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(180deg, var(--white), rgba(247, 245, 240, 0.82));
  border: 1px solid rgba(24, 40, 80, 0.12);
}

.footer-brand-panel p {
  max-width: 560px;
  margin: 20px 0 24px;
  color: #424752;
  font-size: 16px;
  line-height: 1.55;
}

.footer-logo {
  width: 240px;
  padding: 10px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(24, 40, 80, 0.1);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icon-link {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(24, 40, 80, 0.16);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 24, 32, 0.42);
  background: var(--red);
  color: var(--white);
}

.social-icon-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(28px, 4vw, 46px);
  border: 0;
  background:
    linear-gradient(135deg, var(--navy-2) 0%, #162d60 52%, #233e78 100%);
  color: var(--white);
}

.footer-contact-panel::after {
  content: "";
  position: absolute;
  left: clamp(28px, 4vw, 46px);
  right: clamp(28px, 4vw, 46px);
  top: 0;
  height: 8px;
  width: auto;
  background: var(--red);
  box-shadow: 160px 0 0 var(--stripe-blue), 320px 0 0 rgba(255, 255, 255, 0.2);
  opacity: 0.95;
}

.footer-eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-heading {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

.footer-contact-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin: 26px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-action {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  transition: color 180ms ease, padding-left 180ms ease;
}

.footer-action.primary {
  display: grid;
  justify-content: stretch;
  gap: 6px;
  min-height: 82px;
  margin: 18px 0;
  padding: 18px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: inset 0 5px 0 var(--red);
}

.footer-action.primary::after {
  display: none;
}

.footer-action:hover {
  padding-left: 8px;
  color: #ffffff;
}

.footer-action.primary:hover {
  padding-left: 20px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
}

.footer-action span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-action strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
  text-align: right;
}

.footer-action.primary strong {
  color: var(--white);
  font-size: clamp(24px, 3vw, 32px);
  text-align: left;
}

.footer-action.primary em {
  max-width: none;
  text-align: left;
}

.footer-action em {
  position: relative;
  z-index: 1;
  max-width: 190px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-style: normal;
  text-align: right;
}

.footer-meta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.footer-meta {
  margin: 0;
  padding: 0;
}

.hours-meta {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 16px 16px 16px 22px;
  border: 1px solid rgba(24, 40, 80, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(247, 245, 240, 0.86), var(--white));
}

.hours-meta::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--red) 0 50%, var(--stripe-blue) 50% 100%);
}

.footer-meta span {
  display: block;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-meta strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.35;
}

.footer-meta.hours-meta > span {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--red);
}

.hours-meta strong {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  max-width: none;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-meta .footer-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(24, 40, 80, 0.05);
  color: var(--navy);
}

.footer-meta .footer-hours-row span {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.footer-meta .footer-hours-row em {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.footer-link-band {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.15fr 1fr;
  gap: 28px;
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(180deg, var(--navy-2), #0a1732);
}

.footer-title {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 20px;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

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

.copyright {
  margin-top: 36px;
  padding: 20px clamp(28px, 4vw, 42px) 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 5vw, 72px) 0 clamp(58px, 6vw, 86px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.64) 100%),
    var(--paper);
}

.page-hero .container {
  width: min(1480px, calc(100% - 96px));
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 88px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white));
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.76fr) minmax(600px, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  min-height: 0;
  padding: clamp(34px, 4.4vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(24, 40, 80, 0.11);
  border-radius: 30px;
  background:
    linear-gradient(90deg, var(--white) 0%, var(--white) 57%, rgba(247, 245, 240, 0.82) 57%, rgba(247, 245, 240, 0.82) 100%);
  box-shadow: 0 22px 54px rgba(24, 40, 80, 0.08);
}

.page-hero-grid::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background:
    linear-gradient(90deg, var(--red) 0 34%, var(--stripe-blue) 34% 68%, rgba(24, 40, 80, 0.1) 68% 100%);
}

.page-hero-grid::after {
  content: "";
  position: absolute;
  inset: 10px 0 0 57%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(232, 24, 32, 0.045) 0 12px,
      transparent 12px 42px,
      rgba(36, 55, 101, 0.05) 42px 54px,
      transparent 54px 84px
    );
  pointer-events: none;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 4px;
}

.page-hero-media {
  position: relative;
  z-index: 1;
}

.page-hero-media::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 26px;
  bottom: 26px;
  width: 12px;
  z-index: 2;
  border-radius: 999px;
  background:
    linear-gradient(180deg, var(--red) 0 46%, var(--stripe-blue) 46% 100%);
  box-shadow: 0 12px 24px rgba(24, 40, 80, 0.12);
}

.page-hero-media::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -10px;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(232, 24, 32, 0.88) 0 46%, rgba(36, 55, 101, 0.88) 46% 100%);
  box-shadow: 0 8px 20px rgba(24, 40, 80, 0.12);
}

.page-hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(40px, 6vw, 64px);
}

.page-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #424752;
  font-size: 18px;
}

.page-hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: clamp(420px, 29vw, 510px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(24, 40, 80, 0.12);
}

.page-service-agreement .page-hero-media img {
  min-height: clamp(300px, 25vw, 390px);
  padding: clamp(28px, 4vw, 52px);
  object-fit: contain;
  background: var(--white);
}

.page-trick-training .page-hero-media img {
  object-position: center 18%;
}

.trainer-collage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(12px, 1.4vw, 18px);
  width: 100%;
  min-height: clamp(420px, 29vw, 510px);
  aspect-ratio: 4 / 3;
}

.trainer-collage-item {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 0;
  border: 10px solid var(--white);
  border-radius: 24px;
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(24, 40, 80, 0.13);
}

.trainer-collage-item.primary {
  grid-row: 1 / -1;
}

.trainer-collage-item img,
.page-hero-media .trainer-collage-item img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 280ms ease;
}

.trainer-collage-item:hover img {
  transform: scale(1.035);
}

.trainer-collage-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(24, 40, 80, 0.16);
}

.trainer-collage-item strong {
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.trainer-collage-item small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
}

.prose {
  max-width: 840px;
  color: #383d47;
}

.prose h2,
.prose h3 {
  color: var(--navy);
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  line-height: 1.12;
}

.prose h2 {
  margin: 34px 0 10px;
  font-size: 36px;
}

.prose h3 {
  margin: 26px 0 8px;
  font-size: 27px;
}

.prose p {
  margin: 0 0 18px;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 30px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(24, 40, 80, 0.14);
  border-bottom: 1px solid rgba(24, 40, 80, 0.14);
}

.article-byline img {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 4px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(24, 40, 80, 0.12);
}

.byline-label,
.byline-name,
.byline-meta {
  margin: 0;
}

.byline-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.byline-name {
  color: var(--navy);
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-size: 25px;
  font-weight: 850;
  line-height: 1.1;
}

.byline-meta {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.side-panel,
.mini-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-small);
  background: var(--white);
  border: 1px solid rgba(24, 40, 80, 0.12);
}

.side-panel {
  position: sticky;
  top: 124px;
}

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

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

.article-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(24, 40, 80, 0.12);
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-card-meta img {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 999px;
}

.article-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-size: 27px;
  line-height: 1.08;
}

.article-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
}

.article-card .text-link {
  margin-top: auto;
}

.affiliate-section {
  overflow: hidden;
}

.jotform-shell {
  overflow: hidden;
  min-height: 640px;
  padding: 18px;
  border: 1px solid rgba(24, 40, 80, 0.12);
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.affiliate-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.affiliate-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.affiliate-categories span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

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

.affiliate-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(24, 40, 80, 0.12);
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(24, 40, 80, 0.08);
}

.affiliate-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 8px;
  background: linear-gradient(90deg, var(--red) 0 58%, var(--stripe-blue) 58% 100%);
}

.affiliate-image {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(247, 245, 240, 0.76), var(--white));
}

.affiliate-image img {
  width: 100%;
  height: 176px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.affiliate-card:hover .affiliate-image img {
  transform: scale(1.035);
}

.affiliate-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.affiliate-category {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.affiliate-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "WR Display", "Arial Narrow", Arial, sans-serif;
  font-size: 23px;
  line-height: 1.08;
}

.affiliate-button {
  width: 100%;
  margin-top: auto;
}

.gallery-grid {
  grid-auto-flow: dense;
}

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-small);
  background: var(--navy);
}

.gallery-item:nth-child(5n + 1) {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 32px;
  background: rgba(14, 28, 59, 0.92);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 0;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 860ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 860ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 24px), 0) rotate(var(--reveal-rotate, 0deg)) scale(var(--reveal-scale, 0.985));
  filter: blur(4px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  filter: blur(0);
}

.reveal--headline {
  --reveal-y: 32px;
  --reveal-scale: 0.99;
}

.reveal--lift {
  --reveal-y: 30px;
}

.reveal--from-left {
  --reveal-x: -28px;
  --reveal-y: 18px;
}

.reveal--from-right {
  --reveal-x: 28px;
  --reveal-y: 18px;
}

.reveal--soft-zoom {
  --reveal-y: 20px;
  --reveal-scale: 0.955;
}

.reveal--tilt {
  --reveal-y: 26px;
  --reveal-rotate: -1.4deg;
  --reveal-scale: 0.975;
}

.service-card.reveal.is-visible,
.trainer-card.reveal.is-visible,
.article-card.reveal.is-visible,
.gallery-item.reveal.is-visible,
.why-card.reveal.is-visible,
.step.reveal.is-visible {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.service-card.reveal.is-visible:hover,
.gallery-item.reveal.is-visible:hover {
  transform: translateY(-4px) scale(1);
}

@keyframes heroScale {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition-delay: 0ms;
  }
}

@media (max-width: 1180px) {
  .container {
    width: min(var(--max), calc(100% - 80px));
  }

  .nav {
    gap: 14px;
    margin-left: 26px;
    font-size: 13px;
  }

  .brand img {
    width: 176px;
  }

  .nav-actions {
    margin-left: 24px;
  }

  .nav-actions .btn {
    min-height: 46px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .nav-actions .phone-link {
    display: none;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 72px 0;
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .mobile-toggle {
    position: relative;
    overflow: hidden;
    display: inline-grid;
    width: 48px;
    min-width: 48px;
    height: 48px;
    place-items: center;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--navy);
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(24, 40, 80, 0.12);
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  }

  .mobile-toggle::before {
    content: none;
  }

  .mobile-toggle:hover {
    transform: translateY(-1px);
    border-color: var(--navy);
    background: #223b70;
    box-shadow: 0 14px 30px rgba(24, 40, 80, 0.15);
  }

  .mobile-toggle:focus-visible {
    outline: 3px solid rgba(232, 24, 32, 0.34);
    outline-offset: 3px;
  }

  .mobile-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .mobile-toggle-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
  }

  .mobile-toggle-icon span {
    grid-area: 1 / 1;
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transform-origin: center;
    transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
  }

  .mobile-toggle-icon span:nth-child(1) {
    transform: translateY(-5px);
  }

  .mobile-toggle-icon span:nth-child(2) {
    width: 12px;
  }

  .mobile-toggle-icon span:nth-child(3) {
    transform: translateY(5px);
  }

  .mobile-toggle[aria-expanded="true"] {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
    box-shadow: none;
  }

  .mobile-toggle[aria-expanded="true"]:hover {
    box-shadow: none;
  }

  .mobile-toggle[aria-expanded="true"]::before {
    content: none;
  }

  .mobile-toggle[aria-expanded="true"] .mobile-toggle-icon {
    background: transparent;
  }

  .mobile-toggle[aria-expanded="true"] .mobile-toggle-icon span {
    width: 17px;
  }

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

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

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

  .mobile-nav {
    display: none;
    border-top: 1px solid rgba(24, 40, 80, 0.12);
    background:
      linear-gradient(180deg, var(--white) 0%, rgba(247, 245, 240, 0.96) 100%);
    box-shadow: 0 18px 34px rgba(24, 40, 80, 0.12);
  }

  .mobile-nav.is-open {
    display: block;
  }

  .mobile-nav-inner {
    display: grid;
    gap: 10px;
    padding: 18px 40px 30px;
    border-bottom: 1px solid rgba(24, 40, 80, 0.1);
  }

  .mobile-action-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 4px;
  }

  .mobile-action-row .btn {
    min-height: 48px;
    padding-inline: 12px;
  }

  .mobile-direct {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(24, 40, 80, 0.1);
    border-radius: 14px;
    background: var(--white);
  }

  .mobile-nav a,
  .mobile-nav summary {
    color: var(--navy);
    font-weight: 900;
  }

  .mobile-nav details {
    overflow: hidden;
    border: 1px solid rgba(24, 40, 80, 0.1);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(24, 40, 80, 0.05);
  }

  .mobile-nav summary {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-nav summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 180ms ease;
  }

  .mobile-nav details[open] summary::after {
    transform: rotate(225deg) translateY(-1px);
  }

  .mobile-subgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 14px 14px;
    font-size: 14px;
    background:
      linear-gradient(180deg, rgba(247, 245, 240, 0.72), var(--white));
    border-top: 1px solid rgba(24, 40, 80, 0.08);
  }

  .mobile-subgrid a {
    display: flex;
    min-height: 40px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 10px;
    background: var(--paper);
    font-weight: 800;
    line-height: 1.2;
  }

  .mobile-area-groups {
    grid-template-columns: 1fr;
  }

  .mobile-nav .mobile-nested {
    border-color: rgba(24, 40, 80, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
  }

  .mobile-nav .mobile-nested summary {
    min-height: 42px;
    padding: 0 12px;
    background: var(--paper);
  }

  .mobile-nav .mobile-nested summary.is-active {
    background: var(--navy);
    color: var(--white);
  }

  .mobile-nav .mobile-nested summary.is-active::after {
    border-color: var(--white);
  }

  .mobile-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px;
    background: var(--white);
  }

  .mobile-direct.is-active,
  .mobile-nav summary.is-active,
  .mobile-subgrid a.is-active {
    background: var(--navy);
    color: var(--white);
  }

  .mobile-nav summary.is-active::after {
    border-color: var(--white);
  }

  .mobile-subgrid a.is-active {
    box-shadow: inset 4px 0 0 var(--red);
  }

  .hero {
    min-height: auto;
    padding: 34px 0 58px;
    display: block;
    background: var(--silver);
  }

  .hero::before,
  .hero::after {
    left: 40px;
    right: 40px;
  }

  .hero-content {
    width: calc(100% - 80px);
    margin: 0 auto;
    padding: 42px 34px 30px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    max-width: 620px;
  }

  .hero-media {
    width: calc(100% - 80px);
    display: block;
    margin: 0 auto;
    pointer-events: auto;
  }

  .hero-media img,
  .hero-video-frame {
    min-height: 390px;
    aspect-ratio: 16 / 9;
  }

  .hero-media::after {
    top: -18px;
    left: 34px;
    right: auto;
    bottom: auto;
    width: 48%;
    height: 10px;
    background: linear-gradient(90deg, var(--red) 0 48%, var(--stripe-blue) 48% 100%);
  }

  .trust-cards {
    left: 28px;
    right: 28px;
    bottom: 28px;
  }

  .trust-card {
    font-size: 15px;
  }

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

  .problem-grid,
  .timeline,
  .mini-grid,
  .article-grid,
  .affiliate-grid,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .affiliate-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .difference-layout,
  .cta-grid,
  .content-grid,
  .page-hero-grid,
  .support-classes-card {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 48px 0 68px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%),
      var(--paper);
  }

  .page-hero::before {
    height: 72px;
  }

  .page-hero .container {
    width: min(var(--max), calc(100% - 80px));
  }

  .page-hero-grid {
    min-height: 0;
    padding: 34px;
    background:
      linear-gradient(180deg, var(--white) 0%, var(--white) 54%, rgba(247, 245, 240, 0.88) 54%, rgba(247, 245, 240, 0.88) 100%);
  }

  .page-hero-grid::after {
    inset: 54% 0 0;
  }

  .page-hero-media::before {
    left: 24px;
    top: -20px;
    bottom: auto;
    width: 46%;
    height: 10px;
    border-radius: 999px;
    background:
      linear-gradient(90deg, var(--red) 0 48%, var(--stripe-blue) 48% 100%);
  }

  .page-hero-media img {
    min-height: 360px;
    aspect-ratio: 16 / 9;
  }

  .trainer-collage {
    min-height: 360px;
    aspect-ratio: 16 / 9;
  }

  .page-hero-media .trainer-collage-item img {
    min-height: 0;
    aspect-ratio: auto;
  }

  .sticky-block,
  .side-panel {
    position: static;
  }

  .trainer-card,
  .trainer-card:nth-child(3) {
    grid-template-columns: 1fr;
  }

  .trainer-card:nth-child(3) > div {
    padding: 22px 4px 4px;
  }

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

  .footer-top,
  .footer-meta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
    padding-bottom: 74px;
  }

  .container {
    width: calc(100% - 48px);
  }

  .utility-bar {
    display: none;
  }

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

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 190px;
  }

  .mobile-nav-inner {
    padding: 18px 24px 28px;
  }

  .mobile-subgrid,
  .proof-row,
  .problem-grid,
  .services-grid,
  .training-video-grid.is-pair,
  .city-grid,
  .timeline,
  .trainer-grid,
  .mini-grid,
  .article-grid,
  .gallery-grid,
  .reviews-grid,
  .footer-top,
  .footer-link-band,
  .contact-actions,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section,
  .section.tight {
    padding: 56px 0;
  }

  .support-classes-card {
    gap: 22px;
    padding: 28px 22px 24px;
  }

  .support-classes-copy h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .support-classes-copy p:last-child {
    font-size: 17px;
  }

  .support-classes-details span {
    padding: 14px 15px;
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding: 22px 0 44px;
    display: block;
    background: var(--silver);
  }

  .hero::before,
  .hero::after {
    left: 24px;
    right: 24px;
    top: 24px;
  }

  .hero::before {
    bottom: 46px;
    border-radius: 22px;
    background: var(--white);
  }

  .hero::after {
    height: 8px;
    border-radius: 22px 22px 0 0;
  }

  .hero-content {
    width: calc(100% - 48px);
    margin: 0 auto;
    padding: 30px 20px 20px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero h1 {
    font-size: 43px;
  }

  .page-hero {
    padding: 28px 0 56px;
  }

  .page-hero::before {
    height: 54px;
  }

  .page-hero .container {
    width: calc(100% - 48px);
  }

  .page-hero-grid {
    padding: 26px 20px 24px;
    border-radius: 22px;
    background: var(--white);
  }

  .page-hero-grid::after {
    inset: auto 0 24px;
    height: 34%;
  }

  .page-hero-copy {
    border-radius: 18px;
    background: var(--white);
  }

  .page-hero-copy .hero-actions,
  .hero-copy .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px !important;
    padding: 10px;
    border: 1px solid rgba(24, 40, 80, 0.1);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(24, 40, 80, 0.07);
  }

  .page-hero-grid::before {
    height: 8px;
  }

  .page-hero-media::before {
    left: 18px;
    top: -16px;
    width: 52%;
    height: 8px;
  }

  .page-hero-media::after {
    left: 16px;
    right: 16px;
    bottom: -8px;
    height: 6px;
  }

  .page-hero-media img {
    min-height: 260px;
    aspect-ratio: 4 / 3;
    border-width: 7px;
    border-radius: 18px;
  }

  .trainer-collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
    aspect-ratio: auto;
  }

  .trainer-collage-item.primary {
    grid-row: auto;
  }

  .trainer-collage-item {
    height: auto;
    min-height: 0;
    border-width: 7px;
    border-radius: 18px;
    aspect-ratio: 4 / 3;
  }

  .page-hero-media .trainer-collage-item img {
    display: block;
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .hero-subhead {
    font-size: 17px;
  }

  .proof-row {
    gap: 8px;
    margin: 22px 0 24px;
  }

  .proof-row span {
    font-size: 13px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
  }

  .hero-media {
    width: calc(100% - 48px);
    margin: 0 auto;
    display: block;
  }

  .hero-media img,
  .hero-video-frame {
    min-height: 260px;
    border-radius: 18px;
  }

  .hero-video-frame {
    border-width: 6px;
    padding: 7px;
  }

  .hero-video {
    border-width: 5px;
    border-radius: 13px;
    transform: none;
  }

  .hero-media::after {
    left: 20px;
    top: -14px;
    width: 52%;
    height: 8px;
  }

  .trust-cards {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin: 14px 7px 0;
    padding: 8px;
    border-radius: 16px;
  }

  .trust-card {
    min-height: 52px;
    font-size: 15px;
  }

  .problem-strip {
    padding: 48px 0 58px;
  }

  .problem-card {
    padding: 24px 20px;
  }

  .dog-divider {
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    padding: 34px 22px;
  }

  .dog-divider span {
    height: 6px;
  }

  .dog-divider img {
    width: clamp(64px, 19vw, 92px);
    max-width: 24vw;
  }

  .reviews-header {
    gap: 12px;
  }

  .review-card {
    min-height: 0;
    padding: 24px 20px;
  }

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

  .affiliate-image {
    min-height: 210px;
  }

  .affiliate-card h3 {
    font-size: 22px;
  }

  .cta-section {
    padding-top: 48px;
  }

  .cta-grid {
    padding: 8px;
    border-radius: 22px;
  }

  .cta-grid::before {
    height: 8px;
    border-radius: 22px 22px 0 0;
  }

  .cta-copy-card {
    padding: 26px 18px 20px;
    border-radius: 16px;
  }

  .contact-actions {
    gap: 10px;
  }

  .contact-action {
    min-height: 104px;
    padding: 16px;
  }

  .primary-contact {
    min-height: 116px;
    padding: 18px;
  }

  .contact-action strong {
    font-size: 18px;
  }

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

  .contact-detail {
    min-height: 74px;
    padding: 14px 16px;
  }

  .hours-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .contact-form {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .btn {
    width: 100%;
  }

  .trust-cards {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: auto;
    margin: -34px 24px 24px;
    background: var(--navy);
  }

  .accent-slash {
    right: 24px;
    bottom: 116px;
    width: 190px;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 30px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .step {
    padding: 24px 24px 24px 86px;
  }

  .step-number {
    left: 0;
    top: 24px;
  }

  .page-hero {
    padding: 56px 0;
    background: var(--paper);
  }

  .footer-logo {
    width: 210px;
  }

  .site-footer {
    padding: 54px 0 88px;
  }

  .footer-shell {
    border-radius: 22px;
  }

  .footer-top {
    gap: 10px;
    padding: 10px;
  }

  .footer-brand-panel,
  .footer-contact-panel {
    border-radius: 16px;
  }

  .footer-contact-actions {
    gap: 0;
  }

  .footer-heading {
    font-size: 34px;
  }

  .footer-action {
    display: grid;
    justify-content: stretch;
    gap: 6px;
  }

  .footer-action strong,
  .footer-action em {
    max-width: none;
    text-align: left;
  }

  .footer-meta-grid {
    grid-template-columns: 1fr;
  }

  .footer-link-band {
    gap: 24px;
    padding: 28px 20px;
  }

  .copyright {
    margin-top: 0;
    padding: 18px 20px 22px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-top: 1px solid rgba(24, 40, 80, 0.14);
  }

  .mobile-cta a {
    display: grid;
    min-height: 64px;
    place-items: center;
    font-weight: 900;
  }

  .mobile-cta a:first-child {
    background: var(--navy);
    color: var(--white);
  }

  .mobile-cta a:last-child {
    background: var(--red);
    color: var(--white);
  }
}
