:root {
  color-scheme: light;
  --bg: #efefea;
  --paper: #ffffff;
  --ink: #1f1f1f;
  --muted: #5b5b58;
  --line: rgba(17, 17, 17, 0.1);
  --header: #101010;
  --header-soft: rgba(16, 16, 16, 0.82);
  --blue: #0047bb;
  --gold: #b68a2d;
  --cream: #f7f3ea;
  --shadow: 0 18px 48px rgba(14, 14, 14, 0.12);
  --radius: 24px;
  --max: 1120px;
  --offer-accent: #0f63eb;
  --offer-accent-dark: #0b4fbf;
  --offer-accent-soft: rgba(15, 99, 235, 0.14);
  --offer-accent-ghost: rgba(15, 99, 235, 0.06);
  --offer-support: #b68a2d;
  --offer-support-soft: #cfb06a;
  --offer-surface-top: #f8f4eb;
  --offer-surface-bottom: #f2ede3;
  --offer-card-top: rgba(255, 255, 255, 0.98);
  --offer-card-bottom: rgba(251, 251, 251, 0.94);
  --offer-card-border: rgba(17, 17, 17, 0.08);
  --offer-card-shadow: 0 14px 34px rgba(15, 15, 15, 0.08);
  --offer-accent-border: rgba(15, 99, 235, 0.24);
  --offer-accent-shadow: rgba(15, 99, 235, 0.18);
  --offer-support-halo: rgba(182, 138, 45, 0.12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Source Sans 3", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.home-page {
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    url("site/home-page-bg.jpg") center top / 760px auto repeat fixed,
    var(--bg);
}

body.home-page .page-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

body.home-page main {
  flex: 1;
  display: flex;
}

body.home-page .hero-banner {
  flex: 1;
  width: 100%;
  min-height: calc(100vh - 160px);
  min-height: calc(100dvh - 160px);
}

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

a {
  color: inherit;
}

a,
button {
  -webkit-tap-highlight-color: rgba(0, 71, 187, 0.18);
  touch-action: manipulation;
}

.page-shell {
  min-height: 100vh;
  min-height: 100dvh;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.8rem 1rem;
  background: #ffffff;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-160%);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-soft);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner,
.section,
.footer-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: max(0.9rem, env(safe-area-inset-top)) 0 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: #fff;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-name {
  font-family: "Anton", "Arial Narrow", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.45rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.nav-toggle-bars::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.nav a {
  padding: 0.65rem 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.96rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-banner {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-color: #3a3a3a;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-home {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.72)), url("site/IMG_7517.JPG");
}

.hero-about {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.72)), url("site/about-2.jpg");
}

.hero-plans {
  background-image: linear-gradient(180deg, rgba(12, 12, 12, 0.42), rgba(12, 12, 12, 0.68)), url("site/plans-2.jpg");
}

.hero-groups {
  background-image: linear-gradient(180deg, rgba(12, 12, 12, 0.34), rgba(12, 12, 12, 0.74)), url("site/IMG_7517.JPG");
}

.hero-specialized {
  background-image: linear-gradient(180deg, rgba(8, 8, 8, 0.28), rgba(8, 8, 8, 0.76)), url("site/about-2.jpg");
}

.hero-hockey {
  background-image: linear-gradient(180deg, rgba(5, 10, 16, 0.2), rgba(5, 10, 16, 0.78)), url("site/hockey-banner.png");
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 20%, rgba(0, 71, 187, 0.35), transparent 26%),
    linear-gradient(135deg, rgba(11, 10, 10, 0.1), rgba(11, 10, 10, 0.35));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 4rem 0 3.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.hero-copy {
  max-width: 42rem;
}

.hero-location {
  display: block;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.display-title {
  margin: 0;
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(3.3rem, 8vw, 5.8rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 0.96;
}

h3 {
  font-size: 1.5rem;
  line-height: 1;
}

.accent-line {
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.48) -1px -1px 0, rgba(0, 0, 0, 0.48) -1px 1px 0, rgba(0, 0, 0, 0.48) 1px 1px 0, rgba(0, 0, 0, 0.48) 1px -1px 0;
  line-height: 0.9;
}

.accent-line .blue {
  color: #0f63eb;
}

.accent-line .headline-line {
  display: block;
}

.accent-line .headline-line + .headline-line {
  margin-top: 0.16em;
}

.hero-services {
  margin-top: 1.1rem;
}

.lead {
  margin-top: 1rem;
  font-size: 1.16rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 62ch;
  text-wrap: pretty;
}

.hero-side {
  display: flex;
  justify-content: center;
  align-items: end;
}

.hero-side img {
  max-height: 370px;
  width: auto;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.35));
}

body.home-page .hero-side img {
  filter: brightness(0) invert(1) drop-shadow(0 24px 50px rgba(0, 0, 0, 0.45));
  opacity: 0.92;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.button,
.button-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: #f0f5ff;
  color: var(--offer-accent-dark);
}

.button-alt:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.32);
}

.button:active,
.button-alt:active,
.nav-toggle:active,
.pricing-action:active,
.service-action:active,
.home-modal-close:active {
  transform: translateY(1px) scale(0.98);
}

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

.button-alt {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.nav a:focus-visible,
.button:focus-visible,
.button-alt:focus-visible,
.service-action:focus-visible,
.family-conditions-link:focus-visible,
.footer-links a:focus-visible,
.footer-social a:focus-visible,
.home-modal-close:focus-visible {
  outline-color: #f0c45b;
}

.section {
  padding: 3.2rem 0;
}

.section[id],
[id].section-head,
h2[id],
h3[id] {
  scroll-margin-top: 6rem;
}

.section-head {
  margin-bottom: 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.section-tag {
  width: fit-content;
  background: rgba(0, 71, 187, 0.08);
  color: var(--blue);
}

.section-head p,
.card p,
.panel p,
.feature-copy p,
.footer-note,
.table-note,
td {
  color: var(--muted);
}

.section-head p,
.feature-copy p,
.contact-panel p,
.legal-copy p,
.legal-copy li {
  max-width: 65ch;
  text-wrap: pretty;
}

.cta-band {
  margin-top: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 71, 187, 0.08), rgba(182, 138, 45, 0.12));
  border: 1px solid rgba(0, 71, 187, 0.12);
  border-radius: 18px;
}

.cta-band h2 {
  max-width: 12ch;
}

.cta-band p {
  max-width: 52rem;
  margin: 0.8rem 0 0;
  font-size: 1.04rem;
  line-height: 1.65;
}

.cta-band .actions {
  margin-top: 1.25rem;
}

.cta-band .button-alt {
  border-color: rgba(0, 71, 187, 0.2);
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
}

.cta-band .button-alt:hover {
  border-color: rgba(0, 71, 187, 0.34);
  background: #ffffff;
}

.panel,
.card,
.table-card,
.feature-copy,
.contact-panel {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel,
.card,
.table-card,
.feature-copy,
.contact-panel {
  padding: 1.4rem;
}

.split,
.media-grid,
.gallery-grid,
.cards-3,
.contact-grid,
.team-grid,
.shop-grid,
.plans-grid {
  display: grid;
  gap: 1.4rem;
}

.split {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.feature-image img,
.gallery-grid img,
.team-card img,
.shop-grid img,
.wide-photo img,
.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.feature-image {
  min-height: 420px;
}

.media-grid,
.gallery-grid,
.cards-3,
.contact-grid,
.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid figure,
.media-grid figure,
.shop-grid figure,
.team-card,
.poster-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
}

.family-discount-card {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 1rem 0.95rem 0.8rem;
  border-radius: 32px;
}

.family-icon {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  color: #000;
  margin-bottom: 0.55rem;
}

.family-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.family-icon img {
  width: 4.8rem;
  height: 4.8rem;
  object-fit: contain;
}

.family-discount-card h3 {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.family-discount-steps {
  display: grid;
  gap: 0.45rem;
  width: 100%;
  margin-top: 0.35rem;
}

.family-discount-steps p {
  margin: 0;
  color: var(--ink);
  display: grid;
  justify-items: center;
}

.family-discount-steps strong {
  display: block;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: clamp(2.9rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.family-discount-steps span {
  display: block;
  margin-top: 0;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  line-height: 1;
}

.family-conditions-link {
  margin-top: 0.4rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  cursor: pointer;
}

.family-conditions-link:hover {
  color: var(--blue);
}

.family-conditions-modal-panel {
  width: min(100%, 560px);
}

.family-conditions-list {
  margin-top: 0;
}

.caption,
.meta {
  padding: 1rem 1.1rem 1.2rem;
}

.caption strong,
.meta strong,
th {
  font-family: "Anton", "Arial Narrow", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.dark-band {
  background: #141414;
  color: #fff;
}

.dark-band .section-head p,
.dark-band p,
.dark-band .meta {
  color: rgba(255, 255, 255, 0.78);
}

.dark-band .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.wide-photo img {
  aspect-ratio: 16 / 6;
  border-radius: var(--radius);
}

.quote-line {
  margin-top: 0.8rem;
  color: var(--blue);
  font-weight: 700;
}

.mini-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
}

.mini-list li:last-child {
  border-bottom: 0;
}

.price {
  color: var(--blue);
  font-weight: 700;
}

.pricing-stage {
  margin-top: 0.2rem;
}

.pricing-stage,
.discounts-stage {
  --offer-accent: var(--blue);
  --offer-accent-dark: #0b4fbf;
  --offer-accent-soft: rgba(15, 99, 235, 0.14);
  --offer-accent-ghost: rgba(15, 99, 235, 0.06);
  --offer-support: var(--gold);
  --offer-support-soft: #cfb06a;
  --offer-surface-top: #f8f4eb;
  --offer-surface-bottom: #f2ede3;
  --offer-card-top: rgba(255, 255, 255, 0.98);
  --offer-card-bottom: rgba(251, 251, 251, 0.94);
  --offer-card-border: rgba(17, 17, 17, 0.08);
  --offer-card-shadow: 0 14px 34px rgba(15, 15, 15, 0.08);
  --offer-accent-border: rgba(15, 99, 235, 0.24);
  --offer-accent-shadow: rgba(15, 99, 235, 0.18);
  --offer-support-halo: rgba(182, 138, 45, 0.12);
}

.pricing-note {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-card {
  display: grid;
  grid-template-rows: auto auto auto auto minmax(0, 1fr) auto;
  min-height: 100%;
  padding: 1.45rem 1.35rem 1.25rem;
  background: linear-gradient(180deg, var(--offer-card-top), var(--offer-card-bottom));
  border: 1px solid var(--offer-card-border);
  border-radius: 18px;
  box-shadow: var(--offer-card-shadow);
}

.pricing-card-featured {
  border-color: var(--offer-accent-border);
  box-shadow: 0 18px 38px var(--offer-accent-shadow);
}

.pricing-badge-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 2.15rem;
  margin-bottom: 0.75rem;
}

.pricing-card-title {
  min-height: 11.65rem;
}

.pricing-card-head {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  min-height: 8.7rem;
}

.pricing-copy {
  display: grid;
  grid-template-rows: minmax(3.7rem, auto) minmax(3.55rem, auto);
  align-content: start;
  row-gap: 0.45rem;
  min-height: 100%;
}

.pricing-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--offer-surface-top), var(--offer-surface-bottom));
}

.pricing-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.pricing-copy h3 {
  margin: 0;
  display: flex;
  align-items: flex-start;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 0.92;
  min-height: 3.7rem;
}

.pricing-copy p {
  margin: 0;
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.45;
  max-width: 14ch;
  min-height: 3.55rem;
}

.pricing-divider {
  margin: 1.2rem 0 1rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.pricing-price {
  min-height: 7.25rem;
}

.pricing-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  min-height: 1.45rem;
}

.pricing-amount {
  margin: 0.35rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.45rem;
  color: var(--offer-accent);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.pricing-amount span {
  color: var(--muted);
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.pricing-frequency {
  margin: 0.45rem 0 0;
  color: var(--ink);
  font-size: 1rem;
}

.pricing-frequency-placeholder {
  visibility: hidden;
}

.pricing-parameter {
  min-height: 3rem;
}

.pricing-pill {
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--offer-accent-soft);
  border-radius: 12px;
  background: linear-gradient(90deg, var(--offer-accent-soft), var(--offer-accent-ghost));
  color: var(--offer-accent);
  font-weight: 700;
  font-size: 0.96rem;
  min-height: 3rem;
  display: flex;
  align-items: center;
}

.pricing-options {
  margin-top: 0.9rem;
}

.pricing-options p {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-options ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-options li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 0.96rem;
}

.pricing-options li:last-child {
  border-bottom: 0;
}

.pricing-options strong {
  justify-self: end;
  font-weight: 700;
}

.pricing-details {
  min-height: 6.5rem;
}

.pricing-action-row {
  display: flex;
  align-items: flex-end;
}

.pricing-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--offer-accent);
  border-radius: 10px;
  color: var(--offer-accent);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-action-solid {
  background: linear-gradient(135deg, var(--offer-accent), var(--offer-accent-dark));
  color: #fff;
}

.pricing-action:hover {
  background: var(--offer-accent-ghost);
}

.pricing-action-solid:hover {
  background: linear-gradient(135deg, #0c59d1, #0948ad);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--offer-accent), var(--offer-accent-dark));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-card-compact .pricing-copy h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.pricing-card-compact .pricing-amount {
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-top: 1rem;
}

table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  text-align: left;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
}

th {
  background: #f7f8fb;
  color: var(--blue);
}

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

.team-card img {
  aspect-ratio: 1 / 1;
  height: auto;
}

.team-card .meta h3 {
  margin: 0;
  font-size: 1.2rem;
}

.team-card .meta {
  text-align: center;
}

.coach-accordions {
  padding: 0 1.1rem 1.1rem;
}

.coach-accordions details {
  border-top: 1px solid rgba(21, 31, 46, 0.16);
}

.coach-accordions details:last-child {
  border-bottom: 1px solid rgba(21, 31, 46, 0.16);
}

.coach-accordions summary {
  position: relative;
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.65rem 2rem 0.65rem 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.coach-accordions summary::-webkit-details-marker {
  display: none;
}

.coach-accordions summary::after {
  content: "+";
  position: absolute;
  right: 0.15rem;
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

.coach-accordions details[open] summary::after {
  content: "−";
}

.coach-accordions summary:focus-visible {
  border-radius: 0.2rem;
  outline: 3px solid rgba(0, 81, 204, 0.32);
  outline-offset: 2px;
}

.coach-detail-content {
  padding: 0 1.5rem 0.85rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.coach-detail-content p {
  margin: 0;
}

.team-card-third-column {
  grid-column: 3;
}

.name-script {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.shop-grid {
  grid-template-columns: 1.35fr 1fr 1fr;
}

.shop-grid .tall img {
  aspect-ratio: 0.92 / 1;
}

.poster-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.4rem;
  align-items: stretch;
}

.poster-card .poster-copy {
  padding: 1.5rem 1.5rem 1.5rem 0;
}

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

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

.services-stage {
  background: linear-gradient(180deg, #f7f7f4, #efefea);
}

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

.discounts-stage {
  padding-top: 1.4rem;
}

.discounts-head {
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.discounts-kicker {
  width: 50px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--offer-support-soft), var(--offer-support));
}

.discounts-head h2 {
  max-width: 11ch;
}

.discounts-head p {
  font-size: 1.02rem;
}

.discounts-list {
  display: grid;
  gap: 1rem;
}

.discount-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 1.2fr) 220px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.7rem;
  background: linear-gradient(180deg, var(--offer-card-top), var(--offer-card-bottom));
  border: 1px solid var(--offer-card-border);
  border-radius: 20px;
  box-shadow: var(--offer-card-shadow);
}

.discount-card-main,
.discount-highlight,
.discount-points {
  min-width: 0;
}

.discount-card-main,
.discount-highlight {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.discount-points,
.discount-highlight {
  position: relative;
}

.discount-points::before,
.discount-highlight::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  top: 50%;
  width: 1px;
  height: calc(100% + 1rem);
  background: rgba(17, 17, 17, 0.1);
  transform: translateY(-50%);
}

.discount-icon {
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--offer-surface-top), var(--offer-surface-bottom));
  color: #111;
}

.discount-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.discount-icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.discount-icon-first-responder img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  object-position: center;
  transform: scale(0.74);
}

.discount-copy h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.35rem);
}

.discount-copy p {
  margin: 0.45rem 0 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.discount-points {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0 0 0 1.5rem;
}

.discount-points li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 1rem;
  color: var(--ink);
}

.discount-points li::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--offer-support), var(--offer-support-soft));
  box-shadow: 0 0 0 4px var(--offer-support-halo);
}

.discount-points li::after {
  content: "";
  position: absolute;
  left: -1.11rem;
  top: 0.62rem;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.discount-points span {
  font-size: 1.02rem;
  line-height: 1.45;
}

.discount-points strong {
  color: var(--offer-accent);
  font-size: 1.05rem;
  line-height: 1.35;
}

.discount-highlight {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding-left: 1.5rem;
  text-align: center;
}

.discount-highlight-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.discount-highlight-label {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.discount-highlight strong {
  font-family: "Source Sans 3", Arial, sans-serif;
  color: var(--offer-accent);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.discount-highlight a,
.discount-highlight .family-conditions-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.25rem;
  font-size: 0.98rem;
  text-underline-offset: 0.18em;
}

.discount-highlight a::before,
.discount-highlight .family-conditions-link::before,
.discounts-note::before {
  content: "i";
  display: inline-grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
}

.discounts-note {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.4rem 0 0;
  font-size: 1rem;
  color: var(--ink);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.16);
  box-shadow: none;
  border-radius: 0;
}

.service-launch-badge {
  position: absolute;
  top: 1.2rem;
  right: -0.45rem;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  padding: 0.6rem 0.9rem 0.55rem;
  background: #d5222a;
  border: 1px solid #a50f17;
  box-shadow: 4px 4px 0 #111111;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(2deg);
}

.service-launch-badge strong {
  font-family: "Anton", sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.055em;
}

.service-launch-badge > span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-card p {
  font-size: 1.02rem;
  line-height: 1.6;
}

.service-card-detailed {
  gap: 1rem;
}

.service-photo {
  display: block;
  aspect-ratio: 4 / 3;
  width: calc(100% + 4rem);
  height: auto;
  margin: -2rem -2rem 0;
  object-fit: cover;
}

.service-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.55;
}

.service-list li + li {
  margin-top: 0.45rem;
}

.service-session-pricing {
  margin: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.18);
}

.service-session-pricing div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.25rem 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}

.service-session-pricing dt {
  color: #4b4b4b;
  font-weight: 600;
}

.service-session-pricing dd {
  margin: 0;
  color: #111111;
  font-weight: 700;
}

.service-card .service-insurance-text {
  margin: 0;
  color: #111111;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.35;
}

.service-card .service-commitment {
  margin: -0.5rem 0 0;
  color: #4b4b4b;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.service-list a {
  color: var(--blue);
  font-weight: 700;
}

.service-list a:hover {
  color: #0b4fbf;
}

.service-price {
  margin-top: auto;
  padding-top: 0.75rem;
  color: var(--blue);
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: #0f63eb;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.service-action:hover {
  background: #0b4fbf;
}

.service-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 1.75rem;
  color: #111111;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
}

.service-icon.variant-a::before {
  inset: 10px 8px 22px 8px;
  border-radius: 999px 999px 0 0;
  background: #111111;
}

.service-icon.variant-a::after {
  width: 26px;
  height: 26px;
  left: 23px;
  top: 23px;
  border-radius: 999px;
  background: #0f63eb;
  box-shadow: 0 0 0 11px #fff, 0 -10px 0 20px transparent;
}

.service-icon.variant-b::before {
  inset: 6px;
  border-radius: 999px;
  background:
    conic-gradient(#0f63eb 0 25%, transparent 25% 50%, #111111 50% 100%);
}

.service-icon.variant-b::after {
  inset: 22px;
  border-radius: 999px;
  background: #fff;
}

.service-icon.variant-c::before {
  inset: 6px;
  border-radius: 999px;
  background:
    conic-gradient(#111111 0 86%, transparent 86% 100%);
}

.service-icon.variant-c::after {
  width: 22px;
  height: 22px;
  top: 25px;
  right: 9px;
  background: #0f63eb;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.service-kicker {
  margin-top: auto;
  padding-top: 1.6rem;
  color: #0f63eb;
  font-weight: 700;
  font-size: 1.05rem;
}

.service-card .service-enrollment-note {
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(17, 17, 17, 0.18);
  color: #4b4b4b;
  font-size: 0.92rem;
  line-height: 1.4;
}

.service-enrollment-note strong {
  color: #111111;
  font-weight: 700;
}

.service-card .actions {
  margin-top: 1.25rem;
}

.footer {
  background: #111;
  color: #fff;
  margin-top: 3rem;
  padding: 2rem 0 2.6rem;
}

body.home-page .footer {
  margin-top: 0;
  padding: 1rem 0 1.2rem;
}

.footer-inner {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
}

.footer-links a {
  text-underline-offset: 0.22em;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-note {
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.table-note {
  margin-top: 1rem;
}

.home-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(6, 6, 6, 0.72);
  overscroll-behavior: contain;
}

.home-modal.is-open {
  display: flex;
}

.home-modal-panel {
  width: min(100%, 760px);
  max-height: min(88vh, 900px);
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.home-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: #151515;
  color: #fff;
}

.home-modal-close {
  min-width: 42px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.home-modal-body {
  padding: 1.4rem;
  overflow: auto;
  overscroll-behavior: contain;
}

.legal-copy {
  display: grid;
  gap: 1.5rem;
  width: min(100%, 780px);
}

.legal-copy section {
  display: grid;
  gap: 0.55rem;
}

.legal-copy h2,
.legal-copy p,
.legal-copy ul {
  margin: 0;
}

.error-page main {
  min-height: calc(100vh - 240px);
  min-height: calc(100dvh - 240px);
  display: grid;
  place-items: center;
}

.error-panel {
  width: min(100%, 760px);
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.error-code {
  margin: 0;
  color: var(--offer-accent);
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(5rem, 20vw, 10rem);
  line-height: 0.8;
}

.error-panel h1 {
  margin-top: 1.2rem;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
}

.error-panel p {
  max-width: 54ch;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.error-panel .actions {
  justify-content: center;
}

.error-panel .button {
  background: var(--blue);
  color: #ffffff;
}

.error-panel .button-alt {
  border-color: rgba(0, 71, 187, 0.2);
  background: rgba(0, 71, 187, 0.08);
  color: var(--blue);
}

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

.home-modal-body a,
.contact-panel a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 980px) {
  .team-card-third-column {
    grid-column: auto;
  }

  .hero-content,
  .split,
  .poster-card,
  .media-grid,
  .gallery-grid,
  .cards-3,
  .contact-grid,
  .team-grid,
  .shop-grid,
  .plans-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    min-height: 60vh;
  }

  .hero-side {
    justify-content: flex-start;
  }

  .poster-card .poster-copy {
    padding: 0 1.5rem 1.5rem;
  }

  .family-discount-card h3 {
    font-size: 1.8rem;
  }

  .family-discount-card {
    grid-column: auto;
  }

  .family-discount-steps strong {
    font-size: 3.3rem;
  }

  .family-discount-steps span {
    font-size: 1.05rem;
  }

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

  .pricing-card-featured {
    grid-column: span 2;
  }

  .pricing-card-head {
    min-height: 8.2rem;
  }

  .pricing-card-compact .pricing-copy h3 {
    font-size: 1.7rem;
  }

  .discount-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .discount-points::before,
  .discount-highlight::before {
    display: none;
  }

  .discount-highlight {
    align-items: flex-start;
    padding-left: 0;
    text-align: left;
  }

  .discount-highlight strong {
    font-size: 3.2rem;
  }
}

@media (max-width: 720px) {
  .service-launch-badge {
    top: 1rem;
    right: 1rem;
    transform: none;
  }

  .topbar {
    position: sticky;
  }

  .topbar-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .js .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.75rem 0 max(0.25rem, env(safe-area-inset-bottom));
  }

  .js .topbar-inner.is-menu-open .nav {
    display: flex;
  }

  .nav a {
    width: 100%;
    text-align: left;
  }

  .hero-content {
    padding-top: 3rem;
  }

  .cta-band {
    padding: 1.5rem;
  }

  h1 {
    font-size: 2.9rem;
  }

  .accent-line {
    line-height: 0.94;
  }

  .accent-line .headline-line + .headline-line {
    margin-top: 0.2em;
  }

  .hero-location {
    font-size: 0.98rem;
  }

  .hero-side {
    display: none;
  }

  .home-modal-head {
    padding: 1rem 1rem 1rem 1.25rem;
  }

  .home-modal-head h2 {
    font-size: 2.2rem;
  }

  .home-modal-body {
    padding: 1rem;
  }

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

  .pricing-card-featured {
    grid-column: auto;
  }

  .pricing-card-head {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 0.85rem;
    min-height: auto;
  }

  .pricing-card-title,
  .pricing-price,
  .pricing-parameter,
  .pricing-details {
    min-height: 0;
  }

  .pricing-icon {
    width: 60px;
    height: 60px;
  }

  .pricing-icon img {
    width: 34px;
    height: 34px;
  }

  .pricing-options li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .pricing-copy {
    grid-template-rows: none;
    row-gap: 0.3rem;
  }

  .pricing-copy h3,
  .pricing-copy p {
    min-height: 0;
  }

  .pricing-options strong {
    justify-self: start;
  }

  .discount-card {
    padding: 1.3rem 1.15rem;
    border-radius: 18px;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(15, 15, 15, 0.08);
  }

  .discount-card-main {
    align-items: flex-start;
    gap: 0.9rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .discount-icon {
    flex-basis: 76px;
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .discount-icon svg {
    width: 46px;
    height: 46px;
  }

  .discount-icon img {
    width: 50px;
    height: 50px;
  }

  .discount-icon-first-responder img {
    width: 72px;
    height: 72px;
    transform: scale(0.74);
  }

  .discount-copy h3 {
    font-size: 1.8rem;
  }

  .discount-copy p {
    margin-top: 0.3rem;
    font-size: 1rem;
  }

  .discount-points {
    gap: 0;
    padding: 0;
  }

  .discount-points li {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .discount-points li:first-child {
    padding-top: 0;
  }

  .discount-points li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .discount-points li::before,
  .discount-points li::after {
    display: none;
  }

  .discount-points span,
  .discount-points strong {
    font-size: 1.05rem;
  }

  .discount-highlight {
    gap: 0.9rem;
    align-items: stretch;
    padding-left: 0;
    text-align: left;
  }

  .discount-highlight-value {
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    gap: 0.55rem;
    padding: 0.95rem 1rem;
    background: linear-gradient(180deg, #f8f4eb, #f2ede3);
    border-radius: 16px;
  }

  .discount-highlight-label {
    font-size: 0.82rem;
  }

  .discount-highlight strong {
    font-size: 3.2rem;
  }

  .discount-highlight .family-conditions-link {
    justify-content: flex-start;
    margin-top: 0;
    font-size: 1rem;
  }

  .discounts-note {
    align-items: flex-start;
  }

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