/* ============================================================
   Moova Space — Women's Dance Studio, Downtown Dubai
   "Studio Bloom" palette — anchored to the real hot-pink logo
   + pink studio interiors (see CLAUDE-DESIGN.md §Palette).
   Mobile-first. Tested at 375px.
   ============================================================ */

:root {
  /* Palette (CLAUDE-DESIGN.md) */
  --bg: #FFF7F4;
  --surface: #FFFFFF;
  --text: #2A1622;
  --muted: #8A6B79;
  --primary: #88144E;   /* deep plum/berry — authority */
  --secondary: #C24E73; /* rose */
  --accent: #F9446F;    /* hot pink — energy, CTAs */
  --accent-ink: #E0285A;
  --border: #F0DCE2;
  --focus: #F9446F;

  /* warm support tones */
  --blush: #FCE9EE;
  --blush-2: #FBDDE6;
  --cream-2: #FDEFEA;
  --plum-deep: #5E0E36;

  /* type */
  --display: "Unbounded", "Manrope", system-ui, sans-serif;
  --body: "Manrope", system-ui, -apple-system, sans-serif;

  /* spacing rhythm */
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 132px);
  --maxw: 1240px;

  /* radii + shadow */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --shadow-sm: 0 2px 10px rgba(94, 14, 54, 0.06);
  --shadow-md: 0 18px 44px -20px rgba(94, 14, 54, 0.30);
  --shadow-lg: 0 40px 90px -40px rgba(94, 14, 54, 0.42);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--accent); color: #fff; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--section-y); position: relative; }

.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.02; letter-spacing: -0.01em; }

.display-xl { font-size: clamp(2.6rem, 9vw, 5.6rem); line-height: 0.98; letter-spacing: -0.02em; }
.display-lg { font-size: clamp(2.1rem, 6vw, 3.6rem); }
.display-md { font-size: clamp(1.5rem, 4vw, 2.2rem); }

.lead { font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: var(--muted); max-width: 56ch; text-wrap: pretty; }

.muted { color: var(--muted); }
.text-accent { color: var(--accent-ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 24px;
  min-height: 52px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 12px 26px -12px rgba(249,68,111,.7); }
.btn-accent:hover { background: var(--accent-ink); transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(249,68,111,.8); }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--plum-deep); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--primary); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--secondary); color: var(--accent-ink); background: var(--surface); transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-wa { background: #25D366; color: #0a3d20; }
.btn-wa:hover { background: #1fbd5a; transform: translateY(-2px); }

.btn-sm { min-height: 44px; padding: 12px 18px; font-size: .92rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding-block: 14px;
}
.nav.scrolled {
  background: rgba(255, 247, 244, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 50px; width: auto; }

.nav__links { display: none; }
.nav__links a { font-weight: 600; font-size: .95rem; color: var(--text); padding: 8px 4px; position: relative; transition: color .2s; }
.nav__links a::after { content: ""; position: absolute; left: 4px; right: 4px; bottom: 2px; height: 2px; background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.nav__links a:hover { color: var(--accent-ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.lang {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: 999px;
  overflow: hidden; background: var(--surface);
  font-family: var(--body); font-weight: 700; font-size: .8rem;
}
.lang button { border: none; background: transparent; cursor: pointer; padding: 8px 12px; color: var(--muted); min-height: 40px; transition: background .2s, color .2s; font-weight: 700; }
.lang button.active { background: var(--primary); color: #fff; }

.nav__cta { display: none; }

.nav__burger { display: inline-flex; flex-direction: column; gap: 5px; background: var(--surface); border: 1.5px solid var(--border); border-radius: 12px; width: 46px; height: 46px; align-items: center; justify-content: center; cursor: pointer; }
.nav__burger span { width: 20px; height: 2px; background: var(--primary); border-radius: 2px; transition: transform .3s, opacity .3s; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: 96px var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.1,1);
  overflow-y: auto;
}
body.menu-open .drawer { transform: translateX(0); }
.drawer a.drawer__link { font-family: var(--display); font-weight: 700; font-size: 1.7rem; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--primary); }
.drawer__actions { margin-top: 24px; display: grid; gap: 12px; }
.drawer__actions .btn { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 116px; padding-bottom: var(--section-y); position: relative; overflow: hidden; }
.hero__swoosh { position: absolute; pointer-events: none; opacity: .85; }
.hero__swoosh--top { top: 70px; right: -8%; width: 70%; max-width: 720px; transform: rotate(-4deg); }

.hero__grid { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; }

.hero__eyebrow-row { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; margin-bottom: 22px; }
.tag-trial { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; font-weight: 700; font-size: .82rem; padding: 8px 14px; border-radius: 999px; letter-spacing: .01em; }
.tag-trial b { font-size: .95rem; }

.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent-ink); position: relative; }
.hero__sub { margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.chip { display: inline-flex; align-items: center; gap: 7px; background: var(--surface); border: 1px solid var(--border); color: var(--primary); font-weight: 600; font-size: .85rem; padding: 9px 14px; border-radius: 999px; }
.chip svg { width: 15px; height: 15px; color: var(--accent); }

.hero__media { position: relative; }
.hero__media-card { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.3; background: var(--blush); }
.hero__media-card img { width: 100%; height: 100%; object-fit: cover; }
.hero__float {
  position: absolute; left: -10px; bottom: 22px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px; max-width: 78%;
}
.hero__float .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex: none; box-shadow: 0 0 0 4px rgba(249,68,111,.18); }
.hero__float p { font-size: .82rem; line-height: 1.35; }
.hero__float strong { display: block; font-family: var(--display); font-weight: 700; font-size: .95rem; color: var(--primary); }

/* ============================================================
   WHY — pillar strip
   ============================================================ */
.why { background: var(--primary); color: #fff; }
.why .eyebrow { color: #FFB7CC; }
.why .eyebrow::before { background: var(--accent); }
.why h2 { color: #fff; margin: 14px 0 8px; }
.why__lead { color: rgba(255,255,255,.78); max-width: 52ch; }
.why__grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 40px; }
.pillar { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 26px 24px; transition: background .3s, transform .3s; }
.pillar:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.pillar__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--accent); display: grid; place-items: center; margin-bottom: 16px; }
.pillar__icon svg { width: 24px; height: 24px; color: #fff; }
.pillar h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pillar p { color: rgba(255,255,255,.74); font-size: .95rem; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-head { max-width: 62ch; }
.sec-head h2 { margin: 14px 0 14px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }

/* ============================================================
   CLASSES
   ============================================================ */
.classes__grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 44px; }
.cls {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 3 / 3.6; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; isolation: isolate;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.cls:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cls img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.cls:hover img { transform: scale(1.06); }
.cls::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(42,22,34,.86) 4%, rgba(42,22,34,.45) 38%, rgba(42,22,34,0) 68%); }
.cls__body { padding: 20px; }
.cls__level { display: inline-flex; align-items: center; gap: 6px; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: rgba(249,68,111,.92); padding: 5px 10px; border-radius: 999px; margin-bottom: 10px; }
.cls h3 { font-size: 1.35rem; margin-bottom: 6px; }
.cls p { font-size: .9rem; color: rgba(255,255,255,.86); }
.cls__note { font-size: .76rem; color: rgba(255,255,255,.7); margin-top: 9px; display: flex; align-items: center; gap: 6px; }
.cls__note svg { width: 13px; height: 13px; flex:none; }

.fitness { margin-top: 18px; display: grid; grid-template-columns: 1fr; gap: 14px; }
.fit-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: transform .3s, box-shadow .3s, border-color .3s; }
.fit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blush-2); }
.fit-card__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--blush); color: var(--accent-ink); display: grid; place-items: center; flex: none; }
.fit-card__icon svg { width: 26px; height: 26px; }
.fit-card h3 { font-size: 1.15rem; margin-bottom: 5px; }
.fit-card p { font-size: .92rem; color: var(--muted); }

.classes__note { margin-top: 28px; font-size: .95rem; color: var(--muted); display:flex; align-items:center; gap:10px; }
.classes__note svg { width: 18px; height: 18px; color: var(--accent); flex:none; }

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule { background: linear-gradient(180deg, var(--cream-2), var(--bg)); }
.sch__grid { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; margin-top: 10px; }
.sch__phone { justify-self: center; position: relative; width: 100%; max-width: 460px; }
.sch__phone::before { content: ""; position: absolute; inset: 6% 8%; background: radial-gradient(58% 56% at 55% 42%, rgba(249,68,111,.28), rgba(249,68,111,0) 72%); filter: blur(26px); z-index: 0; pointer-events: none; }
.sch__phone img { position: relative; z-index: 1; width: 100%; height: auto; filter: drop-shadow(0 28px 46px rgba(94,14,54,.26)); }
.sch__badge { position: absolute; z-index: 2; top: 6px; left: 6px; background: var(--accent); color: #fff; font-weight: 700; font-size: .74rem; letter-spacing: .04em; padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-md); transform: rotate(-3deg); }
.sch__copy h2 { margin: 14px 0; }
.sch__list { list-style: none; margin: 24px 0; display: grid; gap: 14px; }
.sch__list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.sch__list svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 1px; }
.sch__disclaimer { font-size: .85rem; color: var(--muted); background: var(--surface); border: 1px dashed var(--secondary); border-radius: var(--r-sm); padding: 14px 16px; margin-bottom: 24px; }
.sch__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   PRICING
   ============================================================ */
.price__grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 44px; }
.price-card { border-radius: var(--r-lg); padding: clamp(28px, 5vw, 44px); position: relative; overflow: hidden; }
.price-card--trial { background: var(--primary); color: #fff; box-shadow: var(--shadow-md); }
.price-card--trial .price__amount { font-family: var(--display); font-weight: 800; line-height: 1; margin: 6px 0 4px; display: flex; align-items: baseline; gap: 10px; }
.price-card--trial .price__amount b { font-size: clamp(3.4rem, 11vw, 5rem); }
.price-card--trial .price__amount span { font-size: 1.2rem; color: #FFB7CC; font-weight: 700; }
.price__tag { display: inline-block; background: var(--accent); color: #fff; font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; margin-bottom: 14px; }
.price-card--trial p { color: rgba(255,255,255,.82); margin-bottom: 24px; max-width: 40ch; }
.price-card--trial::after { content: ""; position: absolute; right: -70px; bottom: -70px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(249,68,111,.6), rgba(249,68,111,0) 70%); pointer-events: none; }
.price-card--trial > * { position: relative; z-index: 1; }

.price-card--sub { background: var(--surface); border: 1px solid var(--border); }
.price-card--sub h3 { font-size: clamp(1.5rem,4vw,2rem); color: var(--primary); margin-bottom: 14px; }
.price-card--sub ul { list-style: none; display: grid; gap: 13px; margin-bottom: 26px; }
.price-card--sub li { display: flex; gap: 11px; font-size: .98rem; }
.price-card--sub li svg { width: 21px; height: 21px; color: var(--accent); flex: none; }
.price-card--sub .note { font-size: .85rem; color: var(--muted); font-style: italic; }

/* ============================================================
   ABOUT / OUR SPACE
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr; gap: clamp(30px,5vw,56px); align-items: center; }
.about__copy h2 { margin: 14px 0 18px; }
.about__copy p { margin-bottom: 16px; color: var(--text); }
.about__copy .pull { font-family: var(--display); font-weight: 700; font-size: clamp(1.2rem,3vw,1.5rem); color: var(--primary); line-height: 1.2; border-left: 3px solid var(--accent); padding-left: 18px; margin: 24px 0; }
.about__gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.about__gallery figure { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); margin: 0; }
.about__gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.about__gallery figure:hover img { transform: scale(1.05); }
.about__gallery .tall { grid-row: span 2; aspect-ratio: 3/4.4; }
.about__gallery .wide { aspect-ratio: 4/3; }

/* ============================================================
   RULES
   ============================================================ */
.rules { background: var(--blush); }
.rules__grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 44px; }
.rule { background: var(--surface); border-radius: var(--r-md); padding: 24px; border: 1px solid var(--border); display: flex; gap: 16px; align-items: flex-start; }
.rule__num { font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--accent); flex: none; width: 30px; }
.rule h3 { font-size: 1.1rem; margin-bottom: 5px; color: var(--primary); }
.rule p { font-size: .93rem; color: var(--muted); }

/* ============================================================
   INSTAGRAM strip
   ============================================================ */
.ig__head { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.ig__strip { display: grid; grid-auto-flow: column; grid-auto-columns: 64%; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); -webkit-overflow-scrolling: touch; }
.ig__strip::-webkit-scrollbar { height: 6px; }
.ig__strip::-webkit-scrollbar-thumb { background: var(--blush-2); border-radius: 6px; }
.ig__item { scroll-snap-align: start; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/5; position: relative; box-shadow: var(--shadow-sm); }
.ig__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ig__item:hover img { transform: scale(1.05); }
.ig__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(136,20,78,.35), transparent 50%); opacity: 0; transition: opacity .3s; }
.ig__item:hover::after { opacity: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--primary); color: #fff; }
.contact .eyebrow { color: #FFB7CC; }
.contact .eyebrow::before { background: var(--accent); }
.contact h2 { color: #fff; margin: 14px 0; }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px,4vw,40px); margin-top: 36px; }
.contact__rows { display: grid; gap: 8px; }
.crow { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.crow__icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.1); display: grid; place-items: center; flex: none; }
.crow__icon svg { width: 22px; height: 22px; color: #FFB7CC; }
.crow h4 { font-family: var(--body); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #FFB7CC; margin-bottom: 4px; }
.crow p, .crow a { font-size: 1.02rem; color: #fff; line-height: 1.4; }
.crow a:hover { color: #FFB7CC; }
.contact__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.map-ph {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 320px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 14px, transparent 14px 28px),
    rgba(255,255,255,.06);
  border: 1px dashed rgba(255,255,255,.3);
  display: grid; place-items: center; text-align: center; padding: 30px;
}
.map-ph__inner svg { width: 44px; height: 44px; color: #FFB7CC; margin-bottom: 14px; }
.map-ph__inner b { font-family: var(--display); font-weight: 700; display: block; font-size: 1.05rem; margin-bottom: 6px; }
.map-ph__inner span { font-size: .85rem; color: rgba(255,255,255,.7); display: block; max-width: 34ch; margin-inline: auto; }
.map-ph__tag { position: absolute; top: 14px; left: 14px; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: rgba(255,255,255,.14); padding: 6px 11px; border-radius: 999px; }

/* ============================================================
   FINAL CTA band
   ============================================================ */
.cta-band { background: linear-gradient(135deg, var(--accent), var(--secondary)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 50ch; margin: 0 auto 30px; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--plum-deep); color: rgba(255,255,255,.7); padding-block: clamp(48px,7vw,72px) 120px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.footer__brand img { width: 54px; margin-bottom: 14px; }
.footer__brand p { font-size: .9rem; max-width: 36ch; }
.footer h5 { font-family: var(--body); font-weight: 700; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: #FFB7CC; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .8rem; }
.footer__bottom a { color: #FFB7CC; }
.footer__disclaim { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 14px; max-width: 70ch; }

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px -12px rgba(94,14,54,.25);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
}
.action-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; font-size: .68rem; font-weight: 700; padding: 8px 4px; border-radius: 12px; min-height: 52px; color: var(--primary); }
.action-bar a svg { width: 20px; height: 20px; }
.action-bar a.primary { background: var(--accent); color: #fff; margin-left: 4px; }
.action-bar a.wa { color: #1aa84c; }

/* ============================================================
   reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* lang visibility */
[data-lang-ru] { display: none; }
html[lang="ru"] [data-lang-en] { display: none; }
html[lang="ru"] [data-lang-ru] { display: inline; }
html[lang="ru"] [data-lang-ru].block { display: block; }

@media (max-width: 760px) {
  .hero { padding-top: 96px; }
  .hero__swoosh--top { display: none; }
  .hero__grid { gap: 24px; }
  .hero__media-card { aspect-ratio: 4 / 4.6; }
}

/* ============================================================
   RESPONSIVE — tablet & up
   ============================================================ */
@media (min-width: 620px) {
  .hero__chips { gap: 10px; }
  .classes__grid { grid-template-columns: repeat(2, 1fr); }
  .fitness { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .rules__grid { grid-template-columns: repeat(2, 1fr); }
  .ig__strip { grid-auto-columns: 38%; }
  .price__grid { grid-template-columns: 1.1fr 1fr; }
}

@media (min-width: 940px) {
  .action-bar { display: none; }
  .nav__links { display: flex; gap: 26px; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .footer { padding-bottom: clamp(48px,7vw,72px); }

  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .why__grid { grid-template-columns: repeat(4, 1fr); }
  .classes__grid { grid-template-columns: repeat(3, 1fr); }
  .sch__grid { grid-template-columns: .85fr 1.15fr; }
  .about__grid { grid-template-columns: 1.05fr .95fr; }
  .rules__grid { grid-template-columns: repeat(3, 1fr); }
  .contact__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .ig__strip { grid-auto-columns: 22%; }
}

@media (min-width: 1200px) {
  .classes__grid { grid-template-columns: repeat(3, 1fr); }
}
