/* =========================================================
   Tim's Mobile Mechanic — design system
   Palette: royal blue · black · white (no purple gradients,
   no pastel AI-slop). Type: Big Shoulders Display (industrial
   automotive display) + Familjen Grotesk (warm humanist body).
   ========================================================= */

:root {
  /* core palette */
  --ink: #07080d;            /* near-black, slightly cool */
  --ink-2: #0b1020;          /* deep midnight */
  --ink-3: #11173a;          /* navy shadow */
  --paper: #f6f5ef;          /* warm white */
  --paper-2: #ecebe1;        /* cream */
  --line: #1b2350;

  --royal: #1d4ed8;          /* royal blue */
  --royal-2: #2f6bff;        /* bright accent */
  --royal-3: #0b2596;        /* deep royal */
  --royal-glow: #4f86ff;     /* light royal */

  --white: #ffffff;
  --gray-1: #9aa3c2;
  --gray-2: #c8cde0;
  --gray-3: #5a6390;

  /* type */
  --display: "Big Shoulders Display", "Arial Narrow", system-ui, sans-serif;
  --body: "Familjen Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* motion */
  --ease-out: cubic-bezier(.16,.84,.3,1);
  --ease-in-out: cubic-bezier(.7,0,.2,1);

  /* layout */
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0; padding: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(47,107,255,.18), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(11,37,150,.25), transparent 60%),
    linear-gradient(180deg, #05060b 0%, #07080d 30%, #07080d 100%);
  min-height: 100vh;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--royal-2); color: var(--white); }

/* =========================================================
   Atmospheric backdrop — blueprint grid + glow
   ========================================================= */
.atmos {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
}
.atmos__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(79,134,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,134,255,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
}
.atmos__glow {
  position: absolute; border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
}
.atmos__glow--a {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(47,107,255,.55), transparent 65%);
  top: -120px; right: -120px;
  animation: drift 22s var(--ease-in-out) infinite alternate;
}
.atmos__glow--b {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(11,37,150,.6), transparent 65%);
  top: 35%; left: -160px;
  animation: drift 28s var(--ease-in-out) -6s infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(40px, -30px, 0) scale(1.1); }
}

main, .nav, .footer { position: relative; z-index: 1; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--gutter);
  padding: 14px var(--gutter);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: linear-gradient(180deg, rgba(7,8,13,.85) 0%, rgba(7,8,13,.55) 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display);
  color: var(--paper);
}
.nav__logo {
  width: 100px; height: 100px;
  filter: drop-shadow(0 5px 16px rgba(47,107,255,.5));
  transition: transform .6s var(--ease-out);
}
.nav__brand:hover .nav__logo { transform: rotate(-8deg) scale(1.05); }

.nav__wordmark {
  display: grid;
  line-height: .9;
  text-transform: uppercase;
}
.nav__wordmark-line:first-child {
  font-weight: 900; font-size: 34px; letter-spacing: .01em;
  color: var(--royal-glow);
}
.nav__wordmark-line:last-child {
  font-weight: 700; font-size: 15px; letter-spacing: .22em;
  color: var(--paper);
  margin-top: 4px;
}

.nav__links {
  display: flex; gap: 28px;
  justify-self: center;
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px; letter-spacing: 0;
}
.nav__links a {
  position: relative;
  padding: 8px 2px;
  color: var(--gray-2);
  transition: color .25s var(--ease-out);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1px; background: var(--royal-glow);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 12px;
  border: 1px solid var(--royal);
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px; letter-spacing: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(29,78,216,.25), rgba(29,78,216,.05));
  transition: background .25s var(--ease-out), border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.nav__cta:hover {
  background: var(--royal);
  border-color: var(--royal-glow);
  transform: translateY(-1px);
}
.nav__cta-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6cff9b;
  box-shadow: 0 0 0 0 rgba(108,255,155,.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(108,255,155,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(108,255,155,0); }
  100% { box-shadow: 0 0 0 0 rgba(108,255,155,0); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) var(--gutter) 0;
  overflow: hidden;
}

.hero__sigil {
  position: absolute;
  top: 18px; right: var(--gutter);
  display: inline-flex; gap: 10px;
  align-items: center;
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px; letter-spacing: 0;
  color: var(--gray-1);
}
.hero__sigil b {
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px; letter-spacing: 0;
  color: var(--royal-glow);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  padding: clamp(20px, 3vw, 52px) 0 clamp(36px, 4vw, 72px);
  min-height: calc(82vh - 100px);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 0 20px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px; letter-spacing: 0;
  color: var(--gray-2);
}
.eyebrow__bar {
  display: inline-block;
  width: 36px; height: 2px;
  background: var(--royal-glow);
}

.hero__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(54px, 9.5vw, 156px);
  line-height: .82;
  letter-spacing: -.015em;
  text-transform: uppercase;
  color: var(--paper);
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  color: transparent;
  background: linear-gradient(180deg, var(--royal-glow) 0%, var(--royal) 60%, var(--royal-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  position: relative;
}
.hero__title-line--accent::after {
  content: "";
  display: block;
  width: 0.32em; height: .14em;
  margin-top: .04em;
  background: var(--royal-glow);
  box-shadow: 0 0 30px var(--royal-glow);
}
.hero__title-line--small {
  font-size: .42em;
  letter-spacing: .04em;
  font-weight: 700;
  color: var(--gray-2);
  margin-top: .25em;
}

.hero__lede {
  margin: 26px 0 0;
  max-width: 38ch;
  font-size: clamp(16px, 1.1vw, 18.5px);
  line-height: 1.55;
  color: var(--gray-2);
}

.hero__actions {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; gap: 12px;
}

.btn {
  --bg: var(--royal);
  --fg: var(--white);
  --bd: var(--royal);
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 22px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bd);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 15px;
  position: relative; overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--royal-2), var(--royal-3));
  transform: translateY(101%);
  transition: transform .45s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: translateY(0); }
.btn .btn__arrow {
  transition: transform .35s var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--paper);
  --bd: rgba(255,255,255,.18);
}
.btn--ghost::before { background: rgba(255,255,255,.08); }

.btn--xl {
  padding: 22px 32px;
  font-size: 22px;
  letter-spacing: .04em;
}

/* hero stats */
.hero__stats {
  margin: 44px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 540px;
}
.hero__stat dt {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gray-1);
}
.hero__stat dd {
  margin: 6px 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: .01em;
  color: var(--paper);
}
.hero__stat dd span {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  margin-left: 6px;
  color: var(--gray-1);
}

/* hero visual / truck */
.hero__visual {
  position: relative;
  align-self: stretch;
  display: grid; place-items: center;
}
.hero__visual-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
}
.hero__visual-frame::before {
  content: "";
  position: absolute; inset: 8% 4%;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  background:
    radial-gradient(closest-side at 50% 50%, rgba(47,107,255,.18), transparent 70%),
    repeating-conic-gradient(from 0deg, rgba(255,255,255,.04) 0deg 2deg, transparent 2deg 12deg);
  animation: rotate-slow 60s linear infinite;
}
.hero__visual-frame::after {
  content: "";
  position: absolute; inset: 18% 14%;
  border: 1px dashed rgba(79,134,255,.25);
  border-radius: 50%;
  animation: rotate-slow 120s linear infinite reverse;
}
@keyframes rotate-slow { to { transform: rotate(360deg); } }

.hero__truck {
  position: relative;
  width: 165%;
  max-width: 1320px;
  z-index: 2;
  /* Show full truck (no crop). Mask out just the red text strip up top. */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, transparent 30%, #000 42%, #000 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, transparent 30%, #000 42%, #000 100%);
          mask-composite: intersect;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.6)) drop-shadow(0 0 60px rgba(47,107,255,.25));
  animation: bob 6s var(--ease-in-out) infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero__truck-shadow {
  position: absolute;
  left: 12%; right: 12%; bottom: 14%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.75), transparent 70%);
  filter: blur(8px);
  z-index: 1;
  animation: shadow-pulse 6s var(--ease-in-out) infinite;
}
@keyframes shadow-pulse {
  0%, 100% { opacity: .55; transform: scaleX(1); }
  50%      { opacity: .35; transform: scaleX(.92); }
}

.hero__chrome {
  position: absolute;
  left: 6%; right: 6%; bottom: 5%;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray-1);
}
.hero__chrome-rule { height: 1px; background: linear-gradient(90deg, transparent, var(--royal-glow), transparent); }
.hero__chrome-tag {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  color: var(--gray-2);
}
.hero__chrome-tag--alt { color: var(--royal-glow); border-color: rgba(79,134,255,.4); }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  position: relative;
  margin: 0 calc(var(--gutter) * -1);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    repeating-linear-gradient(135deg,
      rgba(29,78,216,.08) 0 14px,
      transparent 14px 28px),
    linear-gradient(180deg, rgba(11,16,32,.6), rgba(7,8,13,.6));
  overflow: hidden;
}
.marquee__track {
  display: flex; align-items: center; gap: 36px;
  padding: 22px 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: clamp(20px, 2.2vw, 30px);
  white-space: nowrap;
  color: var(--paper);
  animation: scroll 38s linear infinite;
  will-change: transform;
}
.marquee__track span:not(.marquee__dot) {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--paper);
}
.marquee__track span:nth-child(4n+1) { color: var(--royal-glow); }
.marquee__dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--royal);
  flex: 0 0 8px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   SECTION HEAD
   ========================================================= */
.section-head {
  padding: clamp(80px, 10vw, 140px) 0 clamp(28px, 4vw, 56px);
  max-width: 980px;
}
.section-head__num {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gray-2);
}
.section-head__num--light {
  border-color: rgba(7,8,13,.25);
  color: var(--ink-2);
  background: rgba(7,8,13,.08);
}
.section-head__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 86px);
  line-height: .92;
  letter-spacing: -.015em;
  text-transform: uppercase;
  color: var(--paper);
}
.section-head__title em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(180deg, var(--royal-glow), var(--royal));
  -webkit-background-clip: text; background-clip: text;
}

/* =========================================================
   APPROACH
   ========================================================= */
.approach {
  padding: 0 var(--gutter) clamp(60px, 8vw, 100px);
}
.approach__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.approach__card {
  position: relative;
  padding: 36px 32px 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .5s var(--ease-out);
}
.approach__card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,134,255,.35);
}
.approach__card--alt {
  background: linear-gradient(160deg, var(--royal-3) 0%, var(--ink-2) 80%);
  border-color: rgba(79,134,255,.3);
}
.approach__num {
  display: inline-block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--royal-glow);
  margin-bottom: 18px;
}
.approach__card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--paper);
}
.approach__card p {
  margin: 0;
  color: var(--gray-2);
  max-width: 48ch;
}
.approach__card-stripe {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background:
    repeating-linear-gradient(90deg,
      var(--royal) 0 14px,
      var(--royal-3) 14px 28px);
  opacity: .9;
}

/* =========================================================
   SERVICES — vertical "ledger" list with hover sweep
   ========================================================= */
.services {
  padding: 0 var(--gutter) clamp(60px, 8vw, 100px);
}
.service-list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.service {
  display: grid;
  grid-template-columns: 96px 1.4fr 2fr 40px;
  align-items: baseline;
  gap: 24px;
  padding: 28px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  cursor: default;
  transition: padding .35s var(--ease-out);
}
.service::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(29,78,216,.16), transparent 60%);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
  pointer-events: none;
}
.service:hover { padding-left: 26px; }
.service:hover::before { opacity: 1; transform: translateX(0); }

.service__num {
  font-family: var(--mono);
  font-size: 13px; letter-spacing: .2em;
  color: var(--royal-glow);
}
.service__name {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--paper);
  transition: color .35s var(--ease-out), transform .35s var(--ease-out);
}
.service:hover .service__name {
  color: var(--royal-glow);
  transform: translateX(4px);
}
.service__desc {
  margin: 0;
  color: var(--gray-2);
  max-width: 56ch;
}
.service__chev {
  justify-self: end;
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  color: var(--gray-3);
  transition: color .35s var(--ease-out), transform .45s var(--ease-out);
}
.service:hover .service__chev {
  color: var(--royal-glow);
  transform: translateX(6px) rotate(-2deg);
}
.service--other .service__name { color: var(--royal-glow); }

/* =========================================================
   WHY
   ========================================================= */
.why {
  padding: 0 var(--gutter) clamp(80px, 10vw, 140px);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  padding: 28px 22px 34px;
  background: linear-gradient(180deg, rgba(11,37,150,.18), rgba(11,16,32,.6));
  border: 1px solid rgba(79,134,255,.18);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .5s var(--ease-out), background .5s var(--ease-out);
}
.why-card::after {
  content: "";
  position: absolute; top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--royal-glow), var(--royal), var(--royal-3));
  opacity: .8;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--royal-glow);
  background: linear-gradient(180deg, rgba(29,78,216,.28), rgba(11,16,32,.85));
}
.why-card header {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 16px;
}
.why-card__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  color: var(--royal-glow);
}
.why-card h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--paper);
}
.why-card p {
  margin: 0;
  color: var(--gray-2);
  font-size: 15.5px;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: 0 var(--gutter) clamp(60px, 8vw, 110px);
}
.contact__panel {
  position: relative;
  padding: clamp(40px, 6vw, 80px);
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
/* Service-ticket aesthetic: ruled-paper horizontal lines + perforated
   left edge dots. The dark ink contrasts with the warm paper bg. */
.contact__panel::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    /* horizontal rule lines */
    repeating-linear-gradient(180deg,
      transparent 0 39px,
      rgba(7,8,13,.07) 39px 40px),
    /* perforated left edge dots */
    radial-gradient(circle at 18px 24px, rgba(7,8,13,.18) 1.5px, transparent 2px);
  background-size: 100% 100%, 36px 36px;
  background-repeat: no-repeat, repeat-y;
  background-position: 0 80px, 0 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 80px, #000 calc(100% - 16px), transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 80px, #000 calc(100% - 16px), transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* The big rotated truck mark — uses the asset the client already loves */
.contact__mark {
  position: absolute;
  right: -6%; bottom: -8%;
  width: clamp(360px, 46%, 620px);
  height: auto;
  opacity: .085;
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 0;
  filter: grayscale(1) contrast(1.1);
}

/* Service-ticket stub in top-right */
.contact__ticket {
  position: absolute;
  top: clamp(20px, 2.5vw, 36px);
  right: clamp(20px, 2.5vw, 36px);
  width: clamp(190px, 22%, 230px);
  padding: 14px 16px 16px;
  background: rgba(7,8,13,.04);
  border: 1px solid rgba(7,8,13,.2);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 0;
  pointer-events: none;
  display: grid;
  gap: 8px;
  /* corner notches */
  background-image:
    radial-gradient(circle at 0 0, transparent 5px, transparent 5.5px),
    radial-gradient(circle at 100% 0, transparent 5px, transparent 5.5px);
}
.contact__ticket-label {
  font-size: 9px; letter-spacing: .25em;
  color: #5a6390;
}
.contact__ticket-no {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .01em;
  color: var(--royal);
  line-height: 1;
  margin-top: -2px;
}
.contact__ticket-rule {
  display: block;
  height: 1px;
  background: rgba(7,8,13,.18);
  margin: 2px 0;
}
.contact__ticket-row {
  display: flex; justify-content: space-between; gap: 10px;
  font-size: 9.5px;
}
.contact__ticket-row i { font-style: normal; color: #6b7396; }
.contact__ticket-row b { font-weight: 700; color: var(--ink); letter-spacing: .12em; }
.contact__panel::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 10px;
  background:
    repeating-linear-gradient(90deg,
      var(--royal) 0 22px,
      var(--ink) 22px 44px);
}

.contact__copy { position: relative; z-index: 1; }
.contact__title {
  margin: 14px 0 18px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 110px);
  line-height: .88;
  letter-spacing: -.015em;
  text-transform: uppercase;
  color: var(--ink);
}
.contact__title em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(180deg, var(--royal-2), var(--royal-3));
  -webkit-background-clip: text; background-clip: text;
}
.contact__lede {
  margin: 0 0 28px;
  max-width: 42ch;
  color: #444a64;
}

.contact__meta {
  position: relative; z-index: 1;
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
}
.contact__meta li {
  padding-top: 14px;
  border-top: 1px solid rgba(7,8,13,.18);
}
.contact__meta-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase;
  color: #4b5478;
  margin-bottom: 8px;
}
.contact__meta-value {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: .005em;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 36px var(--gutter) 60px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer__logo { width: 38px; height: 38px; opacity: .9; }
.footer__line {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gray-2);
}
.footer__line--mono {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--gray-3);
  text-align: right;
}

/* =========================================================
   REVEAL — entrance motion (smooth, staggered, single-trigger)
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: calc(var(--rd, 0) * 1ms);
}
[data-reveal="down"] {
  transform: translateY(-20px);
}
[data-reveal="truck"] {
  opacity: 0;
  transform: translateX(60px) scale(.96);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

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

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .nav { grid-template-columns: auto 1fr auto; gap: 16px; }
  .nav__links { display: none; }
  .hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual { order: -1; max-width: 520px; margin: 0 auto; width: 100%; }
  .approach__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .service { grid-template-columns: 60px 1fr 50px; row-gap: 8px; }
  .service__desc { grid-column: 1 / -1; padding-left: 84px; }
  .contact__panel { grid-template-columns: 1fr; }
  .contact__meta { grid-template-columns: 1fr 1fr; }
  .contact__ticket { display: none; }
  .contact__mark { right: -12%; bottom: -6%; width: 70%; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  body { font-size: 16px; }
  .nav__wordmark-line:first-child { font-size: 24px; }
  .nav__wordmark-line:last-child { font-size: 11px; letter-spacing: .18em; }
  .nav__cta { padding: 8px 12px 8px 10px; font-size: 12px; }
  .nav__cta-text { display: none; }
  .nav__cta::after { content: "Call"; }
  .hero__sigil { display: none; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stats { gap: 10px; }
  .why__grid { grid-template-columns: 1fr; }
  .contact__meta { grid-template-columns: 1fr; }
  .service { grid-template-columns: 44px 1fr 30px; gap: 14px; padding: 22px 6px; }
  .service__desc { padding-left: 58px; font-size: 15px; }
  .footer__row { grid-template-columns: auto 1fr; }
  .footer__line--mono { grid-column: 1 / -1; text-align: left; }
}

/* =========================================================
   REVIEWS — auto-scrolling marquee of testimonials
   ========================================================= */
.reviews {
  padding: 0 0 clamp(60px, 8vw, 100px);
  position: relative;
}
.reviews .section-head { padding-left: var(--gutter); padding-right: var(--gutter); }

.reviews__rail {
  position: relative;
  overflow: hidden;
  padding: 6px 0 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.reviews__track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 0 11px;
  animation: rev-scroll 90s linear infinite;
  will-change: transform;
}
@keyframes rev-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.rev {
  flex: 0 0 clamp(280px, 32vw, 420px);
  margin: 0;
  padding: 28px 28px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  display: flex; flex-direction: column;
  gap: 14px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.rev::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--royal-glow), var(--royal), var(--royal-3));
  opacity: .9;
}
.rev::after {
  content: "“";
  position: absolute;
  right: 18px; bottom: -38px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 200px;
  line-height: 1;
  color: var(--royal);
  opacity: .14;
  pointer-events: none;
}
.rev__stars {
  font-family: var(--mono);
  font-size: 18px;
  letter-spacing: .15em;
  color: #ffcb3a;
  text-shadow: 0 0 18px rgba(255,203,58,.35);
}
.rev blockquote {
  margin: 0;
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--paper);
  flex: 1;
}
.rev figcaption {
  display: flex; flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.rev figcaption span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--royal-glow);
}
.rev figcaption i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray-1);
}

/* =========================================================
   MAP — slim banner under the contact panel
   ========================================================= */
.map {
  margin-top: clamp(24px, 3vw, 40px);
}
.map__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 1;
  background: var(--ink);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 50px -30px rgba(0,0,0,.7);
}
.map__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(.9) contrast(1.04);
}
.map__caption {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline;
  gap: 10px 18px;
  margin: 12px 4px 0;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-2);
}
.map__caption a {
  color: var(--royal-glow);
  border-bottom: 1px solid rgba(79,134,255,.5);
  padding-bottom: 1px;
  transition: color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.map__caption a:hover { color: var(--white); border-color: var(--white); }

@media (max-width: 720px) {
  .map__frame { aspect-ratio: 5 / 4; }
}

/* =========================================================
   NAV — dropdowns (Services + Service Area)
   ========================================================= */
.nav__links { gap: 24px; }
.nav__group {
  position: relative;
}
.nav__group > a, .nav__group > button {
  background: none; border: 0; cursor: pointer;
  font: inherit; color: inherit;
  padding: 8px 2px;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav__group > a::after, .nav__group > button::after {
  content: "▾";
  font-size: 9px;
  opacity: .55;
  transition: transform .25s var(--ease-out);
}
.nav__group:hover > a::after, .nav__group:focus-within > a::after,
.nav__group:hover > button::after, .nav__group:focus-within > button::after {
  transform: rotate(180deg);
}
.nav__menu {
  position: absolute;
  top: 100%; left: -10px;
  min-width: 220px;
  margin: 0; padding: 8px;
  list-style: none;
  background: rgba(7,8,13,.96);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(79,134,255,.18);
  border-radius: 10px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.6);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
  z-index: 60;
}
.nav__group:hover .nav__menu,
.nav__group:focus-within .nav__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: .01em;
  color: var(--gray-2);
  text-transform: none;
  transition: background .18s var(--ease-out), color .18s var(--ease-out);
}
.nav__menu a:hover, .nav__menu a:focus {
  background: rgba(29,78,216,.22);
  color: var(--white);
}
.nav__menu a[aria-current="page"] { color: var(--royal-glow); }

/* =========================================================
   STICKY MOBILE CTA BAR (< 768px)
   ========================================================= */
.mob-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 80;
  padding: 10px;
  gap: 8px;
  background: linear-gradient(180deg, rgba(7,8,13,.65), rgba(7,8,13,.96));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(79,134,255,.25);
}
.mob-cta a {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
}
.mob-cta__call { flex: 6; background: var(--royal); }
.mob-cta__call:active { background: var(--royal-3); }
.mob-cta__sms { flex: 4; background: var(--ink-2); border: 1px solid var(--royal); }
@media (max-width: 767px) {
  .mob-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* Skip-to-content link (a11y) */
.skip {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--royal); color: var(--white);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 13px;
  z-index: 999;
}
.skip:focus { left: 12px; top: 12px; }

/* =========================================================
   FOOTER — 3-column SEO footer (subpages + homepage)
   ========================================================= */
.footer { padding-top: 56px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand-block {
  display: flex; flex-direction: column; gap: 12px;
}
.footer__brand-row {
  display: flex; align-items: center; gap: 12px;
}
.footer__brand-row img { width: 52px; height: 52px; }
.footer__brand-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: var(--royal-glow);
  line-height: 1;
}
.footer__nap {
  font-family: var(--body);
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.6;
}
.footer__nap a { color: var(--royal-glow); border-bottom: 1px solid rgba(79,134,255,.4); }
.footer__nap a:hover { color: var(--white); border-color: var(--white); }
.footer__col h3 {
  margin: 0 0 14px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--paper);
}
.footer__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 8px;
}
.footer__list a {
  font-family: var(--body);
  font-size: 14px;
  color: var(--gray-2);
  transition: color .2s var(--ease-out);
}
.footer__list a:hover { color: var(--white); }
.footer__book {
  appearance: none; border: 0; padding: 0; background: none; cursor: pointer;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  color: var(--royal-glow);
  text-align: left;
  transition: color .2s var(--ease-out);
}
.footer__book:hover { color: var(--white); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px;
  padding: 22px 0 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-3);
}
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* =========================================================
   PAGE HERO — used on subpages (lighter than homepage hero)
   ========================================================= */
.page-hero {
  padding: clamp(24px, 4vw, 64px) var(--gutter) clamp(40px, 5vw, 80px);
  position: relative;
}
.crumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-1);
  margin: 0 0 18px;
}
.crumbs a { color: var(--gray-2); border-bottom: 1px dashed rgba(255,255,255,.18); padding-bottom: 1px; }
.crumbs a:hover { color: var(--white); }
.crumbs span { color: var(--royal-glow); }
.crumbs i { margin: 0 8px; font-style: normal; color: var(--gray-3); }

.page-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gray-2);
}
.page-hero__eyebrow .bar {
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--royal-glow);
}
.page-hero h1 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: .92;
  letter-spacing: -.015em;
  text-transform: uppercase;
  color: var(--paper);
  max-width: 22ch;
}
.page-hero h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(180deg, var(--royal-glow), var(--royal));
  -webkit-background-clip: text; background-clip: text;
}
.page-hero__lede {
  margin: 0 0 26px;
  max-width: 60ch;
  font-size: clamp(16px, 1.1vw, 18.5px);
  color: var(--gray-2);
  line-height: 1.55;
}
.page-hero__actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 4px;
}

/* =========================================================
   PROSE / SECTION BLOCKS (content pages)
   ========================================================= */
.section {
  padding: clamp(32px, 5vw, 72px) var(--gutter);
}
.section--alt {
  background: linear-gradient(180deg, rgba(11,37,150,.06), rgba(7,8,13,0));
}
.section__head {
  max-width: 880px;
  margin: 0 0 28px;
}
.section__kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray-2);
}
.section h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--paper);
}
.section h2 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(180deg, var(--royal-glow), var(--royal));
  -webkit-background-clip: text; background-clip: text;
}
.section h3 {
  margin: 24px 0 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .005em;
  color: var(--paper);
}
.prose {
  max-width: 70ch;
  color: var(--gray-2);
  line-height: 1.65;
  font-size: 16.5px;
}
.prose p { margin: 0 0 14px; }
.prose a {
  color: var(--royal-glow);
  border-bottom: 1px solid rgba(79,134,255,.4);
  transition: color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.prose a:hover { color: var(--white); border-color: var(--white); }
.prose strong { color: var(--paper); }

.checklist {
  list-style: none;
  margin: 14px 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  position: relative;
  padding: 4px 0 4px 28px;
  color: var(--gray-2);
}
.checklist li::before {
  content: "→";
  position: absolute;
  left: 0; top: 4px;
  font-family: var(--display);
  font-weight: 800;
  color: var(--royal-glow);
}

/* =========================================================
   FEATURE GRID (service tiles, city tiles)
   ========================================================= */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.tile {
  display: flex; flex-direction: column;
  padding: 22px 22px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  color: var(--paper);
  position: relative;
  min-height: 180px;
  transition: transform .35s var(--ease-out), border-color .35s var(--ease-out), background .35s var(--ease-out);
}
.tile::after {
  content: "→";
  position: absolute;
  right: 18px; bottom: 18px;
  font-family: var(--display);
  font-size: 22px;
  color: var(--gray-3);
  transition: color .25s var(--ease-out), transform .35s var(--ease-out);
}
.tile:hover {
  transform: translateY(-3px);
  border-color: rgba(79,134,255,.45);
  background: linear-gradient(180deg, rgba(29,78,216,.18), rgba(11,16,32,.6));
}
.tile:hover::after { color: var(--royal-glow); transform: translateX(4px); }
.tile__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--royal-glow);
  margin-bottom: 10px;
}
.tile h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--paper);
}
.tile p {
  margin: 0;
  font-size: 14.5px;
  color: var(--gray-2);
  line-height: 1.5;
  max-width: 36ch;
}
@media (max-width: 900px) { .tile-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tile-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FAQ (accordion via <details>)
   ========================================================= */
.faq {
  display: grid;
  gap: 12px;
  max-width: 880px;
}
.faq details {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  padding: 0;
  overflow: hidden;
}
.faq details[open] { border-color: rgba(79,134,255,.4); }
.faq summary {
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(17px, 1.6vw, 20px);
  letter-spacing: .002em;
  color: var(--paper);
  list-style: none;
  position: relative;
  transition: color .2s var(--ease-out);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px; top: 50%; transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  color: var(--royal-glow);
  transition: transform .25s var(--ease-out);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--royal-glow); }
.faq__body {
  padding: 0 22px 18px;
  color: var(--gray-2);
  line-height: 1.6;
  max-width: 70ch;
}
.faq__body p { margin: 0 0 10px; }
.faq__body p:last-child { margin: 0; }

/* =========================================================
   RELATED SERVICES STRIP
   ========================================================= */
.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.related a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--paper);
  transition: background .25s var(--ease-out), border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.related a:hover {
  background: rgba(29,78,216,.18);
  border-color: rgba(79,134,255,.5);
  transform: translateY(-2px);
}
.related a::after { content: "→"; color: var(--royal-glow); }
@media (max-width: 720px) { .related { grid-template-columns: 1fr; } }

/* =========================================================
   FINAL CTA BAND
   ========================================================= */
.cta-band {
  margin: clamp(40px, 6vw, 96px) var(--gutter) 0;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 60px);
  background: linear-gradient(135deg, var(--royal-3) 0%, var(--ink-2) 60%, var(--ink) 100%);
  border: 1px solid rgba(79,134,255,.3);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg,
      rgba(79,134,255,.06) 0 16px,
      transparent 16px 32px);
  pointer-events: none;
}
.cta-band__copy { position: relative; z-index: 1; }
.cta-band h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--paper);
}
.cta-band p {
  margin: 0;
  color: var(--gray-2);
  max-width: 50ch;
}
.cta-band__actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  position: relative; z-index: 1;
}
@media (max-width: 760px) {
  .cta-band { grid-template-columns: 1fr; }
}

/* =========================================================
   TRUST STRIP (homepage)
   ========================================================= */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 22px var(--gutter);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(11,16,32,.4), rgba(7,8,13,.4));
}
.trust__item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--paper);
}
.trust__item::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--royal-glow);
  box-shadow: 0 0 12px rgba(79,134,255,.6);
}
@media (max-width: 800px) { .trust { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .trust { grid-template-columns: 1fr; } }

/* =========================================================
   HOW IT WORKS — 4-step horizontal layout
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}
.step {
  padding: 24px 22px 26px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  position: relative;
}
.step__n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--royal-glow);
  margin-bottom: 10px;
}
.step h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--paper);
}
.step p { margin: 0; color: var(--gray-2); font-size: 14.5px; line-height: 1.5; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* =========================================================
   CONTACT FORM (on /contact/)
   ========================================================= */
.cform {
  display: grid;
  gap: 14px;
  max-width: 640px;
}
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cform label { display: block; }
.cform label > span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray-1);
  margin-bottom: 6px;
}
.cform input, .cform textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: var(--paper);
  font-family: var(--body);
  font-size: 15.5px;
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out);
}
.cform input:focus, .cform textarea:focus {
  outline: none;
  border-color: var(--royal);
  background: rgba(29,78,216,.08);
}
.cform textarea { min-height: 110px; resize: vertical; }
@media (max-width: 560px) { .cform__row { grid-template-columns: 1fr; } }

/* =========================================================
   BOOKING MODAL
   ========================================================= */

/* Dark variants of the existing button — only used inside the
   paper-white contact panel and the modal. */
.btn--dark {
  --bg: var(--ink);
  --fg: var(--paper);
  --bd: var(--ink);
}
.btn--dark::before { background: linear-gradient(120deg, var(--royal), var(--royal-3)); }
.btn--ghost-dark {
  --bg: transparent;
  --fg: var(--ink);
  --bd: rgba(7,8,13,.25);
}
.btn--ghost-dark::before { background: rgba(7,8,13,.08); }

.contact__actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 6px;
}

.btn:disabled, .btn[disabled] {
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
}
.btn:disabled::before, .btn[disabled]::before { transform: translateY(101%) !important; }

/* ---- modal shell ---- */
.book {
  position: fixed; inset: 0;
  z-index: 200;
  display: grid; place-items: center;
  padding: clamp(12px, 3vw, 32px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease-out), visibility .35s;
}
.book.is-open { opacity: 1; visibility: visible; }
.book__scrim {
  position: absolute; inset: 0;
  background: rgba(4,6,14,.72);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
}
.book__panel {
  position: relative;
  width: min(960px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  background: var(--paper);
  color: var(--ink);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,.7),
    0 0 0 1px rgba(79,134,255,.18);
  transform: translateY(20px) scale(.98);
  transition: transform .45s var(--ease-out);
}
.book.is-open .book__panel { transform: translateY(0) scale(1); }
.book__panel::after {
  content: "";
  position: sticky; left: 0; right: 0; bottom: 0;
  display: block;
  height: 8px;
  background:
    repeating-linear-gradient(90deg,
      var(--royal) 0 18px,
      var(--ink) 18px 36px);
}

.book__close {
  position: absolute; top: 14px; right: 14px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(7,8,13,.18);
  background: var(--paper);
  font-size: 26px; line-height: 1;
  color: var(--ink);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .25s var(--ease-out), color .25s var(--ease-out), transform .25s var(--ease-out);
}
.book__close:hover { background: var(--ink); color: var(--paper); transform: rotate(90deg); }

/* ---- head ---- */
.book__head {
  padding: 36px clamp(20px, 4vw, 48px) 14px;
}
.book__num {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  color: #4b5478;
  padding: 5px 10px;
  border: 1px solid rgba(7,8,13,.18);
  border-radius: 999px;
}
.book__title {
  margin: 14px 0 14px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: .9;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.book__steps {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  color: #8b93b3;
}
.book__steps li { position: relative; padding: 4px 0; }
.book__steps li.is-active { color: var(--ink); }
.book__steps li.is-active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--royal);
}

/* ---- body ---- */
.book__body {
  padding: 20px clamp(20px, 4vw, 48px) 12px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(20px, 3vw, 40px);
}
.book__body[data-step="2"], .book__body[data-step="3"] { grid-template-columns: 1fr; }

.book__foot {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 14px;
  padding: 18px 0 8px;
  margin-top: 8px;
  border-top: 1px solid rgba(7,8,13,.12);
}
.book__summary {
  margin: 0;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.book__summary strong { color: var(--royal); font-weight: 700; }

/* ---- calendar ---- */
.cal { display: flex; flex-direction: column; }
.cal__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 4px 14px;
}
.cal__nav {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(7,8,13,.18);
  background: transparent;
  color: var(--ink);
  font-size: 18px; line-height: 1;
  cursor: pointer;
  transition: background .2s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.cal__nav:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cal__nav:disabled { opacity: .25; cursor: not-allowed; }
.cal__nav:disabled:hover { background: transparent; color: var(--ink); border-color: rgba(7,8,13,.18); }
.cal__month {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .005em;
  text-transform: uppercase;
}
.cal__weekdays, .cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal__weekdays {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .12em;
  color: #6b7396;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 0 8px;
  border-bottom: 1px solid rgba(7,8,13,.1);
  margin-bottom: 10px;
}
.cal__grid { padding-bottom: 6px; }
.cal__day {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background .2s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out), transform .2s var(--ease-out);
}
.cal__day:hover:not(:disabled):not(.is-selected) {
  background: rgba(29,78,216,.08);
  border-color: rgba(29,78,216,.25);
}
.cal__day:disabled, .cal__day.is-empty {
  color: rgba(7,8,13,.25);
  cursor: not-allowed;
  background: transparent;
}
.cal__day.is-empty { visibility: hidden; }
.cal__day.is-today {
  border-color: rgba(7,8,13,.4);
}
.cal__day.is-today::after {
  content: "";
  position: absolute;
  bottom: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--royal);
}
.cal__day.is-selected {
  background: var(--royal);
  color: var(--paper);
  border-color: var(--royal);
  box-shadow: 0 8px 20px -10px var(--royal);
}
.cal__day.is-selected::after { background: var(--paper); }
.cal__hint {
  margin: 8px 4px 0;
  font-family: var(--body);
  font-size: 13px;
  color: #6b7396;
}

/* ---- slots ---- */
.slots {
  border-left: 1px solid rgba(7,8,13,.1);
  padding-left: clamp(16px, 2.4vw, 28px);
}
.slots__title {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.slots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-height: 320px;
  overflow: auto;
  padding-right: 4px;
}
.slot {
  padding: 12px 10px;
  border-radius: 8px;
  border: 1px solid rgba(7,8,13,.18);
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px; letter-spacing: .04em;
  cursor: pointer;
  text-align: center;
  transition: background .2s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out), transform .2s var(--ease-out);
}
.slot:hover:not(:disabled):not(.is-selected) {
  background: rgba(29,78,216,.08);
  border-color: rgba(29,78,216,.4);
}
.slot:disabled {
  text-decoration: line-through;
  color: rgba(7,8,13,.35);
  border-style: dashed;
  cursor: not-allowed;
}
.slot.is-selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.slots__empty {
  grid-column: 1 / -1;
  padding: 28px 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .1em;
  color: #6b7396;
}

/* ---- details form ---- */
.bform { display: contents; }
.book__body[data-step="2"] { display: block; }
.bform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.bform__field { display: block; }
.bform__field--full { display: block; margin-bottom: 16px; }
.bform__field > span {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
  color: #4b5478;
  margin-bottom: 6px;
}
.bform__field > span em { font-style: normal; color: #8b93b3; }
.bform__field input,
.bform__field select,
.bform__field textarea {
  width: 100%;
  padding: 14px 14px;
  background: rgba(7,8,13,.04);
  border: 1px solid rgba(7,8,13,.16);
  border-radius: 8px;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  transition: background .2s var(--ease-out), border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.bform__field input:focus,
.bform__field select:focus,
.bform__field textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(29,78,216,.18);
}
.bform__field input.is-invalid,
.bform__field select.is-invalid,
.bform__field textarea.is-invalid {
  border-color: #c8341a;
  background: rgba(200,52,26,.06);
}
.bform__field textarea { resize: vertical; min-height: 96px; }

/* ---- done ---- */
.book__body--done { padding-bottom: 36px; }
.bdone {
  text-align: center;
  padding: 20px 8px 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}
.bdone__mark {
  color: var(--royal);
  animation: pop .6s var(--ease-out) both;
}
@keyframes pop {
  0%   { transform: scale(.6); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.bdone h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.bdone__summary {
  margin: 0;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  color: var(--royal);
}
.bdone__note {
  margin: 4px 0 12px;
  max-width: 48ch;
  color: #444a64;
}
.bdone__note a { color: var(--royal); border-bottom: 1px solid currentColor; }

/* ---- responsive ---- */
@media (max-width: 800px) {
  .book__body { grid-template-columns: 1fr; }
  .slots { border-left: 0; padding-left: 0; border-top: 1px solid rgba(7,8,13,.1); padding-top: 20px; }
  .slots__grid { max-height: 260px; }
  .bform__row { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 480px) {
  .book__head { padding: 28px 18px 10px; }
  .book__body { padding: 14px 18px 10px; }
  .book__title { font-size: 30px; }
  .cal__day { font-size: 14px; border-radius: 6px; }
  .slots__grid { grid-template-columns: repeat(2, 1fr); }
}

