:root {
  --bg: #050505;
  --ink: #f6f6f0;
  --muted: #aaa9a2;
  --panel: #111;
  --panel-2: #191919;
  --line: #30302c;
  --accent: #ff3b1f;
  --accent-2: #ff6a3d;
  --max: 1200px;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--accent); color: #fff; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  background: var(--accent);
  color: #050505;
  padding: .75rem 1rem;
  font-weight: 900;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav {
  width: min(100% - 28px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: #fff;
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}
.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }

.nav-toggle {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  background: var(--panel);
  color: #fff;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  position: absolute;
  inset: 76px 0 auto;
  display: none;
  padding: 1rem;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav-menu.is-open { display: grid; }
.nav-menu a {
  padding: .85rem 1rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
}
.nav-menu a[aria-current="page"] { color: var(--accent); }
.nav-cta,
.button.nav-cta { display: none; background: var(--accent); color: #fff; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: .88rem 1.1rem;
  background: #fff;
  color: #050505;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.button--accent { background: var(--accent); color: #fff; }
.button--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.8); }
.button:hover { transform: translateY(-1px); }
.button--accent:hover { background: var(--accent-2); }
.button--ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero {
  min-height: calc(88svh - 76px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #050505;
}
.hero--short { min-height: 56svh; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.38) 52%, rgba(0,0,0,.58)),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.64));
}
.hero__content {
  position: relative;
  width: min(100% - 28px, var(--max));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, .display {
  max-width: 1020px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 11vw, 8rem);
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero__title {
  max-width: 760px;
  font-size: clamp(2.8rem, 9vw, 6.4rem);
  line-height: .86;
}
.hero__title span {
  display: block;
}
.hero__title span:last-child {
  color: var(--accent);
}
.hero--short h1 {
  max-width: 980px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: .94;
}
h2 {
  font-size: clamp(2.2rem, 6vw, 5.4rem);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}
h3 { font-size: 1.25rem; line-height: 1.15; text-transform: uppercase; }
.lead, .hero__lead {
  max-width: 660px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.actions, .hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

.section { padding: clamp(4rem, 9vw, 7rem) 0; border-top: 1px solid rgba(255,255,255,.08); }
.section--home-team {
  padding-top: clamp(2.4rem, 5vw, 4rem);
}
.section--home-team .section-head {
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}
.section--team-home {
  padding-top: clamp(1.4rem, 3vw, 2.2rem);
}
.section--team-home .section-head {
  margin-bottom: clamp(.75rem, 1.8vw, 1.25rem);
}
.section--catalog {
  padding-top: clamp(2.4rem, 5vw, 4rem);
}
.catalog-hero {
  min-height: clamp(42svh, 50svh, 56svh);
}
.catalog-block + .catalog-block {
  padding-top: 0;
}
.catalog-block__head {
  display: grid;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.catalog-block__head h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 4vw, 3rem);
}
.catalog-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.catalog-grid--products {
  grid-template-columns: 1fr;
}
.catalog-card {
  display: grid;
  gap: .9rem;
  min-height: 100%;
  padding: 1.15rem;
  background: #111;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
}
.catalog-card__meta {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.catalog-card h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
}
.catalog-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
}
.catalog-card__description {
  color: rgba(255,255,255,.58);
  font-size: .95rem;
}
.catalog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: .35rem;
}
.catalog-card__footer strong {
  font-size: 1.15rem;
  font-weight: 950;
}
.section--light { background: #f3f0e7; color: #111; }
.section--light .muted, .section--light .section-head p { color: #666057; }
.container { width: min(100% - 28px, var(--max)); margin: 0 auto; }
.section-head { display: grid; gap: 1rem; margin-bottom: 2rem; }
.section-head p, .muted { color: var(--muted); }

.grid { display: grid; gap: 1rem; }
.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }

.card {
  min-height: 100%;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  overflow: hidden;
}
.section--light .card {
  background: #fff;
  border-color: #ded8cc;
}
.card__body { padding: 1.2rem; }
.card__image { aspect-ratio: 4 / 3; overflow: hidden; background: #222; }
.card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.card:hover .card__image img { transform: scale(1.04); }
.trainer-card .card__image { aspect-ratio: 1 / 1; }

.trainer-showcase {
  min-height: calc(100svh - 76px);
  padding: clamp(2.2rem, 6vw, 4.4rem) 0 clamp(3rem, 7vw, 5.5rem);
  background: linear-gradient(180deg, #252525 0%, #191919 100%);
}
.trainer-showcase__head {
  display: grid;
  gap: .8rem;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}
.trainer-showcase__head h1 {
  margin: 0;
  color: rgba(255,255,255,.88);
}
.trainer-showcase__head p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.62);
}
.trainer-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(275px, 82vw);
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  border: 1px solid rgba(255,255,255,.1);
  background: #080808;
}
.trainer-tile {
  position: relative;
  min-height: clamp(500px, 72svh, 700px);
  display: block;
  overflow: hidden;
  scroll-snap-align: start;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}
.trainer-track--compact .trainer-tile { min-height: clamp(430px, 58svh, 580px); }
.trainer-tile + .trainer-tile { border-left: 1px solid rgba(255,255,255,.08); }
.trainer-tile img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
  transition: transform .5s ease, filter .5s ease;
}
.trainer-tile__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04) 25%, rgba(0,0,0,.86) 100%),
    linear-gradient(90deg, rgba(0,0,0,.28), rgba(0,0,0,.04) 45%, rgba(0,0,0,.32));
  transition: background .35s ease;
}
.trainer-tile__quote {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(78%, 360px);
  color: rgba(255,255,255,.9);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -44%);
  transition: opacity .32s ease, transform .32s ease;
  pointer-events: none;
}
.trainer-tile__quote::before,
.trainer-tile__quote::after {
  content: "\"";
  display: block;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 950;
  line-height: .7;
}
.trainer-tile__quote::before { margin-bottom: .45rem; }
.trainer-tile__quote::after { margin-top: .65rem; }
.trainer-tile:hover .trainer-tile__shade,
.trainer-tile:focus-visible .trainer-tile__shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.88)),
    linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.34));
}
.trainer-tile:hover .trainer-tile__quote,
.trainer-tile:focus-visible .trainer-tile__quote {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.trainer-tile__name,
.trainer-tile__cta {
  position: absolute;
  z-index: 2;
  bottom: 1.35rem;
  text-transform: uppercase;
  line-height: 1;
}
.trainer-tile__name {
  left: 1rem;
  max-width: 42%;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 950;
}
.trainer-tile__cta {
  right: 1rem;
  color: rgba(255,255,255,.72);
  font-size: clamp(.82rem, 1.8vw, 1rem);
  font-weight: 850;
  white-space: nowrap;
}
.trainer-tile:hover img,
.trainer-tile:focus-visible img {
  transform: scale(1.065);
  filter: contrast(1.06) saturate(1.05);
}
.trainer-tile:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}
.trainer-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.profile-hero {
  min-height: calc(100svh - 76px);
  display: grid;
  background: #101010;
}
.profile-hero__media {
  min-height: 55svh;
  position: relative;
  overflow: hidden;
}
.profile-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.48));
}
.profile-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.profile-hero__content {
  display: grid;
  align-content: center;
  padding: clamp(2rem, 6vw, 5rem);
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .7rem;
}
.profile-tags span {
  border: 1px solid rgba(255,255,255,.18);
  padding: .55rem .7rem;
  color: rgba(255,255,255,.76);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.profile-grid {
  display: grid;
  gap: 1.5rem;
}
.profile-copy {
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.profile-copy .button { margin-top: 1rem; }

.booking-panel {
  margin-top: 2rem;
  display: grid;
  gap: .75rem;
  padding: 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
}
.booking-panel span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.booking-panel strong { display: block; margin-top: .2rem; font-size: 1.15rem; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-top: 2rem;
}
.stat {
  padding: 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
}
.stat strong { display: block; font-size: 2rem; line-height: 1; }

.direction-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
}
.direction-card p { color: var(--muted); }

.strip {
  min-height: 560px;
  display: grid;
  overflow: hidden;
  background: #0b0b0b;
}
.strip__image { min-height: 300px; background: #222; }
.strip__image img { width: 100%; height: 100%; object-fit: cover; }
.strip__content {
  display: grid;
  align-content: center;
  padding: clamp(2rem, 6vw, 5rem) max(1rem, calc((100vw - var(--max)) / 2));
}
.strip__content-inner { width: min(100% - 28px, 580px); margin: 0 auto; }
.strip:nth-of-type(even) { background: #111; }

.class-showcase {
  background: linear-gradient(180deg, #252525 0%, #191919 100%);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}
.class-showcase__head {
  width: min(100% - 28px, var(--max));
  margin: 0 auto clamp(1.6rem, 4vw, 2.8rem);
}
.class-showcase__head h2 {
  max-width: 1120px;
  color: rgba(255,255,255,.84);
}
.class-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 82vw);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  background: #080808;
  border: 1px solid rgba(255,255,255,.1);
}
.class-tile {
  min-height: clamp(430px, 58svh, 560px);
  position: relative;
  display: block;
  overflow: hidden;
  scroll-snap-align: start;
  isolation: isolate;
  border: 0;
  outline: 0;
}
.class-grid--compact .class-tile { min-height: clamp(340px, 48svh, 460px); }
.class-tile { border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.class-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: contrast(1.04) saturate(.9);
  transition: transform .5s ease, filter .5s ease;
}
.class-tile__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.06) 22%, rgba(0,0,0,.86) 100%),
    linear-gradient(90deg, rgba(0,0,0,.32), rgba(0,0,0,.04) 48%, rgba(0,0,0,.36));
  transition: background .35s ease;
}
.class-tile__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  color: #fff;
}
.class-tile__content h3 {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1.35rem;
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}
.class-tile__content p {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78%, 360px);
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -44%);
  transition: opacity .32s ease, transform .32s ease;
}
.class-tile__content p::before,
.class-tile__content p::after {
  content: "\"";
  display: block;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 950;
  line-height: .7;
}
.class-tile__content p::before { margin-bottom: .45rem; }
.class-tile__content p::after { margin-top: .65rem; }
.class-tile:hover img,
.class-tile:focus-visible img {
  transform: scale(1.065);
  filter: contrast(1.06) saturate(1.02);
}
.class-tile:hover .class-tile__shade,
.class-tile:focus-visible .class-tile__shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.9)),
    linear-gradient(90deg, rgba(0,0,0,.6), rgba(0,0,0,.34));
}
.class-tile:hover .class-tile__content p,
.class-tile:focus-visible .class-tile__content p {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.class-tile:focus-visible {
  box-shadow: inset 0 0 0 3px var(--accent);
}

.schedule-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(180deg, #050505, #111);
  border-top: 1px solid rgba(255,255,255,.08);
}
.schedule-grid {
  display: grid;
  gap: 1rem;
}
.schedule-card {
  min-height: 280px;
  display: grid;
  align-content: end;
  gap: .8rem;
  padding: clamp(1.1rem, 3vw, 1.8rem);
  background: #111;
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  position: relative;
}
.schedule-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(255,59,31,.16));
  opacity: .7;
}
.schedule-card > * {
  position: relative;
  z-index: 1;
}
.schedule-card span {
  color: rgba(255,255,255,.55);
  font-size: .75rem;
  font-weight: 950;
  text-transform: uppercase;
}
.schedule-card strong {
  display: block;
  color: #fff;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  line-height: .85;
  text-transform: uppercase;
}
.schedule-card p {
  max-width: 460px;
  margin: 0;
  color: rgba(255,255,255,.68);
}
.schedule-card--accent {
  background: var(--accent);
  color: #fff;
}
.schedule-card--accent span,
.schedule-card--accent p { color: rgba(255,255,255,.82); }
.schedule-card--accent::before { background: linear-gradient(180deg, transparent, rgba(0,0,0,.18)); }
.schedule-card--wide strong {
  font-size: clamp(2.2rem, 6vw, 4.8rem);
}
.schedule-card--wide .button {
  justify-self: start;
  margin-top: .5rem;
}

.feature-list {
  display: grid;
  gap: .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-weight: 850;
}

.faq { display: grid; gap: .75rem; }
details {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 1rem;
}
summary { cursor: pointer; font-weight: 950; text-transform: uppercase; }
details p { margin: .75rem 0 0; color: var(--muted); }

.form { display: grid; gap: .85rem; }
.field { display: grid; gap: .35rem; }
label { font-weight: 850; text-transform: uppercase; font-size: .82rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  background: #0b0b0b;
  color: #fff;
  padding: .9rem 1rem;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.contact-list { display: grid; gap: .75rem; padding: 0; margin: 1.25rem 0 0; list-style: none; }
.contact-list a { font-weight: 900; text-decoration: none; }

.contact-hero {
  min-height: calc(82svh - 76px);
  display: grid;
  align-items: end;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(2.6rem, 6vw, 4.2rem);
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48) 58%, rgba(0,0,0,.64)),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.62)),
    url("assets/home/studio.jpg") center 42% / cover;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-hero__grid {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}
.contact-hero__grid > * { min-width: 0; }
.contact-hero h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(3.1rem, 7vw, 6.3rem);
  line-height: .88;
}
.contact-title span {
  display: block;
}
.contact-title span:last-child {
  font-size: .72em;
  line-height: .92;
}
.contact-hero__copy {
  max-width: 100%;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.4rem;
}
.contact-panel-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: #050505;
}
.contact-layout {
  display: grid;
  gap: 1rem;
}
.contact-info,
.contact-form {
  min-height: 100%;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.12);
}
.contact-info {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  align-content: space-between;
  gap: 2rem;
}
.contact-info h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}
.contact-methods {
  display: grid;
  border-top: 1px solid rgba(255,255,255,.12);
}
.contact-methods a,
.contact-note {
  display: grid;
  gap: .25rem;
  padding: 1rem 0;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-methods span,
.contact-note span {
  color: rgba(255,255,255,.52);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-methods strong,
.contact-note strong {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.2;
}
.contact-form {
  padding: clamp(1rem, 3vw, 2rem);
}
.contact-form textarea { min-height: 150px; }
.map-section {
  padding: 0 0 clamp(4rem, 8vw, 6rem);
  background: #050505;
}
.map-head {
  display: grid;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}
.map-head h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 6vw, 5rem);
}
.map-frame {
  min-height: clamp(420px, 62vh, 680px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #111;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
  filter: grayscale(1) invert(.92) contrast(.92);
}

.auth-hero {
  min-height: calc(54svh - 76px);
  display: grid;
  align-items: end;
  padding: clamp(2.8rem, 6vw, 4.6rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.34) 58%, rgba(0,0,0,.68)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.64)),
    url("assets/home/studio.jpg") center 38% / cover;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.auth-hero__grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
}
.auth-hero__panel {
  max-width: 520px;
  justify-self: start;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(7,7,7,.54);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
}
.auth-hero__panel p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}
.auth-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1rem;
}
.auth-hero__features span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 .72rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  font-size: .7rem;
  font-weight: 950;
  text-transform: uppercase;
}
.auth-hero h1 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 8.4vw, 6.8rem);
  line-height: .84;
}
.auth-hero h1 span {
  display: block;
}
.auth-hero h1 span:last-child {
  color: var(--accent);
}
.auth-shell {
  padding: clamp(2rem, 5vw, 3.6rem) 0 clamp(3rem, 7vw, 5rem);
  background: #050505;
}
.auth-shell__grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.auth-shell__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.auth-shell__head .eyebrow {
  width: 100%;
  margin-bottom: 0;
}
.auth-shell__head h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}
.auth-status {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}
.auth-status[data-state="error"] { color: #ff9482; }
.auth-status[data-state="success"] { color: #a8f0c3; }
.auth-panels {
  display: grid;
  gap: 1rem;
}
.auth-panel {
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
}
.auth-panels .auth-panel--full {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.auth-panel h2 {
  margin-bottom: .4rem;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}
.auth-panel p {
  color: var(--muted);
  margin-bottom: 0;
}
.auth-form-grid {
  display: grid;
  max-width: 720px;
  margin: 0 auto;
  gap: clamp(.85rem, 2vw, 1rem);
}
.auth-form-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: .7rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: linear-gradient(180deg, #121212, #0c0c0c);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
}
.auth-form-card--primary {
  border-color: rgba(255,59,31,.38);
  background:
    linear-gradient(180deg, rgba(255,59,31,.08), rgba(255,59,31,0) 38%),
    linear-gradient(180deg, #151515, #0d0d0d);
}
.auth-form-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}
.auth-form-card p {
  max-width: 560px;
  color: rgba(255,255,255,.62);
}
.auth-form-card[hidden] {
  display: none !important;
}
.auth-form-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.auth-form-card__top .eyebrow {
  margin-bottom: 0;
}
.auth-switch {
  min-height: 34px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 0 .8rem;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font: inherit;
  font-size: .7rem;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.auth-switch:hover {
  border-color: var(--accent);
  color: #fff;
  background: rgba(255,59,31,.14);
}
.auth-form-grid .form {
  gap: .7rem;
  margin-top: .35rem;
}
.auth-form-grid .button {
  width: 100%;
  margin-top: .25rem;
}
.auth-dashboard[hidden],
.auth-panels[hidden] {
  display: none !important;
}
.auth-dashboard {
  display: grid;
  gap: 1rem;
}
.client-panel {
  padding: clamp(1rem, 2.4vw, 1.4rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    #080808;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
}
.client-panel__top {
  display: grid;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.client-panel__top h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4rem);
}
.client-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.client-panel__grid {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}
.client-profile {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1rem;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
}
.client-avatar {
  width: 74px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 950;
  text-transform: uppercase;
}
.client-profile__name,
.client-profile__row {
  display: grid;
  gap: .25rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.client-profile__name span,
.client-profile__row span {
  color: rgba(255,255,255,.52);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.client-profile__name strong {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}
.client-profile__row strong {
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  overflow-wrap: anywhere;
}
.client-profile__link {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}
.client-main {
  display: grid;
  gap: 1rem;
  min-width: 0;
}
.auth-summary {
  display: grid;
  gap: 1rem;
}
.auth-summary__card {
  min-height: 145px;
  display: grid;
  align-content: space-between;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.01)),
    #101010;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
}
.auth-summary__card--accent {
  border-color: rgba(255,59,31,.42);
  background:
    linear-gradient(180deg, rgba(255,59,31,.18), rgba(255,59,31,.02)),
    #101010;
}
.auth-summary__card span {
  display: block;
  color: rgba(255,255,255,.56);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.auth-summary__card strong {
  display: block;
  margin: .35rem 0;
  font-size: clamp(1.8rem, 5vw, 2.85rem);
  line-height: .92;
  text-transform: uppercase;
}
.auth-summary__card p {
  margin: 0;
  color: rgba(255,255,255,.54);
  font-size: .9rem;
}
.client-next {
  display: grid;
  gap: .85rem;
  padding: 1rem;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
}
.client-next__head {
  display: grid;
  gap: .25rem;
}
.client-next__head h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}
.client-next__grid {
  display: grid;
  gap: .75rem;
}
.client-next__grid a {
  display: grid;
  gap: .35rem;
  min-height: 150px;
  padding: 1rem;
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.012)),
    #090909;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.client-next__grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(255,59,31,.48);
  background:
    linear-gradient(180deg, rgba(255,59,31,.12), rgba(255,255,255,.012)),
    #090909;
}
.client-next__grid span {
  color: var(--accent);
  font-size: .74rem;
  font-weight: 950;
}
.client-next__grid strong {
  font-size: 1.05rem;
  line-height: 1.1;
  text-transform: uppercase;
}
.client-next__grid p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: .92rem;
}
.auth-profile {
  display: grid;
  gap: .85rem;
}
.auth-profile__meta {
  display: grid;
  gap: .2rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.auth-profile__meta span,
.auth-item span {
  color: rgba(255,255,255,.52);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.auth-profile__meta strong,
.auth-item strong {
  font-size: 1.05rem;
  font-weight: 900;
}
.auth-list {
  display: grid;
  gap: .75rem;
}
.client-section {
  display: grid;
  gap: .85rem;
  padding: 1rem;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
}
.client-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.client-section__head h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}
.auth-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  padding: 1rem;
  background: #090909;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
}
.auth-item__main {
  display: grid;
  gap: .2rem;
  min-width: 0;
}
.auth-item p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.auth-item b {
  font-size: 1rem;
  font-weight: 950;
}
.auth-item--download {
  align-items: start;
}
.auth-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 .65rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.74);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.auth-status-pill {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 .7rem;
  background: rgba(255,59,31,.12);
  border: 1px solid rgba(255,59,31,.28);
  color: #ffad9f;
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}
.auth-empty {
  display: grid;
  gap: .6rem;
  margin: 0;
  padding: 1rem;
  background: #0c0c0c;
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: 8px;
}
.auth-empty strong {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
}
.auth-empty p {
  margin: 0;
  color: rgba(255,255,255,.6);
}
.auth-empty .button {
  justify-self: start;
  min-height: 40px;
  margin-top: .25rem;
  padding: .72rem .9rem;
}
.auth-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

.site-footer {
  background: linear-gradient(180deg, #050505, #0c0c0c);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: clamp(2.2rem, 5vw, 3.4rem) 0 1.15rem;
}
.footer-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.footer-grid > div:first-child strong {
  display: block;
  max-width: 360px;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: .94;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: .6rem;
}
.footer-links strong {
  color: #fff;
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
}
.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .96rem;
}
.footer-links a:hover { color: var(--accent); }
.fine-print {
  max-width: 300px;
  margin: .9rem 0 0;
  color: rgba(255,255,255,.48);
  font-size: .9rem;
}

@media (min-width: 760px) {
  .nav-toggle { display: none; }
  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0;
    border: 0;
  }
  .nav-menu a { padding: .5rem .65rem; font-size: .72rem; }
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .section-head { grid-template-columns: minmax(0, 1fr) minmax(280px, 430px); align-items: end; }
  .booking-panel { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: end; }
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
  .strip { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .strip--reverse .strip__image { order: 2; }
  .strip__image { min-height: 560px; }
  .class-grid { grid-auto-columns: 50%; }
  .trainer-track { grid-auto-columns: minmax(360px, 50%); }
  .catalog-grid,
  .catalog-grid--products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .profile-hero__media { min-height: calc(100svh - 76px); }
  .profile-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, 520px); align-items: start; }
  .contact-hero__grid,
  .contact-layout,
  .map-head { grid-template-columns: minmax(0, 1fr) minmax(320px, 520px); }
  .auth-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(320px, 520px); }
  .auth-form-grid { align-items: start; }
  .client-panel__top {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
  .client-panel__grid {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    align-items: start;
  }
  .auth-summary { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .client-next__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .auth-dashboard { align-items: start; }
  .auth-dashboard .auth-panel--full { grid-column: 1 / -1; }
  .schedule-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .schedule-card--wide { grid-column: 1 / -1; min-height: 360px; }
  .footer-grid { grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(160px, .7fr)); }
}

@media (min-width: 980px) {
  .nav-cta,
  .button.nav-cta { display: inline-flex; background: var(--accent); color: #fff; }
}

@media (min-width: 1040px) {
  .class-grid {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }
  .trainer-track { grid-auto-columns: 25%; }
  .catalog-grid,
  .catalog-grid--products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
