@charset "UTF-8";
/* =========================================================================
   ProValets Wirral — design system
   Direction: dark automotive premium. Gunmetal field, signal-orange accent,
   condensed industrial display type, editorial (non-card-grid) composition.
   ========================================================================= */

/* ------------------------------------------------------------------ tokens */
:root {
  /* field */
  --ink:        #08090B;
  --ink-2:      #0C0E11;
  --surface:    #13161B;
  --surface-2:  #1A1E25;
  --surface-3:  #222731;
  --line:       #262B34;
  --line-2:     #363D49;

  /* type */
  --text:       #F4F6F8;
  --text-2:     #A6AEBA;
  --text-3:     #6B7480;

  /* accent — signal orange. Every competitor uses corporate blue. */
  --acc:        #FF4D1C;
  --acc-2:      #FF7A45;
  --acc-deep:   #C2350F;
  --acc-ink:    #0A0B0D;
  --acc-glow:   rgba(255, 77, 28, .32);

  --gold:       #E8C87A;
  --good:       #34D77E;

  /* type families */
  --f-display: 'Archivo', 'Arial Narrow', sans-serif;
  --f-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* scale */
  --t-hero: clamp(3.2rem, 1.4rem + 8.2vw, 9.5rem);
  --t-page: clamp(2.4rem, 1.5rem + 4.2vw, 5.2rem);
  --t-sec:  clamp(1.9rem, 1.35rem + 2.6vw, 3.6rem);
  --t-h3:   clamp(1.15rem, 1rem + .7vw, 1.6rem);
  --t-lead: clamp(1.02rem, .96rem + .42vw, 1.28rem);
  /* Floor is 1rem: 16px stops iOS auto-zooming when a field takes focus. */
  --t-body: clamp(1rem, .96rem + .18vw, 1.06rem);
  --t-sm:   .875rem;
  --t-xs:   .75rem;
  /* Smallest permitted label size. Never let uppercase micro-labels go below
     11px on small screens, where 10px becomes genuinely hard to read. */
  --t-label: .68rem;

  /* rhythm */
  --sp-sec: clamp(4.5rem, 3rem + 6.5vw, 9.5rem);
  --wrap:   1280px;
  --gut:    clamp(1.15rem, .7rem + 2vw, 3rem);

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

  --sh-1: 0 1px 2px rgba(0,0,0,.5);
  --sh-2: 0 14px 40px -12px rgba(0,0,0,.8);
  --sh-3: 0 40px 90px -28px rgba(0,0,0,.92);
  --sh-acc: 0 14px 44px -14px var(--acc-glow);

  --e:      cubic-bezier(.22,1,.36,1);
  --e-io:   cubic-bezier(.65,0,.35,1);
  --d-fast: .16s;
  --d:      .34s;
  --d-slow: .7s;
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--f-body);
  font-size: var(--t-body);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* clip is preferred over hidden: it prevents sideways scroll without creating
     a scroll container, which keeps position:sticky on the header reliable.
     Falls back to the hidden above where clip is unsupported. */
  overflow-x: clip;
  /* fine film-grain so large dark fields never band */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.028'/%3E%3C/svg%3E");
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
address { font-style: normal; }
table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
::selection { background: var(--acc); color: var(--acc-ink); }

.vh {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; top: -100px; left: 1rem; z-index: 200;
  background: var(--acc); color: var(--acc-ink);
  padding: .8rem 1.3rem; border-radius: 0 0 var(--r) var(--r);
  font-weight: 700; transition: top var(--d) var(--e);
}
.skip:focus { top: 0; }

/* ---------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 780px; }
.sec { padding-block: var(--sp-sec); position: relative; }

/* ------------------------------------------------------------ typography */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.h-hero {
  font-size: var(--t-hero);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .82;
  text-transform: uppercase;
}
.h-hero span { display: block; }
.h-hero .accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--acc);
  paint-order: stroke fill;
}
.h-page { font-size: var(--t-page); font-weight: 900; letter-spacing: -.038em; text-transform: uppercase; }
.h-sec  { font-size: var(--t-sec); letter-spacing: -.03em; }
.accent { color: var(--acc); }

.eyebrow {
  font-family: var(--f-display);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--acc);
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: var(--acc); flex: none;
}
.sec-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4.5rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.lead, .phero-lead, .hero-lead {
  font-size: var(--t-lead);
  color: var(--text-2);
  line-height: 1.6;
  max-width: 60ch;
  margin-top: 1.4rem;
  text-wrap: pretty;
}
.sec-head.center .lead { margin-inline: auto; }
.sec-more { margin-top: 3rem; text-align: center; }

/* -------------------------------------------------------------- buttons */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-bd: var(--line-2);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  padding: .82rem 1.5rem;
  border-radius: 100px;
  font-family: var(--f-display);
  font-weight: 700; font-size: .875rem;
  letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  position: relative; overflow: hidden;
  transition: transform var(--d-fast) var(--e), border-color var(--d) var(--e),
              background-color var(--d) var(--e), color var(--d) var(--e), box-shadow var(--d) var(--e);
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.22) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform .75s var(--e);
}
.btn:hover::after { transform: translateX(130%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-solid  { --btn-bg: var(--acc); --btn-fg: var(--acc-ink); --btn-bd: var(--acc); box-shadow: var(--sh-acc); }
.btn-solid:hover { --btn-bg: var(--acc-2); --btn-bd: var(--acc-2); }
.btn-ghost  { --btn-bg: rgba(255,255,255,.03); }
.btn-ghost:hover { --btn-bd: var(--acc); --btn-fg: var(--acc); }
.btn-outline { --btn-bd: rgba(10,11,13,.35); --btn-fg: var(--acc-ink); }
.btn-outline:hover { --btn-bg: var(--acc-ink); --btn-fg: var(--text); --btn-bd: var(--acc-ink); }
.btn-lg { padding: 1.05rem 1.9rem; font-size: .95rem; }
.btn-block { display: flex; width: 100%; }
.btn-ico { font-size: 1.05em; }

/* ------------------------------------------------------------ atmosphere */
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.glow {
  position: absolute; border-radius: 50%;
  filter: blur(110px); opacity: .5;
}
.glow-a {
  width: min(58vw, 700px); aspect-ratio: 1;
  background: radial-gradient(circle, var(--acc-glow), transparent 68%);
  top: -22%; right: -14%;
}
.glow-b {
  width: min(46vw, 540px); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(90,130,255,.16), transparent 68%);
  bottom: -28%; left: -12%;
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 20%, transparent 75%);
}

/* ---------------------------------------------------------------- header */
.site-head {
  position: sticky; top: 0; z-index: 100;
  transition: background-color var(--d) var(--e), border-color var(--d) var(--e), backdrop-filter var(--d);
  border-bottom: 1px solid transparent;
}
.site-head.is-stuck {
  background: rgba(8,9,11,.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
}
.head-in { display: flex; align-items: center; gap: 1.5rem; height: 76px; }

.brand { display: flex; align-items: center; gap: .68rem; flex: none; }
.brand-mark { display: flex; gap: 3px; align-items: flex-end; height: 26px; }
.brand-mark i {
  display: block; width: 4px; border-radius: 2px; background: var(--acc);
  transition: height var(--d) var(--e);
}
.brand-mark i:nth-child(1) { height: 12px; }
.brand-mark i:nth-child(2) { height: 20px; opacity: .72; }
.brand-mark i:nth-child(3) { height: 26px; opacity: .44; }
.brand:hover .brand-mark i:nth-child(1) { height: 26px; }
.brand:hover .brand-mark i:nth-child(3) { height: 12px; }
.brand-txt {
  font-family: var(--f-display); font-weight: 800; font-size: 1.22rem;
  letter-spacing: -.03em; text-transform: uppercase; line-height: 1;
}
.brand-txt strong { color: var(--acc); font-weight: 900; }
.brand-txt em {
  display: block; font-style: normal; font-size: .5rem;
  letter-spacing: .34em; color: var(--text-3); font-weight: 600; margin-top: 3px;
}

.nav { margin-left: auto; }
.nav ul { display: flex; gap: .35rem; }
.nav a {
  display: block; padding: .5rem .85rem; border-radius: 100px;
  font-size: .885rem; font-weight: 600; color: var(--text-2);
  transition: color var(--d-fast) var(--e), background-color var(--d-fast) var(--e);
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav a[aria-current='page'] { color: var(--acc); }

.head-cta { display: flex; gap: .55rem; flex: none; }
.head-cta .btn { padding: .62rem 1.1rem; font-size: .8rem; }

.burger {
  display: none; background: none; border: 1px solid var(--line-2);
  width: 46px; height: 46px; border-radius: var(--r-sm);
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  margin-left: auto; cursor: pointer;
}
.burger span {
  display: block; width: 19px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform var(--d) var(--e), opacity var(--d-fast) var(--e);
}
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mnav {
  background: var(--ink-2); border-top: 1px solid var(--line);
  padding: 1.2rem var(--gut) 2rem;
}
.mnav[hidden] { display: none; }
.mnav ul { display: grid; gap: .15rem; margin-bottom: 1.4rem; }
.mnav a {
  display: block; padding: .95rem .3rem;
  font-family: var(--f-display); font-size: 1.35rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.02em;
  border-bottom: 1px solid var(--line);
}
.mnav a[aria-current='page'] { color: var(--acc); }
.mnav-cta { display: grid; gap: .6rem; }
.mnav-cta .btn { display: flex; }

/* ------------------------------------------------------------------ hero */
.hero { position: relative; overflow: hidden; padding-top: clamp(2.5rem, 1rem + 5vw, 5rem); }
.hero-in {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
  padding-bottom: clamp(3.5rem, 2rem + 5vw, 7rem);
}
.hero-lead { margin-top: 1.9rem; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.4rem; }
.hero-trust {
  margin-top: 2.6rem; padding-top: 1.7rem;
  border-top: 1px solid var(--line);
}
.trust-rating { display: flex; align-items: center; gap: .7rem; font-size: .95rem; flex-wrap: wrap; }
.trust-rating strong { color: var(--text); font-weight: 800; }
.stars { color: var(--gold); letter-spacing: .12em; font-size: 1rem; }
.trust-note { color: var(--text-3); font-size: var(--t-sm); margin-top: .55rem; }

.hero-media { position: relative; }
.hero-badge {
  position: absolute; left: -1.6rem; bottom: 2rem;
  background: var(--acc); color: var(--acc-ink);
  padding: 1.05rem 1.3rem; border-radius: var(--r);
  display: flex; align-items: center; gap: .7rem;
  box-shadow: var(--sh-3);
  animation: floaty 5.5s var(--e-io) infinite;
}
.hero-badge-n {
  font-family: var(--f-display); font-size: 2.9rem; font-weight: 900;
  line-height: .82; letter-spacing: -.04em;
}
.hero-badge-n sup { font-size: .42em; top: -1.1em; }
.hero-badge-l {
  font-family: var(--f-display); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .13em; line-height: 1.25;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* image slot — falls back to a styled plate if the file is missing */
.shot {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: var(--ratio, 4/3);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-3);
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(165deg, rgba(255,255,255,.09), transparent 42%);
}
.shot-fall { display: none; }
.shot-empty .shot-fall {
  display: block; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 25% 15%, rgba(255,77,28,.16), transparent 58%),
    repeating-linear-gradient(115deg, var(--surface) 0 22px, var(--surface-2) 22px 44px);
}
.shot-empty::before {
  content: 'ProValets'; position: absolute; inset: 0; z-index: 1;
  display: grid; place-items: center;
  font-family: var(--f-display); font-size: 1.05rem; font-weight: 800;
  letter-spacing: .34em; text-transform: uppercase; color: var(--text-3);
}

/* --------------------------------------------------------------- ticker */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden; padding: .9rem 0; position: relative; z-index: 1;
}
.ticker-in { display: flex; gap: 3rem; width: max-content; animation: slide 46s linear infinite; }
.ticker span {
  font-family: var(--f-display); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em; color: var(--text-3);
  display: flex; align-items: center; gap: 3rem; white-space: nowrap;
}
.ticker span::after { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--acc); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------- proof bar */
.proofbar { border-bottom: 1px solid var(--line); background: var(--ink-2); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid li {
  padding: clamp(1.8rem, 1rem + 2vw, 3rem) 1.3rem;
  border-right: 1px solid var(--line);
  display: grid; gap: .18rem; align-content: center;
}
.proof-grid li:last-child { border-right: 0; }
.proof-n {
  font-family: var(--f-display); font-size: clamp(2rem, 1.2rem + 2.4vw, 3.4rem);
  font-weight: 900; line-height: 1; letter-spacing: -.045em; color: var(--acc);
}
.proof-l { font-weight: 700; font-size: .95rem; }
.proof-s { color: var(--text-3); font-size: var(--t-sm); }

/* ----------------------------------------------------------------- intro */
.intro-in {
  display: grid; grid-template-columns: .84fr 1.16fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center;
}
.intro-copy p { color: var(--text-2); margin-bottom: 1.1rem; max-width: 58ch; }
.intro-copy .sig {
  font-family: var(--f-display); font-weight: 800; color: var(--text);
  font-size: 1.1rem; letter-spacing: -.02em; margin-top: 1.6rem;
}
.intro-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }

/* -------------------------------------------------------- services list */
.svc-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.svc {
  display: grid; grid-template-columns: 122px 1fr;
  gap: clamp(1.2rem, .5rem + 2vw, 3rem);
  padding-block: clamp(2.2rem, 1.4rem + 2.4vw, 3.8rem);
  border-bottom: 1px solid var(--line);
  position: relative; scroll-margin-top: 100px;
  transition: background-color var(--d) var(--e);
}
.svc::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--acc); transform: scaleY(0); transform-origin: top;
  transition: transform var(--d-slow) var(--e);
}
.svc:hover::before, .svc:target::before { transform: scaleY(1); }
.svc:hover { background: linear-gradient(90deg, rgba(255,77,28,.045), transparent 45%); }
.svc-featured { background: linear-gradient(90deg, rgba(255,77,28,.06), transparent 55%); }
.svc-featured::before { transform: scaleY(1); }

.svc-n {
  font-family: var(--f-display); font-size: clamp(2.8rem, 1.6rem + 3.6vw, 5.4rem);
  font-weight: 900; line-height: .8; letter-spacing: -.06em;
  color: transparent; -webkit-text-stroke: 1.5px var(--line-2);
  transition: -webkit-text-stroke-color var(--d) var(--e);
  padding-left: clamp(0px, 1.4vw, 22px);
}
.svc:hover .svc-n { -webkit-text-stroke-color: var(--acc); }

.svc-top { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1.2rem; margin-bottom: .9rem; }
.svc-name { font-size: var(--t-h3); display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.svc-short { color: var(--acc); font-weight: 600; font-size: .95rem; }
.svc-blurb { color: var(--text-2); max-width: 68ch; margin-bottom: 1.5rem; }

.tag {
  font-family: var(--f-body); font-size: .64rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  background: var(--acc); color: var(--acc-ink);
  padding: .26rem .55rem; border-radius: 100px; white-space: nowrap;
}

.svc-inc {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: .5rem 1.6rem; margin-bottom: 1.8rem;
}
.svc-inc li {
  position: relative; padding-left: 1.5rem;
  font-size: .92rem; color: var(--text-2);
}
.svc-inc li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--acc); opacity: .85;
}

.svc-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2.4rem;
  padding-top: 1.4rem; border-top: 1px solid var(--line);
}
.svc-price { display: flex; align-items: baseline; gap: .5rem; }
.svc-price-l {
  font-family: var(--f-display); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; color: var(--text-3);
}
.svc-price-v {
  font-family: var(--f-display); font-size: 2rem; font-weight: 900;
  letter-spacing: -.04em; color: var(--acc); font-variant-numeric: tabular-nums;
}
.svc-facts { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; }
.svc-facts dt {
  font-family: var(--f-display); font-size: .64rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .17em; color: var(--text-3);
}
.svc-facts dd { font-size: .9rem; color: var(--text-2); max-width: 30ch; }
.svc-meta .btn { margin-left: auto; }

/* ------------------------------------------------------------------- why */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.why {
  background: var(--ink-2); padding: clamp(1.6rem, 1rem + 1.6vw, 2.6rem);
  transition: background-color var(--d) var(--e);
}
.why:hover { background: var(--surface); }
.why-ico {
  display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: var(--r-sm); background: rgba(255,77,28,.1);
  color: var(--acc); margin-bottom: 1.3rem;
}
.why-ico svg { width: 22px; height: 22px; }
.why h3 { font-size: 1.1rem; margin-bottom: .7rem; letter-spacing: -.02em; }
.why p { color: var(--text-2); font-size: .93rem; }

/* --------------------------------------------------------------- process */
.proc-sec { background: var(--ink-2); border-block: 1px solid var(--line); }
.proc { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: clamp(1.6rem, 1rem + 2vw, 3rem); counter-reset: p; }
.proc li { position: relative; padding-top: 2.4rem; border-top: 2px solid var(--line); }
.proc li::after {
  content: ''; position: absolute; left: 0; top: -2px; width: 40%; height: 2px;
  background: var(--acc); transform: scaleX(0); transform-origin: left;
  transition: transform .8s var(--e);
}
.proc li.in::after { transform: scaleX(1); }
.proc-n {
  position: absolute; top: 1rem; right: 0;
  font-family: var(--f-display); font-size: 3.2rem; font-weight: 900;
  color: transparent; -webkit-text-stroke: 1.5px var(--line-2);
  line-height: 1; letter-spacing: -.05em;
}
.proc h3 { font-size: 1.15rem; margin-bottom: .65rem; }
.proc p { color: var(--text-2); font-size: .93rem; }

/* --------------------------------------------------------------- reviews */
.rev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.4rem; }
.rev {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.6rem, 1rem + 1.4vw, 2.4rem);
  position: relative; transition: transform var(--d) var(--e), border-color var(--d) var(--e);
}
.rev:hover { transform: translateY(-5px); border-color: var(--line-2); }
.rev::before {
  content: '\201C'; position: absolute; top: -.05em; right: .45rem;
  font-family: var(--f-display); font-size: 6rem; font-weight: 900;
  color: var(--acc); opacity: .13; line-height: 1;
}
.rev .stars { display: block; margin-bottom: 1rem; }
.rev p { font-size: 1.06rem; color: var(--text); line-height: 1.55; margin-bottom: 1.2rem; text-wrap: pretty; }
.rev cite {
  font-style: normal; font-family: var(--f-display);
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .17em; color: var(--text-3);
}
.rev-cta { text-align: center; margin-top: 2.8rem; }

/* ------------------------------------------------------------------- FAQ */
.faq { display: grid; gap: .55rem; }
.faq-i {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  transition: border-color var(--d) var(--e);
}
.faq-i[open] { border-color: var(--line-2); }
.faq-i summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.15rem 1.4rem; cursor: pointer; list-style: none;
  font-family: var(--f-display); font-weight: 700; font-size: 1.02rem;
  letter-spacing: -.015em;
}
.faq-i summary::-webkit-details-marker { display: none; }
.faq-i summary:hover { color: var(--acc); }
.faq-i summary i {
  flex: none; width: 22px; height: 22px; position: relative;
  border: 1px solid var(--line-2); border-radius: 50%;
  transition: border-color var(--d) var(--e), transform var(--d) var(--e);
}
.faq-i summary i::before, .faq-i summary i::after {
  content: ''; position: absolute; inset: 50% 5px auto; height: 1.5px;
  background: currentColor; transform: translateY(-50%);
  transition: transform var(--d) var(--e), opacity var(--d-fast) var(--e);
}
.faq-i summary i::after { transform: translateY(-50%) rotate(90deg); }
.faq-i[open] summary i { border-color: var(--acc); transform: rotate(180deg); }
.faq-i[open] summary i::after { opacity: 0; }
.faq-a { padding: 0 1.4rem 1.35rem; }
.faq-a p { color: var(--text-2); max-width: 72ch; }

/* ----------------------------------------------------------------- areas */
.areas { display: grid; grid-template-columns: repeat(auto-fit, minmax(214px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.areas a {
  display: grid; gap: .18rem; padding: 1.5rem 1.6rem;
  background: var(--ink-2); position: relative; height: 100%;
  transition: background-color var(--d) var(--e);
}
.areas a:hover { background: var(--surface); }
.area-n { font-family: var(--f-display); font-size: 1.22rem; font-weight: 800; letter-spacing: -.025em; }
.area-p { font-size: .8rem; color: var(--text-3); letter-spacing: .04em; }
.area-go {
  position: absolute; right: 1.4rem; top: 1.5rem; color: var(--acc);
  opacity: 0; transform: translateX(-6px);
  transition: opacity var(--d) var(--e), transform var(--d) var(--e);
}
.areas a:hover .area-go { opacity: 1; transform: translateX(0); }

/* -------------------------------------------------------------- cta band */
.cta-band {
  background: linear-gradient(105deg, var(--acc-deep), var(--acc) 55%, var(--acc-2));
  color: var(--acc-ink); position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 58px 58px;
}
.cta-in {
  position: relative; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 2rem;
  padding-block: clamp(3rem, 2rem + 3vw, 5rem);
}
.cta-in h2 { font-size: clamp(1.8rem, 1.3rem + 2.2vw, 3.2rem); text-transform: uppercase; letter-spacing: -.035em; }
.cta-in p { margin-top: .9rem; max-width: 52ch; color: rgba(10,11,13,.78); font-weight: 500; }
.cta-btns { display: flex; flex-wrap: wrap; gap: .7rem; }

/* --------------------------------------------------------------- pricing */
.price-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--ink-2); margin-bottom: 2.5rem;
}
.price-tbl { min-width: 780px; }
.price-tbl th, .price-tbl td { padding: 1.1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-tbl thead th {
  background: var(--surface); font-family: var(--f-display);
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  vertical-align: bottom; white-space: nowrap;
}
.sz-l { display: block; color: var(--text); }
.sz-e { display: block; font-family: var(--f-body); font-size: .68rem; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--text-3); margin-top: .25rem; }
.price-tbl tbody th { font-family: var(--f-display); font-weight: 800; font-size: 1rem; min-width: 208px; }
/* Standalone links, so they need to clear the 24px AA target minimum. */
.price-tbl tbody th a { display: inline-block; padding-block: .3rem; }
.price-tbl tbody th a:hover { color: var(--acc); }
.price-tbl tbody th .tag { margin-left: .5rem; vertical-align: middle; }
.row-dur { display: block; font-family: var(--f-body); font-size: .74rem; font-weight: 500; color: var(--text-3); margin-top: .3rem; }
.price-tbl td {
  font-family: var(--f-display); font-size: 1.32rem; font-weight: 800;
  font-variant-numeric: tabular-nums; letter-spacing: -.03em;
}
.price-tbl tbody tr:last-child th, .price-tbl tbody tr:last-child td { border-bottom: 0; }
.price-tbl tbody tr:hover { background: rgba(255,255,255,.022); }
.row-feat { background: rgba(255,77,28,.06); }
.row-feat td { color: var(--acc); }

.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 1.2rem; margin-bottom: 2.5rem; }
.quote-card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.7rem;
  transition: border-color var(--d) var(--e);
}
.quote-card:hover { border-color: var(--line-2); }
.quote-card h3 { font-size: 1.12rem; margin-bottom: .6rem; }
.quote-card h3 a { display: inline-block; padding-block: .25rem; }
.quote-card h3 a:hover { color: var(--acc); }
.quote-from { font-size: .95rem; color: var(--text-2); margin-bottom: .6rem; }
.quote-from strong {
  font-family: var(--f-display); font-size: 1.6rem; font-weight: 900;
  color: var(--acc); letter-spacing: -.03em; vertical-align: -2px;
}
.quote-card p { color: var(--text-2); font-size: .9rem; }
.quote-dur {
  margin-top: .8rem; padding-top: .8rem; border-top: 1px solid var(--line);
  font-size: .8rem !important; color: var(--text-3) !important;
}

.price-notes {
  background: var(--ink-2); border: 1px solid var(--line);
  border-left: 3px solid var(--acc);
  border-radius: var(--r); padding: clamp(1.5rem, 1rem + 1.4vw, 2.4rem);
}
.price-notes h3 { font-size: 1.1rem; margin-bottom: 1.1rem; }
.price-notes ul { display: grid; gap: .7rem; }
.price-notes li { position: relative; padding-left: 1.5rem; color: var(--text-2); font-size: .93rem; }
.price-notes li::before { content: '—'; position: absolute; left: 0; color: var(--acc); }

/* ------------------------------------------------------------ page hero */
.phero {
  position: relative; overflow: hidden;
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 5.5rem) clamp(2.5rem, 1.5rem + 3.5vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.phero .wrap { position: relative; z-index: 1; }
.crumbs { margin-bottom: 1.6rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; font-size: var(--t-sm); color: var(--text-3); }
.crumbs li + li::before { content: '/'; margin-right: .4rem; color: var(--line-2); }
.crumbs a:hover { color: var(--acc); }
.phero-lead { max-width: 68ch; }

/* -------------------------------------------------------- location page */
.loc-in { display: grid; grid-template-columns: 1fr 360px; gap: clamp(2rem, 1rem + 3vw, 4rem); align-items: start; }
.loc-main p { color: var(--text-2); max-width: 68ch; }
.loc-main h3 { font-size: 1.25rem; margin: 2.4rem 0 1.1rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chips li {
  background: var(--surface); border: 1px solid var(--line);
  padding: .42rem .9rem; border-radius: 100px;
  font-size: .84rem; color: var(--text-2);
}
.loc-svcs { display: grid; gap: .5rem; }
.loc-svcs a {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: var(--ink-2); border: 1px solid var(--line);
  padding: .95rem 1.2rem; border-radius: var(--r);
  transition: border-color var(--d) var(--e), transform var(--d-fast) var(--e);
}
.loc-svcs a:hover { border-color: var(--acc); transform: translateX(4px); }
.loc-svc-n { font-family: var(--f-display); font-weight: 700; }
.loc-svc-p { color: var(--acc); font-weight: 700; font-size: .9rem; white-space: nowrap; }

.loc-side { position: sticky; top: 96px; }

/* ------------------------------------------------------------------ card */
.card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 1rem + 1.4vw, 2.2rem);
}
.card + .card, .about-side .card { margin-top: 1.2rem; }
.card-quote { border-top: 3px solid var(--acc); }
.card-eyebrow {
  font-family: var(--f-display); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; color: var(--text-3);
  margin-bottom: .8rem;
}
.card-phone { margin-bottom: .8rem; }
.card-phone a {
  font-family: var(--f-display); font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.1rem);
  font-weight: 900; letter-spacing: -.035em; color: var(--acc);
}
.card-phone a:hover { color: var(--acc-2); }
.card-note { color: var(--text-2); font-size: .9rem; margin-bottom: 1.3rem; }
.card .btn + .btn { margin-top: .6rem; }
.card-facts { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); display: grid; gap: .65rem; }
.card-facts > div { display: flex; justify-content: space-between; gap: 1rem; font-size: .88rem; }
.card-facts dt { color: var(--text-3); }
.card-facts dd { font-weight: 700; text-align: right; }
.card-wide { text-align: center; }
.card-wide h2 { font-size: var(--t-h3); margin-bottom: .8rem; }
.card-wide p { color: var(--text-2); margin-bottom: 1.5rem; max-width: 52ch; margin-inline: auto; }

.nearby { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.nearby a {
  display: block; background: var(--ink-2); border: 1px solid var(--line);
  padding: .7rem 1.25rem; border-radius: 100px; font-size: .9rem;
  transition: border-color var(--d) var(--e), color var(--d) var(--e);
}
.nearby a:hover { border-color: var(--acc); color: var(--acc); }

/* ----------------------------------------------------------------- about */
.about-in { display: grid; grid-template-columns: 1fr 380px; gap: clamp(2rem, 1rem + 3vw, 4.5rem); align-items: start; }
.about-copy .big { font-size: var(--t-lead); color: var(--text); margin-bottom: 2.4rem; max-width: 60ch; }
.about-copy h2 { font-size: 1.45rem; margin: 2.4rem 0 .9rem; }
.about-copy p { color: var(--text-2); max-width: 68ch; }
.about-side { position: sticky; top: 96px; display: grid; gap: 1.2rem; }

/* --------------------------------------------------------------- contact */
.contact-in { display: grid; grid-template-columns: 380px 1fr; gap: clamp(2rem, 1rem + 3vw, 4rem); align-items: start; }
.contact-side { display: grid; gap: .8rem; }
.contact-card {
  display: grid; gap: .2rem;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.4rem 1.5rem;
  position: relative; transition: border-color var(--d) var(--e), transform var(--d-fast) var(--e);
}
a.contact-card:hover { border-color: var(--acc); transform: translateY(-2px); }
.contact-card-lead { border-top: 3px solid var(--acc); }
.contact-ico { position: absolute; top: 1.4rem; right: 1.5rem; color: var(--acc); font-size: 1.2rem; }
.contact-l {
  font-family: var(--f-display); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; color: var(--text-3);
}
.contact-v { font-family: var(--f-display); font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.25; }
.contact-card-lead .contact-v { color: var(--acc); font-size: 1.75rem; }
.contact-hours { font-size: .98rem; line-height: 1.7; }
.contact-s { color: var(--text-3); font-size: .82rem; margin-top: .3rem; }

.contact-form-wrap {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.6rem, 1rem + 2vw, 2.8rem);
}
.contact-form-wrap h2 { font-size: var(--t-h3); margin-bottom: .6rem; }
.form-intro { color: var(--text-2); margin-bottom: 2rem; font-size: .95rem; }
.form { display: grid; gap: 1.1rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.f { display: grid; gap: .45rem; }
.f label {
  font-family: var(--f-display); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .13em; color: var(--text-2);
}
.f label span { color: var(--acc); }
.f input, .f select, .f textarea {
  background: var(--ink); border: 1px solid var(--line-2);
  border-radius: var(--r-sm); padding: .82rem 1rem;
  color: var(--text); width: 100%;
  /* Must stay at 16px or iOS Safari zooms the page on focus and never zooms back. */
  font-size: 1rem;
  transition: border-color var(--d-fast) var(--e), box-shadow var(--d-fast) var(--e);
}
.f textarea { resize: vertical; min-height: 108px; }
.f input:focus, .f select:focus, .f textarea:focus {
  outline: none; border-color: var(--acc);
  box-shadow: 0 0 0 3px rgba(255,77,28,.14);
}
.f input::placeholder, .f textarea::placeholder { color: var(--text-3); }
.f select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23A6AEBA' stroke-width='1.8'%3E%3Cpath d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.f-hp { position: absolute; left: -9999px; }
.form-note { color: var(--text-3); font-size: .8rem; text-align: center; }
.form-status { font-size: .92rem; text-align: center; font-weight: 600; }
.form-status.ok { color: var(--good); }
.form-status.err { color: var(--acc-2); }

/* ----------------------------------------------------------------- prose */
.prose h2 { font-size: 1.35rem; margin: 2.2rem 0 .8rem; }
.prose p { color: var(--text-2); margin-bottom: 1rem; }
.prose-updated { color: var(--text-3); font-size: var(--t-sm); margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }

/* ---------------------------------------------------------------- footer */
.site-foot { background: var(--ink-2); border-top: 1px solid var(--line); padding-top: clamp(3rem, 2rem + 3vw, 5rem); }
.foot-top {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: clamp(1.8rem, 1rem + 2.5vw, 3.5rem);
  padding-bottom: 3rem;
}
.foot-blurb { color: var(--text-2); font-size: .9rem; margin: 1.2rem 0; max-width: 42ch; }
.foot-rating { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--text-2); flex-wrap: wrap; }
.foot-rating strong { color: var(--text); }
.foot-social { display: flex; gap: .6rem; margin-top: 1.1rem; }
/* Min-width/height keeps short labels like "X" from becoming an 8px target. */
.foot-social a {
  font-size: .82rem; color: var(--text-3); font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px; padding: 0 .7rem;
  border: 1px solid var(--line-2); border-radius: var(--r-sm);
  transition: color var(--d) var(--e), border-color var(--d) var(--e);
}
.foot-social a:hover { color: var(--acc); border-color: var(--acc); }
.foot-col h3 {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; color: var(--text-3); margin-bottom: 1.1rem;
}
.foot-col ul { display: grid; gap: .15rem; }
.foot-col a, .foot-contact li { font-size: .88rem; color: var(--text-2); }
/* Padded to clear the WCAG 2.2 AA 24px minimum target size. */
.foot-col a { display: inline-block; padding-block: .38rem; }
.foot-contact li { padding-block: .22rem; }
.foot-col a:hover { color: var(--acc); }
.foot-contact address { line-height: 1.7; }
.foot-hours { color: var(--text-3) !important; font-size: .82rem !important; }
.foot-bot {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-block: 1.6rem; border-top: 1px solid var(--line);
  font-size: var(--t-sm); color: var(--text-3);
}
.foot-bot ul { display: flex; gap: .9rem; flex-wrap: wrap; }
.foot-bot a { display: inline-block; padding: .35rem .25rem; }
.foot-bot a:hover { color: var(--acc); }

/* -------------------------------------------------------- mobile callbar */
.callbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(110%); transition: transform var(--d) var(--e);
}
.callbar.on { transform: translateY(0); }
.callbar-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--acc); color: var(--acc-ink);
  padding: 1.05rem .6rem;
  font-family: var(--f-display); font-weight: 800; font-size: .92rem;
  text-transform: uppercase; letter-spacing: .05em;
}
.callbar-alt { background: var(--surface-2); color: var(--text); }

/* -------------------------------------------------------------- reveals
   Scoped to .js so that with JavaScript disabled — or if main.js fails to
   load — every element renders visible instead of being stuck at opacity 0. */
.js [data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .75s var(--e) var(--d, 0ms), transform .75s var(--e) var(--d, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal].in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1080px) {
  .nav { display: none; }
  .head-cta { display: none; }
  .burger { display: flex; }
  .loc-in, .about-in, .contact-in { grid-template-columns: 1fr; }
  .loc-side, .about-side { position: static; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; }
  .hero-badge { left: auto; right: -.8rem; bottom: 1.2rem; }
  .intro-in { grid-template-columns: 1fr; }
  .intro-media { max-width: 400px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid li:nth-child(2) { border-right: 0; }
  .proof-grid li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .callbar { display: flex; }
  body { padding-bottom: 62px; }
  .cta-in { flex-direction: column; align-items: flex-start; }
}

/* ---------------------------------------------- mobile legibility + targets
   Uppercase micro-labels sit at 10-11px on desktop, which is fine alongside a
   large type scale but too small on a phone. Raise the floor, and give the
   remaining inline links enough height to clear the 24px AA target minimum. */
@media (max-width: 860px) {
  .svc-facts dt, .tag, .rev cite, .card-eyebrow, .contact-l,
  .svc-price-l, .sz-e, .proc-n, .foot-col h3, .hero-badge-l { font-size: .75rem; }
  .quote-dur, .foot-hours, .trust-note, .form-note, .row-dur { font-size: .8rem; }
  .loc-svcs a { padding-block: 1.05rem; }
  .chips li { padding: .55rem 1rem; }
  .nearby a { padding: .85rem 1.3rem; }
  .crumbs ol { gap: .5rem; }
  .crumbs a { display: inline-block; padding-block: .3rem; }
}

@media (max-width: 620px) {
  .svc { grid-template-columns: 1fr; gap: .8rem; }
  .svc-n { padding-left: 0; }
  .svc-meta .btn { margin-left: 0; width: 100%; }
  .svc-meta { gap: 1.2rem; }
  .f-row { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-bot { flex-direction: column; }
  .h-hero .accent { -webkit-text-stroke-width: 1px; }
}

@media (max-width: 400px) {
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid li { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .ticker-in { animation: none; }
  .hero-badge { animation: none; }
}

/* ------------------------------------------------------------------ print */
@media print {
  .site-head, .callbar, .cta-band, .ticker, .hero-bg { display: none !important; }
  body { background: #fff; color: #000; }
  .shot { display: none; }
}
