/* ==========================================================================
   My Mobile Mechanic Steve — styles
   Built on the European Mobile system (ink / bone / paper sections, one hot
   accent for actions, one for detail), re-skinned in Steve's neon: hot pink
   for actions, electric cyan for detail, violet in between. Oxanium for
   headlines, Audiowide for the wordmark, Yellowtail for the neon script.
   ========================================================================== */

@font-face { font-family: "Oxanium"; src: url("../fonts/oxanium-var.woff2") format("woff2-variations"), url("../fonts/oxanium-var.woff2") format("woff2"); font-weight: 200 800; 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: "Audiowide"; src: url("../fonts/audiowide.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Yellowtail"; src: url("../fonts/yellowtail.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }

:root {
  --ink: #08070f;
  --ink-2: #110f1d;
  --ink-3: #1a1729;
  --ink-line: rgba(255, 255, 255, 0.09);
  --bone: #eeedf5;
  --bone-2: #e3e1ee;
  --paper: #f8f7fc;
  --line: #dcd9e8;
  --text: #0f0d1a;
  --text-muted: #5b5870;
  --on-ink: #f3f1fa;
  --on-ink-muted: #a3a0b8;

  --pink: #e3137e;
  --pink-bright: #ff4fb0;
  --pink-deep: #c00d69;
  --pink-soft: #ffe3f1;
  --cyan: #0a84c2;
  --cyan-bright: #33cfff;
  --cyan-deep: #086a9c;
  --cyan-soft: #dff3fd;
  --violet: #8b5cff;
  --neon: linear-gradient(90deg, #33cfff 0%, #8b5cff 52%, #ff3fa4 100%);

  --font-display: "Oxanium", "Arial Narrow", Arial, sans-serif;
  --font-logo: "Audiowide", "Oxanium", Arial, sans-serif;
  --font-script: "Yellowtail", "Brush Script MT", cursive;
  --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(--pink); color: #fff; }
:focus-visible { outline: 2px solid var(--cyan-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(--pink); 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;
  letter-spacing: -0.02em;
  line-height: 1;
  text-wrap: balance;
}
/* neon script accent, like the phone number on Steve's logo */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .9;
  display: inline-block;
  padding: 0 .08em .06em 0;
  font-size: 1.12em;
  color: var(--pink);
}
.on-ink .script, .hero .script, .page-hero .script, .svc-hero .script { color: var(--pink-bright); text-shadow: 0 0 22px rgba(255, 63, 164, .55), 0 0 2px rgba(255, 63, 164, .4); }
.accent-red { color: var(--pink); }
.accent-blue { color: var(--cyan); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}
.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(--cyan-bright); }
.section-head .script, .svc-detail h2 .script { color: var(--cyan); }
.on-ink .section-head .script { color: var(--pink); }

.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(--pink);
  --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, 46, 151, 0.7); }
.btn--primary:hover { --btn-bg: var(--pink-deep); box-shadow: 0 16px 40px -12px rgba(255, 46, 151, 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(--pink); }
.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(--cyan);
  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(8, 7, 15, 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 { gap: 12px; }
.brand-mark { width: auto; height: 44px; transition: transform .6s var(--ease); }
.brand:hover .brand-mark { transform: translateX(4px); }
.brand-word { display: grid; font-family: var(--font-logo); font-size: 14.5px; line-height: 1.08; letter-spacing: .04em; text-transform: uppercase; color: #6fdcff; }
.brand-word span:last-child { background: var(--neon); -webkit-background-clip: text; background-clip: text; color: transparent; }

.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(243, 241, 250, 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(--pink); }
.nav .nav-cta a { margin-left: 8px; padding: 10px 18px; background: var(--pink); color: #fff; font-weight: 600; box-shadow: 0 10px 24px -12px rgba(255, 46, 151, 0.8); }
.nav .nav-cta a:hover { background: var(--pink-deep); }

@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(--pink); 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-mark { height: 36px; }
  .brand-word { font-size: 12.5px; }
}

.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-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(--pink); }
.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(255, 46, 151, 0.20), transparent 62%),
    radial-gradient(42% 50% at 62% 10%, rgba(31, 184, 245, 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 .script { color: var(--pink); 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(243, 241, 250, 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(243, 241, 250, 0.82); }
.hero-proof svg { width: 18px; height: 18px; color: var(--cyan-bright); flex: none; }

.hero-visual { position: relative; align-self: stretch; min-height: 520px; }

/* the road the van sits on */

.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, 17, 34, 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(--pink); 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(--cyan); }
@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 { min-height: 0; height: clamp(300px, 62vw, 480px); margin-top: 8px; }
  
  .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-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(--pink);
  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-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%); } }

/* ---------- 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(15, 13, 26, 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(15, 13, 26, 0.08), 0 30px 60px -30px rgba(15, 13, 26, 0.35); }
.svc h3 { font-family: var(--font-display); font-weight: 700; 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(--cyan); 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-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(243, 241, 250,.78); font-size: 17px; max-width: 440px; }
.svc--feature h3 { font-size: clamp(32px, 3.4vw, 48px); 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(--pink); }
.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(8, 7, 15,.55) 0%, rgba(8, 7, 15,.05) 26%, rgba(8, 7, 15,.35) 52%, rgba(8, 7, 15,.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(8, 7, 15,.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(--pink); 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(--pink); }
.svc--accent .svc-num { color: rgba(255,255,255,.72); }
.svc--accent .chip { background: rgba(0,0,0,.14); color: #fff; }
.svc--cyan { background: var(--cyan); color: #fff; box-shadow: none; }
.svc--cyan p { color: rgba(255,255,255,.88); }
.svc--cyan .svc-ico { background: rgba(0,0,0,.16); color: #fff; }
.svc--cyan:hover .svc-ico { background: #fff; color: var(--cyan); }
.svc--cyan .svc-num { color: rgba(255,255,255,.7); }
.svc--cyan .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-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(--cyan); }

@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-size: 26px;
  color: #fff;
}
.step:nth-child(3) .step-num { background: var(--pink); box-shadow: 0 0 0 10px var(--ink), 0 20px 50px -10px rgba(255, 46, 151,.6); }
.step h3 { font-family: var(--font-display); font-weight: 700; 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(--pink); 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(--cyan-bright); }
.venue h4 { font-family: var(--font-display); font-weight: 700; 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(8, 7, 15, 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(243, 241, 250,.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(8, 7, 15, 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(--pink); 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(8, 7, 15,.55), 0 0 0 1px rgba(15, 13, 26,.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(8, 7, 15,.35), inset 0 0 0 1px rgba(15, 13, 26,.06);
  animation: float 8s ease-in-out infinite;
}
.stat-card b { font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1; letter-spacing: -0.03em; color: var(--cyan); }
.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(--pink); font-size: 30px; }
.val-copy { display: grid; gap: 24px; }
.val-copy h2 { font-size: clamp(38px, 5vw, 68px); }
.val-copy h2 .script { color: var(--cyan); }
.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(15, 13, 26,.06); }
.cred-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--cyan-soft); color: var(--cyan); }
.cred-ico svg { width: 22px; height: 22px; }
.cred:nth-child(2) .cred-ico, .cred:nth-child(4) .cred-ico { background: var(--pink-soft); color: var(--pink-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(--pink); 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(8, 7, 15,0) 45%, rgba(8, 7, 15,.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-weight: 700; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan-bright); }
.reel-meta strong { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.15; letter-spacing: -0.01em; }
.reel-meta span { font-size: 14px; color: rgba(243, 241, 250,.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(8, 7, 15,.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(--pink); }
.reel--end { display: grid; place-items: center; text-align: center; padding: 24px; background: var(--pink); 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-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(--pink); 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 .script { color: var(--cyan); }
.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(15, 13, 26,.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-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.compare-head .us { background: var(--pink); 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(--cyan); }
@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, .92fr) minmax(0, 1.08fr); gap: clamp(40px, 5vw, 80px); align-items: start; }
.area-copy { display: grid; gap: 24px; }
.area-copy h2 { font-size: clamp(38px, 5vw, 68px); }
.area-copy h2 .script { color: var(--cyan); }
.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-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(15, 13, 26,.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(--pink); 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(--cyan); flex: none; margin-top: 2px; }
.area-note a { color: var(--text); font-weight: 600; text-decoration: underline; text-decoration-color: var(--pink); 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(8, 7, 15,.6);
  isolation: isolate;
}
.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(60% 50% at 50% 50%, rgba(31, 184, 245,.18), transparent 65%);
}

.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(--pink); }
@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(31, 184, 245,.22), transparent 60%), radial-gradient(40% 50% at 100% 100%, rgba(255, 46, 151,.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 .script { color: var(--pink); }
.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(243, 241, 250,.86); }
.quote-list .qi { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(51, 207, 255,.16); color: var(--cyan-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(255, 46, 151,.5); }
.call-card .cc-ico { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--pink); 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-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(--pink) 0 45%, var(--violet) 45% 55%, var(--cyan) 55%); }
.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 h2, .quote-card-head h3 { font-family: var(--font-display); font-weight: 800; 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(15, 13, 26,.06); }
.quote-badge svg { width: 15px; height: 15px; color: var(--cyan); }

@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 h2 .script { color: var(--cyan); }
.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-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(--cyan); }
.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(--pink); 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(--pink); 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 .script { 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); }

@media (max-width: 860px) {
  
  .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-mark { height: 64px; }
.footer-brand .brand-word { font-size: 18px; }
.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(--pink); box-shadow: none; }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--font-display); 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(243, 241, 250,.86); }
.footer-col a:hover { color: var(--pink); }
.footer-col .big { font-family: var(--font-display); 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-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(255, 46, 151,.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(8, 7, 15,.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(--pink); }
@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(255, 46, 151, 0.16), transparent 62%), radial-gradient(45% 60% at 20% 0%, rgba(31, 184, 245,.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 .script { color: var(--pink); }
@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 .script { color: var(--pink); }
.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(20, 17, 34, 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-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-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(--pink); }
.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(--pink); 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-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(--cyan-soft); color: var(--cyan); 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(8, 7, 15, 0.7);
}
.svc-panel::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(60% 55% at 100% 0%, rgba(31, 184, 245, 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(--pink); }
.svc-panel-tag { font-family: var(--font-script); font-size: clamp(36px, 3.6vw, 52px); line-height: 1; 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-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(--pink); }
.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--pink { background: var(--pink); box-shadow: 0 50px 100px -50px rgba(255, 46, 151, 0.6); }
.svc-panel--pink::before { display: none; }
.svc-panel--pink .svc-panel-top, .svc-panel--pink dt { color: rgba(255, 255, 255, 0.8); }
.svc-panel--pink .svc-panel-top .pulse-dot { color: #fff; }
.svc-panel--pink dl div { border-color: rgba(0, 0, 0, 0.14); }
.svc-panel--cyan { background: var(--cyan); box-shadow: 0 50px 100px -50px rgba(31, 184, 245, 0.6); }
.svc-panel--cyan::before { display: none; }
.svc-panel--cyan .svc-panel-top, .svc-panel--cyan dt { color: rgba(255, 255, 255, 0.8); }
.svc-panel--cyan .svc-panel-top .pulse-dot { color: #fff; }
.svc-panel--cyan 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(15, 13, 26, 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(15, 13, 26, 0.08), 0 30px 60px -30px rgba(15, 13, 26, 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(--cyan); color: #fff; }
.more-card h3 { font-family: var(--font-display); font-weight: 700; 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(--pink-soft); color: var(--pink-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(15, 13, 26,.07); font-family: var(--font-display); 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(--cyan-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 .script { color: var(--cyan); }
.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-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(15, 13, 26,.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(255, 46, 151,.35), transparent 60%), radial-gradient(60% 70% at 0% 100%, rgba(31, 184, 245,.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(--pink), var(--cyan)); margin-bottom: auto; }
.loops-ig .ig-ico svg { width: 26px; height: 26px; }
.loops-ig strong { font-family: var(--font-display); 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(15, 13, 26,.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(8, 7, 15,.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(--pink), var(--cyan)); }
.ig-band .ig-ico svg { width: 30px; height: 30px; }
.ig-band strong { display: block; font-family: var(--font-display); 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-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-display); font-weight: 600; font-size: clamp(21px, 2vw, 26px); line-height: 1.3; }
.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(--pink); 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(--cyan), var(--pink)); 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(--cyan); color: var(--cyan); }
.tl:nth-child(n+3) .tl-dot { box-shadow: 0 0 0 6px var(--paper), inset 0 0 0 2px var(--pink); color: var(--pink); }
.tl:last-child .tl-dot { background: var(--pink); 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-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-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-size: 14px; letter-spacing: .1em; color: var(--pink); }
.value h3 { font-family: var(--font-display); font-weight: 700; 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; } }

.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(--cyan-soft); color: var(--cyan); }
.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); }

.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 .script { color: var(--pink); }
.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 .script { color: var(--pink); }
.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; }
  
}

/* ---------- Google reviews ---------- */
.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 .script { color: var(--cyan); }
.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(--cyan); 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,
  .quote-section--page .quote-badge { 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; }
}

/* ==========================================================================
   Steve's neon layer: everything below is new for this site or overrides
   the shared system above.
   ========================================================================== */

a.u, .u { text-decoration: underline; text-decoration-color: var(--pink); text-underline-offset: 3px; font-weight: 600; }
.muted { color: var(--text-muted); }
.on-ink .muted, .svc-panel .muted { color: rgba(255,255,255,.7); }

/* buttons: neon glow */
.btn--primary { box-shadow: 0 10px 30px -10px rgba(255, 46, 151, .75), 0 0 0 1px rgba(255, 79, 176, .4); }
.btn--primary:hover { box-shadow: 0 16px 40px -10px rgba(255, 46, 151, .9), 0 0 24px rgba(255, 79, 176, .35); }
.btn--block { width: 100%; justify-content: space-between; }
.btn--ghost-dark { --btn-bg: transparent; --btn-fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); padding: 0 26px; }
.btn--ghost-dark:hover { box-shadow: inset 0 0 0 1.5px #fff; background: rgba(255,255,255,.08); }
.btn--ghost-dark svg { width: 18px; height: 18px; }

/* topbar + header */
.nav a { white-space: nowrap; }
@media (max-width: 1400px) { .header-phone .ph-num { display: none; } }
@media (max-width: 1240px) { .nav a { padding: 10px 9px; font-size: 14.5px; } }
.topbar { background: var(--neon); }
.topbar .live, .topbar a { text-shadow: 0 1px 0 rgba(0,0,0,.15); }
.site-header { box-shadow: 0 1px 0 rgba(255,255,255,.06); }
.site-header.is-scrolled { background: rgba(8, 7, 15, .84); }
.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: 1240px) { .brand-word { font-size: 13px; } }
@media (max-width: 1100px) and (min-width: 1041px) { .brand-word { display: none; } }
@media (max-width: 380px) { .brand-word { font-size: 11.5px; } .brand-mark { height: 30px; } }

/* marquee on the neon gradient */
.marquee { background: var(--neon); color: #fff; padding-block: 16px; }
.marquee-item { font-family: var(--font-logo); font-weight: 400; font-size: clamp(19px, 2vw, 28px); letter-spacing: .04em; text-shadow: 0 1px 0 rgba(0,0,0,.18); }
.marquee-item svg { color: var(--ink); width: 13px; height: 13px; }

/* ---------- Hero stage: neon sun, grid floor, cartoon Steve ---------- */
.hero::before {
  background:
    radial-gradient(50% 55% at 76% 58%, rgba(139, 92, 255, 0.28), transparent 64%),
    radial-gradient(40% 50% at 62% 8%, rgba(51, 207, 255, 0.18), transparent 70%),
    radial-gradient(40% 50% at 100% 100%, rgba(255, 63, 164, 0.18), transparent 70%);
}
.hero h1 { font-size: clamp(44px, 5.4vw, 82px); }
.hero h1 .script { font-size: 1.14em; display: inline-block; margin-top: .06em; }
.hero-proof svg { color: var(--cyan-bright); }
.hero-proof li:first-child svg { color: #ffc93c; }
.hero-inner { padding-bottom: 0; align-items: stretch; }
.hero-copy { align-self: center; padding-bottom: clamp(48px, 6vw, 88px); }
.hero-visual { min-height: 640px; }
.hero-stage { position: absolute; inset: 0 -6% 0 -2%; }
.sun {
  position: absolute;
  left: 50%;
  top: 7%;
  width: min(84%, 500px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #33cfff 0%, #8b5cff 48%, #ff3fa4 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0 52%, transparent 52% 55%, #000 55% 63%, transparent 63% 67.5%, #000 67.5% 74%, transparent 74% 79.5%, #000 79.5% 84.5%, transparent 84.5% 91%, #000 91%);
          mask-image: linear-gradient(180deg, #000 0 52%, transparent 52% 55%, #000 55% 63%, transparent 63% 67.5%, #000 67.5% 74%, transparent 74% 79.5%, #000 79.5% 84.5%, transparent 84.5% 91%, #000 91%);
  box-shadow: 0 0 120px 20px rgba(139, 92, 255, .45);
  opacity: .95;
}
.sun::after { content: ""; position: absolute; inset: -18%; z-index: -1; border-radius: 50%; background: radial-gradient(closest-side, rgba(255, 63, 164, .35), transparent); }
.grid-floor {
  position: absolute;
  left: -30%;
  right: -30%;
  bottom: 0;
  height: 34%;
  background-image:
    linear-gradient(rgba(255, 63, 164, .55) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(51, 207, 255, .45) 1.5px, transparent 1.5px);
  background-size: 56px 44px;
  transform: perspective(260px) rotateX(58deg);
  transform-origin: 50% 100%;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 45%);
          mask-image: linear-gradient(180deg, transparent, #000 45%);
  animation: grid-roll 2.4s linear infinite;
}
@keyframes grid-roll { to { background-position: 0 44px, 0 0; } }
.steve-wrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(96%, 540px);
  transform: translateX(-50%);
  filter: drop-shadow(-6px 0 14px rgba(51, 207, 255, .55)) drop-shadow(6px 0 16px rgba(255, 63, 164, .5));
}
.steve-svg { display: block; width: 100%; height: auto; }
.js .steve-wrap { animation: steve-in 1.4s var(--ease) .2s both; }
@keyframes steve-in { from { transform: translate(-50%, 18%); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }
.steve-svg .steve-arm { transform-box: view-box; transform-origin: 150px 760px; animation: wave 5.5s ease-in-out 1.8s infinite; }
@keyframes wave { 0%, 70%, 100% { transform: rotate(0); } 76% { transform: rotate(-5deg); } 82% { transform: rotate(3deg); } 88% { transform: rotate(-3deg); } 94% { transform: rotate(1deg); } }
.steve-svg .steve-eyes { transform-box: fill-box; transform-origin: center; animation: blink 6s infinite; }
@keyframes blink { 0%, 96%, 100% { transform: scaleY(1); } 98% { transform: scaleY(.1); } }
.hero-card { background: rgba(20, 17, 34, .72); }
.hero-card .hc-ico { background: linear-gradient(135deg, #ffb938, #ff7a2f); }
.hero-card--b .hc-ico { background: var(--cyan); }
.hero-card--a { top: 14%; left: -4%; }
.hero-card--b { top: 30%; bottom: auto; right: -2%; }
@media (max-width: 980px) {
  .hero-visual { height: clamp(420px, 92vw, 620px); min-height: 0; }
  .hero-stage { inset: 0; }
  .hero-inner { padding-bottom: 0; }
  .hero-copy { padding-bottom: 0; }
  .hero-card--a { top: 6%; left: 0; }
  .hero-card--b { top: 24%; right: 0; }
}
@media (max-width: 520px) {
  .hero-visual { height: 440px; }
  .sun { width: 78%; top: 8%; }
  .steve-wrap { width: 92%; }
  .hero-card--a { top: 2%; }
}

/* ---------- Services bento (neon variants) ---------- */
.svc--accent { background: linear-gradient(150deg, #ff3fa4, #c21b8c); }
.svc--accent:hover .svc-ico { color: var(--pink); }
.svc--cyan { background: linear-gradient(150deg, #19b6f2, #6a4dff); }
.svc--cyan:hover .svc-ico { color: var(--cyan-deep); }
.svc h3 { font-weight: 700; letter-spacing: -0.01em; }
.svc--feature .feature-media video { object-position: 50% 50%; }

/* ---------- Pre-purchase inspection band ---------- */
.ppi::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(50% 60% at 100% 0%, rgba(255,63,164,.2), transparent 62%), radial-gradient(50% 70% at 0% 100%, rgba(51,207,255,.16), transparent 62%); }
.ppi-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.ppi-copy { display: grid; gap: 24px; }
.ppi-copy h2 { font-size: clamp(38px, 5vw, 70px); }
.ppi-copy > p { color: var(--on-ink-muted); font-size: 18px; max-width: 540px; }
.ppi-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.ppi-list li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; padding: 16px; border-radius: 18px; background: var(--ink-2); box-shadow: inset 0 0 0 1px var(--ink-line); }
.ppi-list .qi { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(51,207,255,.14); color: var(--cyan-bright); }
.ppi-list li:nth-child(even) .qi { background: rgba(255,63,164,.14); color: var(--pink-bright); }
.ppi-list .qi svg { width: 20px; height: 20px; }
.ppi-list strong { display: block; font-weight: 600; font-size: 15.5px; color: #fff; }
.ppi-list span { display: block; font-size: 14px; color: var(--on-ink-muted); line-height: 1.45; margin-top: 2px; }
.ppi-quote { position: relative; padding: clamp(28px, 4vw, 48px); border-radius: 32px; background: linear-gradient(var(--ink-2), var(--ink-2)) padding-box, var(--neon) border-box; border: 2px solid transparent; box-shadow: 0 40px 90px -40px rgba(139, 92, 255, .6); }
.ppi-quote blockquote { margin: 18px 0 14px; font-family: var(--font-display); font-weight: 600; font-size: clamp(21px, 2.1vw, 28px); line-height: 1.3; color: #fff; }
.ppi-quote figcaption { font-size: 14px; color: var(--on-ink-muted); }
.ppi-quote-2 { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--ink-line); }
.ppi-quote-2 blockquote { font-size: 17px; font-weight: 500; font-family: var(--font-body); color: rgba(243,241,250,.9); margin-top: 0; }
.stars { display: inline-flex; gap: 3px; color: #ffc93c; }
.stars svg { width: 20px; height: 20px; }
@media (max-width: 960px) { .ppi-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .ppi-list { grid-template-columns: 1fr; } }

/* ---------- How it works, light version ---------- */
#how .steps-road { background-image: linear-gradient(90deg, rgba(15,13,26,.18) 50%, transparent 50%); }
#how .step-num { background: #fff; color: var(--text); box-shadow: inset 0 0 0 1px rgba(15,13,26,.08), 0 0 0 10px var(--paper); }
#how .step:nth-child(4) .step-num { background: var(--pink); color: #fff; box-shadow: 0 0 0 10px var(--paper), 0 20px 50px -10px rgba(255,46,151,.6); }
#how .step:nth-child(3) .step-num { background: #fff; color: var(--text); box-shadow: inset 0 0 0 1px rgba(15,13,26,.08), 0 0 0 10px var(--paper); }
#how .step p { color: var(--text-muted); }
#how .step p a { color: var(--text); }
#how .venues { background: var(--line); box-shadow: inset 0 0 0 1px var(--line); }
#how .venue { background: #fff; }
#how .venue:hover { background: var(--bone); }
#how .venue svg { color: var(--cyan); }
#how .venue p { color: var(--text-muted); }
@media (max-width: 900px) { #how .steps-road { background-image: linear-gradient(180deg, rgba(15,13,26,.18) 50%, transparent 50%); } }

/* ---------- Meet Steve ---------- */
.photo-card { aspect-ratio: 4 / 5; }
.photo-card img { position: absolute; inset: 0; }
.phone-card { box-shadow: 0 50px 100px -40px rgba(8,7,15,.55), 0 0 0 1px rgba(15,13,26,.06); }
.stat-card b { font-size: 40px; }
.stat-card--b b { font-size: 28px; }

/* ---------- Reels ---------- */
.reel-meta small { color: var(--cyan-bright); }
.reel--end { background: var(--neon); }
.reel--end .round { color: var(--violet); }

/* ---------- Reviews (static picks, live feed when configured) ---------- */
.reviews-section .script { color: var(--pink); }
.reviews-stars { background: linear-gradient(90deg, #d99100 var(--rating-fill, 0%), #c7c4d6 var(--rating-fill, 0%)); -webkit-background-clip: text; background-clip: text; }
.review-stars { color: #d99100; letter-spacing: 3px; }
.review-card { box-shadow: 0 30px 60px -50px rgba(15,13,26,.4); }
.review-initial { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--neon); color: #fff; font-family: var(--font-logo); font-size: 17px; flex: none; }
.review-tag { display: block; font-size: 12.5px; color: var(--text-muted); }
.review-text { quotes: none; }

/* ---------- Compare ---------- */
.compare-head .us { background: linear-gradient(135deg, #ff3fa4, #8b5cff); }
.compare-row .us { background: #fbf7ff; }

/* ---------- Service area ---------- */
.area-copy h2 .script { color: var(--pink); }
.cities li.ext { background: transparent; box-shadow: inset 0 0 0 1.5px rgba(139, 92, 255, .45); color: #5b3fc4; }
.cities li:hover, .cities li.is-active { background: var(--ink); color: #fff; box-shadow: none; }
.map-panel { position: relative; aspect-ratio: 560 / 600; border-radius: 36px; background: var(--ink); overflow: hidden; box-shadow: 0 50px 100px -50px rgba(8,7,15,.7), 0 0 0 1px rgba(139,92,255,.25); isolation: isolate; }
.map-svg { display: block; width: 100%; height: 100%; }
.map-svg .ocean { fill: #0a0916; }
.map-svg .grid-line { stroke: rgba(139, 92, 255, .08); stroke-width: 1; }
.map-svg .state { fill: #100e1d; stroke: rgba(255,255,255,.1); stroke-width: 1; }
.map-svg .nj { fill: #171428; stroke: rgba(255,255,255,.22); stroke-width: 1.2; }
.map-svg .county.core { fill: url(#coreFill); stroke: rgba(51, 207, 255, .7); stroke-width: 1.4; }
.map-svg .county.core-glow { fill: none; stroke: #8b5cff; stroke-width: 5; }
.map-svg .county-borders { fill: none; stroke: rgba(255,255,255,.12); stroke-width: .8; }
.map-svg .county-label { fill: rgba(255,255,255,.34); font: 400 9.5px var(--font-logo); letter-spacing: .14em; }
.map-svg .state-label { fill: rgba(255,255,255,.2); font: 400 10px var(--font-logo); letter-spacing: .2em; }
.map-svg .water-label { fill: #4b4880; font: 400 22px var(--font-script); }
.map-svg .route { fill: none; stroke: url(#routeGrad); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 2 8; }
.map-svg .route-glow { fill: none; stroke: rgba(255, 63, 164, .22); stroke-width: 10; stroke-linecap: round; }
.map-svg .spoke { fill: none; stroke: rgba(139, 92, 255, .6); stroke-width: 1.4; stroke-dasharray: 4 6; animation: dash 1.6s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -20; } }
.map-svg .city circle { fill: #fff; transition: r .3s var(--ease), fill .3s; }
.map-svg .city text { fill: #cfcbe3; font: 500 12px var(--font-body); paint-order: stroke; stroke: rgba(10,9,22,.8); stroke-width: 3px; transition: fill .3s; }
.map-svg .city.is-active circle { fill: var(--cyan-bright); r: 6.5; }
.map-svg .city.is-active text { fill: #fff; }
.map-svg .city.home circle:not(.home-ring) { fill: var(--pink-bright); r: 6; }
.map-svg .city.home text { fill: #fff; font-weight: 700; font-size: 13.5px; }
.map-svg .home-ring { fill: none; stroke: var(--pink-bright); stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: ring 2.4s var(--ease) infinite; }
.map-svg .city.home text.home-tag { fill: var(--pink-bright); font: 400 8.5px var(--font-logo); letter-spacing: .14em; }
.map-svg .city.ext circle:not(.ext-ring) { fill: #b79bff; }
.map-svg .ext-ring { fill: none; stroke: rgba(139, 92, 255, .6); stroke-width: 1.4; stroke-dasharray: 3 4; }
.map-svg .city.ext text { fill: #d9ccff; font-weight: 600; }
.map-svg .car-dot circle.halo { fill: var(--pink-bright); opacity: .25; transform-box: fill-box; transform-origin: center; animation: ring 2.4s var(--ease) infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(2.8); opacity: 0; } }
.map-legend { position: absolute; left: 18px; bottom: 18px; z-index: 2; display: flex; gap: 16px; padding: 10px 14px; border-radius: 12px; background: rgba(255,255,255,.06); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: #d7d4e6; font-size: 13px; }
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.lg { display: inline-block; width: 14px; height: 14px; border-radius: 4px; }
.lg--core { background: linear-gradient(135deg, rgba(51,207,255,.6), rgba(255,63,164,.6)); box-shadow: inset 0 0 0 1.5px #33cfff; }
.lg--ext { border: 1.5px dashed #b79bff; border-radius: 50%; }

/* ---------- Booking form ---------- */
.quote-section::before { background: radial-gradient(50% 60% at 0% 0%, rgba(51,207,255,.18), transparent 60%), radial-gradient(40% 50% at 100% 100%, rgba(255,63,164,.18), transparent 60%); }
.quote-card::before { background: var(--neon); }
.quote-badge svg { color: #d99100; }
.quote-list .qi { background: rgba(51, 207, 255, .14); }
.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(--pink); text-underline-offset: 3px; overflow-wrap: anywhere; }
.qe-slot.is-empty { min-height: 0; }
.qe-slot.is-empty .qe-fallback { display: block; }

/* ---------- FAQ ---------- */
.faq-intro h2 .script { color: var(--pink); }
.faq-item summary:hover { color: var(--violet); }

/* ---------- Final CTA with cartoon Steve ---------- */
.cta-band { background: linear-gradient(120deg, #ff3fa4 0%, #b23cf0 48%, #5b4dff 100%); }
.cta-band::after { content: ""; position: absolute; left: -10%; right: -10%; bottom: 0; height: 38%; z-index: -1; background-image: linear-gradient(rgba(255,255,255,.28) 1.5px, transparent 1.5px), linear-gradient(90deg, rgba(255,255,255,.22) 1.5px, transparent 1.5px); background-size: 60px 44px; transform: perspective(260px) rotateX(58deg); transform-origin: 50% 100%; -webkit-mask-image: linear-gradient(180deg, transparent, #000 60%); mask-image: linear-gradient(180deg, transparent, #000 60%); }
.cta-band .container.cta-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); align-items: end; gap: 24px; padding-block: clamp(80px, 10vw, 140px) 0; }
.cta-copy { display: grid; gap: 30px; padding-bottom: clamp(80px, 10vw, 140px); }
.cta-band h2 { font-size: clamp(52px, 8vw, 128px); max-width: 11ch; }
.cta-band h2 .script { color: #fff; display: block; text-shadow: 0 0 30px rgba(255,255,255,.45); }
.cta-steve { align-self: end; width: min(100%, 440px); justify-self: center; filter: drop-shadow(0 30px 40px rgba(40, 0, 60, .45)); }
.cta-steve .steve-svg { width: 100%; height: auto; }
@media (max-width: 860px) {
  .cta-band .container.cta-inner { grid-template-columns: 1fr; }
  .cta-copy { padding-bottom: 0; }
  .cta-steve { width: min(78%, 360px); }
}

/* ---------- Footer: the phone number as neon script ---------- */
.footer-social { flex-wrap: wrap; }
.footer-mail { overflow-wrap: anywhere; }
.footer-phone { display: block; margin-top: 8px; }
.footer-wordmark text { font-family: var(--font-script); font-weight: 400; font-size: 190px; fill: none; stroke: url(#fwg); stroke-width: 1.4; letter-spacing: 0; opacity: .75; transition: opacity .4s; }
.footer-phone:hover .footer-wordmark text { opacity: 1; }
.footer-wordmark { filter: drop-shadow(0 0 12px rgba(139, 92, 255, .45)); }

/* ---------- Inner pages ---------- */
.page-hero::before, .svc-hero::before { background: radial-gradient(55% 70% at 85% 60%, rgba(255, 63, 164, 0.16), transparent 62%), radial-gradient(45% 60% at 20% 0%, rgba(51,207,255,.16), transparent 65%); }
.svc-detail h2 .script { color: var(--pink); }
.svc-panel--pink { background: linear-gradient(150deg, #ff3fa4, #b01a86); box-shadow: 0 50px 100px -50px rgba(255, 46, 151, .6); }
.svc-panel--cyan { background: linear-gradient(150deg, #17b1ee, #5b4dff); box-shadow: 0 50px 100px -50px rgba(31, 184, 245, .6); }
.svc-panel .loop { aspect-ratio: 4 / 5; }
.panel-photo img { position: absolute; inset: 0; }
.makes-wrap h2 .script { color: var(--pink); }
.more-card:hover .svc-detail-ico { background: var(--violet); }
.wheel-sidewall-text { fill: rgba(255,255,255,.34); font: 400 17px var(--font-logo); letter-spacing: .2em; }
.loops-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.loops-grid .loop { aspect-ratio: 4 / 5; }
.loops-grid .loop:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.loops-grid .loops-ig { grid-column: span 2; }
.loops-ig .ig-ico, .ig-band .ig-ico { background: var(--neon); }
.cat { background: rgba(8,7,15,.6); }
.work-grid .reel-meta small { color: var(--cyan-bright); }
.setup-grid { display: grid; grid-template-columns: 1.3fr 1fr; grid-auto-rows: auto; gap: 16px; }
.setup-shot { position: relative; margin: 0; border-radius: 24px; overflow: hidden; box-shadow: inset 0 0 0 1px var(--ink-line); }
.setup-shot img { width: 100%; height: 100%; object-fit: cover; }
.setup-shot:nth-child(1) { aspect-ratio: 4 / 3; }
.setup-shot:nth-child(2) { aspect-ratio: auto; grid-row: span 2; }
.setup-shot:nth-child(3) { aspect-ratio: 4 / 3; }
.setup-shot:nth-child(4) { display: none; }
@media (max-width: 760px) { .setup-grid { grid-template-columns: 1fr; } .setup-shot:nth-child(2) { grid-row: auto; aspect-ratio: 4 / 5; } }

/* about page */
.story-quote { background: linear-gradient(var(--ink), var(--ink)) padding-box, var(--neon) border-box; border: 2px solid transparent; }
.story-quote footer a { text-decoration-color: var(--pink-bright); }
.timeline::before { background: var(--neon); background: linear-gradient(180deg, #33cfff, #8b5cff, #ff3fa4); }
.tl:last-child .tl-dot { background: var(--pink); }
.van-feature { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.setup-stage { position: relative; }
.setup-stage > img { width: 100%; height: auto; border-radius: 32px; box-shadow: 0 50px 100px -50px rgba(8,7,15,.6); aspect-ratio: 4 / 3; object-fit: cover; }
.setup-inset { position: absolute; right: -4%; bottom: -10%; width: 34%; aspect-ratio: 4 / 5; margin: 0; border-radius: 22px; overflow: hidden; border: 5px solid var(--paper); box-shadow: 0 30px 60px -20px rgba(8,7,15,.5); }
.setup-inset img { width: 100%; height: 100%; object-fit: cover; }
.kit .k-ico { background: var(--cyan-soft); color: var(--cyan); }
.kit li:nth-child(even) .k-ico { background: var(--pink-soft); color: var(--pink-deep); }
@media (max-width: 960px) { .van-feature { grid-template-columns: 1fr; } .setup-inset { right: 4%; } .van-feature > div:last-child { margin-top: 30px; } }
.anniv { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
.toon-card { position: relative; max-width: 420px; }
.toon-stage { position: relative; aspect-ratio: 600 / 700; border-radius: 32px; overflow: hidden; background: radial-gradient(80% 60% at 50% 40%, #2a1745, var(--ink-2)); box-shadow: inset 0 0 0 1px var(--ink-line); isolation: isolate; }
.toon-stage .sun--small { width: 72%; top: 6%; }
.toon-stage .steve-svg { position: absolute; left: 6%; right: 6%; bottom: 0; width: 88%; filter: drop-shadow(-5px 0 12px rgba(51,207,255,.5)) drop-shadow(5px 0 14px rgba(255,63,164,.45)); }
@media (max-width: 760px) { .toon-card { width: 80%; } }

/* 404 + thanks */
.nf-toon { width: min(300px, 70vw); aspect-ratio: 1; margin-bottom: 8px; }
.hero-stage--mini { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 50%; }
.hero-stage--mini .sun { width: 86%; top: 8%; }
.hero-stage--mini .steve-wrap { width: 88%; }
.hero-stage--mini .grid-floor { height: 30%; }
.nf p a { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .grid-floor, .cta-band::after { animation: none; }
  .js .steve-wrap { animation: none; }
}

.area .map-panel { position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 960px) { .area .map-panel { position: relative; top: auto; } }
.val-media { width: 100%; }
@media (max-width: 480px) { .header-phone { display: none; } .site-header .container { gap: 12px; } }
main { overflow-x: clip; }

/* Illustrated hero: Steve leads, the open-hood car adds service context. */
.hero-lede-mobile { display: none; }
.hero-vehicle { position: absolute; height: auto; width: 73%; left: -8%; bottom: 5%; z-index: 1; }
.hero-stage > .steve-wrap { width: min(84%, 475px); left: 65%; z-index: 2; }
.hero-stage > .hero-card--a { left: -3%; top: 7%; }
@media (max-width: 980px) {
  .hero-inner { gap: 14px; padding-top: 22px; }
  .hero-copy { display: contents; }
  .hero-copy > .eyebrow { grid-row: 1; }
  .hero-copy > h1 { grid-row: 2; max-width: 620px; margin: 0; }
  .hero-visual { grid-row: 3; height: clamp(230px, 35svh, 330px); margin: 0; }
  .hero-copy > .hero-cta { grid-row: 4; margin: 0; }
  .hero-copy > .hero-lede { grid-row: 5; margin: 0 0 24px; }
  .hero-proof { display: none; }
  .hero-lede-desktop { display: none; }
  .hero-lede-mobile { display: inline; }
  .hero-stage { max-width: 550px; margin-inline: auto; }
  .hero-stage > .steve-wrap { width: auto; height: 100%; left: 67%; }
  .hero-stage > .steve-wrap img { width: auto; height: 100%; max-width: none; }
  .hero-stage .sun { width: auto; height: 94%; top: 2%; }
  .hero-vehicle { width: 62%; left: 0; bottom: 3%; }
  .hero-stage > .hero-card--a { top: 6%; left: 0; animation: none; }
  .js .hero-stage > .steve-wrap { animation: none; }
  .hero-visual .grid-floor { animation: none; }
}
@media (max-width: 520px) {
  .hero-inner { gap: 12px; padding-top: 16px; }
  .hero h1 { font-size: clamp(32px, 9vw, 42px); line-height: 1.04; }
  .hero h1 .script { font-size: 1.04em; margin-top: .08em; }
  .hero .eyebrow { font-size: 10px; }
  .hero-visual { height: clamp(210px, 32svh, 280px); }
  .hero-lede { font-size: 14px; line-height: 1.5; }
  .hero .hero-cta { gap: 10px; }
  .hero .hero-cta .btn { min-height: 48px; height: 48px; }
  .hero-stage > .hero-card--a { padding: 8px 10px; gap: 7px; border-radius: 12px; font-size: 10px; }
  .hero-stage > .hero-card--a strong { font-size: 11px; }
  .hero-stage > .hero-card--a .hc-ico { width: 26px; height: 26px; border-radius: 8px; }
  .hero-stage > .hero-card--a .hc-ico svg { width: 15px; height: 15px; }
}
