/* ==========================================================================
   European Mobile Service — styles
   Same system as the Campbrook build: ink / bone / paper sections, one hot
   accent for actions (logo red), a second for detail (logo blue).
   ========================================================================== */

@font-face { font-family: "Archivo"; src: url("../fonts/archivo-var.woff2") format("woff2-variations"), url("../fonts/archivo-var.woff2") format("woff2"); font-weight: 100 900; font-stretch: 62% 125%; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/inter-var.woff2") format("woff2-variations"), url("../fonts/inter-var.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Instrument Serif"; src: url("../fonts/instrument-serif-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }

:root {
  --ink: #0a0e17;
  --ink-2: #121a28;
  --ink-3: #1a2334;
  --ink-line: rgba(255, 255, 255, 0.09);
  --bone: #eceff4;
  --bone-2: #e0e5ed;
  --paper: #f7f8fb;
  --line: #d5dbe5;
  --text: #0e1420;
  --text-muted: #566174;
  --on-ink: #f1f4f9;
  --on-ink-muted: #98a3b6;

  --red: #e82c24;
  --red-deep: #c4201a;
  --red-soft: #fde4e2;
  --blue: #0a70b8;
  --blue-bright: #3d98ea;
  --blue-deep: #0a5a99;
  --blue-soft: #e1edf9;
  --navy: #153a78;

  --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: 84px;
}

/* ---------- 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, video { 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, figure, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--blue-bright); 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(--red); color: #fff; padding: 10px 16px; border-radius: 999px; font-weight: 600; transition: top .2s; }
.skip-link:focus { top: 12px; }
.icon { width: 18px; height: 18px; flex: none; }

/* ---------- Type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 108%;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-wrap: balance;
}
.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-stretch: normal;
  letter-spacing: -0.01em;
}
.accent-red { color: var(--red); }
.accent-blue { color: var(--blue); }
.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(--blue);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.on-ink .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .svc-hero .eyebrow { color: var(--red); }
.section-head .serif-accent, .svc-detail h2 .serif-accent { color: var(--blue); }
.on-ink .section-head .serif-accent { color: var(--red); }

.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(--red);
  --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(232, 44, 36, 0.7); }
.btn--primary:hover { --btn-bg: var(--red-deep); box-shadow: 0 16px 40px -12px rgba(232, 44, 36, 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--ghost-dark { --btn-bg: transparent; --btn-fg: var(--text); box-shadow: inset 0 0 0 1.5px var(--line); padding: 0 26px; }
.btn--ghost-dark:hover { box-shadow: inset 0 0 0 1.5px var(--text); }
.btn--ghost-dark svg { width: 18px; height: 18px; }
.btn--dark { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--dark .btn-icon { background: var(--red); }
.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, .btn--sm.btn--ghost-dark { 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(--blue);
  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(10, 14, 23, 0.84);
  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: 28px; }

.brand { display: inline-flex; align-items: center; flex: none; }
.brand-logo { width: auto; height: 64px; transition: transform .6s var(--ease); filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .35)); }
.brand:hover .brand-logo { transform: translateY(-2px) rotate(-3deg); }

.nav { margin-left: auto; }
.nav ul { display: flex; gap: 2px; }
.nav a { display: block; padding: 10px 13px; border-radius: 999px; font-size: 15px; font-weight: 500; color: rgba(241, 244, 249, 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(--red); }
.nav .nav-cta a { margin-left: 8px; padding: 10px 18px; background: var(--red); color: #fff; font-weight: 600; box-shadow: 0 10px 24px -12px rgba(232, 44, 36, 0.8); }
.nav .nav-cta a:hover { background: var(--red-deep); }
.nav .nav-cta a[aria-current="page"] { background: #fff; color: var(--ink); box-shadow: none; }
.nav .nav-cta a[aria-current="page"]::after { display: none; }
@media (max-width: 1160px) { .nav a { padding: 10px 10px; font-size: 14.5px; } .nav .nav-cta 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; white-space: nowrap; }
.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(--red); 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: 1240px) { .header-phone .ph-num { display: none; } }
@media (max-width: 1040px) {
  .nav { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: block; }
}
@media (max-width: 520px) {
  :root { --header-h: 74px; }
  .brand-logo { height: 54px; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--ink);
  color: var(--on-ink);
  padding: calc(var(--header-h) + 56px) 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: 14px 0;
  border-bottom: 1px solid var(--ink-line);
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 112%;
  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 svg { width: 26px; height: 26px; color: var(--on-ink-muted); }
.mobile-menu nav a:hover { color: var(--red); }
.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 nav li:nth-child(6) a { transition-delay: .2s; }
.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(52% 60% at 80% 62%, rgba(232, 44, 36, 0.20), transparent 62%),
    radial-gradient(42% 50% at 62% 10%, rgba(10, 112, 184, 0.22), transparent 70%),
    radial-gradient(40% 50% at 8% 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), 860px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding-block: clamp(44px, 5vw, 76px) clamp(48px, 6vw, 88px);
}
.hero-copy { position: relative; z-index: 2; display: grid; gap: 28px; }
.hero h1 { font-size: clamp(46px, 5.9vw, 88px); }
.hero h1 .serif-accent { color: var(--red); font-size: 1.04em; line-height: .92; display: inline-block; padding-right: .06em; }
.hero-lede { font-size: clamp(18px, 1.45vw, 20.5px); line-height: 1.55; color: rgba(241, 244, 249, 0.74); max-width: 500px; }
.hero-lede strong { color: #fff; font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 16px; padding-top: 24px; border-top: 1px solid var(--ink-line); max-width: 600px; }
.hero-proof li { display: inline-flex; align-items: center; gap: 10px; font-size: 14.5px; color: rgba(241, 244, 249, 0.82); }
.hero-proof svg { width: 18px; height: 18px; color: var(--blue-bright); flex: none; }

.hero-visual { position: relative; align-self: stretch; min-height: 520px; }
.hero-van {
  position: absolute;
  z-index: 2;
  right: -16%;
  bottom: 25%;
  width: min(128%, 780px);
}
.hero-van .van-svg { width: 100%; height: auto; overflow: visible; }

/* the road the van sits on */
.road {
  position: absolute;
  left: -22%;
  right: -40vw;
  top: 96.2%;
  height: 110px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.09);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 36%);
          mask-image: linear-gradient(90deg, transparent, #000 36%);
}
.road::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 38px;
  height: 3px;
  background-image: linear-gradient(90deg, rgba(255,255,255,.34) 55%, transparent 55%);
  background-size: 64px 3px;
  background-position: var(--road, 0px) 0;
}

.van-svg { --spin: 0deg; }
.van-svg .wheel-spin { transform: rotate(var(--spin)); transform-box: view-box; transform-origin: 0 0; }
.van-svg .van-bounce { animation: van-bob 1.4s ease-in-out infinite; }
.van-svg .van-phone { font-family: var(--font-display); font-weight: 800; font-stretch: 80%; fill: #e9edf2; }
.van-svg .van-url { font-family: var(--font-display); font-weight: 700; font-stretch: 100%; fill: #e8453c; letter-spacing: .12em; }
.van-svg .van-beam { animation: beam 5s ease-in-out infinite; }
@keyframes van-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-1.6px); } }
@keyframes beam { 0%, 100% { opacity: .9; } 50% { opacity: .7; } }
.js .van-drive { animation: van-in 2.1s var(--ease) .15s both; }
@keyframes van-in { from { transform: translateX(62%); } to { transform: none; } }
.on-light .van-beam { display: none; }

.hero-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 14px;
  border-radius: 18px;
  background: rgba(18, 26, 40, 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(--red); color: #fff; flex: none; }
.hero-card .hc-ico svg { width: 20px; height: 20px; }
.hero-card--a { top: 9%; left: 4%; animation: float 7s ease-in-out infinite; }
.hero-card--b { bottom: 4%; right: 2%; animation: float 8s ease-in-out -3s infinite; }
.hero-card--b .hc-ico { background: var(--blue); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 1100px) {
  .hero-van { width: clamp(480px, 56vw, 640px); right: -10%; }
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; min-height: 0; padding-bottom: 0; }
  .hero-visual { min-height: 0; height: clamp(300px, 62vw, 480px); margin-top: 8px; }
  .hero-van { width: min(96vw, 720px); left: 50%; right: auto; transform: translateX(-46%); bottom: 22%; }
  .hero-card--a { top: 2%; left: 0; }
  .hero-card--b { bottom: 2%; right: 0; }
}
.show-xs { display: none; }
@media (max-width: 520px) {
  .hide-xs { display: none; }
  .show-xs { display: inline; }
  .hero-inner { padding-top: 30px; }
  .hero-copy { gap: 18px; }
  .hero h1 { font-size: 43px; }
  .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: 330px; margin-top: 6px; }
  .hero-van { width: 108vw; transform: translateX(-47%); bottom: 26%; }
  .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; }
  .header-phone { display: none; }
  .hero .eyebrow { letter-spacing: .12em; }
  .hero h1 { font-size: 39px; }
  .hero-lede { font-size: 16px; }
  .hero .hero-cta .btn--primary { padding-left: 18px; }
  .hero .hero-cta .btn--ghost { padding: 0 18px; }
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  background: var(--red);
  color: var(--ink);
  overflow: hidden;
  padding-block: 18px;
}
.marquee-track { display: flex; width: max-content; animation: marquee 40s 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: 26px;
  padding-right: 26px;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 84%;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-item svg { width: 16px; height: 16px; flex: none; color: #fff; }
@keyframes marquee { to { transform: translateX(-50%); } }
.stripes { display: grid; grid-template-rows: 5px 3px; }
.stripes::before { content: ""; background: var(--blue); }
.stripes::after { content: ""; background: var(--navy); }

/* ---------- 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); }
.section--tight { padding-block: clamp(72px, 8vw, 120px); }

/* ---------- 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(14, 20, 32, 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(14, 20, 32, 0.08), 0 30px 60px -30px rgba(14, 20, 32, 0.35); }
.svc h3 { font-family: var(--font-display); font-weight: 700; font-stretch: 108%; 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(--blue); color: #fff; transform: rotate(-8deg) scale(1.05); }
.svc-link { position: absolute; inset: 0; z-index: 3; border-radius: inherit; }
.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: #9aa3b2; }
.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: 640px;
  padding: 40px;
  background: var(--ink);
  color: var(--on-ink);
  box-shadow: none;
}
.svc--feature p { color: rgba(241,244,249,.78); font-size: 17px; max-width: 440px; }
.svc--feature h3 { font-size: clamp(32px, 3.4vw, 48px); font-stretch: 110%; font-weight: 800; letter-spacing: -0.03em; }
.svc--feature .svc-ico { background: rgba(255,255,255,.1); color: #fff; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.svc--feature:hover .svc-ico { background: var(--red); }
.svc--feature .chip { background: rgba(255,255,255,.1); color: var(--on-ink); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.svc--feature .feature-media { position: absolute; inset: 0; z-index: -2; }
.svc--feature .feature-media video, .svc--feature .feature-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; transform: scale(1.02); transition: transform 1.2s var(--ease); }
.svc--feature:hover .feature-media video { transform: scale(1.06); }
.svc--feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,14,23,.55) 0%, rgba(10,14,23,.05) 26%, rgba(10,14,23,.35) 52%, rgba(10,14,23,.96) 80%);
}
.svc--feature .svc-num { display: none; }
.feature-tag { position: absolute; top: 44px; left: 112px; max-width: calc(100% - 200px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px; background: rgba(10,14,23,.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); font-size: 12.5px; font-weight: 500; color: #fff; }
.feature-tag svg { width: 14px; height: 14px; }
.svc--feature:hover .feature-tag { opacity: 0; }
.svc--wide { grid-column: span 6; min-height: 250px; }
.svc--accent { background: var(--red); color: #fff; box-shadow: none; }
.svc--accent p { color: rgba(255,255,255,.9); }
.svc--accent .svc-ico { background: rgba(0,0,0,.14); color: #fff; }
.svc--accent:hover .svc-ico { background: #fff; color: var(--red); }
.svc--accent .svc-num { color: rgba(255,255,255,.72); }
.svc--accent .chip { background: rgba(0,0,0,.14); color: #fff; }
.svc--blue { background: var(--blue); color: #fff; box-shadow: none; }
.svc--blue p { color: rgba(255,255,255,.88); }
.svc--blue .svc-ico { background: rgba(0,0,0,.16); color: #fff; }
.svc--blue:hover .svc-ico { background: #fff; color: var(--blue); }
.svc--blue .svc-num { color: rgba(255,255,255,.7); }
.svc--blue .svc-go { background: #fff; color: var(--ink); }

.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: 112%; 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(--blue); }
.no-tires { grid-column: 1 / -1; display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--text-muted); padding: 0 6px; }
.no-tires svg { width: 18px; height: 18px; color: var(--red); flex: none; margin-top: 3px; }
.no-tires strong { color: var(--text); font-weight: 600; }

@media (max-width: 1060px) {
  .svc, .svc--wide { grid-column: span 6; }
  .svc--feature { grid-column: 1 / -1; grid-row: auto; min-height: 520px; }
}
@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: 560px; padding: 28px; }
  .svc--feature .svc-ico { margin-bottom: auto; }
  .feature-tag { top: 38px; left: 96px; max-width: calc(100% - 170px); }
  .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: 120%;
  font-size: 26px;
  color: #fff;
}
.step:nth-child(3) .step-num { background: var(--red); box-shadow: 0 0 0 10px var(--ink), 0 20px 50px -10px rgba(232,44,36,.6); }
.step h3 { font-family: var(--font-display); font-weight: 700; font-stretch: 110%; 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; }
.step p a { color: #fff; font-weight: 600; text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; }

.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(--blue-bright); }
.venue h4 { font-family: var(--font-display); font-weight: 700; font-stretch: 108%; 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; }
}

/* ---------- Video loops (shared) ---------- */
.loop { position: relative; overflow: hidden; background: var(--ink-2); isolation: isolate; }
.loop video, .loop img { width: 100%; height: 100%; object-fit: cover; }
.loop .loop-poster { position: absolute; inset: 0; z-index: -1; }
.loop-cap {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(10, 14, 23, 0.62);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  color: #fff;
  font-size: 13.5px;
  line-height: 1.35;
}
.loop-cap strong { font-weight: 600; font-size: 14.5px; }
.loop-cap span { color: rgba(241,244,249,.72); }
.loop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px 6px 9px;
  border-radius: 999px;
  background: rgba(10, 14, 23, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.loop-badge .pulse-dot { color: var(--red); width: 7px; height: 7px; }

/* ---------- Meet Val ---------- */
.val-grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.val-media { position: relative; max-width: 440px; }
.phone-card { aspect-ratio: 9 / 16; border-radius: 32px; box-shadow: 0 50px 100px -40px rgba(10,14,23,.55), 0 0 0 1px rgba(14,20,32,.06); }
.stat-card {
  position: absolute;
  z-index: 3;
  right: -14%;
  top: 12%;
  display: grid;
  gap: 2px;
  padding: 18px 22px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 60px -24px rgba(10,14,23,.35), inset 0 0 0 1px rgba(14,20,32,.06);
  animation: float 8s ease-in-out infinite;
}
.stat-card b { font-family: var(--font-display); font-weight: 800; font-stretch: 110%; font-size: 44px; line-height: 1; letter-spacing: -0.03em; color: var(--blue); }
.stat-card span { font-size: 13.5px; font-weight: 500; color: var(--text-muted); max-width: 150px; line-height: 1.35; }
.stat-card--b { top: auto; bottom: 16%; right: auto; left: -12%; animation-delay: -3s; }
.stat-card--b b { color: var(--red); font-size: 30px; }
.val-copy { display: grid; gap: 24px; }
.val-copy h2 { font-size: clamp(38px, 5vw, 68px); }
.val-copy h2 .serif-accent { color: var(--blue); }
.val-copy > p { font-size: 18px; color: var(--text-muted); max-width: 560px; }
.creds { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 4px; }
.cred { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; padding: 18px; border-radius: 18px; background: #fff; box-shadow: inset 0 0 0 1px rgba(14,20,32,.06); }
.cred-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); }
.cred-ico svg { width: 22px; height: 22px; }
.cred:nth-child(2) .cred-ico, .cred:nth-child(4) .cred-ico { background: var(--red-soft); color: var(--red-deep); }
.cred strong { display: block; font-weight: 600; font-size: 15.5px; line-height: 1.3; }
.cred span { display: block; font-size: 14px; color: var(--text-muted); line-height: 1.45; margin-top: 3px; }
.val-copy .btn { justify-self: start; margin-top: 6px; }
@media (max-width: 960px) {
  .val-grid { grid-template-columns: 1fr; }
  .val-media { margin-inline: auto; width: min(82%, 400px); }
}
@media (max-width: 560px) {
  .creds { grid-template-columns: 1fr; }
  .stat-card { right: -8%; padding: 14px 16px; }
  .stat-card b { font-size: 34px; }
  .stat-card--b { left: -8%; }
  .stat-card--b b { font-size: 24px; }
}

/* ---------- Recent work (reels) ---------- */
.reels-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 24px 40px; margin-bottom: clamp(36px, 5vw, 56px); }
.reels-head .section-head { margin-bottom: 0; }
.reels-ctrl { display: flex; gap: 10px; }
.reels-ctrl button { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.2); color: #fff; transition: background-color .25s, box-shadow .25s; }
.reels-ctrl button:hover { background: var(--red); box-shadow: none; }
.reels-ctrl button:disabled { opacity: .35; pointer-events: none; }
.reels-ctrl svg { width: 20px; height: 20px; }
.reels-ctrl .prev svg { transform: rotate(180deg); }
.reels {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 22vw, 290px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  padding-bottom: 8px;
  scrollbar-width: none;
}
.reels::-webkit-scrollbar { display: none; }
.reel {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--ink-2);
  isolation: isolate;
  box-shadow: inset 0 0 0 1px var(--ink-line);
}
.reel img, .reel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1s var(--ease); }
.reel:hover img, .reel:hover video { transform: scale(1.05); }
.reel::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,14,23,0) 45%, rgba(10,14,23,.9)); }
.reel-meta { position: absolute; left: 18px; right: 18px; bottom: 18px; display: grid; gap: 4px; color: #fff; }
.reel-meta small { font-family: var(--font-display); font-stretch: 118%; font-weight: 700; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--blue-bright); }
.reel-meta strong { font-family: var(--font-display); font-stretch: 106%; font-weight: 700; font-size: 19px; line-height: 1.15; letter-spacing: -0.01em; }
.reel-meta span { font-size: 14px; color: rgba(241,244,249,.78); line-height: 1.35; }
.reel-ig { position: absolute; top: 14px; right: 14px; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(10,14,23,.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; opacity: .9; transition: background-color .25s; }
.reel-ig svg { width: 17px; height: 17px; }
.reel:hover .reel-ig { background: var(--red); }
.reel--end { display: grid; place-items: center; text-align: center; padding: 24px; background: var(--red); box-shadow: none; }
.reel--end::after { display: none; }
.reel--end div { display: grid; gap: 16px; justify-items: center; color: #fff; }
.reel--end strong { font-family: var(--font-display); font-stretch: 108%; font-weight: 800; font-size: 28px; line-height: 1.05; letter-spacing: -0.02em; }
.reel--end span { font-size: 14.5px; color: rgba(255,255,255,.85); }
.reel--end .round { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: #fff; color: var(--red); transition: transform .5s var(--ease); }
.reel--end:hover .round { transform: rotate(-45deg); }
.reel--end .round svg { width: 24px; height: 24px; }
.reels-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 32px; color: var(--on-ink-muted); font-size: 15px; }
.reels-foot a { color: #fff; }

/* ---------- 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 h2 .serif-accent { color: var(--blue); }
.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(14,20,32,.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(--red); color: #fff; display: flex; align-items: center; gap: 10px; }
.compare-head .us svg { width: 20px; height: 20px; }
.compare-head .them { color: var(--on-ink-muted); }
.compare-row { border-top: 1px solid #e8ecf2; }
.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: #858d9b; display: flex; gap: 10px; }
.compare-row .us { background: #f6f9fe; 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: #bdc4cf; }
.compare-row .us svg { color: var(--blue); }
@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, 0.95fr); 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 h2 .serif-accent { color: var(--blue); }
.area-copy > p { color: var(--text-muted); font-size: 18px; max-width: 520px; }
.area-groups { display: grid; gap: 18px; margin-top: 4px; }
.area-groups h3 { font-family: var(--font-display); font-stretch: 118%; font-weight: 700; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.cities { display: flex; flex-wrap: wrap; gap: 8px; }
.cities li {
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(14,20,32,.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.end { background: var(--red); 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(--blue); flex: none; margin-top: 2px; }
.area-note a { color: var(--text); font-weight: 600; text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; }

.map-panel {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: 36px;
  background: var(--ink);
  overflow: hidden;
  box-shadow: 0 50px 100px -50px rgba(10,14,23,.6);
  isolation: isolate;
}
.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(60% 50% at 50% 50%, rgba(10,112,184,.18), transparent 65%);
}
.map-svg { position: relative; z-index: 1; width: 100%; height: 100%; }
.map-svg .ocean { fill: url(#oceanGrad); }
.map-svg .land { fill: #121a28; stroke: rgba(255,255,255,.14); stroke-width: 1.2; }
.map-svg .island { fill: #121a28; stroke: rgba(255,255,255,.14); stroke-width: 1; }
.map-svg .grid-line { stroke: rgba(255,255,255,.04); stroke-width: 1; }
.map-svg .hwy { fill: none; stroke: rgba(255,255,255,.16); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.map-svg .hwy-label { fill: #707a8c; font: 700 9.5px var(--font-display); letter-spacing: .08em; }
.map-svg .route { fill: none; stroke: var(--red); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 2 9; }
.map-svg .route-glow { fill: none; stroke: rgba(232,44,36,.22); stroke-width: 12; stroke-linecap: round; }
.map-svg .county { fill: #5f6a7d; font: 700 10px var(--font-display); font-stretch: 120%; letter-spacing: .22em; }
.map-svg .water-label { fill: #3f5a7c; font: italic 400 16px var(--font-serif); letter-spacing: .02em; }
.map-svg .city circle { fill: #fff; transition: r .3s var(--ease), fill .3s; }
.map-svg .city text { fill: #b9c0cc; font: 500 12.5px var(--font-body); transition: fill .3s; }
.map-svg .city.is-active circle { fill: var(--blue-bright); r: 6.5; }
.map-svg .city.is-active text { fill: #fff; }
.map-svg .city.end circle { fill: var(--red); r: 6; }
.map-svg .city.end text { fill: #fff; font-weight: 700; font-size: 14px; }
.map-svg .van-dot circle.halo { fill: var(--red); opacity: .25; transform-box: fill-box; transform-origin: center; animation: hq 2.4s var(--ease) infinite; }
@keyframes hq { 0% { transform: scale(1); opacity: .45; } 100% { transform: scale(3.2); opacity: 0; } }
.map-legend {
  position: absolute;
  left: 20px;
  bottom: 20px;
  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: #d7dbe2;
  font-size: 13px;
}
.map-legend .pulse-dot { color: var(--red); }
@media (max-width: 960px) { .area { grid-template-columns: 1fr; } .map-panel { max-width: 560px; width: 100%; margin-inline: auto; } }
@media (max-width: 520px) { .map-panel { border-radius: 26px; } }

/* ---------- Quote / booking ---------- */
.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(10,112,184,.22), transparent 60%), radial-gradient(40% 50% at 100% 100%, rgba(232,44,36,.14), 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 h1, .quote-copy h2 { font-size: clamp(44px, 5.6vw, 82px); }
.quote-copy .serif-accent { color: var(--red); }
.quote-copy > p { color: var(--on-ink-muted); font-size: 18px; max-width: 470px; }
.quote-list { display: grid; gap: 14px; }
.quote-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: rgba(241,244,249,.86); }
.quote-list .qi { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(61,152,234,.16); color: var(--blue-bright); 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(232,44,36,.5); }
.call-card .cc-ico { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--red); 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: 110%; 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::before { content: ""; position: absolute; left: 40px; right: 40px; top: 0; height: 5px; border-radius: 0 0 6px 6px; background: linear-gradient(90deg, var(--red) 0 45%, var(--navy) 45% 55%, var(--blue) 55%); }
.quote-card-head { display: flex; flex-wrap: wrap; 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 h2, .quote-card-head h3 { font-family: var(--font-display); font-weight: 800; font-stretch: 112%; 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; }
.qe-slot { min-height: 560px; }
.qe-fallback { display: none; padding: 24px; border-radius: 18px; background: #fff; font-size: 15px; color: var(--text-muted); }
.qe-fallback a { color: var(--text); font-weight: 600; text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; }
.qe-slot.is-empty .qe-fallback { display: block; }
@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); }
}

/* ---------- 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 h2 .serif-accent { color: var(--blue); }
.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: 106%;
  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(--blue); }
.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(--red); 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(--red); color: #fff; overflow: hidden; isolation: isolate; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(60% 80% at 85% 70%, rgba(255,255,255,.14), transparent 60%); }
.cta-band .container { position: relative; display: grid; gap: 34px; padding-block: clamp(90px, 12vw, 170px) clamp(90px, 12vw, 150px); }
.cta-band h2 { font-size: clamp(54px, 9vw, 144px); 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,.92); }
.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-van {
  position: absolute;
  z-index: -1;
  right: 4%;
  bottom: 12%;
  width: clamp(460px, 44vw, 760px);
}
.cta-van .van-svg { width: 100%; height: auto; overflow: visible; }
.cta-van .van-shadow { opacity: .7; }
.cta-road { position: absolute; z-index: -1; left: -40%; right: -30%; top: 96.3%; height: 2px; background-image: linear-gradient(90deg, rgba(255,255,255,.55) 55%, transparent 55%); background-size: 56px 2px; background-position: var(--road, 0px) 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 30%); mask-image: linear-gradient(90deg, transparent, #000 30%); }
.js .cta-van .van-drive { animation: none; transform: translateX(70%); transition: transform 2.2s var(--ease); }
.js .cta-van.in .van-drive { transform: none; }
@media (max-width: 860px) {
  .cta-van { right: 50%; transform: translateX(50%); width: 118vw; bottom: 4%; }
  .cta-band .container { padding-bottom: clamp(260px, 62vw, 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 .brand-logo { height: 96px; }
.footer-brand p { color: var(--on-ink-muted); font-size: 15.5px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px 10px 12px; border-radius: 999px; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.16); font-size: 14.5px; font-weight: 500; transition: background-color .25s, box-shadow .25s; }
.footer-social a:hover { background: var(--red); box-shadow: none; }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--font-display); font-stretch: 118%; 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(241,244,249,.86); }
.footer-col a:hover { color: var(--red); }
.footer-col .big { font-family: var(--font-display); font-stretch: 110%; font-weight: 700; font-size: 22px; color: #fff; }
.footer-wordmark { display: block; width: 100%; height: auto; margin-bottom: -0.4%; user-select: none; overflow: visible; }
.footer-wordmark text {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 80%;
  font-size: 196px;
  fill: none;
  stroke: rgba(255,255,255,.16);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  letter-spacing: -2px;
}
.footer-wordmark:hover text { stroke: rgba(232,44,36,.6); }
.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(10,14,23,.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-book { background: var(--red); }
@media (max-width: 760px) {
  .action-bar { display: grid; }
  .site-footer { padding-bottom: 90px; }
}

/* ---------- Inner page heroes ---------- */
.page-hero, .svc-hero { position: relative; background: var(--ink); color: var(--on-ink); overflow: hidden; isolation: isolate; }
.page-hero::before, .svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(55% 70% at 85% 60%, rgba(232, 44, 36, 0.16), transparent 62%), radial-gradient(45% 60% at 20% 0%, rgba(10,112,184,.2), transparent 65%);
}
.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; }
.page-hero .container { padding-block: clamp(40px, 5vw, 64px) clamp(72px, 9vw, 120px); }
.page-hero-inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(40px, 6vw, 90px); align-items: center; }
.page-hero-copy { display: grid; gap: 26px; }
.page-hero h1 { font-size: clamp(46px, 5.8vw, 86px); }
.page-hero h1 .serif-accent { color: var(--red); }
@media (max-width: 980px) { .page-hero-inner { grid-template-columns: 1fr; } }

/* services hero */
.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(--red); }
.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));
  opacity: .9;
}
.big-wheel { width: 100%; height: 100%; overflow: visible; }
.big-wheel .wheel-spin { transform: rotate(var(--spin, 0deg)); transform-box: view-box; transform-origin: 0 0; }
.svc-index {
  position: relative;
  padding: 10px;
  border-radius: 26px;
  background: rgba(18, 26, 40, 0.64);
  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: #6f7a8c; }
.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(--red); }
.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: #6f7a8c; transform: rotate(90deg); transition: transform .3s var(--ease), color .3s; }
.svc-index a:hover .a svg { color: var(--red); 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; }
}

/* ---------- Service detail ---------- */
.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.95fr);
  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: #9aa3b2; }
.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(--blue-soft); color: var(--blue); 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 { color: var(--text); }
.svc-detail-cta .link-arrow svg { width: 17px; height: 17px; }

.svc-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 26px;
  min-height: 470px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 32px;
  background: var(--ink);
  color: var(--on-ink);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 50px 100px -60px rgba(10, 14, 23, 0.7);
}
.svc-panel::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(60% 55% at 100% 0%, rgba(10, 112, 184, 0.28), transparent 70%); }
.svc-panel-body { display: flex; flex-direction: column; min-width: 0; }
.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(--red); }
.svc-panel-tag { font-family: var(--font-serif); font-style: italic; font-size: clamp(32px, 3.2vw, 46px); line-height: 1.04; letter-spacing: -0.01em; margin: 20px 0 auto; }
.svc-panel dl { display: grid; margin: 30px 0 0; }
.svc-panel dl div { display: grid; gap: 4px; padding: 12px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.svc-panel dt { font-family: var(--font-display); font-weight: 700; font-stretch: 118%; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--on-ink-muted); }
.svc-panel dd { margin: 0; font-size: 14.5px; color: #fff; line-height: 1.45; }
.svc-panel dd a { text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 3px; }
.svc-panel .jobs { display: grid; gap: 6px; }
.svc-panel .jobs li { line-height: 1.35; }
.svc-panel dd a:hover { text-decoration-color: var(--red); }
.svc-panel .loop { border-radius: 22px; aspect-ratio: 9 / 16; align-self: center; box-shadow: 0 30px 60px -30px rgba(0,0,0,.8), inset 0 0 0 1px rgba(255,255,255,.08); }
.svc-panel--red { background: var(--red); box-shadow: 0 50px 100px -50px rgba(232, 44, 36, 0.6); }
.svc-panel--red::before { display: none; }
.svc-panel--red .svc-panel-top, .svc-panel--red dt { color: rgba(255, 255, 255, 0.8); }
.svc-panel--red .svc-panel-top .pulse-dot { color: #fff; }
.svc-panel--red dl div { border-color: rgba(0, 0, 0, 0.14); }
.svc-panel--blue { background: var(--blue); box-shadow: 0 50px 100px -50px rgba(10, 112, 184, 0.6); }
.svc-panel--blue::before { display: none; }
.svc-panel--blue .svc-panel-top, .svc-panel--blue dt { color: rgba(255, 255, 255, 0.8); }
.svc-panel--blue .svc-panel-top .pulse-dot { color: #fff; }
.svc-panel--blue dl div { border-color: rgba(0, 0, 0, 0.14); }
@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; }
}
@media (max-width: 560px) {
  .checklist { grid-template-columns: 1fr; }
  .svc-panel { grid-template-columns: 1fr; border-radius: 24px; }
  .svc-panel .loop { max-width: 260px; width: 100%; justify-self: center; order: -1; }
  .svc-panel-tag { margin-bottom: 0; }
}

.more-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.more-card { display: grid; align-content: start; gap: 12px; padding: 28px; border-radius: var(--radius-lg); background: var(--paper); box-shadow: inset 0 0 0 1px rgba(14, 20, 32, 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(14, 20, 32, 0.08), 0 30px 60px -30px rgba(14, 20, 32, 0.35); }
.more-card .svc-detail-ico { margin-bottom: 16px; transition: background-color .4s var(--ease), color .4s var(--ease); }
.more-card:hover .svc-detail-ico { background: var(--blue); color: #fff; }
.more-card h3 { font-family: var(--font-display); font-weight: 700; font-stretch: 108%; font-size: 21px; letter-spacing: -0.02em; line-height: 1.15; }
.more-card p { color: var(--text-muted); font-size: 15.5px; }
.more-card--note { background: transparent; box-shadow: inset 0 0 0 1.5px var(--line); }
.more-card--note .svc-detail-ico { background: var(--red-soft); color: var(--red-deep); }
@media (max-width: 1000px) { .more-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .more-grid { grid-template-columns: 1fr; } }

.makes { display: flex; flex-wrap: wrap; gap: 10px; }
.makes li { padding: 12px 20px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1px rgba(14,20,32,.07); font-family: var(--font-display); font-stretch: 106%; font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.makes li.lead { background: var(--ink); color: #fff; box-shadow: none; }
.makes li.lead small { font-family: var(--font-body); font-weight: 500; font-size: 13px; color: var(--blue-bright); margin-left: 8px; letter-spacing: 0; }
.makes-wrap { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 90px); align-items: center; }
.makes-wrap h2 { font-size: clamp(34px, 4.4vw, 58px); }
.makes-wrap h2 .serif-accent { color: var(--blue); }
.makes-wrap p { color: var(--text-muted); font-size: 18px; margin-top: 18px; max-width: 460px; }
@media (max-width: 900px) { .makes-wrap { grid-template-columns: 1fr; } }

/* ---------- Work page ---------- */
.work-hero-stack { position: relative; height: clamp(320px, 30vw, 420px); }
.work-hero-stack .reel { position: absolute; width: 44%; box-shadow: 0 40px 80px -30px rgba(0,0,0,.7), inset 0 0 0 1px var(--ink-line); }
.work-hero-stack .reel:nth-child(1) { left: 2%; top: 10%; transform: rotate(-7deg); }
.work-hero-stack .reel:nth-child(2) { left: 30%; top: 0; z-index: 2; transform: rotate(2deg); }
.work-hero-stack .reel:nth-child(3) { left: 56%; top: 12%; transform: rotate(8deg); }
@media (max-width: 980px) { .work-hero-stack { width: min(100%, 520px); margin-inline: auto; height: 340px; } }
@media (max-width: 520px) { .work-hero-stack { height: 250px; } }
.stat-row { display: flex; flex-wrap: wrap; gap: 10px 34px; padding-top: 24px; border-top: 1px solid var(--ink-line); }
.stat-row div { display: grid; gap: 2px; }
.stat-row b { font-family: var(--font-display); font-weight: 800; font-stretch: 110%; font-size: 34px; line-height: 1; color: #fff; letter-spacing: -0.02em; }
.stat-row span { font-size: 13.5px; color: var(--on-ink-muted); }

.loops-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.loops-grid .loop { aspect-ratio: 9 / 16; border-radius: 24px; box-shadow: inset 0 0 0 1px rgba(14,20,32,.06); }
.loops-grid .loop:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.loops-ig { grid-column: span 2; display: grid; align-content: end; gap: 10px; padding: 30px; border-radius: 24px; background: var(--ink); color: #fff; position: relative; overflow: hidden; isolation: isolate; transition: transform .5s var(--ease); }
.loops-ig::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 80% at 100% 0%, rgba(232,44,36,.35), transparent 60%), radial-gradient(60% 70% at 0% 100%, rgba(10,112,184,.35), transparent 60%); }
.loops-ig:hover { transform: translateY(-5px); }
.loops-ig .ig-ico { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 18px; background: linear-gradient(135deg, var(--red), var(--blue)); margin-bottom: auto; }
.loops-ig .ig-ico svg { width: 26px; height: 26px; }
.loops-ig strong { font-family: var(--font-display); font-stretch: 108%; font-weight: 800; font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.02em; line-height: 1.05; }
.loops-ig > span:not(.ig-ico):not(.link-arrow) { color: var(--on-ink-muted); font-size: 15.5px; }
.loops-ig .link-arrow { color: #fff; margin-top: 6px; }
@media (max-width: 900px) { .loops-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .loops-grid .loop:nth-child(1) { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 4 / 5; } .loops-ig { grid-column: 1 / -1; min-height: 240px; } }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filters button { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1px rgba(14,20,32,.08); font-size: 15px; font-weight: 600; transition: background-color .25s, color .25s, box-shadow .25s; }
.filters button span { font-weight: 500; font-size: 13px; color: var(--text-muted); }
.filters button:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.filters button[aria-pressed="true"] { background: var(--ink); color: #fff; box-shadow: none; }
.filters button[aria-pressed="true"] span { color: rgba(255,255,255,.6); }
.work-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.work-grid .reel { box-shadow: none; }
.work-grid .reel.is-hidden { display: none; }
.work-grid .reel-meta small { color: #8fc2f5; }
.cat { position: absolute; top: 14px; left: 14px; padding: 6px 11px; border-radius: 999px; background: rgba(10,14,23,.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; font-size: 12px; font-weight: 600; }
@media (max-width: 1000px) { .work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px) { .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .work-grid .reel-meta strong { font-size: 16px; } .work-grid .reel-meta span { font-size: 13px; } .work-grid .reel-meta { left: 14px; right: 14px; bottom: 14px; } }

.ig-band { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; padding: clamp(24px, 3vw, 36px); border-radius: 30px; background: var(--ink); color: #fff; margin-top: clamp(48px, 6vw, 72px); }
.ig-band .ig-ico { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 20px; background: linear-gradient(135deg, var(--red), var(--blue)); }
.ig-band .ig-ico svg { width: 30px; height: 30px; }
.ig-band strong { display: block; font-family: var(--font-display); font-stretch: 108%; font-weight: 800; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em; line-height: 1.1; }
.ig-band span { color: var(--on-ink-muted); font-size: 15.5px; }
@media (max-width: 760px) { .ig-band { grid-template-columns: 1fr; } }

/* ---------- About page ---------- */
.story { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(40px, 7vw, 110px); align-items: start; }
.story-copy { display: grid; gap: 22px; font-size: 18.5px; color: var(--text-muted); }
.story-copy .lead { font-family: var(--font-display); font-weight: 700; font-stretch: 104%; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.25; letter-spacing: -0.02em; color: var(--text); }
.story-copy strong { color: var(--text); font-weight: 600; }
.story-quote { position: relative; padding: 28px 30px; border-radius: 24px; background: var(--ink); color: #fff; }
.story-quote p { font-family: var(--font-serif); font-style: italic; font-size: clamp(24px, 2.3vw, 30px); line-height: 1.25; }
.story-quote footer { margin-top: 14px; font-size: 14px; color: var(--on-ink-muted); }
.story-quote footer a { color: #fff; text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; }

.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 21px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(180deg, var(--blue), var(--red)); border-radius: 2px; }
.tl { position: relative; display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 0 0 32px; }
.tl:last-child { padding-bottom: 0; }
.tl-dot { position: relative; z-index: 1; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 6px var(--paper), inset 0 0 0 2px var(--blue); color: var(--blue); }
.tl:nth-child(n+3) .tl-dot { box-shadow: 0 0 0 6px var(--paper), inset 0 0 0 2px var(--red); color: var(--red); }
.tl:last-child .tl-dot { background: var(--red); color: #fff; box-shadow: 0 0 0 6px var(--paper); }
.tl-dot svg { width: 20px; height: 20px; }
.tl small { display: block; font-family: var(--font-display); font-stretch: 118%; font-weight: 700; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
.tl h3 { font-family: var(--font-display); font-weight: 700; font-stretch: 106%; font-size: 22px; letter-spacing: -0.015em; line-height: 1.2; margin: 4px 0 6px; }
.tl p { font-size: 16px; color: var(--text-muted); }
@media (max-width: 900px) { .story { grid-template-columns: 1fr; } }

.values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.value { display: grid; gap: 14px; align-content: start; padding: 32px; border-radius: var(--radius-lg); background: var(--ink-2); box-shadow: inset 0 0 0 1px var(--ink-line); }
.value .num { font-family: var(--font-display); font-weight: 800; font-stretch: 120%; font-size: 14px; letter-spacing: .1em; color: var(--red); }
.value h3 { font-family: var(--font-display); font-weight: 700; font-stretch: 108%; font-size: 26px; letter-spacing: -0.02em; line-height: 1.1; }
.value p { color: var(--on-ink-muted); font-size: 16px; }
@media (max-width: 900px) { .values { grid-template-columns: 1fr; } }

.van-feature { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.van-stage { position: relative; padding: clamp(40px, 6vw, 70px) clamp(12px, 3vw, 40px) clamp(28px, 4vw, 44px); border-radius: 36px; background: linear-gradient(180deg, #fff, var(--bone)); box-shadow: inset 0 0 0 1px rgba(14,20,32,.06); overflow: hidden; }
.van-stage .van-svg { width: 100%; height: auto; overflow: visible; }
.van-stage .ground { position: absolute; left: 0; right: 0; bottom: clamp(28px, 4vw, 44px); height: 1px; background: linear-gradient(90deg, transparent, rgba(14,20,32,.18), transparent); }
.kit { display: grid; gap: 12px; }
.kit li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.kit li:last-child { border-bottom: 0; }
.kit .k-ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); }
.kit .k-ico svg { width: 20px; height: 20px; }
.kit strong { display: block; font-weight: 600; font-size: 16px; }
.kit span { display: block; font-size: 14.5px; color: var(--text-muted); }
@media (max-width: 960px) { .van-feature { grid-template-columns: 1fr; } }

.anniv { display: grid; grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr); gap: clamp(28px, 5vw, 70px); align-items: center; }
.anniv .reel { max-width: 320px; }
.anniv h2 { font-size: clamp(34px, 4.4vw, 58px); }
.anniv h2 .serif-accent { color: var(--red); }
.anniv p { color: var(--on-ink-muted); font-size: 18px; margin-top: 18px; max-width: 540px; }
.anniv .hero-cta { margin-top: 26px; }
@media (max-width: 760px) { .anniv { grid-template-columns: 1fr; } .anniv .reel { width: 70%; } }

/* ---------- 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(--red); }
.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; }
  .js .van-drive, .js .cta-van .van-drive { animation: none; transform: none; }
}

/* ---------- Google reviews ---------- */
.google-rating { max-width: 100%; justify-self: start; }
.google-rating-link { display: inline-flex; align-items: center; gap: 16px; max-width: 100%; min-height: 58px; padding: 10px 16px; border-radius: 16px; background: #fff; color: var(--text); box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow .2s; }
.google-rating-link:hover { box-shadow: inset 0 0 0 1px var(--blue); }
.google-rating-logo { width: auto; height: 18px; flex: none; }
.google-rating-copy { display: grid; gap: 2px; min-width: 0; }
.google-rating-score { display: flex; align-items: center; gap: 8px; line-height: 1.2; }
.google-rating-score strong { font-size: 18px; font-weight: 750; }
.google-rating-score .reviews-stars { font-size: 15px; letter-spacing: 1px; white-space: nowrap; }
.google-rating-count { font-size: 12px; font-weight: 500; line-height: 1.4; }
.google-rating-providers { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; font-size: 11px; }
.google-rating-providers a { text-decoration: underline; }
.google-rating [hidden] { display: none; }
.google-rating--hero .google-rating-link { box-shadow: none; }
.google-rating--hero .google-rating-link:hover { box-shadow: 0 0 0 2px var(--blue-bright); }
@media (max-width: 520px) {
  .google-rating-link { gap: 12px; padding: 9px 12px; }
  .quote-card-head { gap: 12px; }
}
.reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.reviews-heading .eyebrow { margin-bottom: 20px; }
.reviews-heading h2 { max-width: 650px; font-size: clamp(40px, 5.6vw, 72px); }
.reviews-heading h2 .serif-accent { color: var(--blue); }
.reviews-heading > a { flex: none; font-size: 14px; margin-bottom: 4px; }
.reviews-summary { display: flex; align-items: center; gap: 24px; margin-top: 40px; }
.reviews-score { display: flex; align-items: baseline; gap: 8px; }
.reviews-score strong { font-family: var(--font-display); font-size: 72px; line-height: 1; letter-spacing: -.06em; }
.reviews-score > span { font-size: 20px; color: var(--text-muted); }
.reviews-stars, .review-stars { font-size: 20px; letter-spacing: 3px; color: #9d6600; }
.reviews-stars { background: linear-gradient(90deg, #9d6600 var(--rating-fill, 0%), #bac2ce var(--rating-fill, 0%)); background-clip: text; -webkit-background-clip: text; color: transparent; }
.reviews-total p { font-size: 14px; font-weight: 600; }
.reviews-attribution { height: 18px; width: auto; margin: 10px 10px 5px; }
.reviews-note, .reviews-status { font-size: 14px; color: var(--text-muted); margin-top: 24px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; gap: 20px; margin-top: 24px; }
.reviews-grid:empty { display: none; }
.review-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; min-width: 0; }
.review-author { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.review-avatar { flex: none; width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.review-author h3 { font-size: 15px; font-weight: 650; line-height: 1.35; overflow-wrap: anywhere; }
.review-author time { font-size: 12px; color: var(--text-muted); }
.review-text { font-size: 16px; line-height: 1.65; margin: 12px 0 20px; white-space: pre-line; overflow-wrap: anywhere; }
.review-text.is-collapsed { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.review-expand { display: block; padding: 0; margin: -8px 0 20px; font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.review-no-text { margin: 12px 0 20px; font-size: 14px; color: var(--text-muted); }
.review-source { display: inline-block; font-size: 12px; color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; }
.reviews-updated { margin-top: 20px; font-size: 12px; color: var(--text-muted); }
.reviews-providers { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; font-size: 12px; }
.reviews-terms { margin-top: 16px; font-size: 12px; color: var(--text-muted); }
.reviews-terms a, .reviews-providers a { text-decoration: underline; text-underline-offset: 3px; }
.reviews-section [hidden] { display: none; }
@media (max-width: 960px) {
  .reviews-heading { align-items: start; flex-direction: column; gap: 20px; }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { margin-top: 28px; gap: 20px; }
  .reviews-score strong { font-size: 60px; }
  .review-card { padding: 24px; }
}

/* ---------- Booking page: put the form first on mobile ---------- */
.quote-section--page { padding-top: clamp(48px, 6vw, 88px); }
@media (max-width: 960px) {
  .quote-section--page { padding-block: 12px 32px; }
  .quote-section--page .quote-breadcrumbs,
  .quote-section--page .quote-copy > :not(h1),
  .quote-section--page .quote-card-head p { display: none; }
  .quote-section--page .quote-card-head { padding: 8px 4px 14px; margin-bottom: 12px; }
  .quote-section--page .quote-grid { gap: 0; padding-inline: 12px; }
  .quote-section--page .quote-copy { display: contents; }
  /* Keep the page heading available to screen readers without delaying the form. */
  .quote-section--page .quote-copy h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .quote-section--page .quote-card { padding: 12px; margin-inline: 0; border-radius: 20px; }
  .quote-section--page .quote-card::before { display: none; }
}
