/* ============================================================
   ZA POWER — v2 "Light Showroom"
   light grey / white / red / black · premium showroom · AR-first RTL
   hero keeps the lights-off → lights-on master switch moment
   ============================================================ */

:root {
  --bg: #f5f4f2;
  --bg2: #eeedeb;
  --white: #ffffff;
  --ink: #16161a;
  --ink2: #2c2c31;
  --muted: #6d6e75;
  --muted2: #9a9ba1;
  --line: #e3e2df;
  --line2: #d2d1cd;
  --red: #e3242b;
  --red-hot: #ff3b41;
  --red-deep: #a01318;
  --glow: rgba(227, 36, 43, .45);
  --dark: #121215;
  --dark2: #1a1a1f;
  --font-ar: 'Alexandria', 'Segoe UI', system-ui, sans-serif;
  --font-en: 'Archivo', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Consolas', monospace;
  --ease: cubic-bezier(.22, .8, .24, 1);
  --nav-h: 76px;
  --shadow-soft: 0 24px 60px -28px rgba(22, 22, 26, .25);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ar);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html[lang="en"] body { font-family: var(--font-en); font-weight: 400; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.mono { font-family: var(--font-mono); }

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

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #cfcecb; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* SVG bolt glyph */
.bolt {
  display: inline-block; width: 10px; height: 14px; vertical-align: -2px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 15'%3E%3Cpath d='M6.8 0 0 8.4h3.6L2.8 15l7.9-9.3H6.3L8.6 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 15'%3E%3Cpath d='M6.8 0 0 8.4h3.6L2.8 15l7.9-9.3H6.3L8.6 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.bolt--red { color: var(--red); }

/* click spark burst */
.spark {
  position: fixed; z-index: 200; pointer-events: none;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-hot); box-shadow: 0 0 10px 2px var(--glow);
  animation: sparkfly .55s ease-out forwards;
}
@keyframes sparkfly {
  0% { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(.2); opacity: 0; }
}

/* ---------- current spine (scroll progress) ---------- */
.spine {
  position: fixed; top: 0; inset-inline-start: 0; width: 3px; height: 100vh;
  background: rgba(22,22,26,.06); z-index: 60; pointer-events: none;
}
.spine__fill {
  position: absolute; top: 0; left: 0; width: 100%; height: 0%;
  background: linear-gradient(180deg, var(--red-deep), var(--red));
  box-shadow: 0 0 10px 1px var(--glow);
}
.spine__spark {
  position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 10px 3px var(--glow);
}
body.power-off .spine__fill { opacity: 0; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  transition: background .4s, border-color .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: 1320px; margin: 0 auto; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 28px;
}
.nav__logo { position: relative; display: block; width: 128px; }
.nav__logo img { width: 100%; height: auto; transition: opacity .7s; }
.nav__logo-light { position: absolute; inset: 0; opacity: 0; }
/* hero is dark while power off → show light logo */
body.power-off .nav__logo-dark { opacity: 0; }
body.power-off .nav__logo-light { opacity: 1; }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  position: relative; font-size: .92rem; font-weight: 400; color: var(--muted);
  padding: 6px 0; transition: color .5s;
}
html[lang="en"] .nav__links a { font-weight: 500; }
.nav__links a::after {
  content: ''; position: absolute; bottom: 0; inset-inline-start: 0;
  width: 0; height: 2px; background: var(--red); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
body.power-off .nav:not(.nav--scrolled) .nav__links a { color: rgba(255,255,255,.55); }
body.power-off .nav:not(.nav--scrolled) .nav__links a:hover { color: #fff; }

.nav__side { display: flex; align-items: center; gap: 14px; }
.nav__lang {
  font-size: .8rem; letter-spacing: .1em; color: var(--ink);
  border: 1px solid var(--line2); border-radius: 999px; padding: 7px 16px;
  transition: border-color .25s, background .25s, color .5s;
}
.nav__lang:hover { border-color: var(--red); color: var(--red); background: rgba(227,36,43,.06); }
body.power-off .nav:not(.nav--scrolled) .nav__lang { color: #fff; border-color: rgba(255,255,255,.25); }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span {
  width: 22px; height: 2px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s, background .5s;
}
body.power-off .nav:not(.nav--scrolled) .nav__burger span { background: #fff; }
.nav__burger.is-open span { background: var(--ink); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- mobile menu ---------- */
.panelmenu {
  position: fixed; inset: 0; z-index: 80; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; padding: 90px 32px 40px;
  transform: translateY(-102%); transition: transform .5s var(--ease);
}
.panelmenu.is-open { transform: translateY(0); }
.panelmenu__list { display: flex; flex-direction: column; }
.panelmenu__list a {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 4px; border-bottom: 1px solid var(--line);
  font-size: 1.35rem; font-weight: 500; color: var(--ink);
  opacity: 0; transform: translateY(14px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  transition-delay: calc(var(--i) * 70ms + 150ms);
}
.panelmenu.is-open .panelmenu__list a { opacity: 1; transform: none; }
.breaker {
  width: 30px; height: 44px; border-radius: 8px; flex: none;
  background: linear-gradient(180deg, #ffffff, #efeeec);
  border: 1px solid var(--line2); position: relative;
  box-shadow: inset 0 1px 0 #fff, 0 2px 6px rgba(22,22,26,.08);
}
.breaker::after {
  content: ''; position: absolute; left: 50%; top: 7px; transform: translateX(-50%);
  width: 10px; height: 14px; border-radius: 3px; background: #c9c8c4;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.panelmenu__list a:active .breaker::after,
.panelmenu__list a:hover .breaker::after {
  background: var(--red); transform: translateX(-50%) translateY(14px);
  box-shadow: 0 0 10px 2px var(--glow);
}

/* ============================================================
   HERO — dark room until the switch turns the light on
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 28px 60px;
  background:
    radial-gradient(1200px 700px at 72% 40%, rgba(255,255,255,.9), transparent 65%),
    linear-gradient(180deg, #f2f1ef, var(--bg));
  overflow: hidden;
  transition: background 1.1s var(--ease);
}
/* dark "lights off" layer */
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 560px at 70% 45%, rgba(70,70,80,.35), transparent 60%),
    linear-gradient(180deg, #101013, #17171b);
  opacity: 0; transition: opacity 1.1s var(--ease);
}
body.power-off .hero::before { opacity: 1; }
.hero__inner {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 40px;
}

/* --- copy --- */
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .7rem; letter-spacing: .18em; color: var(--muted);
  border: 1px solid var(--line2); border-radius: 999px; padding: 8px 16px;
  margin-bottom: 30px; transition: color 1s, border-color 1s, opacity 1s;
}
.hero__kicker .bolt { flex: none; }
body.power-off .hero__kicker { color: rgba(255,255,255,.4); border-color: rgba(255,255,255,.14); }

.hero__title {
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 1.08; font-weight: 800; letter-spacing: -.01em;
  margin-bottom: 26px;
  color: var(--ink);
  transition: color 1s;
}
html[lang="en"] .hero__title {
  font-weight: 900; font-variation-settings: 'wdth' 120;
  text-transform: uppercase; line-height: .96;
  font-size: clamp(2.9rem, 7.2vw, 6rem);
}
.hero__title-line { display: block; overflow: hidden; }
.hero__title-line > span, .hero__title-line > em { display: inline-block; }
.reddot {
  display: inline-block; width: .17em; height: .17em; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 22px var(--glow);
  margin-inline-start: .06em; vertical-align: baseline;
  font-style: normal; color: transparent; overflow: hidden; text-indent: -9em;
  transition: background 1s, box-shadow 1s;
}
body.power-off .hero__title { color: #47474d; }
body.power-off .reddot { background: #47474d; box-shadow: none; }
body.power-on .hero__title-line > span { animation: ignite .9s var(--ease) both; }
body.power-on .hero__title-line:nth-child(2) > span { animation-delay: .12s; }
@keyframes ignite {
  0% { opacity: 0; transform: translateY(60%); }
  55% { opacity: .4; }
  62% { opacity: 1; }
  70% { opacity: .55; }
  78% { opacity: 1; }
  100% { opacity: 1; transform: none; }
}

.hero__lead {
  max-width: 470px; color: var(--muted); font-size: 1.06rem;
  margin-bottom: 36px; transition: color 1s, opacity 1s;
}
body.power-off .hero__lead { color: rgba(255,255,255,.32); }

.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; transition: opacity 1s .2s; }
body.power-off .hero__cta { opacity: .25; pointer-events: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 34px; border-radius: 999px;
  font-size: .95rem; font-weight: 500; letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, border-color .3s, color .3s;
  will-change: transform;
}
.btn--solid {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff; box-shadow: 0 10px 28px -10px var(--glow);
}
.btn--solid:hover { transform: translateY(-3px); box-shadow: 0 16px 38px -10px var(--glow); }
.btn--ghost { border: 1px solid var(--line2); color: var(--ink); background: rgba(255,255,255,.5); }
.btn--ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); }
body.power-off .btn--ghost { color: #fff; border-color: rgba(255,255,255,.2); background: transparent; }

.hero__feats {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 48px; font-size: .86rem; color: var(--muted);
  transition: color 1s, opacity 1s .3s;
}
.hero__feats i { width: 26px; height: 1px; background: var(--line2); }
body.power-off .hero__feats { color: rgba(255,255,255,.3); opacity: .5; }

/* --- stage --- */
.hero__stage { position: relative; display: flex; justify-content: center; }
.hero__glow {
  position: absolute; inset: 6% -4% -2% -4%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,214,170,.55), rgba(255,214,170,.12) 55%, transparent 78%);
  filter: blur(24px); transition: opacity 1.2s .1s; z-index: 0;
}
body.power-off .hero__glow { opacity: 0; }
.hero__tilt {
  position: relative; z-index: 1;
  transform-style: preserve-3d; will-change: transform;
  transition: transform .2s ease-out;
}
.hero__product {
  width: min(44vw, 580px);
  filter: drop-shadow(0 40px 46px rgba(22,22,26,.35));
  transition: filter 1.1s var(--ease);
  animation: bob 6s ease-in-out infinite;
}
body.power-off .hero__product {
  filter: brightness(.35) saturate(.6) drop-shadow(0 40px 46px rgba(0,0,0,.6));
}
@keyframes bob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }

/* --- master switch --- */
.master {
  position: absolute; bottom: -4px; inset-inline-end: 1%;
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  -webkit-tap-highlight-color: transparent;
}
.master__plate {
  width: 84px; height: 118px; border-radius: 16px;
  background: linear-gradient(160deg, #ffffff, #eceae7);
  border: 1px solid var(--line2);
  box-shadow: var(--shadow-soft), inset 0 1px 0 #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 1s, border-color 1s, box-shadow .4s;
}
body.power-off .master__plate {
  background: linear-gradient(160deg, #232327, #17171a);
  border-color: #33333a;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.06);
}
.master__rocker {
  width: 44px; height: 82px; border-radius: 10px;
  background: linear-gradient(180deg, #fdfdfc 0%, #e8e6e3 55%, #f3f2f0 100%);
  box-shadow: inset 0 2px 3px #fff, inset 0 -6px 10px rgba(22,22,26,.18), 0 2px 6px rgba(22,22,26,.18);
  position: relative; transition: background 1s, box-shadow .35s;
}
body.power-off .master__rocker {
  background: linear-gradient(180deg, #35353b 0%, #202024 55%, #2a2a2f 100%);
  box-shadow: inset 0 2px 3px rgba(255,255,255,.08), inset 0 -6px 10px rgba(0,0,0,.55), 0 2px 6px rgba(0,0,0,.5);
}
body.power-on .master__rocker {
  background: linear-gradient(180deg, #f3f2f0 0%, #e8e6e3 45%, #fdfdfc 100%);
  box-shadow: inset 0 -2px 3px #fff, inset 0 6px 10px rgba(22,22,26,.16), 0 2px 6px rgba(22,22,26,.18);
}
.master__led {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 13px; border-radius: 3px; background: #4a4a52;
  transition: background .35s, box-shadow .35s, top .35s;
}
body.power-on .master__led {
  background: var(--red-hot); box-shadow: 0 0 10px 2px var(--glow); top: 59px;
}
.master__hint {
  position: absolute; top: -46px; inset-inline-start: 50%; transform: translateX(-50%);
  white-space: nowrap; font-size: .78rem; color: #fff;
  background: rgba(28,28,32,.92); border: 1px solid rgba(255,255,255,.14);
  padding: 7px 14px; border-radius: 999px;
  animation: hintbob 1.6s ease-in-out infinite;
  transition: opacity .4s;
}
html[dir="rtl"] .master__hint { transform: translateX(50%); }
body.power-on .master__hint { opacity: 0; visibility: hidden; }
@keyframes hintbob { 0%,100% { margin-top: 0 } 50% { margin-top: -5px } }

/* --- surge line --- */
.hero__surge {
  position: absolute; top: 50%; left: 0; right: 0; height: 2px; z-index: 5;
  background: linear-gradient(90deg, transparent, var(--red-hot), transparent);
  box-shadow: 0 0 18px 3px var(--glow);
  transform: scaleX(0); opacity: 0; pointer-events: none;
}
body.power-on .hero__surge { animation: surge .9s ease-out .05s; }
@keyframes surge {
  0% { transform: scaleX(0); opacity: 1; }
  55% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0; }
}

.hero__scrollcue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  transition: opacity .8s .5s;
}
.hero__scrollcue i {
  display: block; width: 1px; height: 38px;
  background: linear-gradient(180deg, var(--red), transparent);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top } 50% { transform: scaleY(1); transform-origin: top } 51% { transform-origin: bottom } 100% { transform: scaleY(0); transform-origin: bottom } }
body.power-off .hero__scrollcue { opacity: 0; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  display: flex; overflow: hidden; white-space: nowrap;
  background: linear-gradient(90deg, var(--red-deep), var(--red) 50%, var(--red-deep));
  transform: rotate(-1.1deg) scale(1.02); margin: -14px 0 0;
  border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(0,0,0,.25);
  position: relative; z-index: 4;
}
.marquee__track {
  display: inline-block; padding: 13px 0;
  font-weight: 600; font-size: .95rem; letter-spacing: .06em; color: #fff;
  animation: marquee 26s linear infinite;
}
.marquee__track .bolt { color: rgba(255,255,255,.85); margin: 0 16px; }
@keyframes marquee { to { transform: translateX(-100%); } }
html[dir="rtl"] .marquee__track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { to { transform: translateX(100%); } }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section { position: relative; padding: 110px 28px; max-width: 1320px; margin: 0 auto; }

.section__head { text-align: center; margin-bottom: 64px; }
.section__head--start { text-align: start; margin-bottom: 40px; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 500; color: var(--red);
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(1.9rem, 4.6vw, 3.2rem); font-weight: 700; letter-spacing: -.01em; line-height: 1.3;
}
html[lang="en"] .section__title {
  font-weight: 900; font-variation-settings: 'wdth' 118; text-transform: uppercase;
}
.section__lead { max-width: 560px; margin: 16px auto 0; color: var(--muted); font-size: 1.02rem; }
.section__head--start .section__lead { margin-inline-start: 0; }

/* reveals */
.js-ready .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js-ready .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   PILLARS — open, boxless
   ============================================================ */
.pillars { padding-top: 120px; }
.pillars__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 44px;
}
.pillar { position: relative; padding-top: 22px; }
.pillar::before {
  content: ''; position: absolute; top: 0; inset-inline-start: 0;
  width: 34px; height: 3px; border-radius: 2px; background: var(--red);
  transition: width .45s var(--ease);
}
.pillar:hover::before { width: 64px; }
.pillar h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 10px; }
.pillar p { font-size: .92rem; color: var(--muted); }

/* ============================================================
   COLLECTION — 3 families, hover crossfade
   ============================================================ */
.collection__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.ccat {
  display: flex; flex-direction: column; gap: 0;
  background: var(--white); border-radius: 24px; overflow: hidden;
  box-shadow: 0 2px 5px rgba(22,22,26,.05);
  transition: transform .45s var(--ease), box-shadow .45s;
}
.ccat:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.ccat__imgs {
  position: relative; display: block; aspect-ratio: 1.15;
  background: radial-gradient(120% 100% at 50% 0%, #fafaf9, #efeeec);
}
.ccat__imgs img {
  position: absolute; inset: 10%; width: 80%; height: 80%; object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(22,22,26,.22));
  transition: opacity .5s var(--ease), transform .6s var(--ease);
}
.ccat__alt { opacity: 0; transform: scale(.96); }
.ccat:hover .ccat__imgs img:first-child { opacity: 0; transform: scale(1.03); }
.ccat:hover .ccat__alt { opacity: 1; transform: scale(1); }
.ccat__meta { padding: 22px 26px 26px; text-align: start; }
.ccat__meta h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; position: relative; display: inline-block; }
.ccat__meta h3::after {
  content: ''; position: absolute; bottom: -2px; inset-inline-start: 0;
  width: 0; height: 2px; background: var(--red); transition: width .4s var(--ease);
}
.ccat:hover .ccat__meta h3::after { width: 100%; }
.ccat__meta p { font-size: .9rem; color: var(--muted); }

/* ============================================================
   KINETIC REEL — scroll-scrubbed product strip
   ============================================================ */
.reel {
  overflow: hidden; padding: 40px 0 70px; pointer-events: none;
}
.reel img {
  width: min(1250px, 120vw); max-width: none; margin: 0 auto;
  will-change: transform;
  filter: drop-shadow(0 24px 26px rgba(22,22,26,.2));
}

/* ============================================================
   ENGINEERING — anthracite band
   ============================================================ */
.engineering {
  max-width: none; background: linear-gradient(180deg, var(--dark), var(--dark2));
  color: #f2f2f3;
}
.engineering > * { max-width: 1320px; margin-inline: auto; }
.engineering .section__lead { color: #9a9ba3; }
.engineering__stage { position: relative; margin-bottom: 20px; }
.engineering__stage > img { width: 100%; filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)); }

.callout {
  position: absolute; display: flex; align-items: center; gap: 12px;
}
.callout i {
  width: 12px; height: 12px; border-radius: 50%; flex: none;
  background: var(--red); box-shadow: 0 0 0 4px rgba(227,36,43,.18), 0 0 14px 2px var(--glow);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }
.callout div {
  background: rgba(22,22,26,.92); border: 1px solid #33333a;
  border-radius: 999px; padding: 9px 18px; font-size: .84rem; white-space: nowrap;
}
.callout--1 { top: 6%; left: 6%; }
.callout--2 { bottom: 2%; left: 38%; }
.callout--3 { top: 8%; right: 3%; }

/* ============================================================
   FINISHES LAB
   ============================================================ */
.lab {
  display: grid; grid-template-columns: 1.4fr .6fr; gap: 50px; align-items: center;
}
.lab__stage {
  position: relative; min-height: 440px;
  border-radius: 28px; background: var(--white);
  box-shadow: 0 2px 5px rgba(22,22,26,.05);
  overflow: hidden;
}
.lab__ambient {
  position: absolute; inset: -8%;
  background: radial-gradient(closest-side, var(--amb, rgba(227,36,43,.10)), transparent 72%);
  filter: blur(30px); transition: background 1s;
}
.lab__stage img {
  position: absolute; inset: 7%; margin: auto;
  max-width: 86%; max-height: 86%; width: auto; height: auto; object-fit: contain;
  opacity: 0; transition: opacity .55s var(--ease), transform .55s var(--ease);
  filter: drop-shadow(0 30px 34px rgba(22,22,26,.28));
  transform: scale(.97);
}
.lab__stage img.is-active { opacity: 1; transform: none; }
.lab__side { text-align: start; }
.lab__name { font-size: 1.9rem; font-weight: 700; margin-bottom: 26px; }
.lab__swatches { display: grid; grid-template-columns: repeat(3, 62px); gap: 16px; }
.swatch {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--sw); border: 2px solid transparent;
  outline: 1px solid rgba(22,22,26,.14); outline-offset: -1px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  position: relative;
}
.swatch--split { background: linear-gradient(135deg, var(--sw) 50%, var(--sw2) 50%); }
.swatch:hover { transform: translateY(-4px); }
.swatch.is-on { border-color: var(--red); box-shadow: 0 8px 24px -8px var(--glow); }

/* ============================================================
   LIFESTYLE
   ============================================================ */
.life { position: relative; min-height: 68vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.life__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.life::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,16,19,.82), rgba(16,16,19,.35) 40%, rgba(16,16,19,.82));
}
.life__quote { position: relative; z-index: 2; text-align: center; padding: 110px 28px; max-width: 900px; color: #fff; }
.life__q {
  font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 600; line-height: 1.5;
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.life__a { margin-top: 22px; font-size: .74rem; letter-spacing: .3em; color: var(--red-hot); }

/* ============================================================
   RANGE
   ============================================================ */
.range__inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}
.range__list { list-style: none; margin: 30px 0 40px; display: grid; }
.range__list li {
  display: flex; align-items: center; gap: 16px;
  padding: 15px 2px; border-bottom: 1px solid var(--line);
  font-size: 1.02rem; color: var(--ink2);
}
.range__list li::before {
  content: ''; width: 10px; height: 14px; flex: none;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 15'%3E%3Cpath d='M6.8 0 0 8.4h3.6L2.8 15l7.9-9.3H6.3L8.6 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 15'%3E%3Cpath d='M6.8 0 0 8.4h3.6L2.8 15l7.9-9.3H6.3L8.6 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.range__stage { position: relative; display: flex; justify-content: center; }
.range__glow {
  position: absolute; inset: 6% 10%;
  background: radial-gradient(closest-side, rgba(227,36,43,.10), transparent 74%);
  filter: blur(26px);
}
.range__stage img {
  position: relative; max-height: 620px; width: auto;
  filter: drop-shadow(0 34px 40px rgba(22,22,26,.3));
  animation: bob 6.5s ease-in-out infinite;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding-bottom: 130px; }
.contact__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1000px; margin: 0 auto;
}
.ccard {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 36px 20px 30px; text-align: center;
  background: var(--white); border-radius: 20px;
  box-shadow: 0 2px 5px rgba(22,22,26,.05);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.ccard:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.ccard__ic { width: 30px; height: 30px; color: var(--red); }
.ccard__ic svg { width: 100%; height: 100%; }
.ccard b { font-weight: 600; font-size: 1.02rem; margin-top: 6px; }
.ccard > span.mono { font-size: .78rem; color: var(--muted); letter-spacing: .06em; }

/* ============================================================
   FOOTER — dark closure
   ============================================================ */
.footer {
  padding: 90px 28px 46px; text-align: center;
  background: radial-gradient(700px 300px at 50% 120%, rgba(227,36,43,.14), transparent 70%), var(--dark);
  color: #9a9ba3;
}
.footer__lockup { width: min(360px, 68vw); margin: 0 auto 34px; }
.footer__line { font-size: .68rem; letter-spacing: .2em; color: #6d6e76; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 10px; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__feats { justify-content: center; margin-top: 32px; }
  .hero__product { width: min(80vw, 500px); }
  .master { inset-inline-end: 0; bottom: -18px; }

  .pillars__grid { grid-template-columns: 1fr 1fr; }

  .collection__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  .lab { grid-template-columns: 1fr; gap: 26px; }
  .lab__side { text-align: center; }
  .lab__name { margin-bottom: 18px; }
  .lab__swatches { grid-template-columns: repeat(6, 50px); gap: 12px; justify-content: center; margin: 0 auto; }
  .swatch { width: 50px; height: 50px; }

  .range__inner { grid-template-columns: 1fr; }
  .range__stage img { max-height: 460px; }

  .contact__grid { grid-template-columns: 1fr 1fr; }

  .callout div { font-size: .72rem; padding: 7px 12px; }
}

@media (max-width: 640px) {
  .section { padding: 74px 20px; }
  .hero { padding-inline: 20px; }
  .hero__title { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .hero__feats { font-size: .78rem; gap: 10px; }
  .hero__feats i { width: 14px; }

  .pillars__grid { grid-template-columns: 1fr; gap: 34px; }

  .marquee__track { font-size: .8rem; padding: 10px 0; }

  .engineering__stage { display: flex; flex-direction: column; }
  .engineering__stage > img { order: -1; }
  .callout { position: static; margin-top: 12px; }
  .callout div { white-space: normal; }

  .lab__stage { min-height: 300px; }
  .lab__swatches { grid-template-columns: repeat(3, 54px); }

  .reel { padding: 26px 0 46px; }
  .reel img { width: 170vw; }

  .contact__grid { grid-template-columns: 1fr; }
  .footer { padding-top: 64px; }

  .spine { width: 2px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-ready .reveal { opacity: 1; transform: none; transition: none; }
  .hero__product, .range__stage img { animation: none; }
  .master__hint { animation: none; }
  body.power-on .hero__title-line > span { animation: none; }
  .hero__tilt { transition: none; }
  .reel img { transform: none !important; }
  .spark { display: none; }
}
