/* ============================================================
   Society Hill Plumbing — Production stylesheet
   ------------------------------------------------------------
   Sections 1–4 are the design-system tokens + base, carried
   nearly verbatim from the design handoff (tokens/*.css).
   Section 5+ translates the reference JSX components' inline
   styles into classes, value-for-value.
   Fonts are loaded via <link> tags in each page head.
   ============================================================ */

/* ============ 1. Color (tokens/colors.css) ============ */
:root {
  /* ---- Brand: Red (sampled from wordmark #C72A38) ---- */
  --red-50:  #FBECEC;
  --red-100: #F4D2D3;
  --red-200: #E6A1A4;
  --red-300: #D66A70;
  --red-400: #CC424C;
  --red-500: #C4232E;   /* primary brand red */
  --red-600: #A71C26;   /* hover */
  --red-700: #85161E;   /* press / deep */
  --red-800: #631116;

  /* ---- Brand: Sun Yellow (sampled from sun mark #FEDE18) ---- */
  --sun-50:   #FEF8DC;
  --sun-100:  #FDEFAE;
  --sun-200:  #FBE36B;
  --sun-300:  #F9D636;   /* sun body */
  --sun-400:  #F2C518;   /* primary golden */
  --sun-500:  #E0A516;   /* amber — spikes, shadows */
  --sun-600:  #B97F10;   /* deep amber, text-on-light */

  /* ---- Warm neutral stone ramp ---- */
  --stone-50:  #FAF7F1;  /* paper */
  --stone-100: #F2ECE2;
  --stone-150: #EBE3D6;
  --stone-200: #E1D7C7;
  --stone-300: #CFC2AD;
  --stone-400: #AEA08A;
  --stone-500: #877A66;
  --stone-600: #655B4B;
  --stone-700: #4A4236;
  --stone-800: #2F2A22;
  --stone-900: #25201C;  /* warm ink */
  --white: #FFFFFF;

  /* ---- Status ---- */
  --success: #3E7A52;
  --success-bg: #E7F0E8;
  --warning: #B97F10;
  --warning-bg: #FBEFCB;
  --danger: #A71C26;
  --danger-bg: #FBECEC;
  --info: #3A6B86;
  --info-bg: #E6F0F4;

  /* ============ Semantic aliases ============ */
  --surface-page:  var(--stone-50);
  --surface-card:  var(--white);
  --surface-sunk:  var(--stone-100);
  --surface-ink:   var(--stone-900);
  --surface-band:  var(--stone-900);

  --text-strong:   var(--stone-900);
  --text-body:     var(--stone-800);
  --text-muted:    var(--stone-600);
  --text-faint:    var(--stone-500);
  --text-on-dark:  var(--stone-50);
  --text-on-red:   var(--white);

  --border:        var(--stone-200);
  --border-strong: var(--stone-300);
  --border-ink:    var(--stone-900);

  --accent:        var(--red-500);
  --accent-hover:  var(--red-600);
  --accent-press:  var(--red-700);
  --accent-tint:   var(--red-50);

  --highlight:     var(--sun-400);
  --highlight-soft:var(--sun-100);
  --highlight-deep:var(--sun-500);

  --focus-ring:    var(--sun-400);
  --link:          var(--red-600);
  --link-hover:    var(--red-700);
}

/* ============ 2. Typography (tokens/typography.css) ============ */
:root {
  --font-display: "Zilla Slab", "Roboto Slab", Georgia, serif;
  --font-body:    "Lora", Georgia, "Times New Roman", serif;
  --font-ui:      "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold:600;
  --weight-bold:    700;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.375rem;
  --text-xl:   1.75rem;
  --text-2xl:  2.25rem;
  --text-3xl:  2.875rem;
  --text-4xl:  3.75rem;
  --text-5xl:  4.75rem;

  --leading-tight:   1.08;
  --leading-snug:    1.22;
  --leading-normal:  1.5;
  --leading-relaxed: 1.7;

  --tracking-tight:  -0.01em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-eyebrow:0.18em;

  --eyebrow-font: var(--font-ui);
  --eyebrow-spacing: var(--tracking-eyebrow);
  --heading-font: var(--font-display);
  --body-font: var(--font-body);
}

/* ============ 3. Spacing, Radius, Shadow, Motion (tokens/spacing.css) ============ */
:root {
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --container-narrow: 720px;
  --container:        1140px;
  --container-wide:   1320px;

  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 16px;
  --radius-pill: 999px;

  --border-width: 1px;
  --border-width-thick: 2px;
  --hairline: 1px solid var(--border);

  --shadow-xs: 0 1px 2px rgba(37, 32, 28, 0.06);
  --shadow-sm: 0 1px 2px rgba(37, 32, 28, 0.05), 0 2px 6px rgba(37, 32, 28, 0.06);
  --shadow-md: 0 2px 6px rgba(37, 32, 28, 0.06), 0 8px 20px rgba(37, 32, 28, 0.09);
  --shadow-lg: 0 4px 10px rgba(37, 32, 28, 0.07), 0 18px 40px rgba(37, 32, 28, 0.12);
  --shadow-card: 0 0 0 1px var(--border), 0 2px 4px rgba(37, 32, 28, 0.04), 0 10px 26px rgba(37, 32, 28, 0.07);
  --shadow-focus: 0 0 0 3px rgba(242, 197, 24, 0.55);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 120ms;
  --dur: 200ms;
  --dur-slow: 360ms;
}

/* ============ 4. Base elements & brand utilities (tokens/base.css) ============ */
:root { color-scheme: light; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  font-weight: var(--weight-regular);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  margin: 0 0 var(--space-4);
  text-wrap: balance;
}
h1 { font-size: var(--text-4xl); line-height: var(--leading-tight); font-weight: 700; }
h2 { font-size: var(--text-3xl); font-weight: 700; }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); font-family: var(--font-ui); text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--text-muted); }

p { margin: 0 0 var(--space-5); text-wrap: pretty; }
a { color: var(--link); text-decoration: underline; text-underline-offset: 2px; transition: color var(--dur) var(--ease); }
a:hover { color: var(--link-hover); }
strong, b { font-weight: var(--weight-bold); color: var(--text-strong); }
em, i { font-style: italic; }
small { font-size: var(--text-sm); }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--space-6) 0; }

::selection { background: var(--sun-200); color: var(--stone-900); }
:focus-visible { outline: none; box-shadow: var(--shadow-focus); border-radius: var(--radius-sm); }

/* ---- Layout helpers ---- */
.sh-container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-5); box-sizing: border-box; }
.sh-container--narrow { max-width: var(--container-narrow); }
.sh-container--wide { max-width: var(--container-wide); }

/* ---- Sun-spike motif ---- */
.sh-rays {
  height: 13px;
  width: 100%;
  background-image:
    linear-gradient(var(--sun-400), var(--sun-400)),
    conic-gradient(from 0deg at 50% 100%, var(--sun-400) 0 46deg, transparent 46deg 314deg, var(--sun-400) 314deg 360deg);
  background-size: 100% 2px, 24px 11px;
  background-position: top center, bottom center;
  background-repeat: repeat-x, repeat-x;
}
.sh-rays--ink {
  background-image:
    linear-gradient(var(--stone-900), var(--stone-900)),
    conic-gradient(from 0deg at 50% 100%, var(--stone-900) 0 46deg, transparent 46deg 314deg, var(--stone-900) 314deg 360deg);
}
.sh-rays--red {
  background-image:
    linear-gradient(var(--red-500), var(--red-500)),
    conic-gradient(from 0deg at 50% 100%, var(--red-500) 0 46deg, transparent 46deg 314deg, var(--red-500) 314deg 360deg);
}

/* Rays pinned to a section seam */
.rays-top    { position: absolute; top: 0; left: 0; right: 0; }
.rays-bottom { position: absolute; left: 0; right: 0; bottom: -11px; z-index: 3; }

/* ---- Icons (inline SVG sprite; replaces Font Awesome webfont) ---- */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  flex: none;
}

/* Anchor targets sit below the sticky header */
#schedule, #get, #test { scroll-margin-top: 140px; }

/* ============================================================
   5. Buttons (components/core/Button.jsx)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--lg { padding: 17px 34px; font-size: 18px; }
.btn--full { display: flex; width: 100%; box-sizing: border-box; }

.btn--primary { background: var(--accent); color: var(--text-on-red); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-hover); color: var(--text-on-red); }
.btn--secondary { background: var(--surface-card); color: var(--text-strong); border-color: var(--border-strong); }
.btn--secondary:hover { background: var(--surface-sunk); border-color: var(--border-ink); color: var(--text-strong); }
.btn--ghost { background: transparent; color: var(--text-strong); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--surface-sunk); color: var(--text-strong); }
.btn--spark { background: var(--highlight); color: var(--stone-900); border-color: var(--highlight); }
.btn--spark:hover { background: var(--sun-500); color: var(--stone-900); }
.btn--ink { background: var(--stone-900); color: var(--stone-50); border-color: var(--stone-900); }
.btn--ink:hover { background: var(--stone-800); color: var(--stone-50); }

.btn .icon--arrow { font-size: 0.85em; width: 0.85em; height: 0.85em; }

/* ============================================================
   6. Eyebrow (components/brand/Eyebrow.jsx)
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sun-600);
  white-space: nowrap;
}
.eyebrow--ondark { color: var(--sun-400); }
.eyebrow--red { color: var(--accent); }
.eyebrow--muted { color: var(--text-muted); }
.eyebrow__tick { width: 16px; height: 16px; flex-shrink: 0; display: inline-block; }

/* ============================================================
   7. Header (SiteHeader.jsx)
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 50; }

.util-strip { background: var(--stone-900); color: var(--stone-50); font-family: var(--font-ui); font-size: 13.5px; }
.util-strip__inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.sh-util-tagline { letter-spacing: .03em; font-style: italic; font-family: var(--font-body); }
.util-phone { color: var(--sun-400); text-decoration: none; font-weight: 700; }
.util-phone:hover { color: var(--sun-400); }
.util-phone .icon { margin-right: 8px; }

.main-bar { background: var(--surface-card); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-xs); }
.main-bar__inner { display: flex; align-items: center; justify-content: space-between; height: 92px; }
.main-bar__logo { display: inline-flex; }
.main-bar__logo img { height: 60px; width: auto; }

.sh-desktop-nav { display: flex; align-items: center; gap: 18px; }
.sh-desktop-nav a.nav-link { font-family: var(--font-ui); font-weight: 600; font-size: 14px; color: var(--text-strong); text-decoration: none; white-space: nowrap; }
.sh-desktop-nav a.nav-link:hover { color: var(--accent); }

.sh-mobile-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--text-strong); cursor: pointer; align-items: center; }
.mobile-menu { display: none; border-top: 1px solid var(--border); padding: 12px 0; background: var(--surface-card); }
.mobile-menu.open { display: block; }
.mobile-menu__inner { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__inner a.nav-link { padding: 10px 0; font-family: var(--font-ui); font-weight: 600; color: var(--text-strong); text-decoration: none; }
.mobile-menu__cta { padding-top: 8px; }

/* ============================================================
   8. Heroes (Hero.jsx + sections.jsx PageHero)
   ============================================================ */
.hero { position: relative; background: var(--stone-900); color: var(--stone-50); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-image: var(--hero-img); background-size: cover; background-position: var(--hero-pos, center 30%); }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(31,27,23,0.94) 0%, rgba(31,27,23,0.82) 42%, rgba(31,27,23,0.30) 100%); }
.hero__inner { position: relative; z-index: 1; padding: 92px 24px 104px; }
.hero__inner h1 { color: var(--stone-50); font-size: clamp(38px, 5.6vw, 70px); line-height: 1.04; margin: 20px 0 18px; max-width: 20ch; }
.hero__sub { font-family: var(--font-body); font-size: 21px; line-height: 1.55; color: var(--stone-100); max-width: 40ch; margin: 0 0 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.page-hero { position: relative; background: var(--stone-900); color: var(--stone-50); overflow: visible; min-height: min(82vh, 600px); display: flex; align-items: center; }
.page-hero__media { position: absolute; inset: 0; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; background-image: var(--hero-img); background-size: cover; background-position: var(--hero-pos, center 35%); }
.page-hero__scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(31,27,23,0.94) 0%, rgba(31,27,23,0.82) 44%, rgba(31,27,23,0.32) 100%); }
.page-hero__inner { position: relative; z-index: 1; padding: 80px 24px 92px; }
.page-hero__inner h1 { color: var(--stone-50); font-size: clamp(36px, 5.2vw, 64px); line-height: 1.04; margin: 18px 0 18px; max-width: 18ch; }
.page-hero__sub { font-family: var(--font-body); font-size: 21px; line-height: 1.5; color: var(--stone-100); max-width: 40ch; margin: 0 0 32px; }
.page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 700px) {
  .hero__bg, .page-hero__bg, .stripe__bg { background-image: var(--hero-img-sm, var(--hero-img)); }
}

/* ============================================================
   9. Homepage services (Services.jsx)
   ============================================================ */
.services { background: var(--surface-page); padding: 80px 0 76px; }
.sh-feature-row { display: grid; grid-template-columns: 2fr 1fr; gap: 22px; margin-bottom: 22px; align-items: start; }

.feature-card { position: relative; overflow: hidden; color: var(--stone-50); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
.feature-card--red { background: var(--accent); padding: 44px 40px; }
.feature-card--ink { background: var(--stone-900); padding: 44px 32px; }
.feature-card__kicker { font-family: var(--font-ui); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .1em; color: var(--sun-400); margin-bottom: 12px; }
.feature-card__kicker em { font-style: italic; text-transform: none; }
.feature-card--red h3 { font-family: var(--font-display); font-weight: 700; font-size: 36px; line-height: 1.02; margin: 0 0 16px; color: var(--stone-50); }
.feature-card--ink h3 { font-family: var(--font-display); font-weight: 700; font-size: 30px; line-height: 1.04; margin: 0 0 16px; color: var(--stone-50); }
.feature-card--red p { font-family: var(--font-body); font-size: 16.5px; line-height: 1.65; color: var(--stone-100); margin: 0 0 14px; max-width: 60ch; }
.feature-card--red p.strong { color: var(--stone-50); margin: 0 0 24px; font-weight: 500; }
.feature-card--red a.inline-sun { color: var(--sun-400); text-decoration: underline; text-underline-offset: 2px; }
.feature-card--ink p { font-family: var(--font-body); font-size: 16px; line-height: 1.62; color: var(--stone-100); margin: 0 0 12px; }
.feature-card--ink p.strong { font-weight: 600; color: var(--stone-50); }
.feature-card__link { margin-top: auto; font-family: var(--font-ui); font-weight: 600; font-size: 14.5px; color: var(--sun-400); text-decoration: none; }
.feature-card__link:hover { color: var(--sun-400); }
.feature-card__link .icon { font-size: 12px; width: 12px; height: 12px; }
.feature-card__cta { margin-top: auto; }

.sun-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--sun-400); color: var(--stone-900);
  font-family: var(--font-ui); font-weight: 700; font-size: 15px;
  text-decoration: none; padding: 13px 22px; border-radius: 999px; line-height: 1.1;
  transition: background var(--dur) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease);
}
.sun-pill:hover { background: var(--sun-500); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--stone-900); }
.sun-pill .icon { font-size: 12px; width: 12px; height: 12px; }

/* Icon medallion: sun-ray ring + yellow disc (IconMedallion / SunRing / ToolTiles) */
.medallion { position: relative; flex: none; }
.medallion img.medallion__rays { position: absolute; inset: 0; width: 100%; height: 100%; }
.medallion__disc { position: absolute; inset: 15%; border-radius: 50%; background: var(--sun-400); color: var(--stone-900); display: flex; align-items: center; justify-content: center; }
.medallion--78 { width: 78px; height: 78px; margin-bottom: 20px; }
.medallion--78 .medallion__disc { font-size: 23.4px; }
.medallion--96 { width: 96px; height: 96px; margin-bottom: 18px; }
.medallion--96 .medallion__disc { font-size: 27px; }
.medallion--150 { width: 150px; height: 150px; margin: 0 auto 20px; }
.medallion--150 .medallion__disc { font-size: 42px; box-shadow: var(--shadow-sm); }

/* ============================================================
   10. Specialty stripes (Services.jsx SpecialtyStripe)
   ============================================================ */
.stripe { position: relative; background: var(--stone-900); color: var(--stone-50); overflow: hidden; }
.stripe__bg { position: absolute; inset: 0; background-image: var(--hero-img); background-size: cover; background-position: var(--hero-pos, center); }
.stripe__scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(31,27,23,0.93) 0%, rgba(31,27,23,0.82) 46%, rgba(31,27,23,0.42) 100%); }
.stripe--mirrored .stripe__scrim { background: linear-gradient(260deg, rgba(31,27,23,0.93) 0%, rgba(31,27,23,0.82) 46%, rgba(31,27,23,0.42) 100%); }
.stripe__inner { position: relative; z-index: 1; padding: 76px 24px 84px; display: flex; gap: 44px; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.stripe--mirrored .stripe__inner { flex-direction: row-reverse; }
.stripe__text { max-width: 40ch; }
.stripe__text h2 { color: var(--stone-50); font-size: clamp(34px, 4.4vw, 54px); line-height: 1.03; margin: 16px 0 14px; }
.stripe__tagline { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 2.6vw, 31px); line-height: 1.15; color: var(--sun-400); margin: 0 0 28px; }

/* WaterStripe cert panel */
.cert-panel { flex: none; display: flex; align-items: center; gap: 28px; background: rgba(20,17,14,0.55); border: 1px solid rgba(250,247,241,0.16); border-radius: var(--radius-lg); padding: 26px 30px; backdrop-filter: blur(2px); }
.cert-panel__logo { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cert-chip { background: #fff; border-radius: var(--radius-md); padding: 10px 14px; display: inline-flex; }
.cert-chip img { height: 60px; width: auto; display: block; }
.cert-panel__certified { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--sun-400); line-height: 1; }
.cert-panel__creds { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.cert-panel__abbr { font-family: var(--font-display); font-weight: 700; font-size: 23px; color: var(--sun-400); line-height: 1.1; }
.cert-panel__full { font-family: var(--font-body); font-size: 15px; color: var(--stone-50); }

/* ============================================================
   11. Workmanship (Workmanship.jsx) + pinstripe mark
   ============================================================ */
.pinstripe-mark { display: flex; align-items: center; gap: 18px; width: 360px; max-width: 82%; margin: 0 auto 28px; }
.pinstripe-mark__line { flex: 1; height: 6px; border-top: 2px solid var(--accent); border-bottom: 2px solid var(--accent); box-sizing: border-box; }
.pinstripe-mark img { width: 34px; height: 34px; flex: none; }

.workline-copy { font-family: var(--font-display); font-size: clamp(20px, 3vw, 38px); line-height: 1.25; color: var(--text-strong); margin: 0; }
.workline-copy .line { display: block; white-space: nowrap; }
.workline-copy .line--light { font-weight: 300; }
.workline-copy .line--bold { font-weight: 700; }
.workline-copy a { color: var(--accent); text-decoration: none; }
.workline-copy a:hover { color: var(--accent-hover); }

.workmanship-line { position: relative; background: var(--surface-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 68px 0; overflow: hidden; text-align: center; }

.workline { background: var(--surface-page); padding: 64px 0; text-align: center; }
.workline__creds { margin-top: 20px; font-family: var(--font-ui); font-weight: 700; font-size: 13.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }

.workmanship-prose { background: var(--surface-page); padding: 72px 0; }
.workmanship-prose__inner { max-width: 60ch; text-align: left; display: flex; flex-direction: column; gap: 16px; }
.workmanship-prose p { font-family: var(--font-body); font-size: 18px; line-height: 1.7; color: var(--text-body); margin: 0; }
.workmanship-prose p.strong { color: var(--text-strong); font-weight: 600; }
.workmanship-prose a.forever { color: var(--accent); font-family: var(--font-display); text-decoration: none; }

/* ============================================================
   12. Other plumbing (OtherPlumbing.jsx)
   ============================================================ */
.other-plumbing { background: var(--surface-page); padding: 82px 0; }
.other-plumbing__title { text-align: center; margin-bottom: 40px; }
.other-plumbing__title h2 { margin: 0; font-size: clamp(28px, 3.4vw, 42px); }
.sh-other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 36px; margin-bottom: 64px; }
.other-item { display: flex; gap: 14px; }
.diamond { flex: none; margin-top: 7px; width: 9px; height: 9px; transform: rotate(45deg); background: var(--sun-400); }
.other-item p { margin: 0; font-family: var(--font-body); font-size: 15.5px; line-height: 1.6; color: var(--text-body); }
.other-item strong { font-family: var(--font-display); font-weight: 700; color: var(--text-strong); }

.upgrade-box { max-width: var(--container-narrow); margin: 0 auto; background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 40px 36px; box-shadow: var(--shadow-sm); box-sizing: border-box; }
.upgrade-box h3 { margin: 0 0 22px; font-size: 24px; text-align: center; }
.upgrade-box ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.upgrade-box li { display: inline-flex; align-items: center; gap: 9px; background: var(--surface-page); border: 1px solid var(--border); border-radius: 999px; padding: 9px 16px; font-family: var(--font-ui); font-weight: 600; font-size: 14px; color: var(--text-strong); }
.upgrade-box li .icon { font-size: 12px; width: 12px; height: 12px; color: var(--sun-600); }

/* ============================================================
   13. Greg story (GregStory.jsx)
   ============================================================ */
.greg-story { position: relative; background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0) 30%), var(--stone-900); color: var(--stone-50); padding: 88px 0; overflow: hidden; }
.sh-split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }
.greg-story h2 { color: var(--stone-50); margin: 16px 0 18px; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08; }
.greg-story__lead { font-family: var(--font-body); font-size: 19px; line-height: 1.7; color: var(--stone-100); margin: 0 0 18px; max-width: 46ch; }
.greg-story__short { font-family: var(--font-body); font-size: 19px; line-height: 1.7; color: var(--stone-300); margin: 0 0 28px; font-style: italic; }
.sh-greg-burst { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.sh-greg-burst img { width: 210px; height: 210px; display: block; }
.sh-greg-burst p { font-family: var(--font-ui); font-size: 13px; letter-spacing: .04em; color: var(--stone-300); text-align: center; margin: 0; }
.sh-greg-burst p .sun-label { color: var(--sun-400); font-weight: 700; }

/* ============================================================
   14. Reviews (Reviews.jsx + ReviewsStrip)
   ============================================================ */
.reviews { background: var(--surface-page); padding: 78px 0; text-align: center; }
.reviews h2 { margin: 16px 0 8px; font-size: clamp(26px, 3vw, 38px); }
.reviews__sub { font-family: var(--font-body); font-size: 16.5px; color: var(--text-muted); margin: 0 auto 40px; max-width: 46ch; }
.sh-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 36px; }
.review-ph { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; background: var(--surface-card); border: 1px dashed var(--border-strong); border-radius: var(--radius-lg); padding: 26px; text-align: left; }
.review-ph__source { display: inline-flex; align-items: center; gap: 8px; color: var(--text-faint); font-family: var(--font-ui); font-size: 13px; font-weight: 600; }
.review-ph__stars { color: var(--stone-300); font-size: 16px; letter-spacing: 2px; display: inline-flex; gap: 2px; }
.review-ph__bar { width: 100%; height: 10px; border-radius: 999px; background: var(--stone-100); }
.review-ph__bar--85 { width: 85%; }
.review-ph__bar--60 { width: 60%; }
.review-ph__note { margin-top: 6px; font-family: var(--font-ui); font-size: 12.5px; color: var(--text-faint); font-style: italic; }

.reviews-strip { background: var(--surface-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 0; text-align: center; }
.reviews-strip__label { display: inline-flex; align-items: center; gap: 10px; color: var(--text-muted); font-family: var(--font-ui); font-weight: 600; font-size: 15px; margin-bottom: 18px; }
.reviews-strip__stars { display: flex; gap: 8px; justify-content: center; margin-bottom: 22px; color: var(--sun-500); font-size: 18px; }

/* ============================================================
   15. CTA band w/ form (CtaBand.jsx) + form fields
   ============================================================ */
.cta-band { background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0) 30%), var(--stone-900); color: var(--stone-50); position: relative; }
.sh-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding-top: 82px; padding-bottom: 82px; }
.cta-band h2 { color: var(--stone-50); margin: 16px 0 22px; font-size: clamp(27px, 3.3vw, 42px); line-height: 1.12; }
.cta-band__phone { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-ui); color: var(--sun-400); font-weight: 700; font-size: 22px; text-decoration: none; }
.cta-band__phone:hover { color: var(--sun-400); }

.form-card { background: var(--surface-card); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); color: var(--text-body); }
.form-card--contact { padding: 30px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.form-card form { display: grid; gap: 16px; margin: 0; }
.form-card h3.form-title { margin: 0 0 4px; font-size: 22px; }

.form-success { text-align: center; padding: 28px 8px; }
.form-success__check { display: inline-flex; width: 56px; height: 56px; border-radius: 999px; background: var(--success-bg); color: var(--success); align-items: center; justify-content: center; font-size: 26px; margin-bottom: 14px; }
.form-success h3 { margin: 0 0 6px; }
.form-success p { margin: 0; color: var(--text-body); font-size: 15px; }

.field { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.field > label { font-family: var(--font-ui); font-weight: 600; font-size: 14px; color: var(--text-strong); }
.field > label .req { color: var(--accent); }
.field input, .field select {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-strong);
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input:focus, .field select:focus { border-color: var(--sun-500); box-shadow: var(--shadow-focus); }
.field select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer; }
.field .select-wrap { position: relative; }
.field .select-wrap::after { content: ""; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid var(--text-muted); pointer-events: none; }
.field .field-error { font-family: var(--font-ui); font-size: 13px; color: var(--danger); display: none; }
.field.invalid input { border-color: var(--danger); }
.field.invalid .field-error { display: block; }

/* ============================================================
   16. Footer (SiteFooter.jsx)
   ============================================================ */
.site-footer { background: var(--stone-900); color: var(--stone-200); border-top: 1px solid var(--stone-800); }
.sh-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; padding-top: 64px; padding-bottom: 40px; }
.site-footer h6 { color: var(--stone-300); font-family: var(--font-ui); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; margin: 0 0 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.site-footer ul a { font-family: var(--font-body); font-size: 15px; color: var(--stone-200); text-decoration: none; }
.site-footer ul a:hover { color: var(--sun-400); }
.footer-logo-chip { background: var(--white); border-radius: var(--radius-md); padding: 14px 18px; display: inline-block; margin-bottom: 18px; }
.footer-logo-chip img { height: 48px; width: auto; display: block; }
.footer-tagline { font-family: var(--font-body); font-style: italic; font-size: 16px; line-height: 1.6; color: var(--stone-300); max-width: 32ch; margin: 0 0 16px; }
.footer-phone { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--sun-400); text-decoration: none; display: block; margin-bottom: 10px; }
.footer-phone:hover { color: var(--sun-400); }
.footer-oncall { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--stone-200); margin: 0 0 4px; }
.footer-signoff { font-family: var(--font-ui); font-size: 14px; color: var(--stone-300); margin: 0; }
.footer-signoff a { color: var(--sun-400); text-decoration: none; }
.footer-serving { font-family: var(--font-body); font-size: 14px; color: var(--stone-400); margin: 14px 0 0; }
.footer-bottom { border-top: 1px solid var(--stone-800); }
.footer-bottom__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 18px; padding-bottom: 18px; font-family: var(--font-ui); font-size: 13px; color: var(--stone-400); }
.footer-bottom__links { display: flex; gap: 18px; }
.footer-bottom__links a { color: var(--stone-400); }

/* ============================================================
   17. Floating promo pill (PromoBanner.jsx)
   ============================================================ */
.promo-wrap { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; justify-content: center; padding: 0 16px 16px; pointer-events: none; }
.promo-wrap.dismissed { display: none; }
@keyframes shPromoUp { from { transform: translateY(120%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.sh-float-card {
  pointer-events: auto; position: relative;
  display: flex; align-items: center; gap: 18px;
  width: fit-content; max-width: 620px;
  background: var(--surface-card);
  border: 3px dashed var(--accent);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  padding: 12px 24px;
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) { .sh-float-card { animation: shPromoUp .45s cubic-bezier(.2,.7,.2,1) both; } }
.sh-float-card__link { position: absolute; inset: 0; z-index: 1; border-radius: 999px; }
.sh-float-sun { width: 38px; height: 38px; flex: none; }
.sh-float-text { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; flex: none; }
.sh-float-title { font-family: var(--font-display); font-weight: 800; font-size: 19px; line-height: 1.05; white-space: nowrap; }
.sh-float-title .free { color: var(--accent); }
.sh-float-title .fix { color: var(--stone-900); }
.sh-float-detail { font-family: var(--font-body); font-size: 14px; color: var(--text-body); white-space: nowrap; }
.sh-float-cta { flex: none; display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--stone-50); font-family: var(--font-ui); font-weight: 700; font-size: 14.5px; padding: 11px 20px; border-radius: 999px; line-height: 1; white-space: nowrap; }
.sh-float-cta .icon { font-size: 11px; width: 11px; height: 11px; }
.sh-float-close { position: absolute; right: -9px; top: -9px; z-index: 2; width: 27px; height: 27px; border-radius: 50%; background: var(--stone-900); color: var(--stone-50); border: 2px solid var(--surface-card); cursor: pointer; font-size: 12px; line-height: 1; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); padding: 0; }
@media (max-width: 560px) {
  .sh-float-detail { display: none; }
  .sh-float-card { width: 100%; padding: 9px 12px; gap: 10px; justify-content: center; }
  .sh-float-sun { width: 30px; height: 30px; }
  .sh-float-title { font-size: 15px; }
  .sh-float-cta { padding: 9px 13px; font-size: 13px; }
}

/* ============================================================
   18. Internal-page primitives (sections.jsx)
   ============================================================ */
.band { background: var(--surface-page); padding: 72px 0; }
.band--alt { background: var(--surface-card); }

.heading-block { text-align: left; margin-bottom: 28px; }
.heading-block--center { text-align: center; }
.heading-block h2 { margin: 0; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.1; text-wrap: balance; }
.heading-block .eyebrow + h2 { margin: 14px 0 0; }

.prose { display: flex; flex-direction: column; gap: 16px; max-width: 64ch; }
.prose p { margin: 0; font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--text-body); }
.prose--big p { font-size: 19px; }

.steps h3 { font-size: 26px; margin: 0 0 6px; }
.steps__intro { font-family: var(--font-body); font-size: 17px; color: var(--text-body); margin: 0 0 22px; }
.steps ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; }
.steps__num { flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--sun-400); color: var(--stone-900); font-family: var(--font-display); font-weight: 700; font-size: 18px; display: inline-flex; align-items: center; justify-content: center; }
.steps li p { margin: 0; padding-top: 6px; font-family: var(--font-body); font-size: 17px; line-height: 1.6; color: var(--text-body); }
.steps__note { font-family: var(--font-body); font-style: italic; font-size: 17px; color: var(--text-strong); margin: 22px 0 0; }

.sh-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.tool-tile { text-align: center; }
.tool-tile h4 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 0 0 8px; }
.tool-tile p { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--text-body); margin: 0 auto; max-width: 34ch; }

.cert-band { background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0) 32%), var(--surface-band); color: var(--stone-50); position: relative; }
.cert-band__inner { padding-top: 58px; padding-bottom: 58px; display: flex; flex-wrap: wrap; gap: 52px; align-items: center; justify-content: center; }
.cert-band__logo { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cert-band__logo .cert-chip { padding: 10px 16px; }
.cert-band__logo .cert-chip img { height: 88px; }
.cert-band__certified { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3vw, 34px); color: var(--sun-400); line-height: 1; }
.cert-band__creds { display: flex; flex-direction: column; gap: 22px; text-align: left; }
.cert-band__creds p { margin: 0; }
.cert-band__abbr { font-family: var(--font-display); font-weight: 700; font-size: clamp(23px, 2.7vw, 32px); color: var(--sun-400); line-height: 1.1; }
.cert-band__full { font-family: var(--font-body); font-size: 17.5px; color: var(--stone-50); }

.greg-quote { background: var(--surface-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 72px 0; }
.sh-quote-grid { display: grid; grid-template-columns: 1.4fr auto; gap: 44px; align-items: center; }
.quote-bubble { position: relative; background: var(--surface-page); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 34px; box-shadow: var(--shadow-sm); }
.quote-bubble .icon--quote { color: var(--sun-400); font-size: 26px; width: 26px; height: 26px; margin-bottom: 12px; display: block; }
.quote-bubble blockquote { font-family: var(--font-body); font-style: italic; font-size: clamp(19px, 2.2vw, 24px); line-height: 1.55; color: var(--text-strong); margin: 0; }
.quote-bubble__attr { font-family: var(--font-ui); font-weight: 700; font-size: 15px; color: var(--text-strong); margin-top: 18px; }
.quote-note { font-family: var(--font-ui); font-size: 12.5px; color: var(--text-faint); font-style: italic; margin: 12px 4px 0; }
.sh-greg-portrait { text-align: center; }
.portrait-ring { position: relative; width: 210px; height: 210px; margin: 0 auto; }
.portrait-ring img.medallion__rays { position: absolute; inset: 0; width: 100%; height: 100%; }
.portrait-ring__photo { position: absolute; inset: 15%; border-radius: 50%; overflow: hidden; border: 3px solid var(--sun-400); box-shadow: var(--shadow-md); }
.portrait-ring__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.portrait-name { font-family: var(--font-ui); font-weight: 700; font-size: 14px; color: var(--text-strong); margin-top: 12px; }

.story-block h3 { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: clamp(24px, 3vw, 32px); margin: 0 0 22px; color: var(--text-strong); }
.story-block .quote-note { margin: 22px 0 0; }
.story-block figure { margin: 28px 0 0; }

.photo-frame { margin: 0; }
.photo-frame__box { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.photo-frame__ratio { width: 100%; }
.photo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92) contrast(1.02); }
.photo-frame figcaption { font-family: var(--font-ui); font-size: 13px; color: var(--text-muted); margin-top: 8px; letter-spacing: 0.02em; }

.brand-line { background: var(--surface-page); padding: 64px 0; text-align: center; }
.brand-line p { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.15; margin: 0; color: var(--text-strong); text-wrap: balance; }

.faq { max-width: 70ch; margin: 0 auto; border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; background: none; border: none; cursor: pointer; padding: 22px 4px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--text-strong); }
.faq__q .icon { flex: none; color: var(--accent); font-size: 15px; width: 15px; height: 15px; }
.faq__q .icon--minus { display: none; }
.faq__item.open .faq__q .icon--minus { display: inline-block; }
.faq__item.open .faq__q .icon--plus { display: none; }
.faq__a { display: none; margin: 0 4px 24px; font-family: var(--font-body); font-size: 16.5px; line-height: 1.7; color: var(--text-body); max-width: 64ch; }
.faq__item.open .faq__a { display: block; }

.closing-cta { background: var(--stone-900); color: var(--stone-50); position: relative; }
.closing-cta__inner { padding-top: 76px; padding-bottom: 76px; text-align: center; }
.closing-cta h2 { color: var(--stone-50); font-size: clamp(27px, 3.4vw, 42px); line-height: 1.14; margin: 0 auto 16px; max-width: 26ch; text-wrap: balance; }
.closing-cta__sub { font-family: var(--font-body); font-size: 19px; line-height: 1.6; color: var(--stone-100); margin: 0 auto 30px; max-width: 40ch; }
.closing-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.cyoa { background: var(--surface-card); border-top: 1px solid var(--border); padding: 40px 0; }
.cyoa__inner { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; align-items: center; }
.cyoa__label { font-family: var(--font-ui); font-size: 12.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--text-muted); }
.cyoa a { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--accent); text-decoration: none; transition: transform var(--dur-fast) var(--ease); }
.cyoa a:hover { transform: translateY(-2px); color: var(--accent); }
.cyoa a .icon { font-size: 13px; width: 13px; height: 13px; }

.callout { display: flex; gap: 14px; background: var(--surface-sunk); border-radius: var(--radius-md); padding: 16px 18px; border-left: 3px solid var(--stone-400); }
.callout--red { background: var(--red-50); border-left-color: var(--accent); }
.callout__body { flex: 1; }
.callout__title { font-family: var(--font-ui); font-weight: 600; font-size: 15px; line-height: 1.3; color: var(--text-strong); margin-bottom: 4px; }
.callout--red .callout__title { color: var(--red-700); }
.callout--large .callout__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2.4vw, 27px); line-height: 1.18; margin-bottom: 8px; }
.callout__text { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--text-body); }

.tbc { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-ui); font-size: 12px; font-weight: 600; color: var(--sun-600); background: var(--sun-100); border: 1px solid var(--sun-300); border-radius: 6px; padding: 3px 8px; vertical-align: middle; }

/* Ink CTA sections (about-us / contact closers) */
.ink-cta { background: var(--stone-900); color: var(--stone-50); position: relative; text-align: center; }
.ink-cta__inner { padding-top: 72px; padding-bottom: 72px; }
.ink-cta__phone-lg { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; color: var(--sun-400); font-size: 34px; text-decoration: none; }
.ink-cta__phone-lg:hover { color: var(--sun-400); }
.ink-cta__phone-lg .icon { font-size: 26px; width: 26px; height: 26px; }

/* ============================================================
   19. Page-specific blocks
   ============================================================ */

/* -- free-toilet-fix -- */
.toilet-intro { display: flex; flex-direction: column; gap: 16px; max-width: 60ch; }
.toilet-intro .lead { margin: 0; font-family: var(--font-body); font-size: 22px; line-height: 1.5; color: var(--text-strong); font-weight: 600; }
.toilet-intro p { margin: 0; font-family: var(--font-body); font-size: 18px; line-height: 1.7; color: var(--text-body); }
.toilet-intro .promise { margin: 8px 0 0; font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1.2; color: var(--text-strong); }
.toilet-intro .cta-row { margin-top: 10px; }
.toilet-test { background: var(--surface-card); border-top: 1px solid var(--border); padding: 72px 0; }
.sh-toilet-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 28px; margin-top: 30px; align-items: start; }
.test-card { background: var(--surface-page); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.test-card h3 { font-size: 20px; margin: 0 0 16px; }
.test-card--steps h3 { margin: 0 0 18px; }
.need-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.need-list li { display: flex; gap: 12px; align-items: center; font-family: var(--font-body); font-size: 17px; color: var(--text-body); }
.need-list li .icon { color: var(--sun-600); }
.toilet-verdict { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; max-width: 64ch; }
.toilet-verdict p { margin: 0; font-family: var(--font-body); font-size: 18px; line-height: 1.6; color: var(--text-body); }
.toilet-verdict p.strong { color: var(--text-strong); }
.toilet-verdict .cta-row { margin-top: 10px; }

/* -- water-heaters -- */
.sh-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; align-items: start; }
.install-card { background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.install-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0 0 12px; }
.install-card p { margin: 0; font-family: var(--font-body); font-size: 15.5px; line-height: 1.65; color: var(--text-body); }
.wh-lastline { background: var(--surface-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 60px 0 68px; text-align: center; }
.wh-lastline__big { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.15; margin: 0 0 12px; color: var(--text-strong); text-wrap: balance; }
.wh-lastline__sub { font-family: var(--font-body); font-style: italic; font-size: clamp(22px, 2.8vw, 30px); color: var(--text-muted); margin: 0; }
.wh-emergency h2 { font-size: clamp(26px, 3.2vw, 36px); line-height: 1.16; margin: 0 0 16px; }
.wh-emergency .intro { margin: 0 0 28px; max-width: 64ch; font-family: var(--font-body); font-size: 18px; line-height: 1.7; color: var(--text-body); }
.wh-emergency .outro { margin: 24px 0 0; max-width: 64ch; font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--text-body); }
.wh-warranty { background: var(--surface-card); padding: 76px 0; text-align: center; }
.wh-warranty .workline-copy { font-size: clamp(22px, 3vw, 34px); line-height: 1.2; margin: 0 0 22px; }
.wh-warranty .workline-copy .line { white-space: normal; }
.wh-warranty__equip { font-family: var(--font-display); font-weight: 700; font-size: clamp(21px, 2.6vw, 30px); line-height: 1.22; color: var(--text-strong); margin: 0 auto 14px; max-width: 24ch; }
.wh-warranty__promise { margin: 0 auto 28px; max-width: 52ch; font-family: var(--font-body); font-size: 19px; line-height: 1.7; color: var(--text-body); }

/* -- water-restoration / drain-cleaning -- */
.after-steps { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; max-width: 64ch; }
.after-steps p { margin: 0; font-family: var(--font-body); font-size: 18px; line-height: 1.7; color: var(--text-body); }
.after-steps--single { margin-top: 26px; max-width: 64ch; }

/* -- underground -- */
.step-block { display: flex; gap: 18px; align-items: flex-start; }
.step-block .diamond { margin-top: 10px; width: 11px; height: 11px; }
.step-block h4 { font-family: var(--font-display); font-weight: 700; font-size: 23px; margin: 0 0 8px; color: var(--text-strong); }
.step-block p { margin: 0; font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--text-body); max-width: 62ch; }
.step-block p + p { margin-top: 10px; }
.sh-steps2 { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; margin-top: 26px; align-items: start; }
.sh-steps2__left { display: flex; flex-direction: column; gap: 30px; }
.sh-steps2__right { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 150px; }
.ug-nod-follow { margin: 20px 0 0; max-width: 64ch; font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--text-body); }
.ug-nod-link { margin: 18px 0 40px; }
.ug-nod-link a { font-family: var(--font-ui); font-weight: 600; font-size: 15px; color: var(--accent); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.ug-nod-link a .icon { font-size: 12px; width: 12px; height: 12px; }
.ug-sub h3.big { font-size: 24px; margin: 0 0 10px; }
.ug-sub h3.small { font-size: 21px; margin: 0 0 10px; }
.ug-sub p { margin: 0 0 18px; max-width: 64ch; font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--text-body); }
.ug-sub p.last { margin-bottom: 22px; }
.ug-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.fin-list { margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 10px; font-family: var(--font-body); font-size: 17px; line-height: 1.6; color: var(--text-body); }
.fin-list--lg { margin: 26px 0 0; gap: 14px; font-size: 18px; max-width: 62ch; }
.fin-intro { margin: 0 0 18px; max-width: 64ch; font-family: var(--font-body); font-size: 18px; line-height: 1.7; color: var(--text-body); }

/* -- about-us -- */
.greg-article { max-width: 62ch; margin: 0 auto; }
.greg-article p { font-family: var(--font-body); font-size: 19px; line-height: 1.8; color: var(--text-body); margin: 0 0 20px; }
.greg-article h2 { font-size: clamp(24px, 3vw, 34px); margin: 48px 0 18px; }
.greg-article p.lead { font-size: 22px; color: var(--text-strong); }
.greg-article p.display-bold { font-family: var(--font-display); font-weight: 700; color: var(--text-strong); }
.greg-article p.italic-strong { font-style: italic; color: var(--text-strong); }
.greg-article .sun-figure { display: flex; justify-content: center; margin: 12px 0 28px; }
.greg-article .sun-figure img { width: 180px; height: 180px; }
.lessons { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.lessons li { display: flex; gap: 14px; align-items: flex-start; font-family: var(--font-body); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--text-strong); }
.lessons .diamond { margin-top: 8px; width: 10px; height: 10px; }
.about-closer__name { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4vw, 46px); margin: 0 0 8px; color: var(--stone-50); }
.about-closer__find { font-family: var(--font-body); font-size: 19px; color: var(--stone-100); margin: 0 0 22px; }
.about-closer__call { font-family: var(--font-display); font-weight: 700; color: var(--sun-400); font-size: clamp(26px, 3.4vw, 34px); line-height: 1.1; margin: 0 0 6px; }

/* -- contact -- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.contact-hours p { font-family: var(--font-body); font-size: 18px; line-height: 1.6; color: var(--text-body); margin: 0 0 8px; }
.contact-hours p.gap { line-height: 1.7; margin: 0 0 36px; max-width: 52ch; }
.contact-hours h3 { font-size: 24px; margin: 0 0 12px; }
.contact-hours .emergency { font-family: var(--font-body); font-size: 18px; line-height: 1.7; color: var(--text-body); margin: 0; max-width: 52ch; }
.service-map-intro { text-align: center; font-family: var(--font-body); font-size: 19px; line-height: 1.6; color: var(--text-body); margin: 0 auto 28px; max-width: 46ch; }
.service-map { position: relative; max-width: 880px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.service-map .sh-rays { position: absolute; top: 0; left: 0; right: 0; z-index: 2; }
.service-map__ph { aspect-ratio: 16 / 6; background: var(--stone-200); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--text-muted); }
.service-map__ph .icon--map { font-size: 34px; width: 34px; height: 34px; color: var(--sun-500); }
.service-map__ph .label { font-family: var(--font-ui); font-weight: 600; }
.service-map-towns { text-align: center; font-family: var(--font-body); font-size: 18px; color: var(--text-strong); margin: 26px auto 0; max-width: 50ch; }
.contact-human p.lead-q { font-family: var(--font-body); font-size: 19px; line-height: 1.7; color: var(--text-body); margin: 0 0 8px; max-width: 56ch; }
.contact-human p.chip-row { margin: 8px 0 0; }
.contact-closer__find { font-family: var(--font-body); font-size: 19px; color: var(--stone-100); margin: 0 0 8px; }
.contact-closer__name { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.6vw, 42px); margin: 0 0 6px; color: var(--stone-50); }
.contact-closer__signoff { font-family: var(--font-ui); font-size: 15px; color: var(--stone-300); margin: 0 0 22px; }
.contact-closer__signoff a { color: var(--sun-400); font-weight: 700; text-decoration: none; }

/* ============================================================
   20. Responsive (tokens/base.css global rules + page rules)
   ============================================================ */
@media (max-width: 1000px) {
  .sh-services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .sh-desktop-nav { display: none; }
  .sh-mobile-toggle { display: inline-flex; }
  .sh-feature-row,
  .sh-services-grid,
  .sh-stack,
  .sh-tiles,
  .sh-steps2,
  .sh-split,
  .sh-cta-grid,
  .sh-toilet-grid,
  .sh-quote-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .sh-other-grid { grid-template-columns: 1fr 1fr; }
  .sh-quote-grid { justify-items: center; text-align: center; gap: 28px; }
  .sh-util-tagline { display: none; }
  .sh-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sh-steps2__right { position: static; }
}
@media (max-width: 560px) {
  .sh-other-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  /* long hero eyebrows (e.g. "Excavation & Sewer Lines - North Philly")
     would force horizontal page scroll at phone widths */
  .hero .eyebrow, .page-hero .eyebrow { white-space: normal; }
}
@media (max-width: 640px) {
  .sh-container { padding-inline: var(--space-4); }
  .sh-footer-grid { grid-template-columns: 1fr; }
}
