/* ==========================================================================
   Cold Breeze LLC — Design System
   Single stylesheet. No build step, no framework.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — cold navy base, ice blue primary, warm orange for action */
  --ink-900: #06121d;
  --ink-800: #0a1c2c;
  --ink-700: #10293e;
  --ink-600: #1b3b55;

  --blue-700: #0b6ea3;
  --blue-600: #0e86c4;
  --blue-500: #17a3e0;
  --blue-400: #45c0f0;
  --blue-200: #b6e6fb;
  --blue-50:  #ecf8fe;

  --flame-600: #e2551a;
  --flame-500: #f9682a;
  --flame-400: #ff8a54;
  --flame-50:  #fff2ec;

  --slate-900: #12212e;
  --slate-700: #33495c;
  --slate-500: #5d7185;
  --slate-300: #b9c6d2;
  --slate-200: #dbe4ec;
  --slate-100: #eef3f7;
  --slate-50:  #f7fafc;
  --white: #ffffff;

  --ok-500: #16a34a;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--slate-50);
  --text: var(--slate-900);
  --text-muted: var(--slate-500);
  --border: var(--slate-200);
  --primary: var(--blue-600);
  --action: var(--flame-500);

  /* Type */
  --font-display: "Outfit", "Segoe UI Variable Display", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2:  clamp(1.45rem, 1.3rem + 0.75vw, 1.85rem);
  --step-3:  clamp(1.8rem, 1.52rem + 1.4vw, 2.6rem);
  --step-4:  clamp(2.2rem, 1.7rem + 2.5vw, 3.7rem);

  /* Space */
  --gap: 1.5rem;
  --section-y: clamp(3.5rem, 2.4rem + 5vw, 6.5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(10, 28, 44, 0.06),
               0 2px 6px rgba(10, 28, 44, 0.05);
  --shadow-md: 0 4px 10px rgba(10, 28, 44, 0.07),
               0 12px 28px rgba(10, 28, 44, 0.08);
  --shadow-lg: 0 10px 20px rgba(10, 28, 44, 0.08),
               0 30px 60px rgba(10, 28, 44, 0.14);

  --maxw: 1180px;
  --header-h: 74px;
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

/* The browser's own [hidden] rule is display:none, but it loses to any
   component rule that sets a display (e.g. .testimonial { display:flex }).
   Reviews rotation relies on [hidden] actually hiding, so make it stick. */
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); letter-spacing: -0.015em; }
h4 { font-size: var(--step-0); letter-spacing: -0.01em; }

p { margin: 0 0 1rem; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--blue-500); }

ul, ol { margin: 0 0 1rem; padding-left: 1.15rem; }
li { margin-bottom: 0.4rem; }

hr { border: 0; border-top: 1px solid var(--border); margin: 2rem 0; }

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 8px;
  top: -100px;
  z-index: 200;
  background: var(--ink-900);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; color: #fff; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}
.container--narrow { max-width: 780px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 3vw, 4rem); }
.section--alt { background: var(--bg-alt); }
.section--ice {
  background:
    radial-gradient(1000px 420px at 82% -10%, var(--blue-50), transparent 70%),
    var(--bg-alt);
}
.section--dark {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(23,163,224,0.22), transparent 65%),
    linear-gradient(165deg, var(--ink-800), var(--ink-900));
  color: #dbe9f4;
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark a { color: var(--blue-200); }

/* A light card sitting inside a dark section must not inherit that section's
   light text colour - the text ends up light-on-light and disappears
   (measured 1.18:1 before this rule). Put the normal text colours back. */
.section--dark .card { color: var(--text); }
.section--dark .card h2,
.section--dark .card h3,
.section--dark .card h4 { color: var(--ink-900); }
.section--dark .card a { color: var(--blue-700); }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr)); }

.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.center .section-head { margin-inline: auto; }

.section-head { max-width: 660px; margin-bottom: clamp(2rem, 1.5rem + 1.5vw, 3rem); }
.section-head p { color: var(--text-muted); font-size: var(--step-1); line-height: 1.5; }
.section--dark .section-head p { color: #a9c3d6; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.section--dark .eyebrow { color: var(--blue-400); }

.lede { font-size: var(--step-1); line-height: 1.55; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: var(--step-0);
  font-weight: 600;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
              background-color 0.16s ease, color 0.16s ease,
              border-color 0.16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

.btn--action {
  background: var(--action);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 104, 42, 0.35);
}
.btn--action:hover {
  background: var(--flame-600);
  color: #fff;
  box-shadow: 0 8px 22px rgba(249, 104, 42, 0.42);
}

.btn--primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 4px 14px rgba(14, 134, 196, 0.32);
}
.btn--primary:hover { background: var(--blue-700); color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--ink-800);
  border-color: var(--slate-300);
}
.btn--outline:hover {
  border-color: var(--blue-500);
  color: var(--blue-700);
  background: var(--blue-50);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn--lg { padding: 1.1rem 1.9rem; font-size: var(--step-1); }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--ink-900);
  color: #c3d6e5;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  min-height: 40px;
  padding-block: 0.4rem;
}
.topbar__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.topbar__list li {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar__list svg { width: 14px; height: 14px; color: var(--blue-400); flex: none; }
.topbar a { color: #fff; font-weight: 600; text-decoration: none; }
.topbar a:hover { color: var(--blue-400); }
/* The phone number here was a 16px-tall target - the smallest thing on the
   page, and the one an older visitor most wants to hit. Padding widens the
   hit area without changing the bar's height. */
.topbar a[href^="tel:"] {
  display: inline-block;
  padding: 0.55rem 0.4rem;
  margin: -0.55rem 0;
  border-radius: 6px;
}
.topbar a[href^="tel:"]:hover { background: rgba(255, 255, 255, 0.08); }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #37d67a; flex: none;
  box-shadow: 0 0 0 0 rgba(55, 214, 122, 0.7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(55, 214, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(55, 214, 122, 0); }
}

/* On phones the top bar competes with the hero CTA — keep only the
   24/7 line and the number, and let the licence details live in the footer. */
@media (max-width: 700px) {
  .topbar__inner { justify-content: flex-start; }
  .topbar__list li:nth-child(2) { display: none; }
  .topbar__inner > p { font-size: 0.8rem; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
/* The frosted backdrop lives on a pseudo-element, not on .site-header itself:
   an element with backdrop-filter becomes the containing block for its
   position:fixed descendants, which would break the mobile nav panel. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
}
.site-header.is-stuck {
  box-shadow: 0 4px 24px rgba(10, 28, 44, 0.09);
  border-bottom-color: var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink-900);
  margin-right: auto;
  flex: none;
}
.brand__mark {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 11px;
  background: linear-gradient(150deg, var(--blue-500), var(--blue-700));
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(14, 134, 196, 0.35);
}
.brand__mark svg { width: 23px; height: 23px; color: #fff; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}
.brand__tag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav { display: flex; align-items: center; gap: 0.15rem; }
.nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--slate-700);
  text-decoration: none;
  padding: 0.55rem 0.8rem;
  border-radius: 9px;
  transition: color 0.15s, background-color 0.15s;
}
.nav a:hover { color: var(--ink-900); background: var(--slate-100); }
.nav a[aria-current="page"] { color: var(--blue-700); background: var(--blue-50); }

.header-cta { display: flex; align-items: center; gap: 0.6rem; flex: none; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--ink-900);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.header-phone svg { width: 17px; height: 17px; color: var(--blue-600); }
.header-phone:hover { color: var(--blue-700); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 11px;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  position: relative;
  transition: background-color 0.2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.24s ease, top 0.2s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Desktop nav spacing. Seven links plus the brand, phone and quote button
   only just fit inside the 1180px container, so the links run tighter here
   than their touch-target sizing on mobile below. */
@media (min-width: 1041px) {
  .nav { gap: 0.05rem; flex-wrap: nowrap; }
  .nav a { padding-left: 0.5rem; padding-right: 0.5rem; font-size: 0.9rem; white-space: nowrap; }
}

/* Between the hamburger breakpoint and 1160px there is room for the nav or
   the header phone number, but not both. The nav wins - the phone is still
   in the top bar, the footer, and the sticky mobile call bar. */
@media (min-width: 1041px) and (max-width: 1159px) {
  .header-phone { display: none; }
}

/* Was 980px, but the header needs ~1023px to lay out without overflowing.
   Anything narrower gets the slide-in menu. */
@media (max-width: 1040px) {
  .nav-toggle { display: grid; }
  .header-cta .btn { display: none; }
  .nav {
    position: fixed;
    inset: calc(var(--header-h)) 0 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.2rem clamp(1.1rem, 4vw, 2rem) 2.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(10, 28, 44, 0.12);
  }
  .nav.is-open { transform: translateX(0); }
  .nav a {
    padding: 1rem 0.35rem;
    font-size: 1.15rem;
    border-bottom: 1px solid var(--slate-100);
    border-radius: 0;
  }
  .nav a:hover { background: transparent; }
  .nav a[aria-current="page"] { border-radius: 10px; }
  .nav .btn {
    margin-top: 1.4rem;
    border-bottom: none;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-pill);
    color: #fff;
  }
}

@media (max-width: 540px) {
  .header-phone span { display: none; }
  .header-phone {
    width: 46px; height: 46px;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 11px;
  }
  .header-phone svg { width: 20px; height: 20px; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  color: #e2eef7;
  padding-block: clamp(3.5rem, 2.5rem + 6vw, 7rem);
  background:
    radial-gradient(760px 460px at 78% 12%, rgba(23, 163, 224, 0.28), transparent 62%),
    radial-gradient(620px 380px at 8% 92%, rgba(11, 110, 163, 0.28), transparent 65%),
    linear-gradient(158deg, var(--ink-700) 0%, var(--ink-900) 68%);
  overflow: hidden;
}
.hero::after {
  /* frosted grid texture */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 20%, transparent 100%);
}
.hero__glow {
  position: absolute;
  z-index: -1;
  width: 620px; height: 620px;
  right: -190px; top: -230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 192, 240, 0.3), transparent 62%);
  filter: blur(30px);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
}
@media (max-width: 1040px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--blue-400), var(--blue-200));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: #a9c8dd;
  max-width: 54ch;
  margin-bottom: 1.9rem;
}
.hero .eyebrow { color: var(--blue-400); }

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}
.hero__chips li {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cfe4f2;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.95rem 0.45rem 0.7rem;
}
.hero__chips svg { width: 15px; height: 15px; color: var(--blue-400); flex: none; }

/* Quote card in hero */
.quote-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.quote-card h2 {
  font-size: var(--step-2);
  margin-bottom: 0.35rem;
}
.quote-card__note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}
.quote-card__foot {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* --------------------------------------------------------------------------
   7. Page hero (interior pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  color: #dceaf5;
  padding-block: clamp(2.75rem, 2rem + 4vw, 4.75rem);
  background:
    radial-gradient(680px 340px at 80% 0%, rgba(23, 163, 224, 0.26), transparent 65%),
    linear-gradient(160deg, var(--ink-700), var(--ink-900));
}
.page-hero h1 { color: #fff; margin-bottom: 0.7rem; }
.page-hero p { color: #a9c8dd; font-size: var(--step-1); max-width: 62ch; line-height: 1.55; }
.page-hero .eyebrow { color: var(--blue-400); }
.page-hero .btn-row { margin-top: 1.8rem; }

.breadcrumb {
  font-size: 0.85rem;
  color: #8fb0c8;
  margin-bottom: 1.1rem;
}
.breadcrumb ol {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  list-style: none; margin: 0; padding: 0;
}
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb li + li::before { content: "/"; color: #4f7591; }
.breadcrumb a { color: #b6d4e8; text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* --------------------------------------------------------------------------
   8. Stat bar
   -------------------------------------------------------------------------- */
.statbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat {
  background: #fff;
  padding: 1.6rem 1.25rem;
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.4rem + 1.3vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--blue-700);
  margin-bottom: 0.35rem;
}
.stat__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 1.2rem + 0.7vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
}
/* Whole-card links: strip the default anchor styling from the card body so
   only the explicit .card__link reads as a link. */
a.card,
a.card--link {
  text-decoration: none;
  color: inherit;
}
a.card h3, a.card--link h3 { color: var(--ink-900); }
a.card p,  a.card--link p  { color: var(--text-muted); }

.card--link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}
.card--link:hover h3 { color: var(--blue-700); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.96rem; }
.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: linear-gradient(150deg, var(--blue-50), #d7eefb);
  border: 1px solid var(--blue-200);
  flex: none;
}
.card__icon svg { width: 26px; height: 26px; color: var(--blue-700); }
.card__icon--warm {
  background: linear-gradient(150deg, var(--flame-50), #ffe2d3);
  border-color: #ffd0ba;
}
.card__icon--warm svg { color: var(--flame-600); }

.card__link {
  margin-top: auto;
  padding-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--blue-700);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card__link svg { width: 15px; height: 15px; transition: transform 0.2s; }
.card--link:hover .card__link svg { transform: translateX(4px); }

.card--flat { box-shadow: none; background: var(--bg-alt); }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  line-height: 1.55;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.28em;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b6ea3' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
  border: 1px solid var(--blue-200);
}
.section--dark .checklist li::before {
  background-color: rgba(69, 192, 240, 0.16);
  border-color: rgba(69, 192, 240, 0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2345c0f0' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.crosslist { list-style: none; padding: 0; margin: 0; }
.crosslist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.crosslist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.28em;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fdecec url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c33' stroke-width='3.2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center / 11px no-repeat;
  border: 1px solid #f6cfcf;
}

/* --------------------------------------------------------------------------
   10. Promise / split
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  align-items: center;
}
.split--wide-left { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
@media (max-width: 900px) { .split--wide-left { grid-template-columns: 1fr; } }

.promise-list { display: grid; gap: 1.1rem; }
.promise {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.15rem 1.3rem;
}
.promise__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-900);
  background: var(--blue-400);
  width: 30px; height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: none;
}
.promise h3 { font-size: var(--step-0); margin-bottom: 0.2rem; color: #fff; }
.promise p { font-size: 0.94rem; color: #a9c3d6; margin: 0; }

/* --------------------------------------------------------------------------
   11. Process steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 195px), 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 3.7rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0; left: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(150deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 4px 12px rgba(14, 134, 196, 0.3);
}
.step h3 { font-size: var(--step-0); margin-bottom: 0.35rem; }
.step p { color: var(--text-muted); font-size: 0.94rem; }

/* --------------------------------------------------------------------------
   12. Testimonials
   -------------------------------------------------------------------------- */
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testimonial blockquote {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--slate-900);
}
.testimonial figcaption {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--blue-500), var(--blue-700));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  flex: none;
}
.testimonial__name { font-weight: 700; color: var(--ink-900); }
.testimonial__meta { color: var(--text-muted); font-size: 0.85rem; }

.stars { display: inline-flex; gap: 2px; margin-bottom: 0.9rem; color: #f5a623; }
.stars svg { width: 17px; height: 17px; }

/* Owner intro video. Player on the left, copy beside it; stacks on narrow
   screens. The 16:9 box is reserved up front so the page does not jump
   when the poster loads. */
.video-intro {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: center;
}
@media (max-width: 900px) {
  .video-intro { grid-template-columns: 1fr; }
}
.video-intro__player {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md, var(--shadow-sm));
  background: var(--ink-900);
  aspect-ratio: 16 / 9;
}
.video-intro__player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink-900);
}
.video-intro__copy h2 { margin-top: 0.25rem; }

/* The /reviews wall. Every review runs at full length, so they are wildly
   different heights - a grid would stretch each row to its tallest card and
   leave craters. Columns pack them tight instead. Reading order goes down a
   column rather than across, which is what you want for a review wall. */
.review-wall {
  columns: 3 320px;
  column-gap: var(--gap);
}
.review-wall .testimonial {
  break-inside: avoid;
  margin-bottom: var(--gap);
  display: block; /* flex items can't avoid column breaks */
}
.review-wall .testimonial figcaption { margin-top: 1.25rem; }

.review-stat {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin: 0 0 0.5rem;
}
.review-stat__score {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 2rem + 2vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  color: var(--ink-900);
}
.review-stat .stars { margin-bottom: 0; }
.review-stat .stars svg { width: 22px; height: 22px; }

/* --------------------------------------------------------------------------
   13. Service areas
   -------------------------------------------------------------------------- */
.area-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}
.area-grid li { margin: 0; }
.area-grid a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.05rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-800);
  text-decoration: none;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s, color 0.18s;
}
.area-grid a:hover {
  border-color: var(--blue-400);
  color: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.area-grid svg { width: 16px; height: 16px; color: var(--blue-500); flex: none; }
.area-grid span.county {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-300);
}

/* --------------------------------------------------------------------------
   14. FAQ accordion
   -------------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq__item[open] { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--ink-900);
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--blue-700); }
.faq__q::after {
  content: "";
  width: 22px; height: 22px;
  flex: none;
  border-radius: 50%;
  background: var(--slate-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2333495c' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center / 12px no-repeat;
  transition: transform 0.25s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(180deg); }
.faq__a {
  padding: 0 1.35rem 1.35rem;
  color: var(--text-muted);
  font-size: 0.97rem;
}
.faq__a p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   15. Forms
   -------------------------------------------------------------------------- */
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--slate-700);
  margin-bottom: 0.4rem;
}
.field .req { color: var(--flame-600); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: 11px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.16s, box-shadow 0.16s;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235d7185' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 15px;
  padding-right: 2.4rem;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--slate-300); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(23, 163, 224, 0.15);
}
.field input:invalid:not(:placeholder-shown) { border-color: #d9534f; }

.field-row {
  display: grid;
  gap: 0 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
}

/* The optional half of the quote form, folded away so the visible form is
   four boxes rather than fourteen. */
.form-more {
  border: 1px dashed var(--slate-300);
  border-radius: var(--radius-md, 12px);
  margin: 0.5rem 0 1.5rem;
}
.form-more > summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-700);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-more > summary::-webkit-details-marker { display: none; }
.form-more > summary::before {
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
  width: 1.1rem;
  flex: none;
  text-align: center;
}
.form-more[open] > summary::before { content: "\2212"; }
.form-more > summary:hover { color: var(--blue-800, var(--ink-900)); }
.form-more > summary:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: inherit;
}
.form-more__body { padding: 0 1rem 0.25rem; }

.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.9rem;
}

.alert {
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  border: 1px solid;
}
.alert--ok { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.alert--warn { background: var(--flame-50); border-color: #ffd0ba; color: #9a3412; }

/* --------------------------------------------------------------------------
   16. Gallery
   -------------------------------------------------------------------------- */
/* The job photos are mostly stitched panoramas (about 2.2:1) with some
   portrait shots mixed in. Forcing those into a fixed 4/3 tile with
   object-fit:cover threw away roughly 40% of every panorama - which is the
   part of the photo showing the work. Columns let each image keep its own
   shape, so nothing is cropped. */
.gallery {
  columns: 3 320px;
  column-gap: 1rem;
}
.gallery figure {
  margin: 0 0 1rem;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--slate-100);
  box-shadow: var(--shadow-sm);
}
.gallery img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--slate-100);
}
.gallery figcaption {
  padding: 0.85rem 1.05rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
  background: #fff;
}
.photo-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  gap: 0.5rem;
  background:
    repeating-linear-gradient(45deg, var(--slate-100) 0 12px, #e9eff5 12px 24px);
  color: var(--slate-500);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}
.photo-placeholder svg { width: 30px; height: 30px; opacity: 0.55; }

/* --------------------------------------------------------------------------
   17. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 1.8rem + 2.4vw, 3.6rem);
  color: #fff;
  background:
    radial-gradient(600px 300px at 88% 8%, rgba(69, 192, 240, 0.3), transparent 62%),
    linear-gradient(140deg, var(--blue-700), var(--ink-800) 78%);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 1.75rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}
@media (max-width: 820px) {
  .cta-band { grid-template-columns: 1fr; }
}
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band p { color: #b9d6e9; max-width: 52ch; margin: 0; }

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink-900);
  color: #92aec4;
  padding-block: clamp(3rem, 2.4rem + 2vw, 4.5rem) 0;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(155px, 1fr));
  padding-bottom: 2.75rem;
}
.site-footer h3 {
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.6rem; }
.site-footer a { color: #b7cddf; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .brand { color: #fff; margin-bottom: 1.1rem; }
.site-footer .brand__tag { color: #7c9ab1; }
.footer-about p { color: #92aec4; max-width: 40ch; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -0.02em;
  margin-top: 1.1rem;
  text-decoration: none !important;
}
.footer-phone svg { width: 19px; height: 19px; color: var(--blue-400); }

.license-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  padding: 0.75rem 1rem;
  margin-top: 1.35rem;
  font-size: 0.8rem;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.035);
}
.license-badge strong { color: #fff; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }

.social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.35rem;
}
.social a {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 0.18s, transform 0.18s;
}
.social a:hover { background: var(--blue-600); transform: translateY(-2px); }
.social svg { width: 19px; height: 19px; color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; }
.footer-bottom li { margin: 0; }

/* --------------------------------------------------------------------------
   19. Mobile sticky call bar
   -------------------------------------------------------------------------- */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(10, 28, 44, 0.1);
}
/* flex-basis 0 + min-width 0 so three buttons share the bar evenly and are
   allowed to shrink. Without min-width:0 a flex item refuses to go below its
   content width, and the last button gets clipped off-screen on a 320px phone. */
.callbar .btn { flex: 1 1 0; min-width: 0; padding: 0.9rem 1rem; font-size: 0.96rem; }
@media (max-width: 720px) {
  .callbar { display: flex; }
  body { padding-bottom: 76px; }
}
/* Small phones: drop the decorative icons and tighten up so Call / Text /
   Quote all still fit and stay tappable. */
@media (max-width: 390px) {
  .callbar { gap: 0.4rem; padding-inline: 0.5rem; }
  .callbar .btn { padding-inline: 0.3rem; font-size: 0.88rem; }
  .callbar .btn svg { display: none; }
}

/* --------------------------------------------------------------------------
   20. Scroll reveal
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   21. Prose (legal pages)
   -------------------------------------------------------------------------- */
.prose h2 { font-size: var(--step-2); margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; }
.prose > :first-child { margin-top: 0; }
.prose ul { margin-bottom: 1.25rem; }

/* --------------------------------------------------------------------------
   22. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .topbar, .callbar, .cta-band, .site-footer { display: none !important; }
  body { color: #000; }
  a::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
