/* ==========================================================================
   Campbrook Mobile Tire Shop — styles
   ========================================================================== */

:root {
  --ink: #0c0d10;
  --ink-2: #14161a;
  --ink-3: #1d2025;
  --ink-line: rgba(255, 255, 255, 0.09);
  --bone: #f2ede4;
  --bone-2: #e7e0d3;
  --paper: #faf7f2;
  --line: #ddd5c7;
  --text: #15171b;
  --text-muted: #5d6370;
  --on-ink: #f4f1ec;
  --on-ink-muted: #9aa0aa;
  --orange: #ff5a1f;
  --orange-deep: #e1460d;
  --orange-soft: #ffe3d6;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--orange); color: #fff; padding: 10px 16px; border-radius: 999px; font-weight: 600; transition: top .2s; }
.skip-link:focus { top: 12px; }

/* ---------- Type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 112%;
  letter-spacing: -0.025em;
  line-height: 0.98;
}
.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-stretch: normal;
  letter-spacing: -0.01em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-stretch: 118%;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.on-ink .eyebrow { color: var(--orange); }

.section-head { display: grid; gap: 18px; max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2 { font-size: clamp(38px, 5.6vw, 76px); }
.section-head p { font-size: clamp(17px, 1.4vw, 19px); color: var(--text-muted); max-width: 580px; }
.on-ink .section-head p { color: var(--on-ink-muted); }
.section-head--split { max-width: none; grid-template-columns: 1.55fr 1fr; align-items: end; gap: 24px 64px; }
.section-head--split h2 { font-size: clamp(38px, 5vw, 70px); }
@media (max-width: 860px) { .section-head--split { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--orange);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 8px 0 26px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  isolation: isolate;
}
.btn .btn-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  transition: background-color .3s var(--ease);
}
.btn .btn-icon svg { width: 18px; height: 18px; transition: transform .45s var(--ease); }
.btn:hover .btn-icon svg { transform: translateX(3px); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { box-shadow: 0 10px 30px -10px rgba(255, 90, 31, 0.7); }
.btn--primary:hover { --btn-bg: var(--orange-deep); box-shadow: 0 16px 40px -12px rgba(255, 90, 31, 0.8); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--on-ink); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.22); padding: 0 26px; }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.6); }
.btn--ghost svg { width: 18px; height: 18px; }
.btn--dark { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--dark .btn-icon { background: var(--orange); }
.btn--dark:hover { --btn-bg: #000; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); }
.btn--light .btn-icon { background: var(--ink); color: #fff; }
.btn--sm { height: 46px; padding: 0 6px 0 20px; font-size: 15px; }
.btn--sm .btn-icon { width: 34px; height: 34px; }
.btn--sm.btn--ghost { padding: 0 20px; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.link-arrow svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Announcement + Header ---------- */
.topbar {
  position: relative;
  z-index: 60;
  background: var(--orange);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar a { font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { text-decoration: underline; text-underline-offset: 3px; }
.topbar svg { width: 14px; height: 14px; }
.topbar .live { display: inline-flex; align-items: center; gap: 10px; }
.pulse-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: currentColor; flex: none; }
.pulse-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: currentColor; animation: pulse 2s var(--ease) infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(3.2); opacity: 0; } }
@media (max-width: 640px) { .topbar .hide-sm { display: none; } .topbar .container { justify-content: center; } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  color: var(--on-ink);
  background: var(--ink);
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.site-header.is-scrolled {
  background: rgba(12, 13, 16, 0.82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 1px 0 var(--ink-line);
}
.site-header .container { height: 100%; display: flex; align-items: center; gap: 32px; }

.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand-mark { width: 38px; height: 46px; flex: none; transition: transform .6s var(--ease); }
.brand:hover .brand-mark { transform: translateY(-3px) rotate(-6deg); }
.brand-text { display: grid; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-stretch: 125%; font-size: 21px; letter-spacing: 0.01em; }
.brand-sub { font-family: var(--font-display); font-weight: 600; font-stretch: 110%; font-size: 9.5px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--on-ink-muted); margin-top: 5px; }

.nav { margin-left: auto; }
.nav ul { display: flex; gap: 4px; }
.nav a { display: block; padding: 10px 14px; border-radius: 999px; font-size: 15px; font-weight: 500; color: rgba(244, 241, 236, 0.78); transition: color .25s, background-color .25s; }
.nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.nav a[aria-current="page"] { position: relative; color: #fff; }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: 50%; bottom: 2px; width: 5px; height: 5px; margin-left: -2.5px; border-radius: 50%; background: var(--orange); }
.nav .nav-quote a { margin-left: 8px; padding: 10px 18px; background: var(--orange); color: #fff; font-weight: 600; box-shadow: 0 10px 24px -12px rgba(255, 90, 31, 0.8); }
.nav .nav-quote a:hover { background: var(--orange-deep); }
.nav .nav-quote a[aria-current="page"] { background: #fff; color: var(--ink); box-shadow: none; }
.nav .nav-quote a[aria-current="page"]::after { display: none; }
@media (max-width: 1080px) { .nav a { padding: 10px 11px; } .nav .nav-quote a { margin-left: 4px; padding: 10px 16px; } }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; padding: 0 6px; }
.header-phone .ph-ico { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.18); transition: background-color .25s, box-shadow .25s; }
.header-phone:hover .ph-ico { background: var(--orange); box-shadow: none; }
.header-phone svg { width: 16px; height: 16px; }

.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.18); position: relative; }
.menu-toggle span { position: absolute; left: 14px; right: 14px; height: 2px; background: #fff; border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
.menu-toggle span:nth-child(1) { top: 18px; }
.menu-toggle span:nth-child(2) { top: 26px; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 1080px) { .header-phone .ph-num { display: none; } }
@media (max-width: 980px) {
  .nav, .header-actions .btn { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: block; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--ink);
  color: var(--on-ink);
  padding: calc(var(--header-h) + 64px) var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
  overflow-y: auto;
}
.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-line);
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 115%;
  font-size: clamp(28px, 8vw, 40px);
  letter-spacing: -0.02em;
  transform: translateY(16px);
  opacity: 0;
  transition: transform .6s var(--ease), opacity .6s var(--ease), color .2s;
}
.mobile-menu nav a:hover { color: var(--orange); }
.menu-open .mobile-menu nav a { transform: none; opacity: 1; }
.mobile-menu nav li:nth-child(2) a { transition-delay: .04s; }
.mobile-menu nav li:nth-child(3) a { transition-delay: .08s; }
.mobile-menu nav li:nth-child(4) a { transition-delay: .12s; }
.mobile-menu nav li:nth-child(5) a { transition-delay: .16s; }
.mobile-menu .mm-actions { display: grid; gap: 12px; margin-top: auto; }
.mobile-menu .mm-actions .btn { justify-content: space-between; }
.mobile-menu .mm-actions .btn--ghost { justify-content: center; }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--on-ink);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 70% at 78% 45%, rgba(255, 90, 31, 0.22), transparent 60%),
    radial-gradient(40% 50% at 10% 100%, rgba(255, 255, 255, 0.05), transparent 70%);
}
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  min-height: min(calc(100svh - var(--header-h) - 40px), 880px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  padding-block: clamp(56px, 8vw, 110px) clamp(64px, 8vw, 120px);
}
.hero-copy { position: relative; z-index: 2; display: grid; gap: 28px; }
.hero h1 { font-size: clamp(50px, 7.4vw, 112px); }
.hero h1 .serif-accent { color: var(--orange); font-size: 1.08em; line-height: .9; display: inline-block; padding-right: .06em; }
.hero-lede { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.55; color: rgba(244, 241, 236, 0.74); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 18px; padding-top: 26px; border-top: 1px solid var(--ink-line); max-width: 580px; }
.hero-proof li { display: inline-flex; align-items: center; gap: 10px; font-size: 14.5px; color: rgba(244, 241, 236, 0.8); }
.hero-proof svg { width: 18px; height: 18px; color: var(--orange); flex: none; }

.hero-visual { position: relative; align-self: stretch; }
.hero-wheel {
  position: absolute;
  top: 50%;
  left: 2%;
  width: clamp(560px, 58vw, 860px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  filter: drop-shadow(0 50px 80px rgba(0, 0, 0, 0.55));
}
.hero-wheel::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 0 0 60px rgba(255,255,255,.015), 0 0 0 140px rgba(255,255,255,.012);
}
.hero-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 14px;
  border-radius: 18px;
  background: rgba(20, 22, 26, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1), 0 24px 50px -20px rgba(0,0,0,.6);
  font-size: 14px;
  line-height: 1.35;
  white-space: nowrap;
}
.hero-card strong { display: block; font-weight: 600; color: #fff; font-size: 15px; }
.hero-card span { color: var(--on-ink-muted); }
.hero-card .hc-ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--orange); color: #fff; flex: none; }
.hero-card .hc-ico svg { width: 20px; height: 20px; }
.hero-card--a { top: 16%; left: -2%; animation: float 7s ease-in-out infinite; }
.hero-card--b { bottom: 14%; left: 22%; animation: float 8s ease-in-out -3s infinite; }
.hero-card--b .hc-ico { background: #fff; color: var(--ink); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; min-height: 0; padding-bottom: 0; }
  .hero-visual { height: clamp(300px, 66vw, 520px); margin-top: 32px; }
  .hero-wheel { width: min(118vw, 780px); left: 50%; top: 0; transform: translateX(-38%); }
  .hero-card--a { top: 10%; left: 0; }
  .hero-card--b { bottom: auto; top: 46%; left: auto; right: 0; }
}
.show-xs { display: none; }
@media (max-width: 520px) {
  .hide-xs { display: none; }
  .show-xs { display: inline; }
  /* Compact hero so the wheel lands in the first screen on phones */
  .hero-inner { padding-top: 28px; }
  .hero-copy { gap: 18px; }
  .hero h1 { font-size: 44px; }
  .hero-lede { font-size: 16.5px; }
  .hero .hero-cta { margin-top: 2px; gap: 10px; }
  .hero .hero-cta .btn--primary { padding-left: 22px; }
  .hero .hero-cta .btn--ghost { padding: 0 22px; }
  .hero-proof { display: none; }
  .hero-visual { height: 380px; margin-top: 18px; }
  .hero-card--a { top: 4%; }
  .hero-card { padding: 10px 14px 10px 10px; font-size: 12.5px; }
  .hero-card strong { font-size: 13.5px; }
  .hero-card .hc-ico { width: 34px; height: 34px; border-radius: 10px; }
  .hero-card--b { display: none; }
}
@media (max-width: 380px) {
  .site-header .container { gap: 12px; }
  .brand { gap: 10px; }
  .brand-mark { width: 32px; height: 39px; }
  .brand-name { font-size: 18px; }
  .brand-sub { font-size: 8.5px; letter-spacing: .28em; }
  .header-phone { display: none; }
  .hero .eyebrow { letter-spacing: .12em; }
  .hero h1 { font-size: 40px; }
  .hero-lede { font-size: 16px; }
  .hero .hero-cta .btn--primary { padding-left: 18px; }
  .hero .hero-cta .btn--ghost { padding: 0 18px; }
}

/* ---------- Wheel SVG ---------- */
.wheel-svg { width: 100%; height: 100%; overflow: visible; }
/* viewBox is centred on 0,0 — with transform-box: view-box the origin 0 0 is the wheel centre */
.wheel-spin { transform: rotate(var(--spin, 0deg)); transform-box: view-box; transform-origin: 0 0; }
.wheel-sidewall-text { font-family: var(--font-display); font-weight: 800; font-stretch: 125%; font-size: 15px; letter-spacing: 0; fill: #3a3d45; }

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  background: var(--orange);
  color: var(--ink);
  overflow: hidden;
  padding-block: 20px;
  border-block: 1px solid rgba(0,0,0,.06);
}
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; flex: none; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 120%;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-item svg { width: 22px; height: 22px; flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { position: relative; padding-block: clamp(88px, 11vw, 160px); }
.section--bone { background: var(--bone); }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--on-ink); }

/* ---------- Services (bento) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.svc {
  position: relative;
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 300px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(21, 23, 27, 0.06);
  overflow: hidden;
  isolation: isolate;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px rgba(21, 23, 27, 0.08), 0 30px 60px -30px rgba(21, 23, 27, 0.35); }
.svc h3 { font-family: var(--font-display); font-weight: 700; font-stretch: 110%; font-size: clamp(22px, 2vw, 27px); letter-spacing: -0.02em; line-height: 1.1; }
.svc p { color: var(--text-muted); font-size: 16px; line-height: 1.55; }
.svc .svc-ico {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bone);
  color: var(--ink);
  margin-bottom: auto;
  transition: background-color .4s var(--ease), color .4s var(--ease), transform .6s var(--ease);
}
.svc:hover .svc-ico { background: var(--orange); color: #fff; transform: rotate(-8deg) scale(1.05); }
.svc-link { position: absolute; inset: 0; z-index: 3; border-radius: inherit; }
.svc-link:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.svc-go {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.svc-go svg { width: 18px; height: 18px; transform: rotate(-45deg); }
.svc .svc-num { transition: opacity .3s; }
.svc:hover .svc-go, .svc:focus-within .svc-go { opacity: 1; transform: none; }
.svc:hover .svc-num, .svc:focus-within .svc-num { opacity: 0; }
.svc--feature .svc-go, .svc--accent .svc-go { background: #fff; color: var(--ink); }
@media (hover: none) { .svc-go { opacity: 1; transform: none; } .svc .svc-num { opacity: 0; } }
.svc .svc-ico svg { width: 28px; height: 28px; }
.svc .svc-num { position: absolute; top: 30px; right: 30px; font-family: var(--font-display); font-stretch: 120%; font-weight: 600; font-size: 13px; letter-spacing: .08em; color: #a9a295; }
.svc .svc-foot { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 500; background: var(--bone); color: var(--text); }

.svc--feature {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 620px;
  padding: 40px;
  background: var(--ink);
  color: var(--on-ink);
  box-shadow: none;
}
.svc--feature p { color: var(--on-ink-muted); font-size: 17px; max-width: 420px; }
.svc--feature h3 { font-size: clamp(32px, 3.4vw, 48px); font-stretch: 115%; font-weight: 800; letter-spacing: -0.03em; }
.svc--feature .svc-ico { background: rgba(255,255,255,.08); color: #fff; }
.svc--feature .chip { background: rgba(255,255,255,.08); color: var(--on-ink); }
.svc--feature .svc-num { color: #5c616b; }
.svc--feature .feature-wheel {
  position: absolute;
  z-index: -2;
  width: 500px;
  aspect-ratio: 1;
  right: -110px;
  top: -90px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.6));
}
.svc--feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 55% at 80% 20%, rgba(255,90,31,.16), transparent 70%),
    linear-gradient(180deg, transparent 38%, rgba(12,13,16,.92) 66%);
}
.svc--feature .svc-num { display: none; }
.svc--wide { grid-column: span 6; min-height: 250px; }
.svc--accent { background: var(--orange); color: #fff; box-shadow: none; }
.svc--accent p { color: rgba(255,255,255,.88); }
.svc--accent .svc-ico { background: rgba(0,0,0,.14); color: #fff; }
.svc--accent:hover .svc-ico { background: #fff; color: var(--orange); }
.svc--accent .svc-num { color: rgba(255,255,255,.7); }
.svc--accent .chip { background: rgba(0,0,0,.14); color: #fff; }

.also {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  padding: 24px 30px;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.also strong { font-family: var(--font-display); font-stretch: 115%; font-weight: 700; font-size: 15px; letter-spacing: .02em; }
.also ul { display: flex; flex-wrap: wrap; gap: 8px; }
.also li { padding: 8px 14px; border-radius: 999px; background: var(--paper); font-size: 14.5px; font-weight: 500; }
.also .link-arrow { margin-left: auto; color: var(--orange-deep); }

@media (max-width: 1060px) {
  .svc, .svc--wide { grid-column: span 6; }
  .svc--feature { grid-column: 1 / -1; grid-row: auto; min-height: 480px; }
}
@media (max-width: 640px) {
  .svc, .svc--wide, .svc--feature { grid-column: 1 / -1; min-height: 0; }
  .svc { padding: 26px; }
  .svc .svc-ico { margin-bottom: 18px; }
  .svc--feature { min-height: 540px; padding: 28px; }
  .svc--feature .feature-wheel { width: 330px; right: -100px; top: -110px; }
  .svc--feature .svc-ico { margin-bottom: auto; }
  .also .link-arrow { margin-left: 0; }
}

/* ---------- How it works ---------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.steps-road {
  position: absolute;
  left: 0;
  right: 0;
  top: 44px;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(255,255,255,.22) 50%, transparent 50%);
  background-size: 22px 2px;
  animation: road 1.4s linear infinite;
}
@keyframes road { to { background-position: -22px 0; } }
.step { position: relative; display: grid; gap: 18px; align-content: start; }
.step-num {
  position: relative;
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--ink-line), 0 0 0 10px var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 125%;
  font-size: 26px;
  color: #fff;
}
.step:nth-child(2) .step-num { background: var(--orange); box-shadow: 0 0 0 10px var(--ink), 0 20px 50px -10px rgba(255,90,31,.6); }
.step h3 { font-family: var(--font-display); font-weight: 700; font-stretch: 112%; font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.02em; line-height: 1.1; margin-top: 10px; }
.step p { color: var(--on-ink-muted); max-width: 360px; }

.venues {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(64px, 8vw, 110px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-line);
  box-shadow: inset 0 0 0 1px var(--ink-line);
}
.venue { display: grid; gap: 14px; align-content: start; padding: 30px 28px 34px; background: var(--ink); transition: background-color .4s var(--ease); }
.venue:hover { background: var(--ink-2); }
.venue svg { width: 34px; height: 34px; color: var(--orange); }
.venue h4 { font-family: var(--font-display); font-weight: 700; font-stretch: 110%; font-size: 20px; letter-spacing: -0.01em; }
.venue p { color: var(--on-ink-muted); font-size: 15px; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .steps-road { left: 44px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background-image: linear-gradient(180deg, rgba(255,255,255,.22) 50%, transparent 50%); background-size: 2px 22px; animation-name: road-v; }
  @keyframes road-v { to { background-position: 0 -22px; } }
  .step { grid-template-columns: 90px 1fr; column-gap: 24px; }
  .step-num { grid-row: span 2; }
  .step h3 { margin-top: 14px; }
  .venues { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .venues { grid-template-columns: 1fr; }
  .step { grid-template-columns: 72px 1fr; column-gap: 18px; }
  .step-num { width: 72px; height: 72px; font-size: 21px; }
  .steps-road { left: 35px; }
}

/* ---------- Compare ---------- */
.compare-wrap { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.compare-intro { position: sticky; top: calc(var(--header-h) + 40px); display: grid; gap: 22px; }
.compare-intro h2 { font-size: clamp(38px, 5vw, 68px); }
.compare-intro p { color: var(--text-muted); font-size: 18px; max-width: 460px; }
.compare-intro .btn { justify-self: start; margin-top: 8px; }
.compare { border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.03), 0 40px 80px -50px rgba(21,23,27,.35); }
.compare-head, .compare-row { display: grid; grid-template-columns: 0.7fr 1fr 1fr; }
.compare-head { background: var(--ink); color: var(--on-ink); }
.compare-head div { padding: 20px 24px; font-family: var(--font-display); font-stretch: 115%; font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.compare-head .us { background: var(--orange); color: #fff; display: flex; align-items: center; gap: 10px; }
.compare-head .us svg { width: 20px; height: 24px; }
.compare-head .them { color: var(--on-ink-muted); }
.compare-row { border-top: 1px solid #eee8de; }
.compare-row:first-of-type { border-top: 0; }
.compare-row > div { padding: 22px 24px; font-size: 15.5px; line-height: 1.45; }
.compare-row .label { font-weight: 600; color: var(--text); }
.compare-row .them { color: #8a8f99; display: flex; gap: 10px; }
.compare-row .us { background: #fff8f4; color: var(--text); font-weight: 500; display: flex; gap: 10px; }
.compare-row svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.compare-row .them svg { color: #c2bcb1; }
.compare-row .us svg { color: var(--orange); }
@media (max-width: 960px) {
  .compare-wrap { grid-template-columns: 1fr; }
  .compare-intro { position: static; }
}
@media (max-width: 600px) {
  .compare-head { grid-template-columns: 1fr 1fr; }
  .compare-head .lbl { display: none; }
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-row .label { grid-column: 1 / -1; padding-bottom: 0; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
  .compare-row > div { padding: 14px 16px 18px; font-size: 14.5px; }
  .compare-row .us { background: transparent; }
  .compare-head div { padding: 16px; }
}

/* ---------- Service area ---------- */
.area { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(40px, 6vw, 90px); align-items: center; }
.area-copy { display: grid; gap: 24px; }
.area-copy h2 { font-size: clamp(38px, 5vw, 68px); }
.area-copy > p { color: var(--text-muted); font-size: 18px; max-width: 500px; }
.cities { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.cities li {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(21,23,27,.07);
  font-size: 15px;
  font-weight: 500;
  cursor: default;
  transition: background-color .25s, color .25s, box-shadow .25s;
}
.cities li:hover, .cities li.is-active { background: var(--ink); color: #fff; box-shadow: none; }
.cities li.primary { background: var(--orange); color: #fff; box-shadow: none; }
.area-note { font-size: 15px; color: var(--text-muted); display: flex; gap: 10px; align-items: flex-start; }
.area-note svg { width: 20px; height: 20px; color: var(--orange-deep); flex: none; margin-top: 2px; }
.area-note a { color: var(--text); font-weight: 600; text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 3px; }

.map-panel {
  position: relative;
  aspect-ratio: 1;
  border-radius: 36px;
  background: var(--ink);
  overflow: hidden;
  box-shadow: 0 50px 100px -50px rgba(12,13,16,.6);
  isolation: isolate;
}
.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(255,90,31,.14), transparent 55%);
}
.map-sweep {
  position: absolute;
  inset: 3%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255,90,31,.22), rgba(255,90,31,0) 70deg, transparent 360deg);
  animation: sweep 7s linear infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.map-svg { position: relative; z-index: 1; width: 100%; height: 100%; }
.map-svg .ring { fill: none; stroke: rgba(255,255,255,.12); stroke-width: 1; stroke-dasharray: 3 6; }
.map-svg .ring-label { fill: #6d727c; font: 600 10px var(--font-display); font-stretch: 120%; letter-spacing: .16em; }
.map-svg .axis { stroke: rgba(255,255,255,.05); stroke-width: 1; }
.map-svg .road { fill: none; stroke: rgba(255,255,255,.22); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.map-svg .road-dash { fill: none; stroke: var(--ink); stroke-width: 1; stroke-dasharray: 6 8; stroke-linecap: round; }
.map-svg .road-label { fill: #a6abb4; font: 700 10px var(--font-display); letter-spacing: .08em; }
.map-svg .city circle { fill: #fff; transition: r .3s var(--ease), fill .3s; }
.map-svg .city text { fill: #c9ccd2; font: 500 13px var(--font-body); transition: fill .3s; }
.map-svg .city.is-active circle { fill: var(--orange); r: 7; }
.map-svg .city.is-active text { fill: #fff; }
.map-svg .hq-pulse { fill: var(--orange); transform-box: fill-box; transform-origin: center; animation: hq 2.4s var(--ease) infinite; }
@keyframes hq { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(5); opacity: 0; } }
.map-svg .hq-label { fill: #fff; font: 800 18px var(--font-display); font-stretch: 118%; letter-spacing: -.01em; }
.map-legend {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #d7d9de;
  font-size: 13px;
}
.map-legend .pulse-dot { color: var(--orange); }
@media (max-width: 960px) { .area { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .map-svg .city text { font-size: 15px; } .map-panel { border-radius: 26px; } }

/* ---------- Quote ---------- */
.quote-section { background: var(--ink); color: var(--on-ink); overflow: hidden; isolation: isolate; }
.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(50% 60% at 0% 0%, rgba(255,90,31,.18), transparent 60%);
}
.quote-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.quote-copy { position: sticky; top: calc(var(--header-h) + 40px); display: grid; gap: 26px; }
.quote-copy h2 { font-size: clamp(44px, 5.8vw, 84px); }
.quote-copy h2 .serif-accent { color: var(--orange); }
.quote-copy > p { color: var(--on-ink-muted); font-size: 18px; max-width: 460px; }
.quote-list { display: grid; gap: 14px; }
.quote-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: rgba(244,241,236,.86); }
.quote-list .qi { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,90,31,.14); color: var(--orange); flex: none; }
.quote-list .qi svg { width: 15px; height: 15px; }
.call-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--ink-line);
  transition: box-shadow .3s, background-color .3s;
}
.call-card:hover { background: var(--ink-3); box-shadow: inset 0 0 0 1px rgba(255,90,31,.5); }
.call-card .cc-ico { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--orange); color: #fff; flex: none; }
.call-card .cc-ico svg { width: 22px; height: 22px; }
.call-card small { display: block; color: var(--on-ink-muted); font-size: 13.5px; }
.call-card strong { display: block; font-family: var(--font-display); font-stretch: 112%; font-weight: 700; font-size: 26px; letter-spacing: -0.01em; color: #fff; line-height: 1.2; }

.quote-card {
  position: relative;
  border-radius: 32px;
  background: var(--bone);
  color: var(--text);
  padding: clamp(22px, 3.2vw, 40px);
  box-shadow: 0 60px 120px -40px rgba(0,0,0,.7);
}
.quote-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 4px 4px 22px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.quote-card-head h3 { font-family: var(--font-display); font-weight: 800; font-stretch: 115%; font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.02em; line-height: 1.1; }
.quote-card-head p { font-size: 14.5px; color: var(--text-muted); margin-top: 4px; }
.quote-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: #fff; font-size: 13px; font-weight: 600; white-space: nowrap; box-shadow: inset 0 0 0 1px rgba(21,23,27,.06); }
.quote-badge svg { width: 15px; height: 15px; color: var(--orange-deep); }
.qe-slot { min-height: 560px; }
@media (max-width: 960px) {
  .quote-grid { grid-template-columns: 1fr; }
  .quote-copy { position: static; }
}
@media (max-width: 520px) {
  .quote-card { border-radius: 24px; margin-inline: calc(var(--gutter) * -0.5); }
  .quote-badge { display: none; }
}

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-h) + 40px); display: grid; gap: 22px; }
.faq-intro h2 { font-size: clamp(38px, 5vw, 68px); }
.faq-intro p { color: var(--text-muted); font-size: 18px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 108%;
  font-size: clamp(19px, 1.8vw, 23px);
  letter-spacing: -0.015em;
  line-height: 1.25;
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange-deep); }
.faq-toggle { position: relative; width: 40px; height: 40px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--line); flex: none; transition: background-color .3s var(--ease), box-shadow .3s, transform .5s var(--ease); }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; margin: -1px 0 0 -7px; background: currentColor; border-radius: 2px; transition: transform .4s var(--ease); }
.faq-toggle::after { transform: rotate(90deg); }
.faq-item[open] .faq-toggle { background: var(--ink); color: #fff; box-shadow: none; transform: rotate(180deg); }
.faq-item[open] .faq-toggle::after { transform: rotate(0deg); }
.faq-body { padding: 0 64px 30px 0; color: var(--text-muted); font-size: 17px; }
.faq-body a { color: var(--text); font-weight: 600; text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 3px; }
@media (max-width: 960px) { .faq-grid { grid-template-columns: 1fr; } .faq-intro { position: static; } .faq-body { padding-right: 0; } }

/* ---------- Final CTA ---------- */
.cta-band { position: relative; background: var(--orange); color: #fff; overflow: hidden; isolation: isolate; }
.cta-band .container { position: relative; display: grid; gap: 34px; padding-block: clamp(90px, 12vw, 170px); }
.cta-band h2 { font-size: clamp(54px, 9.4vw, 150px); max-width: 11ch; }
.cta-band h2 .serif-accent { color: var(--ink); display: block; }
.cta-band p { font-size: clamp(18px, 1.6vw, 22px); max-width: 520px; color: rgba(255,255,255,.9); }
.cta-band .hero-cta .btn--ghost { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); --btn-fg: #fff; }
.cta-band .hero-cta .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px #fff; background: rgba(255,255,255,.1); }
.cta-wheel {
  position: absolute;
  z-index: -1;
  right: -24%;
  top: 50%;
  width: clamp(520px, 60vw, 940px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  filter: drop-shadow(0 40px 60px rgba(120, 30, 0, .45));
}
@media (max-width: 860px) {
  .cta-wheel { right: -60%; width: 130vw; top: auto; bottom: -60vw; transform: none; opacity: .9; }
  .cta-band .container { padding-bottom: clamp(260px, 60vw, 420px); }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-ink); padding-top: clamp(72px, 9vw, 120px); overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); gap: 48px; padding-bottom: 64px; }
.footer-brand { display: grid; gap: 22px; align-content: start; max-width: 360px; }
.footer-brand p { color: var(--on-ink-muted); font-size: 15.5px; }
.footer-col h4 { font-family: var(--font-display); font-stretch: 120%; font-weight: 700; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--on-ink-muted); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a, .footer-col li { font-size: 15.5px; color: rgba(244,241,236,.86); }
.footer-col a:hover { color: var(--orange); }
.footer-col .big { font-family: var(--font-display); font-stretch: 112%; font-weight: 700; font-size: 22px; color: #fff; }
.footer-wordmark { display: block; width: 100%; height: auto; margin-bottom: -0.6%; user-select: none; overflow: visible; }
.footer-wordmark text {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 176px;
  fill: none;
  stroke: rgba(255,255,255,.16);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding-block: 26px; border-top: 1px solid var(--ink-line); font-size: 14px; color: var(--on-ink-muted); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Mobile action bar ---------- */
.action-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1.25fr;
  gap: 8px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(12,13,16,.86);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 20px 40px -12px rgba(0,0,0,.5);
  transform: translateY(140%);
  transition: transform .5s var(--ease);
}
.action-bar.is-visible { transform: none; }
.action-bar a { display: flex; align-items: center; justify-content: center; gap: 10px; height: 52px; border-radius: 15px; font-weight: 600; font-size: 15.5px; color: #fff; }
.action-bar a svg { width: 18px; height: 18px; }
.action-bar .ab-call { background: rgba(255,255,255,.08); }
.action-bar .ab-quote { background: var(--orange); }
@media (max-width: 760px) {
  .action-bar { display: grid; }
  .site-footer { padding-bottom: 90px; }
}

/* ---------- Services page ---------- */
.svc-hero { position: relative; background: var(--ink); color: var(--on-ink); overflow: hidden; isolation: isolate; }
.svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(55% 70% at 85% 60%, rgba(255, 90, 31, 0.2), transparent 62%);
}
.svc-hero .container { padding-top: clamp(40px, 5vw, 64px); }
.svc-hero-inner { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: clamp(40px, 6vw, 90px); align-items: center; padding-bottom: clamp(72px, 9vw, 130px); }
.svc-hero-copy { display: grid; gap: 26px; }
.svc-hero h1 { font-size: clamp(46px, 5.8vw, 84px); }
.svc-hero h1 .serif-accent { color: var(--orange); }
.svc-hero-wheel {
  position: absolute;
  z-index: -1;
  width: clamp(560px, 50vw, 820px);
  aspect-ratio: 1;
  right: -14%;
  bottom: -38%;
  filter: drop-shadow(0 50px 80px rgba(0, 0, 0, 0.55));
}
.svc-index {
  position: relative;
  padding: 10px;
  border-radius: 26px;
  background: rgba(20, 22, 26, 0.62);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 40px 80px -30px rgba(0, 0, 0, 0.7);
}
.svc-index-title { display: flex; justify-content: space-between; padding: 14px 16px 10px; font-family: var(--font-display); font-weight: 700; font-stretch: 118%; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--on-ink-muted); }
.svc-index a { display: grid; grid-template-columns: 30px 42px minmax(0, 1fr) 20px; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 16px; transition: background-color .25s; }
.svc-index a:hover { background: rgba(255, 255, 255, 0.06); }
.svc-index .n { font-family: var(--font-display); font-weight: 600; font-stretch: 120%; font-size: 12px; letter-spacing: .08em; color: #6d727c; }
.svc-index .i { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255, 255, 255, 0.07); color: #fff; transition: background-color .3s var(--ease); }
.svc-index a:hover .i { background: var(--orange); }
.svc-index .i svg { width: 21px; height: 21px; }
.svc-index .t { font-weight: 600; font-size: 16px; color: #fff; line-height: 1.3; }
.svc-index .t small { display: block; font-weight: 400; font-size: 13.5px; color: var(--on-ink-muted); }
.svc-index .a svg { width: 18px; height: 18px; color: #6d727c; transform: rotate(90deg); transition: transform .3s var(--ease), color .3s; }
.svc-index a:hover .a svg { color: var(--orange); transform: rotate(90deg) translateX(3px); }
@media (max-width: 980px) {
  .svc-hero-inner { grid-template-columns: 1fr; }
  .svc-hero-wheel { right: -45%; bottom: -12%; width: 640px; }
}
@media (max-width: 520px) {
  .svc-index a { grid-template-columns: 38px minmax(0, 1fr) 18px; padding: 10px; }
  .svc-index .n { display: none; }
}

.svc-detail-ico { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--bone); color: var(--ink); flex: none; }
.svc-detail-ico svg { width: 28px; height: 28px; }
.svc-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  padding-block: clamp(72px, 9vw, 128px);
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--header-h);
}
.svc-detail:first-child { border-top: 0; }
.svc-detail:nth-child(even) .svc-panel { order: -1; }
.svc-detail-main { display: grid; gap: 22px; align-content: start; }
.svc-detail-top { display: flex; align-items: center; gap: 16px; }
.svc-detail-num { font-family: var(--font-display); font-weight: 600; font-stretch: 120%; font-size: 13px; letter-spacing: .12em; color: #a9a295; }
.svc-detail h2 { font-size: clamp(38px, 4.6vw, 64px); }
.svc-detail-lede { font-size: clamp(17px, 1.4vw, 19px); color: var(--text-muted); max-width: 560px; }
.checklist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 26px; margin-top: 6px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; font-weight: 500; line-height: 1.4; }
.checklist .ck { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--orange-soft); color: var(--orange-deep); flex: none; margin-top: -1px; }
.checklist .ck svg { width: 13px; height: 13px; }
.svc-detail-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; margin-top: 14px; }
.svc-detail-cta .link-arrow svg { width: 17px; height: 17px; }

.svc-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: clamp(28px, 3.4vw, 44px);
  border-radius: 32px;
  background: var(--ink);
  color: var(--on-ink);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 50px 100px -60px rgba(12, 13, 16, 0.7);
}
.svc-panel::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(60% 55% at 100% 0%, rgba(255, 90, 31, 0.24), transparent 70%); }
.svc-panel-ico { position: absolute; z-index: -1; top: -24px; right: -24px; width: 250px; height: 250px; color: rgba(255, 255, 255, 0.07); }
.svc-panel-top { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 500; color: var(--on-ink-muted); }
.svc-panel-top .pulse-dot { color: var(--orange); }
.svc-panel-tag { font-family: var(--font-serif); font-style: italic; font-size: clamp(36px, 3.8vw, 54px); line-height: 1.02; letter-spacing: -0.01em; max-width: 11ch; margin: 22px 0 auto; }
.svc-panel dl { display: grid; margin: 40px 0 0; }
.svc-panel dl div { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 16px; padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.svc-panel dt { padding-top: 3px; font-family: var(--font-display); font-weight: 700; font-stretch: 118%; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--on-ink-muted); }
.svc-panel dd { margin: 0; font-size: 15.5px; color: #fff; }
.svc-panel .btn { align-self: flex-start; margin-top: 26px; }
.svc-panel--orange { background: var(--orange); color: #fff; box-shadow: 0 50px 100px -50px rgba(255, 90, 31, 0.6); }
.svc-panel--orange::before { display: none; }
.svc-panel--orange .svc-panel-ico { color: rgba(0, 0, 0, 0.1); }
.svc-panel--orange .svc-panel-top, .svc-panel--orange dt { color: rgba(255, 255, 255, 0.78); }
.svc-panel--orange .svc-panel-top .pulse-dot { color: #fff; }
.svc-panel--orange dl div { border-color: rgba(0, 0, 0, 0.14); }
.svc-panel--bone { background: var(--bone); color: var(--text); box-shadow: none; }
.svc-panel--bone::before { background: radial-gradient(60% 55% at 100% 0%, rgba(255, 90, 31, 0.12), transparent 70%); }
.svc-panel--bone .svc-panel-ico { color: rgba(21, 23, 27, 0.06); }
.svc-panel--bone .svc-panel-top, .svc-panel--bone dt { color: #8b857a; }
.svc-panel--bone dd { color: var(--text); }
.svc-panel--bone dl div { border-color: var(--line); }
@media (max-width: 900px) {
  .svc-detail { grid-template-columns: 1fr; gap: 36px; }
  .svc-detail:nth-child(even) .svc-panel { order: 0; }
  .svc-panel { min-height: 0; }
  .svc-panel-tag { margin-bottom: 0; }
}
@media (max-width: 520px) {
  .checklist { grid-template-columns: 1fr; }
  .svc-panel { border-radius: 24px; }
  .svc-panel dl div { grid-template-columns: 92px minmax(0, 1fr); gap: 12px; }
}

.more-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.more-card { display: grid; align-content: start; gap: 14px; padding: 28px; border-radius: var(--radius-lg); background: var(--paper); box-shadow: inset 0 0 0 1px rgba(21, 23, 27, 0.06); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.more-card:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 1px rgba(21, 23, 27, 0.08), 0 30px 60px -30px rgba(21, 23, 27, 0.35); }
.more-card .svc-detail-ico { margin-bottom: 18px; transition: background-color .4s var(--ease), color .4s var(--ease); }
.more-card:hover .svc-detail-ico { background: var(--orange); color: #fff; }
.more-card h3 { font-family: var(--font-display); font-weight: 700; font-stretch: 110%; font-size: 22px; letter-spacing: -0.02em; line-height: 1.15; }
.more-card p { color: var(--text-muted); font-size: 15.5px; }
@media (max-width: 1000px) { .more-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .more-grid { grid-template-columns: 1fr; } }

/* ---------- Quote page ---------- */
.page-hero { position: relative; background: var(--ink); color: var(--on-ink); overflow: hidden; isolation: isolate; }
.page-hero .container { padding-block: clamp(56px, 7vw, 96px) 0; }
.breadcrumbs { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--on-ink-muted); margin-bottom: 26px; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs svg { width: 14px; height: 14px; }

/* ---------- 404 ---------- */
.nf { min-height: calc(100svh - var(--header-h)); display: grid; place-items: center; text-align: center; background: var(--ink); color: var(--on-ink); position: relative; overflow: hidden; isolation: isolate; }
.nf .container { display: grid; gap: 24px; justify-items: center; padding-block: 80px; }
.nf h1 { font-size: clamp(48px, 8vw, 110px); }
.nf h1 .serif-accent { color: var(--orange); }
.nf p { color: var(--on-ink-muted); font-size: 18px; max-width: 460px; }
.nf .nf-wheel { width: 220px; height: 220px; margin-bottom: 8px; }

/* ---------- Reveal motion ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: none; }
.js .hero .reveal { transition-duration: 1.2s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
