/* ===========================================================================
   Sudz Auto Detailing: craft layer. Loads AFTER styles.css.
   Source of truth: tools/sudz-craft/custom.css. tools/build-sudz-craft.js
   copies it to sites/sudz-auto-detailing/custom.css. Edit here, not there.

   Theme "Night Shift": the logo is an italic white wordmark with an electric
   blue slash on black, so the whole site lives on black stock. Heavy italic
   condensed type (Barlow Condensed) echoes the wordmark. The blue
   parallelogram from the logo is the recurring shape: buttons, tags, rules.

   Mobile-nav safety (see craft-pass notes): never put transform, filter or
   backdrop-filter on .site-header. Never blanket z-index body children.
   =========================================================================== */

html:root {
  --sz-black: #050608;
  --sz-ink: #0a0c10;
  --sz-steel: #11141b;
  --sz-steel-2: #171b24;
  --sz-line: rgba(255,255,255,.08);
  --sz-blue: #2A4CDB;
  --sz-volt: #6D8BFF;      /* readable blue for small text on black */
  --sz-white: #F3F5FA;
  --sz-mute: #9BA4B7;
  --sz-slant: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  --sz-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --sz-body: "Barlow", Inter, system-ui, sans-serif;

  --brand-text: var(--sz-white);
  --brand-text-muted: var(--sz-mute);
  --brand-bg: var(--sz-black);
  --brand-bg-alt: var(--sz-ink);
  --brand-border: var(--sz-line);
  --header-h: 78px;
}

::selection { background: var(--sz-blue); color: #fff; }

body {
  font-family: var(--sz-body);
  background: var(--sz-black);
  color: var(--sz-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--sz-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .005em;
  color: #fff;
  line-height: .98;
}
h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.35rem; }
a { color: var(--sz-volt); }

/* The first H2 on every page is the meta description (SEO contract). It must
   read as a sentence, not a 50px wall. */
h2.seo-description {
  font-family: var(--sz-body);
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(243,245,250,.78);
  max-width: 60ch;
  margin: 0 0 18px;
}

/* ---- Header ------------------------------------------------------------ */
.site-header {
  background: rgba(5,6,8,.96);
  border-bottom: 1px solid var(--sz-line);
  box-shadow: inset 0 -2px 0 0 transparent;
}
.site-header::after {
  content: "";
  position: absolute; left: 0; bottom: -1px; height: 2px; width: 180px;
  background: var(--sz-blue);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.nav-logo img { height: 34px; max-width: 170px; }
.nav-links { gap: 26px; }
.nav-links a {
  font-family: var(--sz-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1.02rem;
  color: var(--sz-white);
}
.nav-links a:hover { color: var(--sz-volt); }
.nav-links a[href^="tel:"] { color: var(--sz-volt); }
.nav-cta {
  background: var(--sz-blue) !important;
  border-radius: 0 !important;
  clip-path: var(--sz-slant);
  padding: 11px 24px !important;
}
.nav-toggle { color: #fff; }
.nav-dropdown {
  background: var(--sz-ink) !important;
  border: 1px solid var(--sz-line) !important;
  border-top: 2px solid var(--sz-blue) !important;
  border-radius: 0 !important;
}
.nav-dropdown a { font-size: .95rem !important; letter-spacing: .04em; }
.nav-dropdown a:hover { background: rgba(42,76,219,.16) !important; color: #fff !important; }
@media (max-width: 860px) {
  .nav-links { background: var(--sz-black) !important; }
  .nav-links a { font-size: 1.35rem; }
}

/* ---- Buttons ----------------------------------------------------------- */
.x-btn, .sz-btn {
  font-family: var(--sz-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1.1rem;
  border-radius: 0;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  padding: 16px 34px;
}
.x-btn-primary, .sz-btn { background: var(--sz-blue); color: #fff; box-shadow: none; }
.x-btn-primary:hover, .sz-btn:hover { background: #3558ee; color: #fff; text-decoration: none; }
.x-btn-ghost, .sz-btn-ghost { background: rgba(255,255,255,.06); color: #fff; border: 0; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4); }
.x-btn-white { background: #fff; color: var(--sz-black); }
.sz-btn { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; white-space: nowrap; }
.sz-btn svg, .x-btn svg, .sz-btn-ghost svg { width: 18px; height: 18px; flex: none; }
.sz-btn-ghost { white-space: nowrap; display: inline-flex; align-items: center; gap: 10px; padding: 16px 30px; text-decoration: none; font-family: var(--sz-display); font-style: italic; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: 1.1rem; clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%); }
.sz-btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; text-decoration: none; }

/* ---- Inner-page banner --------------------------------------------------- */
.x-banner { background: var(--sz-black); border-bottom: 1px solid var(--sz-line); }
.x-banner .x-hero-bg { filter: saturate(.9) contrast(1.05); }
.x-banner .x-hero-scrim {
  background:
    linear-gradient(90deg, rgba(5,6,8,.95) 0%, rgba(5,6,8,.78) 45%, rgba(5,6,8,.35) 100%),
    linear-gradient(0deg, rgba(5,6,8,1) 0%, rgba(5,6,8,0) 45%);
}
.x-banner .container { padding-top: 150px; padding-bottom: 70px; }
.x-banner h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); max-width: 16ch; line-height: .92; }
.x-banner .x-sub { font-family: var(--sz-display); font-style: italic; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: 1.2rem; color: var(--sz-volt); }
.x-eyebrow {
  background: var(--sz-blue);
  border-radius: 0;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  padding: 7px 18px;
  font-family: var(--sz-display);
  font-style: italic;
  letter-spacing: .14em;
  font-size: 13px;
}
.x-crumbs, .x-crumbs a { color: rgba(243,245,250,.55); }

/* ---- Sections / body copy ----------------------------------------------- */
.section { background: var(--sz-black); }
.section-alt {
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.018) 0 2px, transparent 2px 22px),
    var(--sz-ink);
  border-top: 1px solid var(--sz-line);
  border-bottom: 1px solid var(--sz-line);
}
.x-body h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-top: 1.6em; }
.x-body h2:not(.seo-description)::before {
  content: ""; display: block; width: 46px; height: 5px; margin-bottom: 14px;
  background: var(--sz-blue); clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.x-body p, .x-prose p { color: #cfd5e1; font-size: 1.08rem; line-height: 1.7; }
.x-lead { font-size: 1.28rem !important; color: #fff !important; font-weight: 500; }
.x-checklist li { color: var(--sz-white); }
.x-ck { color: var(--sz-volt); }

.x-head .k, .section-head .eyebrow {
  font-family: var(--sz-display); font-style: italic; font-weight: 700;
  color: var(--sz-volt); letter-spacing: .16em; text-transform: uppercase;
}

.card, .x-svc, .x-feat {
  background: var(--sz-steel);
  border: 1px solid var(--sz-line);
  border-radius: 0;
}
.card:hover { border-color: rgba(42,76,219,.7); box-shadow: none; transform: none; }
.card h3 { color: #fff; }
.x-step .n { font-family: var(--sz-display); font-style: italic; color: transparent; -webkit-text-stroke: 1.5px var(--sz-blue); font-size: 4rem; }
.x-step h4 { color: #fff; }

.x-faq details { border-bottom: 1px solid var(--sz-line); }
.x-faq summary { font-family: var(--sz-display); font-style: italic; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; font-size: 1.3rem; color: #fff; }
.x-faq summary::after { color: var(--sz-volt); }
.x-faq details p { color: #c6ccd8; }

/* GHL widgets are white-on-white by design. Keep them on a white card so the
   form and booking page stay readable on black stock. */
.embed-wrap { background: #fff; border: 0; border-radius: 0; padding: 10px; box-shadow: 0 0 0 1px var(--sz-line), 0 30px 80px rgba(0,0,0,.6); }
.x-booking-embed, .booking-embed { background: #fff; padding: 10px; }

/* ---- Big CTA band --------------------------------------------------------- */
.x-bigcta {
  background:
    linear-gradient(115deg, var(--sz-blue) 0 58%, #1c36a8 58% 100%);
  position: relative; overflow: hidden;
}
.x-bigcta::before {
  content: "SUDZ"; position: absolute; right: -2vw; bottom: -6vw;
  font-family: var(--sz-display); font-style: italic; font-weight: 900;
  font-size: 22vw; line-height: 1; color: rgba(255,255,255,.07); pointer-events: none;
}
.x-bigcta h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.x-bigcta p { color: rgba(255,255,255,.9); }
.x-bigcta .container { position: relative; }

/* ---- Footer --------------------------------------------------------------- */
.site-footer { background: #000; border-top: 2px solid var(--sz-blue); margin-top: 0; }
.site-footer h4 { font-size: 1.2rem; letter-spacing: .06em; color: #fff; }
.site-footer a { color: #c6ccd8; }
.site-footer a:hover { color: #fff; }

/* ---- Gallery grid --------------------------------------------------------- */
.x-gphoto { border-radius: 0 !important; }

/* =============================================================================
   Before / after slider (.sz-ba). Static <img> tags so crawlers and no-JS
   visitors still see both photos; a transparent range input drives --pos.
   ============================================================================= */
.sz-ba {
  --pos: 50%;
  position: relative; margin: 0; overflow: hidden;
  aspect-ratio: 16 / 10; background: #000;
  border: 1px solid var(--sz-line);
  user-select: none; touch-action: pan-y;
}
.sz-ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.sz-ba .sz-ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.sz-ba-line {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px;
  background: #fff; box-shadow: 0 0 22px rgba(42,76,219,.9); pointer-events: none;
}
.sz-ba-line::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 46px; height: 46px;
  margin: -23px 0 0 -23px; background: var(--sz-blue);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
}
.sz-ba-line::before {
  content: "\2194"; position: absolute; top: 50%; left: 50%; z-index: 1;
  transform: translate(-50%, -52%); color: #fff; font-weight: 900; font-size: 20px;
}
.sz-ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize; z-index: 3; -webkit-appearance: none; appearance: none;
}
.sz-ba-tag {
  position: absolute; top: 14px; z-index: 2; pointer-events: none;
  font-family: var(--sz-display); font-style: italic; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em; font-size: .85rem;
  padding: 5px 14px; clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.sz-ba-tag.b { left: 14px; background: rgba(0,0,0,.75); color: #fff; }
.sz-ba-tag.a { right: 14px; background: var(--sz-blue); color: #fff; }
.sz-ba figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; pointer-events: none;
  padding: 34px 16px 12px; background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);
  font-family: var(--sz-display); font-style: italic; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: #fff; font-size: 1.05rem;
}
.sz-ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 24px 0 8px; }
@media (max-width: 720px) { .sz-ba-grid { grid-template-columns: 1fr; } }

/* ---- Price plate on service pages ----------------------------------------- */
.sz-plate {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0;
  margin: 26px 0 8px; border: 1px solid var(--sz-line); background: var(--sz-steel);
  position: relative;
}
.sz-plate::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--sz-blue); }
.sz-plate > div { padding: 18px 22px; border-left: 1px solid var(--sz-line); }
.sz-plate > div:first-child { border-left: 0; padding-left: 28px; }
.sz-plate .l { font-family: var(--sz-display); font-style: italic; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; color: var(--sz-volt); }
.sz-plate .v { font-family: var(--sz-display); font-style: italic; font-weight: 800; font-size: 2.1rem; color: #fff; line-height: 1.05; }
.sz-plate .v small { font-size: .95rem; color: var(--sz-mute); font-weight: 600; letter-spacing: .04em; }
.sz-plate .cta { display: flex; align-items: center; }
.sz-plate .cta .sz-btn { width: 100%; justify-content: center; }

/* =============================================================================
   HOME (index.html only; markup written by build-sudz-craft.js)
   ============================================================================= */
.sz-hero {
  position: relative; min-height: min(100vh, 900px); display: flex; align-items: center;
  overflow: hidden; background: #000; isolation: isolate;
}
.sz-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 45%; z-index: -2; }
.sz-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,6,8,.97) 0%, rgba(5,6,8,.86) 38%, rgba(5,6,8,.35) 70%, rgba(5,6,8,.55) 100%),
    linear-gradient(0deg, var(--sz-black) 0%, rgba(5,6,8,0) 32%),
    linear-gradient(180deg, rgba(5,6,8,.9) 0%, rgba(5,6,8,0) 26%);
}
.sz-hero-ghost {
  position: absolute; right: -3vw; top: 50%; transform: translateY(-50%); z-index: -1;
  font-family: var(--sz-display); font-style: italic; font-weight: 900; line-height: .8;
  font-size: clamp(9rem, 30vw, 28rem); color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.1); pointer-events: none; letter-spacing: -.02em;
}
.sz-hero .container { position: relative; padding-top: 130px; padding-bottom: 90px; width: 100%; }
.sz-hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 48px; align-items: end; }
.sz-kicker {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px;
  font-family: var(--sz-display); font-style: italic; font-weight: 700; text-transform: uppercase;
  letter-spacing: .2em; font-size: .95rem; color: var(--sz-volt);
}
.sz-kicker::before { content: ""; width: 38px; height: 6px; background: var(--sz-blue); clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%); }
.sz-hero h1 {
  font-size: clamp(3.2rem, 6.6vw, 6.4rem); line-height: .86; letter-spacing: -.01em;
  margin: 0 0 22px; max-width: 14ch;
}
.sz-hero h1 .blue { color: var(--sz-blue); display: block; -webkit-text-stroke: 0; }
.sz-hero .tag {
  font-family: var(--sz-display); font-style: italic; font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.2rem, 2vw, 1.6rem); letter-spacing: .04em; color: #fff; margin: 0 0 30px;
}
.sz-hero .tag b { color: var(--sz-volt); }
.sz-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.sz-spec {
  background: rgba(10,12,16,.82); border: 1px solid var(--sz-line); border-top: 3px solid var(--sz-blue);
  padding: 22px 24px;
}
.sz-spec dl { margin: 0; display: grid; gap: 14px; }
.sz-spec dt { font-family: var(--sz-display); font-style: italic; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--sz-volt); }
.sz-spec dd { margin: 2px 0 0; font-family: var(--sz-display); font-style: italic; font-weight: 800; text-transform: uppercase; font-size: 1.55rem; color: #fff; line-height: 1.05; }
.sz-spec dd small { display: block; font-family: var(--sz-body); font-style: normal; text-transform: none; font-weight: 500; font-size: .92rem; color: var(--sz-mute); }
@media (max-width: 900px) {
  .sz-hero-grid { grid-template-columns: 1fr; }
  .sz-hero .container { padding-top: 120px; padding-bottom: 60px; }
}

/* Town ticker */
.sz-ticker { background: var(--sz-blue); overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(255,255,255,.2); }
.sz-ticker-track { display: inline-flex; animation: sz-tick 48s linear infinite; }
.sz-ticker span {
  font-family: var(--sz-display); font-style: italic; font-weight: 800; text-transform: uppercase;
  font-size: 1.35rem; letter-spacing: .06em; color: #fff; padding: 14px 0;
}
.sz-ticker span::after { content: "/"; margin: 0 26px; color: rgba(255,255,255,.45); }
@keyframes sz-tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .sz-ticker-track { animation: none; } }

/* Section heads */
.sz-sec { padding: 110px 0; position: relative; }
.sz-sec.alt { background: repeating-linear-gradient(115deg, rgba(255,255,255,.018) 0 2px, transparent 2px 22px), var(--sz-ink); border-top: 1px solid var(--sz-line); border-bottom: 1px solid var(--sz-line); }
.sz-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 46px; flex-wrap: wrap; }
.sz-head .num { font-family: var(--sz-display); font-style: italic; font-weight: 800; color: var(--sz-volt); letter-spacing: .2em; text-transform: uppercase; font-size: .95rem; margin-bottom: 12px; }
.sz-head h2 { margin: 0; font-size: clamp(2.6rem, 6vw, 5rem); line-height: .9; }
.sz-head h2 em { font-style: italic; color: var(--sz-blue); }
.sz-head p { max-width: 42ch; color: var(--sz-mute); margin: 0; font-size: 1.08rem; }

/* The proof: big slider + thumbnail rail */
.sz-proof { display: grid; grid-template-columns: 1fr 300px; gap: 18px; }
.sz-proof .sz-ba { aspect-ratio: 16 / 10; }
.sz-rail { display: grid; gap: 10px; align-content: start; }
.sz-rail button {
  display: grid; grid-template-columns: 96px 1fr; gap: 12px; align-items: center; text-align: left;
  background: var(--sz-steel); border: 1px solid var(--sz-line); color: #fff; padding: 6px; cursor: pointer;
  font-family: var(--sz-display); font-style: italic; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 1rem;
}
.sz-rail button img { width: 96px; height: 60px; object-fit: cover; display: block; }
.sz-rail button[aria-pressed="true"] { border-color: var(--sz-blue); box-shadow: inset 4px 0 0 var(--sz-blue); }
.sz-rail button:hover { border-color: rgba(42,76,219,.6); }
@media (max-width: 900px) {
  .sz-proof { grid-template-columns: 1fr; }
  .sz-rail { grid-template-columns: repeat(3, 1fr); }
  .sz-rail button { grid-template-columns: 1fr; font-size: .85rem; }
  .sz-rail button img { width: 100%; height: 64px; }
}

/* The menu: price board */
.sz-menu { border-top: 1px solid var(--sz-line); }
.sz-row {
  display: grid; grid-template-columns: 70px 1.6fr 1fr 1fr 110px 40px; gap: 18px; align-items: center;
  padding: 22px 8px; border-bottom: 1px solid var(--sz-line); color: #fff; text-decoration: none;
  transition: background .15s;
}
.sz-row:hover { background: rgba(42,76,219,.1); text-decoration: none; color: #fff; }
.sz-row .i { font-family: var(--sz-display); font-style: italic; font-weight: 800; font-size: 1.4rem; color: transparent; -webkit-text-stroke: 1px var(--sz-volt); }
.sz-row .n { font-family: var(--sz-display); font-style: italic; font-weight: 800; text-transform: uppercase; font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1; }
.sz-row .n small { display: block; font-family: var(--sz-body); font-style: normal; text-transform: none; font-weight: 500; font-size: .92rem; color: var(--sz-mute); margin-top: 6px; line-height: 1.4; }
.sz-row .p { font-family: var(--sz-display); font-style: italic; font-weight: 800; font-size: 1.7rem; }
.sz-row .p small { display: block; font-family: var(--sz-display); font-weight: 700; letter-spacing: .14em; font-size: .72rem; color: var(--sz-volt); text-transform: uppercase; }
.sz-row .t { font-family: var(--sz-display); font-style: italic; font-weight: 700; color: var(--sz-mute); text-transform: uppercase; letter-spacing: .06em; }
.sz-row .go { color: var(--sz-volt); font-size: 1.4rem; text-align: right; }
.sz-row.pop { background: linear-gradient(90deg, rgba(42,76,219,.22), rgba(42,76,219,0) 70%); }
.sz-row.pop .n::after { content: "Most popular"; margin-left: 12px; vertical-align: middle; background: var(--sz-blue); font-size: .75rem; letter-spacing: .12em; padding: 4px 10px; clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%); }
.sz-menu-head { display: grid; grid-template-columns: 70px 1.6fr 1fr 1fr 110px 40px; gap: 18px; padding: 0 8px 12px; font-family: var(--sz-display); font-style: italic; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; color: var(--sz-mute); }
.sz-addons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; align-items: center; }
.sz-addons .lab { font-family: var(--sz-display); font-style: italic; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--sz-volt); margin-right: 6px; }
.sz-addons a { background: var(--sz-steel); border: 1px solid var(--sz-line); color: #fff; padding: 10px 16px; text-decoration: none; font-weight: 600; }
.sz-addons a b { color: var(--sz-volt); margin-left: 6px; }
.sz-fine { color: var(--sz-mute); font-size: .95rem; margin-top: 18px; }
@media (max-width: 820px) {
  .sz-menu-head { display: none; }
  .sz-row { grid-template-columns: 44px 1fr auto; grid-template-areas: "i n n" "i p t"; row-gap: 10px; }
  .sz-row .i { grid-area: i; } .sz-row .n { grid-area: n; }
  .sz-row .p { grid-area: p; font-size: 1.35rem; } .sz-row .p.suv { display: none; }
  .sz-row .t { grid-area: t; text-align: right; } .sz-row .go { display: none; }
}

/* How it works: three drives */
.sz-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--sz-line); }
.sz-steps > div { padding: 34px 30px; border-left: 1px solid var(--sz-line); position: relative; background: var(--sz-steel); }
.sz-steps > div:first-child { border-left: 0; }
.sz-steps .big { font-family: var(--sz-display); font-style: italic; font-weight: 900; font-size: 5.5rem; line-height: .8; color: transparent; -webkit-text-stroke: 1.5px var(--sz-blue); margin-bottom: 18px; }
.sz-steps h3 { font-size: 1.9rem; margin: 0 0 10px; }
.sz-steps p { color: #c6ccd8; margin: 0; line-height: 1.6; }
@media (max-width: 820px) { .sz-steps { grid-template-columns: 1fr; } .sz-steps > div { border-left: 0; border-top: 1px solid var(--sz-line); } .sz-steps > div:first-child { border-top: 0; } }

/* Coverage: towns in big type */
.sz-towns { display: flex; flex-wrap: wrap; gap: 4px 22px; }
.sz-towns a, .sz-towns span {
  font-family: var(--sz-display); font-style: italic; font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.8rem, 3.6vw, 3rem); line-height: 1.12; color: rgba(243,245,250,.42); text-decoration: none;
}
.sz-towns .base { color: #fff; }
.sz-towns .base::after { content: "Home base"; font-size: .8rem; letter-spacing: .14em; vertical-align: super; margin-left: 8px; color: var(--sz-volt); }
.sz-towns a { color: #fff; }
.sz-towns a:hover { color: var(--sz-volt); text-decoration: none; }

/* FAQ block on home */
.sz-faq .x-faq { max-width: none; }

@media (max-width: 640px) {
  .sz-sec { padding: 76px 0; }
  .sz-hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
}

/* ---- Plain pages (about, gallery, contact, areas): section-head header ---- */
.section-head { text-align: left; margin-bottom: 36px; }
.section-head .eyebrow {
  display: inline-block; background: var(--sz-blue); color: #fff; padding: 6px 16px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%); font-size: 13px; margin-bottom: 18px;
}
.section-head h1 { font-size: clamp(3rem, 7vw, 5.6rem); line-height: .9; margin: 0 0 18px; }
.section > .container:first-child { padding-top: 40px; }
.x-prose h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-top: 1.4em; }

.cta-band { background: linear-gradient(115deg, var(--sz-blue) 0 58%, #1c36a8 58% 100%); color: #fff; }
.cta-band h2 { color: #fff; }
.btn { border-radius: 0; clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%); font-family: var(--sz-display); font-style: italic; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.cta-band .btn-primary { background: #fff; color: var(--sz-black); }
.btn-primary { background: var(--sz-blue); color: #fff; border: 0; }
.btn-secondary { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.45); border: 0; }
ul li::marker { color: var(--sz-volt); }
