@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/raleway/v37/1Ptug8zYS_SKggPNyC0ITw.woff2") format("woff2");
}

:root {
  --yellow: #ffca0a;
  --black: #000;
  --charcoal: #111;
  --ink: #171717;
  --muted: #5f5f5f;
  --line: #dedede;
  --paper: #fff;
  --soft: #f6f6f6;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", "Source Sans Pro", Arial, sans-serif;
  background: var(--black);
  color: var(--ink);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
}

.site-nav a {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--yellow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: min(720px, 82vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

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

.hero-media {
  background: url("assets/hero.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.22)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 170px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.12;
  letter-spacing: 0;
}

p {
  line-height: 1.68;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.button-primary {
  background: var(--yellow);
  color: #0d0d0d;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #fff;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
}

.button-ghost.dark {
  border-color: #1f1f1f;
  color: #111;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--yellow);
  color: var(--yellow);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--yellow);
  color: #0b0b0b;
}

.stat {
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: center;
  border-right: 1px solid rgba(0, 0, 0, 0.18);
  text-align: center;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  font-size: clamp(1.7rem, 4vw, 3.5rem);
  line-height: 1;
}

.stat span {
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section {
  width: 100%;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 54px);
  background: #fff;
}

.section > * {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: end;
}

.intro-section > * {
  width: auto;
  margin: 0;
}

.intro-section p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-dark {
  background: #000;
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

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

.class-grid,
.coach-grid,
.offer-grid,
.pricing-grid,
.community-grid {
  display: grid;
  gap: 18px;
}

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

.class-card,
.coach-card,
.offer-card,
.price-card,
.community-grid article,
.contact-card {
  border-radius: 8px;
  overflow: hidden;
}

.class-card,
.coach-card,
.offer-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.class-card img,
.offer-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.class-card-body,
.coach-card-body,
.offer-card-body {
  padding: 22px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag-row span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 202, 10, 0.42);
  border-radius: 4px;
  color: var(--yellow);
  font-size: 0.77rem;
  font-weight: 800;
}

.schedule-section {
  background: #fff;
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.schedule-image-link {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f3f3f3;
}

.schedule-image-link img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.schedule-panel {
  display: grid;
  align-content: center;
  padding: 28px;
  border-radius: 8px;
  background: #101010;
  color: #fff;
}

.schedule-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.wodify-frame {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.wodify-frame iframe {
  display: block;
  width: 100%;
  min-height: 680px;
  border: 0;
}

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

.price-card {
  display: grid;
  gap: 12px;
  min-height: 238px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
}

.price-card strong {
  color: #000;
  font-size: 2rem;
  line-height: 1;
}

.price-card p {
  color: var(--muted);
}

.personal-training {
  margin-top: 22px;
  padding: 28px;
  border-radius: 8px;
  background: #0f0f0f;
  color: #fff;
}

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

.coach-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.coach-country {
  margin-bottom: 8px;
  color: var(--yellow) !important;
  font-weight: 800;
}

.coach-focus {
  color: #fff !important;
  font-weight: 800;
}

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

.offer-card {
  background: #fff;
  border-color: var(--line);
}

.offer-card-body p,
.offer-card-body li {
  color: var(--muted);
}

.offer-card-body ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.offer-card-body li {
  margin-bottom: 10px;
  line-height: 1.55;
}

.offer-intro {
  color: #111 !important;
  font-weight: 800;
}

.text-link {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

.section-light .text-link {
  color: #000;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 7vw, 92px);
  background: #fff;
}

.split-section > * {
  width: auto;
  margin: 0;
}

.split-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.community-section {
  background: #111;
  color: #fff;
}

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

.community-grid article {
  padding: 26px;
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.community-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-section {
  background: var(--yellow);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 24px;
}

.contact-card {
  padding: 32px;
  background: #fff;
}

.contact-list {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 32px;
  border-radius: 8px;
  background: #0c0c0c;
  color: #fff;
}

.contact-list a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.social-list a {
  color: var(--yellow);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 54px);
  background: #000;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  line-height: 1.4;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .class-grid,
  .coach-grid,
  .pricing-grid,
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-section,
  .split-section,
  .schedule-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 74px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 74px 12px auto 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border-radius: 8px;
    background: #070707;
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding-top: 126px;
    padding-bottom: 46px;
  }

  .stat-band,
  .class-grid,
  .coach-grid,
  .pricing-grid,
  .offer-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
