:root {
  --bg: #0a0a0b;
  --bg-2: #121214;
  --bg-3: #1a1a1d;
  --line: rgba(255, 255, 255, .09);
  --text: #f1efea;
  --muted: #9a9892;
  --gold: #d6ad4f;
  --gold-2: #f0cf7a;
  --gold-3: #9a7426;
  --gold-grad: linear-gradient(100deg, #f6e2a0 0%, #d6ad4f 35%, #a67c2c 55%, #e9c56c 78%, #f6e2a0 100%);
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --body: "Jost", system-ui, sans-serif;
  --r: 18px;
  --pad: clamp(16px, 4vw, 56px);
  --ease: cubic-bezier(.2, .7, .1, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: .92; margin: 0; letter-spacing: .005em; text-transform: uppercase; }
h2 { font-size: clamp(44px, 7vw, 104px); }
h3 { font-size: clamp(26px, 2.4vw, 34px); }
p { margin: 0; }
::selection { background: var(--gold); color: #111; }

/* grain */
body::after {
  content: ""; position: fixed; inset: -50%; z-index: 90; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1s steps(4) infinite;
}
@keyframes grain { 0% { transform: translate(0, 0) } 25% { transform: translate(-3%, 2%) } 50% { transform: translate(2%, -3%) } 75% { transform: translate(-2%, -2%) } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }
.eyebrow .dot { display: none; }
.hero .eyebrow::before { display: none; }
.hero .eyebrow .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(214, 173, 79, .7); animation: ping 2s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 10px rgba(214, 173, 79, 0) } 100% { box-shadow: 0 0 0 0 rgba(214, 173, 79, 0) } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: .02em; white-space: nowrap;
  transition: transform .35s var(--ease), background .3s, border-color .3s, color .3s;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn--gold { background: var(--gold-grad); background-size: 200% 100%; color: #14110a; box-shadow: 0 10px 30px -10px rgba(214, 173, 79, .8); }
.btn--gold:hover { background-position: 100% 0; transform: translateY(-2px); }
.btn--gold { transition: transform .35s var(--ease), background-position .8s var(--ease); }
.btn--ghost { border: 1px solid rgba(255, 255, 255, .22); color: var(--text); }
.btn--ghost:hover { border-color: #fff; transform: translateY(-2px); }
.btn--big { height: 64px; padding: 0 36px; font-size: 17px; }
.btn:focus-visible, a:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

/* Loader */
.loader { position: fixed; inset: 0; z-index: 100; background: var(--bg); display: grid; place-items: center; clip-path: inset(0 0 0% 0); }
.loader__inner { display: grid; justify-items: center; gap: 18px; }
.loader__logo { width: 84px; height: 84px; border-radius: 50%; opacity: 0; transform: scale(.8); }
.loader__word { display: flex; overflow: hidden; font-family: var(--display); font-weight: 900; font-size: 64px; line-height: 1; letter-spacing: .08em; }
.loader__word span { display: inline-block; transform: translateY(110%); }
.loader__bar { width: 160px; height: 2px; background: var(--line); overflow: hidden; }
.loader__bar i { display: block; height: 100%; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px var(--pad);
  transition: background .4s, backdrop-filter .4s, transform .5s var(--ease), padding .4s;
}
.nav.is-scrolled { background: rgba(10, 10, 11, .72); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-bottom: 1px solid var(--line); padding-top: 10px; padding-bottom: 10px; }
.nav.is-hidden { transform: translateY(-110%); }
.nav__brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: .06em; }
.nav__brand img { border-radius: 50%; }
.nav__brand b { color: var(--gold); font-weight: 800; margin-left: 4px; }
.nav__links { display: flex; gap: 34px; font-size: 14px; font-weight: 500; }
.nav__links a { position: relative; color: #cfcdc7; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { height: 44px; padding: 0 20px; font-size: 14px; }

/* Hero */
.hero { position: relative; height: 260vh; }
.hero__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__vignette { position: absolute; inset: 0; pointer-events: none; background:
  radial-gradient(120% 80% at 70% 40%, transparent 30%, rgba(10, 10, 11, .75) 75%),
  linear-gradient(90deg, rgba(10, 10, 11, .92) 0%, rgba(10, 10, 11, .55) 38%, transparent 60%),
  linear-gradient(0deg, var(--bg) 0%, transparent 22%); }
.hero__copy { position: absolute; left: var(--pad); bottom: clamp(70px, 12vh, 140px); max-width: 640px; z-index: 2; }
.hero__title { font-size: clamp(64px, 11vw, 176px); line-height: .86; margin-bottom: 26px; }
.hero__title .line { display: block; overflow: hidden; padding: .1em 0 .04em; margin-top: -.1em; }
.hero__title .line > span { display: inline-block; }
.hero__title .line--gold { color: var(--gold); }
.hero__lead { color: #c9c7c1; font-size: clamp(16px, 1.3vw, 19px); max-width: 480px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__gauge {
  position: absolute; right: var(--pad); bottom: clamp(70px, 12vh, 140px); z-index: 2; width: 250px;
  padding: 20px 22px; border-radius: var(--r);
  background: rgba(20, 20, 22, .55); border: 1px solid var(--line);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.gauge__label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.gauge__state { position: relative; height: 34px; overflow: hidden; font-family: var(--display); font-weight: 800; font-size: 30px; text-transform: uppercase; }
.gauge__state .st { position: absolute; left: 0; top: 0; transition: transform .6s var(--ease), opacity .6s; }
.st--bad { color: #d9d6cf; }
.st--good { color: var(--gold); transform: translateY(100%); opacity: 0; }
.hero__gauge.is-good .st--bad { transform: translateY(-100%); opacity: 0; }
.hero__gauge.is-good .st--good { transform: none; opacity: 1; }
.gauge__track { height: 4px; background: rgba(255, 255, 255, .1); border-radius: 4px; margin: 12px 0 8px; overflow: hidden; }
.gauge__track i { display: block; height: 100%; width: 12%; background: linear-gradient(90deg, #6b6b70, var(--gold)); border-radius: 4px; }
.gauge__num { font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums; }
.gauge__num span { color: var(--text); font-weight: 600; }

.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); display: grid; justify-items: center; gap: 8px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); z-index: 2; }
.hero__scroll i { width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: drip 1.8s var(--ease) infinite; transform-origin: top; }
@keyframes drip { 0% { transform: scaleY(0) } 60% { transform: scaleY(1) } 100% { transform: scaleY(1); opacity: 0 } }

/* Marquee */
.marquee { border-block: 1px solid var(--line); padding: 26px 0; overflow: hidden; background: var(--bg); position: relative; z-index: 2; }
.marquee__track { display: flex; align-items: center; gap: 44px; width: max-content; animation: marquee 38s linear infinite; font-family: var(--display); font-weight: 800; font-size: clamp(34px, 4.4vw, 64px); text-transform: uppercase; }
.marquee__track span { color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .5); transition: color .3s; }
.marquee__track span:hover { color: #fff; }
.marquee__track i { font-style: normal; color: var(--gold); font-size: .5em; }
@keyframes marquee { to { transform: translateX(-50%) } }

/* Reveal */
.reveal { padding: clamp(90px, 14vw, 180px) var(--pad) 0; }
.reveal__text { max-width: 1100px; margin-bottom: clamp(40px, 6vw, 80px); }
.reveal__frame { position: relative; aspect-ratio: 3 / 2; max-height: 88vh; margin-inline: auto; border-radius: 28px; overflow: hidden; clip-path: inset(0 22% 0 22% round 28px); will-change: clip-path; }
.reveal__frame video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); }
.reveal__tag { position: absolute; left: 24px; bottom: 24px; padding: 12px 18px; border-radius: 999px; background: rgba(10, 10, 11, .6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); font-size: 14px; border: 1px solid var(--line); }
.reveal__tag b { color: var(--gold); margin-right: 8px; }

/* Split heading reveal */
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding: .12em 0 .06em; margin: -.12em 0 -.06em; }
.split .w > span { display: inline-block; }

/* Section head */
.section-head { max-width: 1100px; margin-bottom: clamp(40px, 6vw, 80px); }
.section-head__sub { color: var(--muted); max-width: 520px; margin-top: 24px; font-size: 18px; }
.section-head--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* Services */
.services { padding: clamp(90px, 14vw, 180px) var(--pad); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; perspective: 1200px; }
.svc {
  position: relative; border-radius: var(--r); overflow: hidden; background: var(--bg-2); border: 1px solid var(--line);
  transform-style: preserve-3d; transition: border-color .4s;
}
.svc:hover { border-color: rgba(214, 173, 79, .5); }
.svc__media { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; }
.svc__media video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.85) brightness(.75); transform: scale(1.04); transition: filter .6s, transform 1.2s var(--ease); }
.svc:hover .svc__media video { filter: none; transform: scale(1.1); }
.svc__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--bg-2) 2%, transparent 45%); }
.svc__body { position: relative; padding: 0 26px 28px; margin-top: -40px; transform: translateZ(40px); }
.svc__n { display: block; font-family: var(--display); font-weight: 800; font-size: 15px; color: var(--gold); letter-spacing: .1em; margin-bottom: 10px; }
.svc h3 { margin-bottom: 12px; }
.svc p { color: var(--muted); font-size: 15.5px; }

/* Process */
.process { position: relative; }
.process__pin { height: 100vh; height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; gap: clamp(28px, 4vh, 48px); }
.process__head { padding: 0 var(--pad); display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.process__head .eyebrow { width: 100%; margin-bottom: -6px; }
.process__head h2 { font-size: clamp(40px, 5.5vw, 84px); }
.process__progress { width: min(320px, 40vw); height: 2px; background: var(--line); margin-bottom: 14px; }
.process__progress i { display: block; height: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.process__track { display: flex; gap: 22px; padding: 0 var(--pad); width: max-content; will-change: transform; }
.step { width: clamp(280px, 30vw, 420px); flex: none; display: grid; gap: 18px; }
.step__media { position: relative; aspect-ratio: 4 / 4.4; max-height: 52vh; border-radius: var(--r); overflow: hidden; background: var(--bg-3); }
.step__media video { width: 100%; height: 100%; object-fit: cover; }
.step__txt { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; row-gap: 6px; }
.step__txt span { grid-row: span 2; font-family: var(--display); font-weight: 900; font-size: 54px; line-height: .8; color: transparent; -webkit-text-stroke: 1px var(--gold); }
.step__txt p { color: var(--muted); font-size: 15px; max-width: 34ch; }

/* Before / after */
.ba { padding: clamp(90px, 14vw, 180px) var(--pad); background: var(--bg-2); border-block: 1px solid var(--line); }

/* Works */
.works { padding: clamp(90px, 14vw, 180px) var(--pad); }
.works__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; perspective: 1400px; }
.work { position: relative; display: block; border-radius: var(--r); overflow: hidden; aspect-ratio: 720 / 900; background: var(--bg-3); transform-style: preserve-3d; }
.work:nth-child(4n+2), .work:nth-child(4n+4) { margin-top: 60px; }
.work video { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.work:hover video { transform: scale(1.06); }
.work::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, .85) 0%, transparent 45%); pointer-events: none; }
.work__info { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2; display: grid; gap: 2px; transform: translateZ(30px); }
.work__info b { font-family: var(--display); font-weight: 800; font-size: 26px; text-transform: uppercase; line-height: 1; }
.work__info span { font-size: 14px; color: #bdbbb5; }
.work__info::after { content: "Ver reel ↗"; position: absolute; right: 0; bottom: 0; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-2); opacity: 0; transform: translateY(6px); transition: .4s var(--ease); }
.work:hover .work__info::after { opacity: 1; transform: none; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.stat { padding: clamp(40px, 6vw, 80px) var(--pad); border-right: 1px solid var(--line); display: grid; gap: 10px; }
.stat:last-child { border-right: 0; }
.stat b { font-family: var(--display); font-weight: 900; font-size: clamp(64px, 8vw, 128px); line-height: .85; color: var(--text); font-variant-numeric: tabular-nums; }
.stat:nth-child(2) b { color: var(--gold); }
.stat span { color: var(--muted); max-width: 30ch; }

/* Location */
.loc { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(30px, 5vw, 80px); padding: clamp(90px, 14vw, 180px) var(--pad); align-items: center; }
.loc__list { list-style: none; padding: 0; margin: 36px 0; display: grid; gap: 22px; }
.loc__list li { display: grid; gap: 2px; color: var(--muted); padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.loc__list small { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.loc__list b { font-size: 22px; color: var(--text); font-weight: 600; }
.loc__list a:hover { color: var(--gold-2); }
.loc__map { position: relative; border-radius: 26px; overflow: hidden; aspect-ratio: 1 / 1; border: 1px solid var(--line); background: var(--bg-3); }
.loc__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.92) contrast(.9) brightness(.9); }
.loc__pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%); pointer-events: none; }
.loc__pin img { width: 54px; height: 54px; border-radius: 50%; border: 3px solid var(--gold); box-shadow: 0 10px 30px rgba(0, 0, 0, .6); }
.loc__pin::after { content: ""; position: absolute; left: 50%; bottom: -9px; transform: translateX(-50%); border: 7px solid transparent; border-top: 9px solid var(--gold); border-bottom: 0; }
.loc__pin::before { content: ""; position: absolute; left: 50%; top: 100%; width: 70px; height: 70px; margin: -26px 0 0 -35px; border-radius: 50%; border: 2px solid var(--gold); opacity: 0; animation: ring 2.4s var(--ease) infinite; transform: scaleY(.35); }
@keyframes ring { 0% { opacity: .9; transform: scale(.2) scaleY(.35) } 100% { opacity: 0; transform: scale(1.4) scaleY(.35) } }

/* CTA */
.cta { text-align: center; padding: clamp(90px, 14vw, 180px) var(--pad); position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; left: 50%; top: 55%; width: 900px; height: 900px; max-width: 160vw; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(214, 173, 79, .28), transparent 60%); pointer-events: none; }
.cta__title { font-size: clamp(64px, 13vw, 220px); margin-bottom: 26px; position: relative; }
.cta__title span { display: block; }
.cta__title span:last-child { color: var(--gold); }
.cta p { color: var(--muted); font-size: 19px; margin-bottom: 36px; position: relative; }
.cta .btn { position: relative; }

/* Footer */
.foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 30px var(--pad); border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.foot__brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 800; font-size: 20px; color: var(--text); text-transform: uppercase; letter-spacing: .05em; }
.foot__brand img { border-radius: 50%; }
.foot__links { display: flex; gap: 24px; }
.foot__links a:hover { color: var(--text); }

/* WhatsApp float */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25d366; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .7); transition: transform .35s var(--ease); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover { transform: scale(1.08) rotate(-6deg); }

/* Responsive */
@media (max-width: 1100px) {
  .works__grid { grid-template-columns: repeat(3, 1fr); }
  .work:nth-child(n) { margin-top: 0; }
  .work:nth-child(3n+2) { margin-top: 50px; }
  .hero__gauge { display: none; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .loc { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav__brand span { display: none; }
  .nav__cta { height: 40px; padding: 0 16px; }
  .svc-grid { grid-template-columns: 1fr; }
  .works__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .work:nth-child(n) { margin-top: 0; }
  .work:nth-child(2n) { margin-top: 36px; }
  .work__info b { font-size: 19px; }
  .work__info span { font-size: 12px; }
  .hero__copy { right: var(--pad); bottom: 40px; }
  .hero__scroll { display: none; }
  .hero__vignette { background: radial-gradient(120% 80% at 50% 30%, transparent 20%, rgba(10, 10, 11, .7) 70%), linear-gradient(0deg, var(--bg) 8%, rgba(10, 10, 11, .6) 50%, transparent 75%); }
  .step { width: 78vw; }
  .loc__map { aspect-ratio: 4 / 5; }
  .wa-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal__frame { clip-path: none; }
}

/* ===================== Workshop animations ===================== */

/* --- Squeegee cleaning wipe (before/after) --- */
.ba { padding-bottom: clamp(40px, 6vw, 80px); }
.wipe { min-height: 100vh; min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(28px, 5vw, 80px); padding: 5vh 0; }
.wipe__stage { position: relative; aspect-ratio: 720 / 820; max-height: 84vh; width: 100%; margin-inline: auto; border-radius: 22px; overflow: hidden; background: var(--bg-3); box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .9); isolation: isolate; }
.wipe__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wipe__img:first-child { filter: saturate(.55) sepia(.18) brightness(.88) contrast(.95); }
.wipe__img--after { clip-path: inset(0 100% 0 0); }
.wipe__wet { position: absolute; top: 0; bottom: 0; left: 0; width: 140px; pointer-events: none; opacity: 0; transform: translateX(-140px);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .10) 55%, rgba(200, 225, 255, .22) 92%, transparent); mix-blend-mode: screen; }
.wipe__foam { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; }
.wipe__blade { position: absolute; top: -3%; bottom: -3%; left: 0; width: 16px; margin-left: -8px; z-index: 4; pointer-events: none; transform-origin: 50% 50%; }
.wipe__rubber { position: absolute; inset: 0; border-radius: 6px;
  background: linear-gradient(90deg, #0b0b0c 0 30%, #2a2a2e 30% 45%, #c8c8cc 45% 55%, #2a2a2e 55% 70%, #0b0b0c 70%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .06), 10px 0 24px rgba(0, 0, 0, .55); }
.wipe__handle { position: absolute; top: 50%; right: 100%; width: 110px; height: 26px; margin-top: -13px; border-radius: 14px 4px 4px 14px;
  background: linear-gradient(180deg, #f6e2a0, var(--gold) 45%, var(--gold-3)); box-shadow: 0 8px 18px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .35); }
.wipe__handle::after { content: ""; position: absolute; left: 14px; right: 30px; top: 8px; bottom: 8px; border-radius: 6px;
  background: repeating-linear-gradient(90deg, rgba(0, 0, 0, .35) 0 3px, transparent 3px 7px); }
.wipe__tag { position: absolute; top: 16px; left: 16px; z-index: 5; padding: 7px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; background: rgba(10, 10, 11, .72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: opacity .4s; }
.wipe__tag:not(.wipe__tag--after) { left: auto; right: 16px; }
.wipe__tag--after { background: var(--gold); color: #14110a; opacity: 0; }
.wipe.is-mid .wipe__tag--after { opacity: 1; }
.wipe.is-late .wipe__tag:not(.wipe__tag--after) { opacity: 0; }
.wipe__txt h3 { font-size: clamp(44px, 5.5vw, 84px); margin: 8px 0 18px; }
.wipe__txt p { color: var(--muted); font-size: 18px; max-width: 42ch; }
.wipe__n { font-family: var(--display); font-weight: 900; font-size: 22px; color: var(--gold); letter-spacing: .1em; }
.wipe__meter { height: 6px; border-radius: 6px; background: rgba(255, 255, 255, .08); margin: 34px 0 10px; max-width: 360px; overflow: hidden; }
.wipe__meter i { display: block; height: 100%; width: 0; border-radius: 6px; background: linear-gradient(90deg, #7fd3ff, #fff 60%, var(--gold)); }
.wipe__pct { color: var(--muted); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-variant-numeric: tabular-nums; }
.wipe__pct b { color: var(--text); }

/* sparkles when a surface is clean */
.spark { position: absolute; z-index: 6; width: 26px; height: 26px; margin: -13px 0 0 -13px; pointer-events: none; transform: scale(0);
  animation: spark 1.1s var(--ease) forwards; }
.spark::before, .spark::after { content: ""; position: absolute; left: 50%; top: 50%; background: #fff; border-radius: 2px; box-shadow: 0 0 12px 2px rgba(255, 255, 255, .8); }
.spark::before { width: 2px; height: 100%; transform: translate(-50%, -50%); }
.spark::after { height: 2px; width: 100%; transform: translate(-50%, -50%); }
@keyframes spark { 0% { transform: scale(0) rotate(0) } 40% { transform: scale(var(--s, 1)) rotate(45deg) } 100% { transform: scale(0) rotate(90deg) } }

/* --- Upholstery stitch seams between sections --- */
.seam { position: relative; height: 60px; margin: 0 var(--pad); }
.seam svg { width: 100%; height: 100%; overflow: visible; }
.seam__groove { fill: none; stroke: rgba(255, 255, 255, .07); stroke-width: 6; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.seam__stitch { fill: none; stroke: var(--gold-2); stroke-width: 2.2; stroke-dasharray: 12 9; stroke-linecap: round; vector-effect: non-scaling-stroke; filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .8)); }
.seam__needle { position: absolute; left: 0; top: 0; width: 66px; height: 8px; margin: -4px 0 0 -58px; pointer-events: none; opacity: 0; transform-origin: 58px 4px;
  background: linear-gradient(90deg, transparent 0 8%, #e8e8ec 8% 20%, transparent 20% 28%, #d7d7dc 28%, #8d8d93 100%); clip-path: polygon(0 20%, 88% 0, 100% 50%, 88% 100%, 0 80%); filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .6)); }

/* --- Polish shine sweep --- */
.shine { position: relative; }
.shine::before { content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none; border-radius: inherit;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .0) 42%, rgba(255, 255, 255, .38) 50%, rgba(255, 255, 255, 0) 58%, transparent 62%);
  transform: translateX(-120%); }
.shine.is-shined::before { animation: shine 1.3s var(--ease) forwards; }
.shine:hover::before { animation: shine 1.1s var(--ease); }
@keyframes shine { from { transform: translateX(-120%) } to { transform: translateX(120%) } }
.reveal__frame.shine::before { z-index: 2; }

/* --- Loader squeegee exit & foam --- */
.loader__foam { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.loader__blade { position: fixed; z-index: 101; top: -2%; bottom: -2%; left: 0; width: 18px; margin-left: -9px; opacity: 0; pointer-events: none; }
.loader__blade .wipe__handle { width: 140px; height: 30px; margin-top: -15px; }

/* --- CTA soap bubbles --- */
.cta__foam { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

@media (max-width: 900px) {
  .wipe { grid-template-columns: 1fr; min-height: 100svh; padding: 0; gap: 22px; align-content: center; }
  .wipe__stage { max-height: none; width: min(100%, calc(60svh * 720 / 820)); }
  .wipe__txt h3 { font-size: 40px; margin: 4px 0 10px; }
  .wipe__txt p { font-size: 16px; }
  .wipe__meter { margin: 16px 0 6px; }
  .wipe__handle { width: 70px; height: 20px; margin-top: -10px; }
}
@media (prefers-reduced-motion: reduce) {
  .wipe__img--after { clip-path: none; }
  .wipe__blade, .seam__needle { display: none; }
}

/* ===================== Elegant typography & gold ===================== */
body { font-weight: 400; letter-spacing: .005em; }
h1, h2, h3 { font-weight: 500; line-height: 1; letter-spacing: -.01em; text-transform: none; }
h2 { font-size: clamp(44px, 6.4vw, 96px); }
h3 { font-size: clamp(26px, 2.3vw, 34px); font-weight: 600; }
em { font-style: italic; }
h1 em, h2 em, h3 em, .cta__title span:last-child, .hero__title .line--gold > span, .stat:nth-child(2) b,
.loader__word, .step__txt span, .wipe__n, .svc__n {
  background: var(--gold-grad); background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-stroke: 0;
}
h2 em, h1 em { font-weight: 500; padding-right: .06em; }
.split .w > span > em, .split .w em { display: inline-block; }

.hero__title { font-size: clamp(62px, 9.6vw, 160px); line-height: .95; font-weight: 500; }
.hero__title .line--gold { font-style: italic; }
.hero__title .line--gold > span { padding-right: .08em; animation: goldshift 6s ease-in-out infinite alternate; }
@keyframes goldshift { from { background-position: 0 0 } to { background-position: 100% 0 } }

.eyebrow { font-weight: 500; letter-spacing: .28em; font-size: 12px; }
.eyebrow::before { height: 1px; width: 34px; }
.btn { font-weight: 500; letter-spacing: .06em; }
.btn--ghost { border-color: rgba(214, 173, 79, .45); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); }

.loader__word { font-weight: 600; font-size: 72px; letter-spacing: .32em; margin-right: -.32em; }
.nav__brand { font-weight: 600; font-size: 24px; letter-spacing: .04em; }
.nav__brand b { font-weight: 500; font-style: italic; margin-left: 2px; }
.nav__links a { font-weight: 400; letter-spacing: .04em; }

.gauge__state { font-weight: 500; font-style: italic; font-size: 32px; text-transform: none; height: 38px; }

.marquee__track { font-weight: 500; font-style: italic; font-size: clamp(36px, 4.6vw, 68px); text-transform: none; gap: 52px; }
.marquee__track span { color: rgba(241, 239, 234, .28); -webkit-text-stroke: 0; transition: color .4s; }
.marquee__track span:hover { color: var(--gold-2); }

.svc__n, .wipe__n { font-style: italic; font-weight: 600; font-size: 22px; letter-spacing: .02em; }
.step__txt span { font-style: italic; font-weight: 500; font-size: 64px; line-height: .8; }
.step__txt h3 { font-size: 30px; }

.work__info b { font-weight: 600; font-size: 28px; text-transform: none; }
.work__info::after { color: var(--gold-2); }

.stat b { font-weight: 500; font-size: clamp(68px, 8vw, 132px); }
.wipe__txt h3 { font-size: clamp(46px, 5.4vw, 84px); font-weight: 500; }
.loc__list b { font-family: var(--display); font-size: 28px; font-weight: 600; }
.loc__list b a { font-family: var(--display); }

.cta__title { font-weight: 500; font-size: clamp(60px, 11vw, 190px); line-height: .95; }
.cta__title span:last-child { font-style: italic; padding-right: .06em; }
.foot__brand { font-weight: 600; font-size: 22px; text-transform: none; letter-spacing: .03em; }

@media (max-width: 640px) {
  .nav__brand span { display: none; }
  .work__info b { font-size: 20px; }
  .loader__word { font-size: 56px; }
}
