/* ============================================================
   SCS Heating & Air Conditioning — Design System
   ------------------------------------------------------------
   Single production stylesheet. Vendored from the Claude Design
   handoff bundle (sources/) and consolidated into one file so the
   static site links exactly one CSS resource (no @import chain,
   no build step).

   Order matters: fonts → tokens → base → components.
   Page-specific section CSS (hero, header/footer, etc.) is added
   per page as those pages are ported — this file is the reusable
   design system only.

   Brand: SCS Red #D3202F (heat / primary CTA), Airflow Blue
   #006699 (cool / trust), Airflow Cyan #29ABE2 (accent), Ink/Navy
   #041824 (anchor). Fonts (Barlow / Barlow Condensed) and icons
   (Lucide) are flagged substitutes — swap if true brand assets
   surface. See sources/ readme.md for the full design guide.
   ============================================================ */

/* ============================================================
   WEB FONTS  (must precede all rules)
   No brand font files were provided (the SCS wordmark is custom
   hand-lettering). These Google Fonts are the closest match to
   the logo's heavy, slightly condensed character.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;1,700&family=Barlow+Semi+Condensed:wght@500;600;700&display=swap');


/* ============================================================
   TOKENS — COLOR
   Brand DNA = the duality of the trade: HEAT (red) + COOL (blue).
   Reference the SEMANTIC ALIASES in components, not raw scale values.
   ============================================================ */
:root {
  /* ---- SCS Red — "heat", primary action, energy ----------- */
  --red-50:  #fdecec;
  --red-100: #fbd4d6;
  --red-200: #f3a6ab;
  --red-300: #ea7178;
  --red-400: #df4350;
  --red-500: #d3202f;   /* brand red — sampled from logo */
  --red-600: #b81926;   /* hover */
  --red-700: #94131e;   /* active / pressed */
  --red-800: #6f0f17;
  --red-900: #4a0a10;

  /* ---- SCS Blue — "cool", trust, structure ---------------- */
  --blue-50:  #e6f2f8;
  --blue-100: #c3def0;
  --blue-200: #8fc1dd;
  --blue-300: #54a1c9;
  --blue-400: #1f83b3;
  --blue-500: #006699;  /* brand blue — sampled from logo */
  --blue-600: #005580;
  --blue-700: #004466;
  --blue-800: #06334b;
  --blue-900: #07273a;

  /* ---- Airflow Cyan — bright cooling accent (truck waves) -- */
  --cyan-300: #6dc7ec;
  --cyan-400: #29abe2;  /* sampled from truck graphics */
  --cyan-500: #1490c4;

  /* ---- Ink / Navy — deepest anchor (footers, hero overlays) */
  --ink-900: #041824;  /* near-black blue */
  --ink-800: #07273a;

  /* ---- Neutral gray ramp (cool, faintly blue-tinted) ------ */
  --gray-0:   #ffffff;
  --gray-50:  #f6f8f9;
  --gray-100: #eef1f3;
  --gray-200: #dde3e7;
  --gray-300: #c4ccd2;
  --gray-400: #99a4ac;
  --gray-500: #6c767e;
  --gray-600: #4d565d;
  --gray-700: #373f45;
  --gray-800: #232a2f;
  --gray-900: #12171b;

  /* ---- Semantic status ------------------------------------ */
  --green-50:   #e8f5ed;
  --green-500:  #1e8a4c;   /* success — echoes Angie's List badge */
  --green-600:  #166b3a;
  --amber-50:   #fdf3e3;
  --amber-500:  #e08a1e;   /* warning */
  --amber-600:  #b86c12;

  /* ---- SEMANTIC ALIASES (reference these in components) ---- */
  /* Brand */
  --brand-primary:        var(--red-500);
  --brand-primary-hover:  var(--red-600);
  --brand-primary-active: var(--red-700);
  --brand-secondary:      var(--blue-500);
  --brand-secondary-hover:var(--blue-600);
  --brand-accent:         var(--cyan-400);

  /* Text */
  --text-strong:   var(--gray-900);  /* headlines */
  --text-body:     var(--gray-700);  /* paragraphs */
  --text-muted:    var(--gray-500);  /* captions, meta */
  --text-faint:    var(--gray-400);  /* disabled, placeholder */
  --text-on-brand: #ffffff;          /* text over red/blue/navy */
  --text-link:     var(--blue-600);

  /* Surfaces */
  --surface-page:    var(--gray-50);
  --surface-card:    #ffffff;
  --surface-sunken:  var(--gray-100);
  --surface-inverse: var(--ink-900);  /* dark sections */
  --surface-brand:   var(--red-500);
  --surface-cool:    var(--blue-500);

  /* Borders & dividers */
  --border-subtle:  var(--gray-200);
  --border-default: var(--gray-300);
  --border-strong:  var(--gray-400);
  --border-brand:   var(--red-500);

  /* Status semantic */
  --success: var(--green-500);
  --warning: var(--amber-500);
  --danger:  var(--red-600);
  --info:    var(--blue-500);

  /* Focus ring */
  --focus-ring: 0 0 0 3px rgba(0, 102, 153, 0.45);
}


/* ============================================================
   TOKENS — TYPOGRAPHY
   Display: Barlow Condensed (bold, compressed, industrial).
   UI/Body: Barlow (humanist, legible, friendly).
   ============================================================ */
:root {
  /* ---- Families ------------------------------------------- */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-sans:    "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* ---- Type scale (1.250 major-third-ish, tuned) ---------- */
  --text-2xs:  0.75rem;   /* 12px — legal, micro labels */
  --text-xs:   0.8125rem; /* 13px — captions */
  --text-sm:   0.9375rem; /* 15px — secondary body, UI */
  --text-base: 1.0625rem; /* 17px — body default */
  --text-lg:   1.1875rem; /* 19px — lead paragraph */
  --text-xl:   1.375rem;  /* 22px */
  --text-2xl:  1.75rem;   /* 28px — card / sub heads */
  --text-3xl:  2.25rem;   /* 36px — section heads */
  --text-4xl:  3rem;      /* 48px */
  --text-5xl:  3.75rem;   /* 60px — page titles */
  --text-6xl:  4.75rem;   /* 76px — hero (display) */
  --text-7xl:  6rem;      /* 96px — XL hero */

  /* ---- Weights -------------------------------------------- */
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --weight-extra:    800;

  /* ---- Line heights --------------------------------------- */
  --leading-none:    1;
  --leading-tight:   1.08;   /* display headlines */
  --leading-snug:    1.25;   /* sub heads */
  --leading-normal:  1.55;   /* body */
  --leading-relaxed: 1.7;    /* long-form */

  /* ---- Letter spacing ------------------------------------- */
  --tracking-tight:  -0.01em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-kicker: 0.14em;  /* uppercase eyebrow labels */

  /* ---- Semantic type roles -------------------------------- */
  --font-hero:    var(--weight-bold) var(--text-6xl)/var(--leading-tight) var(--font-display);
  --font-h1:      var(--weight-bold) var(--text-5xl)/var(--leading-tight) var(--font-display);
  --font-h2:      var(--weight-bold) var(--text-3xl)/var(--leading-snug) var(--font-display);
  --font-h3:      var(--weight-semibold) var(--text-2xl)/var(--leading-snug) var(--font-sans);
  --font-lead:    var(--weight-regular) var(--text-lg)/var(--leading-normal) var(--font-sans);
  --font-body:    var(--weight-regular) var(--text-base)/var(--leading-normal) var(--font-sans);
  --font-label:   var(--weight-semibold) var(--text-sm)/var(--leading-snug) var(--font-sans);
}


/* ============================================================
   TOKENS — SPACING, RADII, SHADOWS, BORDERS, MOTION
   Sturdy & dependable: 4px base grid, moderate radii, cool-tinted
   shadows that sit low.
   ============================================================ */
:root {
  /* ---- Spacing scale (4px base) --------------------------- */
  --space-0:   0;
  --space-1:   0.25rem;  /*  4px */
  --space-2:   0.5rem;   /*  8px */
  --space-3:   0.75rem;  /* 12px */
  --space-4:   1rem;     /* 16px */
  --space-5:   1.5rem;   /* 24px */
  --space-6:   2rem;     /* 32px */
  --space-7:   2.5rem;   /* 40px */
  --space-8:   3rem;     /* 48px */
  --space-9:   4rem;     /* 64px */
  --space-10:  5rem;     /* 80px */
  --space-12:  6rem;     /* 96px */
  --space-16:  8rem;     /* 128px */

  /* ---- Layout --------------------------------------------- */
  --container-max: 1200px;
  --container-wide: 1360px;
  --container-prose: 68ch;
  --gutter: clamp(1rem, 4vw, 3rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);

  /* ---- Radii ---------------------------------------------- */
  --radius-xs:   3px;
  --radius-sm:   5px;
  --radius-md:   8px;    /* buttons, inputs */
  --radius-lg:   12px;   /* cards */
  --radius-xl:   18px;   /* feature panels */
  --radius-2xl:  26px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* ---- Border widths -------------------------------------- */
  --border-hair: 1px;
  --border-thin: 1.5px;
  --border-thick: 2px;
  --border-accent: 4px;   /* top/side accent stripes */

  /* ---- Shadows (cool, low, layered) ----------------------- */
  --shadow-xs:  0 1px 2px rgba(7, 39, 58, 0.06);
  --shadow-sm:  0 1px 3px rgba(7, 39, 58, 0.08), 0 1px 2px rgba(7, 39, 58, 0.06);
  --shadow-md:  0 4px 10px rgba(7, 39, 58, 0.08), 0 2px 4px rgba(7, 39, 58, 0.06);
  --shadow-lg:  0 12px 28px rgba(7, 39, 58, 0.12), 0 4px 10px rgba(7, 39, 58, 0.07);
  --shadow-xl:  0 24px 50px rgba(7, 39, 58, 0.18), 0 8px 18px rgba(7, 39, 58, 0.08);
  --shadow-brand: 0 8px 22px rgba(211, 32, 47, 0.30);   /* lifted red CTA */
  --shadow-inset: inset 0 1px 2px rgba(7, 39, 58, 0.10);

  /* ---- Z-index -------------------------------------------- */
  --z-base: 1;
  --z-sticky: 100;
  --z-header: 200;
  --z-overlay: 900;
  --z-modal: 1000;
  --z-toast: 1100;

  /* ---- Motion --------------------------------------------- */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:   120ms;
  --dur-base:   200ms;
  --dur-slow:   360ms;
}


/* ============================================================
   BASE — element defaults + shared helpers
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font: var(--font-body);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

p { margin: 0 0 1em; text-wrap: pretty; }

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--brand-secondary-hover); }

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

strong, b { font-weight: var(--weight-bold); }

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-xs);
}

::selection { background: var(--red-100); color: var(--red-800); }

/* ---- Shared helpers used across cards & kits -------------- */
.scs-kicker {
  font-family: var(--font-sans);
  font-weight: var(--weight-bold);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-kicker);
  text-transform: uppercase;
  color: var(--brand-primary);
}
.scs-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}


/* ============================================================
   COMPONENT — Button  (.scs-btn)
   ============================================================ */
.scs-btn {
  --_bg: var(--brand-primary);
  --_bg-hover: var(--brand-primary-hover);
  --_bg-active: var(--brand-primary-active);
  --_fg: var(--text-on-brand);
  --_border: transparent;
  --_shadow: var(--shadow-sm);
  --_shadow-hover: var(--shadow-md);
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-weight: var(--weight-bold);
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  border: var(--border-thin) solid var(--_border);
  border-radius: var(--radius-md);
  background: var(--_bg);
  color: var(--_fg);
  box-shadow: var(--_shadow);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.scs-btn:hover { background: var(--_bg-hover); box-shadow: var(--_shadow-hover); transform: translateY(-1px); }
.scs-btn:active { background: var(--_bg-active); transform: translateY(0); box-shadow: var(--_shadow); }
.scs-btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }

/* sizes */
.scs-btn--sm { font-size: var(--text-sm); padding: 0.5rem 0.875rem; min-height: 38px; }
.scs-btn--md { font-size: var(--text-base); padding: 0.6875rem 1.25rem; min-height: 46px; }
.scs-btn--lg { font-size: var(--text-lg); padding: 0.875rem 1.75rem; min-height: 56px; letter-spacing: 0.01em; }

.scs-btn--block { display: flex; width: 100%; }

/* variants */
.scs-btn--primary { --_shadow: var(--shadow-brand); --_shadow-hover: var(--shadow-brand); }
.scs-btn--secondary {
  --_bg: var(--brand-secondary); --_bg-hover: var(--brand-secondary-hover);
  --_bg-active: var(--blue-700); --_fg: var(--text-on-brand);
}
.scs-btn--outline {
  --_bg: transparent; --_bg-hover: var(--gray-50); --_bg-active: var(--gray-100);
  --_fg: var(--brand-secondary); --_border: var(--border-default);
  --_shadow: none; --_shadow-hover: var(--shadow-xs);
}
.scs-btn--outline:hover { --_border: var(--brand-secondary); }
.scs-btn--ghost {
  --_bg: transparent; --_bg-hover: var(--gray-100); --_bg-active: var(--gray-200);
  --_fg: var(--text-strong); --_shadow: none; --_shadow-hover: none;
}
.scs-btn--ghost:hover { transform: none; }
.scs-btn--inverse {
  --_bg: #ffffff; --_bg-hover: var(--gray-100); --_bg-active: var(--gray-200);
  --_fg: var(--brand-primary); --_shadow: var(--shadow-md);
}

.scs-btn[disabled], .scs-btn[aria-disabled="true"] {
  --_bg: var(--surface-sunken); --_fg: var(--text-faint); --_border: transparent;
  box-shadow: none; cursor: not-allowed; pointer-events: none; transform: none;
}


/* ============================================================
   COMPONENT — Badge  (.scs-badge)
   ============================================================ */
.scs-badge {
  display: inline-flex; align-items: center; gap: 0.375em;
  font-family: var(--font-sans);
  font-weight: var(--weight-bold);
  font-size: var(--text-2xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  line-height: 1;
  padding: 0.4em 0.7em;
  border-radius: var(--radius-pill);
  border: var(--border-hair) solid transparent;
  white-space: nowrap;
}
.scs-badge--md { font-size: var(--text-xs); padding: 0.45em 0.8em; }

/* tone = brand red */
.scs-badge--brand.is-solid   { background: var(--red-500); color: #fff; }
.scs-badge--brand.is-soft    { background: var(--red-50); color: var(--red-700); }
.scs-badge--brand.is-outline { background: transparent; color: var(--red-600); border-color: var(--red-200); }
/* tone = cool blue */
.scs-badge--cool.is-solid    { background: var(--blue-500); color: #fff; }
.scs-badge--cool.is-soft     { background: var(--blue-50); color: var(--blue-700); }
.scs-badge--cool.is-outline  { background: transparent; color: var(--blue-600); border-color: var(--blue-200); }
/* tone = success */
.scs-badge--success.is-solid { background: var(--green-500); color: #fff; }
.scs-badge--success.is-soft  { background: var(--green-50); color: var(--green-600); }
.scs-badge--success.is-outline { background: transparent; color: var(--green-600); border-color: #bfe3cc; }
/* tone = warning */
.scs-badge--warning.is-solid { background: var(--amber-500); color: #fff; }
.scs-badge--warning.is-soft  { background: var(--amber-50); color: var(--amber-600); }
.scs-badge--warning.is-outline { background: transparent; color: var(--amber-600); border-color: #f2d8aa; }
/* tone = neutral */
.scs-badge--neutral.is-solid { background: var(--gray-700); color: #fff; }
.scs-badge--neutral.is-soft  { background: var(--gray-100); color: var(--gray-700); }
.scs-badge--neutral.is-outline { background: transparent; color: var(--gray-600); border-color: var(--gray-300); }


/* ============================================================
   COMPONENT — Card  (.scs-card)
   Accent stripe via data-accent / data-accent-edge attributes.
   ============================================================ */
.scs-card {
  position: relative;
  background: var(--surface-card);
  border: var(--border-hair) solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.scs-card--pad-sm { padding: var(--space-4); }
.scs-card--pad-md { padding: var(--space-5); }
.scs-card--pad-lg { padding: var(--space-6); }
.scs-card--pad-none { padding: 0; }

.scs-card--interactive { cursor: pointer; }
.scs-card--interactive:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--border-default);
}

/* accent stripe */
.scs-card[data-accent]::before {
  content: ""; position: absolute; z-index: 1;
}
.scs-card[data-accent-edge="top"]::before { inset: 0 0 auto 0; height: var(--border-accent); }
.scs-card[data-accent-edge="left"]::before { inset: 0 auto 0 0; width: var(--border-accent); }
.scs-card[data-accent="red"]::before  { background: var(--red-500); }
.scs-card[data-accent="blue"]::before { background: var(--blue-500); }
.scs-card[data-accent="cyan"]::before { background: var(--cyan-400); }
.scs-card[data-accent="navy"]::before { background: var(--ink-900); }


/* ============================================================
   COMPONENT — Form fields  (Input / Select / Textarea)
   Shared .scs-field / .scs-control system.
   ============================================================ */
.scs-field { display: flex; flex-direction: column; gap: var(--space-2); font-family: var(--font-sans); }
.scs-field__label {
  font-weight: var(--weight-semibold); font-size: var(--text-sm);
  color: var(--text-strong); line-height: 1.2;
}
.scs-field__req { color: var(--brand-primary); margin-left: 2px; }
.scs-field__hint { font-size: var(--text-xs); color: var(--text-muted); }
.scs-field__error { font-size: var(--text-xs); color: var(--danger); font-weight: var(--weight-semibold); }

.scs-input-wrap { position: relative; display: flex; align-items: center; }
.scs-input-wrap__icon {
  position: absolute; left: 0.875rem; color: var(--text-faint); pointer-events: none; display: flex;
}
.scs-control {
  width: 100%; font-family: var(--font-sans); font-size: var(--text-base);
  color: var(--text-strong); background: var(--surface-card);
  border: var(--border-thin) solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 0.6875rem 0.875rem; min-height: 46px;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  appearance: none;
}
.scs-control::placeholder { color: var(--text-faint); }
.scs-control:hover { border-color: var(--border-strong); }
.scs-control:focus { outline: none; border-color: var(--brand-secondary); box-shadow: var(--focus-ring); }
.scs-control.has-icon { padding-left: 2.6rem; }
.scs-control[disabled] { background: var(--surface-sunken); color: var(--text-faint); cursor: not-allowed; }
.scs-field.is-invalid .scs-control { border-color: var(--danger); }
.scs-field.is-invalid .scs-control:focus { box-shadow: 0 0 0 3px rgba(184,25,38,0.30); }

textarea.scs-control { min-height: 120px; resize: vertical; line-height: var(--leading-normal); }

.scs-select-wrap { position: relative; display: flex; align-items: center; }
.scs-select-wrap__chevron { position: absolute; right: 0.875rem; color: var(--text-muted); pointer-events: none; display: flex; }
select.scs-control { padding-right: 2.5rem; cursor: pointer; }


/* ============================================================
   COMPONENT — PhoneCTA  (.scs-phone)
   The signature element — the loudest thing on every screen.
   ============================================================ */
.scs-phone {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-family: var(--font-sans); text-decoration: none;
  border-radius: var(--radius-lg); padding: var(--space-3) var(--space-5);
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-base) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.scs-phone__ring {
  display: grid; place-items: center; flex: none;
  width: 2.75rem; height: 2.75rem; border-radius: var(--radius-circle);
}
.scs-phone__text { display: flex; flex-direction: column; gap: 1px; line-height: 1; }
.scs-phone__label {
  font-size: var(--text-2xs); font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-kicker); text-transform: uppercase; white-space: nowrap;
}
.scs-phone__num {
  font-family: var(--font-display); font-weight: var(--weight-bold);
  font-size: var(--text-2xl); letter-spacing: -0.01em; white-space: nowrap;
}
.scs-phone--lg .scs-phone__num { font-size: var(--text-4xl); }
.scs-phone--lg .scs-phone__ring { width: 3.5rem; height: 3.5rem; }

/* solid red */
.scs-phone--solid { background: var(--brand-primary); box-shadow: var(--shadow-brand); }
.scs-phone--solid:hover { background: var(--brand-primary-hover); transform: translateY(-2px); }
.scs-phone--solid:active { background: var(--brand-primary-active); transform: translateY(0); }
.scs-phone--solid .scs-phone__num { color: #fff; }
.scs-phone--solid .scs-phone__label { color: rgba(255,255,255,0.82); }
.scs-phone--solid .scs-phone__ring { background: rgba(255,255,255,0.16); color: #fff; }

/* light: tinted card for light backgrounds */
.scs-phone--light { background: var(--surface-card); border: var(--border-hair) solid var(--border-subtle); box-shadow: var(--shadow-md); }
.scs-phone--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.scs-phone--light .scs-phone__num { color: var(--text-strong); }
.scs-phone--light .scs-phone__label { color: var(--brand-primary); }
.scs-phone--light .scs-phone__ring { background: var(--red-50); color: var(--brand-primary); }

/* inverse: for dark photo / navy backgrounds */
.scs-phone--inverse { background: rgba(255,255,255,0.10); border: var(--border-hair) solid rgba(255,255,255,0.22); }
.scs-phone--inverse:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.scs-phone--inverse .scs-phone__num { color: #fff; }
.scs-phone--inverse .scs-phone__label { color: var(--cyan-300); }
.scs-phone--inverse .scs-phone__ring { background: var(--brand-primary); color: #fff; }


/* ============================================================
   COMPONENT — SectionHeading  (.scs-secthead)
   Title supports an <em> highlight in brand color.
   ============================================================ */
.scs-secthead { display: block; max-width: 56ch; }
.scs-secthead--center { text-align: center; margin-inline: auto; }
.scs-secthead__kicker {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-sans); font-weight: var(--weight-bold);
  font-size: var(--text-xs); letter-spacing: var(--tracking-kicker);
  text-transform: uppercase; color: var(--brand-primary); margin-bottom: var(--space-3);
}
.scs-secthead__kicker::before {
  content: ""; width: 1.75rem; height: var(--border-thick);
  background: var(--brand-primary); border-radius: var(--radius-pill);
}
.scs-secthead--center .scs-secthead__kicker::before { display: none; }
.scs-secthead__title {
  margin: 0; font-family: var(--font-display); font-weight: var(--weight-bold);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  line-height: var(--leading-tight); letter-spacing: var(--tracking-tight);
  color: var(--text-strong); text-wrap: pretty;
}
.scs-secthead__title em { font-style: normal; color: var(--brand-primary); }
.scs-secthead__intro {
  margin: var(--space-4) 0 0; font-size: var(--text-lg); line-height: var(--leading-normal); color: var(--text-body);
}
.scs-secthead--on-dark .scs-secthead__title { color: #fff; }
.scs-secthead--on-dark .scs-secthead__intro { color: rgba(255,255,255,0.82); }
.scs-secthead--on-dark .scs-secthead__kicker { color: var(--cyan-300); }
.scs-secthead--on-dark .scs-secthead__kicker::before { background: var(--cyan-400); }


/* ============================================================
   COMPONENT — ServiceCard  (.scs-svc, wraps .scs-card)
   ============================================================ */
.scs-svc { display: flex; flex-direction: column; gap: var(--space-3); height: 100%; }
.scs-svc__media {
  width: 100%; height: 132px; border-radius: var(--radius-md);
  background: var(--surface-sunken);
  object-fit: contain; object-position: center; padding: var(--space-3);
}
.scs-svc__glyph {
  display: grid; place-items: center; width: 3.25rem; height: 3.25rem;
  border-radius: var(--radius-md);
}
.scs-svc__glyph--red  { background: var(--red-50); color: var(--brand-primary); }
.scs-svc__glyph--blue { background: var(--blue-50); color: var(--brand-secondary); }
.scs-svc__glyph--cyan { background: #e4f5fd; color: var(--cyan-500); }
.scs-svc__title {
  margin: 0; font-family: var(--font-display); font-weight: var(--weight-bold);
  font-size: var(--text-2xl); line-height: var(--leading-snug); color: var(--text-strong);
}
.scs-svc__desc { margin: 0; font-size: var(--text-sm); line-height: var(--leading-normal); color: var(--text-body); flex: 1; }
.scs-svc__link {
  display: inline-flex; align-items: center; gap: var(--space-1);
  font-weight: var(--weight-bold); font-size: var(--text-sm);
  color: var(--brand-secondary); margin-top: var(--space-1); text-decoration: none;
}
.scs-svc__link svg { transition: transform var(--dur-fast) var(--ease-out); }
.scs-card--interactive:hover .scs-svc__link svg { transform: translateX(4px); }


/* ============================================================
   COMPONENT — StatBlock  (.scs-stat)
   ============================================================ */
.scs-stat { display: flex; flex-direction: column; gap: var(--space-1); }
.scs-stat--center { align-items: center; text-align: center; }
.scs-stat__icon { color: var(--brand-primary); margin-bottom: var(--space-1); }
.scs-stat__value {
  font-family: var(--font-display); font-weight: var(--weight-extra);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  line-height: 0.95; letter-spacing: -0.02em; color: var(--text-strong);
}
.scs-stat__value sup { font-size: 0.5em; vertical-align: super; color: var(--brand-primary); }
.scs-stat__label {
  font-size: var(--text-sm); font-weight: var(--weight-semibold);
  color: var(--text-muted); line-height: var(--leading-snug);
}
.scs-stat--blue .scs-stat__value { color: var(--brand-secondary); }
.scs-stat--blue .scs-stat__value sup { color: var(--brand-secondary); }
.scs-stat--on-dark .scs-stat__value { color: #fff; }
.scs-stat--on-dark .scs-stat__label { color: rgba(255,255,255,0.72); }
.scs-stat--on-dark .scs-stat__icon { color: var(--cyan-400); }


/* ============================================================
   COMPONENT — ReviewCard  (.scs-review, wraps .scs-card)
   ============================================================ */
.scs-review { display: flex; flex-direction: column; gap: var(--space-3); height: 100%; }
.scs-review__stars { display: inline-flex; gap: 2px; color: var(--amber-500); }
.scs-review__stars svg { fill: currentColor; }
.scs-review__stars .is-empty { color: var(--gray-300); fill: var(--gray-300); }
.scs-review__quote {
  margin: 0; font-size: var(--text-lg); line-height: var(--leading-normal);
  color: var(--text-strong); font-weight: var(--weight-medium); flex: 1; text-wrap: pretty;
}
.scs-review__foot { display: flex; align-items: center; gap: var(--space-3); margin-top: auto; }
.scs-review__avatar {
  display: grid; place-items: center; flex: none; width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius-circle); background: var(--blue-500); color: #fff;
  font-family: var(--font-display); font-weight: var(--weight-bold); font-size: var(--text-lg);
}
.scs-review__who { display: flex; flex-direction: column; gap: 1px; line-height: 1.2; }
.scs-review__name { font-weight: var(--weight-bold); color: var(--text-strong); font-size: var(--text-sm); }
.scs-review__meta { font-size: var(--text-xs); color: var(--text-muted); }


/* ============================================================
   ICON HELPER  (.ic)
   Static SVG-sprite icons reference symbols via <use>. These
   defaults mirror the design-system Icon primitive (Lucide stroke
   icons): no fill, 2px round stroke, painted by currentColor so a
   parent's `color` tints them. Per-icon size is set inline; thicker
   strokes (checks) override stroke-width inline.
   ============================================================ */
.ic { display: block; flex: none; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }


/* ============================================================
   PAGE — Chrome (sticky header + footer)
   Lifted from the handoff prototype (ui_kits/website/Chrome.jsx).
   Shared across all 5 pages.
   ============================================================ */
.kit-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,0.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.kit-topbar {
  background: var(--ink-900); color: #fff;
  font-size: var(--text-xs); font-weight: 600;
}
.kit-topbar .scs-container { display: flex; gap: var(--space-5); align-items: center; justify-content: center; padding-block: 7px; flex-wrap: wrap; }
.kit-topbar .tb { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.82); }
.kit-topbar .tb svg { color: var(--cyan-400); }
.kit-nav { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); padding-block: var(--space-3); }
.kit-logo { display: flex; align-items: center; cursor: pointer; flex: none; }
.kit-logo img { height: 42px; width: auto; }
.kit-links { display: flex; align-items: center; gap: var(--space-2); }
.kit-link {
  appearance: none; border: 0; background: none; cursor: pointer;
  font-family: var(--font-sans); font-weight: 600; font-size: var(--text-base);
  color: var(--text-strong); padding: 8px 11px; border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.kit-link:hover { background: var(--gray-100); color: var(--brand-primary); }
.kit-link.is-active { color: var(--brand-primary); }
.kit-actions { display: flex; align-items: center; gap: var(--space-2); }
.kit-actions .scs-phone { padding: 5px 10px; gap: var(--space-2); }
.kit-actions .scs-phone__num { font-size: var(--text-xl); }
.kit-actions .scs-phone__ring { width: 2.25rem; height: 2.25rem; }
.kit-burger { display: none; appearance: none; border: 1px solid var(--border-default); background: #fff; border-radius: var(--radius-md); padding: 8px; cursor: pointer; color: var(--text-strong); }
.kit-mobile { display: none; flex-direction: column; gap: 4px; padding: var(--space-4) 0; border-top: 1px solid var(--border-subtle); }
.kit-mobile .kit-link { text-align: left; font-size: var(--text-lg); }

@media (max-width: 1080px) { .kit-actions .scs-btn { display: none; } }
@media (max-width: 900px) {
  .kit-links { display: none; }
  .kit-burger { display: inline-flex; }
  .kit-mobile.is-open { display: flex; }
}
/* Narrow phones: collapse the sticky-header call button to an icon-only
   tap target (the hero below carries the full number) and trim the logo,
   so logo + call + burger fit without crowding the header row. */
@media (max-width: 560px) {
  .kit-actions .scs-phone__text { display: none; }
  .kit-actions .scs-phone { padding: 7px; }
  .kit-logo img { height: 36px; }
}

/* Footer */
.kit-footer { background: var(--ink-900); color: rgba(255,255,255,.72); padding-block: var(--space-9) var(--space-6); }
.kit-footer a { color: rgba(255,255,255,.72); }
.kit-footer a:hover { color: #fff; }
.kit-fgrid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-6); }
.kit-footer h4 { color: #fff; font-family: var(--font-sans); font-weight: 700; font-size: var(--text-sm); letter-spacing: .08em; text-transform: uppercase; margin: 0 0 var(--space-3); }
.kit-footer .flogo { background:#fff; display:inline-block; padding:10px 12px; border-radius: var(--radius-md); margin-bottom: var(--space-4); }
.kit-footer .flogo img { height: 38px; }
.kit-footer p, .kit-footer li { font-size: var(--text-sm); line-height: var(--leading-normal); }
.kit-flist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.kit-flist li { display: flex; gap: 8px; align-items: flex-start; }
.kit-flist svg { color: var(--cyan-400); flex: none; margin-top: 2px; }
.kit-fbtns { display:flex; flex-direction:column; gap: var(--space-3); align-items:flex-start; }
.kit-fbottom { margin-top: var(--space-7); padding-top: var(--space-5); border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; font-size: var(--text-xs); }
.kit-social { display:flex; gap: 10px; }
.kit-social a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-circle); }
.kit-social a:hover { background: var(--brand-primary); border-color: var(--brand-primary); }
@media (max-width: 760px) { .kit-fgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .kit-fgrid { grid-template-columns: 1fr; } }


/* ============================================================
   PAGE — Home
   Lifted from the handoff prototype (ui_kits/website/Home.jsx).
   ============================================================ */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(4,24,36,.94) 0%, rgba(4,24,36,.80) 42%, rgba(7,39,58,.45) 100%); }
.hero__inner { position: relative; padding-block: clamp(3rem, 7vw, 6rem); display: grid; gap: var(--space-6); max-width: 760px; }
.hero h1 { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: clamp(2.6rem, 6vw, 4.75rem); line-height: 1.02; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--cyan-400); }
.hero p.sub { font-size: var(--text-xl); line-height: 1.5; color: rgba(255,255,255,.88); margin: 0; max-width: 56ch; }
.hero__cta { display: flex; gap: var(--space-4); align-items: center; flex-wrap: wrap; }
.hero__badges { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-2); }
.hero__badges .hb { display: inline-flex; align-items: center; gap: 8px; font-size: var(--text-sm); font-weight: 600; color: rgba(255,255,255,.9); }
.hero__badges svg { color: var(--cyan-400); }

.section { padding-block: var(--section-y); }
.section--sunken { background: var(--surface-page); }

.stats-strip { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: var(--space-6) var(--space-7); display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); margin-top: calc(var(--section-y) * -0.5); position: relative; z-index: 2; }
.stats-strip > div + div { border-left: 1px solid var(--border-subtle); padding-left: var(--space-5); }
@media (max-width: 760px) { .stats-strip { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
  .stats-strip > div + div { border-left: 0; padding-left: 0; } }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-7); }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

.why { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-9); align-items: center; }
@media (max-width: 860px) { .why { grid-template-columns: 1fr; gap: var(--space-6); } }
.why__photo { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 4/3; }
.why__photo img { width: 100%; height: 100%; object-fit: cover; }
.why__list { list-style: none; margin: var(--space-5) 0 0; padding: 0; display: grid; gap: var(--space-4); }
.why__list li { display: grid; grid-template-columns: auto 1fr; gap: var(--space-3); }
.why__check { width: 30px; height: 30px; border-radius: var(--radius-circle); background: var(--green-50); color: var(--green-500); display: grid; place-items: center; flex: none; }
.why__list b { display: block; color: var(--text-strong); font-size: var(--text-base); }
.why__list span { font-size: var(--text-sm); color: var(--text-body); }

.plan { background: var(--ink-900); color: #fff; border-radius: var(--radius-2xl); overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr; }
@media (max-width: 820px) { .plan { grid-template-columns: 1fr; } }
.plan__body { padding: clamp(2rem, 5vw, 3.5rem); }
.plan__perks { list-style: none; margin: var(--space-5) 0 var(--space-6); padding: 0; display: grid; gap: var(--space-3); }
.plan__perks li { display: flex; gap: var(--space-3); align-items: center; font-size: var(--text-lg); }
.plan__perks svg { color: var(--cyan-400); flex: none; }
.plan__media { position: relative; min-height: 280px; }
.plan__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-7); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } .reviews-grid > *:nth-child(3) { display: none; } }

.cta-band { background: var(--brand-primary); color: #fff; border-radius: var(--radius-2xl); padding: clamp(2.5rem, 6vw, 4rem); text-align: center; display: grid; gap: var(--space-5); justify-items: center; box-shadow: var(--shadow-xl); }
.cta-band h2 { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); margin: 0; line-height: 1.05; }
.cta-band p { color: rgba(255,255,255,.9); font-size: var(--text-xl); margin: 0; max-width: 50ch; }


/* ============================================================
   PAGE — shared: dark page header  (.pagehead)
   Used by Services (and reusable on other interior pages).
   Lifted from ui_kits/website/Services.jsx.
   ============================================================ */
.pagehead { background: var(--ink-900); color: #fff; padding-block: clamp(2.5rem, 6vw, 4.5rem); position: relative; overflow: hidden; }
.pagehead::after { content:""; position:absolute; right:-80px; top:-80px; width:320px; height:320px; border-radius:50%; background: radial-gradient(circle, rgba(0,102,153,.5), transparent 70%); }
.pagehead__inner { position: relative; max-width: 720px; display: grid; gap: var(--space-4); }
.pagehead h1 { font-family: var(--font-display); font-weight: 800; color:#fff; font-size: clamp(2.4rem,5.5vw,4rem); line-height:1.03; margin:0; letter-spacing:-.02em; }
.pagehead p { font-size: var(--text-xl); color: rgba(255,255,255,.85); margin:0; line-height:1.5; }
.pagehead .crumbs { font-size: var(--text-sm); color: var(--cyan-300); font-weight:600; }


/* ============================================================
   PAGE — Services  (ui_kits/website/Services.jsx)
   ============================================================ */
.svc-detail { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
@media (max-width: 720px){ .svc-detail { grid-template-columns: 1fr; } }
.svc-d { display: grid; grid-template-columns: auto 1fr; gap: var(--space-4); }
.svc-d__glyph { width: 56px; height: 56px; border-radius: var(--radius-md); display:grid; place-items:center; flex:none; }
.svc-d__glyph.red { background: var(--red-50); color: var(--brand-primary); }
.svc-d__glyph.blue { background: var(--blue-50); color: var(--brand-secondary); }
.svc-d__glyph.cyan { background:#e4f5fd; color: var(--cyan-500); }
.svc-d h3 { font-family: var(--font-display); font-weight:700; font-size: var(--text-2xl); margin:0 0 6px; color: var(--text-strong); }
.svc-d p { font-size: var(--text-sm); color: var(--text-body); margin: 0 0 10px; }
.svc-d ul { list-style:none; margin:0; padding:0; display:grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.svc-d li { display:flex; align-items:flex-start; gap:7px; font-size: var(--text-sm); color: var(--text-strong); font-weight:600; line-height:1.3; }
.svc-d li svg { color: var(--green-500); flex:none; margin-top:3px; }
.cta-row { margin-top: var(--space-8); display:flex; gap: var(--space-4); align-items:center; justify-content:center; flex-wrap:wrap; background: var(--surface-page); border:1px solid var(--border-subtle); border-radius: var(--radius-xl); padding: var(--space-6); }
.cta-row h3 { font-family: var(--font-display); font-weight:700; font-size: var(--text-2xl); margin:0; color: var(--text-strong); }


/* ============================================================
   PAGE — About  (ui_kits/website/About.jsx)
   ============================================================ */
.about-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-8); align-items: center; }
@media (max-width: 860px){ .about-hero { grid-template-columns: 1fr; } }
.about-hero__media { border-radius: var(--radius-xl); overflow:hidden; box-shadow: var(--shadow-xl); aspect-ratio: 5/4; }
.about-hero__media img { width:100%; height:100%; object-fit: cover; }
.prose p { font-size: var(--text-lg); line-height: var(--leading-relaxed); color: var(--text-body); }
.scs-key { display:flex; gap: var(--space-4); flex-wrap:wrap; margin-top: var(--space-5); }
.scs-key .k { background: var(--surface-page); border:1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: var(--space-4) var(--space-5); text-align:center; }
.scs-key .k b { display:block; font-family: var(--font-display); font-weight:800; font-size: var(--text-3xl); color: var(--brand-primary); line-height:1; }
.scs-key .k span { font-size: var(--text-sm); color: var(--text-muted); }
.values { display:grid; grid-template-columns: repeat(3,1fr); gap: var(--space-5); margin-top: var(--space-7); }
@media (max-width: 760px){ .values { grid-template-columns:1fr; } }
.value h3 { font-family: var(--font-display); font-weight:700; font-size: var(--text-2xl); margin: 12px 0 6px; color: var(--text-strong); }
.value p { font-size: var(--text-sm); color: var(--text-body); margin:0; }
.value__glyph { width: 52px; height:52px; border-radius: var(--radius-md); background: var(--red-50); color: var(--brand-primary); display:grid; place-items:center; }
.memorial { background: var(--blue-50); border-left: 4px solid var(--brand-secondary); border-radius: var(--radius-md); padding: var(--space-5); font-size: var(--text-base); color: var(--blue-800); line-height: var(--leading-normal); margin-top: var(--space-5); }


/* ============================================================
   PAGE — Reviews  (ui_kits/website/Reviews.jsx)
   ============================================================ */
.rv-head { display:grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-7); align-items:center; }
@media (max-width: 820px){ .rv-head { grid-template-columns:1fr; } }
.rv-award { display:flex; align-items:center; gap: var(--space-5); background:#fff; border:1px solid var(--border-subtle); border-radius: var(--radius-xl); padding: var(--space-5) var(--space-6); box-shadow: var(--shadow-md); text-decoration:none; color:inherit; transition: box-shadow .15s ease, transform .15s ease; }
.rv-award:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.rv-award img { height: 116px; }
.rv-award__logo svg { display:block; height:52px; width:auto; }
.rv-award__brand { font-size: var(--text-sm); font-weight:700; color: var(--text-strong); margin-bottom:4px; }
.rv-award .big { font-family: var(--font-display); font-weight:800; font-size: var(--text-4xl); color: var(--text-strong); line-height:1; }
.rv-award .sub { font-size: var(--text-sm); color: var(--text-muted); }
.rv-stars { color: var(--amber-500); display:flex; gap:2px; margin-bottom:6px; }
.rv-stars svg { fill: currentColor; }
.rv-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: var(--space-5); margin-top: var(--space-7); }
@media (max-width: 720px){ .rv-grid { grid-template-columns:1fr; } }
.rv-cta { text-align:center; display:grid; gap: var(--space-5); justify-items:center; margin-top: var(--space-8); }


/* ============================================================
   PAGE — Contact  (ui_kits/website/Contact.jsx)
   ============================================================ */
.ct-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap: var(--space-8); align-items:start; }
@media (max-width: 860px){ .ct-grid { grid-template-columns:1fr; } }
.ct-form { display:grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.ct-form .span2 { grid-column: 1 / -1; }
/* explicit display:grid on these would otherwise override the [hidden]
   attribute's display:none, so restore hidden behavior for the toggle. */
.ct-form[hidden], .ct-success[hidden] { display: none; }
.ct-info { display:grid; gap: var(--space-4); }
.ct-row { display:flex; gap: var(--space-3); align-items:flex-start; }
.ct-row__ic { width: 42px; height:42px; border-radius: var(--radius-md); background: var(--red-50); color: var(--brand-primary); display:grid; place-items:center; flex:none; }
.ct-row b { display:block; color: var(--text-strong); font-size: var(--text-base); }
.ct-row span, .ct-row a { font-size: var(--text-sm); color: var(--text-body); }
.ct-map { margin-top: var(--space-2); height: 200px; border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--border-subtle); position:relative; background:
  linear-gradient(0deg, rgba(0,102,153,.06), rgba(0,102,153,.06)),
  repeating-linear-gradient(0deg, var(--gray-100) 0 24px, var(--gray-50) 24px 48px),
  repeating-linear-gradient(90deg, var(--gray-100) 0 24px, var(--gray-50) 24px 48px); }
.ct-map__pin { position:absolute; left:50%; top:50%; transform: translate(-50%,-100%); color: var(--brand-primary); }
.ct-map__lbl { position:absolute; left:12px; bottom:10px; font-size: var(--text-xs); font-weight:700; color: var(--text-muted); background: rgba(255,255,255,.85); padding:4px 8px; border-radius: var(--radius-sm); }
.ct-success { display:grid; gap: var(--space-4); justify-items:center; text-align:center; padding: var(--space-7) var(--space-5); }
.ct-success__ic { width:64px; height:64px; border-radius:50%; background: var(--green-50); color: var(--green-500); display:grid; place-items:center; }
.ct-success h3 { font-family: var(--font-display); font-weight:800; font-size: var(--text-3xl); margin:0; color: var(--text-strong); }
.ct-success p { color: var(--text-body); margin:0; max-width: 40ch; }
