/* ============================================================
   sections.css — layout for the 7 acts + nav + footer
   ============================================================ */

/* ---------------- NAV ---------------- */
.nav{
  position:fixed; top:14px; left:50%; transform:translateX(-50%);
  width:min(1160px, 94vw); height:var(--nav-h);
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  padding:0 22px; z-index:90;
  background:rgba(var(--veil-rgb),.72); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border:1px solid var(--line); border-radius:999px;
}
.brand{ display:inline-flex; align-items:center; gap:10px; }
.brand-mark{ width:30px; height:24px; }
.brand-word{ font-family:var(--font-disp); font-weight:700; font-size:19px; letter-spacing:-.02em; color:var(--muted); white-space:nowrap; }
.brand-word b{ font-weight:800; color:var(--ink); }
.nav-links{ display:flex; gap:6px; }
.nav-links a{
  padding:9px 15px; border-radius:999px; font-size:15px; font-weight:500; color:var(--muted);
  transition:color var(--t), background var(--t);
}
.nav-links a:hover{ color:var(--ink); }
.nav-links a.active{ color:var(--ink); background:rgba(var(--sapphire-rgb),.14); }
.nav-right{ display:flex; align-items:center; gap:14px; }
.nav-avail{ display:inline-flex; align-items:center; gap:8px; font-size:13px; color:var(--muted); white-space:nowrap; }
.nav-avail .dot, .avail-dot{
  width:8px; height:8px; border-radius:50%; background:var(--success); display:inline-block;
  box-shadow:0 0 10px rgba(74,222,128,.8);
}
body.booked .nav-avail .dot, body.booked .avail-dot{ background:var(--danger); box-shadow:0 0 10px rgba(255,93,93,.8); }
.avail-note{ opacity:.72; } /* status word stays dominant */
.lang-pill{
  display:inline-flex; gap:5px; padding:8px 14px; border-radius:999px;
  border:1px solid var(--line); font-size:13px; font-weight:600; color:var(--muted);
  transition:border-color var(--t);
}
.lang-pill:hover{ border-color:var(--sapphire); }
.lang-pill [data-lang].on{ color:var(--canary); }
.lang-pill .sep{ opacity:.4; }
.theme-pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:8px 14px; border-radius:999px;
  border:1px solid var(--line); font-size:14px; line-height:1; color:var(--muted);
  transition:border-color var(--t), color var(--t);
}
.theme-pill:hover{ border-color:var(--sapphire); color:var(--ink); }
.theme-pill .ico-sun{ display:none; }
html[data-theme="light"] .theme-pill .ico-sun{ display:inline; }
html[data-theme="light"] .theme-pill .ico-moon{ display:none; }
.nav-burger{ display:none; flex-direction:column; gap:6px; padding:10px; }
.nav-burger span{ width:22px; height:2px; background:var(--ink); transition:transform var(--t), opacity var(--t); }
.nav-burger[aria-expanded="true"] span:first-child{ transform:translateY(4px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child{ transform:translateY(-4px) rotate(-45deg); }
.nav-sheet{
  position:fixed; top:calc(var(--nav-h) + 22px); left:50%; transform:translateX(-50%) translateY(-8px);
  width:min(1160px, 94vw); z-index:89;
  background:rgba(var(--veil-rgb),.95); backdrop-filter:blur(14px);
  border:1px solid var(--line); border-radius:var(--radius);
  padding:12px; display:none; flex-direction:column;
  opacity:0; transition:opacity var(--t), transform var(--t);
}
.nav-sheet.open{ display:flex; opacity:1; transform:translateX(-50%) translateY(0); }
.nav-sheet a{ padding:14px 18px; border-radius:12px; font-size:17px; color:var(--ink); }
.nav-sheet a:hover{ background:rgba(var(--sapphire-rgb),.12); }

/* ---------------- ACT 1 · HERO ---------------- */
.hero{
  min-height:100vh; min-height:100svh;
  display:flex; flex-direction:column; justify-content:center;
  padding:calc(var(--nav-h) + 60px) 0 80px;
  overflow-x:clip;
}
.hero-inner{ width:min(1160px, 92vw); margin:0 auto; text-align:center; }
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-size:14px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted);
  margin-bottom:26px;
}
.hero-h1{
  font-size:clamp(2.6rem, 6.5vw, 5rem);
  font-weight:800; letter-spacing:-.02em; line-height:1.05;
}
.h1-line{ display:block; }
.h1-accent-line{ color:var(--hero-accent); }
.swipe{ display:inline-block; text-align:center; vertical-align:bottom; }
.swipe-word{
  display:inline-block;
  color:var(--hero-accent);
  text-shadow:0 0 40px rgba(var(--hero-accent-rgb),.55), 0 0 90px rgba(var(--hero-accent-rgb),.3);
}
.hero-lead{ max-width:560px; margin:30px auto 0; font-size:clamp(1.05rem, 2.2vw, 1.32rem); color:var(--muted); }
.hero-ctas{ display:flex; gap:16px; margin-top:38px; flex-wrap:wrap; justify-content:center; }
.orb-b{
  width:780px; height:780px; top:-90px; left:-260px;
  background:var(--orb-fill-hero);
  filter:blur(var(--orb-soft-blur));
}
.orb-b2{
  width:760px; height:760px; top:calc(50% - 380px); right:-260px;
  background:var(--orb-fill-hero);
  filter:blur(var(--orb-soft-blur));
}
/* interactive orbs: cursor "pocket" — a soft transparent hole in the mask that
   JS (initOrbs in effects.js) lerps toward the pointer via --mx/--my/--hole.
   Orbs must stay pointer-events:none and sized via width/height so client→mask
   coordinates map 1:1 (which is also why these three opt out of orbDrift). */
.orb-b, .orb-b2, .orb-c{
  --mx:50%; --my:50%; --hole:0.1px;
  -webkit-mask:radial-gradient(circle var(--hole) at var(--mx) var(--my), transparent 0, transparent calc(var(--hole) * .5), #000 var(--hole));
          mask:radial-gradient(circle var(--hole) at var(--mx) var(--my), transparent 0, transparent calc(var(--hole) * .5), #000 var(--hole));
}
.scroll-cue{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:4px;
  font-size:12px; letter-spacing:.24em; text-transform:uppercase; color:var(--muted);
}
.scroll-cue svg{ width:18px; height:18px; }

/* ---------------- ACT 2 · MARQUEE ---------------- */
.marquee{ padding:40px 0; overflow-x:clip; }
.mq-band{
  overflow:hidden;
  padding:18px 0;
}
.mq-track{ display:flex; gap:0; width:max-content; will-change:transform; }
.mq-item{
  font-family:var(--font-disp); font-weight:700;
  font-size:clamp(26px, 3.6vw, 46px); line-height:1.2;
  white-space:nowrap; padding:0 26px;
  color:rgba(var(--ink-rgb),.14);
  letter-spacing:.01em;
}
.mq-item.solid{ color:rgba(var(--ink-rgb),.14); }

/* ---------------- ACT 3 · WORK ---------------- */
.work{ padding:clamp(80px,12vw,150px) 0 40px; }
.work-empty{ text-align:center; color:var(--muted); padding:40px 0; }

/* project picker pills + one-at-a-time carousel (mechanics mirror .q-carousel) */
.work-pills{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px; }
.work-pills[hidden]{ display:none; }
.work-pills button{
  padding:10px 20px; border-radius:999px; border:1.5px solid var(--line);
  font-size:15px; color:var(--muted);
  transition:border-color var(--t), color var(--t), background var(--t);
  min-height:44px;
}
.work-pills button:hover{ border-color:var(--sapphire); color:var(--ink); }
.work-pills button.on{ border-color:var(--sapphire); color:var(--ink); background:rgba(var(--sapphire-rgb),.16); }
.work-carousel{ position:relative; width:min(1160px,92vw); margin:0 auto; }
.work-viewport{ overflow:hidden; }
.work-track{ display:flex; transition:transform .55s var(--ease); }
html.reduced-motion .work-track{ transition:none; }
.work-slide{ flex:0 0 100%; min-width:100%; }
.work-slide .scene-inner{ width:100%; max-width:none; padding:0; }
.work-carousel .q-arrow.prev{ left:-12px; }
.work-carousel .q-arrow.next{ right:-12px; }

.scene{ position:relative; padding:clamp(16px,2.5vw,32px) 0; }
.scene-stage{
  display:flex; flex-direction:column;
  gap:22px;
}
.scene-inner{ width:min(1160px,92vw); margin:0 auto; width:100%; max-width:1160px; padding:0 4vw; }
.scene-cap{
  display:flex; align-items:baseline; gap:18px; flex-wrap:wrap;
  margin-bottom:18px;
}
.scene-num{
  font-family:var(--font-disp); font-weight:800; font-size:clamp(20px,2.4vw,30px);
  color:var(--canary);
}
.scene-title{ font-size:clamp(26px,3.6vw,44px); }
.scene-meta{ display:flex; gap:10px; align-items:center; color:var(--muted); font-size:14px; flex-wrap:wrap; }
.scene-meta .tag{
  padding:4px 12px; border:1px solid var(--line); border-radius:999px; font-size:12.5px;
}
.scene-desc{ color:var(--muted); max-width:640px; margin-top:10px; }
.scene-link{ color:var(--sapphire); font-weight:600; }
.scene-link:hover{ text-decoration:underline; }
.scene-actions{ margin-top:10px; }
.scene-actions .btn{ padding:9px 18px; min-height:0; font-size:14px; }

/* before/after compare */
.ba-compare{
  --split:50%;
  position:relative; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--line);
  aspect-ratio:16/9; max-height:62vh; width:100%;
  background:var(--surface);
  box-shadow:var(--ba-shadow);
  touch-action:none;
}
.ba-compare img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  user-select:none; -webkit-user-drag:none; pointer-events:none;
}
.ba-after{ clip-path:inset(0 calc(100% - var(--split)) 0 0); }
.ba-grip{
  position:absolute; top:0; bottom:0; left:var(--split); width:0;
  cursor:ew-resize; z-index:3;
}
.ba-grip::before{ /* glowing line */
  content:""; position:absolute; top:0; bottom:0; left:-1.5px; width:3px;
  background:var(--sapphire);
  box-shadow:0 0 18px rgba(var(--sapphire-rgb),.9), 0 0 44px rgba(var(--sapphire-rgb),.5);
}
.ba-grip::after{ /* handle */
  content:"↔"; position:absolute; top:50%; left:0; transform:translate(-50%,-50%);
  width:46px; height:46px; border-radius:50%;
  background:var(--sapphire); color:var(--on-accent);
  display:flex; align-items:center; justify-content:center;
  font-size:19px; box-shadow:0 0 26px rgba(var(--sapphire-rgb),.8);
}
.ba-lbl{
  position:absolute; top:14px; z-index:2;
  padding:5px 13px; border-radius:999px; font-size:12px; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  background:rgba(11,12,16,.72); backdrop-filter:blur(6px);
  border:1px solid var(--line);
}
.ba-lbl.before{ right:14px; color:var(--muted); }
.ba-lbl.after{ left:14px; color:var(--canary); border-color:rgba(var(--canary-rgb),.35); }

/* per-project gallery thumbs */
.scene-gal{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.scene-thumb{
  width:88px; aspect-ratio:16/10; border-radius:10px; overflow:hidden;
  border:1px solid var(--line); padding:0; cursor:zoom-in;
  transition:border-color var(--t), transform var(--t);
}
.scene-thumb:hover{ border-color:var(--sapphire); transform:translateY(-2px); }
.scene-thumb img{ width:100%; height:100%; object-fit:cover; }

/* collapsible case study (native <details> = free keyboard/AT) */
.scene-cs{ max-width:640px; margin-top:12px; }
.scene-cs summary{
  cursor:pointer; color:var(--sapphire); font-weight:600; font-size:14.5px;
  list-style-position:inside;
}
.scene-cs summary:hover{ text-decoration:underline; }
.scene-cs[open] > div{ max-height:32vh; overflow:auto; padding-top:8px; } /* never overflows the 100vh pinned stage */
.scene-cs h4{
  font-size:12px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--sapphire); margin:12px 0 4px;
}
.scene-cs p{ color:var(--muted); font-size:15px; white-space:pre-line; }

/* gallery lightbox */
.glb-fig{ position:relative; margin:10vh auto 0; width:min(1100px, 92vw); }
#glbImg{
  width:100%; max-height:78vh; object-fit:contain;
  border-radius:14px; border:1px solid var(--line); background:var(--surface);
}
#glbModal .sheet-x{ position:absolute; top:-48px; right:0; }
#glbModal .q-arrow.prev{ left:-56px; }
#glbModal .q-arrow.next{ right:-56px; }
@media (max-width:1248px){
  #glbModal .q-arrow.prev{ left:10px; }
  #glbModal .q-arrow.next{ right:10px; }
}

/* ---------------- ACT 4 · WHAT I DO ---------------- */
.studio{ padding:clamp(90px,13vw,170px) 0; overflow-x:clip; }
/* big yellow centrepiece — --orb-size is driven by scroll progress (initOrbs,
   1400→2900px); calc centering keeps it centred as it grows (transform is off-limits:
   parallax/drift own it). .studio's overflow-x:clip swallows the horizontal spill. */
.orb-c{
  width:var(--orb-size,1400px); height:var(--orb-size,1400px);
  top:calc(50% - var(--orb-size,1400px)/2); left:calc(50% - var(--orb-size,1400px)/2);
  background:var(--orb-fill-mid);
  filter:blur(26px);
}
.svc-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; }
.svc-card{
  position:relative; padding:34px 28px 30px;
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  transition:border-color var(--t), box-shadow var(--t);
  transform-style:preserve-3d;
}
.svc-card:hover{ border-color:rgba(var(--sapphire-rgb),.5); box-shadow:0 18px 60px rgba(0,0,0,.4), 0 0 40px rgba(var(--sapphire-rgb),.12); }
.svc-num{ font-family:var(--font-disp); font-weight:800; font-size:15px; color:var(--canary); letter-spacing:.12em; }
.svc-card h3{ font-size:clamp(21px,2vw,26px); margin:14px 0 12px; }
.svc-card p{ color:var(--muted); font-size:15.5px; }
.proc-title{ font-size:clamp(22px,2.6vw,30px); margin:clamp(60px,8vw,100px) 0 34px; }
.proc-line{ list-style:none; position:relative; display:grid; gap:34px; max-width:680px; padding-left:0; }
.proc-line::before{
  content:""; position:absolute; left:19px; top:10px; bottom:10px; width:2px;
  background:linear-gradient(180deg, var(--sapphire), rgba(var(--sapphire-rgb),.15));
  transform-origin:top;
}
.proc-line li{ display:flex; gap:22px; align-items:flex-start; }
.proc-node{
  flex:0 0 40px; width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--bg); border:2px solid var(--sapphire);
  font-family:var(--font-disp); font-weight:600; font-size:15px; color:var(--sapphire);
  box-shadow:0 0 18px rgba(var(--sapphire-rgb),.35);
  position:relative; z-index:1;
}
.proc-line h4{ font-size:19px; margin-bottom:6px; }
.proc-line p{ color:var(--muted); font-size:15.5px; }

/* ---------------- ACT 5 · ABOUT ---------------- */
.about{ padding:clamp(90px,13vw,170px) 0; }
.about-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:clamp(30px,6vw,80px); align-items:center; }
.about-visual{ position:relative; }
.monogram{
  aspect-ratio:4/5; border-radius:var(--radius);
  background:linear-gradient(160deg, var(--surface), var(--bg2));
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 24px 70px rgba(0,0,0,.45), inset 0 0 80px rgba(var(--sapphire-rgb),.06);
}
.monogram svg{ width:44%; filter:drop-shadow(0 0 28px rgba(var(--sapphire-rgb),.4)); }
.about-bio{ color:var(--muted); font-size:clamp(16px,1.5vw,19px); margin-top:22px; max-width:560px; }
.facts{ display:flex; gap:clamp(22px,4vw,50px); margin-top:34px; flex-wrap:wrap; }
.facts dt{ font-size:12.5px; letter-spacing:.18em; text-transform:uppercase; color:var(--sapphire); font-weight:600; }
.facts dd{ font-size:16px; margin-top:5px; }

/* ---------------- ACT 6 · PROOF ---------------- */
.proof{ padding:clamp(80px,12vw,150px) 0; }
.proof-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,5vw,70px); margin-top:26px; }
.proof-grid.single{ grid-template-columns:1fr; max-width:720px; }
.quote-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px 26px 22px; margin-bottom:18px;
}
.quote-card blockquote{ font-size:17px; line-height:1.55; }
.quote-card blockquote::before{ content:"“"; color:var(--canary); font-family:var(--font-disp); font-size:30px; line-height:0; vertical-align:-8px; margin-right:4px; }
.quote-who{ margin-top:14px; font-size:14px; color:var(--muted); display:flex; align-items:center; gap:10px; }
.quote-who b{ color:var(--ink); }

/* testimonial carousel */
.q-carousel{ position:relative; }
.q-viewport{ overflow:hidden; }
.q-track{ display:flex; transition:transform .55s var(--ease); }
html.reduced-motion .q-track{ transition:none; }
.q-slide{ flex:0 0 100%; min-width:0; }
.q-slide .quote-card{ margin-bottom:0; }
.q-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:2;
  width:42px; height:42px; border-radius:50%;
  border:1px solid var(--line); background:rgba(var(--veil-rgb),.85); color:var(--ink);
  display:flex; align-items:center; justify-content:center;
  transition:border-color var(--t), background var(--t);
}
.q-arrow:hover{ border-color:var(--sapphire); background:rgba(var(--sapphire-rgb),.15); }
.q-arrow[hidden]{ display:none; }
.q-arrow svg{ width:18px; height:18px; }
.q-carousel .q-arrow.prev{ left:-12px; }
.q-carousel .q-arrow.next{ right:-12px; }
.q-dots{ display:flex; gap:8px; justify-content:center; margin-top:16px; }
.q-dots[hidden]{ display:none; }
.q-dots button{
  width:10px; height:10px; border-radius:50%; padding:0; min-height:0;
  border:1px solid rgba(var(--sapphire-rgb),.5); background:transparent;
  transition:background var(--t), transform var(--t);
}
.q-dots button.on{ background:var(--sapphire); transform:scale(1.2); }

/* star ratings + avatars */
.stars{ display:flex; gap:3px; margin-bottom:12px; }
.stars svg{ width:16px; height:16px; fill:var(--canary); }
.stars svg.empty{ fill:none; stroke:var(--muted); stroke-width:1.5; }
.q-av{
  flex:0 0 40px; width:40px; height:40px; border-radius:50%; overflow:hidden;
  border:1px solid var(--line);
}
.q-av img{ width:100%; height:100%; object-fit:cover; }
.q-av-init{
  display:flex; align-items:center; justify-content:center;
  background:rgba(var(--sapphire-rgb),.14); color:var(--sapphire);
  font-weight:700; font-size:14px; letter-spacing:.04em;
}
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding:20px 2px; text-align:left; font-weight:600; font-size:16.5px;
  transition:color var(--t);
}
.faq-q:hover{ color:var(--sapphire); }
.faq-q .chev{ transition:transform var(--t); color:var(--sapphire); flex:0 0 auto; }
.faq-item.open .faq-q .chev{ transform:rotate(180deg); }
.faq-a{ display:grid; grid-template-rows:0fr; transition:grid-template-rows var(--t); }
.faq-item.open .faq-a{ grid-template-rows:1fr; }
.faq-a > div{ overflow:hidden; color:var(--muted); font-size:15.5px; }
.faq-a p{ padding:0 2px 20px; }
.edit-mini{
  font-size:12.5px; color:var(--sapphire); border:1px solid rgba(var(--sapphire-rgb),.4);
  padding:4px 12px; border-radius:999px; margin-top:4px;
}

/* ---------------- ACT 7 · ESTIMATOR + CONTACT ---------------- */
.contact{ padding:clamp(90px,13vw,170px) 0 clamp(70px,9vw,120px); overflow-x:clip; }
.orb-d{ width:420px; height:420px; top:-160px; right:-100px; background:radial-gradient(circle, rgba(var(--orb-core-rgb),var(--orb-faint-a)), transparent 65%); filter:blur(50px); }
.est-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:clamp(26px,4vw,44px); margin-bottom:clamp(60px,8vw,100px);
  max-width:720px;
}
.est-sub{ color:var(--muted); margin-bottom:22px; }
.est-lbl{ font-size:12.5px; letter-spacing:.18em; text-transform:uppercase; color:var(--sapphire); font-weight:600; margin:18px 0 10px; display:block; }
.chips{ display:flex; gap:10px; flex-wrap:wrap; }
.chips button{
  padding:10px 20px; border-radius:999px; border:1.5px solid var(--line);
  font-size:15px; color:var(--muted);
  transition:border-color var(--t), color var(--t), background var(--t);
  min-height:44px;
}
.chips button:hover{ border-color:var(--sapphire); color:var(--ink); }
.chips button.on{ border-color:var(--sapphire); color:var(--ink); background:rgba(var(--sapphire-rgb),.16); }
.est-pages{ margin:18px 0 4px; }
.est-pages label{ font-size:15px; color:var(--muted); }
.est-pages label b{ color:var(--canary); }
.est-pages input[type="range"]{ width:100%; margin-top:10px; accent-color:var(--sapphire); }
.est-result{
  display:flex; align-items:baseline; gap:18px; flex-wrap:wrap;
  margin:26px 0 20px; padding-top:20px; border-top:1px solid var(--line);
}
.est-result strong{
  font-family:var(--font-disp); font-weight:600; font-size:clamp(24px,3vw,34px);
  color:var(--canary); text-shadow:0 0 26px rgba(var(--canary-rgb),.3);
}
.est-result strong.unset{ font-size:17px; color:var(--muted); text-shadow:none; font-family:var(--font-body); font-weight:500; }
.contact-band{ max-width:720px; }
.ct-lead{ color:var(--muted); margin:18px 0 30px; }
#contactForm{ display:grid; gap:18px; }
.cf-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.ct-alt{ margin-top:22px; color:var(--muted); font-size:15px; }
.ct-alt a{ color:var(--sapphire); font-weight:600; }
.ct-alt a:hover{ text-decoration:underline; }

/* ---------------- FOOTER ---------------- */
.footer{ position:relative; border-top:1px solid var(--line); padding:40px 0; overflow:clip; }
.orb-e{ width:600px; height:600px; bottom:-300px; left:30%; background:radial-gradient(circle, rgba(var(--glow-warm-rgb),var(--orb-warm-a)), transparent 65%); }
.foot-grid{ display:flex; align-items:center; justify-content:space-between; gap:22px; flex-wrap:wrap; }
.foot-tag{ color:var(--muted); font-size:14.5px; }
.foot-links{ display:flex; gap:8px; }
.foot-links button{
  padding:9px 15px; border-radius:999px; font-size:14px; color:var(--muted);
  transition:color var(--t), background var(--t);
}
.foot-links button:hover{ color:var(--ink); background:rgba(var(--ink-rgb),.06); }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width:960px){
  .nav-links{ display:none; }
  .nav-burger{ display:flex; }
  .nav-avail{ display:none; }
  .svc-grid{ grid-template-columns:1fr; }
  .about-grid{ grid-template-columns:1fr; }
  .about-visual{ max-width:340px; }
  .proof-grid{ grid-template-columns:1fr; }
  .cf-row{ grid-template-columns:1fr; }
}
@media (max-width:880px){
  .scene{ padding:20px 0; }
  .ba-compare{ max-height:none; }
  .work-carousel .q-arrow.prev{ left:8px; }
  .work-carousel .q-arrow.next{ right:8px; }
}
