.gym-site-body {
  margin: 0;
  background: #121315;
}

.gym-hero h1,
.gym-page-hero h1,
.gym-section h2,
.gym-final h2 {
  overflow-wrap: anywhere;
  font-size: clamp(38px, 5.7vw, 76px) !important;
  letter-spacing: -0.035em !important;
  line-height: 1.08 !important;
}

.gym-section-head h2,
.gym-location-card h2 {
  font-size: clamp(30px, 4vw, 52px) !important;
}

@media (max-width: 720px) {
  .gym-hero h1,
  .gym-page-hero h1,
  .gym-section h2,
  .gym-final h2 {
    font-size: clamp(34px, 10vw, 50px) !important;
    line-height: 1.12 !important;
  }
}

.gym-site,
.gym-footer {
  --gym-bg: #121315;
  --gym-carbon: #1b1d20;
  --gym-carbon-2: #23262a;
  --gym-white: #f3f3f1;
  --gym-muted: #9a9a96;
  --gym-soft: rgba(243, 243, 241, 0.72);
  --gym-line: rgba(243, 243, 241, 0.13);
  --gym-line-strong: rgba(243, 243, 241, 0.22);
  --gym-orange: #d65a38;
  --gym-orange-soft: rgba(214, 90, 56, 0.17);
  --gym-sand: #c7a16a;
  --gym-radius: 30px;
  color: var(--gym-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gym-site {
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 18% 8%, rgba(214, 90, 56, 0.22), transparent 30%),
    radial-gradient(circle at 86% 2%, rgba(199, 161, 106, 0.18), transparent 26%),
    linear-gradient(180deg, #101113 0%, #121315 42%, #17191c 100%);
}

.gym-site *,
.gym-site *::before,
.gym-site *::after,
.gym-footer *,
.gym-footer *::before,
.gym-footer *::after {
  box-sizing: border-box;
}

.gym-site img {
  display: block;
  max-width: 100%;
  height: auto;
}

.gym-container {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.gym-concept {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid var(--gym-line);
  background: rgba(18, 19, 21, 0.86);
  backdrop-filter: blur(18px);
}

.gym-concept__inner,
.gym-nav__inner,
.gym-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gym-concept__inner {
  min-height: 42px;
  color: var(--gym-muted);
  font-size: 13px;
  font-weight: 800;
}

.gym-concept a,
.gym-footer a {
  color: var(--gym-white);
  text-decoration: none;
}

.gym-nav {
  position: sticky;
  top: 42px;
  z-index: 60;
  padding: 16px 0;
}

.gym-nav__inner {
  border: 1px solid var(--gym-line);
  border-radius: 999px;
  background: rgba(27, 29, 32, 0.78);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.28);
  padding: 10px 12px 10px 16px;
  backdrop-filter: blur(20px);
}

.gym-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gym-white);
  min-width: max-content;
  text-decoration: none;
}

.gym-brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gym-orange), #ff835f);
  color: #15110f;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.gym-brand strong,
.gym-brand small {
  display: block;
}

.gym-brand small {
  color: var(--gym-muted);
  font-size: 12px;
}

.gym-links {
  display: flex;
  gap: 17px;
}

.gym-links a {
  color: var(--gym-muted);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gym-links a:hover,
.gym-links .is-active {
  color: var(--gym-white);
}

.gym-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid rgba(214, 90, 56, 0.4);
  border-radius: 999px;
  background: var(--gym-orange);
  color: #15110f !important;
  padding: 0 22px;
  font-weight: 950;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gym-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(214, 90, 56, 0.28);
  background: #e96b48;
}

.gym-button:focus-visible {
  outline: 3px solid rgba(214, 90, 56, 0.42);
  outline-offset: 3px;
}

.gym-button--ghost,
.gym-button--soft {
  background: transparent;
  border-color: var(--gym-line-strong);
  color: var(--gym-white) !important;
}

.gym-button--soft {
  min-height: 46px;
  color: var(--gym-white) !important;
}

.gym-button--ghost:hover,
.gym-button--soft:hover {
  background: rgba(243, 243, 241, 0.08);
  border-color: rgba(243, 243, 241, 0.34);
  box-shadow: none;
}

.gym-hero,
.gym-page-hero,
.gym-section {
  padding: clamp(72px, 9vw, 124px) 0;
}

.gym-hero__grid,
.gym-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.gym-kicker {
  margin: 0 0 16px;
  color: var(--gym-orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gym-hero h1,
.gym-page-hero h1,
.gym-section h2,
.gym-final h2 {
  margin: 0;
  color: var(--gym-white);
  font-size: clamp(38px, 5.8vw, 76px);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.gym-page-hero h1 {
  max-width: 11ch;
}

.gym-hero p,
.gym-page-hero p,
.gym-section-head p,
.gym-split > div > p,
.gym-price-card p,
.gym-class-grid p,
.gym-coach p,
.gym-story-stack p,
.gym-story-grid p,
.gym-faq p,
.gym-location-card p,
.gym-final p {
  color: var(--gym-muted);
  font-size: 17px;
  line-height: 1.7;
}

.gym-hero__copy > p:not(.gym-kicker),
.gym-page-hero p {
  max-width: 660px;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

.gym-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gym-hero__visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gym-line);
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(243, 243, 241, 0.08), rgba(214, 90, 56, 0.08)), var(--gym-carbon);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
}

.gym-trust {
  border-block: 1px solid var(--gym-line);
  background: rgba(243, 243, 241, 0.035);
  padding: 22px 0;
}

.gym-trust .gym-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gym-trust span,
.gym-plan-label,
.gym-class-grid small,
.gym-story-grid small,
.gym-coach em {
  border: 1px solid var(--gym-line);
  border-radius: 999px;
  background: rgba(243, 243, 241, 0.06);
  color: var(--gym-soft);
  padding: 9px 12px;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.gym-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.76fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
}

.gym-section-head h2,
.gym-split h2 {
  max-width: 12ch;
  font-size: clamp(42px, 5.4vw, 78px);
}

.gym-pricing-grid,
.gym-class-grid,
.gym-coach-grid,
.gym-story-grid,
.gym-info-grid,
.gym-faq-grid,
.gym-zone-grid {
  display: grid;
  gap: 14px;
}

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

.gym-price-card,
.gym-class-grid article,
.gym-coach,
.gym-story-grid article,
.gym-story-stack article,
.gym-info-grid article,
.gym-faq details,
.gym-hours-card,
.gym-location-card,
.gym-form,
.gym-map,
.gym-zone-grid article,
.gym-timetable {
  border: 1px solid var(--gym-line);
  border-radius: var(--gym-radius);
  background: linear-gradient(180deg, rgba(243, 243, 241, 0.055), rgba(243, 243, 241, 0.024)), var(--gym-carbon);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.gym-price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}

.gym-price-card.is-highlighted {
  border-color: rgba(214, 90, 56, 0.46);
  background: linear-gradient(180deg, rgba(214, 90, 56, 0.14), rgba(243, 243, 241, 0.03)), var(--gym-carbon);
}

.gym-price-card h3,
.gym-class-grid h2,
.gym-coach h3,
.gym-story-grid h2,
.gym-story-stack strong,
.gym-location-card h2,
.gym-timetable h2 {
  margin: 0 0 10px;
  color: var(--gym-white);
  font-size: 24px;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.gym-price {
  margin: 22px 0;
}

.gym-price strong {
  display: block;
  color: var(--gym-white);
  font-size: 42px;
  letter-spacing: -0.035em;
}

.gym-price span,
.gym-class-grid span,
.gym-hours-card span,
.gym-timetable span,
.gym-story-grid span {
  color: var(--gym-orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gym-price-card ul,
.gym-check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.gym-price-card li,
.gym-check-list li {
  color: var(--gym-muted);
}

.gym-price-card li::before,
.gym-check-list li::before {
  content: "•";
  color: var(--gym-orange);
  margin-right: 8px;
}

.gym-price-card .gym-button {
  margin-top: auto;
}

.gym-band,
.gym-trial-strip {
  border-block: 1px solid var(--gym-line);
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 90, 56, 0.12), transparent 26%),
    rgba(243, 243, 241, 0.035);
}

.gym-zone-grid {
  grid-template-columns: 1fr 1fr;
}

.gym-zone-grid article {
  overflow: hidden;
  padding: 12px;
}

.gym-zone-grid img {
  width: 100%;
  border-radius: 22px;
  background: #111;
}

.gym-zone-grid h3,
.gym-zone-grid p {
  padding-inline: 12px;
}

.gym-class-grid,
.gym-story-grid,
.gym-info-grid,
.gym-faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gym-class-grid article,
.gym-coach,
.gym-story-grid article,
.gym-info-grid article,
.gym-faq details,
.gym-story-stack article,
.gym-location-card,
.gym-form,
.gym-map,
.gym-timetable,
.gym-hours-card {
  padding: 24px;
}

.gym-class-grid a,
.gym-coach a {
  color: var(--gym-orange);
  font-weight: 900;
  text-decoration: none;
}

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

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

.gym-coach > span:first-child {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 24px;
  background: var(--gym-orange-soft);
  color: var(--gym-orange);
  font-size: 22px;
  font-weight: 950;
}

.gym-coach small {
  display: block;
  color: var(--gym-sand);
  font-weight: 900;
}

.gym-story-stack {
  display: grid;
  gap: 12px;
}

.gym-hours-card {
  display: grid;
  gap: 12px;
}

.gym-hours-card p,
.gym-timetable div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  border-bottom: 1px solid var(--gym-line);
  padding: 0 0 14px;
}

.gym-hours-card p:last-child,
.gym-timetable div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.gym-hours-card strong,
.gym-timetable strong {
  color: var(--gym-white);
}

.gym-page-hero {
  border-bottom: 1px solid var(--gym-line);
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 90, 56, 0.22), transparent 27%),
    linear-gradient(180deg, #101113, #17191c);
}

.gym-timetable {
  display: grid;
  gap: 18px;
}

.gym-map {
  display: grid;
  place-items: center;
  min-height: 420px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(214, 90, 56, 0.22), transparent 34%),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(243, 243, 241, 0.045) 18px 20px),
    var(--gym-carbon);
}

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

.gym-form label {
  display: grid;
  gap: 8px;
  color: var(--gym-soft);
  font-size: 13px;
  font-weight: 850;
}

.gym-form .wide {
  grid-column: 1 / -1;
}

.gym-form input,
.gym-form select,
.gym-form textarea {
  width: 100%;
  border: 1px solid var(--gym-line-strong);
  border-radius: 18px;
  background: rgba(18, 19, 21, 0.82);
  color: var(--gym-white);
  padding: 14px 15px;
  font: inherit;
}

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

.gym-form input::placeholder,
.gym-form textarea::placeholder {
  color: rgba(154, 154, 150, 0.72);
}

.gym-form input:focus,
.gym-form select:focus,
.gym-form textarea:focus {
  border-color: rgba(214, 90, 56, 0.58);
  outline: 3px solid rgba(214, 90, 56, 0.14);
}

.gym-form .is-invalid {
  border-color: #ff7a5b;
  box-shadow: 0 0 0 4px rgba(214, 90, 56, 0.16);
}

.gym-hp {
  position: absolute !important;
  left: -9999px !important;
}

.gym-form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--gym-muted);
  font-size: 13px;
  line-height: 1.5;
}

.gym-form-status.is-error {
  color: #ff9a80;
}

.gym-form-status.is-success {
  color: #a7e1b4;
}

.gym-faq-grid {
  grid-template-columns: 1fr 1fr;
}

.gym-faq summary {
  cursor: pointer;
  color: var(--gym-white);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.gym-final {
  padding: 96px 0;
  border-top: 1px solid var(--gym-line);
  background: linear-gradient(135deg, #1a0f0b, #111214);
  text-align: center;
}

.gym-final h2 {
  max-width: 11ch;
  margin-inline: auto;
  font-size: clamp(48px, 7vw, 96px);
}

.gym-final p {
  max-width: 700px;
  margin: 22px auto 0;
}

.gym-final .gym-actions {
  justify-content: center;
}

.gym-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(243, 243, 241, 0.1);
  background: #0c0d0f;
  color: var(--gym-muted);
}

@media (prefers-reduced-motion: no-preference) {
  .gym-button,
  .gym-price-card,
  .gym-class-grid article,
  .gym-coach,
  .gym-story-grid article,
  .gym-zone-grid article {
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  }

  .gym-price-card:hover,
  .gym-class-grid article:hover,
  .gym-coach:hover,
  .gym-story-grid article:hover,
  .gym-zone-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(214, 90, 56, 0.34);
  }
}

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

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

@media (max-width: 960px) {
  .gym-hero__grid,
  .gym-split,
  .gym-section-head {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .gym-container {
    width: min(100% - 28px, 1180px);
  }

  .gym-concept__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 10px 0;
  }

  .gym-nav {
    top: 67px;
  }

  .gym-nav__inner {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 28px;
  }

  .gym-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .gym-links a {
    white-space: nowrap;
  }

  .gym-button--nav {
    width: 100%;
  }

  .gym-hero,
  .gym-page-hero,
  .gym-section {
    padding: 62px 0;
  }

  .gym-hero h1,
  .gym-page-hero h1,
  .gym-section h2,
  .gym-final h2 {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: clamp(40px, 11vw, 52px);
    letter-spacing: -0.035em;
  }

  .gym-hero h1 {
    max-width: 7.9ch;
  }

  .gym-hero__copy > p:not(.gym-kicker),
  .gym-page-hero p {
    max-width: 31ch;
    overflow-wrap: anywhere;
  }

  .gym-hero p,
  .gym-page-hero p,
  .gym-section-head p,
  .gym-split > div > p,
  .gym-price-card p,
  .gym-class-grid p,
  .gym-coach p,
  .gym-story-stack p,
  .gym-story-grid p,
  .gym-faq p,
  .gym-location-card p,
  .gym-final p {
    font-size: 16px;
  }

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

  .gym-hero__visual {
    border-radius: 30px;
  }

  .gym-pricing-grid,
  .gym-class-grid,
  .gym-coach-grid,
  .gym-coach-grid--full,
  .gym-story-grid,
  .gym-info-grid,
  .gym-faq-grid,
  .gym-zone-grid,
  .gym-form {
    grid-template-columns: 1fr;
  }

  .gym-form .wide {
    grid-column: auto;
  }

  .gym-hours-card p,
  .gym-timetable div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .gym-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
