/* ============================================================
   COMBAT LAB BUCUREȘTI — stylesheet
   Fără dependințe. Fonturi: Anton (display) + Archivo Narrow (text).
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; padding: 0; }
ul { list-style: none; }
img, iframe { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

:root {
  /* chrome */
  --black:      #0D0D0D;
  --black-1:    #151515;
  --black-2:    #1C1C1C;

  /* accente */
  --gold:       #C9A227;
  --gold-lit:   #E0B63A;
  --red:        #A6161F;
  --bone:       #F2F0EA;
  --muted:      #8E8B82;

  --line:       #262626;

  --f-disp: 'Anton', Impact, sans-serif;
  --f-body: 'Archivo Narrow', 'Arial Narrow', sans-serif;

  --s1: 4px;  --s2: 8px;  --s3: 16px; --s4: 24px;
  --s5: 32px; --s6: 48px; --s7: 72px; --s8: 96px;

  --gut: 16px;
  --maxw: 1120px;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute; left: -9999px;
  background: var(--gold); color: var(--black);
  padding: 12px 20px; z-index: 999;
  font-family: var(--f-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; font-size: 12px;
}
.skip-link:focus { left: var(--gut); top: var(--gut); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.center { text-align: center; }
.w-full { width: 100%; }

/* ---------- tipografie ---------- */
.h-section {
  font-family: var(--f-disp);
  font-size: clamp(2.5rem, 11vw, 4.5rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: var(--s5);
}
.center .h-section { margin-inline: auto; }

.note {
  font-size: 13px;
  color: var(--muted);
  margin-top: var(--s4);
  line-height: 1.7;
}

/* ---------- butoane ---------- */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 0;
  text-align: center;
  transition: background-color .15s linear, color .15s linear, border-color .15s linear;
}
.btn-gold    { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-lit); border-color: var(--gold-lit); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-onblack { background: var(--black); color: var(--gold); border-color: var(--black); }
.btn-onblack:hover { background: transparent; color: var(--black); border-color: var(--black); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--gold);
}
.nav-bar {
  max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gut);
  height: var(--nav-h);
  display: flex; align-items: center; gap: var(--s4);
}
.wordmark {
  display: flex; align-items: center; gap: var(--s2);
  margin-right: auto;
  color: var(--bone);
}
.wordmark img { width: 38px; height: 38px; flex-shrink: 0; }
.wordmark span {
  font-family: var(--f-disp);
  font-size: 1.4rem;
  letter-spacing: -.01em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  padding-bottom: 4px;
}
.wordmark span::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--red);
}
.nav-desktop { display: none; gap: var(--s4); }
.nav-desktop a {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--muted);
  transition: color .15s linear;
}
.nav-desktop a:hover { color: var(--gold); }
.nav-cta { display: none; padding: 10px 18px; }

.burger {
  width: 40px; height: 40px;
  background: none; border: none;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  padding: 0;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--gold);
  transition: transform .2s, opacity .2s;
}
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile nav { display: flex; flex-direction: column; align-items: center; gap: var(--s4); }
.nav-mobile a {
  font-family: var(--f-disp);
  font-size: 2rem; text-transform: uppercase;
  color: var(--bone); line-height: 1;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn { font-family: var(--f-body); font-size: 12px; margin-top: var(--s3); }
body.menu-open { overflow: hidden; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: var(--s8);
  overflow: hidden;
  background: var(--black);
}
.hero-media {
  position: absolute; inset: 0;
  background: var(--black);
  filter: grayscale(1) contrast(1.05);
}
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13,13,13,.94) 0%, rgba(13,13,13,.86) 45%, rgba(13,13,13,.60) 100%);
}
.hero-slash {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
  z-index: 1;
}
.hero-slash line {
  stroke: var(--red);
  stroke-width: 2.5px;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); width: 100%;
  margin-inline: auto; padding-inline: var(--gut);
}
.hero-title {
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: clamp(2.75rem, 13vw, 7rem);
  line-height: .88;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin-bottom: var(--s4);
}
.hero-l1, .hero-l2 { display: block; color: var(--bone); }
.hero-l1 { color: var(--gold); }
.hero-sub {
  font-size: 17px; font-weight: 600;
  line-height: 1.35;
  color: var(--bone);
  border-left: 3px solid var(--gold);
  padding-left: var(--s3);
  margin-bottom: var(--s5);
  max-width: 30ch;
}
.hero-cta { width: 100%; max-width: 380px; }

/* ---------- banda X: ticker animat ---------- */
.xstrip {
  overflow: hidden; white-space: nowrap;
  background: var(--black);
  border-block: 1px solid var(--line);
  padding-block: 10px;
  line-height: 1;
}
.hero .xstrip { position: absolute; bottom: 0; left: 0; width: 100%; z-index: 3; border-bottom: none; }

.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--f-disp);
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--gold);
  padding-inline: var(--s3);
  white-space: nowrap;
}
.marquee-x {
  font-family: var(--f-disp);
  font-size: 15px;
  color: var(--gold);
  opacity: .5;
}
.xstrip--static .marquee-track { animation-duration: 34s; }
.xstrip--static .marquee-item, .xstrip--static .marquee-x { opacity: .8; }

/* ---------- tags ---------- */
.tags { border-bottom: 1px solid var(--line); padding-block: var(--s4); }
.tag-row {
  display: flex; gap: var(--s2);
  overflow-x: auto; padding-inline: var(--gut);
  scrollbar-width: none;
}
.tag-row::-webkit-scrollbar { display: none; }
.tag {
  flex-shrink: 0;
  border: 1px solid var(--gold);
  color: var(--bone);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em;
  padding: 9px 16px;
  white-space: nowrap;
}
.tag--on { color: var(--gold); }

/* ---------- secțiuni ---------- */
.section {
  position: relative;
  padding-block: var(--s7);
  overflow: hidden;
}
.section--x::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,  transparent 0 14px, rgba(201,162,39,.05) 14px 15px),
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(201,162,39,.05) 14px 15px);
  pointer-events: none;
}
.section--x > .wrap { position: relative; z-index: 1; }

.x-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--f-disp);
  font-size: 22rem; line-height: 1;
  color: var(--bone);
  opacity: .035;
  pointer-events: none;
  user-select: none;
}

/* ---------- clase ---------- */
.class-list { display: flex; flex-direction: column; gap: var(--s3); position: relative; z-index: 1; }
.class-card {
  position: relative;
  background: var(--black-1);
  border: 1px solid var(--line);
  padding: var(--s4);
  transition: border-color .15s linear;
}
.class-card:hover { border-color: var(--gold); }
.tick { display: block; width: 44px; height: 2px; background: var(--red); margin-bottom: var(--s3); }
.class-card h3 {
  font-family: var(--f-body);
  font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--gold);
  margin-bottom: var(--s1);
}
.class-card p { font-size: 14px; color: var(--muted); }
.class-card--soon { border-style: dashed; }
.class-card--soon p { padding-right: var(--s6); }

.badge-soon {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  padding: 6px 12px;
}
.badge-soon--corner { position: absolute; top: var(--s4); right: var(--s4); }

.soon-card {
  max-width: 480px;
  margin-inline: auto;
  border: 1px dashed var(--line);
  padding: var(--s6) var(--s4);
}
.soon-text {
  margin-top: var(--s3);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.arrow {
  position: absolute; right: var(--s4); bottom: var(--s4);
  color: var(--gold); font-size: 18px; line-height: 1;
}

/* ---------- program ---------- */
.sked { border-top: 1px solid var(--red); }
.sked-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--s4);
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--red);
}
.sked-meta { display: flex; flex-direction: column; gap: var(--s1); }
.sked-day {
  font-family: var(--f-body);
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--bone);
}
.sked-dur {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--muted);
}
.sked-end { color: var(--muted); }
.sked-time {
  font-family: var(--f-disp);
  font-size: clamp(1.75rem, 7.5vw, 2.75rem);
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--gold);
  white-space: nowrap;
}
.sked-row.is-next .sked-day { color: var(--gold); }
.sked-row.is-next::before {
  content: 'Urmează';
  position: absolute; top: var(--s2); left: 0;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--red);
}
.sked-row.is-next { position: relative; padding-top: var(--s5); }

/* ---------- abonament ---------- */
.pill-live {
  display: inline-flex; align-items: center; gap: var(--s2);
  border: 1px solid var(--red);
  padding: 6px 14px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--red);
  margin-bottom: var(--s3);
}
.pill-live i { width: 6px; height: 6px; background: var(--red); display: block; }

.price-grid { display: flex; flex-direction: column; gap: var(--s4); text-align: left; }
.price-card {
  position: relative;
  background: var(--black-1);
  border: 1px solid var(--gold);
  padding: var(--s5) var(--s4) var(--s4);
  display: flex; flex-direction: column;
}
.price-card--best { border-width: 2px; }
.best-badge {
  position: absolute; top: 0; left: var(--s4);
  transform: translateY(-50%);
  background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  padding: 5px 12px;
}
.price-plan {
  font-family: var(--f-body);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--muted);
  margin-bottom: var(--s2);
}
.price-val {
  font-family: var(--f-disp);
  font-size: 3.75rem; line-height: .9;
  color: var(--red);
}
.price-val span {
  font-family: var(--f-body);
  font-size: 1rem; font-weight: 700;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em;
  margin-left: var(--s2);
}
.price-per {
  font-size: 11px; text-transform: uppercase; letter-spacing: .18em;
  color: var(--muted);
  padding-bottom: var(--s4);
  margin-bottom: var(--s4);
  border-bottom: 1px solid var(--line);
}
.price-feat { display: flex; flex-direction: column; gap: var(--s2); margin-bottom: var(--s5); flex: 1; }
.price-feat li { font-size: 14px; color: var(--bone); padding-left: var(--s4); position: relative; }
.price-feat li::before { content: '✕'; position: absolute; left: 0; color: var(--gold); font-size: 11px; }

/* ---------- promo: adu un prieten ---------- */
.promo {
  position: relative;
  overflow: hidden;
  background: var(--black-1);
  border-block: 1px solid var(--gold);
  padding-block: var(--s7);
}
.promo-inner { position: relative; z-index: 1; }
.promo-kicker {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .26em;
  color: var(--gold);
  margin-bottom: var(--s3);
}
.promo-title {
  font-family: var(--f-disp);
  font-size: clamp(2.75rem, 13vw, 5.5rem);
  line-height: .88;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: var(--s6);
}
.promo-offer {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s5);
}
.promo-figure { display: flex; flex-direction: column; align-items: center; gap: var(--s1); }
.promo-num {
  font-family: var(--f-disp);
  font-size: clamp(3.25rem, 15vw, 5.5rem);
  line-height: 1;
  color: var(--red);
}
.promo-unit {
  font-size: .4em;
  color: var(--muted);
  margin-left: var(--s1);
  text-transform: uppercase;
}
.promo-label {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--bone);
  max-width: 22ch;
}
.promo-or {
  font-family: var(--f-disp);
  font-size: 13px;
  text-transform: uppercase; letter-spacing: .3em;
  color: var(--muted);
}
.promo-fine {
  max-width: 42ch; margin: 0 auto var(--s5);
  font-size: 13px; color: var(--muted); line-height: 1.7;
}

/* ---------- antrenori ---------- */
.coach-grid { display: grid; gap: var(--s7); }
.coach { display: grid; gap: var(--s4); align-content: start; }
.coach-photo {
  position: relative;
  background: var(--black-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
/* posterele de brand se văd întregi — nu se decupează */
.coach-photo img { width: 100%; height: auto; }
/* varianta fără poster încă: păstrează proporția și arată eticheta */
.coach-photo:not(:has(img)) {
  aspect-ratio: 743/1000;
  display: grid; place-items: center;
}
.swipe {
  position: absolute; left: -10%; top: 42%;
  width: 120%; height: 26%;
  background: var(--gold);
  opacity: .35;
  transform: rotate(-11deg);
  clip-path: polygon(4% 0, 100% 14%, 96% 100%, 0 84%);
}
.ph-label {
  position: relative;
  font-family: var(--f-body); font-size: 11px; font-weight: 700;
  letter-spacing: .3em; color: var(--muted);
}
.coach-name {
  font-family: var(--f-disp);
  font-size: clamp(2rem, 9vw, 2.75rem);
  line-height: .9; letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: var(--s3);
}
.rule-red { display: block; width: 60px; height: 3px; background: var(--red); margin-bottom: var(--s3); }
.coach-role {
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: var(--s4);
}
.coach-stats { display: flex; flex-direction: column; gap: var(--s2); }
.coach-stats li {
  display: flex; align-items: flex-start; gap: var(--s3);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  line-height: 1.5;
}
.coach-stats li::before {
  content: ''; width: 7px; height: 7px;
  background: var(--red); flex-shrink: 0;
  margin-top: 6px;
}

/* ---------- galerie ---------- */
.bg-shift { background: var(--black-1); }

.gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s2); }
.gal-item {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--black-2);
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter .25s linear, transform .35s ease;
}
.gal-item:hover img { filter: grayscale(0) contrast(1); transform: scale(1.04); }
/* 6 imagini fixe: grid uniform 2×3 mobil / 3×2 desktop — se umple exact, fără spans care lasă goluri */

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gold);
  padding: var(--s7) var(--gut);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--f-disp);
  font-size: clamp(2rem, 9vw, 3.5rem);
  line-height: .95; letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--black);
  max-width: 16ch; margin: 0 auto var(--s5);
}
.cta-band .btn { width: 100%; max-width: 340px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: var(--s7); }

.fld { display: flex; flex-direction: column; gap: var(--s1); margin-bottom: var(--s4); }
.fld label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--muted);
}
.fld input[type="text"], .fld input[type="tel"], .fld select, .fld textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
  color: var(--bone);
  font-family: var(--f-body); font-size: 15px;
  padding: 10px 2px;
  width: 100%;
}
.fld textarea { resize: vertical; }
.fld select option { background: var(--black-1); color: var(--bone); }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none; border-bottom-width: 2px;
}
.fld [aria-invalid="true"] { border-bottom-color: var(--red); border-bottom-width: 2px; }
.err { font-size: 12px; color: var(--red); min-height: 1em; }

.fld--check { margin-bottom: var(--s5); }
.chk { display: flex; align-items: flex-start; gap: var(--s2); cursor: pointer; }
.chk span {
  font-size: 13px; font-weight: 400;
  text-transform: none; letter-spacing: 0;
  color: var(--muted); line-height: 1.5;
}
.chk input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }

.label-gold {
  display: flex; align-items: center; gap: var(--s2);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: var(--s2);
}
.tick-i { width: 8px; height: 8px; background: var(--red); display: block; flex-shrink: 0; }
.loc address {
  font-style: normal;
  font-size: 19px; font-weight: 600;
  line-height: 1.35;
  margin-bottom: var(--s5);
}
.social-row { display: flex; flex-wrap: wrap; gap: var(--s3); margin-bottom: var(--s5); }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  transition: color .15s linear, border-color .15s linear, background-color .15s linear;
}
/* fiecare simbol își definește propriul fill/stroke — regula de aici e doar mărimea */
.social-icon svg { width: 24px; height: 24px; }
a.social-icon:hover, a.social-icon:focus-visible {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}
.social-icon--soon { opacity: .4; cursor: default; }
.map {
  position: relative;
  border: 1px solid var(--line);
  aspect-ratio: 16/10;
  overflow: hidden;
}
.map iframe {
  width: 100%; height: 100%; border: 0;
  /* satelit — e o fotografie, nu o hartă vectorială: fără invert, doar ușor întunecat */
  filter: saturate(.85) contrast(1.08) brightness(.85);
}
.map::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,.10), rgba(13,13,13,.32));
  pointer-events: none;
}
.map-link {
  display: inline-block;
  margin-top: var(--s3);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}
.map-link:hover { color: var(--gold-lit); border-color: var(--gold-lit); }

/* ---------- footer ---------- */
.site-footer {
  padding: var(--s7) var(--gut) var(--s5);
  text-align: center;
}
.foot-logo { width: 96px; height: 96px; margin: 0 auto var(--s3); }
.foot-mark {
  font-family: var(--f-disp);
  font-size: 2rem; text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: var(--s3);
}
.site-footer .rule-red { margin: 0 auto var(--s4); }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s4); margin-bottom: var(--s5); }
.site-footer nav a {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--muted);
}
.site-footer nav a:hover { color: var(--gold); }
.foot-tag {
  font-size: 13px; color: var(--bone);
  margin-bottom: var(--s3);
}
.foot-copy {
  font-size: 10px; text-transform: uppercase; letter-spacing: .18em;
  color: var(--muted);
}

/* ============ ≥760px ============ */
@media (min-width: 760px) {
  :root { --nav-h: 76px; --gut: 32px; }

  .burger { display: none; }
  .nav-mobile { display: none !important; }
  .nav-desktop { display: flex; }
  .nav-cta { display: inline-block; }
  .wordmark { margin-right: var(--s6); }
  .wordmark span { font-size: 1.6rem; }
  .wordmark img { width: 44px; height: 44px; }

  .section { padding-block: var(--s8); }
  .promo { padding-block: var(--s8); }
  .promo-offer { flex-direction: row; gap: var(--s7); align-items: center; }

  .class-list { display: grid; grid-template-columns: 1fr 1fr; }
  .price-grid { flex-direction: row; justify-content: center; }
  .price-card { flex: 1; max-width: 380px; }

  .coach-grid { grid-template-columns: 1fr 1fr; gap: var(--s6); }

  .gal { grid-template-columns: repeat(3, 1fr); gap: var(--s3); }

  .contact-grid { grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: start; }
}

/* ============ ≥1080px ============ */
@media (min-width: 1080px) {
  /* se adaptează la 2, 3 sau 4 carduri fără să lase goluri */
  .class-list { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .hero-sub { font-size: 19px; }
}

/* ============ reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
