@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap");

:root {
  --bg: #09090e;
  --bg-soft: #0e0e15;
  --surface: #13131c;
  --surface-2: #1a1a26;
  --surface-3: #222230;
  --text: #f2f2f8;
  --muted: #9a9cb0;
  --gold: #e8c872;
  --gold-dim: #c6a75e;
  --gold-deep: #a8893f;
  --gold-glow: rgba(232, 200, 114, 0.22);
  --success: #6ecf9a;
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(232, 200, 114, 0.32);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
  --header-h: 72px;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(232, 200, 114, 0.07), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(198, 167, 94, 0.04), transparent);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.container {
  width: min(var(--max), 92%);
  margin-inline: auto;
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0 0 32px;
  color: var(--muted);
  max-width: 560px;
  font-size: 1.05rem;
}

/* ── Symmetric layout system ── */
.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head .section-subtitle {
  margin-inline: auto;
}

.section-label--center {
  justify-content: center;
}

.section-label--center::before,
.section-label--center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-label--center::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-cta {
  text-align: center;
  margin-top: 28px;
}

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

.sym-grid--3 {
  grid-template-columns: 1fr;
}

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

.sym-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.sym-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.sym-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.sym-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 280px;
}

.sym-card__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #1a1408;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  box-shadow: 0 0 24px var(--gold-glow);
  margin-bottom: 16px;
}

.sym-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 200, 114, 0.12);
  border: 1px solid var(--border-gold);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.trainer-card-sym {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.trainer-card-sym:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.trainer-card-sym__photo,
.coach-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  width: 100%;
  background: var(--surface-2);
  flex-shrink: 0;
}

.trainer-card-sym__photo img,
.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.coach-photo--profile {
  max-width: 360px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
}

.coach-photo--catalog {
  width: 160px;
  height: 160px;
  border-radius: var(--radius);
}

.trainer-card-sym__body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trainer-card-sym__body h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.trainer-card-sym__body p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

/* ── Homepage trainer strip (compact) ── */
.section--trainers {
  padding: clamp(40px, 5vw, 64px) 0;
}

.section--trainers .section-head {
  margin-bottom: 24px;
}

.section--trainers .section-title {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.section--trainers .section-subtitle {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.trainer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 880px;
  width: 100%;
  margin-inline: auto;
}

.trainer-grid .trainer-card-sym {
  border-radius: var(--radius);
  min-width: 0;
}

.trainer-grid .trainer-card-sym__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  width: 100%;
  background: var(--surface-2);
}

.trainer-grid .trainer-card-sym__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.trainer-grid .trainer-card-sym__body {
  padding: 10px 6px 12px;
}

.trainer-grid .trainer-card-sym__body h3 {
  font-size: 0.82rem;
  line-height: 1.2;
}

.trainer-grid .trainer-card-sym__body p {
  font-size: 0.72rem;
  margin-bottom: 6px;
  line-height: 1.3;
}

.trainer-grid .badge {
  font-size: 0.62rem;
  padding: 2px 6px;
}

.quote-card-sym {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.quote-card-sym__text {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

.quote-card-sym__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.quote-card-sym__author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--border-gold);
  object-fit: cover;
}

/* ── Centered hero ── */
.hero-centered {
  padding: clamp(32px, 5vw, 56px) 0 clamp(40px, 6vw, 64px);
}

.hero-centered__intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}

.hero-centered__intro h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}

.hero-centered__intro h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-centered__panel {
  max-width: 680px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-centered__visual {
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-centered__visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.hero-centered__form {
  padding: 18px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}

.search-bar--hero {
  background: var(--surface);
  margin-bottom: 12px;
}

.hero-centered__body {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.hero-centered__body h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.hero-centered__body h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-centered__lead {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0;
}

.search-bar--centered,
.inline-form--centered,
.search-bar--hero {
  max-width: 100%;
  margin-inline: auto;
}

.hero-metrics--center {
  max-width: 520px;
  margin: 24px auto 0;
}

.trust-pills--center {
  justify-content: center;
}

.cta-panel--center {
  text-align: center;
}

.cta-panel--center .section-subtitle,
.cta-panel--center p {
  margin-inline: auto;
  max-width: 520px;
}

.cta-panel--center .inline-form--centered {
  margin-top: 8px;
}

.media-frame {
  margin: 0 0 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.split-sym {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.footer-copy {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 28px;
}

.footer-copy small {
  color: var(--muted);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 9, 14, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0.5;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo img {
  width: 158px;
  height: auto;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  position: relative;
}

.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.main-nav {
  display: none;
  position: absolute;
  inset: calc(var(--header-h) + 8px) 4% auto;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.main-nav.open { display: grid; gap: 4px; }

.main-nav a {
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(232, 200, 114, 0.1);
  color: var(--gold);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #1a1408;
  box-shadow: 0 8px 28px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(232, 200, 114, 0.35);
}

.btn-outline {
  border-color: var(--border-gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(232, 200, 114, 0.08);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: var(--surface);
}

/* ── Split Hero (new layout) ── */
.hero-split {
  padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 88px);
}

.hero-split__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-split__copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.06;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}

.hero-split__copy h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-split__lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-split__visual {
  position: relative;
}

.hero-split__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-split__frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-split__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(9, 9, 14, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 14px 18px;
}

.hero-split__badge strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
}

.hero-split__badge span {
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.hero-metric {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.hero-metric strong {
  display: block;
  font-size: 1.35rem;
  color: var(--gold);
}

.hero-metric span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Forms ── */
.search-bar,
.inline-form {
  display: grid;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.search-bar label span,
.inline-form label span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.search-bar input,
.search-bar select,
.inline-form input,
.inline-form select,
.inline-form textarea,
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.search-bar input::placeholder,
.inline-form input::placeholder,
.form-control::placeholder {
  color: #5c5e72;
}

.search-bar input:focus,
.search-bar select:focus,
.form-control:focus {
  outline: none;
  border-color: var(--border-gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.trust-pills span {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--surface);
}

.trust-pills span::before {
  content: "✓ ";
  color: var(--gold);
}

/* ── Timeline process ── */
.process-timeline {
  display: grid;
  gap: 0;
  position: relative;
}

.process-timeline__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}

.process-timeline__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-dim), transparent);
}

.process-timeline__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #1a1408;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  box-shadow: 0 0 24px var(--gold-glow);
  flex-shrink: 0;
}

.process-timeline__body {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.process-timeline__body h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.process-timeline__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── Bento features ── */
.bento {
  display: grid;
  gap: 14px;
}

.bento__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.bento__card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.bento__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232, 200, 114, 0.12);
  border: 1px solid var(--border-gold);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.bento__card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.bento__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.bento__card--wide {
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border-color: var(--border-gold);
}

/* ── Trainer rail ── */
.trainer-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.trainer-rail::-webkit-scrollbar {
  height: 4px;
}

.trainer-rail::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 4px;
}

.trainer-rail__card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.trainer-rail__card:hover {
  border-color: var(--border-gold);
}

.trainer-rail__card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.trainer-rail__body {
  padding: 16px;
}

.trainer-rail__body h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.trainer-rail__body h3 a:hover {
  color: var(--gold);
}

.trainer-rail__body p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ── Testimonials ── */
.quotes-row {
  display: grid;
  gap: 16px;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 24px;
}

.quote-card__text {
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 16px;
  color: var(--text);
}

.quote-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-card__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border-gold);
  object-fit: cover;
}

.quote-card__author strong {
  display: block;
  font-size: 0.92rem;
}

.rating {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* ── CTA panel ── */
.cta-panel {
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  pointer-events: none;
}

.cta-panel .section-title {
  position: relative;
}

.cta-panel p {
  color: var(--muted);
  position: relative;
  margin-bottom: 24px;
}

/* ── Footer (same concept, dark premium) ── */
.site-footer {
  background: #06060a;
  border-top: 1px solid var(--border);
  color: #c8cad8;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.site-footer::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin-bottom: 0;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-title {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.site-footer p {
  color: #9a9cb0;
  margin: 0 0 12px;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--gold);
}

.payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.payment-icon {
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 6px 10px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social a {
  font-size: 0.88rem;
  color: #9a9cb0;
}

.map-wrap iframe {
  width: 100%;
  min-height: 200px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  filter: grayscale(30%) contrast(1.1);
}

/* ── Cards (catalog, sports) ── */
.cards {
  display: grid;
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-body h3 {
  margin: 0 0 8px;
}

.card-body p {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 0.92rem;
}

.media-16x10,
.media-4x5,
.media-3x4,
.media-1x1 {
  overflow: hidden;
}

.media-16x10 { aspect-ratio: 16 / 10; }
.media-4x5 { aspect-ratio: 4 / 5; }
.media-3x4 { aspect-ratio: 3 / 4; }
.media-1x1 { aspect-ratio: 1 / 1; }

.media-16x10 img,
.media-4x5 img,
.media-3x4 img,
.media-1x1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--muted);
  margin-right: 6px;
}

.badge.success {
  color: var(--success);
  border-color: rgba(110, 207, 154, 0.35);
  background: rgba(110, 207, 154, 0.1);
}

/* ── Catalog ── */
.catalog-layout {
  display: grid;
  gap: 20px;
}

.filter-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.filter-box__top {
  display: block;
}

.filter-box__top h2 {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--gold);
}

.filter-box__close,
.filter-box__actions,
.catalog-filters-mobile,
.filter-backdrop {
  display: none;
}

.filter-box__scroll {
  display: block;
}

.filter-box h2 {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--gold);
}

.filter-group {
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.filter-group summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--text);
}

.filter-group summary::after {
  content: "+";
  color: var(--gold);
}

.filter-group[open] summary::after { content: "−"; }

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s ease;
}

.chip input { display: none; }

.chip.active {
  background: rgba(232, 200, 114, 0.15);
  border-color: var(--border-gold);
  color: var(--gold);
}

.filter-box input[type="range"] {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-dim), rgba(198, 167, 94, 0.2));
  margin: 8px 0;
}

.filter-box input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg);
}

.catalog-results {
  display: grid;
  gap: 16px;
}

.trainer-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.trainer-card:hover {
  border-color: var(--border-gold);
}

.trainer-card > img {
  display: none;
}

.trainer-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trainer-content .btn { margin-top: auto; align-self: flex-start; }

/* ── Content pages ── */
.grid-2 {
  display: grid;
  gap: 16px;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  height: 100%;
}

.content-card h2 {
  margin-top: 0;
  font-size: 1.15rem;
}

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

.price-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.price-row:last-child { border-bottom: 0; }

.split-sym > .content-card {
  text-align: left;
  align-items: flex-start;
}

.coach-photo--profile img {
  aspect-ratio: 1 / 1;
  object-position: center 15%;
}

.profile-photo img {
  aspect-ratio: 1 / 1;
  object-position: center 15%;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.social-links a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--muted);
}

.social-links a:hover {
  border-color: var(--border-gold);
  color: var(--gold);
}

/* ── Legacy page compat (minimal) ── */
.glass { background: transparent; border: 0; box-shadow: none; }
.section-dark { background: transparent; }

/* ── Chat & cookie ── */
.chat-widget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
}

.chat-button {
  border: 0;
  border-radius: 10px;
  padding: 12px 18px;
  color: #1a1408;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  box-shadow: 0 8px 28px var(--gold-glow);
  cursor: pointer;
}

.chat-window {
  margin-top: 8px;
  width: min(340px, calc(100vw - 32px));
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: none;
}

.chat-window.open { display: block; }

.chat-header {
  background: var(--surface-3);
  color: var(--gold);
  padding: 12px 14px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.chat-close {
  border: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.chat-log {
  max-height: 220px;
  overflow: auto;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.chat-msg {
  max-width: 88%;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
}

.chat-msg.bot { background: var(--surface); color: var(--muted); }
.chat-msg.user { margin-left: auto; background: rgba(232, 200, 114, 0.15); color: var(--text); }

.chat-form {
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding: 10px;
}

.chat-form input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px;
  background: var(--bg-soft);
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 16px;
  z-index: 65;
  display: none;
  gap: 10px;
  box-shadow: var(--shadow);
}

.cookie-banner.show { display: grid; }
.cookie-banner strong { color: var(--gold); }
.cookie-banner span { color: var(--muted); font-size: 0.9rem; }

.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 96px;
  background: var(--surface-3);
  border: 1px solid var(--border-gold);
  color: var(--text);
  padding: 11px 18px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 70;
}

.toast.show { opacity: 1; }

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-glow);
  outline-offset: 2px;
}

/* ── Responsive ── */
@media (min-width: 760px) {
  .main-nav {
    display: flex;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    gap: 4px;
  }

  .nav-toggle { display: none; }

  .hero-split__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .search-bar,
  .inline-form,
  .search-bar--hero {
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
  }

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

  .split-sym {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

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

@media (max-width: 1023px) {
  body.filter-open {
    overflow: hidden;
  }

  .catalog-filters-mobile {
    display: flex;
    position: sticky;
    top: calc(var(--header-h) + 8px);
    z-index: 30;
    margin-bottom: 8px;
  }

  .catalog-filter-toggle {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .catalog-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--bg);
    font-size: 0.75rem;
    font-weight: 700;
  }

  .catalog-filter-count[hidden] {
    display: none;
  }

  .filter-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .filter-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .filter-box {
    position: fixed;
    inset: auto 0 0;
    z-index: 210;
    max-height: min(88vh, 760px);
    margin: 0;
    padding: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    transform: translateY(105%);
    transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.45);
  }

  .filter-box.is-open {
    transform: translateY(0);
  }

  .filter-box__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px 12px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
  }

  .filter-box__top h2 {
    margin: 0;
  }

  .filter-box__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
  }

  .filter-box__scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    padding: 12px 20px 16px;
  }

  .filter-box__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--border);
    flex-shrink: 0;
    background: var(--surface);
  }

  .filter-group summary {
    -webkit-tap-highlight-color: transparent;
  }

  .filter-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .filter-chips::-webkit-scrollbar {
    display: none;
  }

  .filter-chips .chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .trainer-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .coach-photo--catalog {
    width: 140px;
    height: 140px;
    margin-inline: auto;
  }

  .trainer-content {
    align-items: center;
  }

  .trainer-content .btn {
    align-self: center;
  }
}

@media (min-width: 1024px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .sports-grid { grid-template-columns: repeat(3, 1fr); }
  .sym-grid--4 { grid-template-columns: repeat(4, 1fr); }

  .catalog-layout {
    grid-template-columns: 280px 1fr;
  }

  .filter-box {
    position: sticky;
    top: calc(var(--header-h) + 16px);
    inset: auto;
    transform: none;
    max-height: none;
    margin: 0;
    padding: 20px;
    display: block;
    border-radius: var(--radius-lg);
    border-bottom: 1px solid var(--border);
    box-shadow: none;
    flex-direction: unset;
  }

  .filter-box.is-open {
    transform: none;
  }

  .filter-box__scroll {
    overflow: visible;
    padding: 0;
    min-height: 0;
  }

  .filter-chips {
    flex-wrap: wrap;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .filter-chips .chip {
    flex: unset;
    scroll-snap-align: unset;
  }

  .trainer-card {
    grid-template-columns: 180px 1fr;
    align-items: stretch;
  }

  .coach-photo--catalog {
    width: 180px;
    height: 180px;
  }

  .trainer-content {
    align-items: flex-start;
  }

  .trainer-content .btn {
    align-self: flex-start;
  }
}

@media (max-width: 759px) {
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-split__badge { left: 12px; right: 12px; bottom: 12px; }
}
