/* =====================================================================
   Lance Lock Service - redesign mockup styles
   Design system: 03-design/design-system.md (single source of truth).
   Fonts: Saira Condensed (display) + Public Sans (body), Google Fonts.
   Motif: keyway notch (45-degree clip-path cut), brass keyline, pin-stack.
   Hard rule: border-radius 0 everywhere; no glassmorphism; flat shadows.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Tokens
   --------------------------------------------------------------------- */
:root {
  /* ---- Type families ---- */
  --font-display: "Saira Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* ---- Type scale (fluid) ---- */
  --fs-display: clamp(2.5rem, 7vw + 1rem, 4.25rem);
  --fs-h1:      clamp(2rem, 5vw + 0.75rem, 3rem);
  --fs-h2:      clamp(1.625rem, 3vw + 0.75rem, 2.25rem);
  --fs-h3:      clamp(1.375rem, 1.5vw + 0.85rem, 1.625rem);
  --fs-h4:      1.3125rem;
  --fs-h5:      1.0625rem;
  --fs-h6:      0.9375rem;
  --fs-lead:    clamp(1.0625rem, 0.5vw + 1rem, 1.25rem);
  --fs-body:    1rem;
  --fs-small:   0.875rem;
  --fs-xs:      0.78rem;
  --fs-overline:0.75rem;

  /* ---- Raw palette ---- */
  --ink: #16181C; --ink-800: #22252B; --ink-700: #33373F;
  --steel-700: #4A5158; --steel-500: #6B7480; --steel-300: #AEB6BF;
  --steel-200: #D5DAE0; --steel-100: #E7EAEE; --steel-50: #F4F6F8;
  --paper: #FCFCFD;
  --brass: #B6852A; --brass-600: #9C7022; --brass-300: #E3C682; --brass-tint: #F6EEDC;
  --vault: #3F6B52; --vault-tint: #E5EEE8;
  --hazard: #B4332A; --hazard-tint: #F6E4E2;

  /* ---- Semantic ---- */
  --bg: #FCFCFD; --bg-alt: #F4F6F8; --bg-tint: #E7EAEE;
  --bg-dark: #16181C; --bg-dark-alt: #22252B;
  --surface: #FFFFFF; --surface-alt: #F4F6F8; --surface-dark: #22252B;
  --ink-strong: #16181C; --ink-body: #33373F; --ink-muted: #6B7480;
  --ink-on-dark: #F4F6F8; --ink-on-dark-muted: #AEB6BF;
  --accent: #B6852A; --accent-hover: #9C7022; --accent-on-dark: #E3C682;
  --accent-tint: #F6EEDC; --on-accent: #16181C;
  --line: #D5DAE0; --line-strong: #AEB6BF; --line-on-dark: #33373F;
  --ok: #3F6B52; --ok-tint: #E5EEE8;
  --warn: #B6852A; --warn-tint: #F6EEDC;
  --error: #B4332A; --error-tint: #F6E4E2;
  --focus-ring: #B6852A;

  /* ---- Spacing ---- */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4rem; --sp-9: 6rem; --sp-10: 8rem;

  /* ---- Layout ---- */
  --maxw: 1200px; --maxw-narrow: 760px; --measure: 66ch;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-y: clamp(3rem, 7vw, 6rem);
  --header-h: 72px; --header-h-mobile: 60px; --mobile-cta-h: 56px;

  /* ---- Borders / motif ---- */
  --radius: 0; --bw: 1px; --bw-strong: 2px; --keyline: 3px;
  --notch: 14px; --notch-lg: 22px;

  /* ---- Elevation ---- */
  --shadow-1: 0 1px 0 0 var(--line);
  --shadow-2: 0 2px 0 0 rgba(22,24,28,0.08), 0 0 0 1px var(--line);
  --shadow-3: 0 6px 18px -8px rgba(22,24,28,0.28), 0 0 0 1px var(--line);
  --shadow-dark: 0 0 0 1px var(--line-on-dark);

  /* ---- Motion ---- */
  --dur-fast: 120ms; --dur: 180ms; --dur-slow: 260ms;
  --ease: cubic-bezier(0.2, 0, 0.2, 1);
}

/* ---------------------------------------------------------------------
   2. Base / reset
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; border-radius: 0 !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + var(--sp-4)); }
body {
  margin: 0; background: var(--bg); color: var(--ink-body);
  font: 400 var(--fs-body)/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: var(--font-display); color: var(--ink-strong); margin: 0 0 var(--sp-4); text-wrap: balance; }
h1 { font-size: var(--fs-h1); font-weight: 700; line-height: 1.04; letter-spacing: -0.005em; }
h2 { font-size: var(--fs-h2); font-weight: 700; line-height: 1.08; }
h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.12; }
h4 { font-size: var(--fs-h4); font-weight: 600; line-height: 1.18; letter-spacing: 0.01em; }
h5 { font-family: var(--font-body); font-size: var(--fs-h5); font-weight: 700; line-height: 1.3; margin: 0 0 var(--sp-3); }
h6 { font-family: var(--font-body); font-size: var(--fs-h6); font-weight: 700; line-height: 1.3; letter-spacing: 0.02em; margin: 0 0 var(--sp-2); }
p { margin: 0 0 var(--sp-4); max-width: var(--measure); }
a { color: var(--accent); text-underline-offset: 2px; }
a:hover { color: var(--accent-hover); }
img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 var(--sp-4); padding-left: var(--sp-5); }
li { margin-bottom: var(--sp-2); }
strong { color: var(--ink-strong); font-weight: 700; }

/* In-prose links get the brass underline treatment */
.prose a { color: var(--accent); text-decoration: underline; text-decoration-color: var(--accent);
  text-decoration-thickness: 2px; text-underline-offset: 2px; }
.prose a:hover { text-decoration-thickness: 3px; }

/* ---------------------------------------------------------------------
   3. Helpers
   --------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--maxw-narrow); }
section { padding-block: var(--section-y); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.overline {
  display: block;
  font: 700 var(--fs-overline)/1.2 var(--font-body);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-hover);
  margin-bottom: var(--sp-3);
}
.overline--on-dark { color: var(--accent-on-dark); }
.lead { font: 400 var(--fs-lead)/1.55 var(--font-body); color: var(--ink-body); max-width: 56ch; }
.small { font-size: var(--fs-small); }
.xs { font-size: var(--fs-xs); }
.text-center { text-align: center; }
.center-block { margin-inline: auto; }

/* Section header block */
.section-head { max-width: 60ch; margin-bottom: var(--sp-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-muted); margin-bottom: 0; }

/* Motif: keyway notches via clip-path (keeps true 0 radius) */
.notch {
  clip-path: polygon(0 0, calc(100% - var(--notch)) 0, 100% var(--notch), 100% 100%, 0 100%);
}
.notch-lg {
  clip-path: polygon(0 0, calc(100% - var(--notch-lg)) 0, 100% var(--notch-lg), 100% 100%, 0 100%);
}
.notch-bl {
  clip-path: polygon(0 0, 100% 0, 100% 100%, var(--notch) 100%, 0 calc(100% - var(--notch)));
}

/* Bands and dividers */
.band-dark {
  background: var(--bg-dark); color: var(--ink-on-dark);
  border-top: var(--keyline) solid var(--accent);
}
.band-alt { background: var(--bg-alt); }
.band-tint { background: var(--accent-tint); }
.band-dark h1, .band-dark h2, .band-dark h3, .band-dark h4 { color: var(--ink-on-dark); }
.band-dark p { color: var(--ink-on-dark-muted); }

.divider { height: 0; border: none; border-top: 1px solid var(--line); margin-block: 0; }
.divider--brass { border-top: var(--keyline) solid var(--accent); }

.pinstack { display: flex; align-items: flex-end; gap: 6px; height: 20px; margin-bottom: var(--sp-4); }
.pinstack span { width: 3px; background: var(--accent); }
.pinstack span:nth-child(odd)  { height: 60%; }
.pinstack span:nth-child(even) { height: 100%; }
.pinstack span:nth-child(3n)   { height: 40%; }

/* ---------------------------------------------------------------------
   4. Accessibility baseline
   --------------------------------------------------------------------- */
:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute; left: var(--sp-4); top: -100%; z-index: 1000;
  background: var(--ink-strong); color: var(--ink-on-dark);
  padding: var(--sp-3) var(--sp-5);
  font: 700 var(--fs-small)/1 var(--font-body); text-decoration: none;
}
.skip-link:focus { top: var(--sp-3); }

/* ---------------------------------------------------------------------
   5. Header / nav
   --------------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--line-on-dark);
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.header.is-condensed { box-shadow: 0 2px 0 0 rgba(0,0,0,0.4); }
.header__inner {
  display: flex; align-items: center; gap: var(--sp-5);
  width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
}
.wordmark {
  font: 800 1.375rem/1 var(--font-display);
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--ink-on-dark); text-decoration: none;
  display: inline-flex; align-items: center; gap: var(--sp-3); flex: none;
}
.wordmark:hover { color: var(--ink-on-dark); }
.wordmark .lock { color: var(--accent-on-dark); }
.wordmark__mark { width: 30px; height: 30px; flex: none; }

.nav { display: flex; align-items: center; gap: var(--sp-1); margin-inline-start: auto; }
.nav__link {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 var(--sp-3);
  font: 700 var(--fs-overline)/1 var(--font-body);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-on-dark-muted); text-decoration: none;
  position: relative; transition: color var(--dur) var(--ease);
}
.nav__link:hover { color: var(--ink-on-dark); }
.nav__link[aria-current="page"] { color: var(--accent-on-dark); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: var(--sp-3); bottom: 6px;
  width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-bottom: 6px solid var(--accent);
}

.rating-chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  background: var(--bg-dark-alt); border: 1px solid var(--line-on-dark);
  color: var(--ink-on-dark); font: 600 var(--fs-small)/1 var(--font-body);
  flex: none;
}
.rating-chip .stars { color: var(--accent-on-dark); letter-spacing: 0.06em; }

.header__call { flex: none; }
.header__call.btn { min-height: 44px; padding: 0 var(--sp-5); }

.nav-toggle {
  display: none; width: 44px; height: 44px; flex: none;
  background: transparent; border: 1px solid var(--line-on-dark);
  color: var(--ink-on-dark); align-items: center; justify-content: center;
  cursor: pointer; margin-inline-start: auto;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 300;
  background: var(--ink); color: var(--ink-on-dark);
  display: none; flex-direction: column;
  padding: var(--sp-5) var(--gutter) var(--sp-8);
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-6); }
.mobile-menu__close {
  width: 44px; height: 44px; background: transparent;
  border: 1px solid var(--line-on-dark); color: var(--ink-on-dark);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
}
.mobile-menu__close svg { width: 22px; height: 22px; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu__link {
  display: flex; align-items: center; min-height: 56px;
  border-bottom: 1px solid var(--line-on-dark);
  font: 700 1.25rem/1 var(--font-display); letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--ink-on-dark); text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.mobile-menu__link:hover { color: var(--accent-on-dark); }
.mobile-menu__link[aria-current="page"] { color: var(--accent-on-dark); }
.mobile-menu__contact { margin-top: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); }
.mobile-menu__phone {
  font: 800 2rem/1 var(--font-display); color: var(--accent-on-dark); text-decoration: none;
}
.mobile-menu__email { color: var(--ink-on-dark-muted); text-decoration: none; font-size: var(--fs-small); }

@media (max-width: 1079px) {
  .nav, .rating-chip, .header__call { display: none; }
  .nav-toggle { display: inline-flex; }
  .header { height: var(--header-h-mobile); }
}

/* ---------------------------------------------------------------------
   6. Mobile sticky call bar
   --------------------------------------------------------------------- */
.callbar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  height: var(--mobile-cta-h);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  height: 100%; width: 100%;
  background: var(--accent); color: var(--on-accent);
  font: 800 1.0625rem/1 var(--font-display);
  letter-spacing: 0.03em; text-transform: uppercase; text-decoration: none;
}
.callbar a:active { background: var(--accent-hover); }
.callbar svg { width: 20px; height: 20px; flex: none; }
@media (max-width: 767px) {
  .callbar { display: block; }
  body { padding-bottom: var(--mobile-cta-h); }
}

/* ---------------------------------------------------------------------
   7. Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  min-height: 48px; padding: 0 var(--sp-6);
  font: 800 1rem/1 var(--font-display);
  letter-spacing: 0.03em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--accent-hover); color: var(--on-accent); }

.btn--secondary { background: transparent; color: var(--ink-strong); border-color: var(--ink-strong); }
.btn--secondary:hover { background: var(--ink-strong); color: var(--ink-on-dark); }

.btn--ghost-dark { background: transparent; color: var(--ink-on-dark); border-color: var(--line-on-dark); }
.btn--ghost-dark:hover { border-color: var(--accent-on-dark); color: var(--accent-on-dark); }

.btn--call { background: var(--accent); color: var(--on-accent); }
.btn--call:hover { background: var(--accent-hover); color: var(--on-accent); }

.btn--lg { min-height: 56px; padding: 0 var(--sp-7); font-size: 1.125rem; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------------
   8. Hero
   --------------------------------------------------------------------- */
.hero {
  background: var(--bg-dark); color: var(--ink-on-dark);
  border-top: var(--keyline) solid var(--accent);
  padding-block: clamp(2.5rem, 6vw, 5rem);
}
.hero__inner {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1.1fr 0.9fr; align-items: center;
}
.hero__kicker {
  font: 700 var(--fs-overline)/1.2 var(--font-body);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-on-dark);
  margin-bottom: var(--sp-3);
}
.hero__title {
  font: 800 var(--fs-display)/0.98 var(--font-display);
  letter-spacing: -0.01em; text-wrap: balance; color: var(--ink-on-dark);
  margin: 0 0 var(--sp-4);
}
.hero__sub {
  font: 400 var(--fs-lead)/1.55 var(--font-body);
  color: var(--ink-on-dark-muted); max-width: 48ch; margin: 0 0 var(--sp-6);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.hero__trust {
  margin-top: var(--sp-6); padding-top: var(--sp-5);
  border-top: 1px solid var(--line-on-dark);
  font: 400 var(--fs-small)/1.55 var(--font-body); color: var(--ink-on-dark-muted);
  max-width: 52ch;
}
.hero__media { position: relative; box-shadow: var(--shadow-dark); }
.hero__media img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* Emergency hero variant: number-forward, single column */
.hero--emergency .hero__inner { grid-template-columns: 1fr; max-width: 900px; }
.hero--emergency .hero__phone {
  display: inline-flex; align-items: baseline; gap: var(--sp-3);
  font: 800 var(--fs-display)/1 var(--font-display); color: var(--accent-on-dark);
  text-decoration: none; margin-bottom: var(--sp-5); letter-spacing: -0.01em;
}
.hero--emergency .hero__phone:hover { color: var(--brass-300); text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 767px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__actions .btn { width: 100%; }
}

/* ---------------------------------------------------------------------
   9. Quick-action strip
   --------------------------------------------------------------------- */
.quickstrip { display: grid; gap: var(--sp-4); grid-template-columns: repeat(3, 1fr); }
.quick {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface-dark); color: var(--ink-on-dark);
  border: 1px solid var(--line-on-dark); border-top: var(--keyline) solid var(--accent);
  padding: var(--sp-5);
}
.quick h3 { color: var(--ink-on-dark); margin-bottom: var(--sp-2); }
.quick p { color: var(--ink-on-dark-muted); font-size: var(--fs-small); margin-bottom: var(--sp-4); }
.quick__call {
  margin-top: auto; display: inline-flex; align-items: center; gap: var(--sp-2); min-height: 44px;
  font: 700 var(--fs-small)/1 var(--font-body); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent-on-dark); text-decoration: none;
}
.quick__call:hover { color: var(--brass-300); text-decoration: underline; text-underline-offset: 3px; }
.quick__call svg { width: 18px; height: 18px; }
@media (max-width: 767px) { .quickstrip { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   10. Service / product cards
   --------------------------------------------------------------------- */
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  padding: var(--sp-6); height: 100%; box-shadow: var(--shadow-2);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: var(--keyline);
  width: 0; background: var(--accent); transition: width var(--dur-slow) var(--ease);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-3); }
.card:hover::before { width: 100%; }
.card__icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: var(--sp-4); }
.card__title { font: 600 var(--fs-h3)/1.12 var(--font-display); color: var(--ink-strong); margin: 0 0 var(--sp-3); }
.card__body { font: 400 var(--fs-body)/1.6 var(--font-body); color: var(--ink-body); margin: 0 0 var(--sp-5); flex: 1; max-width: none; }
.card__link {
  font: 700 var(--fs-small)/1 var(--font-body); text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); text-decoration: none;
  display: inline-flex; align-items: center; gap: var(--sp-2); min-height: 44px;
}
.card__link:hover { color: var(--accent-hover); text-decoration: underline; text-underline-offset: 3px; }
.card__link svg { width: 16px; height: 16px; }

.card-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1079px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px)  { .card-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   11. Area / suburb tiles
   --------------------------------------------------------------------- */
.area-card { background: var(--surface-alt); border: 1px solid var(--line); padding: var(--sp-5); }
.area-card__region {
  font: 700 var(--fs-h4)/1.15 var(--font-display); color: var(--ink-strong); margin: 0 0 var(--sp-3);
  padding-bottom: var(--sp-2); border-bottom: 2px solid var(--accent); display: inline-block;
}
.area-card__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4);
  font: 400 var(--fs-small)/1.5 var(--font-body); color: var(--ink-body);
}
.area-card__list li { margin: 0; }
.area-grid { display: grid; gap: var(--sp-4); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1079px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 559px)  { .area-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   12. Service detail blocks (services page anchors)
   --------------------------------------------------------------------- */
.svc {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: 1fr 1fr; align-items: start;
  padding-block: var(--section-y);
  border-top: 1px solid var(--line);
}
.svc:first-of-type { border-top: none; padding-top: 0; }
.svc--reverse .svc__media { order: 2; }
.svc__body .overline { color: var(--accent-hover); }
.svc__list {
  list-style: none; margin: var(--sp-4) 0 0; padding: 0;
  columns: 2; column-gap: var(--sp-6);
}
.svc__list li {
  position: relative; padding-left: var(--sp-5); margin-bottom: var(--sp-3);
  break-inside: avoid; font-size: var(--fs-small); color: var(--ink-body);
}
.svc__list li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 0; height: 0;
  border-left: 6px solid var(--accent);
  border-top: 4px solid transparent; border-bottom: 4px solid transparent;
}
.svc__media { box-shadow: var(--shadow-2); align-self: stretch; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.svc__media--mono {
  background: var(--ink); position: relative; min-height: 320px;
  display: flex; align-items: center; justify-content: center; padding: var(--sp-6);
}
.svc__media--mono .pinstack { height: 120px; gap: 10px; }
.svc__media--mono .pinstack span { width: 8px; }
.svc__media--mono::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(182,133,42,0.05) 22px 23px);
}
@media (max-width: 767px) {
  .svc { grid-template-columns: 1fr; }
  .svc--reverse .svc__media { order: 0; }
  .svc__list { columns: 1; }
}
@media (max-width: 479px) { .svc__list { columns: 1; } }

/* ---------------------------------------------------------------------
   13. Trust / credential row
   --------------------------------------------------------------------- */
.trustrow {
  display: grid; gap: var(--sp-4) var(--sp-6); grid-template-columns: repeat(4, 1fr);
  background: var(--accent-tint); border: 1px solid var(--line); padding: var(--sp-6);
}
.trust { display: flex; align-items: flex-start; gap: var(--sp-3);
  font: 600 var(--fs-small)/1.4 var(--font-body); color: var(--ink-strong); }
.trust__icon { flex: none; width: 28px; height: 28px; color: var(--accent-hover); }
@media (max-width: 1079px) { .trustrow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px)  { .trustrow { grid-template-columns: 1fr; } }

/* Why-Lance list (icon + text rows) */
.reasons { display: grid; gap: var(--sp-5); grid-template-columns: repeat(2, 1fr); }
.reason { display: flex; gap: var(--sp-4); align-items: flex-start; }
.reason__icon {
  flex: none; width: 44px; height: 44px; color: var(--accent);
  border: 1px solid var(--line); background: var(--surface);
  display: inline-flex; align-items: center; justify-content: center;
}
.reason__icon svg { width: 24px; height: 24px; }
.reason h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-2); }
.reason p { margin: 0; font-size: var(--fs-small); color: var(--ink-body); }
@media (max-width: 767px) { .reasons { grid-template-columns: 1fr; } }

/* Brand chips */
.brandrow { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-5); }
.brand-chip {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 var(--sp-5);
  background: var(--surface); border: 1px solid var(--line-strong);
  font: 700 var(--fs-small)/1 var(--font-display); letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-strong);
}

/* ---------------------------------------------------------------------
   14. Testimonials (built, fed only real confirmed reviews)
   --------------------------------------------------------------------- */
.testimonial {
  background: var(--surface); border: 1px solid var(--line);
  border-left: var(--keyline) solid var(--accent);
  padding: var(--sp-6); box-shadow: var(--shadow-2);
}
.testimonial__quote { font: 400 var(--fs-lead)/1.5 var(--font-body); color: var(--ink-strong); margin: 0 0 var(--sp-4); }
.testimonial__meta { font: 700 var(--fs-small)/1 var(--font-body); text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-muted); }
.testimonial__stars { color: var(--accent); letter-spacing: 0.08em; margin-bottom: var(--sp-3); }
.testimonial-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1079px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* Reviews-pending honest note panel */
.reviews-note {
  background: var(--surface); border: 1px solid var(--line);
  border-left: var(--keyline) solid var(--accent);
  padding: var(--sp-6); box-shadow: var(--shadow-2); max-width: 70ch;
}
.reviews-note p { margin-bottom: 0; }
.reviews-note p + p { margin-top: var(--sp-3); }

/* ---------------------------------------------------------------------
   15. FAQ accordion (native details/summary)
   --------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); max-width: var(--maxw-narrow); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: var(--sp-3);
  min-height: 56px; padding: var(--sp-4) 0;
  font: 600 var(--fs-h5)/1.3 var(--font-body); color: var(--ink-strong);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::before {
  content: "+"; color: var(--accent); font: 800 1.5rem/1 var(--font-display);
  transition: transform var(--dur) var(--ease); flex: none; width: 1.5rem; text-align: center;
}
.faq__item[open] .faq__q::before { transform: rotate(45deg); }
.faq__a { padding: 0 0 var(--sp-5) calc(1.5rem + var(--sp-3)); font: 400 var(--fs-body)/1.65 var(--font-body); color: var(--ink-body); max-width: var(--measure); }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------------
   16. Forms
   --------------------------------------------------------------------- */
.form-wrap { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-2); padding: clamp(1.5rem, 4vw, var(--sp-7)); }
.field { margin-bottom: var(--sp-5); }
.field--row { display: grid; gap: var(--sp-5); grid-template-columns: 1fr 1fr; }
.label { display: block; margin-bottom: var(--sp-2); font: 700 var(--fs-small)/1.3 var(--font-body); color: var(--ink-strong); }
.label .req { color: var(--error); margin-left: 2px; }
.input, .select, .textarea {
  display: block; width: 100%; min-height: 48px; padding: var(--sp-3) var(--sp-4);
  font: 400 1rem/1.4 var(--font-body); color: var(--ink-strong);
  background: var(--surface); border: 1px solid var(--line-strong);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M0 0h12L6 8z' fill='%236B7480'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right var(--sp-4) center; padding-right: var(--sp-7); }
.textarea { min-height: 128px; resize: vertical; }
.input::placeholder, .textarea::placeholder { color: var(--ink-muted); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--ink-body); }
.input:focus-visible, .select:focus-visible, .textarea:focus-visible {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint);
}
.input:invalid:not(:placeholder-shown) { border-color: var(--error); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.help { margin-top: var(--sp-2); font: 400 var(--fs-xs)/1.4 var(--font-body); color: var(--ink-muted); }
.form-success {
  background: var(--ok-tint); border: 1px solid var(--ok); border-left: var(--keyline) solid var(--ok);
  padding: var(--sp-4) var(--sp-5); font: 600 var(--fs-body)/1.5 var(--font-body); color: var(--ink-strong);
  margin-bottom: var(--sp-5);
}
@media (max-width: 559px) { .field--row { grid-template-columns: 1fr; } }

/* Contact two-column layout */
.contact-grid { display: grid; gap: clamp(1.5rem, 4vw, var(--sp-8)); grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 899px) { .contact-grid { grid-template-columns: 1fr; } }

.detail-block { margin-bottom: var(--sp-6); }
.detail-block h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-2); }
.detail-block .big-phone {
  font: 800 var(--fs-h2)/1 var(--font-display); color: var(--accent); text-decoration: none;
  display: inline-block; margin-bottom: var(--sp-2);
}
.detail-block .big-phone:hover { color: var(--accent-hover); }
.detail-block address { font-style: normal; color: var(--ink-body); }
.detail-block a { word-break: break-word; }

/* ---------------------------------------------------------------------
   17. Breadcrumbs
   --------------------------------------------------------------------- */
.crumbs { padding-block: var(--sp-4); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2);
  font: 600 var(--fs-xs)/1 var(--font-body); text-transform: uppercase; letter-spacing: 0.08em; }
.crumbs li { margin: 0; display: inline-flex; align-items: center; gap: var(--sp-2); }
.crumbs a { color: var(--ink-muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent-hover); text-decoration: underline; text-underline-offset: 2px; }
.crumbs li[aria-current="page"] { color: var(--ink-strong); }
.crumbs .sep { color: var(--line-strong); }

/* ---------------------------------------------------------------------
   18. Page hero (interior pages)
   --------------------------------------------------------------------- */
.page-hero { background: var(--bg-dark); color: var(--ink-on-dark); border-top: var(--keyline) solid var(--accent); padding-block: clamp(2.25rem, 5vw, 4rem); }
.page-hero h1 { color: var(--ink-on-dark); margin-bottom: var(--sp-3); }
.page-hero p { color: var(--ink-on-dark-muted); max-width: 60ch; margin-bottom: 0; }
.page-hero .overline { color: var(--accent-on-dark); }

/* ---------------------------------------------------------------------
   19. CTA band
   --------------------------------------------------------------------- */
.cta-band { background: var(--bg-dark); color: var(--ink-on-dark); border-top: var(--keyline) solid var(--accent); }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-5); }
.cta-band h2 { color: var(--ink-on-dark); margin-bottom: var(--sp-2); }
.cta-band p { color: var(--ink-on-dark-muted); margin: 0; max-width: 48ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
@media (max-width: 767px) { .cta-band__actions { width: 100%; } .cta-band__actions .btn { width: 100%; } }

/* Map / coverage graphic (CSS only, no fabricated map tiles) */
.coverage {
  background: var(--ink); color: var(--ink-on-dark); border: 1px solid var(--line-on-dark);
  border-top: var(--keyline) solid var(--accent); padding: var(--sp-7) var(--sp-6);
  position: relative; overflow: hidden;
}
.coverage__grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(174,182,191,0.12) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(174,182,191,0.12) 39px 40px);
}
.coverage__inner { position: relative; }
.coverage__river {
  height: 6px; background: var(--accent); margin: var(--sp-5) 0; width: 70%;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
}
.coverage__labels { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.coverage__chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4); border: 1px solid var(--line-on-dark);
  background: var(--bg-dark-alt); color: var(--ink-on-dark);
  font: 700 var(--fs-small)/1 var(--font-body); letter-spacing: 0.04em; text-transform: uppercase;
}
.coverage__chip span { width: 8px; height: 8px; background: var(--accent); flex: none; }

/* ---------------------------------------------------------------------
   20. Footer
   --------------------------------------------------------------------- */
.footer { background: var(--bg-dark); color: var(--ink-on-dark); border-top: var(--keyline) solid var(--accent); padding-block: var(--sp-8) var(--sp-6); }
.footer__grid { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; gap: var(--sp-7); grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
.footer__title { font: 700 var(--fs-h6)/1 var(--font-body); text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-on-dark); margin: 0 0 var(--sp-4); }
.footer__about { color: var(--ink-on-dark-muted); font-size: var(--fs-small); max-width: 36ch; }
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin: 0; }
.footer__link { display: inline-flex; min-height: 40px; align-items: center; color: var(--ink-on-dark-muted); text-decoration: none; font: 400 var(--fs-small)/1.4 var(--font-body); }
.footer__link:hover { color: var(--ink-on-dark); text-decoration: underline; text-underline-offset: 3px; }
.footer__phone { font: 800 var(--fs-h3)/1 var(--font-display); color: var(--accent-on-dark); text-decoration: none; display: inline-block; margin-bottom: var(--sp-3); }
.footer__phone:hover { color: var(--brass-300); }
.footer__contact { font-size: var(--fs-small); color: var(--ink-on-dark-muted); }
.footer__contact a { color: var(--ink-on-dark-muted); text-decoration: none; }
.footer__contact a:hover { color: var(--ink-on-dark); text-decoration: underline; text-underline-offset: 3px; }
.footer__social { display: inline-flex; align-items: center; gap: var(--sp-2); min-height: 44px; margin-top: var(--sp-3); color: var(--ink-on-dark-muted); text-decoration: none; }
.footer__social:hover { color: var(--accent-on-dark); }
.footer__social svg { width: 22px; height: 22px; }
.footer__legal {
  max-width: var(--maxw); margin: var(--sp-7) auto 0; padding: var(--sp-5) var(--gutter) 0;
  border-top: 1px solid var(--line-on-dark);
  font: 400 var(--fs-xs)/1.6 var(--font-body); color: var(--ink-on-dark-muted);
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); justify-content: space-between;
}
@media (max-width: 1079px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 559px)  { .footer__grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   21. Scroll reveal (one effect, opt-out under reduced motion)
   --------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ---------------------------------------------------------------------
   23. Print
   --------------------------------------------------------------------- */
@media print {
  .header, .callbar, .nav-toggle, .mobile-menu, .hero__media, .svc__media, .btn, .coverage__grid { display: none !important; }
  *, *::before, *::after { background: #fff !important; color: #000 !important; box-shadow: none !important; clip-path: none !important; }
  a[href^="tel:"]::after, a[href^="mailto:"]::after { content: " (" attr(href) ")"; }
  .footer { border-top: 2px solid #000; }
}

/* ---------------------------------------------------------------------
   24. Small utilities
   --------------------------------------------------------------------- */
.stack > * + * { margin-top: var(--sp-4); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flow > * + * { margin-top: var(--sp-5); }
.split { display: grid; gap: clamp(1.5rem, 4vw, var(--sp-8)); grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 767px) { .split { grid-template-columns: 1fr; } }
