:root {
  --black: #0a0a0a;
  --surface-dark: #171717;
  --border-dark: #262626;
  --white: #fff;
  --off-white: #fafafa;
  --soft: #f5f5f5;
  --ink: #191919;
  --muted: #7c7c7c;
  --muted-dark: #999;
  --red: #e00614;
  --red-hover: #f52532;
  --container: 1220px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  padding-bottom: calc(64px + env(safe-area-inset-bottom));
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.08;
}

h1,
h2 {
  text-transform: uppercase;
  letter-spacing: -.025em;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--off-white);
  font-size: clamp(2.5rem, 11vw, 4rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 7vw, 2.5rem);
}

h3 {
  font-size: 1.35rem;
}

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

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

.section {
  padding: 76px 0;
}

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

.section-heading > p:last-child,
.cta-heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--muted-dark);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .19em;
  line-height: 1.5;
  text-transform: uppercase;
}

.kicker span {
  color: var(--red);
  letter-spacing: 0;
}

.kicker--dark {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--red), #b00510);
  box-shadow: 0 10px 40px -10px rgba(224, 6, 20, .5);
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.button:hover {
  background: linear-gradient(135deg, var(--red-hover), var(--red));
  box-shadow: 0 13px 44px -10px rgba(224, 6, 20, .65);
  transform: translateY(-2px);
}

.button--outline,
.button--dark-outline {
  border-color: rgba(255, 255, 255, .35);
  background: rgba(10, 10, 10, .2);
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.button--outline:hover,
.button--dark-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .09);
  box-shadow: none;
}

.button--glow {
  box-shadow: 0 0 60px rgba(224, 6, 20, .35);
}

.button--small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: .68rem;
}

.is-hidden {
  display: none !important;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--border-dark);
  background: rgba(10, 10, 10, .97);
}

.header-inner {
  display: flex;
  width: min(100% - 24px, 1400px);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.site-logo {
  position: relative;
  z-index: 102;
  display: flex;
  width: 126px;
  height: 58px;
  align-items: center;
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border-dark);
  border-radius: 5px;
  background: var(--surface-dark);
  cursor: pointer;
  place-content: center;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 3px 0;
  background: var(--off-white);
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.menu-active .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-active .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-active .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  z-index: 101;
  inset: var(--header-height) 0 0;
  display: flex;
  padding: 40px 24px 100px;
  visibility: hidden;
  flex-direction: column;
  gap: 0;
  background: rgba(10, 10, 10, .99);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.site-header.menu-active .main-nav {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.main-nav a {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-dark);
  color: var(--off-white);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.65rem;
  font-weight: 500;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--red-hover);
}

.header-actions {
  display: none;
}

/* Shared photo handling */
.media-frame {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .045) 25%, transparent 25%) 0 0 / 24px 24px,
    var(--surface-dark);
}

.media-frame::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  padding: 24px;
  color: #8c8c8c;
  content: attr(data-fallback);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .66rem;
  letter-spacing: .07em;
  line-height: 1.7;
  text-align: center;
  text-transform: uppercase;
  place-items: center;
}

.club-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
}

.media-frame.is-missing .club-photo {
  visibility: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  padding: 92px 0 0;
  overflow: hidden;
  background: var(--black);
  color: var(--off-white);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0 0 114px;
}

.hero-photo::after {
  align-items: start;
  padding-top: 9vh;
}

.hero-photo .club-photo {
  object-position: center 28%;
}

.hero-shade {
  z-index: 2;
  background: linear-gradient(180deg, rgba(10, 10, 10, .55) 0%, rgba(10, 10, 10, .85) 70%, var(--black) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: calc(100vh - var(--header-height) - 206px);
  min-height: calc(100svh - var(--header-height) - 206px);
  flex-direction: column;
  justify-content: center;
  padding-bottom: 50px;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--off-white);
  font-size: 1.06rem;
  line-height: 1.65;
}

.hero-buttons {
  display: grid;
  max-width: 440px;
  gap: 12px;
}

.trust-line {
  margin: 24px 0 0;
  color: var(--muted-dark);
  font-size: .76rem;
  line-height: 1.6;
}

.trust-line span {
  padding: 0 4px;
  color: var(--red);
}

.club-passport {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  background: var(--black);
}

.passport-inner {
  display: grid;
  width: min(100%, 1400px);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.passport-inner span {
  display: flex;
  min-height: 56px;
  align-items: center;
  padding: 12px 14px;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  color: #c8c8c8;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .58rem;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.passport-inner span:last-child {
  grid-column: 1 / -1;
  border-bottom: 0;
}

/* Benefits */
.benefits {
  background: var(--white);
}

.benefit-grid {
  display: grid;
  align-items: stretch;
  gap: 16px;
}

.benefit-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  flex-direction: column;
  background: var(--white);
}

.benefit-photo {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  aspect-ratio: 3 / 2;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 6px 6px 0 0;
}

.benefit-card:first-child .club-photo {
  object-position: center 17%;
}

.location-label,
.coach-role {
  color: var(--muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.benefit-content {
  display: flex;
  width: 100%;
  flex: 1 1 auto;
  align-items: flex-start;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
}

.benefit-label {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.benefit-label::before {
  width: 20px;
  height: 2px;
  margin-right: 10px;
  flex: 0 0 auto;
  background: var(--red);
  content: "";
}

.benefit-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  text-transform: uppercase;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .93rem;
}

/* Locations */
.locations {
  background: var(--soft);
}

.location-grid {
  display: grid;
  gap: 16px;
}

.location-card {
  min-height: 510px;
  border-radius: 7px;
  color: var(--off-white);
}

.location-card .club-photo {
  position: absolute;
  inset: 0;
}

.location-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, .45) 0%, rgba(10, 10, 10, .78) 70%, rgba(10, 10, 10, .85) 100%);
}

.location-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.location-label {
  margin-bottom: 16px;
  color: #b9b9b9;
}

.location-label::before {
  color: var(--red);
  content: "■ ";
}

.location-card h3 {
  min-height: 2.2em;
  margin-bottom: 12px;
  font-size: 1.65rem;
  text-transform: uppercase;
}

.location-address {
  min-height: 3.2em;
  margin-bottom: 20px;
  color: #c5c5c5;
  font-size: .9rem;
}

.location-time {
  margin-bottom: 22px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
}

.location-time span {
  display: block;
  margin-bottom: 4px;
  color: #cfcfcf;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.location-card .button {
  width: 100%;
}

/* Coaches */
.coaches {
  background: var(--white);
}

.coach-grid {
  display: grid;
  gap: 22px;
}

.coach-card {
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 6px;
  background: var(--soft);
}

.coach-photo {
  aspect-ratio: 6 / 5;
  border-bottom: 1px solid #dedede;
}

.coach-photo .club-photo {
  object-position: center 20%;
}

.coach-photo::after {
  color: #bdbdbd;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, .35));
  font-size: .7rem;
}

.coach-info {
  padding: 24px;
}

.coach-info h3 {
  margin: 8px 0 14px;
  font-size: 1.65rem;
  text-transform: uppercase;
}

.phone-link {
  display: inline-block;
  border-bottom: 1px solid #b8b8b8;
  font-weight: 800;
}

.phone-link:hover,
.footer-contacts a:hover,
.domain-link:hover {
  color: var(--red-hover);
}

/* Gallery */
.gallery {
  background: var(--soft);
}

.gallery-grid {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.gallery-col {
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  flex-direction: column;
  gap: 14px;
}

.gallery-item {
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  cursor: zoom-in;
  vertical-align: top;
  break-inside: avoid;
  transition: border-color .2s ease, transform .2s ease;
}

.gallery-item::after {
  padding: 10px;
  font-size: .5rem;
}

.gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-trigger:focus-visible {
  outline-offset: -4px;
}

.gallery-item .club-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gallery-item:hover,
.gallery-item:focus-within {
  border-color: var(--red);
}

.gallery-item:hover {
  transform: translateY(-3px);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 7vh 4vw;
  border: 0;
  background: transparent;
  cursor: zoom-out;
  overflow: hidden;
}

.gallery-lightbox[open] {
  display: grid;
  place-items: center;
}

.gallery-lightbox::backdrop {
  background: rgba(10, 10, 10, .92);
}

.gallery-lightbox img {
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 6px;
  object-fit: contain;
  cursor: default;
}

.gallery-lightbox__close {
  position: fixed;
  z-index: 1;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  background: rgba(10, 10, 10, .72);
  color: var(--white);
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
  place-items: center;
}

/* Final CTA + FAQ */
.final-cta {
  position: relative;
  padding: 82px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
  background: var(--black);
  color: var(--off-white);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, .025) 50%, transparent 50.2%) 0 0 / 72px 72px,
    linear-gradient(rgba(255, 255, 255, .025) 49.8%, transparent 50%) 0 0 / 72px 72px;
  content: "";
  pointer-events: none;
}

.final-cta .container {
  position: relative;
}

.cta-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.cta-heading > p:last-child {
  color: #b5b5b5;
}

.cta-facts {
  display: grid;
  margin-bottom: 24px;
  border-top: 1px solid var(--border-dark);
  border-left: 1px solid var(--border-dark);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta-facts span {
  display: flex;
  min-height: 74px;
  align-items: center;
  padding: 13px;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  background: var(--surface-dark);
  color: #d1d1d1;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .61rem;
  letter-spacing: .09em;
  line-height: 1.55;
  text-transform: uppercase;
}

.cta-facts span::before {
  margin-right: 9px;
  color: var(--red);
  content: "■";
  font-size: .55rem;
}

.cta-actions {
  display: grid;
  gap: 10px;
}

.faq {
  padding-top: 84px;
}

.faq-heading {
  margin-bottom: 26px;
}

.faq-list {
  border-top: 1px solid var(--border-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--border-dark);
}

.faq-list summary {
  position: relative;
  padding: 22px 46px 22px 0;
  color: var(--off-white);
  cursor: pointer;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 2px;
  background: var(--red);
  content: "";
  transform: translateY(-50%);
  transition: transform .2s ease;
}

.faq-list summary span::after {
  top: 1px;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-width: 820px;
  padding: 0 38px 22px 0;
  color: #adadad;
}

.faq-answer p {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  padding: 58px 0 84px;
  background: var(--black);
  color: var(--off-white);
}

.footer-grid {
  position: relative;
  display: grid;
  gap: 42px;
}

.site-logo--footer {
  width: 190px;
  height: 106px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 350px;
  margin-bottom: 12px;
  color: var(--muted-dark);
}

.domain-link {
  border-bottom: 1px solid #555;
  font-weight: 600;
}

.footer-column h2 {
  margin-bottom: 18px;
  color: var(--muted-dark);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-column address {
  display: grid;
  max-width: 450px;
  gap: 10px;
  color: #c3c3c3;
  font-style: normal;
}

.footer-contacts {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-contacts h2 {
  margin-bottom: 9px;
}

.footer-contacts a {
  border-bottom: 1px solid transparent;
  color: #d8d8d8;
}

.to-top {
  display: inline-flex;
  width: max-content;
  min-height: 44px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  color: #c9c9c9;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.to-top:hover {
  border-color: #666;
  color: var(--white);
}

/* Persistent mobile actions */
.mobile-contact-bar {
  position: fixed;
  z-index: 110;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: calc(64px + env(safe-area-inset-bottom));
  padding: 7px max(8px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  border-top: 1px solid #303030;
  background: rgba(10, 10, 10, .98);
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.mobile-contact-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
  border-radius: 4px;
  color: var(--white);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-contact-bar a:last-child {
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red), #b00510);
}

.mobile-contact-bar span {
  margin-right: 7px;
  font-size: .67rem;
}

/* Progressive reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

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

@media (min-width: 600px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .hero-buttons,
  .cta-actions {
    display: flex;
    max-width: none;
    flex-wrap: wrap;
  }

  .hero-buttons .button,
  .cta-actions .button {
    width: auto;
  }

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

  .passport-inner span:last-child {
    grid-column: auto;
  }

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

  .cta-facts span {
    min-height: 66px;
    padding: 16px;
    font-size: .68rem;
  }
}



@media (min-width: 760px) {
  .section {
    padding: 96px 0;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-content {
    min-height: 610px;
    padding-bottom: 74px;
  }

  .hero-lead {
    font-size: 1.18rem;
  }

  .passport-inner {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .passport-inner span {
    justify-content: center;
    min-height: 72px;
    border-bottom: 0;
    text-align: center;
  }

  .passport-inner span:last-child {
    border-right: 0;
  }

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

  .coach-photo {
    aspect-ratio: 4 / 3;
  }

  .gallery-item::after {
    font-size: .6rem;
  }

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

  .faq-list summary {
    padding: 26px 52px 26px 0;
    font-size: 1.45rem;
  }

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

@media (min-width: 920px) {
  .location-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .location-card,
  .location-content {
    min-height: 560px;
  }

  .location-content {
    padding: 30px 26px;
  }
}

@media (min-width: 960px) {
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item {
    transition: border-color .2s ease;
  }

  .gallery-item:hover {
    transform: none;
  }
}

@media (min-width: 1120px) {
  :root {
    --header-height: 86px;
  }

  body {
    padding-bottom: 0;
  }

  .header-inner {
    width: min(100% - 48px, 1400px);
  }

  .site-logo {
    width: 155px;
    height: 72px;
  }

  .menu-toggle,
  .mobile-contact-bar {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    padding: 0;
    visibility: visible;
    flex-direction: row;
    gap: 24px;
    background: transparent;
    opacity: 1;
    transform: none;
  }

  .main-nav a {
    padding: 10px 0;
    border-bottom: 0;
    color: #c8c8c8;
    font-family: "Inter", system-ui, sans-serif;
    font-size: .71rem;
    font-weight: 800;
    letter-spacing: .05em;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .header-phone {
    color: #dedede;
    font-size: .79rem;
    font-weight: 800;
  }

  .header-phone:hover {
    color: var(--white);
  }

  .section {
    padding: 116px 0;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    min-height: 650px;
  }

  .hero-lead {
    font-size: 1.22rem;
  }

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

  .coach-card {
    display: grid;
    grid-template-columns: 1.18fr 1fr;
  }

  .coach-photo {
    height: 100%;
    min-height: 360px;
    aspect-ratio: auto; /* иначе фото шире грид-колонки и наезжает на текст */
    border-right: 1px solid #dedede;
    border-bottom: 0;
  }

  .coach-info {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
  }

  .final-cta {
    padding: 116px 0;
  }

  .faq {
    display: grid;
    padding-top: 110px;
    grid-template-columns: minmax(260px, .75fr) minmax(0, 1.5fr);
    gap: 70px;
  }

  .footer-grid {
    align-items: start;
    grid-template-columns: 1.15fr 1.35fr 1.2fr auto;
    gap: 52px;
  }

  .to-top {
    align-self: start;
  }
}

@media (min-width: 1450px) {
  .header-inner {
    width: min(100% - 80px, 1500px);
  }

  .main-nav {
    gap: 32px;
  }

  .hero-content {
    min-height: 680px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
