/* ============================================================
   NOIR DETAILING — Demo Project #03 EZIGN
   Dark cinematic automotive. HTML + CSS + vanilla JS, tanpa pustaka.
   ============================================================ */

/* ---------- Reset & asas ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden; /* lapisan pertahanan tambahan sahaja — punca sebenar ditangani dalam reka bentuk */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: var(--gold); color: #16110a; }

:root {
  --bg: #080909;
  --bg-2: #111313;
  --surface: #181b1b;
  --text: #F3F1EB;
  --muted: #A7AAA5;
  --gold: #D7A84F;
  --gold-dark: #8F6B2E;
  --line: rgba(255, 255, 255, .12);
  --line-soft: rgba(255, 255, 255, .07);
  --disp: "Space Grotesk", "Inter", "Segoe UI", sans-serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --maxw: 1240px;
  --nav-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, .85);
}

/* ---------- Utiliti ---------- */
.container { width: min(var(--maxw), calc(100% - 2.6rem)); margin-inline: auto; }
.disp { font-family: var(--disp); }
.txt-outline { color: transparent; -webkit-text-stroke: 1.5px var(--text); }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--disp); font-size: .78rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.skip-link {
  position: absolute; left: 1rem; top: .75rem; z-index: 400;
  transform: translateY(-180%);
  background: var(--gold); color: #16110a; font-weight: 700;
  padding: .7rem 1.1rem; text-decoration: none; font-size: .9rem;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---------- Butang ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  padding: 1.05rem 1.9rem; font-family: var(--disp); font-weight: 600;
  font-size: .92rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--solid { background: var(--gold); color: #16110a; }
.btn--solid:hover { background: #e4bc69; color: #16110a; }
.btn--ghost { border-color: var(--line); color: var(--text); background: rgba(255, 255, 255, .02); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--line { border-color: var(--line); color: var(--muted); background: none; }
.btn--line:hover { color: var(--text); border-color: var(--text); }
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Navigasi terapung ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  /* TIADA backdrop-filter/filter/transform — supaya anak fixed tidak terkurung */
}
.site-nav.scrolled { background: rgba(8, 9, 9, .94); border-color: var(--line-soft); }
.nav-in {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  height: var(--nav-h);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand__mark {
  width: 34px; height: 34px; background: var(--gold); color: #16110a;
  display: grid; place-items: center; font-family: var(--disp); font-weight: 700; font-size: 1.15rem;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
}
.brand__word { font-family: var(--disp); font-weight: 700; letter-spacing: .3em; font-size: 1.06rem; }
.nav-links { display: flex; align-items: center; gap: 2.1rem; margin: 0; padding: 0; list-style: none; }
.nav-links a {
  position: relative; font-family: var(--disp); font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none; color: var(--muted);
  padding: .4rem 0; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--gold); transition: width .25s var(--ease);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--text); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.nav-cta { padding: .8rem 1.4rem; font-size: .8rem; }
.menu-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 4px;
  padding: 10px; cursor: pointer; color: var(--text);
}
.menu-toggle svg { display: block; width: 22px; height: 22px; }

/* ---------- Menu mudah alih (reka bentuk khusus, skrin penuh) ---------- */
.m-menu {
  position: fixed; inset: 0; z-index: 300;
  background: #0b0c0c;
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px)) 1.6rem calc(1.6rem + env(safe-area-inset-bottom, 0px)) 1.6rem;
  visibility: hidden; opacity: 0;
  transition: opacity .28s var(--ease), visibility 0s linear .28s;
  overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
}
body.menu-open .m-menu { visibility: visible; opacity: 1; transition: opacity .28s var(--ease), visibility 0s; }
body.menu-open { overflow: hidden; }
/* semasa menu buka: nav (butang X + brand) perlu berada DI ATAS overlay
   (z-300) supaya boleh diklik — overlay penuh masih menutup halaman */
body.menu-open .site-nav { z-index: 330; }
.m-menu__list { list-style: none; margin: auto 0; padding: 0; display: flex; flex-direction: column; }
.m-menu__list a {
  display: flex; align-items: baseline; gap: 1rem; min-height: 58px;
  padding: .55rem 0; text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--disp); font-weight: 600; font-size: clamp(1.5rem, 6.4vw, 2.1rem);
  letter-spacing: .04em; text-transform: uppercase;
}
.m-menu__list a .no { font-size: .85rem; color: var(--gold); letter-spacing: .2em; }
.m-menu__list a:active { color: var(--gold); }
.m-menu__cta { margin-top: 1.4rem; width: 100%; }
.m-menu__note { margin-top: .9rem; color: var(--muted); font-size: .85rem; }

/* ---------- Seksyen umum ---------- */
.section { padding-block: clamp(4.6rem, 11vh, 8.5rem); position: relative; }
.sec-head { max-width: 900px; margin-bottom: clamp(2.4rem, 6vh, 4.2rem); }
.sec-head h2 {
  font-family: var(--disp); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.2rem, 5.6vw, 4.3rem); line-height: .98; letter-spacing: -.01em;
  margin: 1rem 0 0;
}
.sec-head p.lead { color: var(--muted); max-width: 560px; margin: 1.2rem 0 0; font-size: 1.03rem; }
.num-ghost {
  font-family: var(--disp); font-weight: 700; font-size: clamp(3.2rem, 7vw, 5.4rem);
  color: transparent; -webkit-text-stroke: 1px var(--gold-dark);
  line-height: 1; display: block; margin-bottom: .4rem;
}

/* ---------- 01 HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 45%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 9, .55) 0%, rgba(8, 9, 9, .12) 34%, rgba(8, 9, 9, .68) 72%, rgba(8, 9, 9, .94) 100%),
    linear-gradient(78deg, rgba(8, 9, 9, .82) 0%, rgba(8, 9, 9, .28) 46%, rgba(8, 9, 9, .05) 72%);
}
.hero__content { position: relative; z-index: 2; padding-bottom: clamp(3rem, 8vh, 5.5rem); }
.hero__eyebrow { margin-bottom: 1.3rem; }
.hero h1 {
  margin: 0; font-family: var(--disp); font-weight: 700; text-transform: uppercase;
  font-size: clamp(3rem, 9.2vw, 8rem); line-height: .93; letter-spacing: -.015em;
}
.hero h1 .stub { display: block; }
.hero__sub { margin: 1.4rem 0 0; color: #d9d6cc; max-width: 520px; font-size: 1.04rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }
.hero__cue {
  position: absolute; right: clamp(1rem, 3.4vw, 3rem); bottom: clamp(2.6rem, 7vh, 4.5rem); z-index: 2;
  display: flex; align-items: center; gap: .8rem; color: var(--muted);
  font-family: var(--disp); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__cue::after { content: ""; width: 1px; height: 56px; background: linear-gradient(var(--gold), transparent); }

/* ---------- 02 TRANSFORMASI (before/after) ---------- */
.ba {
  position: relative; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 21 / 9; background: var(--bg-2); user-select: none;
  --pos: 50%; touch-action: pan-y;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px;
  background: var(--gold); transform: translateX(-1px); pointer-events: none;
}
.ba__handle {
  position: absolute; top: 50%; left: var(--pos); transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: var(--gold);
  display: grid; place-items: center; color: #16110a; cursor: ew-resize;
  border: 0; box-shadow: 0 6px 24px rgba(0, 0, 0, .55);
}
.ba__handle svg { width: 24px; height: 24px; }
.ba__tag {
  position: absolute; top: 1.1rem; z-index: 2; pointer-events: none;
  font-family: var(--disp); font-size: .74rem; font-weight: 700; letter-spacing: .26em;
  padding: .45rem .8rem; background: rgba(8, 9, 9, .62); border: 1px solid var(--line);
}
.ba__tag--before { left: 1.1rem; color: var(--muted); }
.ba__tag--after { right: 1.1rem; color: var(--gold); }
.ba-hint { margin-top: .9rem; color: var(--muted); font-size: .84rem; letter-spacing: .04em; }

/* ---------- 03 SERVICE SELECTOR ---------- */
.svc-select { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(1.8rem, 4vw, 3.6rem); align-items: start; }
.svc-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.svc-item {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.15rem;
  padding: 1.5rem .35rem; border: 0; border-bottom: 1px solid var(--line);
  background: none; cursor: pointer; text-align: left; width: 100%;
  transition: padding-left .22s var(--ease), background .22s var(--ease);
}
.svc-item:hover { background: rgba(255, 255, 255, .02); padding-left: .8rem; }
.svc-item__num {
  font-family: var(--disp); font-weight: 700; font-size: 1.5rem; line-height: 1;
  color: var(--muted); transition: color .2s;
}
.svc-item__name { font-family: var(--disp); font-weight: 700; font-size: clamp(1.15rem, 2.2vw, 1.6rem); text-transform: uppercase; letter-spacing: .02em; }
.svc-item__tag { display: block; color: var(--muted); font-size: .85rem; margin-top: .3rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.svc-item__go { color: transparent; transition: color .2s, transform .2s var(--ease); }
.svc-item[aria-selected="true"] { padding-left: .8rem; background: linear-gradient(90deg, rgba(215, 168, 79, .07), transparent 60%); }
.svc-item[aria-selected="true"] .svc-item__num { color: var(--gold); }
.svc-item[aria-selected="true"] .svc-item__go { color: var(--gold); transform: translateX(2px); }
.svc-panel {
  background: var(--surface); border: 1px solid var(--line);
  padding: clamp(1.4rem, 2.6vw, 2.2rem); position: sticky; top: calc(var(--nav-h) + 1.5rem);
}
.svc-panel__img { aspect-ratio: 16 / 9; overflow: hidden; margin-bottom: 1.3rem; background: var(--bg); }
.svc-panel__img img { width: 100%; height: 100%; object-fit: cover; }
.svc-panel h3 { margin: 0 0 .7rem; font-family: var(--disp); font-size: 1.5rem; text-transform: uppercase; letter-spacing: .01em; }
.svc-panel p { margin: 0; color: var(--muted); }
.svc-panel__meta { display: grid; gap: .55rem; margin: 1.25rem 0 1.4rem; padding: 1rem 0 0; border-top: 1px solid var(--line-soft); }
.svc-panel__row { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; }
.svc-panel__row dt { color: var(--muted); }
.svc-panel__row dd { margin: 0; text-align: right; color: var(--text); font-weight: 600; }
.price-note { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; display: block; margin-top: .2rem; }

/* ---------- 04 PAKEJ (panel spesifikasi) ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.7rem); align-items: stretch; }
.pkg {
  background: var(--bg-2); border: 1px solid var(--line); padding: clamp(1.4rem, 2.2vw, 2rem);
  display: flex; flex-direction: column; position: relative;
}
.pkg__code { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-family: var(--disp); font-size: .74rem; letter-spacing: .3em; text-transform: uppercase; }
.pkg__code svg { color: var(--gold); width: 20px; height: 20px; }
.pkg h3 { font-family: var(--disp); font-size: clamp(1.5rem, 2.4vw, 2rem); text-transform: uppercase; margin: 1rem 0 .2rem; }
.pkg__price { font-family: var(--disp); font-weight: 700; font-size: clamp(2rem, 3vw, 2.6rem); color: var(--text); line-height: 1.05; }
.pkg__price small { font-size: .5em; color: var(--muted); font-weight: 500; }
.pkg__best { color: var(--muted); font-size: .92rem; margin: 1rem 0 0; }
.pkg__specs { list-style: none; margin: 1.2rem 0 1.6rem; padding: 0; border-top: 1px solid var(--line); }
.pkg__specs li {
  display: flex; gap: .7rem; align-items: baseline; padding: .62rem 0;
  border-bottom: 1px solid var(--line-soft); font-size: .93rem; color: #cfccc3;
}
.pkg__specs li::before { content: "—"; color: var(--gold); }
.pkg .btn { margin-top: auto; width: 100%; }
.pkg--sig { background: var(--surface); border-color: var(--gold-dark); box-shadow: var(--shadow); }
.pkg--sig .pkg__code { color: var(--gold); }
.pkg__flag {
  position: absolute; top: 0; right: clamp(1.4rem, 2.2vw, 2rem);
  background: var(--gold); color: #16110a; font-family: var(--disp); font-weight: 700;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; padding: .5rem .8rem;
}

/* ---------- 05 KERJA (galeri asimetri) ---------- */
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.9rem, 1.8vw, 1.5rem); }
.work { position: relative; overflow: hidden; background: var(--bg-2); border: 1px solid var(--line-soft); }
.work img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.work:hover img { transform: scale(1.045); }
.work--a { grid-column: span 7; aspect-ratio: 16 / 10; }
.work--b { grid-column: span 5; aspect-ratio: 4 / 3.1; margin-top: clamp(1.5rem, 4vw, 4rem); }
.work--c { grid-column: span 5; aspect-ratio: 4 / 3.1; }
.work--d { grid-column: span 7; aspect-ratio: 16 / 10; margin-top: clamp(-4rem, -4vw, -1.5rem); }
.work__meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 2.4rem 1.3rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 6, .88) 74%);
  display: flex; align-items: baseline; gap: .9rem;
}
.work__no { font-family: var(--disp); color: var(--gold); font-size: .78rem; letter-spacing: .24em; }
.work__name { font-family: var(--disp); font-weight: 700; font-size: clamp(1.05rem, 1.9vw, 1.4rem); text-transform: uppercase; }
.work__svc { display: block; color: var(--muted); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-top: .15rem; }

/* ---------- 06 PROSES (garis masa sinematik) ---------- */
.proc { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.proc__sticky { position: sticky; top: calc(var(--nav-h) + 2rem); }
.steps { list-style: none; margin: 0; padding: 0 0 0 2rem; border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: clamp(1.8rem, 4vh, 3rem); counter-reset: step; }
.step { position: relative; }
.step::before {
  content: ""; position: absolute; left: calc(-2rem - 5px); top: .85rem;
  width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg);
}
.step__head { display: flex; align-items: baseline; gap: 1rem; }
.step__num { font-family: var(--disp); font-weight: 700; font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--gold-dark); }
.step h3 { margin: 0; font-family: var(--disp); font-size: clamp(1.25rem, 2.4vw, 1.7rem); text-transform: uppercase; letter-spacing: .02em; }
.step p { margin: .55rem 0 0; color: var(--muted); max-width: 52ch; }

/* ---------- 07 WHY NOIR ---------- */
.why { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.why-row {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.2rem, 3.4vw, 3rem);
  align-items: baseline; padding: clamp(1.6rem, 3.6vh, 2.6rem) 0;
  border-top: 1px solid var(--line);
}
.why-row:last-child { border-bottom: 1px solid var(--line); }
.why-row__num { font-family: var(--disp); font-weight: 700; font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--gold); }
.why-row h3 { margin: 0 0 .4rem; font-family: var(--disp); font-size: clamp(1.35rem, 2.8vw, 2rem); text-transform: uppercase; }
.why-row p { margin: 0; color: var(--muted); max-width: 60ch; }

/* ---------- 08 TEMPAHAN ---------- */
.cta { position: relative; overflow: hidden; text-align: center; }
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.cta__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 9, .9), rgba(8, 9, 9, .72) 45%, rgba(8, 9, 9, .92));
}
.cta__in { position: relative; z-index: 2; padding-block: clamp(6rem, 15vh, 10rem); }
.cta h2 { font-family: var(--disp); font-weight: 700; text-transform: uppercase; font-size: clamp(2.6rem, 7.4vw, 6rem); line-height: .96; margin: 0; }
.cta p { color: #d9d6cc; max-width: 520px; margin: 1.3rem auto 2.2rem; }
.cta__row { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ---------- 09 FOOTER ---------- */
.site-footer { border-top: 1px solid var(--line); padding: clamp(2.4rem, 5vh, 3.6rem) 0 2rem; background: #060707; }
.f-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; }
.f-brand p { color: var(--muted); font-size: .92rem; margin: .8rem 0 0; max-width: 40ch; }
.f-title { margin: 0 0 .9rem; font-family: var(--disp); font-size: .76rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.f-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.f-col a { color: var(--muted); text-decoration: none; font-size: .94rem; transition: color .15s; }
.f-col a:hover { color: var(--text); }
.f-disclosure {
  margin: 2rem 0 0; padding: 1rem 1.2rem; border: 1px solid var(--line-soft);
  color: var(--muted); font-size: .84rem; background: rgba(255, 255, 255, .015);
}
.f-bottom { margin-top: 1.6rem; padding-top: 1.3rem; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; color: #7d8079; font-size: .8rem; }

/* ---------- Halaman undang-undang & 404 ---------- */
.doc { max-width: 72ch; padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vh, 4.5rem)); padding-bottom: clamp(3rem, 8vh, 5rem); }
.doc h1 { font-family: var(--disp); font-size: clamp(2rem, 4.6vw, 3rem); text-transform: uppercase; line-height: 1.02; margin: 1rem 0 1.2rem; }
.doc h2 { font-family: var(--disp); font-size: 1.2rem; text-transform: uppercase; margin: 2rem 0 .6rem; letter-spacing: .04em; }
.doc p, .doc li { color: var(--muted); }
.doc ul { padding-left: 1.2rem; }
.doc a { color: var(--gold); }
.nf { min-height: 100svh; display: flex; align-items: center; text-align: left; }
.nf h1 { font-family: var(--disp); font-weight: 700; font-size: clamp(4.5rem, 14vw, 10rem); line-height: .9; margin: 0; }
.nf p { color: var(--muted); max-width: 46ch; }

/* ---------- Dedahan skrol ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--rvd, 0s); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .rv { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsif ---------- */
@media (max-width: 1024px) {
  .svc-select { grid-template-columns: 1fr; gap: 2rem; }
  .svc-panel { position: static; }
  .proc { grid-template-columns: 1fr; }
  .proc__sticky { position: static; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: grid; place-items: center; position: relative; z-index: 320; }
  body.menu-open .menu-toggle { border-color: var(--gold); }
  .pkg-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .pkg--sig { transform: none; }
  .work--a, .work--b, .work--c, .work--d { grid-column: span 12; margin-top: 0; aspect-ratio: 16 / 10; }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .ba { aspect-ratio: 16 / 10; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: clamp(2.7rem, 13.4vw, 4rem); }
  .hero__cue { display: none; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .work--a, .work--b, .work--c, .work--d { aspect-ratio: 4 / 3.2; }
  .ba { aspect-ratio: 4 / 3; }
  .ba__handle { width: 46px; height: 46px; }
  .f-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .cta__row .btn { flex: 1 1 100%; }
  .steps { padding-left: 1.5rem; }
  .step::before { left: calc(-1.5rem - 5px); }
  .why-row { grid-template-columns: 1fr; gap: .4rem; }
  .btn { padding: 1rem 1.55rem; }
}
@media (max-width: 420px) {
  .svc-item { gap: .85rem; }
  .svc-item__num { font-size: 1.2rem; }
}
