/*
  Langston Plumbing — concept redesign by Timaeus.
  v2 refinement pass: same brand, tighter system.

  Palette still comes from their own logo (black wordmark + #54606c slate
  "Plumbing"); a deep water blue replaces the GoDaddy template's default cyan,
  and copper appears only on star ratings, borrowed from the copper pipe in
  their own job photos. Light theme on purpose — not theme-switching.

  What changed in v2: tokenised type + spacing scales (was ad-hoc px), text
  colours darkened to clear WCAG AA on BOTH white and the tinted alt band,
  layered shadows, real focus-visible rings, 44px touch targets, and measure
  limits on every run of body copy.
*/

/* ============================================================ tokens */
:root {
  /* brand — unchanged */
  --ink: #10141a;
  --ink-2: #1a212a;
  --slate: #54606c;          /* exact logo color */
  --slate-d: #3d4650;
  --blue: #0070c0;
  --blue-d: #00568f;
  --blue-l: #3a9ada;         /* accents/eyebrows only — fails AA behind white text */
  --copper: #d3242b;   /* Sewer Master® red, used sparingly */
  --paper: #ffffff;
  --paper-2: #f4f7f9;
  --paper-3: #e9eef2;
  --line: #dfe6ec;
  --line-2: #eef2f6;

  /* text on light — all clear AA on white AND on --paper-2 */
  --body: #414c58;           /* 8.0:1 on white  · 7.4:1 on paper-2 */
  --muted: #5a6674;          /* 6.2:1 on white  · 5.8:1 on paper-2 */

  /* text on dark (--ink) */
  --on-dark: #e9eff5;
  --on-dark-2: #bcc8d4;      /* 9.4:1 on ink */
  --on-dark-3: #94a2b1;      /* 5.6:1 on ink */

  --focus: #00568f;
  --focus-dark: #9ccdf0;

  /* fluid type scale */
  --fs-xs:   0.75rem;
  --fs-sm:   0.8125rem;
  --fs-base: 0.9375rem;
  --fs-md:   1rem;
  --fs-lg:   clamp(1.0625rem, 1.01rem + 0.28vw, 1.1875rem);
  --fs-xl:   clamp(1.1875rem, 1.11rem + 0.38vw, 1.3125rem);
  --fs-2xl:  clamp(1.375rem, 1.24rem + 0.66vw, 1.75rem);
  --fs-3xl:  clamp(1.75rem, 1.47rem + 1.4vw, 2.5rem);
  --fs-4xl:  clamp(2.125rem, 1.66rem + 2.3vw, 3.25rem);

  /* spacing scale */
  --s-1: 0.25rem;  --s-2: 0.5rem;   --s-3: 0.75rem;  --s-4: 1rem;
  --s-5: 1.5rem;   --s-6: 2rem;     --s-7: 2.75rem;  --s-8: 3.5rem;
  --s-9: 4.5rem;   --s-10: 6rem;
  --sec: clamp(4rem, 3.1rem + 3.8vw, 6.5rem);   /* section padding-block */
  --gutter: clamp(1.25rem, 0.9rem + 1.4vw, 1.75rem);

  /* radii */
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 22px; --r-pill: 999px;

  /* layered shadows — closer to real light than a single blur */
  --sh-1: 0 1px 2px rgba(16,20,26,.05);
  --sh-2: 0 2px 4px rgba(16,20,26,.04), 0 6px 16px rgba(16,20,26,.06);
  --sh-3: 0 2px 6px rgba(16,20,26,.05), 0 14px 34px rgba(16,20,26,.10);
  --sh-4: 0 4px 12px rgba(16,20,26,.07), 0 28px 64px rgba(16,20,26,.16);

  --ease: cubic-bezier(.2,.7,.3,1);
  --dur: .22s;

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
}

/* ============================================================ base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper); color: var(--body);
  font-family: var(--sans); font-size: var(--fs-md); line-height: 1.68;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.14; letter-spacing: -0.022em; font-weight: 800; text-wrap: balance; }
h3, h4 { letter-spacing: -0.014em; }
p { text-wrap: pretty; }
::selection { background: rgba(0,112,192,.18); }

.wrap { max-width: 1200px; margin: 0 auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding-inline: var(--gutter); }
section { padding-block: var(--sec); }
section[id] { scroll-margin-top: 104px; }
.alt { background: var(--paper-2); box-shadow: inset 0 1px 0 var(--line-2), inset 0 -1px 0 var(--line-2); }

/* accessibility: keyboard-only focus ring, visible on light and dark */
:focus-visible {
  outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 5px;
}
.hero :focus-visible, .story :focus-visible, .cta-panel :focus-visible,
.footer :focus-visible, .page-head :focus-visible, .trust :focus-visible, .ribbon :focus-visible {
  outline-color: var(--focus-dark);
}
.skip-link {
  position: absolute; left: var(--s-4); top: var(--s-4); z-index: 300;
  transform: translateY(-160%);
  background: var(--ink); color: #fff; padding: var(--s-3) var(--s-5);
  border-radius: var(--r-sm); font-weight: 700; font-size: var(--fs-base);
  text-decoration: none; transition: transform var(--dur) var(--ease);
}
.skip-link:focus { transform: none; }

/* ============================================================ ribbon */
.ribbon {
  background: var(--ink); color: var(--on-dark-2); text-align: center;
  font-size: var(--fs-sm); letter-spacing: .01em; padding: var(--s-2) var(--s-4);
  position: relative; z-index: 60;
}
.ribbon b { color: #fff; font-weight: 600; }
.ribbon a { color: var(--focus-dark); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.ribbon a:hover { color: #fff; }

/* ============================================================ nav */
.nav { position: sticky; top: 0; z-index: 50; }
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: var(--s-2) var(--gutter);
  display: flex; align-items: center; gap: var(--s-5);
  background: linear-gradient(rgba(255,255,255,.84), rgba(255,255,255,.7));
  -webkit-backdrop-filter: blur(22px) saturate(1.8);
  backdrop-filter: blur(22px) saturate(1.8);
  border-bottom: 1px solid rgba(223,230,236,.8);
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; border-radius: var(--r-sm); }
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; gap: var(--s-1); margin-left: auto; align-items: center; flex-wrap: wrap; }
.nav-links a {
  position: relative; font-size: var(--fs-base); font-weight: 600; text-decoration: none;
  color: var(--ink-2); padding: var(--s-3) 0.6rem; border-radius: var(--r-sm);
  white-space: nowrap; min-height: 44px; display: inline-flex; align-items: center;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
/* underline grows from the centre — cheaper and calmer than a border swap */
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: 6px; height: 2px;
  background: var(--blue); border-radius: 2px;
  transition: left var(--dur) var(--ease), right var(--dur) var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--blue); background: rgba(0,112,192,.05); }
.nav-links a:not(.nav-cta):hover::after { left: 0.6rem; right: 0.6rem; }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after { left: 0.6rem; right: 0.6rem; }
.nav-cta {
  display: inline-flex; align-items: center; gap: var(--s-2); min-height: 44px;
  background: var(--blue); color: #fff !important; padding: var(--s-3) var(--s-5);
  border-radius: var(--r-pill); font-size: var(--fs-base); font-weight: 700;
  text-decoration: none; white-space: nowrap; margin-left: var(--s-3);
  box-shadow: var(--sh-2), inset 0 1px 0 rgba(255,255,255,.16);
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav-cta:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: var(--sh-3); }
.nav-cta:active { transform: translateY(0); }
.nav-toggle {
  display: none; margin-left: auto; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-sm); width: 46px; height: 46px; font-size: 18px; cursor: pointer;
  color: var(--ink); align-items: center; justify-content: center;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.nav-toggle:hover { border-color: var(--blue); color: var(--blue); }

/* ============================================================ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: 50px; padding: var(--s-3) var(--s-6); border-radius: var(--r-pill);
  font-size: var(--fs-md); font-weight: 700; text-decoration: none; letter-spacing: -.005em;
  border: 1px solid transparent; cursor: pointer; font-family: inherit;
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn:active { transform: translateY(0) scale(.99); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--sh-2), inset 0 1px 0 rgba(255,255,255,.16); }
.btn-primary:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: var(--sh-3); }
.btn-ghost {
  border-color: rgba(255,255,255,.34); color: #fff; background: rgba(255,255,255,.09);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: var(--sh-2); }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: var(--sh-3); }
.btn-outline { border-color: var(--line); color: var(--ink); background: #fff; box-shadow: var(--sh-1); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--sh-2); }

/* ============================================================ hero
   Logo-led, mirroring their current front page (mark left, tagline right) but
   built as a full-height dark stage: their job photo drops back to a texture. */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; background: #05080c; }
.hero .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .30; }
.hero .shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(102deg, rgba(5,8,12,.95) 0%, rgba(5,8,12,.78) 45%, rgba(5,8,12,.62) 100%),
    radial-gradient(ellipse 120% 85% at 50% 50%, transparent 30%, rgba(5,8,12,.85) 100%);
}
.hero .glow {
  position: absolute; left: 18%; top: 46%; transform: translate(-50%, -50%);
  width: min(760px, 78vw); height: min(760px, 78vw); border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(58,154,218,.22), rgba(58,154,218,.07) 42%, transparent 70%);
  filter: blur(14px);
}
/* padding-block only — a `padding` shorthand here would wipe out .wrap's side padding */
.hero-inner { position: relative; z-index: 2; padding-block: var(--s-9) var(--s-8); }
.hero-lockup { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.hero-mark { display: flex; justify-content: center; }
.hero-mark img { width: 100%; max-width: 470px; filter: drop-shadow(0 22px 60px rgba(0,0,0,.75)); }
.hero .eyebrow {
  font-size: var(--fs-xs); letter-spacing: .22em; text-transform: uppercase; font-weight: 700;
  color: var(--focus-dark); margin-bottom: var(--s-5);
}
.hero h1 { display: flex; flex-direction: column; gap: 2px; margin-bottom: var(--s-5); }
.hero h1 span {
  font-size: clamp(2.25rem, 1.5rem + 3.4vw, 4.125rem); font-weight: 800; text-transform: uppercase;
  letter-spacing: .035em; line-height: 1.04;
  color: #fff;  /* fallback: keeps the headline visible if background-clip:text is unsupported */
  background: linear-gradient(180deg, #ffffff 30%, #b8cbdb 100%);
  -webkit-background-clip: text; background-clip: text;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 span { color: transparent; }
}
.hero p.sub { font-size: var(--fs-xl); color: var(--on-dark); font-weight: 500; margin-bottom: var(--s-3); max-width: 38ch; }
.hero p.sub em { font-style: normal; color: var(--focus-dark); }
.hero p.lede { font-size: var(--fs-lg); max-width: 44ch; color: var(--on-dark-2); margin-bottom: var(--s-7); }
.hero-btns { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* ============================================================ trust strip */
.trust { background: var(--ink); color: #fff; }
.trust .wrap {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--s-3) var(--s-6); padding-block: var(--s-5);
}
.trust .item { display: flex; align-items: center; gap: var(--s-3); font-size: var(--fs-base); color: var(--on-dark-2); }
.trust .item b { color: #fff; font-weight: 700; }
.trust svg { width: 19px; height: 19px; flex-shrink: 0; stroke: var(--focus-dark); fill: none; stroke-width: 2.4; }

/* ============================================================ section heads */
.section-head { max-width: 60ch; margin-bottom: var(--s-8); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow {
  font-size: var(--fs-xs); letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  color: var(--blue); margin-bottom: var(--s-3);
}
.section-head h2 { font-size: var(--fs-3xl); margin-bottom: var(--s-4); }
.section-head p { color: var(--muted); font-size: var(--fs-lg); max-width: 58ch; }
.section-head.center p { margin-inline: auto; }

/* ============================================================ cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--s-5); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--sh-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: #cbd7e1; }
.card .ph { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-3); }
.card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .ph img { transform: scale(1.045); }
.card .body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; gap: var(--s-3); }
.card h3 { font-size: var(--fs-xl); }
.card p { color: var(--muted); font-size: var(--fs-base); flex: 1; max-width: 46ch; }
.card .more {
  font-size: var(--fs-base); font-weight: 700; color: var(--blue); text-decoration: none;
  display: inline-flex; align-items: center; gap: var(--s-2);
  min-height: 44px; align-self: flex-start;   /* WCAG 2.2 target size */
}
.card .more span { transition: transform var(--dur) var(--ease); display: inline-block; }
.card:hover .more span, .card .more:hover span { transform: translateX(4px); }
.card .more:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================ split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 3.5rem); align-items: center; }
.split.narrow-img { grid-template-columns: 1.05fr .95fr; }
.split img.shot { border-radius: var(--r-xl); box-shadow: var(--sh-4); width: 100%; }
.split h2 { font-size: var(--fs-2xl); margin-bottom: var(--s-4); }
.split p { color: var(--muted); font-size: var(--fs-lg); margin-bottom: var(--s-4); max-width: 60ch; }
.split .quoteline {
  border-left: 3px solid var(--blue); padding: var(--s-1) 0 var(--s-1) var(--s-5);
  margin-block: var(--s-5); font-size: var(--fs-xl); color: var(--ink); font-weight: 500;
  max-width: 48ch; line-height: 1.45;
}

/* ============================================================ stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--s-4); }
.stat {
  text-align: center; padding: var(--s-6) var(--s-4); background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.stat:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.stat .n { font-size: var(--fs-4xl); font-weight: 800; color: var(--blue); letter-spacing: -.035em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat .l { font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: var(--s-3); font-weight: 700; }

/* ============================================================ gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--s-3); }
.gallery figure {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  background: var(--paper-3); aspect-ratio: 4 / 3; box-shadow: var(--sh-1);
}
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.055); }
.gallery figcaption {
  position: absolute; inset-inline: 0; bottom: 0; padding: var(--s-8) var(--s-4) var(--s-3);
  /* stronger, longer scrim — captions sat on bright photos at only ~3:1 before */
  background: linear-gradient(transparent, rgba(6,10,15,.55) 42%, rgba(6,10,15,.92));
  color: #fff; font-size: var(--fs-base); font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,.6);
}

/* ============================================================ reviews */
.rating-head { display: flex; align-items: center; gap: var(--s-5); flex-wrap: wrap; margin-bottom: var(--s-2); }
.rating-head .big { font-size: var(--fs-4xl); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 20px; height: 20px; fill: var(--copper); }
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s-5); }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-4); box-shadow: var(--sh-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.quote:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.quote p { font-size: var(--fs-lg); color: var(--ink); flex: 1; line-height: 1.55; }
.quote .who { font-size: var(--fs-base); color: var(--muted); font-weight: 600; }
.quote .who b { color: var(--ink); display: block; font-weight: 700; font-size: var(--fs-md); }
.trunc { color: var(--muted); font-style: italic; font-size: var(--fs-base); max-width: 68ch; margin-inline: auto; }

/* ============================================================ counties */
.counties { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s-5); }
.county { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-6); box-shadow: var(--sh-1); }
.county h3 { font-size: var(--fs-xl); margin-bottom: var(--s-1); }
.county .n { font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: var(--s-4); }
.county ul { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s-2); }
.county li {
  font-size: var(--fs-base); color: var(--slate); background: var(--paper-2);
  border: 1px solid var(--line); padding: var(--s-1) var(--s-3); border-radius: var(--r-sm);
}

/* ============================================================ faq */
.faq { max-width: 800px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: var(--s-5) var(--s-8) var(--s-5) 0; position: relative;
  font-size: var(--fs-xl); font-weight: 700; color: var(--ink); min-height: 44px;
  border-radius: var(--r-sm); transition: color var(--dur) var(--ease);
}
.faq summary:hover { color: var(--blue); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 10px; top: 50%; width: 13px; height: 13px;
  margin-top: -7px; border-right: 2.5px solid var(--blue); border-bottom: 2.5px solid var(--blue);
  transform: rotate(45deg); transform-origin: 70% 70%;
  transition: transform var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .a { padding: 0 var(--s-8) var(--s-5) 0; color: var(--muted); font-size: var(--fs-lg); max-width: 66ch; }

/* ============================================================ CTA panel */
.cta-panel { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.cta-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 120% at 12% 50%, rgba(58,154,218,.16), transparent 62%);
}
.cta-panel .wrap { position: relative; z-index: 1; }
.cta-panel h2 { font-size: var(--fs-3xl); color: #fff; margin-bottom: var(--s-4); max-width: 20ch; }
.cta-panel p { color: var(--on-dark-2); font-size: var(--fs-lg); max-width: 56ch; margin-bottom: var(--s-6); }
.cta-panel .btns { display: flex; gap: var(--s-3); flex-wrap: wrap; }
/* white-on-#2f8ac9 was 3.75:1 — keep the darker blue and lighten only on hover */
.cta-panel .btn-primary { background: var(--blue); }
.cta-panel .btn-primary:hover { background: var(--blue-l); }

/* ============================================================ page header */
.page-head { position: relative; color: #fff; padding-block: var(--s-9) var(--s-8); overflow: hidden; background: var(--ink); }
.page-head .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.page-head .shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(9,13,18,.92), rgba(9,13,18,.6)); }
.page-head .wrap { position: relative; z-index: 2; }
.page-head .crumb { font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--focus-dark); font-weight: 700; margin-bottom: var(--s-3); }
.page-head h1 { font-size: var(--fs-4xl); color: #fff; margin-bottom: var(--s-4); max-width: 18ch; }
.page-head p { color: var(--on-dark-2); font-size: var(--fs-lg); max-width: 56ch; }

/* ============================================================ prose */
.prose h2 { font-size: var(--fs-2xl); margin: var(--s-7) 0 var(--s-4); }
.prose h3 { font-size: var(--fs-xl); margin: var(--s-6) 0 var(--s-3); }
.prose p { margin-bottom: var(--s-4); color: var(--muted); font-size: var(--fs-lg); max-width: 66ch; }
.prose ul { margin: 0 0 var(--s-5) var(--s-5); color: var(--muted); font-size: var(--fs-lg); max-width: 64ch; }
.prose li { margin-bottom: var(--s-2); }
.prose > :first-child { margin-top: 0; }

/* ============================================================ checklist */
.checks { list-style: none; display: grid; gap: var(--s-3); max-width: 60ch; }
.checks li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: var(--fs-lg); color: var(--body); }
.checks svg { width: 21px; height: 21px; flex-shrink: 0; margin-top: 3px; stroke: var(--blue); fill: none; stroke-width: 2.6; }
.checks b { color: var(--ink); font-weight: 700; }

/* ============================================================ contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
.info-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-6); }
.info-card h3 { font-size: var(--fs-xl); margin-bottom: var(--s-4); }
.info-row { display: flex; gap: var(--s-4); padding-block: var(--s-3); border-bottom: 1px solid var(--line); font-size: var(--fs-md); }
.info-row:last-child { border-bottom: 0; }
.info-row .k { color: var(--muted); min-width: 94px; font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding-top: 5px; }
.info-row .v { color: var(--ink); font-weight: 600; }
/* standalone values, not inline-in-sentence — so they need a real target size */
.info-row .v a {
  color: var(--blue); text-decoration: none; text-underline-offset: 3px;
  display: inline-flex; align-items: center; min-height: 28px;
}
.info-row .v a:hover { text-decoration: underline; }
.hours-tbl { width: 100%; border-collapse: collapse; font-size: var(--fs-md); }
.hours-tbl td { padding-block: var(--s-3); border-bottom: 1px solid var(--line); color: var(--muted); }
.hours-tbl td:last-child { text-align: right; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.hours-tbl tr:last-child td { border-bottom: 0; }
.hours-tbl tr.today td { color: var(--blue); font-weight: 700; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-6); box-shadow: var(--sh-2); }
.form-card h3 { font-size: var(--fs-xl); margin-bottom: var(--s-1); }
.form-card .sub { color: var(--muted); font-size: var(--fs-base); margin-bottom: var(--s-5); }
.field { margin-bottom: var(--s-4); }
.field label { display: block; font-size: var(--fs-base); font-weight: 700; margin-bottom: var(--s-2); color: var(--ink); }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: var(--s-3) var(--s-4); min-height: 48px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  font-family: inherit; font-size: var(--fs-md); color: var(--ink); background: #fff;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #93a0ad; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #c3d0dc; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,112,192,.16);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: var(--fs-base); color: var(--muted); margin-top: var(--s-4); line-height: 1.6; }
.form-note b { color: var(--ink); }

/* ============================================================ footer */
.footer { background: var(--ink); color: var(--on-dark-3); padding-top: var(--s-8); font-size: var(--fs-base); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--s-7) var(--s-6); padding-bottom: var(--s-7); }
.footer img.mark { height: 50px; width: auto; margin-bottom: var(--s-4); }
.footer h4 { color: #fff; font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; margin-bottom: var(--s-4); font-weight: 700; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 2px; }
.footer a {
  color: var(--on-dark-3); text-decoration: none; display: inline-flex; align-items: center;
  min-height: 40px; padding-block: var(--s-1); border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease);
}
.footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer .lic { font-size: var(--fs-base); color: var(--on-dark-3); margin-top: var(--s-3); line-height: 1.75; }
.footer-legal {
  border-top: 1px solid #262e38; padding-block: var(--s-5); display: flex; justify-content: space-between;
  gap: var(--s-4); flex-wrap: wrap; font-size: var(--fs-base); color: var(--on-dark-3);
}
.footer-legal .credit a { color: var(--focus-dark); text-decoration: none; font-weight: 600; min-height: 0; }
.footer-legal .credit a:hover { text-decoration: underline; }

/* ============================================================ responsive */
@media (max-width: 1080px) {
  /* nine nav items + logo + CTA stop fitting one row well before this */
  .hero-lockup { grid-template-columns: 1fr; gap: var(--s-7); text-align: center; }
  .hero-mark img { max-width: 360px; }
  .hero h1 { align-items: center; }
  .hero p.sub, .hero p.lede { max-width: 50ch; margin-inline: auto; }
  .hero-btns, .chip-row { justify-content: center; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.narrow-img { grid-template-columns: 1fr; }
  /* photo above copy reads better than photo-last when stacked */
  .split > div:has(img.shot) { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line);
    padding: var(--s-2) var(--gutter) var(--s-5); box-shadow: var(--sh-3);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: var(--s-4) var(--s-2); border-bottom: 1px solid var(--line-2); border-radius: 0; }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-links a.active { background: rgba(0,112,192,.06); }
  .nav-cta { justify-content: center; margin: var(--s-4) 0 0; border-bottom: 0 !important; }
}
@media (max-width: 860px) {
  .nav-logo img { height: 44px; }
  .hero { min-height: 0; }
  .hero-mark img { max-width: 290px; }
  .hero-inner { padding-block: var(--s-8); }
  .rating-head .big { font-size: var(--fs-3xl); }
  .faq summary { font-size: var(--fs-lg); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .gallery { grid-template-columns: 1fr 1fr; gap: var(--s-2); }
  .gallery figcaption { font-size: var(--fs-xs); padding: var(--s-6) var(--s-3) var(--s-2); }
  .hero-btns .btn, .cta-panel .btns .btn { flex: 1 1 100%; }
  .info-row { flex-direction: column; gap: 2px; }
  .info-row .k { padding-top: 0; }
  .card .body { padding: var(--s-5) var(--s-4); }
  .quote, .county, .info-card, .form-card { padding: var(--s-5) var(--s-4); }
}

/* honour reduced motion everywhere */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

/* print: drop the chrome, keep the facts */
@media print {
  .ribbon, .nav, .cta-panel, .hero .bg, .hero .glow, .skip-link { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .footer { background: none; color: #000; }
  a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}

/* visually-hidden but announced by screen readers */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* brand/partner logo row — greyscale until hover so it reads as credential, not clutter */
.logos {
  display: flex; flex-wrap: wrap; gap: var(--s-7); align-items: center; justify-content: center;
}
.logos img {
  height: 46px; width: auto; opacity: .72; filter: grayscale(1);
  transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.logos img:hover { opacity: 1; filter: none; }
@media (max-width: 560px) { .logos { gap: var(--s-5); } .logos img { height: 34px; } }
