/* =========================================================================
   AJR PDR — styles.css
   Premium auto shop. Dark cinematic surfaces. Mobile-first conversion.
   ========================================================================= */

/* ---------- Tokens ------------------------------------------------------ */
/* Production redeploy marker: mobile drawer polish 2026-05-19 */
:root {
  /* Dark theme defaults — cinematic shop floor */
  --bg:        #0A0A0A;
  --bg-2:      #111111;
  --surface:   #161616;
  --surface-2: #1C1C1C;
  --line:      #262626;
  --line-2:    #313131;
  --text:      #F2F1EE;
  --text-mute: #A4A29B;
  --text-faint:#6E6C66;
  --accent:    #C9CDD2;          /* silver metal */
  --accent-2:  #E7EAED;
  --accent-soft: rgba(201,205,210,0.13);
  --chrome:    #F2F1EE;
  --chrome-soft: rgba(242,241,238,0.11);
  --red:       #8F1D24;
  --red-2:     #C83B40;
  --red-soft:  rgba(143,29,36,0.18);
  --gold:      #C9CDD2;          /* shared accent variable now renders as silver */
  --gold-soft: rgba(201,205,210,0.16);
  --good:      #9AA3AD;
  --shadow:    0 30px 60px -20px rgba(0,0,0,.7);

  --container: 1200px;
  --gutter:    clamp(20px, 4vw, 40px);

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;

  --ease: cubic-bezier(.22,.61,.36,1);

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-ui:      "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --text-xs:  12px;
  --text-sm:  14px;
  --text-md:  16px;
  --text-lg:  18px;
  --text-xl:  22px;
  --display-s: clamp(28px, 3.4vw, 40px);
  --display-m: clamp(34px, 4.4vw, 56px);
  --display-l: clamp(42px, 6vw, 76px);
  --display-xl: clamp(52px, 6.8vw, 94px);
}

/* Light theme overrides — earthy, paper, ink */
.theme-light {
  --bg:        #F4F1EA;
  --bg-2:      #EDE8DD;
  --surface:   #FFFFFF;
  --surface-2: #F8F5EC;
  --line:      #DAD4C5;
  --line-2:    #C7C0AD;
  --text:      #14110C;
  --text-mute: #4A463C;
  --text-faint:#7A7468;
  --accent:    #6F7882;
  --accent-2:  #9AA3AD;
  --accent-soft: rgba(111,120,130,0.10);
  --chrome:    #FFFFFF;
  --chrome-soft: rgba(111,120,130,0.10);
  --red:       #8F1D24;
  --red-2:     #A72A31;
  --red-soft:  rgba(143,29,36,0.10);
  --gold:      #6F7882;          /* shared accent variable now renders as silver */
  --gold-soft: rgba(111,120,130,0.12);
  --shadow:    0 20px 50px -20px rgba(20,17,12,.18);
}

/* ---------- Reset ------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color .35s var(--ease), color .35s var(--ease);
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* ---------- Utility ----------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}
.display-xl { font-family: var(--font-display); font-size: var(--display-xl); line-height: .86; letter-spacing: -.04em; font-weight: 500; }
.display-l  { font-family: var(--font-display); font-size: var(--display-l);  line-height: .95; letter-spacing: -.032em; font-weight: 500; }
.display-m  { font-family: var(--font-display); font-size: var(--display-m);  line-height: 1; letter-spacing: -.024em;font-weight: 500; }
.display-s  { font-family: var(--font-display); font-size: var(--display-s);  line-height: 1.05;  letter-spacing: -.018em; font-weight: 500; }
.lead { color: var(--text-mute); font-size: var(--text-lg); max-width: 60ch; }
.pause { color: var(--gold); display: inline-block; font-style: italic; letter-spacing: -.05em; }

/* ---------- Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px;
  font-family: var(--font-ui); font-weight: 600; font-size: var(--text-md);
  letter-spacing: -.005em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: #0A0A0A; }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--text); }

/* ---------- Site shell -------------------------------------------------- */
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* ---------- Header & Nav ----------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line);
}
.navbar { display: flex; align-items: center; gap: 20px; padding-block: 14px; }
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
  color: var(--text);
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(201,205,210,.18);
  background: #080808;
  box-shadow:
    0 18px 34px -24px rgba(0,0,0,.95),
    inset 0 1px 0 rgba(255,255,255,.08);
  filter: saturate(1.08) contrast(1.1) drop-shadow(0 12px 24px rgba(0,0,0,.32));
}
.brand-text { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-main {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .015em;
  font-size: 24px;
  line-height: .88;
}
.brand-sub  {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-top: 7px;
}

.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mute);
  padding: 6px 0;
  position: relative;
  transition: color .2s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: var(--text); color: var(--bg);
  font-family: var(--font-ui); font-weight: 600; font-size: 14px;
  border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: #0A0A0A; border-color: var(--gold); }
.nav-cta .arrow { transition: transform .25s var(--ease); }
.nav-cta:hover .arrow { transform: translateX(4px); }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 999px;
  display: inline-grid; place-items: center;
  border: 1px solid var(--line); color: var(--text-mute);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.theme-toggle:hover { color: var(--text); border-color: var(--line-2); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-light .theme-toggle .icon-moon { display: none; }
.theme-light .theme-toggle .icon-sun  { display: block; }

.menu-toggle {
  width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid var(--line); color: var(--text);
  display: none; place-items: center;
}
.menu-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero -------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(620px, 78svh, 760px);
  padding: clamp(72px, 8vw, 112px) 0 clamp(64px, 7vw, 96px);
  display: flex;
  align-items: center;
}
.hero-media {
  position: absolute;
  inset: 0 0 0 50%;
  z-index: -1;
  background:
    radial-gradient(ellipse at 58% 46%, rgba(255,255,255,.18), transparent 34%),
    radial-gradient(ellipse at 55% 47%, rgba(201,205,210,.16), transparent 48%),
    radial-gradient(ellipse at 62% 38%, rgba(104,18,24,.18), transparent 44%),
    radial-gradient(ellipse at 20% 80%, rgba(201,205,210,.06), transparent 60%),
    url("../video/ajr-hero-poster.jpg") center center / cover no-repeat,
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .82;
  filter: saturate(1.16) contrast(1.18) brightness(.94);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,7,7,.08) 0%, rgba(7,7,7,0) 42%, rgba(7,7,7,.16) 100%),
    linear-gradient(180deg, rgba(7,7,7,.12) 0%, rgba(7,7,7,0) 42%, rgba(7,7,7,.26) 100%);
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(115deg, transparent 0%, transparent 45%, rgba(255,255,255,.30) 45.08%, transparent 45.45%),
    linear-gradient(115deg, transparent 0%, transparent 58%, rgba(201,205,210,.22) 58.08%, transparent 58.42%),
    radial-gradient(ellipse at 58% 46%, transparent 0 34%, rgba(255,255,255,.12) 35%, transparent 55%);
  opacity: .48;
  mix-blend-mode: screen;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(280px, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero-copy {
  width: min(520px, 100%);
  position: relative;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  border-radius: 2px;
  background:
    linear-gradient(140deg, rgba(12,12,12,.88), rgba(12,12,12,.68)),
    color-mix(in srgb, var(--bg) 62%, transparent);
  box-shadow:
    0 42px 120px -48px rgba(0,0,0,.95),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(16px) saturate(105%);
  -webkit-backdrop-filter: blur(16px) saturate(105%);
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201,205,210,.10);
  pointer-events: none;
}
.hero-eyebrow {
  margin-bottom: 26px;
  border-color: color-mix(in srgb, var(--gold) 28%, transparent);
  background: rgba(255,255,255,.035);
  color: color-mix(in srgb, var(--gold) 72%, var(--text));
}
.hero-copy h1 { margin-block: 0 22px; max-width: 8.5ch; }
.hero-sub {
  color: color-mix(in srgb, var(--text) 74%, transparent);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.58;
  max-width: 36ch;
  margin-bottom: 26px;
}
.hero-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.hero-proof-line span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(201,205,210,.20);
  border-radius: 999px;
  background: rgba(201,205,210,.055);
  color: color-mix(in srgb, var(--text) 70%, transparent);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 18px 26px; align-items: center; }
.hero .btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  box-shadow: 0 18px 40px -24px rgba(242,241,238,.6);
}
.hero .btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0A0A0A;
}
.hero-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 600; font-size: var(--text-md);
  color: color-mix(in srgb, var(--text) 86%, transparent);
}
.hero-phone .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--good) 25%, transparent);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--good) 25%, transparent); }
  50%     { box-shadow: 0 0 0 8px color-mix(in srgb, var(--good) 0%, transparent); }
}

/* Mobile cinematic stage — hidden by default, enabled in <=720px media query. */
.hero-stage { display: none; }

.hero-proof {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-2) 72%, transparent), var(--bg));
}
.hero-proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.hero-stat {
  background: var(--surface);
  padding: clamp(18px, 2.4vw, 26px);
  display: flex; flex-direction: column; gap: 6px;
}
.hero-stat strong {
  font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400; letter-spacing: -.03em; line-height: 1;
}
.hero-stat span { color: var(--text-mute); font-size: 13px; line-height: 1.4; }

.hero-ticker {
  margin-top: clamp(40px, 5vw, 56px);
  position: relative; overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 14px;
  display: flex; gap: 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.hero-ticker-track {
  display: inline-flex; gap: 48px; flex-shrink: 0;
  animation: ticker 40s linear infinite;
}
.hero-ticker-track span {
  font-family: var(--font-ui); font-weight: 600; font-size: 12px;
  letter-spacing: .22em; color: var(--text-mute); white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ---------- Service area ------------------------------------------------ */
.service-area {
  padding-block: clamp(56px, 7vw, 96px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 78% 28%, rgba(201,205,210,.08), transparent 58%),
    var(--bg);
}
.service-area-inner {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.service-area .lead {
  margin-bottom: 24px;
}
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ---------- Quote widget ----------------------------------------------- */
.quote-widget { padding-block: clamp(60px, 8vw, 120px); }
.quote-widget-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.quote-widget-copy h2 { margin-block: 16px 16px; }
.quote-widget-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow);
}
.quote-widget-options {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 16px;
}
.quote-widget-options-compact { max-width: max-content; }
.quote-option {
  padding: 10px 16px; border-radius: 999px;
  font-family: var(--font-ui); font-weight: 600; font-size: 13px;
  color: var(--text-mute);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.quote-option:hover { color: var(--text); }
.quote-option.is-active { background: var(--accent); color: #0A0A0A; }

.quote-widget-result {
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line);
}
.quote-widget-label {
  font-family: var(--font-ui); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--text-faint);
  margin-bottom: 8px;
}
#quoteWidgetTitle { font-family: var(--font-ui); font-size: var(--text-xl); font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
#quoteWidgetSummary { color: var(--text-mute); margin-bottom: 20px; }
.quote-widget-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.quote-widget-facts dt {
  font-family: var(--font-ui); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 4px;
}
.quote-widget-facts dd { font-size: 14px; color: var(--text); }
.quote-widget-facts a { color: var(--accent); border-bottom: 1px solid var(--accent); }

/* ---------- Manifesto --------------------------------------------------- */
.manifesto {
  padding-block: clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,205,210,.06), transparent 60%),
    var(--bg);
}
.manifesto-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.manifesto-eyebrow { margin-bottom: 24px; }
.manifesto p { color: var(--text-mute); font-size: clamp(16px, 1.6vw, 19px); margin-bottom: 16px; max-width: 60ch; }
.manifesto-signature {
  font-family: var(--font-ui); font-weight: 600;
  color: var(--text); margin-top: 24px !important;
  padding-top: 24px; border-top: 1px solid var(--line); font-size: 14px;
}

/* ---------- Section heads ---------------------------------------------- */
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px);
  margin-bottom: clamp(40px, 6vw, 64px);
  align-items: end;
}
.section-head .lead { padding-top: 8px; }

/* ---------- Services ---------------------------------------------------- */
.services { padding-block: clamp(80px, 10vw, 140px); border-top: 1px solid var(--line); }
.service-list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 80px 1.4fr 2fr 100px;
  gap: 24px; align-items: center;
  padding-block: clamp(20px, 2.4vw, 28px);
  border-top: 1px solid var(--line);
  transition: background .25s var(--ease), padding-inline .25s var(--ease);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row:hover {
  background: linear-gradient(90deg, var(--accent-soft) 0%, transparent 60%);
  padding-inline: 16px;
}
.service-num {
  font-family: var(--font-ui); font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--text-faint);
}
.service-name { font-family: var(--font-display); font-size: clamp(24px, 2.8vw, 36px); font-weight: 400; letter-spacing: -.025em; }
.service-desc { color: var(--text-mute); font-size: var(--text-md); }
.service-link {
  font-family: var(--font-ui); font-weight: 600; font-size: 13px;
  color: var(--gold); justify-self: end;
  display: inline-flex; align-items: center; gap: 8px;
}
.service-link .arrow { transition: transform .25s var(--ease); }
.service-row:hover .service-link .arrow { transform: translateX(4px); }

/* ---------- Process ----------------------------------------------------- */
.process { padding-block: clamp(80px, 10vw, 140px); border-top: 1px solid var(--line); background: var(--bg-2); }
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden;
}
.process-step { background: var(--surface); padding: clamp(28px, 3vw, 40px); }
.process-num {
  font-family: var(--font-ui); font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 16px;
}
.process-step h3 { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 32px); font-weight: 400; letter-spacing: -.025em; margin-bottom: 12px; }
.process-step p { color: var(--text-mute); }

.process-foot {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.process-fact {
  padding: 20px; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface);
}
.process-fact .eyebrow { margin-bottom: 8px; }
.process-fact strong { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 400; letter-spacing: -.02em; display: block; }

/* ---------- Work -------------------------------------------------------- */
.work { padding-block: clamp(80px, 10vw, 140px); border-top: 1px solid var(--line); }
.work-stack { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 80px); }
.work-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.work-item.reverse .work-media { order: 2; }
.work-media {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
}
.work-media svg { width: 100%; height: 100%; }
.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}
.work-media-photo::before {
  background:
    linear-gradient(115deg, transparent 0 47%, rgba(242,241,238,.14) 47.08%, transparent 47.38%),
    linear-gradient(180deg, rgba(7,7,7,.10) 0%, transparent 42%, rgba(7,7,7,.28) 100%);
}
.work-media-shop img {
  object-position: 44% 50%;
}
.work-media-interior img {
  object-position: 50% 58%;
}
.work-text .eyebrow { margin-bottom: 16px; }
.work-text h3 { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 44px); font-weight: 400; letter-spacing: -.03em; line-height: .98; margin-bottom: 16px; }
.work-text p { color: var(--text-mute); font-size: var(--text-lg); max-width: 56ch; }

/* ---------- Photo checklist -------------------------------------------- */
.photo-checklist {
  padding-block: clamp(80px, 10vw, 140px); border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.photo-checklist-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.photo-checklist-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow);
}
.photo-checklist-tabs {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 6px; background: var(--bg); border: 1px solid var(--line);
  border-radius: 999px; margin-bottom: 20px;
}
.photo-checklist-tab {
  padding: 10px 16px; border-radius: 999px;
  font-family: var(--font-ui); font-weight: 600; font-size: 13px;
  color: var(--text-mute);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.photo-checklist-tab:hover { color: var(--text); }
.photo-checklist-tab.is-active { background: var(--accent); color: #0A0A0A; }
.photo-checklist-label {
  font-family: var(--font-ui); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px;
}
#photoChecklistTitle { color: var(--text); }
#photoChecklistSummary { color: var(--text-mute); margin-bottom: 20px; }
.photo-checklist-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.photo-checklist-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r);
  font-size: 14px; color: var(--text);
}
.photo-checklist-list li::before {
  content: ""; flex: 0 0 16px; width: 16px; height: 16px; border-radius: 50%;
  background:
    radial-gradient(circle, var(--accent) 0 5px, transparent 6px),
    color-mix(in srgb, var(--accent) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}
.photo-checklist-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.photo-checklist-link { font-family: var(--font-ui); font-weight: 600; color: var(--text-mute); border-bottom: 1px solid var(--line-2); padding-bottom: 2px; }
.photo-checklist-link:hover { color: var(--text); }

/* ---------- Trust strip ------------------------------------------------- */
.trust-strip { padding-block: clamp(60px, 8vw, 100px); border-top: 1px solid var(--line); }
.trust-strip-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.trust-strip-points { display: grid; gap: 24px; }
.trust-point {
  padding: 20px; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface);
}
.trust-point .eyebrow { margin-bottom: 12px; }
.trust-point h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--text-xl); margin-bottom: 8px; letter-spacing: -.02em; }
.trust-point p { color: var(--text-mute); font-size: 15px; }
.trust-strip-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.trust-strip-status {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-mute); margin-top: 8px;
}
.trust-strip-status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--good) 25%, transparent);
}
.trust-strip-status.is-offhours .trust-strip-status-dot { background: var(--gold); box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 25%, transparent); }

/* ---------- Final CTA --------------------------------------------------- */
.final-cta { padding-block: clamp(80px, 10vw, 140px); border-top: 1px solid var(--line); background: var(--bg-2); }
.final-cta-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.final-cta-right p { color: var(--text-mute); font-size: var(--text-lg); margin-bottom: 24px; max-width: 50ch; }
.cta-inline-link { color: var(--gold); border-bottom: 1px solid var(--gold); }

/* ---------- FAQ --------------------------------------------------------- */
.faq-section { padding-block: clamp(80px, 10vw, 140px); border-top: 1px solid var(--line); }
.faq-accordion { display: flex; flex-direction: column; }
.faq-accordion details {
  border-top: 1px solid var(--line);
  padding-block: 20px;
  transition: background .25s var(--ease);
}
.faq-accordion details:last-child { border-bottom: 1px solid var(--line); }
.faq-accordion summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: -.02em;
  cursor: pointer; list-style: none;
  padding: 8px 0;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::after {
  content: "+"; flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line-2); display: grid; place-items: center;
  font-size: 16px; color: var(--text-mute);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.faq-accordion details[open] summary::after { content: "−"; background: var(--accent); border-color: var(--accent); color: #0A0A0A; transform: rotate(180deg); }
.faq-accordion details p { color: var(--text-mute); margin-top: 12px; max-width: 70ch; padding-right: 44px; }

/* ---------- Mobile sticky CTA ------------------------------------------ */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 12px;
  gap: 8px;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-cta-button {
  flex: 1;
  text-align: center;
  padding: 14px 12px;
  border-radius: 999px;
  font-family: var(--font-ui); font-weight: 600; font-size: 14px;
  border: 1px solid var(--line-2); color: var(--text);
}
.mobile-cta-button.is-solid { background: var(--accent); color: #0A0A0A; border-color: var(--accent); }

/* ---------- Footer ------------------------------------------------------ */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(40px, 5vw, 64px) 24px;
  background: var(--bg-2);
}
.footer-content {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 32px;
}
.footer-brand {
  font-family: var(--font-display); font-weight: 400; font-size: 28px;
  letter-spacing: -.025em; margin-bottom: 8px;
}
.footer-tagline { color: var(--text-mute); font-size: 14px; max-width: 38ch; }
.footer-column h4 {
  font-family: var(--font-ui); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 12px;
}
.footer-column p { font-size: 14px; color: var(--text-mute); margin-bottom: 6px; }
.footer-column a { color: var(--text); transition: color .2s var(--ease); border-bottom: 1px solid transparent; }
.footer-column a:hover { color: var(--accent); border-color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--text-faint);
}

/* ---------- Sub-page (services / about / contact) ---------------------- */
.page-hero {
  padding-block: clamp(80px, 10vw, 140px) clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,205,210,.08), transparent 60%),
    var(--bg);
}
.page-hero h1 { margin-block: 16px 16px; }
.page-hero p { color: var(--text-mute); max-width: 60ch; font-size: var(--text-lg); }

.service-detail {
  padding-block: clamp(60px, 8vw, 100px); border-top: 1px solid var(--line);
}
.service-detail:first-of-type { border-top: 0; }
.service-detail-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.service-detail-eyebrow { margin-bottom: 16px; }
.service-detail h2 { margin-block: 0 16px; }
.service-detail .lead { margin-bottom: 24px; }
.service-detail ul { display: flex; flex-direction: column; gap: 8px; }
.service-detail ul li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface); font-size: 14px;
}
.service-detail ul li::before {
  content: ""; flex: 0 0 8px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); margin-top: 7px;
}
.service-visual {
  aspect-ratio: 4/3; border-radius: var(--r-lg);
  border: 1px solid var(--line); background: var(--surface);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.service-visual svg { width: 100%; height: 100%; }
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(1.04) contrast(1.08) brightness(.96);
}
.service-visual-pdr img {
  object-position: 50% 46%;
}
.service-visual-correction img {
  object-position: 50% 48%;
}
.service-visual-ceramic,
.service-visual-interior {
  aspect-ratio: 3/4;
}
.service-visual-tint {
  aspect-ratio: 2/3;
}
.service-visual-ceramic img {
  object-position: 52% 60%;
}
.service-visual-tint img {
  object-position: 50% 68%;
}
.service-visual-interior img {
  object-position: 50% 55%;
}

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; padding-block: clamp(60px, 8vw, 100px); border-top: 1px solid var(--line); }
.about-grid p { color: var(--text-mute); font-size: var(--text-lg); margin-bottom: 16px; max-width: 60ch; }
.about-photo-section { padding-bottom: clamp(60px, 8vw, 100px); }
.about-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--r-lg);
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  background: var(--surface);
  box-shadow: 0 44px 100px -60px rgba(0,0,0,.95), inset 0 1px 0 rgba(255,255,255,.07);
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(242,241,238,.14) 48.08%, transparent 48.38%),
    linear-gradient(180deg, rgba(7,7,7,.04) 0%, transparent 44%, rgba(7,7,7,.30) 100%);
  mix-blend-mode: screen;
}
.about-photo img {
  width: 100%;
  height: min(62vw, 620px);
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(1.02) contrast(1.05);
}
.about-photo figcaption {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 2;
  max-width: 48ch;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.35;
  letter-spacing: -.01em;
  text-shadow: 0 2px 18px rgba(0,0,0,.8);
}
.about-stats { padding-block: clamp(60px, 8vw, 100px); border-top: 1px solid var(--line); background: var(--bg-2); }
.about-stat-group + .about-stat-group { margin-top: clamp(28px, 4vw, 44px); }
.about-stat-group > .eyebrow { display: inline-block; margin-bottom: 14px; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.about-stats-grid-three { grid-template-columns: repeat(3, 1fr); }
.about-stat { background: var(--surface); padding: 28px; }
.about-stat strong { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; letter-spacing: -.02em; display: block; margin-bottom: 6px; }
.about-stat span { color: var(--text-mute); font-size: 13px; }

/* Contact */
.contact-layout {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(60px, 8vw, 100px); border-top: 1px solid var(--line);
}
.contact-form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow);
}
.contact-form h2 { margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-family: var(--font-display); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--text);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 12px 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-foot { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--text-faint); }

.contact-side { display: flex; flex-direction: column; gap: 24px; }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.contact-card .eyebrow { margin-bottom: 12px; }
.contact-card h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; letter-spacing: -.01em; margin-bottom: 12px; }
.contact-card p { color: var(--text-mute); font-size: 14px; margin-bottom: 6px; }
.contact-card a { color: var(--text); border-bottom: 1px solid var(--line-2); }
.contact-card a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Luxury chrome / red system continuation --------------------- */
.quote-widget,
.services,
.process,
.photo-checklist,
.trust-strip,
.final-cta,
.faq-section,
.page-hero,
.contact-layout,
.about-stats,
.site-footer {
  position: relative;
  overflow: hidden;
}

.quote-widget::before,
.services::before,
.process::before,
.photo-checklist::before,
.trust-strip::before,
.final-cta::before,
.faq-section::before,
.page-hero::before,
.contact-layout::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 84% 12%, var(--red-soft), transparent 42%),
    radial-gradient(ellipse at 18% 88%, rgba(201,205,210,.085), transparent 52%),
    linear-gradient(115deg, transparent 0 54%, rgba(242,241,238,.055) 54.12%, transparent 54.45%);
  opacity: .86;
}

.quote-widget > *,
.services > *,
.process > *,
.photo-checklist > *,
.trust-strip > *,
.final-cta > *,
.faq-section > *,
.page-hero > *,
.contact-layout > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.page-hero {
  isolation: isolate;
  background:
    radial-gradient(ellipse at 78% 24%, rgba(201,205,210,.16), transparent 42%),
    radial-gradient(ellipse at 88% 14%, rgba(143,29,36,.22), transparent 34%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.page-hero .eyebrow,
.service-detail-eyebrow,
.contact-card .eyebrow,
.trust-point .eyebrow,
.process-fact .eyebrow {
  border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
  background: rgba(242,241,238,.035);
  color: color-mix(in srgb, var(--accent) 72%, var(--text));
}

.quote-widget-card,
.photo-checklist-card,
.contact-form,
.contact-card,
.trust-point,
.process-step,
.process-fact,
.about-stat {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 90%, transparent), color-mix(in srgb, var(--bg) 84%, transparent)),
    radial-gradient(ellipse at 88% 0%, rgba(201,205,210,.08), transparent 48%);
  border-color: color-mix(in srgb, var(--accent) 22%, var(--line));
  box-shadow:
    0 34px 90px -56px rgba(0,0,0,.92),
    inset 0 1px 0 rgba(255,255,255,.055);
}

.quote-widget-card::before,
.photo-checklist-card::before,
.contact-form::before,
.contact-card::before,
.trust-point::before,
.process-step::before,
.process-fact::before,
.about-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 64%, rgba(242,241,238,.105) 64.1%, transparent 64.5%),
    radial-gradient(ellipse at 100% 0%, rgba(143,29,36,.115), transparent 42%);
  opacity: .9;
}

.quote-widget-card > *,
.photo-checklist-card > *,
.contact-form > *,
.contact-card > *,
.trust-point > *,
.process-step > *,
.process-fact > *,
.about-stat > * {
  position: relative;
  z-index: 1;
}

.quote-option.is-active,
.photo-checklist-tab.is-active,
.faq-accordion details[open] summary::after,
.mobile-cta-button.is-solid {
  background: var(--chrome);
  color: #0A0A0A;
  border-color: color-mix(in srgb, var(--chrome) 78%, var(--accent));
  box-shadow: 0 12px 28px -20px rgba(242,241,238,.75);
}

.service-row {
  border-color: color-mix(in srgb, var(--accent) 14%, var(--line));
}

.service-row:hover {
  background:
    linear-gradient(90deg, rgba(143,29,36,.13) 0%, rgba(201,205,210,.07) 36%, transparent 78%);
}

.service-row:hover .service-num,
.service-row:hover .service-link {
  color: var(--chrome);
}

.service-detail {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 88% 24%, rgba(143,29,36,.09), transparent 42%),
    linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--bg-2) 72%, var(--bg)) 100%);
}

.service-detail:nth-of-type(even) {
  background:
    radial-gradient(ellipse at 12% 22%, rgba(201,205,210,.07), transparent 46%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

.service-detail ul li {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 88%, transparent), color-mix(in srgb, var(--bg) 82%, transparent));
  border-color: color-mix(in srgb, var(--accent) 18%, var(--line));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.service-detail ul li::before {
  background: var(--red-2);
  box-shadow:
    0 0 0 4px rgba(143,29,36,.16),
    0 0 22px rgba(200,59,64,.28);
}

.service-visual,
.work-media {
  border-color: color-mix(in srgb, var(--accent) 24%, var(--line));
  background:
    radial-gradient(ellipse at 62% 42%, rgba(242,241,238,.12), transparent 34%),
    radial-gradient(ellipse at 82% 18%, rgba(143,29,36,.22), transparent 46%),
    linear-gradient(145deg, #161616, #080808);
  box-shadow:
    0 44px 100px -60px rgba(0,0,0,.95),
    inset 0 1px 0 rgba(255,255,255,.07);
}

.service-visual::before,
.work-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(115deg, transparent 0 45%, rgba(242,241,238,.18) 45.08%, transparent 45.45%),
    linear-gradient(115deg, transparent 0 62%, rgba(201,205,210,.12) 62.08%, transparent 62.42%),
    radial-gradient(ellipse at 60% 42%, transparent 0 42%, rgba(255,255,255,.10) 43%, transparent 62%);
  mix-blend-mode: screen;
}

.service-visual::after,
.work-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,205,210,.105);
  pointer-events: none;
  z-index: 2;
}

.service-visual svg,
.work-media svg {
  width: 100%;
  height: 100%;
  filter: saturate(1.08) contrast(1.16) brightness(.96);
}

.service-visual svg [stroke="#C9CDD2"],
.service-visual svg [fill="#C9CDD2"],
.work-media svg [stroke="#C9CDD2"],
.work-media svg [fill="#C9CDD2"] {
  filter: drop-shadow(0 0 14px rgba(242,241,238,.20));
}

.contact-card:first-child {
  border-color: color-mix(in srgb, var(--red-2) 40%, var(--accent));
  background:
    radial-gradient(ellipse at 100% 0%, rgba(200,59,64,.21), transparent 48%),
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 88%, transparent), rgba(10,10,10,.94));
}

.contact-card:first-child h3 {
  color: var(--chrome);
  text-shadow: 0 0 28px rgba(242,241,238,.14);
}

.field input,
.field select,
.field textarea {
  border-color: color-mix(in srgb, var(--accent) 18%, var(--line));
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--bg) 94%, transparent), color-mix(in srgb, var(--surface) 36%, var(--bg)));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: color-mix(in srgb, var(--red-2) 62%, var(--accent));
  box-shadow:
    0 0 0 4px rgba(143,29,36,.16),
    inset 0 1px 0 rgba(255,255,255,.055);
}

.final-cta {
  background:
    radial-gradient(ellipse at 82% 18%, rgba(143,29,36,.18), transparent 42%),
    radial-gradient(ellipse at 18% 86%, rgba(201,205,210,.10), transparent 52%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

.final-cta .btn-primary,
.contact-form .btn-primary,
.contact-card .btn-primary {
  background: var(--chrome);
  color: #0A0A0A;
  border-color: color-mix(in srgb, var(--chrome) 72%, var(--accent));
  box-shadow: 0 20px 44px -28px rgba(242,241,238,.72);
}

.final-cta .btn-primary:hover,
.contact-form .btn-primary:hover,
.contact-card .btn-primary:hover {
  background: var(--red);
  border-color: var(--red-2);
  color: var(--chrome);
}

.site-footer {
  background:
    radial-gradient(ellipse at 84% 10%, rgba(143,29,36,.15), transparent 42%),
    radial-gradient(ellipse at 14% 100%, rgba(201,205,210,.08), transparent 50%),
    var(--bg-2);
}

.footer-brand {
  color: var(--chrome);
  text-shadow: 0 0 34px rgba(242,241,238,.12);
}

/* ---------- Responsive ------------------------------------------------- */
@media (max-width: 960px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
  }
  .hero-media { inset: 0; opacity: .46; }
  .hero-video { object-fit: cover; object-position: 58% 50%; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-proof-inner { grid-template-columns: repeat(2, 1fr); }
  .quote-widget-inner,
  .service-area-inner,
  .photo-checklist-inner,
  .manifesto-inner,
  .section-head,
  .work-item,
  .work-item.reverse .work-media,
  .final-cta-inner,
  .trust-strip-inner,
  .service-detail-inner,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .work-item.reverse .work-media { order: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-foot { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 60px 1fr; grid-template-areas: "num name" "num desc" ". link"; gap: 6px 16px; }
  .service-num { grid-area: num; }
  .service-name { grid-area: name; }
  .service-desc { grid-area: desc; }
  .service-link { grid-area: link; justify-self: start; margin-top: 8px; }
}

/* Mobile nav drawer + condensed header — kicks in below tablet-portrait */
@media (max-width: 860px) {
  .navbar { gap: 12px; padding-block: 12px; }
  .brand-mark { width: 44px; height: 44px; flex-basis: 44px; border-radius: 12px; }
  .brand-main { font-size: 20px; }
  .brand-sub  { font-size: 9px; letter-spacing: .2em; margin-top: 5px; }
  .menu-toggle { display: grid; margin-left: auto; }
  .nav-cta { display: none; }
  .theme-toggle { width: 38px; height: 38px; }

  /* Drawer panel — full width, sits beneath the sticky header */
  .nav-links {
    position: fixed;
    top: 72px; left: 12px; right: 12px;
    flex-direction: column; gap: 0;
    padding: 8px 18px 14px;
    border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
    border-radius: 18px;
    background-color: #0E0E0E;
    background-image:
      linear-gradient(160deg, rgba(255,255,255,.04), rgba(0,0,0,0) 60%),
      radial-gradient(120% 70% at 50% 0%, rgba(201,205,210,.08), transparent 60%);
    box-shadow:
      0 30px 60px -20px rgba(0,0,0,.95),
      inset 0 1px 0 rgba(255,255,255,.06);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
    pointer-events: none;
    visibility: hidden;
    z-index: 90;
    max-height: calc(100svh - 92px);
    overflow-y: auto;
    margin: 0;
  }
  .theme-light .nav-links {
    background-color: #FFFFFF;
    background-image:
      linear-gradient(160deg, rgba(0,0,0,.02), rgba(0,0,0,0) 60%);
    border-color: color-mix(in srgb, var(--accent) 32%, transparent);
  }
  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav-links li { border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a {
    padding: 16px 4px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .nav-links a::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
    flex: 0 0 6px;
  }
  .nav-links a.active { color: var(--text); }
  .nav-links a.active::after { display: none; }
  .nav-links a.active::before {
    background: var(--accent);
    border-color: var(--accent);
  }
  .menu-toggle[aria-expanded="true"] {
    background: color-mix(in srgb, var(--accent) 16%, transparent);
    border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  }
}

@media (max-width: 720px) {
  body { padding-bottom: 92px; } /* room for sticky mobile CTA */
  .mobile-cta { display: flex; }
  .footer-content { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-proof-inner { grid-template-columns: 1fr 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }

  /* Hero — split into a cinematic media stage above a compact glass quote card.
     Background video/poster gets to breathe; copy card no longer dominates. */
  .hero {
    padding-top: 14px;
    padding-bottom: 28px;
    min-height: auto;
    display: block;
  }
  /* Suppress full-bleed background media on mobile — the stage handles imagery */
  .hero-media { display: none; }

  .hero-stage {
    display: block;
    position: relative;
    width: calc(100% - 24px);
    margin: 0 12px 18px;
    aspect-ratio: 16 / 11;
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid color-mix(in srgb, var(--chrome) 28%, transparent);
    box-shadow:
      0 22px 50px -22px rgba(0,0,0,.85),
      inset 0 1px 0 rgba(255,255,255,.06);
    background: #0A0A0A;
  }
  .hero-stage-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 58% 50%;
    filter: saturate(1.12) contrast(1.18) brightness(.92);
    z-index: 0;
  }
  .hero-stage-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
      radial-gradient(ellipse at 50% 38%, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 78%),
      linear-gradient(180deg, rgba(7,7,7,.15) 0%, rgba(7,7,7,.05) 40%, rgba(7,7,7,.82) 100%),
      linear-gradient(115deg, transparent 0%, transparent 50%, rgba(201,205,210,.10) 50.05%, transparent 50.35%);
  }
  .hero-inner {
    gap: 18px;
    padding-inline: 16px;
  }
  .hero-copy {
    width: 100%;
    padding: 20px 18px 20px;
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--chrome) 24%, transparent);
    background:
      linear-gradient(160deg, rgba(18,18,18,.62), rgba(10,10,10,.48));
    box-shadow:
      0 20px 50px -28px rgba(0,0,0,.75),
      inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter: blur(14px) saturate(112%);
    -webkit-backdrop-filter: blur(14px) saturate(112%);
  }
  .hero-copy::before { display: none; } /* drop the inner decorative frame */
  .hero-eyebrow {
    margin-bottom: 10px;
    font-size: 9.5px;
    letter-spacing: .2em;
    padding: 4px 9px;
  }
  .hero-copy h1 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: .96;
    letter-spacing: -.025em;
    margin-block: 0 10px;
    max-width: 14ch;
  }
  .hero-copy h1 .pause { display: inline; }
  .hero-sub {
    font-size: 14.5px;
    line-height: 1.5;
    margin-bottom: 14px;
    max-width: none;
    color: color-mix(in srgb, var(--text) 78%, transparent);
  }

  /* Proof badges — compact horizontal scroller that lives below the CTAs */
  .hero-proof-line {
    order: 3;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    margin: 14px -18px 0;
    padding: 2px 18px 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .hero-proof-line::-webkit-scrollbar { display: none; }
  .hero-proof-line span {
    flex: 0 0 auto;
    font-size: 9.5px;
    min-height: 24px;
    padding: 4px 9px;
    letter-spacing: .08em;
    border-color: color-mix(in srgb, var(--chrome) 22%, transparent);
    color: color-mix(in srgb, var(--text) 78%, transparent);
  }

  .hero-copy { display: flex; flex-direction: column; }
  .hero-eyebrow { order: 0; }
  .hero-copy h1 { order: 1; }
  .hero-sub { order: 2; }
  .hero-ctas { order: 4; }

  .hero-ctas {
    gap: 10px;
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 0;
  }
  .hero .btn-primary {
    flex: 1 1 auto;
    justify-content: center;
    padding: 12px 14px;
    font-size: 14px;
  }
  .hero-phone {
    justify-content: center;
    flex: 0 0 auto;
    font-size: 13px;
    padding: 10px 12px;
    border: 1px solid color-mix(in srgb, var(--chrome) 24%, transparent);
    border-radius: 999px;
    background: rgba(255,255,255,.03);
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .brand-sub { display: none; }
  .hero-stage { aspect-ratio: 16 / 12; }
  .hero-copy { padding: 18px 16px 18px; }
  .hero-copy h1 { font-size: clamp(28px, 9vw, 36px); }
  .hero-proof-line span { font-size: 9px; letter-spacing: .06em; }
  .hero-ctas { gap: 8px; }
  .hero .btn-primary { font-size: 13.5px; padding: 11px 12px; }
  .hero-phone { font-size: 12.5px; padding: 9px 10px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-ticker-track { animation: none !important; }
}
:root {
/* Vercel production author fix 2026-05-20T12:59:45Z */
