:root {
  --ink: #0b111a;
  --charcoal: #171d27;
  --muted: #5e6877;
  --paper: #f4f7fa;
  --paper-2: #e8eef5;
  --white: #ffffff;
  --line: #d9e1ea;
  --blue: #07578f;
  --blue-dark: #063454;
  --blue-soft: #dcecf8;
  --shadow: 0 24px 70px rgba(11, 17, 26, 0.16);
  --radius: 8px;
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.22;
}

ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 50;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.nav-active,
.trial-page .site-header {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(11, 17, 26, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  width: clamp(220px, 18vw, 310px);
  padding: 6px 0;
}

.brand img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.site-header.scrolled .brand img,
.site-header.nav-active .brand img,
.trial-page .brand img {
  filter: brightness(0);
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
  color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta,
.button-primary {
  background: var(--blue);
  color: var(--white);
}

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

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  padding: 12px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 28, 46, 0.92), rgba(6, 28, 46, 0.72) 54%, rgba(6, 28, 46, 0.24)),
    linear-gradient(0deg, rgba(6, 28, 46, 0.92), rgba(6, 28, 46, 0.04) 50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 90px) 0 48px;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--blue-soft);
  margin-bottom: 18px;
}

.hero-copy {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 840px;
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-proof div {
  min-height: 102px;
  padding: 18px;
  background: rgba(6, 28, 46, 0.68);
  backdrop-filter: blur(12px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: clamp(1.3rem, 2.8vw, 2.05rem);
  line-height: 1;
}

.hero-proof span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.section,
.intro-band,
.local-band,
.coach-section,
.space-section,
.cta-strip {
  padding: clamp(72px, 10vw, 128px) 0;
}

.section-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-band {
  background: var(--charcoal);
  color: var(--white);
}

.intro-band p {
  color: rgba(255, 255, 255, 0.76);
}

.local-band {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.local-band h2 {
  max-width: 760px;
}

.local-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.local-pill-row span,
.local-pill-row a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.local-pill-row a:hover,
.local-pill-row a:focus-visible {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.intro-grid,
.schedule-grid,
.contact-grid,
.faq-grid,
.first-class-grid,
.trial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.reason-list {
  display: grid;
  gap: 22px;
}

.reason-list article {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.reason-list h3 {
  margin-bottom: 8px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading .eyebrow,
.compact .eyebrow {
  margin-bottom: 13px;
}

.section-heading p,
.compact p {
  max-width: 680px;
  margin-top: 16px;
}

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

.program-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

.program-image {
  aspect-ratio: 4 / 3;
  background: var(--paper);
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-content {
  padding: 24px;
}

.program-content span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.program-content p {
  margin-top: 12px;
}

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

.space-section p {
  color: rgba(255, 255, 255, 0.78);
}

.space-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.space-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  grid-column: 1 / -1;
  overflow: hidden;
}

.space-media figure {
  display: grid;
  margin: 0;
}

.space-media img {
  width: 100%;
  height: clamp(300px, 34vw, 430px);
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.space-feature {
  margin: 0;
}

.space-feature img {
  width: 100%;
  height: clamp(520px, 56vw, 680px);
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.gym-photo {
  image-orientation: none;
}

.gym-crop {
  object-position: center 38%;
}

.space-copy h2 {
  margin-top: 12px;
}

.space-copy p {
  margin-top: 18px;
}

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

.amenity-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

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

.founder-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(22px, 4vw, 50px);
  align-items: center;
  margin-bottom: 32px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.founder-photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-2);
}

.founder-photo img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  object-position: center top;
}

.founder-copy h3 {
  margin-top: 12px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.founder-copy p:not(.eyebrow) {
  margin-top: 16px;
}

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

.coach-card {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.coach-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  background: var(--paper-2);
}

.coach-photo-placeholder {
  display: grid;
  width: 100%;
  aspect-ratio: 3 / 4;
  place-items: center;
  padding: 20px;
  background: var(--paper-2);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.coach-card h3 {
  padding: 18px 18px 0;
}

.coach-card p {
  padding: 10px 18px 20px;
  font-size: 0.93rem;
  line-height: 1.55;
}

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

.schedule-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(11, 17, 26, 0.08);
}

.schedule-table {
  width: 100%;
  min-width: 1060px;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  width: 12.5%;
  min-height: 72px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  font-size: 0.86rem;
  line-height: 1.32;
}

.schedule-table thead th {
  color: var(--white);
  background: var(--blue-dark);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.schedule-table tbody th {
  color: var(--blue-dark);
  background: var(--paper);
  font-weight: 900;
  white-space: nowrap;
}

.schedule-table td:not(:empty) {
  background: #f8fbfe;
  font-weight: 850;
}

.schedule-table td.kids:not(:empty) {
  background: #e9f3ed;
}

.schedule-table td.women:not(:empty) {
  background: #e7f4fb;
}

.schedule-table td.muay:not(:empty) {
  background: #eeeeef;
}

.schedule-table span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.schedule-live-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 14px;
  border: 1px solid #c9def2;
  border-radius: 999px;
  background: #f8fbfe;
  color: var(--blue-dark);
  padding: 0 14px;
  font-size: 0.82rem;
  font-weight: 850;
}

.live-schedule-table td {
  padding: 8px;
}

.live-class {
  display: grid;
  gap: 4px;
  min-height: 76px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px 10px 9px;
  box-shadow: 0 6px 16px rgba(11, 17, 26, 0.06);
}

.live-class + .live-class {
  margin-top: 8px;
}

.live-class strong {
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.25;
}

.live-class span,
.live-class em {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 750;
  line-height: 1.25;
}

.live-class.live-kids {
  border-left-color: #16a34a;
}

.live-class.live-women {
  border-left-color: var(--blue);
  background: #f8fbfe;
}

.live-class.live-muay {
  border-left-color: #111827;
}

.schedule-empty {
  min-width: 320px;
  padding: 22px;
  color: var(--muted);
  font-weight: 800;
}

.schedule-notes {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.schedule-notes + .button {
  margin-top: 28px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.steps article {
  min-height: 245px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.steps span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 900;
}

.steps p {
  margin-top: 12px;
}

.cta-strip {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue) 70%, #111827);
}

.cta-strip .eyebrow,
.cta-strip p {
  color: var(--blue-soft);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  max-width: 820px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  color: var(--blue);
  font-weight: 850;
}

address {
  margin-top: 24px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.contact-card,
.contact-form,
.trial-summary,
.trial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
}

.contact-card .button {
  justify-self: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
  margin-top: clamp(34px, 5vw, 60px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(11, 17, 26, 0.08);
}

.map-panel h3 {
  margin-top: 12px;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
}

.map-panel p:not(.eyebrow) {
  margin-top: 12px;
}

.map-panel iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
}

.site-footer {
  padding: 38px 0;
  color: var(--white);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-inner img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.footer-inner p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner a {
  color: var(--blue-soft);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.privacy-choices-button {
  border: 0;
  background: none;
  color: var(--blue-soft);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0;
  cursor: pointer;
}

.tracking-consent {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 -14px 34px rgba(11, 17, 26, 0.14);
}

.tracking-consent[hidden] {
  display: none;
}

.tracking-consent-copy {
  max-width: 820px;
}

.tracking-consent-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.tracking-consent-copy p {
  margin: 2px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.tracking-consent-copy a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
}

.tracking-consent-actions {
  display: flex;
  flex: none;
  gap: 10px;
}

.tracking-consent-actions .button {
  min-height: 44px;
  white-space: nowrap;
}

.privacy-policy-choice {
  border: 0;
  background: none;
  color: var(--blue-dark);
  font: inherit;
  font-weight: 850;
  text-decoration: underline;
  padding: 0;
  cursor: pointer;
}

.policy-page {
  background: var(--paper);
}

.policy-page .site-header {
  background: var(--ink);
}

.policy-main {
  min-height: 70vh;
  padding: calc(var(--header-h) + 64px) 0 80px;
}

.policy-copy {
  width: min(820px, 100%);
}

.policy-copy h1 {
  max-width: 760px;
  margin: 8px 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
}

.policy-copy h2 {
  margin: 40px 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.policy-copy p,
.policy-copy li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-copy ul {
  padding-left: 22px;
}

.policy-copy a {
  color: var(--blue);
  font-weight: 800;
}

.trial-page {
  background: var(--paper);
}

.trial-hero {
  padding: calc(var(--header-h) + 64px) 0 56px;
  background: linear-gradient(135deg, var(--white), var(--paper), var(--blue-soft));
}

.trial-hero h1 {
  max-width: 820px;
  color: var(--ink);
}

.trial-hero p {
  max-width: 680px;
  margin-top: 18px;
  font-size: 1.12rem;
}

.submitted-hero {
  min-height: 72svh;
  display: flex;
  align-items: center;
}

.submitted-card {
  max-width: 920px;
}

.submitted-card .hero-actions {
  margin-top: 30px;
}

.trial-section {
  padding: 56px 0 92px;
}

.trial-card {
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trial-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label,
.fieldset-label {
  color: var(--ink);
  font-weight: 850;
}

.form-row label span,
.fieldset-label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.choice-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}

.choice-card input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
}

.choice-card strong,
.choice-card small {
  grid-column: 2;
}

.choice-card small {
  color: var(--muted);
  line-height: 1.45;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

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

.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.slot-button {
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  padding: 12px;
  cursor: pointer;
}

.slot-button span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.slot-button.is-selected {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.slot-button.is-selected span {
  color: rgba(255, 255, 255, 0.82);
}

.slot-note {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid #c9def2;
  border-radius: var(--radius);
  background: #f8fbfe;
  color: var(--blue-dark);
  padding: 12px;
  font-size: 0.88rem;
  font-weight: 800;
}

.trial-summary {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 26px;
  background: var(--white);
}

.trial-summary h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.summary-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.summary-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.summary-list span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-list strong {
  font-size: 1rem;
}

.form-status {
  display: none;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 800;
}

.form-status[data-type="error"] {
  background: #fce8e8;
  color: #8a1f1f;
}

.form-status.is-visible {
  display: block;
}

@media (max-width: 1120px) {
  .coach-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    padding: 22px 20px 30px;
    background: var(--white);
    color: var(--ink);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(11, 17, 26, 0.12);
  }

  .site-header.nav-active .nav {
    display: grid;
    gap: 0;
  }

  .nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-grid,
  .local-grid,
  .schedule-grid,
  .contact-grid,
  .faq-grid,
  .first-class-grid,
  .trial-grid,
  .space-grid,
  .map-panel,
  .founder-panel {
    grid-template-columns: 1fr;
  }

  .space-media {
    grid-column: auto;
  }

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

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

  .cta-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .trial-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .tracking-consent {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }

  .tracking-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tracking-consent-actions .button {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .coach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 76px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .site-header {
    padding: 12px 18px;
  }

  .brand {
    width: min(210px, 58vw);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 28, 46, 0.94), rgba(6, 28, 46, 0.78)),
      linear-gradient(0deg, rgba(6, 28, 46, 0.92), rgba(6, 28, 46, 0.08) 56%);
  }

  .hero-inner {
    width: min(100% - 32px, 1240px);
    padding-bottom: 28px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .hero-proof div {
    min-height: 88px;
  }

  .section-inner {
    width: min(100% - 32px, 1240px);
  }

  .program-grid,
  .coach-grid,
  .slot-grid,
  .choice-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .program-card.featured {
    grid-column: span 1;
  }

  .button,
  .contact-card .button,
  .trial-form .button {
    width: 100%;
  }
}
