/* ============================================================
   All American Concrete Coating — site.css
   "The American Garage Floor"
   Palette: deep navy + cream + American red, workshop-industrial.
   Display: Big Shoulders Display (impact only)
   UI/Body: Manrope
   Mono: JetBrains Mono (stats, codes, eyebrows)
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Base — deep American navy */
  --ink:        #0c1a35;
  --ink-deep:   #050d1f;
  --ink-soft:   #15294a;
  --ink-card:   #122444;
  --ink-edge:   #20355d;

  /* Paper / cream */
  --paper:      #f4f1ea;
  --paper-dim:  #c9c5b8;
  --paper-mute: #8c897e;

  /* Action — American red */
  --action:     #c8252c;
  --action-dk:  #9e1a20;
  --action-lt:  #e44048;
  --action-glow: rgba(228, 64, 72, 0.38);

  /* Steel — muted secondary accent for chrome lines */
  --steel:      #475672;
  --steel-lt:   #6b7a96;

  /* States */
  --good:       #4ade80;
  --warn:       #f59e0b;

  /* Borders + shadows */
  --bord:        1px solid rgba(244, 241, 234, 0.08);
  --bord-strong: 1px solid rgba(244, 241, 234, 0.16);
  --bord-action: 1px solid rgba(200, 37, 44, 0.30);

  --shadow-card:    0 1px 0 rgba(255,255,255,0.04), 0 8px 24px rgba(0,0,0,0.32);
  --shadow-card-h:  0 1px 0 rgba(255,255,255,0.06), 0 18px 40px rgba(0,0,0,0.48);
  --shadow-action:  0 8px 24px rgba(200, 37, 44, 0.32);

  /* Geometry */
  --radius:     4px;
  --radius-md:  6px;
  --radius-lg:  10px;

  /* Type */
  --font-display: 'Big Shoulders Display', 'Arial Black', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --t-eyebrow: 0.78rem;
  --t-meta:    0.8125rem;
  --t-card:    1rem;
  --t-body:    1.0625rem;
  --t-lead:    1.25rem;
  --t-h3:      1.5rem;
  --t-h2:      clamp(2rem, 4.2vw, 3.1rem);
  --t-h1:      clamp(2.75rem, 7.5vw, 6.25rem);

  --tr-tight: -0.02em;
  --tr-wider: 0.08em;
  --tr-wide:  0.16em;

  --ease:     cubic-bezier(.22, 1, .36, 1);
  --dur:      280ms;

  --gutter:   clamp(1.5rem, 4.5vw, 2.5rem);
  --max:      1280px;
}

/* ---------- 2. Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--paper);
  background: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* Subtle paper-grain over the entire body — barely perceptible noise.
   Implemented as an inline SVG turbulence. 2.4% opacity. */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96 0 0 0 0 0.94 0 0 0 0 0.91 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--paper); color: var(--ink);
  padding: 8px 12px; border-radius: 0 0 var(--radius) 0;
  font-weight: 700; z-index: 1000;
}
.skip:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* ---------- 3. Typography utilities ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: var(--tr-tight);
  line-height: 1.02;
  margin: 0;
  color: var(--paper);
}
h2 { font-size: var(--t-h2); line-height: 1.06; }
h3 { font-size: var(--t-h3); line-height: 1.18; letter-spacing: -0.01em; font-weight: 700; }
em {
  font-style: italic;
  color: var(--action-lt);
}

.dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--action);
  margin-right: 0.6em;
  position: relative; top: -1px;
  box-shadow: 0 0 0 3px rgba(200,37,44,0.18);
}
.dot--red    { background: var(--action); box-shadow: none; }
.dot--white  { background: var(--paper); box-shadow: none; margin: 0 4px; }
.dot--blue   { background: var(--steel-lt); box-shadow: none; }
.dot-sep { color: var(--paper-mute); margin: 0 .5em; }

/* Section heading group */
.sec__head { margin-bottom: 3rem; max-width: 780px; }
.sec__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--action-lt);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.sec__eyebrow .bar {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--action);
  flex: none;
}
.sec__head--center .sec__eyebrow { justify-content: center; }
.sec__h {
  margin-bottom: 1rem;
}
.sec__sub {
  font-size: var(--t-lead);
  color: var(--paper-dim);
  font-weight: 500;
  line-height: 1.55;
  max-width: 62ch;
}
.sec__head--center .sec__sub { margin-left: auto; margin-right: auto; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
  isolation: isolate;
}
.btn--primary {
  background: var(--action);
  color: #fff;
  box-shadow: var(--shadow-action);
}
.btn--primary::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  z-index: -1;
}
.btn--primary:hover {
  background: var(--action-lt);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(200, 37, 44, 0.50);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(244, 241, 234, 0.30);
}
.btn--ghost:hover {
  background: rgba(244, 241, 234, 0.06);
  border-color: rgba(244, 241, 234, 0.55);
  transform: translateY(-1px);
}

/* ---------- 5. Top bar ---------- */
.topbar {
  background: var(--ink-deep);
  border-bottom: 1px solid rgba(244, 241, 234, 0.06);
  font-size: var(--t-meta);
  position: relative; z-index: 5;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.65rem 0;
  color: var(--paper-dim);
  flex-wrap: wrap;
}
.topbar__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar__chip svg { color: var(--action-lt); }
.topbar__chip--mid { color: var(--paper-mute); }
.topbar__chip--accent svg { color: var(--action); }

/* ---------- 6. Header ---------- */
.head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 26, 53, 0.78);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(244, 241, 234, 0.05);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.head.is-scrolled {
  background: rgba(5, 13, 31, 0.92);
  border-bottom-color: rgba(244, 241, 234, 0.10);
}
.head__inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.85rem 0;
  position: relative;
}
.head__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--paper);
  flex: 0 0 auto;
}
.head__shield {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  color: var(--action);
}
.head__shield svg { width: 100%; height: 100%; }
.head__brand-text { display: flex; flex-direction: column; line-height: 1; }
.head__brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--paper);
}
.head__brand-name em { font-style: normal; color: var(--action-lt); }
.head__brand-text small {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-top: 0.2rem;
}

.head__nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0 auto;
  font-size: 0.93rem;
  font-weight: 600;
}
.head__nav a {
  text-decoration: none;
  color: var(--paper-dim);
  transition: color var(--dur) var(--ease);
  position: relative;
  padding: 0.3rem 0;
}
.head__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--action);
  transition: right var(--dur) var(--ease);
}
.head__nav a:hover { color: var(--paper); }
.head__nav a:hover::after { right: 0; }

.head__ctas {
  display: flex; align-items: center; gap: 0.7rem;
  flex: 0 0 auto;
}
.head__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--paper);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.head__phone svg { color: var(--action); }
.head__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.05rem;
  background: var(--action);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.head__btn:hover { background: var(--action-lt); transform: translateY(-1px); }

.head__toggle {
  display: none;
  background: none;
  border: 1px solid rgba(244,241,234,0.18);
  border-radius: var(--radius);
  color: var(--paper);
  padding: 0.5rem;
}

.head__mnav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--ink-deep);
  border-top: 1px solid rgba(244,241,234,0.08);
  padding: 1rem var(--gutter);
  flex-direction: column;
  gap: 0.6rem;
}
.head__mnav.is-open { display: flex; }
.head__mnav a {
  text-decoration: none;
  color: var(--paper-dim);
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(244,241,234,0.05);
}
.head__mphone {
  margin-top: 0.5rem;
  background: var(--action);
  color: #fff !important;
  padding: 0.85rem 1rem !important;
  border-radius: var(--radius);
  text-align: center;
  border: none !important;
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero__photo {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(160deg, rgba(12,26,53,0.58) 0%, rgba(5,13,31,0.92) 100%),
    url('/static/assets/hero.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 20% 80%, rgba(71, 86, 114, 0.18) 0%, transparent 70%),
    linear-gradient(180deg, rgba(5,13,31,0.20) 0%, rgba(5,13,31,0.65) 100%);
}
/* Star-field motif: 2.5% opacity. Only American visual cue. */
.hero__stars {
  position: absolute; inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><g fill='%23f4f1ea'><path d='M20 30l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z'/><path d='M80 70l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z'/><path d='M140 30l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z'/><path d='M50 110l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z'/><path d='M120 130l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z'/></g></svg>");
  background-size: 160px 160px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3.5rem;
  align-items: center;
}
.hero__copy { max-width: 760px; }
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--paper-dim);
  margin: 0 0 1.6rem;
  display: inline-flex; align-items: center;
}
.hero__h {
  font-size: var(--t-h1);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.96;
  margin: 0 0 1.6rem;
  text-transform: uppercase;
}
.hero__h em {
  font-style: italic;
  color: var(--action-lt);
  position: relative;
  display: inline-block;
}
.hero__h em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.12em;
  background: var(--action);
  opacity: 0.18;
}
.hero__sub {
  font-size: var(--t-lead);
  line-height: 1.55;
  color: var(--paper-dim);
  max-width: 58ch;
  margin: 0 0 2rem;
  font-weight: 500;
}
.hero__ctas {
  display: flex; gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__minirow {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 2.4rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(244, 241, 234, 0.10);
  padding-top: 1.5rem;
}
.hero__minirow li {
  display: flex; flex-direction: column; gap: 0.15rem;
}
.hero__minirow .num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--paper);
  line-height: 1;
}
.hero__minirow .lbl {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

/* Hero panel — right-side card with rating + 15-yr badge + checklist */
.hero__panel {
  background:
    linear-gradient(180deg, rgba(244,241,234,0.04) 0%, rgba(244,241,234,0.01) 100%),
    var(--ink-card);
  border: var(--bord);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.hero__panel::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 70px; height: 70px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c8252c' opacity='0.08'><path d='M12 2l2.6 6.3L21 9l-5 4.5L17.5 21 12 17.6 6.5 21 8 13.5 3 9l6.4-.7z'/></svg>");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: top right;
  pointer-events: none;
}
.hero__panel-top {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(244,241,234,0.08);
  margin-bottom: 1rem;
}
.hero__stars-rating {
  color: var(--action-lt);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  line-height: 1;
}
.hero__rating-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--paper-mute);
  text-transform: uppercase;
}
.hero__panel-body {
  display: flex; gap: 1rem; align-items: stretch;
}
.hero__badge {
  flex: 0 0 auto;
  width: 78px;
  background: var(--action);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0.6rem 0.4rem;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 14px rgba(200,37,44,0.35);
}
.hero__badge::before, .hero__badge::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: rgba(255,255,255,0.22);
}
.hero__badge::before { top: 6px; }
.hero__badge::after  { bottom: 6px; }
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 0.9;
}
.hero__badge-unit {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-top: 0.2rem;
}
.hero__panel-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.55rem;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--paper-dim);
  flex: 1;
}
.hero__panel-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.hero__panel-list svg { color: var(--action-lt); flex: 0 0 auto; margin-top: 0.18rem; }
.hero__panel-foot {
  border-top: 1px solid rgba(244,241,234,0.08);
  margin-top: 1rem;
  padding-top: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

/* ---------- 8. Trust strip ---------- */
.trust {
  background: var(--ink-deep);
  border-top: 1px solid rgba(244, 241, 234, 0.05);
  border-bottom: 1px solid rgba(244, 241, 234, 0.05);
  padding: 2.6rem 0;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust__card {
  background: linear-gradient(180deg, rgba(244,241,234,0.03), rgba(244,241,234,0.01));
  border: var(--bord);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem;
  display: flex; flex-direction: column; gap: 0.2rem;
  position: relative;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.trust__card::before {
  content: '';
  position: absolute;
  top: 12px; right: 12px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c8252c'><path d='M12 2l2.6 6.3L21 9l-5 4.5L17.5 21 12 17.6 6.5 21 8 13.5 3 9l6.4-.7z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.55;
}
.trust__card:hover {
  border-color: rgba(244,241,234,0.18);
  transform: translateY(-2px);
}
.trust__numwrap {
  display: block;
  line-height: 1;
}
.trust__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1;
  display: inline-block;
}
.trust__plus {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--action-lt);
  vertical-align: top;
  margin-left: 0.1rem;
}
.trust__unit {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--action-lt);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: -0.1rem;
}
.trust__lbl {
  margin-top: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--paper);
}
.trust__sub {
  color: var(--paper-mute);
  font-size: 0.85rem;
  line-height: 1.4;
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}

/* ---------- 9. Services ---------- */
.services { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.svc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.svc {
  background: var(--ink-card);
  border: var(--bord);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
}
.svc:hover {
  transform: translateY(-3px);
  border-color: rgba(200,37,44,0.30);
  box-shadow: var(--shadow-card-h);
}
.svc__thumb {
  height: 200px;
  position: relative;
  background-color: var(--ink-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(244,241,234,0.06);
}
.svc__thumb::after {
  /* Slight darken-toward-bottom so the title in the body below feels
     anchored to the photo without obscuring the image. */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,13,31,0) 50%, rgba(5,13,31,0.55) 100%);
  pointer-events: none;
}
.svc__thumb--garage     { background-image: url('/static/assets/garage-floor-coatings.jpg'); }
.svc__thumb--basement   { background-image: url('/static/assets/basement-floor-coatings.jpg'); }
.svc__thumb--patio      { background-image: url('/static/assets/patios-and-porches.jpg'); }
.svc__thumb--commercial { background-image: url('/static/assets/commercial-floor-coatings.jpg'); }
.svc__thumb--utility    { background-image: url('/static/assets/utility-room-coatings.jpg'); }
.svc__thumb--prep       { background-image: url('/static/assets/surface-prep-and-repair.jpg'); }
.svc__body {
  padding: 1.5rem 1.6rem 1.7rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  flex: 1;
}
.svc__h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.005em;
  margin: 0;
}
.svc p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 0.95rem;
  line-height: 1.55;
}
.svc__price {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: var(--paper-mute);
  text-transform: uppercase;
  border-top: 1px dashed rgba(244,241,234,0.10);
  padding-top: 0.8rem;
  margin-top: 0.2rem;
}
.svc__price span {
  color: var(--paper);
  font-weight: 700;
  text-transform: none;
  font-size: 1rem;
}
.svc__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--action-lt);
  font-weight: 700;
  font-size: 0.92rem;
  transition: color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.svc__cta:hover { color: var(--action-lt); gap: 0.7rem; }

/* ---------- 10. Why polyurea ---------- */
.why {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--ink-deep);
  position: relative;
}
.why::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,241,234,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,234,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
}
.why .wrap { position: relative; }
.why__compare {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 1.5rem;
  background: var(--ink-card);
  border: var(--bord);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why__col {
  padding: 2rem 1.8rem 2.2rem;
  display: flex; flex-direction: column;
}
.why__col--bad { background: rgba(0,0,0,0.20); }
.why__col--good { background: linear-gradient(180deg, rgba(200,37,44,0.05) 0%, rgba(200,37,44,0.02) 100%); }
.why__col-head {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(244,241,234,0.10);
}
.why__col-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1;
}
.why__col--bad .why__col-tag { color: var(--paper-mute); }
.why__col--good .why__col-tag { color: var(--action-lt); }
.why__col-sub {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.why__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.why__list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.98rem;
  line-height: 1.45;
}
.why__list svg { flex: 0 0 auto; margin-top: 0.15rem; }
.why__col--bad .why__list  { color: var(--paper-mute); }
.why__col--bad .why__list svg { color: var(--paper-mute); }
.why__col--bad .why__list span { text-decoration: line-through; text-decoration-thickness: 1px; text-decoration-color: rgba(244,241,234,0.20); }
.why__col--good .why__list { color: var(--paper); }
.why__col--good .why__list svg { color: var(--action-lt); }

.why__divider {
  display: grid; place-items: center;
  background: var(--ink-deep);
  border-left: 1px solid rgba(244,241,234,0.08);
  border-right: 1px solid rgba(244,241,234,0.08);
  position: relative;
}
.why__divider-tag {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--action);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  background: var(--ink-card);
  border: 1px solid rgba(200,37,44,0.35);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: grid; place-items: center;
}
.why__foot {
  margin-top: 1.6rem;
  text-align: center;
  color: var(--paper-dim);
  max-width: 70ch;
  margin-left: auto; margin-right: auto;
}

/* ---------- 11. Pricing ---------- */
.pricing { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.price__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 1.5rem;
}
.price {
  background: var(--ink-card);
  border: var(--bord);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.7rem 1.7rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.price:hover { transform: translateY(-3px); border-color: rgba(244,241,234,0.18); }
.price--feature {
  background: linear-gradient(180deg, rgba(200,37,44,0.10), rgba(200,37,44,0.03));
  border: 1px solid rgba(200,37,44,0.45);
  box-shadow: 0 14px 40px rgba(200,37,44,0.18);
}
.price--feature .price__badge { background: var(--action); color: #fff; }

.price__head { margin-bottom: 1rem; }
.price__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--action);
  background: rgba(200,37,44,0.10);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.price__h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.05;
}
.price__size {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--paper-mute);
  margin: 0.3rem 0 0;
  text-transform: uppercase;
}
.price__amount {
  border-top: 1px solid rgba(244,241,234,0.08);
  border-bottom: 1px solid rgba(244,241,234,0.08);
  padding: 1rem 0;
  margin: 0.9rem 0 1rem;
  display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap;
}
.price__from {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--paper-mute);
}
.price__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1;
}
.price--feature .price__num { color: var(--action-lt); }
.price__to {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  color: var(--paper-dim);
  font-weight: 500;
}
.price__list {
  list-style: none; padding: 0; margin: 0 0 1.4rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: 0.94rem;
  color: var(--paper-dim);
}
.price__list li {
  display: flex; align-items: center; gap: 0.55rem;
  padding-left: 1.4rem;
  position: relative;
}
.price__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e44048' stroke-width='2.6'><path d='M5 12l5 5L20 7'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.price__cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.price__foot {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 0.94rem;
  color: var(--paper-mute);
  max-width: 64ch;
  margin-left: auto; margin-right: auto;
}
.price__more {
  text-align: center;
  margin-top: 1.4rem;
}
.price__more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--action-lt);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(200, 37, 44, 0.40);
  border-radius: var(--radius);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.price__more-link:hover {
  background: rgba(200, 37, 44, 0.08);
  border-color: var(--action);
  gap: 0.75rem;
}

/* ---------- 11b. Valence (authorized installer + flake chart) ---------- */
.valence {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--ink-deep);
  position: relative;
  overflow: hidden;
}
.valence::before {
  /* Same star-field motif as the hero, lower opacity to add depth
     without competing. */
  content: '';
  position: absolute; inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><g fill='%23f4f1ea'><path d='M40 50l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z'/><path d='M120 110l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z'/></g></svg>");
  background-size: 160px 160px;
  pointer-events: none;
}
.valence__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 3rem;
  align-items: start;
}
.valence__points {
  list-style: none; padding: 0; margin: 1.4rem 0 1.6rem;
  display: flex; flex-direction: column; gap: 0.65rem;
  font-size: 1rem;
  color: var(--paper);
}
.valence__points li {
  display: flex; align-items: flex-start; gap: 0.55rem;
}
.valence__points svg { color: var(--action-lt); flex: 0 0 auto; margin-top: 0.18rem; }
.valence__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.1rem;
  background: rgba(244,241,234,0.04);
  border: var(--bord-strong);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--paper-dim);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.valence__brand:hover {
  background: rgba(244,241,234,0.07);
  border-color: rgba(244,241,234,0.30);
}
.valence__brand img {
  height: 28px;
  width: auto;
  /* The Valence logo is dark on a transparent PNG. Invert for the dark UI. */
  filter: invert(1) brightness(1.15);
  flex: 0 0 auto;
}
.valence__brand small {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.valence__chart {
  background: var(--ink-card);
  border: var(--bord);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-card);
}
.valence__chart-head { margin-bottom: 1rem; }
.valence__chart-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0;
  margin: 0 0 0.4rem;
}
.valence__chart-sub {
  margin: 0;
  color: var(--paper-dim);
  font-size: 0.95rem;
  line-height: 1.55;
}
.valence__chart-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--bord);
  background: var(--ink-deep);
  margin-bottom: 1rem;
}
.valence__chart-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.valence__chart-foot {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--paper-mute);
  line-height: 1.5;
}

/* ---------- 12. Process ---------- */
.process {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--ink-deep);
}
.process__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  counter-reset: pstep;
}
.process__step {
  background: var(--ink-card);
  border: var(--bord);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem 1.6rem;
  display: flex; flex-direction: column;
  gap: 0.7rem;
  position: relative;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.process__step:hover {
  transform: translateY(-2px);
  border-color: rgba(200,37,44,0.30);
}
.process__num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--action);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.process__num::after {
  content: '';
  display: inline-block;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,37,44,0.45), transparent);
}
.process__h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0;
  line-height: 1.1;
}
.process__step p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ---------- 12b. Before / After sliders ---------- */
.ba-sec {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.ba__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 1.5rem;
}
.ba {
  --pos: 50%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: var(--bord);
  background: var(--ink-deep);
  aspect-ratio: 4 / 3;
  margin: 0;
  cursor: ew-resize;
  touch-action: none; /* let JS handle horizontal drag without page scroll fighting */
  user-select: none;
  -webkit-user-select: none;
}
.ba__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba__img--after {
  /* Standard B/A convention: before on left, after on right.
     Show only the right portion of "after" — from --pos to 100%. */
  clip-path: inset(0 0 0 var(--pos));
  -webkit-clip-path: inset(0 0 0 var(--pos));
}
.ba__tag {
  position: absolute; top: 0.7rem;
  z-index: 2;
  background: rgba(5, 13, 31, 0.78);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius);
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ba__tag--before { left: 0.7rem; }
.ba__tag--after  { right: 0.7rem; background: var(--action); color: #fff; }
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 44px;
  margin-left: -22px;
  z-index: 3;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: ew-resize;
  display: flex; align-items: center; justify-content: center;
  pointer-events: auto;
}
.ba__line {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.18);
}
.ba__grip {
  position: relative;
  z-index: 1;
  width: 40px; height: 40px;
  background: var(--action);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.45), 0 0 0 3px rgba(255,255,255,0.20);
  transition: transform var(--dur) var(--ease);
}
.ba:hover .ba__grip { transform: scale(1.06); }
.ba__handle:focus-visible { outline: none; }
.ba__handle:focus-visible .ba__grip { box-shadow: 0 4px 14px rgba(0,0,0,0.45), 0 0 0 3px var(--action-lt); }
.ba__cap {
  position: absolute;
  bottom: 0.7rem; left: 0.85rem;
  z-index: 2;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.10em;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(5, 13, 31, 0.62);
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ba__foot {
  text-align: center;
  margin-top: 1.6rem;
  color: var(--paper-dim);
  font-size: 0.95rem;
}
.ba__foot a {
  color: var(--action-lt);
  font-weight: 700;
  text-decoration: none;
}
.ba__foot a:hover { text-decoration: underline; }

/* ---------- 13. Reviews ---------- */
.reviews { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.rev__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.rev {
  background: var(--ink-card);
  border: var(--bord);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  display: flex; flex-direction: column;
  gap: 0.85rem;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
  isolation: isolate;
}
.rev::after {
  content: '"';
  position: absolute;
  top: -10px; right: 14px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--action);
  opacity: 0.10;
  line-height: 1;
  z-index: -1;
  pointer-events: none;
}
.rev:hover { transform: translateY(-2px); border-color: rgba(244,241,234,0.18); }
.rev__stars {
  color: var(--action-lt);
  letter-spacing: 0.12em;
  font-size: 1rem;
  line-height: 1;
}
.rev__quote {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--paper);
}
.rev__by {
  display: flex; flex-direction: column; gap: 0.1rem;
  border-top: 1px solid rgba(244,241,234,0.10);
  padding-top: 0.85rem;
  margin-top: auto;
}
.rev__name { font-weight: 700; color: var(--paper); }
.rev__src {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--paper-mute);
  text-transform: uppercase;
}

/* ---------- 13b. Gallery ---------- */
.gallery {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--ink-deep);
}
.gal__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 0.9rem;
  margin-top: 1.5rem;
}
.gal__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: var(--bord);
  background: var(--ink-card);
  text-decoration: none;
  isolation: isolate;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.gal__item--wide { grid-column: span 2; grid-row: span 2; }
.gal__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease);
}
.gal__item::after {
  /* Bottom shade for caption legibility. */
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(5,13,31,0) 0%, rgba(5,13,31,0.78) 100%);
  pointer-events: none;
}
.gal__cap {
  position: absolute; left: 0.85rem; bottom: 0.7rem;
  z-index: 1;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.gal__item:hover {
  transform: translateY(-2px);
  border-color: rgba(200,37,44,0.40);
}
.gal__item:hover img { transform: scale(1.04); }
.gal__foot {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 0.95rem;
  color: var(--paper-mute);
}
.gal__foot a {
  color: var(--action-lt);
  text-decoration: none;
  font-weight: 700;
}
.gal__foot a:hover { text-decoration: underline; }

/* ---------- 14. Service area ---------- */
.area {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--ink-deep);
}
.area__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}
.area__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-top: 1.5rem;
}
.area__sub {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--action-lt);
  margin: 0 0 0.8rem;
}
.area__cities {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.45rem;
  font-size: 0.95rem;
  color: var(--paper);
}
.area__cities li {
  display: flex; align-items: center; gap: 0.55rem;
  padding-left: 1rem;
  position: relative;
}
.area__cities li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--action);
  border-radius: 50%;
  opacity: 0.7;
}
.area__map {
  display: flex; flex-direction: column; gap: 0.7rem;
}
.area__leaflet {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: var(--bord);
  background: var(--ink-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  z-index: 0;
}
.area__map-note {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-mute);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.area__map-dot {
  width: 10px; height: 10px;
  border: 1px dashed var(--action);
  border-radius: 50%;
  background: rgba(200,37,44,0.10);
}

/* Custom Leaflet markers — pulse dot for HQ, small dot for cities. */
.aac-marker { position: relative; }
.aac-marker__dot {
  position: absolute; left: 50%; top: 50%;
  width: 12px; height: 12px;
  background: var(--action);
  border: 2px solid var(--paper);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.aac-marker__pulse {
  position: absolute; left: 50%; top: 50%;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(200, 37, 44, 0.45);
  transform: translate(-50%, -50%);
  animation: aacPulse 2s ease-out infinite;
}
@keyframes aacPulse {
  0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0.8; }
  80%  { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}
.aac-marker__city {
  position: absolute; left: 50%; top: 50%;
  width: 11px; height: 11px;
  background: var(--action);
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 3px rgba(0,0,0,0.45);
}
@media (prefers-reduced-motion: reduce) {
  .aac-marker__pulse { animation: none; opacity: 0.4; }
}

/* Leaflet popup + control restyling for dark theme. */
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background: var(--ink-card) !important;
  color: var(--paper) !important;
  border: 1px solid rgba(244,241,234,0.10) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5) !important;
}
.leaflet-popup-content { font-family: var(--font-body); margin: 12px 14px !important; line-height: 1.5; }
.leaflet-popup-content a { color: var(--action-lt); font-weight: 700; text-decoration: none; }
.leaflet-popup-close-button { color: var(--paper-mute) !important; }
.leaflet-control-zoom a {
  background: var(--ink-card) !important;
  color: var(--paper) !important;
  border: 1px solid rgba(244,241,234,0.12) !important;
}
.leaflet-control-zoom a:hover { background: var(--ink-soft) !important; }
.leaflet-control-attribution {
  background: rgba(5, 13, 31, 0.78) !important;
  color: var(--paper-mute) !important;
  font-family: var(--font-mono);
  font-size: 0.65rem !important;
  padding: 2px 6px !important;
}
.leaflet-control-attribution a { color: var(--paper-dim) !important; }
.leaflet-tooltip {
  background: var(--ink-deep) !important;
  color: var(--paper) !important;
  border: 1px solid rgba(244,241,234,0.12) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5) !important;
  font-family: var(--font-body);
  font-size: 0.78rem !important;
  padding: 4px 8px !important;
}
.leaflet-tooltip-top::before { border-top-color: var(--ink-deep) !important; }

/* ---------- 15. FAQ ---------- */
.faq { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.faq__list {
  margin-top: 1rem;
  border-top: 1px solid rgba(244,241,234,0.08);
}
.faq__item {
  border-bottom: 1px solid rgba(244,241,234,0.08);
}
.faq__item summary {
  list-style: none;
  padding: 1.4rem 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.25;
  color: var(--paper);
  transition: color var(--dur) var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--action-lt); }
.faq__sign {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(244,241,234,0.18);
  position: relative;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.faq__sign::before, .faq__sign::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: currentColor;
  transition: opacity var(--dur) var(--ease);
}
.faq__sign::before {
  width: 12px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq__sign::after {
  width: 1.5px; height: 12px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__sign {
  background: var(--action);
  border-color: var(--action);
  color: #fff;
  transform: rotate(180deg);
}
.faq__item[open] .faq__sign::after { opacity: 0; }
.faq__a {
  padding-bottom: 1.4rem;
  max-width: 75ch;
}
.faq__a p {
  margin: 0;
  color: var(--paper-dim);
  line-height: 1.65;
}

/* ---------- 16. Final CTA ---------- */
.cta {
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(4rem, 7vw, 5.5rem);
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(200,37,44,0.18) 0%, transparent 60%),
    radial-gradient(70% 80% at 0% 100%, rgba(71, 86, 114, 0.20) 0%, transparent 60%),
    linear-gradient(180deg, var(--ink-deep), var(--ink));
  border-top: 1px solid rgba(244,241,234,0.06);
  border-bottom: 1px solid rgba(244,241,234,0.06);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><g fill='%23f4f1ea'><path d='M40 50l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z'/><path d='M120 110l3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1z'/></g></svg>");
  background-size: 160px 160px;
  pointer-events: none;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.cta__sub {
  color: var(--paper-dim);
  font-size: var(--t-lead);
  margin: 0 0 1.8rem;
  max-width: 56ch;
  line-height: 1.55;
}
.cta__phoneblock {
  background: rgba(244,241,234,0.04);
  border: var(--bord-strong);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.4rem;
}
.cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--paper);
}
.cta__phone svg { color: var(--action); }
.cta__phonenum {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  /* clamp so the number scales with viewport. Min set so the number
     fits inside ~270px width (smallest phone container) without
     overflowing the cta__phoneblock card. */
  font-size: clamp(1.35rem, 5.5vw, 2.2rem);
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cta__phonelbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.10em;
  color: var(--paper-mute);
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.cta__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.55rem;
  color: var(--paper-dim);
  font-size: 0.95rem;
}
.cta__list li {
  display: flex; align-items: center; gap: 0.55rem;
}
.cta__list svg { color: var(--action-lt); }

/* Form */
.cta__form {
  background: var(--ink-card);
  border: 1px solid rgba(244,241,234,0.10);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-card);
}
.cta__formhead {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding-bottom: 1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(244,241,234,0.08);
}
.cta__formtag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: var(--action);
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius);
}
.cta__formhead h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0;
}
.cta__field {
  display: flex; flex-direction: column;
  margin-bottom: 0.95rem;
}
.cta__field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: 0.4rem;
}
.cta__field input,
.cta__field textarea {
  font: inherit;
  background: var(--ink-deep);
  color: var(--paper);
  border: 1px solid rgba(244,241,234,0.10);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cta__field input::placeholder,
.cta__field textarea::placeholder { color: var(--paper-mute); opacity: 0.7; }
.cta__field input:focus,
.cta__field textarea:focus {
  outline: none;
  border-color: var(--action);
  box-shadow: 0 0 0 3px rgba(200,37,44,0.18);
}
.cta__field textarea { resize: vertical; min-height: 84px; }
.cta__field--row {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 0.8rem;
}
.cta__field--row > div { display: flex; flex-direction: column; }
.cta__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.4rem;
}
.cta__legal {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--paper-mute);
  margin: 0.9rem 0 0;
  line-height: 1.4;
}

/* ---------- 16b. Sticky mobile CTA ---------- */
.stickycall {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  display: none; /* shown via media query on small screens */
  gap: 0.6rem;
}
.stickycall__btn {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 10px 28px rgba(0,0,0,0.45),
    0 0 0 1px rgba(0,0,0,0.08);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
  color: #fff;
}
.stickycall__btn:active { transform: translateY(1px); }
.stickycall__btn svg { flex: 0 0 auto; }

/* Text: solid red, PRIMARY action. Dave is on the job site most days
   and answers texts quickly between coats. */
.stickycall__btn--text {
  background: var(--action);
  flex: 2 1 0;
}
.stickycall__btn--text:active { background: var(--action-dk); }
.stickycall__btn--text small {
  display: inline;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-left: 0.4rem;
}

/* Call: navy ghost — secondary, in case the customer can't text. */
.stickycall__btn--call {
  background: var(--ink);
  border: 1px solid rgba(244, 241, 234, 0.30);
}
.stickycall__btn--call:active { background: var(--ink-soft); }

/* ---------- 17. Footer ---------- */
.foot {
  background: var(--ink-deep);
  border-top: 1px solid rgba(244,241,234,0.06);
  padding: 3.5rem 0 1.5rem;
  position: relative;
  z-index: 2;
}
.foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 2.4rem;
}
.foot__shield {
  width: 32px; height: 32px;
  color: var(--action);
  margin-bottom: 0.8rem;
}
.foot__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  margin: 0 0 0.2rem;
  letter-spacing: 0.02em;
}
.foot__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--action-lt);
  margin: 0 0 0.8rem;
}
.foot__pitch {
  margin: 0 0 1.2rem;
  color: var(--paper-mute);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 36ch;
}
.foot__creds {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--paper-dim);
}
.foot__creds li {
  display: flex; align-items: center; gap: 0.5rem;
}
.foot__creds svg { color: var(--action-lt); flex: 0 0 auto; }
.foot__col h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 0.9rem;
}
.foot__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
  color: var(--paper-dim);
  font-size: 0.93rem;
}
.foot__col a {
  text-decoration: none;
  color: var(--paper-dim);
  transition: color var(--dur) var(--ease);
}
.foot__col a:hover { color: var(--action-lt); }

.foot__col--contact .foot__contact,
.foot__col--contact .foot__hours {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--paper-dim);
  margin: 0;
}
.foot__col--contact .foot__contact strong { color: var(--paper); font-weight: 700; }
.foot__col--contact .foot__contact a { color: var(--paper-dim); }
.foot__h-tight { margin-top: 1.2rem !important; }

/* Full-width service-area block */
.foot__areas {
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(244,241,234,0.06);
}
.foot__areas-h {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 0.7rem;
}
.foot__areas-sub {
  margin: 0 0 1.2rem;
  color: var(--paper-mute);
  font-size: 0.92rem;
  max-width: 70ch;
  line-height: 1.55;
}
.foot__areas-list {
  list-style: none; padding: 0; margin: 0 0 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem 1.2rem;
  font-size: 0.88rem;
  color: var(--paper-dim);
}
.foot__areas-list li {
  display: flex; align-items: center; gap: 0.5rem;
  padding-left: 0.9rem;
  position: relative;
}
.foot__areas-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px;
  background: var(--action);
  border-radius: 50%;
  opacity: 0.6;
}
.foot__areas-note {
  margin: 0;
  color: var(--paper-mute);
  font-size: 0.86rem;
  font-style: italic;
}

.foot__bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(244,241,234,0.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--paper-mute);
  text-transform: uppercase;
}
.foot__sig { display: inline-flex; align-items: center; gap: 0; }
.foot__sig .dot { box-shadow: none; margin-right: 4px; }

/* ---------- 18. Reveal animations ---------- */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}
.js-reveal .reveal.is-in {
  opacity: 1;
  transform: none;
}
/* Stagger children of grids */
.js-reveal .svc__grid .reveal:nth-child(2)        { transition-delay: 80ms; }
.js-reveal .svc__grid .reveal:nth-child(3)        { transition-delay: 160ms; }
.js-reveal .svc__grid .reveal:nth-child(4)        { transition-delay: 240ms; }
.js-reveal .svc__grid .reveal:nth-child(5)        { transition-delay: 320ms; }
.js-reveal .svc__grid .reveal:nth-child(6)        { transition-delay: 400ms; }
.js-reveal .price__grid .reveal:nth-child(2)      { transition-delay: 80ms; }
.js-reveal .price__grid .reveal:nth-child(3)      { transition-delay: 160ms; }
.js-reveal .process__list .reveal:nth-child(2)    { transition-delay: 60ms; }
.js-reveal .process__list .reveal:nth-child(3)    { transition-delay: 120ms; }
.js-reveal .process__list .reveal:nth-child(4)    { transition-delay: 180ms; }
.js-reveal .process__list .reveal:nth-child(5)    { transition-delay: 240ms; }
.js-reveal .process__list .reveal:nth-child(6)    { transition-delay: 300ms; }
.js-reveal .rev__grid .reveal:nth-child(2)        { transition-delay: 70ms; }
.js-reveal .rev__grid .reveal:nth-child(3)        { transition-delay: 140ms; }
.js-reveal .rev__grid .reveal:nth-child(4)        { transition-delay: 210ms; }
.js-reveal .trust__inner .reveal:nth-child(2)     { transition-delay: 70ms; }
.js-reveal .trust__inner .reveal:nth-child(3)     { transition-delay: 140ms; }
.js-reveal .trust__inner .reveal:nth-child(4)     { transition-delay: 210ms; }

@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* ---------- 19. Responsive ---------- */

/* Defenses against horizontal scroll: any flex/grid item with long
   single-word content (URLs, mono numbers, big phone numbers) needs
   min-width:0 so it can shrink rather than push its parent past the
   viewport. Browser default for grid/flex items is min-width:auto. */
.head__inner > *,
.foot__col,
.foot__col--contact .foot__contact,
.cta__inner > *,
.cta__copy,
.cta__form,
.cta__phoneblock,
.cta__phone,
.cta__phone > span,
.cta__field,
.svc__body,
.price,
.rev,
.process__step,
.valence__inner > *,
.area__inner > *,
.hero__inner > * { min-width: 0; }

/* Form fields: default <input>/<textarea> min-width is the placeholder/
   value's intrinsic width, which can push the form wider than its
   parent on small phones. Force shrink + fill. */
.cta__field input,
.cta__field textarea {
  min-width: 0;
  width: 100%;
}

img, video { max-width: 100%; height: auto; }

@media (max-width: 1080px) {
  .head__nav { display: none; }
  .head__toggle { display: inline-flex; }
  .head__inner { justify-content: space-between; }
  .head__ctas .head__phone { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero__panel { max-width: 460px; }
  .gal__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
  .gal__item--wide { grid-column: span 2; grid-row: span 2; }
  .svc__grid { grid-template-columns: repeat(2, 1fr); }
  .price__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .valence__inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .valence__chart { max-width: 540px; }
  .ba__grid { grid-template-columns: repeat(2, 1fr); }
  .ba__grid > .ba:nth-child(3) { grid-column: 1 / -1; max-width: 560px; margin: 0 auto; width: 100%; }
  .process__list { grid-template-columns: repeat(2, 1fr); }
  .rev__grid { grid-template-columns: repeat(2, 1fr); }
  .area__inner { grid-template-columns: 1fr; }
  .area__map { max-width: 520px; margin: 0 auto; width: 100%; }
  .cta__inner { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__col--brand { grid-column: 1 / -1; }
  .foot__areas-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .topbar__inner { gap: 0.4rem; padding: 0.5rem 0; justify-content: center; }
  .topbar__chip { font-size: 0.7rem; }
  .topbar__chip:nth-child(2) { display: none; }
  .head__btn { display: none; }
  .head__toggle {
    /* Tap target ≥44x44 per WCAG/Apple HIG. */
    width: 44px; height: 44px;
    padding: 0; display: inline-grid; place-items: center;
  }
  .head__mnav { padding: 0.6rem var(--gutter) 1rem; }
  .head__mnav a { padding: 0.85rem 0; }
  .head__mphone { padding: 1rem !important; }
  .head__brand { gap: 0.55rem; }
  .head__shield { width: 32px; height: 32px; }
  .head__brand-name { font-size: 1.25rem; }

  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .gal__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 0.7rem; }
  .gal__item--wide { grid-column: span 2; grid-row: span 1; }
  .ba__grid { grid-template-columns: 1fr; }
  .ba__grid > .ba:nth-child(3) { max-width: none; }
  .ba { aspect-ratio: 4 / 3; }
  .svc__grid { grid-template-columns: 1fr; }
  .why__compare { grid-template-columns: 1fr; }
  .why__divider { border-left: none; border-right: none; border-top: 1px solid rgba(244,241,234,0.08); border-bottom: 1px solid rgba(244,241,234,0.08); padding: 0.6rem; }
  .process__list { grid-template-columns: 1fr; }
  .rev__grid { grid-template-columns: 1fr; }
  .area__cols { grid-template-columns: 1fr; }
  .area__leaflet { aspect-ratio: 1 / 1; }
  .cta__field--row { grid-template-columns: 1fr 1fr; }
  .foot__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .foot__areas-list { grid-template-columns: repeat(2, 1fr); }
  .hero__minirow { gap: 1.4rem; }
  .hero__minirow li { flex: 1 1 calc(50% - 1.4rem); }

  /* Show sticky mobile call CTA and add bottom padding to body so it
     never covers the footer's last line. */
  .stickycall { display: inline-flex; }
  body { padding-bottom: 92px; }

  /* CTA section tightening — the desktop layout assumed plenty of
     horizontal room. On phones the phone-number card and the form
     can't be wider than the viewport. */
  .cta__phoneblock { padding: 0.95rem 1rem; }
  .cta__phone { gap: 0.7rem; }
  .cta__phone svg { flex: 0 0 auto; }
  .cta__form { padding: 1.5rem 1.3rem; }
  .cta__field input,
  .cta__field textarea { font-size: 16px; } /* prevent iOS zoom on focus */
}

/* Very narrow phones (320–420px). Most modern phones land 360–414px
   so this tier catches the iPhone SE-class viewport and Androids
   running with default zoom. */
@media (max-width: 420px) {
  :root { --gutter: 1.25rem; }

  .topbar__inner { padding: 0.45rem 0; }
  .topbar__chip { font-size: 0.66rem; letter-spacing: 0.03em; }
  .topbar__chip svg { width: 11px; height: 11px; }

  /* Hide the small caption under the brand mark when space is tight. */
  .head__brand-text small { display: none; }
  .head__brand-name { font-size: 1.15rem; letter-spacing: 0.03em; }

  .hero { padding-top: 2.6rem; padding-bottom: 2.6rem; }
  .hero__h { font-size: clamp(2.4rem, 11vw, 3.6rem); line-height: 1.0; }
  .hero__sub { font-size: 1rem; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__minirow { gap: 0.9rem 1.4rem; padding-top: 1.2rem; }
  .hero__minirow .num { font-size: 1.45rem; }
  .hero__minirow .lbl { font-size: 0.66rem; letter-spacing: 0.10em; }

  .hero__panel { padding: 1.1rem; }
  .hero__panel-body { gap: 0.8rem; }
  .hero__badge { width: 64px; padding: 0.5rem 0.3rem; }
  .hero__badge-num { font-size: 1.9rem; }
  .hero__badge-unit { font-size: 0.55rem; }
  .hero__panel-list { font-size: 0.82rem; gap: 0.45rem; }

  .sec__head { margin-bottom: 2.2rem; }
  .sec__sub { font-size: 1.05rem; }

  .trust { padding: 1.8rem 0; }
  .trust__inner { gap: 0.7rem; }
  .trust__card { padding: 1rem 0.9rem; }
  .trust__card::before { width: 10px; height: 10px; top: 8px; right: 8px; }
  .trust__num { font-size: 2rem; }
  .trust__lbl { font-size: 0.88rem; }
  .trust__sub { font-size: 0.78rem; }

  .gal__grid { grid-auto-rows: 130px; gap: 0.6rem; }
  .ba__grip { width: 36px; height: 36px; }
  .ba__handle { width: 50px; margin-left: -25px; }
  .valence__chart { padding: 1.2rem 1.1rem; }
  .valence__chart-h { font-size: 1.3rem; }

  .why__col { padding: 1.4rem 1.2rem 1.6rem; }
  .why__list li { font-size: 0.92rem; }

  .price { padding: 1.4rem 1.2rem 1.4rem; }
  .price__num { font-size: clamp(1.9rem, 8vw, 2.4rem); }

  .process__step { padding: 1.4rem 1.2rem 1.3rem; }

  .rev { padding: 1.3rem 1.1rem; }

  .area__leaflet { aspect-ratio: 4 / 3; }

  .faq__item summary { font-size: 1.05rem; padding: 1.2rem 0; }
  .faq__sign { width: 26px; height: 26px; }

  .cta__field--row { grid-template-columns: 1fr; }
  .cta__phoneblock { padding: 0.85rem 0.95rem; }
  .cta__form { padding: 1.3rem 1.1rem; }
  .cta__phonelbl { font-size: 0.66rem; letter-spacing: 0.06em; }

  .foot { padding: 2.6rem 0 1.2rem; }
  .foot__areas-list { grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; font-size: 0.84rem; }
  .foot__bottom { font-size: 0.66rem; flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .stickycall { padding: 0.7rem 0.9rem; }
  .stickycall__icon { width: 34px; height: 34px; }
  .stickycall__num { font-size: 1.05rem; }
}

/* ---------- 20. Print ---------- */
@media print {
  .topbar, .head, .head__mnav, .hero__bg, .cta__form, .stickycall, .foot__bottom { display: none; }
  body { background: white; color: black; padding-bottom: 0; }
}
