/* CSC Automotive — concept by VCTR. Not the live CSC Automotive website.
   Brand: their yellow (#ffee00) and charcoal, taken from the existing site and logo.
   Animation budget: transform and opacity only — no blend modes, filters or
   backdrop-filter, which are what make a page feel heavy in Safari. */

@font-face { font-family: Anton; src: url('/fonts/anton-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: Inter; src: url('/fonts/inter-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: Inter; src: url('/fonts/inter-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }

:root {
  --yellow: #ffee00;
  --yellow-2: #ffd600;
  --ink: #0f1113;
  --ink-2: #16191c;
  --ink-3: #21262b;
  --paper: #f4f4f1;
  --paper-2: #e7e7e2;
  --grey: #8f9599;   /* 5.2:1 on --ink; the old #6d7378 was 3.9:1 */
  --line: rgba(255, 255, 255, 0.13);
  --line-ink: rgba(15, 17, 19, 0.14);
  --display: Anton, Impact, 'Haettenschweiler', sans-serif;
  --body: Inter, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
  --gut: clamp(18px, 4.2vw, 68px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}

@view-transition { navigation: auto; }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--ink); color: var(--paper);
  font-family: var(--body); font-size: 17px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 400; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--yellow); color: var(--ink); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.wrap { padding-inline: var(--gut); }
.skip { position: fixed; top: -60px; left: 12px; z-index: 200; background: var(--yellow); color: var(--ink); padding: 10px 16px; }
.skip:focus { top: 8px; }

/* ---------- type ---------- */
.display { font-family: var(--display); text-transform: uppercase; line-height: 0.86; letter-spacing: 0.005em; font-weight: 400; }
.d-xl { font-size: clamp(3.4rem, 11vw, 9rem); }
.d-l { font-size: clamp(2.8rem, 7.5vw, 6rem); }
.d-m { font-size: clamp(2rem, 4vw, 3.2rem); }
.eyebrow, .label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; }
.eyebrow { color: var(--yellow); }
.mono { font-family: var(--mono); font-size: 0.79rem; letter-spacing: 0.01em; }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: #c9ccce; max-width: 52ch; }
.muted { color: var(--grey); }

/* Reveals. Motion owns the animation, so the start state is only applied when
   JavaScript is running — without it the page renders fully visible. */
.line { display: block; overflow: hidden; }
.line__in { display: block; }
.js .line__in { transform: translateY(105%); }
.js .reveal { opacity: 0; }
.js .promises > li, .js .compare__notes > li, .js .badges ul > li { opacity: 0; }

/* ---------- chrome ---------- */
.conceptbar {
  position: relative; z-index: 60; display: flex; gap: 1.4em; justify-content: center;
  background: var(--yellow); color: var(--ink); padding: 7px var(--gut);
  font-family: var(--mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em;
  white-space: nowrap; overflow: hidden;
}
.conceptbar a { text-decoration: underline; }

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: clamp(12px, 2vw, 32px);
  padding: 12px var(--gut); background: var(--ink-2); border-bottom: 1px solid var(--line);
  transition: transform 0.45s var(--ease);
  view-transition-name: nav;
}
.nav.is-up { transform: translateY(-101%); }
.nav__logo img { width: clamp(78px, 8vw, 104px); height: auto; }
.nav__links { display: flex; gap: clamp(10px, 1.6vw, 26px); margin-left: auto; font-size: 0.93rem; }
.nav__links a { position: relative; padding: 6px 0; color: #cfd3d6; }
.nav__links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__burger { display: none; margin-left: auto; width: 46px; height: 34px; border: 0; background: none; padding: 8px; }
.nav__burger span { display: block; height: 2px; background: var(--paper); transition: transform 0.4s var(--ease); }
.nav__burger span + span { margin-top: 7px; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span + span { transform: translateY(-4.5px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px;
  background: var(--yellow); color: var(--ink); border: 0; border-radius: 2px;
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background-color 0.25s, transform 0.25s var(--ease); cursor: pointer;
}
.btn:hover { background: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--paper); box-shadow: inset 0 0 0 1px var(--line); }
.btn--ghost:hover { background: var(--paper); color: var(--ink); }
.btn--sm { padding: 11px 18px; font-size: 0.72rem; }

.drawer { position: fixed; inset: 0; z-index: 55; background: var(--ink); padding: 84px var(--gut) 32px; display: grid; align-content: space-between; }
.drawer[hidden] { display: none; }
.drawer__links { display: grid; gap: 2px; }
.drawer__links a { font-family: var(--display); text-transform: uppercase; font-size: clamp(2.2rem, 11vw, 4rem); line-height: 1.05; }
.drawer__phone { font-family: var(--display); font-size: 2rem; color: var(--yellow); }

/* ---------- hero ---------- */
.hero { padding: clamp(30px, 4.5vw, 70px) 0 0; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.62fr); gap: clamp(24px, 4vw, 64px); align-items: end; }
.hero__main { display: grid; gap: clamp(14px, 1.8vw, 26px); }
.hero__title { font-size: clamp(3.4rem, 12.4vw, 12rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin: 6px 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
.hero__facts dt { color: var(--grey); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.66rem; }
.hero__facts dd { margin: 6px 0 0; font-size: 0.97rem; }
.hero__card { position: relative; align-self: stretch; min-height: clamp(280px, 34vw, 460px); overflow: hidden; }
.hero__card picture, .hero__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__chip { position: absolute; left: 14px; bottom: 14px; display: flex; align-items: baseline; gap: 8px; padding: 10px 14px; background: rgba(15, 17, 19, 0.88); }
.hero__chip b { font-family: var(--display); font-size: 1.4rem; }
.hero__chip .mono { color: #b9bdc0; }
.hero__est { position: absolute; right: 0; top: 14px; background: var(--yellow); color: var(--ink); padding: 7px 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.rating { color: #c9ccce; }
.rating__stars { color: var(--yellow); letter-spacing: 2px; }
.hero__media { margin-top: clamp(24px, 3.5vw, 48px); }
.hero__media img { width: 100%; aspect-ratio: 24 / 7; object-fit: cover; }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; background: var(--yellow); color: var(--ink); padding: 12px 0; }
.marquee__track { display: flex; gap: 28px; width: max-content; will-change: transform; animation: slide 38s linear infinite; }
.marquee__track span { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 2.4rem); }
.marquee__track i { font-style: normal; opacity: 0.45; }
@keyframes slide { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

/* ---------- sections ---------- */
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--dark { background: var(--ink-2); }
.section--yellow { background: var(--yellow); color: var(--ink); }
.section--yellow .label, .section--yellow .mono { color: rgba(15, 17, 19, 0.7); }
.head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); gap: clamp(20px, 3vw, 60px); align-items: end; margin-bottom: clamp(34px, 5vw, 70px); }

.promises { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.promise { background: var(--ink); padding: clamp(22px, 2.5vw, 34px); display: grid; gap: 10px; align-content: start; }
.promise__n { color: var(--yellow); }
.promise h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.35rem; }
.promise p { color: #b9bdc0; font-size: 0.97rem; }

/* index rows with a photo that follows the pointer */
.index { position: relative; border-top: 1px solid var(--line); }
.index__row { display: grid; grid-template-columns: 58px minmax(0, 260px) minmax(0, 1fr) auto; gap: clamp(12px, 2vw, 30px); align-items: center;
  padding: clamp(20px, 2.6vw, 34px) var(--gut); border-bottom: 1px solid var(--line); transition: background-color 0.35s, padding-left 0.45s var(--ease); }
.index__row:hover { background: var(--ink-3); padding-left: calc(var(--gut) + 12px); }
.index__n { color: var(--yellow); }
.index__title { font-size: clamp(1.7rem, 3.6vw, 3rem); }
.index__blurb { color: #b0b5b8; font-size: 0.95rem; max-width: 46ch; }
.index__peek { position: absolute; top: 0; left: 0; width: 300px; aspect-ratio: 4 / 3; pointer-events: none; opacity: 0; transform: translate3d(0, 0, 0) scale(0.9); transition: opacity 0.3s, scale 0.4s var(--ease); z-index: 2; will-change: transform; }
.index__peek img { width: 100%; height: 100%; object-fit: cover; }
.index.is-peeking .index__peek { opacity: 1; scale: 1; }

/* horizontal steps, moved by transform while the section is pinned */
.steps { height: 320vh; }
.steps__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; display: grid; align-content: center; gap: 30px; overflow: hidden; }
.steps__head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; }
.steps__track { display: flex; gap: clamp(16px, 2vw, 28px); padding-inline: var(--gut); will-change: transform; }
.step { flex: 0 0 min(78vw, 460px); background: var(--ink-2); border: 1px solid var(--line); padding: clamp(22px, 2.6vw, 36px); display: grid; gap: 14px; align-content: start; }
.step__n { font-size: clamp(3rem, 6vw, 5rem); color: var(--yellow); }
.step h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; }
.step p { color: #b9bdc0; font-size: 0.97rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stat { background: var(--ink); padding: clamp(24px, 3vw, 44px) clamp(16px, 2vw, 28px); display: grid; gap: 4px; align-content: start; }
.stat__row { display: flex; align-items: baseline; gap: 6px; white-space: nowrap; }
.stat__v { font-size: clamp(2.6rem, 5.6vw, 4.6rem); line-height: 1; }
.stat__suffix { font-size: clamp(1rem, 1.6vw, 1.5rem); line-height: 1; color: var(--yellow); }
.stat .label { margin-top: 8px; }

.reviews { display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); gap: clamp(24px, 4vw, 70px); }
.reviews__head .d-xl { line-height: 0.8; }
.reviews__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.reviews__list li { border-top: 1px solid rgba(15, 17, 19, 0.25); padding-top: 18px; }
.reviews__list blockquote { margin: 0 0 8px; font-size: clamp(1.1rem, 1.8vw, 1.5rem); }

.badges { padding-block: clamp(36px, 5vw, 64px); display: grid; gap: 22px; }
.badges ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: clamp(20px, 4vw, 54px); }
.badges img { height: clamp(38px, 5vw, 58px); width: auto; opacity: 0.92; }
.badge-word { border: 1px solid var(--line); padding: 10px 14px; }

.band img { width: 100%; aspect-ratio: 1600 / 222; object-fit: cover; }

.cta { padding: clamp(70px, 11vw, 150px) var(--gut); display: grid; gap: 26px; justify-items: center; text-align: center; }
.cta__title { font-size: clamp(3.4rem, 13vw, 11rem); }

/* ---------- inner pages ---------- */
.phero { padding-top: clamp(30px, 5vw, 70px); display: grid; gap: clamp(26px, 4vw, 56px); }
.phero .wrap { display: grid; gap: 18px; }
.phero__title { max-width: 14ch; }
.phero__media img { width: 100%; aspect-ratio: 16 / 4.5; object-fit: cover; }
.prose { display: grid; gap: 22px; max-width: 72ch; }
.prose p { color: #c4c8ca; }
.prose h2 { margin-top: 18px; }
.note { border-left: 3px solid var(--yellow); padding: 4px 0 4px 18px; color: var(--paper); }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ticks li { padding-left: 26px; position: relative; color: #c4c8ca; }
.ticks li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 14px; height: 2px; background: var(--yellow); }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(12px, 1.6vw, 22px); }
.gallery__item { margin: 0; display: grid; gap: 8px; }
.gallery__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.contact__photo { grid-column: 1; overflow: hidden; }
.contact__photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.contact dl { display: grid; gap: 0; margin: 24px 0; }
.contact dl div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); }
.contact dd { margin: 0; }
.form { display: grid; gap: 18px; }
.plate { display: flex; align-items: stretch; background: var(--yellow); border-radius: 6px; overflow: hidden; border: 2px solid #111; }
.plate__gb { display: grid; place-items: center; background: #0a3d91; color: #fff; padding: 0 10px; font-size: 0.8rem; letter-spacing: 0.08em; }
.plate__input { flex: 1; border: 0; background: transparent; color: #111; padding: 14px 16px; font-family: var(--display); font-size: clamp(1.6rem, 4vw, 2.4rem); letter-spacing: 0.06em; text-transform: uppercase; }
.plate__input::placeholder { color: rgba(17, 17, 17, 0.35); }
.plate__input:focus { outline: none; }
.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%; padding: 22px 0 10px; border: 0; border-bottom: 1px solid var(--line);
  background: transparent; font-size: 16px; border-radius: 0; appearance: none; resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--yellow); }
.field label { position: absolute; left: 0; top: 20px; color: var(--grey); font-size: 0.95rem; pointer-events: none; transition: transform 0.3s var(--ease), color 0.3s; transform-origin: left; }
.field:focus-within label, .field.is-filled label, .field--select label { transform: translateY(-20px) scale(0.78); color: var(--yellow); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: #b9bdc0; }
.consent input { margin-top: 4px; accent-color: var(--yellow); }
.form__done { border-left: 3px solid var(--yellow); padding-left: 14px; color: var(--paper); }

/* ---------- footer ---------- */
.footer { background: var(--ink-2); border-top: 1px solid var(--line); padding: clamp(40px, 6vw, 80px) var(--gut) 24px; display: grid; gap: 40px; }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.footer__logo { width: 120px; }
.footer__line { margin-top: 14px; color: #b9bdc0; max-width: 32ch; }
.footer__list { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 8px; font-size: 0.95rem; color: #c4c8ca; }
.footer__list a:hover { color: var(--yellow); }
.footer__hours li { display: flex; justify-content: space-between; gap: 14px; max-width: 250px; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 0.72rem; color: var(--grey); }
.footer__bottom a { color: var(--yellow); }

/* ---------- cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 90; pointer-events: none; will-change: transform; }
.cursor__dot { display: block; width: 34px; height: 34px; margin: -17px 0 0 -17px; border: 1px solid var(--yellow); border-radius: 50%; transition: transform 0.3s var(--ease), background-color 0.3s; }
.cursor.is-big .cursor__dot { transform: scale(1.9); background: rgba(255, 238, 0, 0.16); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }





/* Parallax scales the image past its frame, so every frame that holds one must clip. */
.hero__media, .phero__media, .band, .gallery__item, .hero__card, .compare__rig { overflow: hidden; }

/* ---------- full-bleed statement ---------- */
.statement { padding: clamp(70px, 11vw, 150px) var(--gut); border-block: 1px solid var(--line); }
.statement p { font-family: var(--display); text-transform: uppercase; font-size: clamp(2rem, 5.6vw, 5rem); line-height: 0.95; max-width: 18ch; }
.statement em { font-style: normal; color: var(--yellow); }
.statement span { display: block; margin-top: 22px; font-family: var(--body); text-transform: none; font-size: 1.05rem; color: #c9ccce; max-width: 46ch; line-height: 1.55; }

/* ---------- old vs new ---------- */
.compare { padding-block: clamp(64px, 9vw, 130px); display: grid; gap: clamp(26px, 4vw, 54px); }
.compare__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); gap: clamp(20px, 3vw, 60px); align-items: end; }
.compare__tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.compare__tab { padding: 10px 16px; border: 1px solid var(--line); background: transparent; color: #c9ccce; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; transition: background-color 0.25s, color 0.25s, border-color 0.25s; }
.compare__tab:hover { border-color: var(--yellow); color: var(--paper); }
.compare__tab.is-on { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.compare__note { margin-top: -6px; }
.compare__rig { position: relative; margin: 0; overflow: hidden; aspect-ratio: 16 / 10; background: var(--ink-2); touch-action: pan-y; user-select: none; cursor: ew-resize; }
.compare__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.compare__old { position: absolute; inset: 0; width: var(--split, 50%); overflow: hidden; }
.compare__old .compare__img { width: 100vw; max-width: none; }
.compare__bar { position: absolute; top: 0; bottom: 0; left: var(--split, 50%); width: 2px; background: var(--yellow); transform: translateX(-1px); }
.compare__grip { position: absolute; top: 50%; left: 50%; width: 56px; height: 56px; margin: -28px 0 0 -28px; border-radius: 50%; background: var(--yellow); box-shadow: 0 10px 30px -10px rgba(0,0,0,.6); cursor: ew-resize; }
.compare__grip::before, .compare__grip::after { content: ''; position: absolute; top: 50%; width: 0; height: 0; border-block: 6px solid transparent; }
.compare__grip::before { left: 14px; border-right: 8px solid var(--ink); transform: translateY(-50%); }
.compare__grip::after { right: 14px; border-left: 8px solid var(--ink); transform: translateY(-50%); }
.compare__tag { position: absolute; top: 18px; padding: 7px 12px; background: rgba(15,17,19,.82); color: var(--paper); letter-spacing: 0.14em; text-transform: uppercase; }
.compare__tag--old { left: 18px; }
.compare__tag--new { right: 18px; background: var(--yellow); color: var(--ink); }
.compare__film { display: grid; gap: 12px; }
.compare__filmframe { position: relative; aspect-ratio: 16 / 9; background: #000; overflow: hidden; }
.compare__filmframe video { display: block; width: 100%; height: 100%; object-fit: cover; }
.compare__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); padding: 16px 26px; background: var(--yellow); color: var(--ink); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; transition: opacity 0.3s, transform 0.3s var(--ease); }
.compare__filmframe.is-playing .compare__play { opacity: 0; pointer-events: none; transform: translate(-50%, -50%) scale(0.9); }
.compare__notes { list-style: none; margin: 0; padding-inline: var(--gut); display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(18px, 2.4vw, 40px); }
.compare__notes li { display: grid; gap: 8px; border-top: 1px solid var(--line); padding-top: 16px; }
.compare__notes .mono { color: var(--yellow); }
.compare__notes b { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 1.25rem; }
.compare__notes p { color: #b9bdc0; font-size: 0.95rem; }
@media (max-width: 1000px) { .compare__head { grid-template-columns: 1fr; } .compare__rig { aspect-ratio: 4 / 3; } }

/* scroll progress in the header */
.nav__progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; background: var(--yellow); transform: scaleX(0); transform-origin: left; }

/* ---------- concept watermark ---------- */
.wm {
  position: fixed; inset: 0; z-index: 70; pointer-events: none; opacity: 0.075;
  background-repeat: repeat; background-size: 300px 175px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='175'%3E%3Ctext x='150' y='92' fill='%23888' font-family='Arial,Helvetica,sans-serif' font-size='17' font-weight='700' letter-spacing='2.5' text-anchor='middle' transform='rotate(-26 150 88)'%3ECONCEPT %C2%B7 VCTR%3C/text%3E%3C/svg%3E");
}
.wm-badge {
  position: fixed; right: 14px; bottom: 14px; z-index: 71; display: flex; align-items: center; gap: 7px;
  padding: 8px 13px; border-radius: 999px; background: rgba(15, 17, 19, 0.9); color: var(--paper);
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 238, 0, 0.5);
}
.wm-badge b { color: var(--yellow); font-weight: 600; }
.wm-badge span { display: none; }
.wm-badge:hover span, .wm-badge:focus-visible span { display: inline; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .hero__grid, .head, .reviews, .contact, .footer__top { grid-template-columns: 1fr; }
  .hero__facts { grid-template-columns: 1fr 1fr; }
  .index__row { grid-template-columns: 44px 1fr; row-gap: 6px; }
  .index__blurb, .index__meta { grid-column: 2; }
  .index__peek { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps { height: auto; }
  .steps__sticky { position: static; height: auto; padding-block: 60px; }
  .steps__track { flex-direction: column; transform: none !important; }
  .step { flex: 1 1 auto; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .conceptbar__alt { display: none; }
  .stats { grid-template-columns: 1fr; }
  .promises { grid-template-columns: 1fr; }
  .contact dl div { grid-template-columns: 1fr; gap: 2px; }
  .contact__photo { display: none; }
  .footer__hours li { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .js .line__in, .js .reveal, .js .promises > li, .js .compare__notes > li, .js .badges ul > li { transform: none; opacity: 1; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
