/* ═══════════ ONSET — Design System ═══════════ */
:root {
  --black: #050505;
  --ink: #0d0c0b;
  --bone: #f4f1ec;
  --grey: #9b968f;
  --fire: #ff4a17;
  --ember: #ff7a3c;
  --font-head: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: default;
}
::selection { background: var(--fire); color: var(--black); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--fire); }

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transition: opacity .7s ease, visibility .7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__mark {
  font-family: var(--font-head); font-weight: 700; letter-spacing: .45em;
  font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--bone);
  text-shadow: 0 0 32px rgba(255, 74, 23, .55);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { text-shadow: 0 0 60px rgba(255,74,23,.9); } }
.preloader__bar { width: 180px; height: 1px; background: rgba(244,241,236,.12); overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--fire); transition: width .3s; }

/* ═══════════ CURSOR GLOW ═══════════ */
.cursor-glow {
  position: fixed; z-index: 1; pointer-events: none;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,74,23,.07) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  transition: opacity .4s;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 64px);
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
.nav.scrolled { background: rgba(5,5,5,.82); backdrop-filter: blur(14px); padding-block: 14px; border-bottom: 1px solid rgba(244,241,236,.06); }
.nav__logo { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; letter-spacing: .18em; }
.nav__logo span { color: var(--fire); }
.nav__links { display: flex; gap: clamp(16px, 3vw, 40px); }
.nav__links a {
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--grey);
  transition: color .3s; position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--fire); transition: width .35s;
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid rgba(255,74,23,.5); color: var(--bone);
  padding: 10px 22px; border-radius: 2px; transition: background .3s, box-shadow .3s;
}
.nav__cta:hover { background: var(--fire); box-shadow: 0 0 28px rgba(255,74,23,.45); }
/* — mobile menu — */
.nav__burger {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--bone); transition: transform .3s, opacity .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 760px) {
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(5,5,5,.96); backdrop-filter: blur(16px);
    flex-direction: column; padding: 18px clamp(20px,5vw,64px) 26px; gap: 18px;
    border-bottom: 1px solid rgba(255,74,23,.25);
  }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  /* hero copy on phones: text lives ABOVE the camera, never on top of it */
  .hero__copy--2, .hero__copy--3 {
    left: 50% !important; right: auto !important; transform: translateX(-50%) !important;
    text-align: center !important; width: min(92vw, 460px);
    top: 11vh;
  }
  /* the finale headline sits low, under the assembled camera */
  .hero__copy--4 { top: auto; bottom: 9vh; transform: translateX(-50%); }
  .hero__copy--4::before { inset: -34px -40px; }
  /* readable scrim behind every stage caption */
  .hero__copy--2::before, .hero__copy--3::before {
    content: ''; position: absolute; inset: -26px -40px; z-index: -1;
    background: radial-gradient(ellipse, rgba(5,5,5,.72), transparent 75%);
  }
  /* top and bottom gradients frame the shot cinematically */
  .hero__vignette {
    background:
      radial-gradient(ellipse at center, transparent 30%, rgba(5,5,5,.6) 100%),
      linear-gradient(to bottom, rgba(5,5,5,.8) 0%, transparent 26%, transparent 62%, rgba(5,5,5,.85) 92%, var(--black) 100%);
  }
}

/* ═══════════ HERO ═══════════ */
.hero { height: 600vh; position: relative; }
.hero__stage { position: sticky; top: 0; height: 100vh; overflow: hidden; background: var(--black); }
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 1; will-change: transform;
}
.hero__dim {
  position: absolute; inset: 0; z-index: 2; background: #000;
  opacity: 0; will-change: opacity; pointer-events: none;
}
.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 4; opacity: 0; will-change: opacity; pointer-events: none;
  /* cinematic black crush */
  filter: contrast(1.14) brightness(.92) saturate(1.05);
}

/* — smoke machine haze: drifting layers that catch the set lights — */
.smoke {
  position: absolute; pointer-events: none; will-change: transform;
  filter: blur(46px); mix-blend-mode: screen;
}
.smoke--1 {
  z-index: 3; left: -30%; bottom: -12%; width: 90%; height: 60%;
  background: radial-gradient(ellipse at 40% 70%, rgba(255,122,60,.10), rgba(120,140,190,.03) 55%, transparent 72%);
  animation: drift1 26s ease-in-out infinite alternate;
}
.smoke--2 {
  z-index: 3; right: -25%; top: 4%; width: 80%; height: 55%;
  background: radial-gradient(ellipse at 60% 35%, rgba(120,160,220,.08), rgba(255,110,50,.03) 55%, transparent 72%);
  animation: drift2 34s ease-in-out infinite alternate;
}
.smoke--3 {
  z-index: 5; left: -15%; bottom: -20%; width: 130%; height: 45%;
  background: radial-gradient(ellipse at 50% 80%, rgba(255,140,80,.07), rgba(200,210,235,.02) 50%, transparent 68%);
  animation: drift3 22s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translateX(24%) translateY(-6%) scale(1.15); } }
@keyframes drift2 { to { transform: translateX(-20%) translateY(8%) scale(1.2); } }
@keyframes drift3 { to { transform: translateX(14%) translateY(-10%) scale(1.25); } }

/* — set light sweeping across the camera body — */
.hero__sweep {
  position: absolute; inset: 0; z-index: 6; pointer-events: none;
  mix-blend-mode: screen; opacity: 0; will-change: opacity;
  background: linear-gradient(115deg,
    transparent 22%, rgba(255,122,60,.34) 38%, rgba(255,210,160,.48) 50%,
    rgba(140,170,230,.28) 62%, transparent 78%);
  background-size: 300% 100%;
  /* position is scroll-driven from JS — the beam travels across the parts as they assemble */
}

/* — Astera tubes: soft colored flashes pulsing from the set edges — */
.astera {
  position: absolute; z-index: 6; pointer-events: none;
  mix-blend-mode: screen; opacity: 0; filter: blur(30px); will-change: opacity;
}
.astera--l {
  left: -6%; top: 6%; width: 44%; height: 88%;
  background: linear-gradient(to right, rgba(255,110,40,.6), rgba(255,110,40,.2) 55%, transparent 82%);
  animation: flashL 7.5s ease-in-out infinite;
}
.astera--r {
  right: -6%; top: 2%; width: 44%; height: 92%;
  background: linear-gradient(to left, rgba(90,150,255,.55), rgba(120,90,255,.18) 55%, transparent 82%);
  animation: flashR 11s ease-in-out infinite;
}
.astera--top {
  left: 10%; top: -8%; width: 80%; height: 44%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,170,90,.5), transparent 78%);
  animation: flashT 13s ease-in-out infinite;
}
@keyframes flashL {
  0%, 34%, 100% { opacity: 0; }
  38% { opacity: .8; } 41% { opacity: .18; } 44% { opacity: .6; } 50% { opacity: 0; }
}
@keyframes flashR {
  0%, 55%, 100% { opacity: 0; }
  59% { opacity: .75; } 62% { opacity: .2; } 66% { opacity: .55; } 72% { opacity: 0; }
}
@keyframes flashT {
  0%, 20%, 100% { opacity: 0; }
  24% { opacity: .6; } 27% { opacity: .12; } 30% { opacity: .45; } 36% { opacity: 0; }
}

.hero__vignette {
  position: absolute; inset: 0; z-index: 7; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 38%, rgba(5,5,5,.72) 100%),
    linear-gradient(to bottom, rgba(5,5,5,.45), transparent 20%, transparent 76%, var(--black) 100%);
}
.hero__copy {
  position: absolute; z-index: 8; left: 50%; transform: translateX(-50%);
  text-align: center; width: min(90vw, 900px);
  opacity: 0; transition: opacity .45s ease; pointer-events: none;
}
.hero__copy.active { opacity: 1; pointer-events: auto; }

/* — cinematic type: each element rises in late, one after the other — */
.hero__copy .hero__kicker, .hero__copy .hero__title, .hero__copy .hero__line,
.hero__copy .hero__sub, .hero__copy .hero__linesub, .hero__copy .btn, .hero__copy .hero__scrollhint {
  opacity: 0; transform: translateY(34px);
  transition: opacity 1s cubic-bezier(.16,.7,.2,1), transform 1s cubic-bezier(.16,.7,.2,1);
}
.hero__copy.active .hero__kicker { opacity: 1; transform: none; transition-delay: .1s; }
.hero__copy.active .hero__title,
.hero__copy.active .hero__line { opacity: 1; transform: none; transition-delay: .35s; }
.hero__copy.active .hero__sub,
.hero__copy.active .hero__linesub { opacity: 1; transform: none; transition-delay: .7s; }
.hero__copy.active .btn,
.hero__copy.active .hero__scrollhint { opacity: 1; transform: none; transition-delay: .95s; }
.hero__copy--1 { top: 16vh; }
.hero__copy--2 { top: 14vh; text-align: left; left: clamp(20px, 6vw, 90px); transform: none; width: auto; }
.hero__copy--3 { top: 14vh; text-align: right; left: auto; right: clamp(20px, 6vw, 90px); transform: none; width: auto; }
.hero__copy--4 { top: 50%; transform: translate(-50%, -50%); }
.hero__copy--4::before {
  content: ''; position: absolute; inset: -60px -120px; z-index: -1;
  background: radial-gradient(ellipse, rgba(5,5,5,.6), transparent 70%);
}
.hero__kicker {
  font-size: .72rem; letter-spacing: .5em; color: var(--ember); margin-bottom: 18px;
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 5.4rem); line-height: 1.04; letter-spacing: -.01em;
  text-shadow: 0 4px 40px rgba(0,0,0,.8);
}
.hero__sub { margin-top: 22px; color: var(--grey); font-size: .9rem; letter-spacing: .2em; text-transform: uppercase; }
.hero__scrollhint { margin: 26px auto 0; width: 1px; height: 56px; background: rgba(244,241,236,.15); position: relative; overflow: hidden; }
.hero__scrollhint span { position: absolute; top: -40%; left: 0; width: 100%; height: 40%; background: var(--fire); animation: drip 1.8s ease-in-out infinite; }
@keyframes drip { to { top: 110%; } }
.hero__line {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 4.2rem); text-shadow: 0 4px 40px rgba(0,0,0,.85);
}
.hero__line--accent { color: var(--fire); text-shadow: 0 0 60px rgba(255,74,23,.5); font-size: clamp(3rem, 9vw, 7rem); }
.hero__linesub { margin-top: 14px; color: var(--bone); opacity: .75; font-size: 1rem; }
.hero__copy--3 .btn { margin-top: 34px; }
.hero__progress {
  position: absolute; z-index: 5; left: 0; bottom: 0; width: 100%; height: 2px;
  background: rgba(244,241,236,.07);
}
.hero__progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--fire), var(--ember)); }

/* ═══════════ MARQUEE ═══════════ */
.marquee { overflow: hidden; border-block: 1px solid rgba(244,241,236,.07); padding: 22px 0; background: var(--ink); }
.marquee__track { display: flex; gap: 48px; width: max-content; animation: scroll-x 28s linear infinite; }
.marquee__track span {
  font-family: var(--font-head); font-size: 1rem; letter-spacing: .35em; color: var(--grey); white-space: nowrap;
}
.marquee__track i { color: var(--fire); font-style: normal; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ═══════════ SECTIONS ═══════════ */
.section { padding: clamp(80px, 12vw, 150px) clamp(20px, 6vw, 80px); position: relative; }
.section__kicker { font-size: .72rem; letter-spacing: .5em; color: var(--fire); text-transform: uppercase; margin-bottom: 20px; }
.section__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.08; letter-spacing: -.01em;
}
.section__head { margin-bottom: clamp(40px, 6vw, 80px); }

/* reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease var(--d, 0s), transform .8s ease var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ═══════════ SERVICES ═══════════ */
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.scard {
  border: 1px solid rgba(244,241,236,.08); border-radius: 4px;
  padding: 40px 32px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(244,241,236,.02), transparent);
  transition: border-color .4s, transform .4s;
}
.scard:hover { border-color: rgba(255,74,23,.45); transform: translateY(-6px); }
.scard::before {
  content: ''; position: absolute; top: -60px; right: -60px; width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,74,23,.16), transparent 70%);
  opacity: 0; transition: opacity .5s;
}
.scard:hover::before { opacity: 1; }
.scard__imgwrap {
  margin: -40px -32px 26px; overflow: hidden; position: relative;
  aspect-ratio: 16/9; background: #0b0a09;
}
.scard__imgwrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.85) brightness(.85);
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .8s;
}
.scard:hover .scard__imgwrap img { transform: scale(1.06); filter: saturate(1.05) brightness(1); }
.scard__imgwrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,12,11,.85), transparent 55%);
}
.scard__num { font-family: var(--font-head); color: var(--fire); font-size: .85rem; letter-spacing: .3em; }

/* ═══════════ INTERACTIVE ICON SYSTEM ═══════════ */
.scard__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.sicon {
  width: 46px; height: 46px; stroke: var(--fire); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: filter .45s, transform .45s;
}
.scard:hover .sicon { filter: drop-shadow(0 0 12px rgba(255,74,23,.65)); transform: translateY(-2px); }
/* icons draw themselves on when the card reveals */
.sicon :is(path, circle, rect, line) { stroke-dasharray: 1; stroke-dashoffset: 1; }
.reveal.in .sicon :is(path, circle, rect, line) { transition: stroke-dashoffset 1.4s ease .35s; stroke-dashoffset: 0; }
/* clapperboard: the lid snaps open on hover */
.sicon__lid { transition: transform .5s cubic-bezier(.34,1.56,.64,1); transform-origin: 7px 21px; }
.scard:hover .sicon--clap .sicon__lid { transform: rotate(-14deg); }
/* aperture: blades spin on hover */
.sicon__blades { transition: transform .7s cubic-bezier(.2,.7,.2,1); transform-origin: 24px 24px; }
.scard:hover .sicon--aperture .sicon__blades { transform: rotate(60deg); }
/* camera: the lens breathes on hover */
.sicon__lens { transition: transform .5s cubic-bezier(.34,1.56,.64,1); transform-origin: 16px 24px; }
.scard:hover .sicon--cam .sicon__lens { transform: scale(1.28); }

/* stat icons */
.stat__icon {
  width: 30px; height: 30px; stroke: var(--ember); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  margin: 0 auto 12px; display: block; opacity: .85;
  transition: transform .4s, filter .4s;
}
.stat:hover .stat__icon { transform: scale(1.18) rotate(-4deg); filter: drop-shadow(0 0 10px rgba(255,122,60,.6)); }
.reveal.in .stat__icon { animation: statPop .7s cubic-bezier(.34,1.56,.64,1) .2s backwards; }
@keyframes statPop { from { transform: scale(0); opacity: 0; } }

/* contact rows with ringing icons */
.contact__rows a, .contact__rows p { display: inline-flex; align-items: center; justify-content: center; gap: 12px; }
.crow-icon {
  width: 22px; height: 22px; stroke: var(--ember); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}
.contact__rows a:hover .crow-icon { animation: ring .5s ease; }
@keyframes ring { 25% { transform: rotate(-14deg); } 55% { transform: rotate(12deg); } 80% { transform: rotate(-6deg); } }

/* WhatsApp float: living pulse ring */
.wa-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(35,193,94,.6);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .9; }
  70%, 100% { transform: scale(1.65); opacity: 0; }
}
/* buttons: tactile press */
.btn:active { transform: scale(.96); }
.filters button:active { transform: scale(.94); }
.scard h3 { font-family: var(--font-head); font-size: 1.45rem; margin: 18px 0 14px; }
.scard p { color: var(--grey); font-size: .93rem; line-height: 1.7; }
.scard ul { list-style: none; margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.scard li {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid rgba(244,241,236,.14); padding: 6px 12px; border-radius: 40px; color: var(--bone);
}

/* ═══════════ STATS ═══════════ */
.stats { background: var(--ink); border-block: 1px solid rgba(244,241,236,.06); }
.stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 34px; text-align: center; }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.6rem, 6vw, 4.4rem); color: var(--bone); }
.stat__plus { font-family: var(--font-head); color: var(--fire); font-size: 1.6rem; margin-left: 4px; }
.stat p { color: var(--grey); font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; margin-top: 8px; }

/* ═══════════ WORKS ═══════════ */
.works__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.wcard { position: relative; border-radius: 4px; overflow: hidden; display: block; }
.wcard img { aspect-ratio: 3/2; object-fit: cover; width: 100%; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .8s; filter: saturate(.85); }
.wcard:hover img { transform: scale(1.06); filter: saturate(1.1); }
.wcard__tag {
  position: absolute; z-index: 2; top: 14px; left: 14px;
  font-size: .62rem; letter-spacing: .25em; background: rgba(5,5,5,.7); backdrop-filter: blur(6px);
  color: var(--ember); padding: 6px 12px; border-radius: 2px;
}
.wcard h3 {
  position: absolute; z-index: 2; bottom: 0; left: 0; right: 0;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 500;
  padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(5,5,5,.92), transparent);
}
.works__more { margin-top: 44px; text-align: center; }

/* ═══════════ CLIENTS ═══════════ */
.clients { padding-block: clamp(50px, 7vw, 90px); }
.clients__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(28px, 5vw, 64px); margin-top: 34px;
}
.clients__row img { height: 34px; width: auto; opacity: .45; filter: grayscale(1) brightness(3); transition: opacity .4s, filter .4s; }
.clients__row img:hover { opacity: 1; filter: grayscale(0) brightness(1.4); }

/* ═══════════ EQUIPMENT ═══════════ */
.equipment {
  background:
    radial-gradient(ellipse 70% 90% at 80% 50%, rgba(255,74,23,.08), transparent),
    var(--black);
  border-block: 1px solid rgba(244,241,236,.06);
  text-align: center;
}
.equipment__sub { color: var(--grey); margin: 22px auto 34px; max-width: 520px; line-height: 1.8; }

/* ═══════════ CONTACT ═══════════ */
.contact { text-align: center; }
.contact__rows { margin: 34px 0; display: flex; flex-direction: column; gap: 12px; }
.contact__rows a { font-family: var(--font-head); font-size: clamp(1.1rem, 3vw, 1.6rem); transition: color .3s; }
.contact__rows a:hover { color: var(--fire); }
.contact__rows p { color: var(--grey); font-size: .9rem; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-block; font-family: var(--font-head);
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  padding: 16px 38px; border-radius: 2px; transition: all .35s;
}
.btn--solid { background: var(--fire); color: var(--black); font-weight: 700; }
.btn--solid:hover { box-shadow: 0 0 44px rgba(255,74,23,.55); transform: translateY(-2px); }
.btn--ghost { border: 1px solid rgba(244,241,236,.25); color: var(--bone); }
.btn--ghost:hover { border-color: var(--fire); color: var(--fire); }

/* ═══════════ FOOTER ═══════════ */
.footer { padding: 70px 20px 40px; text-align: center; border-top: 1px solid rgba(244,241,236,.06); }
.footer__mark {
  font-family: var(--font-head); font-weight: 700; letter-spacing: .5em;
  font-size: clamp(2rem, 8vw, 4rem); color: rgba(244,241,236,.06); margin-bottom: 20px;
}
.footer p { color: var(--grey); font-size: .78rem; letter-spacing: .08em; }

/* ═══════════ WHATSAPP FLOAT ═══════════ */
.wa-float {
  position: fixed; z-index: 40; right: 22px; bottom: 22px;
  width: 54px; height: 54px; border-radius: 50%;
  background: #23c15e; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.5); transition: transform .3s;
}
.wa-float:hover { transform: scale(1.1); }

/* ═══════════ PHONE POLISH ═══════════ */
@media (max-width: 600px) {
  .hero { height: 300vh; }
  /* keep the lit screens and stands in frame on portrait */
  .hero__bg { object-position: center 38%; }
  .hero__copy--1 { top: 13vh; }
  .hero__title { font-size: clamp(2.5rem, 11vw, 3.4rem); }
  .hero__kicker { font-size: .68rem; letter-spacing: .34em; }
  .hero__sub { font-size: .78rem; }
  .hero__scrollhint { height: 44px; margin-top: 20px; }
  .hero__line { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero__line--accent { font-size: clamp(2.8rem, 16vw, 4.2rem); }
  .hero__linesub { font-size: .92rem; padding-inline: 8px; }
  .hero__copy--4 .btn { margin-top: 26px; }

  /* performance: lighter haze on phones */
  .smoke { filter: blur(26px); }
  .smoke--2 { display: none; }
  .cursor-glow { display: none; }

  /* layer order on phones: 1) text on top  2) camera  3) set + effects */
  .hero__canvas { z-index: 9; filter: contrast(1.06) brightness(1.04) saturate(.96); }
  .smoke--3 { display: none; }          /* this one sat in front of the camera */
  .hero__sweep, .astera { z-index: 5; opacity: 0 !important; }
  .hero__vignette { z-index: 10; }

  /* rhythm */
  .section { padding-block: 64px; }
  .section__head { margin-bottom: 36px; }
  .marquee { padding: 14px 0; }
  .marquee__track { gap: 30px; }
  .marquee__track span { font-size: .78rem; letter-spacing: .22em; }

  /* stats: tight 2×2 */
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 12px; }
  .stat__num { font-size: 2.5rem; }
  .stat__plus { font-size: 1.1rem; }
  .stat p { font-size: .68rem; letter-spacing: .14em; }
  .stat__icon { width: 24px; height: 24px; margin-bottom: 8px; }

  /* cards */
  .scard { padding: 30px 22px; }
  .scard__imgwrap { margin: -30px -22px 20px; }
  .sicon { width: 38px; height: 38px; }

  /* buttons: comfy touch targets */
  .btn { padding: 15px 30px; font-size: .76rem; }

  /* WhatsApp: clear of the iPhone home bar */
  .wa-float {
    width: 50px; height: 50px; right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .footer__mark { letter-spacing: .3em; }
}


/* ═══════════ STORE LINK (injected by nav.js on every page) ═══════════ */
.nav__store {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--fire); color: var(--black) !important;
  padding: 8px 16px; border-radius: 40px;
  transition: box-shadow .3s, transform .3s;
}
.nav__store svg { width: 16px; height: 16px; }
.nav__store:hover { box-shadow: 0 0 24px rgba(255,74,23,.6); transform: translateY(-1px); }
.nav__store::after { display: none; }
@media (max-width: 760px) {
  .nav__store { justify-content: center; margin-top: 4px; }
}

/* store promo banner (home + equipment) */
.storebar {
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  margin: 0 clamp(20px, 6vw, 80px); padding: 22px 26px;
  border: 1px solid rgba(255,74,23,.35); border-radius: 6px;
  background:
    radial-gradient(ellipse 50% 120% at 12% 50%, rgba(255,74,23,.14), transparent),
    linear-gradient(160deg, rgba(244,241,236,.02), transparent);
}
.storebar p { font-family: var(--font-head); font-size: clamp(.95rem, 2.2vw, 1.15rem); }
.storebar p em { color: var(--fire); }
.storebar .btn { padding: 12px 26px; display: inline-flex; align-items: center; gap: 8px; }
.storebar .btn svg { width: 17px; height: 17px; }

/* ═══════ PHONE LAYER ORDER (must stay last) ═══════ */
@media (max-width: 600px) {
  .hero__copy { z-index: 30 !important; }   /* 1) النص فوق الكل */
  .hero__canvas { z-index: 9 !important; }  /* 2) الكاميرا تحته */
  .hero__vignette { z-index: 8 !important; }
}
