/* Self-hosted variable fonts + metric-matched fallbacks (kills font-swap layout shift). Generated. */
@font-face{font-family:'Montserrat';font-style:normal;font-display:swap;font-weight:100 900;src:url('/assets/fonts/montserrat-latin-wght-normal.woff2') format('woff2');}
@font-face {
  font-family: "Montserrat Fallback";
  src: local('Arial'), local('ArialMT');
  ascent-override: 85.7923%;
  descent-override: 22.2457%;
  line-gap-override: 0%;
  size-adjust: 112.8307%;
}
@font-face{font-family:'Source Sans 3';font-style:normal;font-display:swap;font-weight:100 900;src:url('/assets/fonts/source-sans-3-latin-wght-normal.woff2') format('woff2');}
@font-face {
  font-family: "Source Sans 3 Fallback";
  src: local('Arial'), local('ArialMT');
  ascent-override: 109.2105%;
  descent-override: 42.6604%;
  line-gap-override: 0%;
  size-adjust: 93.7639%;
}
@font-face{font-family:'JetBrains Mono';font-style:normal;font-display:swap;font-weight:100 900;src:url('/assets/fonts/jetbrains-mono-latin-wght-normal.woff2') format('woff2');}
@font-face {
  font-family: "JetBrains Mono Fallback";
  src: local('Courier New'), local('CourierNewPSMT');
  ascent-override: 102.0166%;
  descent-override: 30.0049%;
  size-adjust: 99.9837%;
}

/* ============================================================
   SALT'S MOBILE MECHANIC — STATIC SITE STYLES
   Ported from the original Claude Design project: design-system
   tokens + shared/site.css, flattened into one plain CSS file
   (no build step, no React). Sharp corners by brand mandate;
   10px radius is a deliberate override on CTA buttons only.
   ============================================================ */

:root {
  /* ---- Surfaces ---- */
  --charcoal-900: #0e0e0e;
  --charcoal-800: #131313;
  --charcoal-700: #1b1c1c;
  --charcoal-600: #1f2020;
  --charcoal-500: #262626;
  --charcoal-400: #2a2a2a;

  --background: var(--charcoal-800);
  --surface: var(--charcoal-600);
  --surface-raised: var(--charcoal-500);
  --surface-sunken: var(--charcoal-900);
  --surface-high: var(--charcoal-400);

  /* ---- Brand / action ---- */
  --action: #ff6b00;
  --action-hover: #e25f00;
  --on-action: #000000;
  --accent-text: #ffb693;

  /* ---- Text ---- */
  --text-strong: #ffffff;
  --text-body: #e4e2e1;
  --text-muted: #e2bfb0;
  --text-faint: #6b6b6b;

  /* ---- Lines ---- */
  --border: #333333;

  /* ---- Status ---- */
  --danger: #e11d48;
  --error: #ffb4ab;
  --success: #2fbf71;

  /* ---- Type ---- */
  --font-display: Montserrat, "Montserrat Fallback", Arial, system-ui, sans-serif;
  --font-body: "Source Sans 3", "Source Sans 3 Fallback", Arial, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "JetBrains Mono Fallback", "Courier New", ui-monospace, monospace;

  /* ---- Spacing (8px grid) ---- */
  --space-xs: 4px;
  --space-sm: 12px;
  --space-base: 8px;
  --space-gutter: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --margin-mobile: 20px;
  --margin-desktop: 48px;
  --content-max: 1280px;

  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.2s;
  --dur-base: 0.3s;

  --elevation-overlay: 0 8px 32px rgba(0, 0, 0, 0.55);
  --glow-action: 0 0 0 2px var(--action);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; }
html { overflow-x: hidden; }
body { max-width: 100%; }
body {
  margin: 0;
  background-color: var(--background);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--text-strong); margin: 0; line-height: 1.1; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--action); color: #000; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--charcoal-800); }
::-webkit-scrollbar-thumb { background: var(--border); }
::-webkit-scrollbar-thumb:hover { background: var(--action); }

.container { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--margin-desktop); }
.overflow-wrap { overflow-wrap: break-word; }
.hero-title, .display-xl { overflow-wrap: break-word; }

.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;
}

/* Material Symbols (icon font) */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal; font-style: normal; font-size: 24px; line-height: 1;
  letter-spacing: normal; text-transform: none; display: inline-block;
  white-space: nowrap; word-wrap: normal; direction: ltr;
  -webkit-font-feature-settings: 'liga'; -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}
.material-symbols-outlined.fill { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
/* The icon font loads asynchronously (non-render-blocking). Until it's ready, hide the
   raw ligature text ("menu", "call", …) so it never flashes. JS adds .icons-ready. */
html:not(.icons-ready) .material-symbols-outlined { visibility: hidden; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.02em;
  padding: 15px 28px; border-radius: 10px; border: 2px solid transparent;
  cursor: pointer; transition: filter var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}
.btn .material-symbols-outlined { font-size: 19px; }
.btn-primary { background: var(--action); color: var(--on-action); }
.btn-primary:hover { background: var(--action-hover); }
.btn-secondary { background: transparent; color: var(--text-strong); border-color: var(--text-strong); }
.btn-secondary:hover { border-color: var(--action); color: var(--action); }
.btn-emergency { background: var(--danger); color: #fff; }
.btn-lg { padding: 18px 34px; font-size: 15px; }
.btn-sm { padding: 10px 18px; font-size: 12px; }
.btn-full { width: 100%; }

/* Big "stamped" CTA anchor used on band CTAs */
.cta-stamp {
  background: #000; color: #fff; padding: 20px 44px; font-family: var(--font-display);
  font-weight: 700; font-size: 20px; text-transform: uppercase; display: inline-flex;
  align-items: center; gap: 12px; border-radius: 10px;
}
.cta-stamp .material-symbols-outlined { font-size: 22px; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(19,19,19,0.97); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }
.logo img { height: 92px; width: auto; }
.nav-desktop { display: flex; align-items: center; gap: 30px; }
.nav-desktop a {
  font-family: var(--font-body); font-weight: 600; font-size: 16px; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--text-body); padding-bottom: 4px; border-bottom: 2px solid transparent;
}
.nav-desktop a:hover, .nav-desktop a:focus-visible { color: var(--accent-text); }
.nav-desktop a[aria-current="page"] { color: var(--accent-text); border-bottom-color: var(--action); }
.nav-cta-phone { font-size: 15px; padding: 9px 20px; }
.nav-mobile-toggle {
  display: none; background: transparent; border: 1px solid var(--border); color: var(--text-strong);
  width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-mobile-toggle .material-symbols-outlined { font-size: 30px; }

.nav-sheet {
  position: fixed; inset: 0; z-index: 120; background: #0e0e0e;
  min-height: 100vh; min-height: 100dvh; overflow-y: auto;
  display: none; flex-direction: column; padding: 24px var(--margin-mobile);
}
.nav-sheet.is-open { display: flex; }
.nav-sheet-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.nav-sheet-close { background: transparent; border: none; color: var(--text-strong); cursor: pointer; padding: 6px; }
.nav-sheet-close .material-symbols-outlined { font-size: 34px; }
.nav-sheet a {
  font-family: var(--font-display); font-weight: 700; font-size: 28px; text-transform: uppercase;
  letter-spacing: -0.02em; color: var(--text-strong); padding: 16px 0; border-bottom: 1px solid var(--border); display: block;
}
.nav-sheet a[aria-current="page"] { color: var(--accent-text); }
.nav-sheet-ctas { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-cta-phone { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
}

/* ---- Emergency FAB ---- */
.emergency-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 40; background: var(--danger); color: #fff;
  width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--elevation-overlay);
}
.emergency-fab .material-symbols-outlined { font-size: 27px; }
.emergency-fab::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--danger); z-index: -1;
  animation: fabPulse 2.2s var(--ease-standard) infinite;
}
@keyframes fabPulse { 0% { transform: scale(1); opacity: 0.55; } 70%, 100% { transform: scale(1.7); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .emergency-fab::before { animation: none; } }
@media (max-width: 820px) { .emergency-fab { bottom: 18px; right: 18px; width: 54px; height: 54px; } }

/* ---- Hero (generic — used on every page) ---- */
.hero { position: relative; overflow: hidden; background: var(--charcoal-900); padding: 90px 0 var(--space-xl); }
.hero-bg {
  position: absolute; inset: -8% 0; background-size: cover; background-position: center right;
  will-change: transform;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgb(19,19,19) 0%, rgba(19,19,19,0.82) 42%, rgba(19,19,19,0.32) 70%, rgba(19,19,19,0.08) 100%);
}
.hero-inner { position: relative; max-width: 780px; }
.hero-inner.wide { max-width: 860px; }
.eyebrow {
  display: inline-block; background: var(--action); color: var(--on-action);
  font-family: var(--font-mono); font-weight: 600; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 7px 13px; margin-bottom: 22px; border-radius: 21px 0;
}
.eyebrow-plain {
  display: block; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent-text); margin-bottom: 16px;
}
h1 { font-weight: 800; font-size: 60px; line-height: 1.04; text-transform: uppercase; letter-spacing: -0.02em; margin: 0 0 8px; }
h1 .accent { color: var(--accent-text); }
.hero-sub { font-size: 19px; line-height: 1.55; color: var(--text-body); max-width: 580px; margin: 22px 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-text); margin-top: 18px; }
/* Home hero primary CTA — fixed comfortable width (matches original design), wraps the phone number. */
.hero-cta { width: 270px; max-width: 100%; justify-content: center; }

/* ---- Trust / value strip ---- */
.value-strip-wrap { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 26px 0; }
.value-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.value-strip.cols-4 { grid-template-columns: repeat(4, 1fr); }
.value-strip li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--text-body);
}
.value-strip .material-symbols-outlined { color: var(--action); font-size: 22px; }
@media (max-width: 760px) { .value-strip, .value-strip.cols-4 { grid-template-columns: repeat(2, 1fr); row-gap: 18px; } }

/* ---- Sections (generic) ---- */
section.band { padding: var(--space-xl) 0; }
section.band.tight { padding: var(--space-lg) 0; }
.bg-bg { background: var(--background); }
.bg-surface { background: var(--surface); }
.bg-sunken { background: var(--surface-sunken); }
.bg-raised { background: var(--surface-raised); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head.left { text-align: left; max-width: none; margin: 0 0 48px; }
.section-head .eyebrow-label {
  display: block; font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent-text); margin-bottom: 10px;
}
h2 { font-weight: 800; font-size: 44px; text-transform: uppercase; letter-spacing: -0.02em; margin: 0; }
h2 .accent { color: var(--accent-text); }
.section-head p { font-size: 18px; line-height: 1.5; color: var(--text-muted); margin: 16px 0 0; }
.section-head.left .rule { width: 80px; height: 4px; background: var(--action); margin-top: 20px; }

/* ---- Generic responsive grids ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
}

/* ---- Cards ---- */
.card {
  background: var(--surface-raised); border: 1px solid var(--border); padding: 28px;
  transition: border-color var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
}
.card:hover { border-color: var(--action); transform: translateY(-4px); }
.card .material-symbols-outlined.icon { color: var(--action); font-size: 36px; margin-bottom: 16px; display: block; }
.card h3, .card h4 { font-weight: 700; font-size: 19px; text-transform: uppercase; margin: 0 0 10px; }
.card p { font-size: 15px; line-height: 1.5; color: var(--text-muted); }

/* ---- Icon-lead card (About values) ---- */
.icon-card { background: var(--surface-raised); border: 1px solid var(--border); padding: 28px; display: flex; gap: 18px; }
.icon-card .icon-box {
  width: 48px; height: 48px; flex-shrink: 0; background: var(--action); color: var(--on-action);
  display: flex; align-items: center; justify-content: center;
}
.icon-card h4 { font-weight: 700; font-size: 19px; text-transform: uppercase; margin: 0 0 10px; }
.icon-card p { font-size: 15px; line-height: 1.5; color: var(--text-muted); }

/* ---- Pipeline ("How It Works") ---- */
.pipeline { position: relative; display: flex; flex-direction: column; gap: 28px; padding-left: 72px; max-width: 860px; margin: 0 auto; }
.pipeline-rail { position: absolute; left: 27px; top: 8px; bottom: 8px; width: 3px; background: var(--border); overflow: hidden; }
.pipeline-fill { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: var(--action); transition: height 0.15s linear; }
.pipeline-step { position: relative; }
.pipeline-marker {
  position: absolute; left: -60px; top: 8px; width: 56px; height: 56px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--border); color: var(--text-faint);
  display: flex; align-items: center; justify-content: center; z-index: 2;
  transition: border-color 0.35s var(--ease-standard), background 0.35s var(--ease-standard), transform 0.35s var(--ease-standard);
}
.pipeline-marker .material-symbols-outlined { font-size: 30px; color: var(--text-faint); transition: color 0.35s var(--ease-standard); }
.pipeline-step.lit .pipeline-marker { border-color: var(--action); background: var(--action); transform: scale(1.06); }
.pipeline-step.lit .pipeline-marker .material-symbols-outlined { color: var(--on-action); }
.pipeline-card { background: var(--surface-raised); border: 1px solid var(--border); border-top: 4px solid var(--action); padding: 28px; opacity: 0; transform: translateX(24px); transition: opacity 0.5s var(--ease-standard), transform 0.5s var(--ease-standard); }
.pipeline-step.lit .pipeline-card { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .pipeline-card { opacity: 1 !important; transform: none !important; } .pipeline-fill { transition: none; } }
.pipeline-num { font-family: var(--font-display); font-weight: 800; font-size: 32px; color: var(--action); line-height: 1; margin-right: 14px; }
.pipeline-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.pipeline-card h4 { font-weight: 700; font-size: 20px; text-transform: uppercase; margin: 0 0 10px; }
.pipeline-card p { font-size: 15px; line-height: 1.45; color: var(--text-muted); }
.pipeline-note { font-family: var(--font-body); font-style: italic; font-size: 15px; color: var(--text-faint); text-align: center; margin: 36px auto 0; max-width: 680px; }
@media (max-width: 600px) {
  .pipeline { padding-left: 52px; }
  .pipeline-rail { left: 19px; }
  .pipeline-marker { left: -46px; width: 44px; height: 44px; }
  .pipeline-marker .material-symbols-outlined { font-size: 24px; }
}

/* ---- Pain / quote block (Home "Sound Familiar?") ---- */
.pain-block { max-width: 820px; margin: 0 auto; text-align: center; }
.pain-block .lines { display: flex; flex-direction: column; gap: 18px; font-size: 19px; line-height: 1.55; color: var(--text-muted); }
.pain-block .payoff {
  font-family: var(--font-display); font-weight: 700; font-size: 24px; text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--text-strong); margin: 32px 0 0; border-left: 4px solid var(--action); display: inline-block;
  padding: 8px 0 8px 18px; text-align: left;
}

/* ---- Services we don't offer (details/summary) ---- */
.disclosure { max-width: 860px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); padding: 0 24px; }
.disclosure summary {
  cursor: pointer; list-style: none; padding: 18px 0; display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}
.disclosure summary::-webkit-details-marker { display: none; }
.disclosure summary .material-symbols-outlined { font-size: 20px; color: var(--text-faint); }
.disclosure p { font-size: 15px; line-height: 1.45; color: var(--text-muted); margin: 0 0 18px; }

/* ---- Review marquee (Home) ---- */
.review-marquee {
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.review-track { display: flex; gap: 24px; width: max-content; animation: reviewscroll 44s linear infinite; }
.review-track:hover { animation-play-state: paused; }
.review-card-sm { flex: 0 0 380px; max-width: 380px; background: var(--surface); border: 1px solid var(--border); padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.review-card-sm blockquote { margin: 0; flex: 1; font-size: 16px; line-height: 1.55; color: var(--text-body); font-style: italic; }
.review-card-sm .source { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-text); }
@keyframes reviewscroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 12px)); } }
@media (prefers-reduced-motion: reduce) { .review-track { animation: none; } }
@media (max-width: 600px) { .review-card-sm { flex-basis: 300px; } }

/* ---- Stars ---- */
.stars { color: var(--action); font-size: 16px; letter-spacing: 2px; }

/* ---- Review grid (Testimonials page) ---- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--surface); border: 1px solid var(--border); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; gap: 18px; }
.review-card.featured { grid-column: span 2; }
.review-card.accent { border-left: 4px solid var(--action); }
.review-card blockquote { margin: 0; font-size: 16px; line-height: 1.5; color: var(--text-body); font-style: italic; }
.review-card.featured blockquote { font-size: 19px; line-height: 1.55; }
.review-person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; flex-shrink: 0; background: var(--surface-high); color: var(--text-strong);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 600; font-size: 14px; text-transform: uppercase;
}
.review-person .name { font-family: var(--font-mono); font-size: 14px; font-weight: 600; text-transform: uppercase; color: var(--text-strong); }
.review-person .loc { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; color: var(--accent-text); }
.review-slot {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center;
  border: 1.5px dashed var(--border); padding: 28px; min-height: 200px;
}
.review-slot .material-symbols-outlined { color: var(--text-faint); font-size: 34px; }
.review-slot .headline { font-family: var(--font-display); font-weight: 700; font-size: 16px; text-transform: uppercase; color: var(--text-muted); }
.review-slot .sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); }
@media (max-width: 980px) { .review-grid { grid-template-columns: repeat(2, 1fr); } .review-card.featured { grid-column: span 2; } }
@media (max-width: 600px) { .review-grid { grid-template-columns: 1fr; } .review-card.featured { grid-column: span 1; } }

/* ---- Stat blocks (About) ---- */
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.stat-block { border-left: 1px solid var(--border); padding-left: 18px; }
.stat-block .value { font-family: var(--font-display); font-weight: 800; font-size: 40px; color: var(--action); line-height: 1; }
.stat-block .label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-body); margin-top: 8px; }
.stat-block .sublabel { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-faint); margin-top: 4px; }

/* ---- Pull quote (About story) ---- */
.pull-quote { background: var(--surface-raised); border: 1px solid var(--border); border-top: 4px solid var(--action); padding: 36px; display: flex; flex-direction: column; justify-content: center; height: 100%; }
.pull-quote .material-symbols-outlined { color: var(--action); font-size: 44px; margin-bottom: 16px; }
.pull-quote p { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1.25; text-transform: uppercase; letter-spacing: -0.01em; color: var(--text-strong); margin: 0 0 20px; }
.pull-quote cite { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-text); font-style: normal; }

/* ---- Area / service map ---- */
.area-map {
  position: relative; overflow: hidden; height: 420px; border: 1px solid var(--border);
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,0.04) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,0.04) 39px 40px),
    var(--charcoal-900);
}
.area-map::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(125deg, transparent 38%, rgba(255,107,0,0.10) 39%, rgba(255,107,0,0.10) 41%, transparent 42%),
    linear-gradient(60deg, transparent 60%, rgba(255,255,255,0.05) 61%, rgba(255,255,255,0.05) 62%, transparent 63%);
  pointer-events: none;
}
.area-ring { position: absolute; transform: translate(-50%, -50%); border: 1px dashed rgba(255,107,0,0.4); border-radius: 9999px; }
.area-pin { position: absolute; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center; gap: 2px; }
.area-pin .material-symbols-outlined { color: var(--action); font-size: 30px; }
.area-pin .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-body); white-space: nowrap; }
.area-pin.hub .material-symbols-outlined { font-size: 40px; }
.area-pin.hub .lbl { color: var(--accent-text); font-weight: 600; }
.area-map-caption { position: absolute; left: 16px; bottom: 14px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }

.travel-note { background: var(--surface-raised); border: 1px solid var(--border); padding: 16px 18px; display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px; }
.travel-note .material-symbols-outlined { color: var(--action); font-size: 22px; margin-top: 1px; }
.travel-note p { font-size: 14px; line-height: 1.5; color: var(--text-muted); }
.travel-note strong { color: var(--text-body); }

.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-body);
  background: var(--surface); border: 1px solid var(--border); padding: 9px 14px; display: inline-flex; align-items: center; gap: 6px;
}
.chip .material-symbols-outlined { color: var(--action); font-size: 16px; }

/* ---- Services page: quick-jump chips ---- */
.jump-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.jump-chips a {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-body); background: var(--surface);
  border: 1px solid var(--border); padding: 9px 14px;
}
.jump-chips .material-symbols-outlined { font-size: 18px; color: var(--action); }
.jump-chips a.emergency .material-symbols-outlined { color: var(--danger); }

/* ---- Service detail blocks (Services page) ---- */
.service-detail { scroll-margin-top: 100px; background: var(--surface-raised); border: 1px solid var(--border); border-left: 4px solid var(--action); padding: 32px; }
.service-detail.emergency { border-left-color: var(--danger); }
.service-detail-head { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 20px; }
.service-detail-icon { width: 56px; height: 56px; flex-shrink: 0; background: var(--action); color: var(--on-action); display: flex; align-items: center; justify-content: center; }
.service-detail.emergency .service-detail-icon { background: var(--danger); color: #fff; }
.service-detail h3 { font-weight: 800; font-size: 26px; text-transform: uppercase; letter-spacing: -0.01em; margin: 0 0 6px; }
.service-detail .sub { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-text); }
.service-detail > p.body { font-size: 16px; line-height: 1.55; color: var(--text-body); margin: 0 0 24px; max-width: 820px; }
.service-detail-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.service-detail h5 { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin: 0 0 14px; }
.included-list { display: flex; flex-direction: column; gap: 10px; }
.included-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.3; color: var(--text-body); }
.included-list .material-symbols-outlined { color: var(--action); font-size: 18px; margin-top: 1px; }
.service-detail .note { font-family: var(--font-body); font-style: italic; font-size: 14px; line-height: 1.5; color: var(--text-muted); margin: 20px 0 0; padding-top: 16px; border-top: 1px solid var(--border); }
.service-detail .cta-row { margin-top: 24px; }
@media (max-width: 760px) { .service-detail-cols { grid-template-columns: 1fr; } }

/* ---- Pricing grid ---- */
.pricing-card { background: var(--surface); border: 1px solid var(--border); padding: 24px; }
.pricing-card .material-symbols-outlined { color: var(--action); font-size: 30px; margin-bottom: 12px; display: block; }
.pricing-card h4 { font-weight: 700; font-size: 17px; text-transform: uppercase; margin: 0 0 8px; }
.pricing-card p { font-size: 14px; line-height: 1.5; color: var(--text-muted); }

/* ---- "Doesn't handle" list rows ---- */
.no-list { display: flex; flex-direction: column; gap: 12px; }
.no-list .row { display: flex; gap: 12px; align-items: center; background: var(--surface); border: 1px solid var(--border); padding: 16px 18px; font-size: 15px; color: var(--text-body); }
.no-list .material-symbols-outlined { color: var(--text-faint); font-size: 20px; }

/* ---- 30% feature row (Home) ---- */
.feature-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; margin-top: 16px; }
.feature-stat { background: var(--surface-raised); border: 1px solid var(--border); border-left: 4px solid var(--action); padding: 32px; display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.feature-stat .num { font-family: var(--font-display); font-weight: 800; font-size: 64px; color: var(--action); line-height: 0.9; }
.feature-stat h4 { font-weight: 700; font-size: 20px; text-transform: uppercase; margin: 0 0 8px; }
.feature-stat p { font-size: 15px; line-height: 1.45; color: var(--text-muted); }
.feature-promo { background: var(--action); color: var(--on-action); padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.feature-promo .material-symbols-outlined { font-size: 34px; margin-bottom: 12px; }
.feature-promo h4 { font-weight: 800; font-size: 22px; text-transform: uppercase; margin: 0 0 8px; color: #000; }
.feature-promo p { font-weight: 600; font-size: 15px; line-height: 1.4; color: rgba(0,0,0,0.8); }
@media (max-width: 900px) { .feature-row { grid-template-columns: 1fr; } }

/* ---- FAQ ---- */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); padding: 0 24px; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; font-family: var(--font-display); font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: 0.01em; color: var(--text-strong);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { color: var(--action); font-size: 24px; flex-shrink: 0; transition: transform var(--dur-fast) var(--ease-standard); }
.faq-item[open] summary .faq-chevron { transform: rotate(45deg); }
.faq-item p { font-size: 15px; line-height: 1.55; color: var(--text-muted); margin: 0 0 20px; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.contact-card { background: var(--action); color: var(--on-action); padding: 32px; }
.contact-card .kicker { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.contact-phone-xl { display: block; font-family: var(--font-display); font-weight: 800; font-size: 38px; letter-spacing: -0.02em; margin: 12px 0 8px; color: #000; }
.contact-card p { font-size: 14px; line-height: 1.5; color: rgba(0,0,0,0.78); margin-bottom: 18px; }
.contact-card .row { display: flex; gap: 12px; }
.contact-card .row a {
  flex: 1; padding: 12px 0; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-transform: uppercase; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.contact-card .row a.solid { background: #000; color: #fff; }
.contact-card .row a.outline { border: 2px solid #000; color: #000; }
.contact-side-card { background: var(--surface); border: 1px solid var(--border); padding: 22px; display: flex; gap: 14px; align-items: flex-start; margin-top: 16px; }
.contact-side-card .material-symbols-outlined { color: var(--action); font-size: 24px; margin-top: 2px; }
.contact-side-card .label { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 5px; }
.contact-side-card a { font-size: 16px; color: var(--text-body); }
.contact-side-card .fine { font-size: 13px; line-height: 1.4; color: var(--text-muted); margin-top: 6px; }

.contact-form { background: var(--surface); border: 1px solid var(--border); padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}
.field input, .field select, .field textarea {
  appearance: none; -webkit-appearance: none; background: #000; color: var(--text-body); border: 1px solid var(--border);
  padding: 14px; font-family: var(--font-body); font-size: 16px; outline: none;
  transition: border-color var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast) var(--ease-standard);
}
.field select {
  padding-right: 40px; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23e2bfb0' d='M0 0h12L6 8z'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--action); box-shadow: var(--glow-action); }
.field textarea { min-height: 120px; resize: vertical; }
.form-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-foot .hint { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-faint); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .contact-form .form-row { grid-template-columns: 1fr; } .contact-phone-xl { font-size: 30px; } }

/* ---- Booking steps (Contact page reuses .grid-4 + .pipeline-card look) ---- */
.step-card { background: var(--surface-raised); border: 1px solid var(--border); border-top: 4px solid var(--action); padding: 26px; }
.step-card .head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.step-card .num { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--action); line-height: 1; }
.step-card .material-symbols-outlined { color: var(--text-strong); font-size: 26px; }
.step-card h4 { font-weight: 700; font-size: 17px; text-transform: uppercase; margin: 0 0 8px; }
.step-card p { font-size: 14px; line-height: 1.5; color: var(--text-muted); }

/* ---- Thank-you page ---- */
.thankyou-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 60px var(--margin-desktop); }
.thankyou-inner { max-width: 600px; text-align: center; }
.thankyou-check { width: 80px; height: 80px; background: var(--action); display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; }
.thankyou-check .material-symbols-outlined { font-size: 44px; color: #000; }
.thankyou-inner p { font-size: 18px; line-height: 1.55; color: var(--text-muted); margin: 0 0 12px; }
.thankyou-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 24px 0 48px; }
.next-steps { background: var(--surface); border: 1px solid var(--border); padding: 28px; text-align: left; }
.next-steps h3 { font-weight: 700; font-size: 18px; text-transform: uppercase; margin: 0 0 16px; }
.next-steps .row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.next-steps .material-symbols-outlined { color: var(--action); font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.next-steps p { font-size: 15px; line-height: 1.4; color: var(--text-body); margin: 0; }

/* ---- Final CTA band ---- */
.cta-band { background: var(--action); padding: var(--space-xl) var(--margin-desktop); text-align: center; }
.cta-band h2 { color: #000; margin-bottom: 16px; }
.cta-band p { font-family: var(--font-body); font-weight: 600; font-size: 18px; color: rgba(0,0,0,0.8); max-width: 640px; margin: 0 auto 36px; }
.cta-band .checklist { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.cta-band .checklist li { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: #000; }
.cta-band .checklist .material-symbols-outlined { font-size: 18px; }

/* ---- Footer ---- */
.site-footer { background: var(--surface-sunken); border-top: 1px solid var(--border); padding: var(--space-xl) 0 var(--space-lg); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-brand img { width: 150px; height: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.5; color: var(--text-muted); max-width: 280px; margin-bottom: 16px; }
.footer-brand a { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; color: var(--accent-text); }
.site-footer h5 {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 18px;
}
.site-footer ul { display: flex; flex-direction: column; gap: 12px; }
.site-footer ul a, .footer-contact p a { font-size: 14px; color: var(--text-muted); }
.site-footer ul a:hover, .footer-contact p a:hover { color: var(--accent-text); }
.footer-contact .icon-row { display: flex; gap: 12px; margin-bottom: 18px; }
.footer-icon-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: var(--text-body);
}
.footer-icon-btn:hover { border-color: var(--action); color: var(--action); }
.footer-contact .avail { font-family: var(--font-mono); font-size: 12px; line-height: 1.6; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-faint); }
.footer-bottom {
  max-width: var(--content-max); margin: 48px auto 0; padding: 24px var(--margin-desktop) 0;
  border-top: 1px solid var(--border); text-align: center; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

/* ---- Scroll reveal (progressive enhancement; content visible by default) ---- */
body.reveal-ready [data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s var(--ease-standard), transform .6s var(--ease-standard);
}
body.reveal-ready [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  body.reveal-ready [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* Fixed header offset for in-page anchors (services quick-jump, footer links) */
[id] { scroll-margin-top: 72px; }

/* ---- Mobile scale-down ---- */
@media (max-width: 760px) {
  :root { --margin-desktop: 20px; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .hero-cta { width: 100%; }
  .cta-stamp { display: flex; width: 100%; max-width: 340px; margin: 0 auto; box-sizing: border-box; justify-content: center; text-align: center; white-space: normal; line-height: 1.25; padding: 13px 16px; font-size: 14px; gap: 8px; }
}
@media (max-width: 400px) {
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
}
