/* ============================================================
   صالة الورشة — Ilwarsha Gym · Official Website  (v2)
   "Industrial Editorial" — premium dark fitness + bento.
   Built on colors_and_type.css brand tokens. RTL · mobile-first.
   ============================================================ */

:root {
  --r: 6px;            /* cards — architectural, near-sharp */
  --r-sm: 3px;         /* chips / buttons */
  --maxw: 1380px;
  --gap: 20px;
  --nav-h: 80px;
  --pad: clamp(24px, 5.5vw, 80px);
  --sec: clamp(88px, 13vw, 200px);   /* section rhythm — generous */
  --sec-sm: clamp(64px, 8vw, 120px);
  --ink-0: #0c0c0c;
  --ink-1: #131313;
  --ink-2: #181818;
  --surf: #1c1c1c;
  --surf-2: #232323;
  --line: rgba(255,255,255,.09);
  --line-2: rgba(255,255,255,.16);
  --red: var(--warsha-red);
  --red-br: var(--warsha-red-bright);
  --red-dp: var(--warsha-red-deep);
  --txt: #f2f0ee;
  --mut: #9a9794;
  --dim: #6a6764;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-io: cubic-bezier(.65,.02,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--ink-0); color: var(--txt);
  font-family: var(--font-ar); line-height: 1.5; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
::selection { background: var(--red); color: #fff; }
img { max-width: 100%; display: block; }

/* ---------- SVG ICON COLOR FIX ----------
   Make inline sprite icons inherit the CSS `color` value.
   This fixes black/default SVG icons on dark backgrounds and lets
   existing white/red icon color rules render correctly. */
svg,
svg use,
svg path {
  fill: currentColor;
}


/* Defensive dark-UI icon overrides: no black icons on dark/red surfaces. */
.nav svg,
.drawer svg,
.scrollbar svg,
.modal svg,
.hero svg,
.marquee svg,
.manifesto svg,
.stats svg,
.bento svg,
.bleed svg,
.equip svg,
.reels svg,
.facs svg,
.coaches svg,
.pkgs svg,
.offer svg,
.rules svg,
.loc svg,
.contact svg,
.faq svg,
.footer svg {
  fill: currentColor;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
.en { font-family: var(--font-en); }
.num { font-family: var(--font-num); font-variant-numeric: tabular-nums; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: var(--sec); position: relative; }
.section--sm { padding-block: var(--sec-sm); }
.divider { height: 1px; background: var(--line); }

.grain { position: relative; }
.grain::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.section > .wrap { position: relative; z-index: 1; }

/* ---------- editorial section header ---------- */
.kicker {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-en); font-weight: 700; font-size: 12.5px;
  letter-spacing: .26em; text-transform: uppercase; color: var(--mut);
}
.kicker .idx { color: var(--red-br); }
.kicker::before { content: ""; width: 30px; height: 1.5px; background: var(--red); }
.lead { margin-top: 26px; max-width: 920px; }
.lead h2 {
  margin: 0; font-weight: var(--w-black);
  font-size: clamp(34px, 6vw, 84px); line-height: .98; letter-spacing: -.015em;
  text-wrap: balance;
}
.lead .sub {
  margin-top: 22px; font-size: clamp(16px, 1.7vw, 20px); line-height: 1.7;
  color: var(--mut); max-width: 620px; font-weight: var(--w-regular);
}
.hl { color: var(--red-br); }
.head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(40px, 6vw, 80px); }

/* ---------- buttons / links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-weight: var(--w-bold); font-size: 17px; line-height: 1;
  padding: 18px 30px; border-radius: var(--r-sm);
  transition: background .25s, color .25s, transform .35s var(--ease), border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-br); }
.btn-red:hover svg { transform: translateX(-5px); }
.btn-line { background: transparent; color: var(--txt); border: 1px solid var(--line-2); }
.btn-line:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); }
.btn-light { background: var(--txt); color: var(--ink-0); }
.btn-light:hover { background: #fff; }
.btn-sm { padding: 13px 22px; font-size: 15px; }
.btn-block { width: 100%; }

.tlink {
  display: inline-flex; align-items: center; gap: 11px; font-weight: var(--w-bold);
  font-size: 16px; color: var(--txt); padding-bottom: 4px; position: relative;
}
.tlink::after { content: ""; position: absolute; inset-block-end: 0; inset-inline: 0; height: 1.5px; background: var(--red); transform: scaleX(.35); transform-origin: right; transition: transform .4s var(--ease); }
.tlink:hover::after { transform: scaleX(1); }
.tlink svg { width: 14px; height: 14px; color: var(--red-br); transition: transform .35s var(--ease); }
.tlink:hover svg { transform: translateX(-5px); }

.tag {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-en);
  font-weight: 700; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: #fff; background: var(--red); padding: 7px 12px; border-radius: var(--r-sm);
}
.tag--ghost { background: transparent; border: 1px solid var(--line-2); color: var(--mut); }

/* ============================================================ NAV */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center; transition: background .4s, border-color .4s, height .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(10,10,10,.78); backdrop-filter: blur(16px) saturate(1.2); border-bottom-color: var(--line); height: 68px; }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 15.5px; font-weight: var(--w-medium); color: var(--mut);
  padding: 10px 15px; border-radius: var(--r-sm); transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--txt); background: rgba(255,255,255,.05); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* weekly countdown pill (header status) */
.weekly { display: inline-flex; align-items: center; gap: 12px; padding: 8px 14px; border-radius: var(--r-sm); background: rgba(255,255,255,.05); border: 1px solid var(--line); }
.weekly .wk-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: var(--w-bold); color: var(--mut); white-space: nowrap; }
.weekly .wk-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red-br); box-shadow: 0 0 0 3px rgba(181,58,45,.22); animation: pulse 2.4s ease-in-out infinite; }
.weekly.is-closed .wk-dot { background: var(--dim); box-shadow: none; animation: none; }
.weekly .wk-clock { display: inline-flex; align-items: baseline; gap: 3px; font-family: var(--font-num); font-variant-numeric: tabular-nums; }
.weekly .wk-clock b { font-size: 15px; font-weight: var(--w-black); color: var(--txt); letter-spacing: .01em; min-width: 20px; text-align: center; }
.weekly.is-closed .wk-clock b { color: var(--dim); }
.weekly .wk-clock i { color: var(--dim); font-style: normal; font-size: 13px; }
.nav-phone { display: inline-flex; align-items: center; gap: 9px; font-weight: var(--w-bold); font-size: 15px; }
.nav-phone svg { width: 15px; height: 15px; color: var(--red-br); }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); border: 1px solid var(--line-2); align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }

.drawer {
  position: fixed; inset: 0; z-index: 110; background: rgba(8,8,8,.98); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; padding: 22px var(--pad) 40px;
  transform: translateY(-100%); transition: transform .55s var(--ease-io); visibility: hidden;
}
.drawer.open { transform: translateY(0); visibility: visible; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; height: var(--nav-h); }
.drawer-top img { height: 36px; }
.drawer-close { width: 48px; height: 48px; border-radius: var(--r-sm); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; }
.drawer-close svg { width: 24px; height: 24px; }
.drawer-links { display: flex; flex-direction: column; }
.drawer-links a {
  font-size: clamp(28px, 8vw, 44px); font-weight: var(--w-black); padding: 14px 0;
  border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline;
}
.drawer-links a span { color: var(--dim); font-size: 14px; font-family: var(--font-en); letter-spacing: .1em; }
.drawer-foot { margin-top: auto; padding-top: 28px; display: flex; flex-direction: column; gap: 14px; }

/* ============================================================ SCROLL PROGRESS LINE */
.scrollbar {
  position: fixed; z-index: 90; inset-inline-start: clamp(14px, 2vw, 30px); inset-block-start: 50%;
  transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 14px;
  pointer-events: none; mix-blend-mode: difference;
}
.scrollbar .sb-num, .scrollbar .sb-end { font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: .1em; color: #fff; font-variant-numeric: tabular-nums; }
.scrollbar .sb-end { color: rgba(255,255,255,.5); }
.scrollbar .sb-track { width: 2px; height: clamp(120px, 22vh, 220px); background: rgba(255,255,255,.22); border-radius: 2px; position: relative; overflow: hidden; }
.scrollbar .sb-track i { position: absolute; inset-inline: 0; inset-block-start: 0; height: 0%; background: var(--red-br); border-radius: 2px; }
@media (max-width: 900px) { .scrollbar { display: none; } }

/* ============================================================ HERO SLIDER (news/announcements) */
.hero { position: relative; height: 100svh; min-height: 600px; overflow: hidden; background: var(--ink-0); touch-action: pan-y; }
.hero-track { position: absolute; inset: 0; }
.hslide { position: absolute; inset: 0; opacity: 0; visibility: hidden; }
.hslide.is-active { opacity: 1; visibility: visible; }
.no-gsap .hslide { transition: opacity .8s var(--ease); }
.hslide-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hslide-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); will-change: transform; }
.hslide-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--ink-0) 1%, rgba(12,12,12,.25) 42%, rgba(12,12,12,.5) 100%),
    linear-gradient(to left, rgba(12,12,12,0), rgba(12,12,12,.72) 92%);
}
.hslide-inner {
  position: absolute; inset-block-end: 0; inset-inline: 0; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad) clamp(118px, 16vh, 188px);
  display: flex; flex-direction: column; align-items: flex-start;
}
.hslide-cat { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.hslide-cat .date { font-family: var(--font-en); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--mut); font-weight: 600; }
.hslide-title {
  margin: 0; font-weight: var(--w-black); letter-spacing: -.018em; line-height: .98;
  font-size: clamp(40px, 6.6vw, 92px); max-width: 16ch; text-shadow: var(--shadow-text);
}
.hslide-title .hl { color: var(--red-br); }
.hslide-desc { margin-top: 22px; font-size: clamp(16px, 1.7vw, 20px); line-height: 1.6; color: #d6d3d0; max-width: 540px; text-shadow: 0 2px 10px rgba(0,0,0,.6); }
.hslide-desc b { color: #fff; font-weight: var(--w-bold); }
.hslide-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hslide-play { display: inline-flex; align-items: center; gap: 14px; font-weight: var(--w-bold); font-size: 16px; }
.hslide-play .ic { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: background .3s, transform .35s var(--ease); }
.hslide-play:hover .ic { background: var(--red); border-color: var(--red); transform: scale(1.06); }
.hslide-play .ic svg { width: 17px; height: 17px; margin-inline-start: 2px; }

/* top identity strip */
.hero-ident {
  position: absolute; z-index: 5; inset-block-start: calc(var(--nav-h) + 14px); inset-inline: 0;
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-en); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--mut); font-weight: 600;
}
.hero-ident .live { display: inline-flex; align-items: center; gap: 9px; color: var(--txt); }
.hero-ident .live .dot { width: 8px; height: 8px; border-radius: 50%; background: #36d07a; box-shadow: 0 0 0 4px rgba(54,208,122,.18); animation: pulse 2.4s ease-in-out infinite; }
.hero-ident .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--dim); }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(54,208,122,.22); } 50% { box-shadow: 0 0 0 7px rgba(54,208,122,0); } }

/* control bar */
.hero-ctrl {
  position: absolute; z-index: 6; inset-block-end: clamp(34px, 5vh, 54px); inset-inline: 0;
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.hero-tabs { display: flex; gap: 10px; flex: 1; max-width: 640px; }
.hero-tab { flex: 1; max-width: 150px; text-align: right; background: none; padding: 0; opacity: .5; transition: opacity .35s; cursor: pointer; }
.hero-tab.is-active { opacity: 1; }
.hero-tab:hover { opacity: .85; }
.hero-tab .bar { position: relative; height: 3px; background: rgba(255,255,255,.18); border-radius: 2px; overflow: hidden; margin-bottom: 12px; }
.hero-tab .bar i { position: absolute; inset: 0; inset-inline-end: 0; background: var(--red-br); transform: scaleX(0); transform-origin: right; }
.hero-tab.is-active .bar i { transform: scaleX(var(--p, 0)); }
.hero-tab .lb { font-family: var(--font-en); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--mut); display: block; }
.hero-tab.is-active .lb { color: var(--txt); }
.hero-tab .tt { font-size: 14px; font-weight: var(--w-bold); color: var(--txt); display: block; margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-arrows { display: flex; gap: 10px; flex: none; }
.hero-arrows button { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--txt); background: rgba(255,255,255,.04); backdrop-filter: blur(4px); transition: background .3s, border-color .3s, transform .3s var(--ease); }
.hero-arrows button:hover { background: var(--red); border-color: var(--red); }
.hero-arrows button:active { transform: scale(.94); }
.hero-arrows svg { width: 17px; height: 17px; }
.hero-arrows .prev svg { transform: scaleX(-1); }
@media (max-width: 760px) {
  .hero-tab .tt { display: none; }
  .hero-tab { max-width: none; }
  .hero-arrows button { width: 46px; height: 46px; }
  .hslide-inner { padding-bottom: clamp(128px, 20vh, 180px); }
}

/* ============================================================ MARQUEE */
.marquee { border-block: 1px solid var(--line); background: var(--red); overflow: hidden; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marq 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 30px; padding: 20px 0; }
.marquee-item span { font-weight: var(--w-black); font-size: clamp(20px, 2.6vw, 34px); color: #fff; white-space: nowrap; padding-inline: 30px; }
.marquee-item .star { width: 16px; height: 16px; color: rgba(255,255,255,.7); flex: none; }
@keyframes marq { to { transform: translateX(50%); } }  /* RTL: move right */

/* ============================================================ MANIFESTO */
.manifesto { padding-block: clamp(96px, 15vw, 220px); }
.manifesto .kicker { margin-bottom: 40px; }
.statement {
  font-weight: var(--w-bold); font-size: clamp(28px, 5.2vw, 68px); line-height: 1.18;
  letter-spacing: -.01em; max-width: 1100px; text-wrap: balance;
}
.statement .word { color: var(--dim); transition: color .5s var(--ease); display: inline-block; }
.statement .word.on { color: var(--txt); }
.statement .word.red.on { color: var(--red-br); }
.manifesto-foot { margin-top: 52px; display: flex; gap: 48px; flex-wrap: wrap; align-items: center; }
.manifesto-foot .tlink { font-size: 17px; }

/* ============================================================ STATS BAND */
.stats { border-block: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(40px, 6vw, 76px) clamp(20px, 3vw, 44px); border-inline-start: 1px solid var(--line); position: relative; }
.stat:first-child { border-inline-start: none; }
.stat .n { font-family: var(--font-num); font-weight: var(--w-black); font-size: clamp(48px, 7vw, 104px); line-height: .85; letter-spacing: -.03em; color: var(--txt); }
.stat .n .s { color: var(--red-br); }
.stat .l { margin-top: 18px; font-size: 15px; color: var(--mut); line-height: 1.5; max-width: 220px; }
.stat .k { font-family: var(--font-en); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); margin-bottom: 16px; }

/* ============================================================ BENTO FEATURES */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gap); grid-auto-rows: minmax(168px, auto); }
.cell {
  background: var(--surf); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(24px, 2.4vw, 34px); position: relative; overflow: hidden;
  display: flex; flex-direction: column; transition: border-color .4s, background .4s, transform .5s var(--ease);
}
.cell:hover { border-color: var(--line-2); background: var(--surf-2); }
.c3 { grid-column: span 3; } .c4 { grid-column: span 4; } .c5 { grid-column: span 5; }
.c6 { grid-column: span 6; } .c7 { grid-column: span 7; } .c8 { grid-column: span 8; } .c12 { grid-column: span 12; }
.r2 { grid-row: span 2; }
.cell-ix { font-family: var(--font-en); font-size: 11px; letter-spacing: .2em; color: var(--dim); }
.cell-ico { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; color: var(--red-br); margin-bottom: auto; }
.cell-ico svg { width: 30px; height: 30px; }
.cell h3 { margin: 22px 0 10px; font-size: clamp(20px, 1.9vw, 26px); font-weight: var(--w-bold); line-height: 1.15; }
.cell p { margin: 0; color: var(--mut); font-size: 16px; line-height: 1.62; }
.cell .top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
/* hero cell — the dominant 24/7 */
.cell--hero {
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(181,58,45,.28), transparent 55%),
    var(--surf);
  justify-content: space-between;
}
.cell--hero .big { font-family: var(--font-num); font-weight: var(--w-black); font-size: clamp(96px, 12vw, 184px); line-height: .8; letter-spacing: -.05em; color: var(--txt); }
.cell--hero .big .s { color: var(--red-br); }
/* photo cell */
.cell--photo { padding: 0; }
.cell--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.cell--photo:hover img { transform: scale(1.05); }
.cell--photo .ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,.9), rgba(8,8,8,.05) 60%); z-index: 1; }
.cell--photo .body { position: relative; z-index: 2; margin-top: auto; padding: clamp(24px, 2.4vw, 34px); }
.cell--photo .body h3 { margin: 14px 0 0; }
.cell--brand { display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.cell--brand .bn { font-family: var(--font-en); font-weight: 800; font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -.01em; color: var(--txt); }
.cell--brand .bn small { display: block; font-family: var(--font-ar); font-weight: 500; font-size: 14px; letter-spacing: 0; color: var(--dim); margin-top: 3px; }

/* ============================================================ FULL-BLEED BREAK */
.bleed { position: relative; min-height: 86vh; display: flex; align-items: flex-end; overflow: hidden; }
.bleed-bg { position: absolute; inset: 0; z-index: 0; }
.bleed-bg img { width: 100%; height: 116%; object-fit: cover; will-change: transform; }
.bleed-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,.92), rgba(8,8,8,.2) 60%, rgba(8,8,8,.45)); }
.bleed-in { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) clamp(56px, 8vw, 110px); }
.bleed h2 { margin: 18px 0 0; font-weight: var(--w-black); font-size: clamp(40px, 8vw, 128px); line-height: .92; letter-spacing: -.02em; text-shadow: var(--shadow-text); }
.bleed h2 .neg { color: var(--dim); }
.bleed p { margin-top: 22px; max-width: 540px; font-size: clamp(16px,1.7vw,20px); line-height: 1.65; color: #d4d1ce; text-shadow: 0 2px 10px rgba(0,0,0,.6); }

/* ============================================================ EQUIPMENT */
.equip { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 72px); align-items: stretch; }
.equip-media { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); min-height: 520px; }
.equip-media img { position: absolute; inset: 0; width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.equip-info { display: flex; flex-direction: column; justify-content: center; }
.equip-info h3 { font-size: clamp(24px, 2.6vw, 36px); font-weight: var(--w-bold); margin: 0 0 16px; line-height: 1.1; }
.equip-info p { color: var(--mut); font-size: 18px; line-height: 1.7; margin: 0; }
.brandrow { display: flex; gap: 10px; position: absolute; inset-block-start: 20px; inset-inline-start: 20px; z-index: 2; }
.brandrow span { background: rgba(8,8,8,.66); backdrop-filter: blur(6px); border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 9px 16px; font-family: var(--font-en); font-weight: 700; font-size: 14px; letter-spacing: .02em; }
.etypes { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 34px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.etype { background: var(--ink-1); padding: 22px 24px; }
.etype .k { font-family: var(--font-en); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); display: block; margin-bottom: 8px; }
.etype b { font-size: 19px; font-weight: var(--w-bold); }

/* ============================================================ REELS */
.reels { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gap); grid-auto-rows: 240px; }
.reel { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.reel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.reel:hover img { transform: scale(1.06); }
.reel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,.78), rgba(8,8,8,0) 55%); }
.reel .meta { position: absolute; z-index: 2; inset-block-end: 0; inset-inline: 0; padding: 22px; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.reel .meta b { font-size: 18px; font-weight: var(--w-bold); }
.reel .play { position: absolute; z-index: 2; inset-block-start: 22px; inset-inline-end: 22px; width: 54px; height: 54px; border-radius: 50%; background: rgba(8,8,8,.5); backdrop-filter: blur(4px); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; transition: background .3s, transform .3s var(--ease); }
.reel:hover .play { background: var(--red); border-color: var(--red); transform: scale(1.08); }
.reel .play svg { width: 18px; height: 18px; color: #fff; margin-inline-start: 2px; }
.reel--xl { grid-column: span 6; grid-row: span 2; } .reel--w { grid-column: span 6; } .reel--s { grid-column: span 3; }

/* ============================================================ FACILITIES */
.facs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.fac { background: var(--ink-1); padding: clamp(28px, 2.6vw, 40px); transition: background .35s; }
.fac:hover { background: var(--surf); }
.fac .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.fac .ico { color: var(--red-br); } .fac .ico svg { width: 30px; height: 30px; }
.fac .ix { font-family: var(--font-en); font-size: 11px; letter-spacing: .2em; color: var(--dim); }
.fac h4 { margin: 0 0 10px; font-size: 21px; font-weight: var(--w-bold); }
.fac h4 .n { color: var(--red-br); }
.fac p { margin: 0; color: var(--mut); font-size: 15.5px; line-height: 1.6; }

/* ============================================================ COACHES */
.coaches { display: flex; flex-wrap: wrap; gap: var(--gap); }
.coach { flex: 1 1 300px; max-width: 360px; background: var(--surf); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .4s, transform .5s var(--ease); display: flex; flex-direction: column; }
.coach:hover { border-color: var(--line-2); transform: translateY(-5px); }
.coach-ph { position: relative; aspect-ratio: 1/1; background: radial-gradient(120% 90% at 50% 0%, #262626, #141414); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.coach-ph > svg { width: 80px; height: 80px; color: #555; }
.coach-ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,20,20,.92), transparent 52%); }
.coach-ph .tag { position: absolute; z-index: 2; inset-block-start: 14px; inset-inline-start: 14px; }
.coach-ph .nm { position: absolute; z-index: 2; inset-block-end: 0; inset-inline: 0; padding: 18px; }
.coach-ph .nm b { display: block; font-size: 23px; font-weight: var(--w-black); line-height: 1.05; }
.coach-ph .nm span { color: var(--red-br); font-size: 13px; font-weight: var(--w-bold); }
.coach-bd { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.coach-bd p { margin: 0 0 18px; color: var(--mut); font-size: 14.5px; line-height: 1.6; }
.coach-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-bottom: 16px; }
.coach-meta .cm { background: var(--ink-1); padding: 12px 14px; }
.coach-meta .k { font-family: var(--font-en); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); display: block; margin-bottom: 4px; }
.coach-meta .cm b { font-size: 14.5px; font-weight: var(--w-bold); }
.coach-sched { margin-bottom: 18px; }
.coach-sched .cs-head { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--dim); font-weight: var(--w-bold); margin-bottom: 10px; }
.coach-sched .cs-head svg { width: 13px; height: 13px; color: var(--red-br); }
.coach-sched .cs-row { display: flex; gap: 6px; }
.coach-sched .d { flex: 1; text-align: center; font-size: 12px; font-weight: var(--w-bold); padding: 8px 4px; border-radius: var(--r-sm); border: 1px solid var(--line); }
.coach-sched .d.on { color: #4fdc8a; border-color: rgba(54,208,122,.32); background: rgba(54,208,122,.08); }
.coach-sched .d.off { color: var(--dim); background: rgba(255,255,255,.02); }
.coach-cta { margin-top: auto; }
.coach-period { position: absolute; z-index: 2; inset-block-start: 14px; inset-inline-start: 14px; display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: var(--w-bold); padding: 7px 12px; border-radius: var(--r-sm); }
.coach-period svg { width: 13px; height: 13px; }
.coach-period.am { background: rgba(255,255,255,.92); color: var(--ink-0); }
.coach-period.pm { background: var(--red); color: #fff; }
.coach-days { margin-bottom: 18px; }
.coach-days .cs-head { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--dim); font-weight: var(--w-bold); margin-bottom: 10px; }
.coach-days .cs-head svg { width: 13px; height: 13px; color: var(--red-br); }
.coach-days .chips { display: flex; flex-wrap: wrap; gap: 6px; }
.coach-days .chip { font-size: 12px; font-weight: var(--w-bold); color: var(--txt); padding: 6px 11px; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--ink-1); }
.coach-days .chip.off { color: var(--dim); opacity: .55; }
/* coaches period grouping */
.coach-group-head { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.coach-group-head:first-child { margin-top: 0; }
.coach-group-head .lbl { display: inline-flex; align-items: center; gap: 10px; font-size: clamp(18px,2vw,24px); font-weight: var(--w-black); white-space: nowrap; }
.coach-group-head .lbl svg { width: 20px; height: 20px; color: var(--red-br); }
.coach-group-head .ln { flex: 1; height: 1px; background: var(--line); }
.coach-group-head .cnt { font-family: var(--font-en); font-size: 12px; letter-spacing: .14em; color: var(--dim); }

/* package offer-value block */
.pkg-offer { margin: 4px 0 22px; border: 1px solid var(--red-dp); border-radius: var(--r); background: radial-gradient(120% 120% at 100% 0%, rgba(181,58,45,.22), rgba(28,28,28,0) 60%), rgba(181,58,45,.06); padding: 16px 16px 14px; }
.pkg-offer .ttl { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: var(--w-black); letter-spacing: .02em; color: var(--red-br); margin-bottom: 12px; }
.pkg-offer .ttl svg { width: 14px; height: 14px; color: var(--red-br); flex: none; }
.pkg-offer ul { margin: 0; display: flex; flex-direction: column; gap: 9px; }
.pkg-offer li { display: flex; gap: 9px; font-size: 14px; color: var(--txt); line-height: 1.4; align-items: flex-start; }
.pkg-offer li svg { width: 14px; height: 14px; color: var(--red-br); flex: none; margin-top: 3px; }
.pkg-offer li b { font-weight: var(--w-bold); }

/* ============================================================ SCHEDULE (legacy — unused) */
.sched { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.sched-scroll { overflow-x: auto; }
.sched table { width: 100%; border-collapse: collapse; min-width: 660px; }
.sched th, .sched td { padding: 20px 24px; text-align: right; border-bottom: 1px solid var(--line); }
.sched thead th { background: var(--ink-1); font-family: var(--font-en); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); font-weight: 700; }
.sched thead th b { font-family: var(--font-ar); font-size: 15px; letter-spacing: 0; text-transform: none; color: var(--txt); display: block; margin-bottom: 2px; }
.sched tbody tr:last-child td { border-bottom: none; }
.sched tbody tr { transition: background .25s; } .sched tbody tr:hover { background: rgba(255,255,255,.02); }
.sched .cc { display: flex; align-items: center; gap: 14px; }
.sched .av { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--surf); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; font-weight: var(--w-bold); color: var(--red-br); flex: none; }
.sched .cc b { font-size: 17px; }
.shift { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: var(--w-bold); }
.shift.on { color: #4fdc8a; } .shift.on::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #36d07a; }
.shift.off { color: var(--dim); } .shift.off::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--dim); }

/* ============================================================ PACKAGES */
.pkgs { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.pkg { background: var(--surf); border: 1px solid var(--line); border-radius: var(--r); padding: 32px 28px; display: flex; flex-direction: column; transition: border-color .4s, transform .5s var(--ease), background .4s; }
.pkg:hover { border-color: var(--line-2); transform: translateY(-5px); }
.pkg--feat { background: radial-gradient(120% 120% at 100% 0%, rgba(181,58,45,.26), transparent 55%), var(--surf); border-color: var(--red); }
.pkg-tag { font-family: var(--font-en); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--red-br); min-height: 14px; margin-bottom: 18px; }
.pkg h3 { margin: 0; font-size: 24px; font-weight: var(--w-bold); }
.pkg .dur { color: var(--dim); font-size: 14px; margin-top: 5px; font-family: var(--font-en); letter-spacing: .04em; }
.pkg .price { margin: 26px 0 2px; display: flex; align-items: baseline; gap: 9px; }
.pkg .price .v { font-family: var(--font-num); font-weight: var(--w-black); font-size: 60px; line-height: .85; letter-spacing: -.03em; }
.pkg .price .c { font-size: 17px; color: var(--mut); font-weight: var(--w-bold); }
.pkg .permo { font-size: 13px; color: var(--dim); font-family: var(--font-en); letter-spacing: .03em; }
.pkg ul { margin: 26px 0; display: flex; flex-direction: column; gap: 14px; }
.pkg li { display: flex; gap: 11px; font-size: 15px; color: var(--mut); line-height: 1.4; align-items: flex-start; }
.pkg li svg { width: 16px; height: 16px; color: var(--red-br); flex: none; margin-top: 2px; }
.pkg li b { color: var(--txt); font-weight: var(--w-bold); }
.pkg .btn { margin-top: auto; }
.pkg-note { margin-top: 28px; text-align: center; color: var(--mut); font-size: 15px; }
.pkg-note b { color: var(--txt); }

/* ============================================================ OFFERS */
.offer { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--red-dp);
  background: radial-gradient(130% 130% at 88% 8%, var(--red-br), var(--red) 48%, var(--red-dp) 84%, #4d1610); }
.offer-in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(34px,4vw,60px); padding: clamp(38px,4.5vw,68px); align-items: center; }
.offer-mark { position: absolute; inset-block-start: -36px; inset-inline-end: -28px; width: 300px; opacity: .08; z-index: 0; }
.offer h3 { font-size: clamp(30px,4.4vw,58px); font-weight: var(--w-black); line-height: 1.02; margin: 18px 0 16px; letter-spacing: -.01em; }
.offer p { font-size: 18px; line-height: 1.65; color: rgba(255,255,255,.92); max-width: 460px; }
.perks { display: flex; flex-direction: column; gap: 12px; }
.perk { display: flex; align-items: center; gap: 16px; background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r); padding: 18px 20px; }
.perk .ico { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; flex: none; }
.perk .ico svg { width: 24px; height: 24px; color: #fff; }
.perk b { display: block; font-size: 17px; font-weight: var(--w-bold); }
.perk span { font-size: 14px; color: rgba(255,255,255,.78); }

/* ============================================================ RULES */
.rules { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gap); }
.policy { padding: clamp(28px,2.6vw,38px); background: var(--surf); border: 1px solid var(--line); border-radius: var(--r); }
.policy .ico { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--red-br); margin-bottom: 22px; }
.policy .ico svg { width: 28px; height: 28px; }
.policy h3 { margin: 0 0 18px; font-size: 22px; font-weight: var(--w-bold); }
.policy li { display: flex; gap: 11px; font-size: 15.5px; color: var(--mut); line-height: 1.55; padding: 7px 0; }
.policy li svg { width: 15px; height: 15px; color: var(--red-br); flex: none; margin-top: 4px; }
.rules-list { columns: 2; column-gap: 44px; }
.rules-list li { break-inside: avoid; display: flex; gap: 12px; padding: 13px 0; font-size: 16px; color: var(--mut); border-bottom: 1px solid var(--line); }
.rules-list li svg { width: 16px; height: 16px; color: var(--red-br); flex: none; margin-top: 3px; }

/* ============================================================ LOCATION + CONTACT */
.loc { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--gap); }
.map { position: relative; border-radius: var(--r); overflow: hidden; min-height: 440px; border: 1px solid var(--line); background: var(--ink-1); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.4) invert(.92) hue-rotate(180deg) contrast(.92); }
.map-pin { position: absolute; z-index: 2; inset-block-start: 20px; inset-inline-start: 20px; background: rgba(8,8,8,.84); backdrop-filter: blur(8px); border: 1px solid var(--line-2); border-radius: var(--r); padding: 16px 20px; max-width: 280px; }
.map-pin b { display: flex; align-items: center; gap: 9px; font-size: 17px; margin-bottom: 6px; }
.map-pin b svg { width: 17px; height: 17px; color: var(--red-br); }
.map-pin p { margin: 0; font-size: 14px; color: var(--mut); }
.loc-info { display: flex; flex-direction: column; gap: var(--gap); }
.irow { display: flex; gap: 16px; align-items: center; padding: 22px 24px; background: var(--surf); border: 1px solid var(--line); border-radius: var(--r); }
.irow .ico { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--red-br); flex: none; }
.irow .ico svg { width: 24px; height: 24px; }
.irow .k { font-family: var(--font-en); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); }
.irow .v { font-size: 17px; font-weight: var(--w-bold); margin-top: 3px; }
.irow .v.en { font-family: var(--font-en); letter-spacing: .01em; }

.contact { display: grid; grid-template-columns: 1fr .8fr; gap: var(--gap); align-items: stretch; }
.contact-l { display: flex; flex-direction: column; gap: var(--gap); }
.socrow { display: flex; gap: 10px; flex-wrap: wrap; }
.soc { display: inline-flex; align-items: center; gap: 10px; padding: 13px 18px; border-radius: var(--r-sm); background: var(--surf); border: 1px solid var(--line); font-weight: var(--w-bold); font-size: 14.5px; transition: background .25s, border-color .25s, transform .35s var(--ease); }
.soc:hover { background: var(--surf-2); border-color: var(--line-2); transform: translateY(-2px); }
.soc svg { width: 18px; height: 18px; color: var(--red-br); }
.hours { background: var(--surf); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(28px,2.6vw,38px); display: flex; flex-direction: column; }
.hours .k { font-family: var(--font-en); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; }
.hours .big { font-family: var(--font-num); font-weight: var(--w-black); font-size: clamp(56px,6vw,88px); line-height: .82; }
.hours .big .s { color: var(--red-br); }
.hrow { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hrow:last-of-type { border-bottom: none; }
.hrow span:first-child { color: var(--mut); }
.hrow span:last-child { font-family: var(--font-en); font-weight: var(--w-bold); }
.hrow.cl span:last-child { color: var(--red-br); }
.hours-note { margin-top: 16px; font-size: 13px; color: var(--dim); line-height: 1.5; }

/* ============================================================ FAQ */
.faq { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa-q { width: 100%; display: flex; align-items: center; gap: 24px; padding: clamp(26px,3vw,38px) 4px; text-align: right; font-size: clamp(19px,2.2vw,26px); font-weight: var(--w-bold); transition: color .25s; }
.qa-q .ix { font-family: var(--font-en); font-size: 13px; color: var(--dim); letter-spacing: .1em; flex: none; width: 38px; }
.qa-q .t { flex: 1; }
.qa-q:hover { color: var(--red-br); }
.qa-q .pm { width: 30px; height: 30px; flex: none; position: relative; }
.qa-q .pm::before, .qa-q .pm::after { content: ""; position: absolute; inset-block-start: 50%; inset-inline-start: 50%; transform: translate(50%,-50%); background: var(--red-br); transition: transform .35s var(--ease), opacity .35s; }
.qa-q .pm::before { width: 18px; height: 2px; }
.qa-q .pm::after { width: 2px; height: 18px; }
.qa.open .qa-q .pm::after { transform: translate(50%,-50%) scaleY(0); opacity: 0; }
.qa-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-io); }
.qa-a-in { padding: 0 62px 32px; color: var(--mut); font-size: 17px; line-height: 1.72; max-width: 820px; }

/* ============================================================ FOOTER */
.footer { background: var(--ink-0); border-top: 1px solid var(--line); padding-top: clamp(64px, 8vw, 110px); padding-bottom: 36px; position: relative; overflow: hidden; }
.footer-cta { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; padding-bottom: clamp(56px,7vw,90px); border-bottom: 1px solid var(--line); }
.footer-cta h2 { margin: 0; font-weight: var(--w-black); font-size: clamp(38px, 7vw, 104px); line-height: .92; letter-spacing: -.02em; }
.footer-cta h2 .hl { color: var(--red-br); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-block: clamp(48px,6vw,80px); }
.footer-brand img { height: 52px; margin-bottom: 22px; }
.footer-brand p { color: var(--mut); font-size: 15.5px; line-height: 1.7; max-width: 300px; }
.footer h5 { font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); margin: 0 0 22px; }
.footer-col a, .footer-col p { display: block; color: var(--mut); font-size: 15.5px; padding: 7px 0; margin: 0; transition: color .2s; }
.footer-col a:hover { color: var(--red-br); }
.footer-soc { display: flex; gap: 10px; margin-top: 22px; }
.footer-soc a { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--surf); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; transition: background .25s, transform .35s var(--ease); }
.footer-soc a:hover { background: var(--red); transform: translateY(-2px); }
.footer-soc svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; font-size: 13.5px; color: var(--dim); }
.footer-bottom .tags { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-bottom .tags span { font-family: var(--font-en); font-size: 12px; color: var(--mut); letter-spacing: .04em; }

/* ============================================================ REVEAL */
.no-gsap [data-anim] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
[data-anim] { will-change: transform, opacity; }

/* ============================================================ COUNTDOWN */
.cdown { margin-top: 26px; }
.cdown-label { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: var(--w-bold); color: rgba(255,255,255,.9); margin-bottom: 14px; letter-spacing: .01em; }
.cdown-label .cd-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.18); animation: pulse 2.4s ease-in-out infinite; }
.cdown.is-closed .cdown-label .cd-dot { background: rgba(255,255,255,.4); box-shadow: none; animation: none; }
.cdown-blocks { display: flex; align-items: stretch; gap: 8px; }
.cdb { background: rgba(0,0,0,.32); border: 1px solid rgba(255,255,255,.18); border-radius: var(--r); padding: 12px 6px 9px; min-width: 64px; text-align: center; display: flex; flex-direction: column; gap: 4px; }
.cdb b { font-family: var(--font-num); font-weight: var(--w-black); font-size: clamp(28px, 3.4vw, 40px); line-height: 1; color: #fff; letter-spacing: -.02em; display: block; }
.cdb span { font-size: 11px; color: rgba(255,255,255,.7); font-weight: var(--w-bold); letter-spacing: .02em; }
.cdb-sep { display: flex; align-items: center; font-family: var(--font-num); font-weight: var(--w-black); font-size: clamp(24px,3vw,34px); color: rgba(255,255,255,.42); padding-bottom: 16px; }
.cdown.is-closed .cdb b { color: rgba(255,255,255,.55); }
@media (max-width: 460px) {
  .cdb { min-width: 0; flex: 1; padding: 10px 4px 8px; }
  .cdb-sep { font-size: 22px; }
}

/* ============================================================ MODAL */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal-scrim { position: absolute; inset: 0; background: rgba(6,6,6,.78); backdrop-filter: blur(6px); }
.modal-card {
  position: relative; z-index: 1; width: 100%; max-width: 480px; max-height: calc(100svh - 40px); overflow-y: auto;
  background: var(--surf); border: 1px solid var(--line-2); border-radius: 12px;
  padding: clamp(26px, 4vw, 38px); box-shadow: 0 40px 90px rgba(0,0,0,.6);
}
.modal-x { position: absolute; inset-block-start: 16px; inset-inline-start: 16px; width: 40px; height: 40px; border-radius: var(--r-sm); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--mut); transition: background .25s, color .25s; }
.modal-x:hover { background: rgba(255,255,255,.06); color: var(--txt); }
.modal-x svg { width: 18px; height: 18px; }
.modal-head { margin-bottom: 26px; padding-inline-end: 44px; }
.modal-head h3 { margin: 16px 0 10px; font-size: clamp(24px, 3vw, 32px); font-weight: var(--w-black); line-height: 1.1; }
.modal-head p { margin: 0; color: var(--mut); font-size: 15.5px; line-height: 1.6; }
.field { display: block; margin-bottom: 18px; }
.field .lbl { display: block; font-size: 14px; font-weight: var(--w-bold); color: var(--txt); margin-bottom: 9px; }
.field .lbl i { color: var(--red-br); font-style: normal; }
.field input { width: 100%; background: var(--ink-1); border: 1px solid var(--line); border-radius: var(--r); padding: 15px 16px; color: var(--txt); font-family: var(--font-ar); font-size: 16px; transition: border-color .25s, background .25s; }
.field input::placeholder { color: var(--dim); }
.field input:focus { outline: none; border-color: var(--red-br); background: #1f1715; }
.field.invalid input, .field.invalid .seg { border-color: var(--red-br); }
.field .err { display: none; margin-top: 8px; font-size: 13px; color: var(--red-br); font-weight: var(--w-bold); }
.field.invalid .err { display: block; }
.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; border: 1px solid transparent; border-radius: var(--r); }
.seg-opt { padding: 13px 8px; border-radius: var(--r); border: 1px solid var(--line); background: var(--ink-1); color: var(--mut); font-weight: var(--w-bold); font-size: 14.5px; transition: border-color .25s, background .25s, color .25s; }
.seg-opt:hover { border-color: var(--line-2); color: var(--txt); }
.seg-opt.is-on { background: radial-gradient(120% 120% at 50% 0%, rgba(181,58,45,.32), var(--surf-2)); border-color: var(--red); color: #fff; }
.modal-actions { display: flex; gap: 12px; margin-top: 26px; }
.modal-actions .btn { flex: 1; }
.modal-success { text-align: center; padding: 14px 6px 6px; }
.modal-success .ms-ico { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center; background: radial-gradient(120% 120% at 50% 0%, var(--red-br), var(--red-dp)); }
.modal-success .ms-ico svg { width: 30px; height: 30px; color: #fff; }
.modal-success h3 { margin: 0 0 12px; font-size: 26px; font-weight: var(--w-black); }
.modal-success p { margin: 0 0 26px; color: var(--mut); font-size: 16px; line-height: 1.6; }
@media (max-width: 420px) { .seg { grid-template-columns: 1fr; } .modal-actions { flex-direction: column-reverse; } }

/* ============================================================ RESPONSIVE */
@media (max-width: 1080px) {
  .bento { grid-auto-rows: minmax(150px, auto); }
  .c3, .c4, .c5 { grid-column: span 6; } .c7, .c8 { grid-column: span 12; }
  .cell--hero.c5 { grid-column: span 12; }
  .equip { grid-template-columns: 1fr; } .equip-media { min-height: 380px; }
  .reels { grid-auto-rows: 200px; } .reel--xl { grid-column: span 12; } .reel--w { grid-column: span 6; } .reel--s { grid-column: span 6; }
  .facs { grid-template-columns: repeat(2, 1fr); }
  .coaches { grid-template-columns: repeat(2, 1fr); }
  .coach { max-width: none; }
  .pkgs { grid-template-columns: repeat(2, 1fr); }
  .offer-in { grid-template-columns: 1fr; }
  .loc, .contact { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-inline-start: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-red.btn-sm { display: none; }
  .weekly { padding: 6px 11px; gap: 9px; }
  .weekly .wk-label { font-size: 11px; }
  .policy.c4, .policy.c6, .policy.c12 { grid-column: span 12; }
  .rules { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .weekly .wk-label .wk-dot { display: none; }
  .weekly #wkText { display: none; }
  .weekly .wk-label::before { content: "نهاية الأسبوع"; }
}
@media (max-width: 360px) {
  .weekly .wk-label::before { content: "الأسبوع"; }
}
@media (max-width: 600px) {
  :root { --gap: 12px; }
  .c3, .c4, .c5, .c6, .c7, .c8, .cell--hero.c5 { grid-column: span 12; }
  .reel--xl, .reel--w, .reel--s { grid-column: span 12; }
  .reels { grid-auto-rows: 220px; }
  .facs, .coaches, .pkgs { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-inline-start: none !important; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .rules-list { columns: 1; }
  .qa-a-in { padding-inline: 4px 4px; }
  .hero h1 { font-size: clamp(64px, 21vw, 120px); }
}
