/*
Theme Name: Alliance Plumbing
Description: Custom block theme for Alliance Plumbing Services — Webster, TX. Friendly design direction.
Author: EmberTribe
Author URI: https://embertribe.com
Version: 3.2.0
Requires at least: 6.2
Requires PHP: 7.4
Text Domain: alliance-plumbing
*/


/* ============================================================
   ALLIANCE PLUMBING — Design tokens & base
   Two design directions live in the same stylesheet, switched
   via [data-direction] on <html>. Color theme via CSS vars.
   ============================================================ */

:root {
  /* Brand colors (from logo) */
  --brand-green: #1F9E48;
  --brand-green-deep: #157036;
  --brand-blue: #1463A6;
  --brand-blue-deep: #0B3F75;
  --brand-drop: #4FB3E8;
  --brand-navy: #0B2545;

  /* Theme colors — switched by [data-theme] */
  --primary: var(--brand-green);
  --primary-deep: var(--brand-green-deep);
  --accent: var(--brand-blue);
  --accent-deep: var(--brand-blue-deep);

  /* Neutrals */
  --ink: #0E1726;
  --ink-2: #2C3849;
  --ink-3: #5A6779;
  --ink-4: #8A95A6;
  --line: #E3E7ED;
  --line-2: #F0F3F7;
  --paper: #FFFFFF;
  --paper-2: #F7F8FA;
  --paper-3: #EEF2F6;
  --cream: #F8F4EC;

  /* Functional */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.06), 0 1px 1px rgba(11, 37, 69, 0.04);
  --shadow: 0 4px 16px rgba(11, 37, 69, 0.08), 0 1px 3px rgba(11, 37, 69, 0.05);
  --shadow-lg: 0 24px 60px -20px rgba(11, 37, 69, 0.25), 0 8px 20px -10px rgba(11, 37, 69, 0.15);

  --container: 1240px;
  --container-wide: 1360px;

  /* Type */
  --font-sans: "Geist", system-ui, sans-serif;
  --font-display: "Bricolage Grotesque", "Geist", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
}

/* Color theme variations */
[data-theme="classic"] {
  --primary: #1F9E48;
  --primary-deep: #157036;
  --accent: #1463A6;
  --accent-deep: #0B3F75;
}
[data-theme="ocean"] {
  --primary: #1463A6;
  --primary-deep: #0B3F75;
  --accent: #1F9E48;
  --accent-deep: #157036;
}
[data-theme="deep"] {
  --primary: #0B2545;
  --primary-deep: #061327;
  --accent: #1F9E48;
  --accent-deep: #157036;
}
[data-theme="bold"] {
  --primary: #0F7B3A;
  --primary-deep: #0A5226;
  --accent: #E84A1D;
  --accent-deep: #B53915;
}

/* Direction B - Modern Editorial overrides */
[data-direction="bold"] {
  --font-display: "Archivo", "Geist", system-ui, sans-serif;
  --paper: #FFFFFF;
  --paper-2: #F4F5F7;
  --paper-3: #E9ECF1;
  --ink: #0A1424;
}

/* ============================================================
   Reset & base
   ============================================================ */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

[data-direction="bold"] h1,
[data-direction="bold"] h2,
[data-direction="bold"] h3 {
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

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

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

/* ============================================================
   Layout primitives
   ============================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

[data-direction="bold"] .eyebrow {
  color: var(--accent);
  letter-spacing: 0.2em;
}

.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 18px -4px color-mix(in oklab, var(--primary) 60%, transparent);
}
.btn-primary:hover {
  background: var(--primary-deep);
  box-shadow: 0 10px 24px -4px color-mix(in oklab, var(--primary) 70%, transparent);
}

.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover {
  background: var(--accent-deep);
}

.btn-call {
  background: var(--ink);
  color: white;
}
.btn-call:hover {
  background: var(--accent-deep);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--paper-2);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--paper-2);
}

.btn-lg {
  padding: 17px 28px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 14px;
}

[data-direction="bold"] .btn {
  border-radius: var(--radius-sm);
}
[data-direction="bold"] .btn-primary {
  background: var(--ink);
  box-shadow: none;
}
[data-direction="bold"] .btn-primary:hover {
  background: var(--accent);
}
[data-direction="bold"] .btn-accent {
  background: var(--accent);
}

/* ============================================================
   Top utility bar
   ============================================================ */

.utility-bar {
  background: var(--ink);
  color: white;
  font-size: 13px;
  padding: 8px 0;
}
.utility-bar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.utility-bar .left,
.utility-bar .right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.utility-bar .item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
}
.utility-bar .item.emphasis {
  color: white;
  font-weight: 600;
}
.utility-bar .item .dot {
  width: 7px;
  height: 7px;
  background: #34D17B;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(52, 209, 123, 0.25);
}
.utility-bar a:hover {
  color: white;
}

@media (max-width: 720px) {
  .utility-bar .hide-sm { display: none; }
}

/* ============================================================
   Header / nav
   ============================================================ */

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 56px;
  width: auto;
}
.nav-main {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: color-mix(in oklab, var(--primary) 8%, transparent);
}
.nav-item .chev {
  width: 10px;
  height: 10px;
  opacity: 0.6;
  transition: transform 0.2s;
}
.nav-item:hover .chev {
  transform: rotate(180deg);
}

.mega {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 560px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  display: none;
  z-index: 50;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.nav-item:hover .mega {
  display: block;
}
.mega-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background 0.15s, color 0.15s;
}
.mega-link:hover {
  background: var(--paper-2);
  color: var(--primary);
}
.mega-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  padding: 8px 12px 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.15s, transform 0.15s;
}
.phone-cta:hover {
  background: var(--primary-deep);
  transform: translateY(-1px);
}
.phone-cta .ring {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.phone-cta .ring svg { width: 14px; height: 14px; }

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--paper-2);
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  .nav-main { display: none; }
  .hamburger { display: inline-flex; }
}

@media (max-width: 720px) {
  .phone-cta .label-long { display: none; }
  .header-row { padding: 14px 0; gap: 12px; }
  .brand img { height: 44px; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(11, 37, 69, 0.45);
  z-index: 200;
  display: none;
}
.mobile-drawer.open { display: block; }
.mobile-drawer .panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 100%);
  background: var(--paper);
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-drawer .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer .group {
  display: flex;
  flex-direction: column;
}
.mobile-drawer .group > a {
  padding: 12px 8px;
  font-weight: 500;
  border-radius: 8px;
}
.mobile-drawer .group > a:hover {
  background: var(--paper-2);
}
.mobile-drawer .group .group-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  padding: 12px 8px 4px;
}

/* ============================================================
   Hero (Direction A — Trusted)
   ============================================================ */

.hero {
  position: relative;
  background: var(--paper-2);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding: 72px 0 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 14px 8px 8px;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.hero-eyebrow .badge {
  background: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 76px);
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--primary);
  font-style: italic;
}
[data-direction="bold"] .hero h1 .accent {
  color: var(--accent);
  font-style: normal;
}
.hero .lede {
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-trust .stat {
  display: flex;
  flex-direction: column;
}
.hero-trust .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-trust .lbl {
  font-size: 13px;
  color: var(--ink-3);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, #DCE9F5 0%, #B7D4EE 100%);
}
.hero-visual img.photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual .float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-visual .float-card.tl {
  top: 24px;
  left: 24px;
}
.hero-visual .float-card.br {
  bottom: 24px;
  right: 24px;
}
.hero-visual .avatar-stack {
  display: flex;
}
.hero-visual .avatar-stack span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eee;
  border: 2px solid white;
  margin-left: -8px;
  background-size: cover;
  background-position: center;
}
.hero-visual .avatar-stack span:first-child { margin-left: 0; }
.hero-visual .stars {
  color: #F5A623;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Hero Direction B */
[data-direction="bold"] .hero {
  background: var(--ink);
  color: white;
}
[data-direction="bold"] .hero h1 { color: white; }
[data-direction="bold"] .hero .lede { color: rgba(255,255,255,0.7); }
[data-direction="bold"] .hero h1 {
  font-size: clamp(48px, 7.5vw, 116px);
}
[data-direction="bold"] .hero-eyebrow {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}
[data-direction="bold"] .hero-trust {
  border-top-color: rgba(255,255,255,0.1);
}
[data-direction="bold"] .hero-trust .num { color: white; }
[data-direction="bold"] .hero-trust .lbl { color: rgba(255,255,255,0.6); }
[data-direction="bold"] .hero-visual {
  border-radius: 8px;
  background: #143057;
}
[data-direction="bold"] .hero-visual .float-card {
  background: var(--ink);
  color: white;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
[data-direction="bold"] .btn-outline {
  border-color: rgba(255,255,255,0.2);
  color: white;
}
[data-direction="bold"] .btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0 56px;
  }
  .hero-visual { aspect-ratio: 4 / 3; }
}

/* ============================================================
   Section base
   ============================================================ */

.section {
  padding: 96px 0;
}
.section-tight { padding: 64px 0; }
.section-tint { background: var(--paper-2); }
.section-dark { background: var(--ink); color: white; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: white; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .lede { max-width: 440px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 56px);
}
[data-direction="bold"] .section-head h2 {
  font-size: clamp(36px, 5.5vw, 80px);
}
@media (max-width: 800px) {
  .section { padding: 64px 0; }
  .section-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
}

/* ============================================================
   Service cards
   ============================================================ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .service-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card .img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-3);
  position: relative;
}
.service-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .img-wrap img {
  transform: scale(1.05);
}
.service-card .img-wrap .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.service-card .body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.service-card p {
  color: var(--ink-3);
  font-size: 14px;
  margin-bottom: 18px;
  flex: 1;
}
.service-card .links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.service-card .links a {
  font-size: 14px;
  padding: 6px 0;
  color: var(--ink-2);
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.15s, padding 0.15s;
}
.service-card .links a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.service-card .links a::after {
  content: "→";
  opacity: 0;
  transition: opacity 0.15s;
  color: var(--primary);
}
.service-card .links a:hover::after {
  opacity: 1;
}

[data-direction="bold"] .service-card {
  border-radius: 8px;
}
[data-direction="bold"] .service-card .img-wrap {
  border-radius: 0;
}

/* ============================================================
   Trust strip / logos
   ============================================================ */

.trust-strip {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-strip .label {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}
.trust-strip .badges {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
}
.trust-badge svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

/* ============================================================
   Promise / values blocks
   ============================================================ */

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.promise-grid .cell {
  background: var(--paper);
  padding: 32px 28px;
}
.promise-grid .cell .num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.promise-grid .cell h3 {
  font-size: 22px;
  margin: 14px 0 10px;
}
.promise-grid .cell p {
  font-size: 14px;
  color: var(--ink-3);
}
@media (max-width: 900px) {
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .promise-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Two-column "story" block
   ============================================================ */

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story.reverse { direction: rtl; }
.story.reverse > * { direction: ltr; }
.story h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 20px; }
.story p { margin-bottom: 16px; color: var(--ink-2); font-size: 16px; }
.story .image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-3);
  position: relative;
}
.story .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[data-direction="bold"] .story .image { border-radius: 8px; }
.bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--ink-2);
}
.bullet .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--primary) 15%, white);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  margin-top: 2px;
}
.bullet .check svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.story .bullets { margin: 24px 0 28px; }

@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; gap: 32px; }
  .story.reverse { direction: ltr; }
}

/* ============================================================
   Reviews
   ============================================================ */

.review-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.review-strip .score {
  text-align: center;
}
.review-strip .score .big {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.review-strip .score .stars {
  color: #F5A623;
  font-size: 18px;
  letter-spacing: 2px;
  margin-top: 4px;
}
.review-strip .score .meta {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 6px;
}
.review-strip .quotes {
  display: flex;
  gap: 24px;
  overflow-x: auto;
}
.review-strip blockquote {
  margin: 0;
  font-style: italic;
  color: var(--ink-2);
  font-size: 15px;
  min-width: 280px;
  max-width: 360px;
}
.review-strip cite {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-3);
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 800px) {
  .review-strip { grid-template-columns: 1fr; gap: 20px; }
}

.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: var(--shadow); }
.review-card .stars { color: #F5A623; letter-spacing: 2px; font-size: 14px; }
.review-card blockquote {
  margin: 0;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
}
.review-card .author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.review-card .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.review-card .name { font-weight: 600; font-size: 14px; }
.review-card .city { font-size: 12px; color: var(--ink-3); }

/* ============================================================
   Emergency banner
   ============================================================ */

.emergency-banner {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.emergency-banner h2 { color: white; font-size: clamp(28px, 3.4vw, 44px); }
.emergency-banner p { color: rgba(255,255,255,0.7); margin-top: 12px; max-width: 480px; }
.emergency-banner .pulse {
  position: absolute;
  top: 32px;
  right: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FF6B6B;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.emergency-banner .pulse::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #FF6B6B;
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,107,107,0.6); }
  50% { opacity: 1; box-shadow: 0 0 0 10px rgba(255,107,107,0); }
}
.emergency-banner .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
[data-direction="bold"] .emergency-banner { border-radius: 8px; }
@media (max-width: 720px) {
  .emergency-banner { grid-template-columns: 1fr; padding: 32px; }
  .emergency-banner .pulse { position: static; margin-bottom: 14px; }
}

/* ============================================================
   Service-area grid (cities)
   ============================================================ */

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.areas-grid a {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background 0.15s, color 0.15s;
}
.areas-grid a:hover {
  background: var(--paper-2);
  color: var(--primary);
}
.areas-grid a::after {
  content: "→";
  opacity: 0;
  transition: opacity 0.15s;
  color: var(--primary);
}
.areas-grid a:hover::after { opacity: 1; }
@media (max-width: 900px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .areas-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer h4 {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.14em;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.15s; }
.footer a:hover { color: white; }
.footer-brand img { height: 64px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 280px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; font-size: 14px; }
.footer-contact .item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact .item svg { width: 18px; height: 18px; color: var(--primary); flex: 0 0 18px; margin-top: 2px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .social { display: flex; gap: 8px; }
.footer-bottom .social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.footer-bottom .social a:hover { background: var(--primary); }
.footer-bottom .social svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 36px 24px !important; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   Page hero (for subpages, simpler)
   ============================================================ */

.page-hero {
  background: var(--paper-2);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-hero .crumbs {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.page-hero .crumbs a:hover { color: var(--primary); }
.page-hero .crumbs .sep { opacity: 0.4; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
  max-width: 18ch;
}
[data-direction="bold"] .page-hero h1 {
  font-size: clamp(40px, 6vw, 84px);
}
.page-hero .lede { max-width: 60ch; }
.page-hero .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ============================================================
   FAQ accordion
   ============================================================ */

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  text-align: left;
  width: 100%;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--paper-2); }
.faq-question .plus { font-size: 24px; font-weight: 300; color: var(--ink-3); transition: transform 0.2s; }
.faq-item.open .faq-question .plus { transform: rotate(45deg); color: var(--primary); }
.faq-answer {
  padding: 0 24px 22px;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.6;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   Lead form (inline)
   ============================================================ */

.lead-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.lead-form h3 { font-size: 22px; margin-bottom: 6px; }
.lead-form .subtitle { font-size: 14px; color: var(--ink-3); margin-bottom: 22px; }
.lead-form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.lead-form label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); }
.lead-form input, .lead-form select, .lead-form textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  transition: border-color 0.15s;
  font-size: 15px;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.lead-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lead-form .legal {
  font-size: 11px;
  color: var(--ink-4);
  margin-top: 14px;
  line-height: 1.5;
}

/* ============================================================
   Misc utilities
   ============================================================ */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: color-mix(in oklab, var(--primary) 12%, white);
  color: var(--primary-deep);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}
.chip.accent {
  background: color-mix(in oklab, var(--accent) 12%, white);
  color: var(--accent-deep);
}
.chip.dark {
  background: var(--ink);
  color: white;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 56px 0;
}

.muted { color: var(--ink-3); }
.center { text-align: center; }

/* Hide content based on direction */
[data-direction="trusted"] .only-bold { display: none; }
[data-direction="bold"] .only-trusted { display: none; }

/* Pretty horizontal scroll for review carousel */
.scroll-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: thin;
}
.scroll-row > * {
  scroll-snap-align: start;
  flex: 0 0 auto;
}

/* ============================================================
   Image placeholders (art-direction slots for image sourcing)
   ============================================================ */
.ph {
  width: 100%;
  height: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  color: var(--ink-3);
  background-color: var(--paper-3);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 11px,
    color-mix(in oklab, var(--ink) 4%, transparent) 11px 12px
  );
}
.ph::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed color-mix(in oklab, var(--ink) 20%, transparent);
  border-radius: 7px;
  pointer-events: none;
}
.ph-inner {
  position: relative;
  max-width: 92%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ph-icon {
  width: 22px;
  height: 22px;
  opacity: 0.5;
}
.ph-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.ph-desc {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-3);
  text-wrap: pretty;
}
.ph-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  line-height: 1.45;
  color: var(--primary);
  word-break: break-word;
  margin-top: 2px;
}
/* Local-photo variant — matched landmark slot on the area pages */
.ph[data-variant="local"] {
  color: var(--ink-2);
  background-color: color-mix(in oklab, var(--primary) 8%, white);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 11px,
    color-mix(in oklab, var(--primary) 11%, transparent) 11px 12px
  );
}
.ph[data-variant="local"]::after {
  border-color: color-mix(in oklab, var(--primary) 38%, transparent);
}
.ph[data-variant="local"] .ph-icon { opacity: 0.7; color: var(--primary); }
.ph[data-variant="local"] .ph-label { color: var(--primary); }
.ph[data-variant="local"] .ph-desc { font-size: 13px; }
/* Hero placeholder fills the 4/5 visual box */
.ph.photo-fill { position: absolute; inset: 0; }

/* Real photo rendered by <Placeholder src> — fills its parent like the prompt slot did */
.ph-slot {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}
.ph-slot > .ph-img {
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
}
.ph-slot > .ph { position: absolute; inset: 0; }
.ph-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-img.photo-fill { position: absolute; inset: 0; }

/* ============================================================
   Van location hero (per-city banner, geteco-style)
   ============================================================ */
.van-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  min-height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-3);
  margin: 8px 0 8px;
}
.van-hero .ph-slot { position: absolute; inset: 0; }
/* City sign usually sits in the lower half — bias the crop down so it stays in frame */
.van-hero .ph-img { object-position: center 72%; }
.van-hero-cap {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  padding: 28px 32px;
  width: 100%;
  background: linear-gradient(0deg, rgba(8, 24, 14, 0.72) 0%, rgba(8, 24, 14, 0.28) 55%, transparent 100%);
  color: white;
}
.van-hero-cap .van-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.van-hero-cap h2 {
  color: white;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
/* When the slot is still a prompt (no image yet), drop the dark caption gradient
   so the placeholder text stays readable */
.van-hero:has(.ph) .van-hero-cap { background: none; }
.van-hero:has(.ph) .van-hero-cap .van-hero-eyebrow,
.van-hero:has(.ph) .van-hero-cap h2 { color: var(--ink); }
[data-direction="bold"] .van-hero { border-radius: 8px; }
@media (max-width: 640px) {
  .van-hero { aspect-ratio: 16 / 9; }
  .van-hero-cap { padding: 18px 20px; }
}

/* ============================================================
   Full-width photo hero (homepage) — truck on the right,
   text on the left over a paper-tinted scrim
   ============================================================ */
.hero.hero-photo {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--paper-2);
  min-height: 500px;
  display: flex;
  align-items: center;
}
.hero-photo .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.28);
  transform-origin: left center;
  z-index: 0;
}
/* paper gradient: solid on the left for text legibility, clearing to the
   right so the branded truck reads cleanly */
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    var(--paper-2) 0%,
    var(--paper-2) 32%,
    color-mix(in srgb, var(--paper-2) 86%, transparent) 46%,
    color-mix(in srgb, var(--paper-2) 30%, transparent) 62%,
    transparent 80%
  );
}
.hero-photo .container { position: relative; z-index: 2; width: 100%; }
.hero-photo .hero-content {
  max-width: 600px;
  padding: 24px 0 60px;
}
/* Compressed vertical rhythm so the trust stats land above the fold */
.hero-photo .hero-eyebrow { margin-bottom: 10px; }
.hero-photo h1 { font-size: clamp(32px, 4.4vw, 58px); margin-bottom: 10px; }
.hero-photo .lede { margin-bottom: 16px; }
.hero-photo .hero-ctas { margin-bottom: 18px; }
.hero-photo .hero-trust { padding-top: 14px; }
.hero-sub {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin: -4px 0 12px;
  letter-spacing: 0.01em;
}
@media (max-width: 860px) {
  .hero.hero-photo { min-height: 0; }
  .hero-photo::before {
    background: linear-gradient(
      180deg,
      var(--paper-2) 0%,
      var(--paper-2) 30%,
      color-mix(in srgb, var(--paper-2) 72%, transparent) 70%,
      color-mix(in srgb, var(--paper-2) 60%, transparent) 100%
    );
  }
  .hero-photo .hero-content { max-width: 100%; padding: 40px 0 72px; }
  .hero-sub { margin: -10px 0 16px; }
}

/* ============================================================
   Guarantees grid (geteco-style named trust badges)
   ============================================================ */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.guarantee-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 24px 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.guarantee-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.guarantee-card .g-badge {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--primary) 12%, transparent);
  color: var(--primary);
}
.guarantee-card .g-badge svg { width: 22px; height: 22px; }
.guarantee-card h3 {
  font-size: 19px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.guarantee-card p {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 940px) {
  .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .guarantee-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   DIRECTION C — "Friendly" (geteco-inspired: warm, rounded,
   green-forward, approachable home-services feel)
   ============================================================ */
[data-direction="friendly"] {
  --font-display: "Bricolage Grotesque", "Geist", system-ui, sans-serif;

  /* Warm cream paper + warm green-tinted ink */
  --paper: #FFFDF8;
  --paper-2: #F6F0E4;
  --paper-3: #ECE3D2;
  --cream: #F8F1E4;
  --ink: #18271C;
  --ink-2: #38473C;
  --ink-3: #64726A;
  --ink-4: #93A096;
  --line: #E8DFCD;
  --line-2: #F1EADC;

  /* Warm sunny accent replaces the cool blue */
  --accent: #F2A024;
  --accent-deep: #D9851A;

  /* Friendlier, rounder geometry */
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 6px rgba(40, 60, 30, 0.05);
  --shadow: 0 10px 30px -12px rgba(40, 60, 30, 0.18), 0 2px 6px rgba(40, 60, 30, 0.05);
  --shadow-lg: 0 30px 70px -24px rgba(40, 60, 30, 0.28), 0 10px 24px -12px rgba(40, 60, 30, 0.16);
}
[data-direction="friendly"] body {
  background: var(--paper);
}
[data-direction="friendly"] h1,
[data-direction="friendly"] h2,
[data-direction="friendly"] h3 {
  letter-spacing: -0.025em;
  line-height: 1.04;
}

/* Eyebrows go warm + friendly */
[data-direction="friendly"] .eyebrow {
  color: var(--accent-deep);
  letter-spacing: 0.14em;
}

/* Fully-pill, lifted buttons */
[data-direction="friendly"] .btn {
  border-radius: var(--radius-pill);
  font-weight: 600;
}
[data-direction="friendly"] .btn-primary {
  box-shadow: 0 10px 22px -8px color-mix(in oklab, var(--primary) 70%, transparent);
}
[data-direction="friendly"] .btn-outline {
  border-color: color-mix(in oklab, var(--ink) 16%, transparent);
}
/* High-contrast "Book online" button so it reads on the photo hero */
.btn-book {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}
.btn-book:hover {
  background: color-mix(in oklab, var(--ink) 88%, #fff);
  color: #fff;
}
[data-direction="friendly"] .phone-cta {
  box-shadow: 0 10px 22px -8px color-mix(in oklab, var(--primary) 65%, transparent);
}

/* Warm hero with a soft green glow */
[data-direction="friendly"] .hero {
  background:
    radial-gradient(120% 90% at 85% -10%, color-mix(in oklab, var(--primary) 14%, transparent) 0%, transparent 55%),
    radial-gradient(90% 70% at 0% 110%, color-mix(in oklab, var(--accent) 16%, transparent) 0%, transparent 50%),
    var(--paper-2);
}
[data-direction="friendly"] .hero h1 .accent {
  color: var(--primary);
  font-style: normal;
  position: relative;
}
[data-direction="friendly"] .hero-eyebrow {
  border-radius: var(--radius-pill);
  border-color: color-mix(in oklab, var(--primary) 22%, transparent);
  background: color-mix(in oklab, var(--paper) 70%, white);
}
[data-direction="friendly"] .hero-visual {
  border-radius: 36px;
  background: linear-gradient(160deg, #E9F3E4 0%, #CFE6CC 100%);
}
[data-direction="friendly"] .hero-visual .float-card {
  border-radius: 18px;
}

/* Bigger friendly section headings */
[data-direction="friendly"] .section-head h2 {
  font-size: clamp(34px, 4.4vw, 62px);
}

/* Rounder cards everywhere */
[data-direction="friendly"] .service-card {
  border-radius: var(--radius-lg);
}
[data-direction="friendly"] .service-card .img-wrap {
  border-radius: 0;
}
[data-direction="friendly"] .guarantee-card {
  background: var(--paper);
  border-color: var(--line);
}
[data-direction="friendly"] .guarantee-card .g-badge {
  border-radius: 16px;
}
[data-direction="friendly"] .review-card {
  border-radius: var(--radius-lg);
}
[data-direction="friendly"] .story .image { border-radius: var(--radius-lg); }
[data-direction="friendly"] .emergency-banner { border-radius: var(--radius-lg); }
[data-direction="friendly"] .trust-strip .trust-badge { color: var(--ink-2); }
[data-direction="friendly"] .ph { border-radius: inherit; }

/* Friendly direction shows neither "only-bold" nor needs trusted-only hiding */
[data-direction="friendly"] .only-bold { display: none; }

/* ============================================================
   Eco-style green callout box (geteco signature element)
   ============================================================ */
.eco-callout {
  margin: 56px 0;
  background:
    radial-gradient(120% 160% at 100% 0%, color-mix(in oklab, var(--accent) 30%, transparent) 0%, transparent 55%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}
.eco-callout h3 {
  color: white;
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.eco-callout p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  max-width: 60ch;
}
.eco-callout p a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.eco-callout-btn {
  background: white;
  color: var(--primary-deep);
  white-space: nowrap;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.3);
}
.eco-callout-btn:hover {
  background: white;
  color: var(--primary-deep);
}
[data-direction="bold"] .eco-callout { border-radius: 8px; }
@media (max-width: 740px) {
  .eco-callout { grid-template-columns: 1fr; padding: 30px 26px; }
}

/* ============================================================
   Offer cards band (geteco signature: coupons overlapping hero)
   ============================================================ */
.offer-band {
  position: relative;
  z-index: 3;
  margin-top: -44px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 0.8fr;
  gap: 16px;
}
.offer-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 4px solid var(--primary);
}
.offer-amount {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.offer-sub {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
  flex: 1;
}
.offer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.offer-code {
  font-size: 12px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.offer-code strong {
  font-family: var(--font-mono);
  color: var(--ink);
  letter-spacing: 0.06em;
}
.offer-claim {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.offer-claim:hover { gap: 8px; }
.offer-all {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  box-shadow: var(--shadow);
  transition: transform 0.18s;
}
.offer-all:hover { transform: translateY(-3px); color: white; }
.offer-all svg { align-self: flex-end; }
[data-direction="bold"] .offer-card,
[data-direction="bold"] .offer-all { border-radius: 8px; }
@media (max-width: 900px) {
  .offer-band { grid-template-columns: 1fr 1fr; margin-top: 24px; }
}
@media (max-width: 560px) {
  .offer-band { grid-template-columns: 1fr; }
}

/* ============================================================
   Full-green Service Areas band (geteco signature)
   ============================================================ */
[data-direction="friendly"] .section.areas-band {
  background:
    radial-gradient(90% 120% at 100% 0%, color-mix(in oklab, var(--accent) 22%, transparent) 0%, transparent 50%),
    linear-gradient(160deg, var(--primary) 0%, var(--primary-deep) 100%);
}
[data-direction="friendly"] .areas-band .eyebrow { color: rgba(255, 255, 255, 0.85); }
[data-direction="friendly"] .areas-band h2,
[data-direction="friendly"] .areas-band .lede { color: white; }
[data-direction="friendly"] .areas-band .lede { color: rgba(255, 255, 255, 0.9); }
[data-direction="friendly"] .areas-band .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}
[data-direction="friendly"] .areas-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
}
[data-direction="friendly"] .areas-band .areas-grid {
  border: none;
  border-radius: 0;
  overflow: visible;
  gap: 10px;
}
[data-direction="friendly"] .areas-band .areas-grid a {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  color: white;
  transition: background 0.15s, transform 0.15s, color 0.15s;
}
[data-direction="friendly"] .areas-band .areas-grid a:hover {
  background: white;
  color: var(--primary-deep);
  transform: translateY(-2px);
}
[data-direction="friendly"] .areas-band .areas-grid a::after { color: inherit; }
[data-direction="friendly"] .areas-band .areas-grid a span { color: inherit; }

/* ============================================================
   Google Map embed
   ============================================================ */
.map-embed {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-3);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   ReviewBuzz widget
   ============================================================ */
.rb-widget {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.rb-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.rb-brand { display: flex; flex-direction: column; gap: 2px; }
.rb-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.rb-logo span { color: var(--primary); }
.rb-powered { font-size: 12px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.08em; }
.rb-score { display: flex; align-items: center; gap: 12px; }
.rb-rating {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.rb-stars { color: #F5A623; letter-spacing: 2px; font-size: 16px; }
.rb-count { font-size: 12.5px; color: var(--ink-3); margin-top: 3px; }
.rb-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.rb-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.rb-card-stars { color: #F5A623; letter-spacing: 1px; font-size: 14px; margin-bottom: 8px; }
.rb-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.rb-card-author { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-3); }
.rb-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.rb-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.rb-powered-by { font-size: 12.5px; color: var(--ink-4); }
.rb-powered-by strong { color: var(--primary); }

/* compact variant — sits in the footer site-wide */
.rb-compact { padding: 18px 24px; }
.rb-compact .rb-foot { margin-top: 16px; padding-top: 14px; }
.footer .rb-widget {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
  margin-bottom: 32px;
}
.footer .rb-logo { color: #fff; }
.footer .rb-rating { color: #fff; }
.footer .rb-count { color: rgba(255,255,255,0.6); }
.footer .rb-powered-by { color: rgba(255,255,255,0.55); }
.footer .rb-foot { border-top-color: rgba(255,255,255,0.12); }

@media (max-width: 700px) {
  .rb-head { justify-content: flex-start; }
  .rb-rating { font-size: 38px; }
}

/* ============================================================
   Reviews spotlight (location pages)
   ============================================================ */
.reviews-spotlight {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}
.reviews-spotlight-stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.rs-rating {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}
.rs-count { font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 12px; }
.rs-sub { font-size: 13px; color: var(--ink-3); margin-top: 4px; }
.reviews-spotlight-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
@media (max-width: 860px) {
  .reviews-spotlight { grid-template-columns: 1fr; gap: 24px; }
  .reviews-spotlight-stat { position: static; }
}

/* ============================================================
   MOBILE PASS — many section grids set grid-template-columns
   INLINE (React style props), so collapsing them needs !important.
   ============================================================ */
html, body { overflow-x: hidden; }
@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr !important; gap: 28px !important; align-items: start !important; }
  .final-cta { grid-template-columns: 1fr !important; gap: 26px !important; padding: 44px 28px !important; }
  .vip-row { grid-template-columns: 1fr !important; gap: 16px !important; }
}
@media (max-width: 760px) {
  .svc-leaf-grid { grid-template-columns: 1fr 1fr !important; }
  .warn-grid { grid-template-columns: 1fr 1fr !important; }
  .affil-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 560px) {
  .svc-leaf-grid, .warn-grid, .affil-grid { grid-template-columns: 1fr !important; }
  /* Hero trust stats: clean 2×2 so labels never clip at the fold */
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; }
  .hero-trust .num { font-size: 23px; }
  .hero-trust .lbl { font-size: 12px; line-height: 1.35; }
  .hero-photo .hero-content { padding: 32px 0 56px; }
  .hero-photo h1 { font-size: clamp(30px, 8.5vw, 40px); }
  .section { padding: 48px 0; }
  /* keep inner form field pairs from crowding */
  .page-hero-grid .field + .field { margin-top: 0; }
}
@media (max-width: 400px) {
  .hero-trust { gap: 16px 10px; }
  .hero-trust .num { font-size: 21px; }
}


/* ============================================================
   Card hover states (ported from component inline styles)
   ============================================================ */
.svc-leaf-card:hover {
  transform: translateY(-3px);
  border-color: transparent !important;
  box-shadow: var(--shadow);
}
.svc-leaf-card { text-decoration: none; }

/* ============================================================
   NATIVE-BLOCK LAYER — styles for client-editable Gutenberg
   blocks (replaces the inline styles from the design export)
   ============================================================ */

/* Group/figure resets */
.wp-block-group { min-width: 0; }
figure.wp-block-image { margin: 0; }
figure.wp-block-image img { display: block; }

/* Buttons: map core button block to the design system */
.wp-block-buttons { display: inline-flex; gap: 12px; flex-wrap: wrap; }
.wp-block-button .wp-block-button__link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px; line-height: 1;
  background: var(--primary); color: #fff; border: 1.5px solid transparent;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.wp-block-button .wp-block-button__link:hover { background: var(--primary-deep); transform: translateY(-1px); color: #fff; }
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover { border-color: var(--ink); background: var(--paper-2); color: var(--ink); }
.wp-block-button.btn-lg-like .wp-block-button__link { padding: 17px 28px; font-size: 16px; }
.wp-block-button.btn-book-like .wp-block-button__link { background: var(--ink); }
.wp-block-button.btn-book-like .wp-block-button__link:hover { background: color-mix(in oklab, var(--ink) 88%, #fff); }
.wp-block-button.on-dark .wp-block-button__link { color: #fff; border-color: rgba(255,255,255,.25); background: transparent; }
.wp-block-button.on-dark .wp-block-button__link:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.eco-callout .wp-block-button .wp-block-button__link,
.wp-block-button.eco-callout-btn .wp-block-button__link { background: #fff; color: var(--primary-deep); white-space: nowrap; box-shadow: 0 10px 24px -8px rgba(0,0,0,.3); }
.final-cta .fc-phone .wp-block-button__link { background: #fff; color: var(--ink); width: 100%; justify-content: center; }
.final-cta .fc-book .wp-block-button__link { background: rgba(0,0,0,.2); color: #fff; width: 100%; justify-content: center; }
.emergency-banner .wp-block-button .wp-block-button__link { background: var(--primary); }

/* Phone CTA pattern internals */
.phone-cta .pc-label { display: block; font-size: 10px; opacity: .75; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.phone-cta .pc-number { display: block; }

/* Icon chips (decorative html islands) */
.icon-chip { display: inline-flex; align-items: center; justify-content: center; }
.icon-chip svg { width: 20px; height: 20px; }

/* Section head split */
.section-head { align-items: end; }
.section-head .sh-left, .section-head .sh-right { min-width: 0; }

/* Page hero structural */
.page-hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: end; }
.page-hero-grid.two-col { grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.page-hero-grid.two-one { grid-template-columns: 2fr 1fr; gap: 60px; align-items: start; }
.page-hero .actions, .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; align-items: center; }
.actions.centered { justify-content: center; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }
.crumbs a { color: inherit; }
.crumbs a:hover { color: var(--primary); }

/* Category/photo side card */
.ph-photo { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-3); }
.ph-photo figure, .ph-photo img { width: 100%; height: 100%; object-fit: cover; }
.ph-side.portrait { aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; background: var(--paper-3); }
.ph-side.portrait figure, .ph-side.portrait img { width: 100%; height: 100%; object-fit: cover; }

/* Price/response/stats/score cards (page heroes) */
.price-card, .response-card, .stats-card, .score-card {
  background: #fff; padding: 24px; border-radius: 20px; border: 1px solid var(--line);
}
.price-card { box-shadow: var(--shadow); }
.pc-eyebrow { font-size: 13px; color: var(--ink-3); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.pc-big { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.response-card .pc-big { font-size: 36px; }
.pc-note { font-size: 13px; color: var(--ink-3); }
.pc-chips { margin-top: 16px; }
.rc-divider { height: 1px; background: var(--line); margin: 16px 0; }
.rc-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 13px; color: var(--ink-3); }
.rc-row .ok { color: var(--primary); }
.stats-card .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat .num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--ink); line-height: 1.1; }
.stat .lbl { font-size: 12px; color: var(--ink-3); }
.stat-row { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 20px; }
.score-card { padding: 28px; text-align: center; }
.sc-big { font-family: var(--font-display); font-size: 72px; font-weight: 700; line-height: 1; color: var(--ink); }
.sc-count { font-size: 14px; color: var(--ink-3); margin-top: 8px; }
.sc-sources { font-size: 13px; color: var(--ink-3); margin-top: 8px; }
.hero-trust .stat .num .plus { color: var(--primary); }
.chip-line { margin-bottom: 16px; }
.chip-line::before { content: none; }
.loc-line { display: flex; align-items: center; gap: 8px; color: var(--primary); margin-bottom: 12px; font-weight: 600; font-size: 14px; }
.loc-line .icon-chip svg { width: 16px; height: 16px; }
.loc-meta { color: var(--primary); font-weight: 600; font-size: 14px; }

/* Service leaf cards */
.svc-leaf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-leaf-card { display: block; padding: 28px 28px 32px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .2s, box-shadow .2s, border-color .2s; }
.svc-leaf-card.slim { padding: 24px; border-radius: 16px; }
.svc-leaf-card h3 { font-size: 19px; margin-bottom: 8px; }
.svc-leaf-card h3 a { color: inherit; }
.svc-leaf-card h3 a:hover { color: var(--primary); }
.svc-leaf-card p { font-size: 14px; color: var(--ink-3); }
.slc-head { display: flex; justify-content: space-between; margin-bottom: 12px; }
.slc-icon { width: 40px; height: 40px; border-radius: 10px; background: color-mix(in oklab, var(--primary) 12%, white); color: var(--primary); }
.slc-icon svg { width: 18px; height: 18px; }
.slc-arrow { color: var(--ink-4); }
.slc-arrow svg { width: 18px; height: 18px; }

/* Bullets */
.bullets { margin: 24px 0 28px; }
.bullet { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: 15px; color: var(--ink-2); }
.bullet p { margin: 0; }
.bullet .check { width: 22px; height: 22px; border-radius: 50%; background: color-mix(in oklab, var(--primary) 15%, white); color: var(--primary); flex: 0 0 22px; margin-top: 2px; }
.bullet .check svg { width: 12px; height: 12px; }

/* Quote / included / booking cards */
.quote-card, .included-card, .math-card { background: #fff; border-radius: 20px; padding: 32px; border: 1px solid var(--line); }
.included-card { background: var(--paper-2); border: none; }
.quote-card h3, .included-card h3 { font-size: 20px; margin-bottom: 8px; }
.qc-sub { font-size: 14px; color: var(--ink-3); margin-bottom: 20px; }
.quote-card .phone-cta { width: 100%; justify-content: center; margin-bottom: 10px; }
.vip-note { margin-top: 18px; }
.vip-note a { display: block; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px; font-size: 14px; }
.vip-note .vip-more { color: var(--primary); font-weight: 600; font-size: 13px; }
.booking-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); padding: 40px; text-align: center; }
.booking-card h3 { font-size: 24px; margin-bottom: 10px; }
.booking-card .qc-sub { max-width: 52ch; margin: 0 auto 24px; }

/* Warning / process cards */
.warn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.warn-item { display: flex; gap: 10px; padding: 14px 16px; background: var(--paper-2); border-radius: 12px; }
.warn-item p { font-size: 14px; color: var(--ink-2); margin: 0; }
.warn-icon { color: var(--accent); flex: 0 0 18px; margin-top: 2px; }
.warn-icon svg { width: 18px; height: 18px; }
.proc-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 16px; }
.proc-card { background: #fff; padding: 28px; border-radius: 16px; border: 1px solid var(--line); }
.proc-card.tinted { background: var(--paper-2); border: none; }
.proc-num { font-family: var(--font-display); font-size: 14px; color: var(--primary); font-weight: 700; letter-spacing: .06em; }
.proc-card h3 { font-size: 19px; margin: 12px 0 8px; }
.proc-card p { font-size: 14px; color: var(--ink-3); }

/* FAQ via core details block */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.wp-block-details.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; padding: 0; }
.wp-block-details.faq-item summary { padding: 22px 24px; cursor: pointer; font-weight: 600; font-size: 17px; list-style: none; position: relative; transition: background .15s; }
.wp-block-details.faq-item summary::-webkit-details-marker { display: none; }
.wp-block-details.faq-item summary::after { content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 300; color: var(--ink-3); transition: transform .2s; }
.wp-block-details.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--primary); }
.wp-block-details.faq-item summary:hover { background: var(--paper-2); }
.wp-block-details.faq-item .faq-answer { padding: 0 24px 22px; color: var(--ink-3); font-size: 15px; line-height: 1.6; display: block; }

/* Review cards (native) */
.rc-quote { font-size: 16px; color: var(--ink-2); line-height: 1.55; flex: 1; font-style: italic; }
.review-card .author { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--line); }
.author-meta p { margin: 0; }
.author-meta .name { font-weight: 600; font-size: 14px; }
.author-meta .city { font-size: 12px; color: var(--ink-3); }
.review-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 20px; }
.scroll-row .review-card { width: 380px; }
.reviews-spotlight-cards .review-card { width: auto; }

/* Areas index */
.county-block { margin-bottom: 48px; }
.county-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.county-head h3 { font-size: 24px; }
.county-count { font-size: 13px; color: var(--ink-3); }
.fake-map { background: var(--paper-2); border-radius: 24px; padding: 36px; position: relative; aspect-ratio: 1/1; overflow: hidden; }
.fake-map-badge { position: absolute; bottom: 16px; left: 16px; padding: 8px 12px; background: #fff; border-radius: 8px; box-shadow: var(--shadow); font-size: 12px; display: flex; align-items: center; gap: 8px; }

/* Van hero image (block) */
.van-hero figure.van-img, .van-hero .van-img img { position: absolute; inset: 0; width: 100%; height: 100%; }
.van-hero .van-img img { object-fit: cover; object-position: center 72%; }

/* Service card figure sizing */
.service-card .img-wrap figure { width: 100%; height: 100%; }
.service-card .img-wrap figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card .links p { margin: 0; }
.service-card .links .svc-link a { font-size: 14px; padding: 6px 0; color: var(--ink-2); display: block; }
.service-card .links .svc-link a:hover { color: var(--primary); padding-left: 4px; }
.service-card .links .svc-link.more a { color: var(--primary); font-weight: 600; padding-top: 8px; }
.card-more a { color: var(--primary); font-weight: 600; font-size: 14px; }
.story .image figure, .story .image img { width: 100%; height: 100%; object-fit: cover; }

/* Home hero (block layout) */
.hero-photo figure.hero-bg-img { position: absolute; inset: 0; margin: 0; z-index: 0; }
.hero-photo figure.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; transform: scale(1.28); transform-origin: left center; }
.hero-trust .stat p { margin: 0; }

/* Offer band (native paragraphs) */
.offer-band p { margin: 0; }
.offer-claim-p .offer-claim { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.offer-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line); }
.offer-all-p { display: contents; }
.offer-all-p .offer-all-link { background: linear-gradient(160deg, var(--primary) 0%, var(--primary-deep) 100%); color: #fff; border-radius: var(--radius-lg); padding: 22px 24px; display: flex; align-items: flex-end; font-weight: 700; font-size: 16px; line-height: 1.25; box-shadow: var(--shadow); transition: transform .18s; }
.offer-all-p .offer-all-link:hover { transform: translateY(-3px); color: #fff; }

/* Trust strip */
.trust-strip .trust-badge p { margin: 0; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.tb-icon { color: var(--primary); }
.tb-icon svg { width: 24px; height: 24px; }
.trust-strip .label { margin: 0; }

/* Guarantee cards */
.guarantee-card .g-badge { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 14px; background: color-mix(in oklab, var(--primary) 12%, transparent); color: var(--primary); }
.guarantee-card .g-badge svg { width: 22px; height: 22px; }
.g-body h3 { font-size: 19px; margin-bottom: 6px; }
.g-body p { color: var(--ink-3); font-size: 14px; line-height: 1.5; }

/* Emergency banner / dark sections */
.emergency-banner { grid-template-columns: 1fr auto; }
.emergency-banner .eb-left h2 { color: #fff; }
.emergency-banner p { color: rgba(255,255,255,.7); margin-top: 12px; max-width: 480px; }
.section-dark .vip-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.vip-tile { padding: 32px; background: rgba(255,255,255,.04); border-radius: 20px; }
.vip-tile h3 { color: #fff; font-size: 24px; margin: 12px 0 8px; }
.vip-tile p { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 8px; }
.vip-tile .vt-link a { color: #fff; font-weight: 600; }
.vt-icon { width: 48px; height: 48px; border-radius: 12px; }
.vt-icon.primary { background: var(--primary); color: #fff; }
.vt-icon.accent { background: var(--accent); color: #fff; }
.vt-icon.white { background: #fff; color: var(--ink); }
.vt-icon svg { width: 22px; height: 22px; }

/* Final CTA (synced pattern) */
.final-cta { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); border-radius: 24px; padding: 56px 48px; color: #fff; display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; }
.final-cta h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.final-cta p { color: rgba(255,255,255,.9); font-size: 16px; max-width: 480px; }
.final-cta .fc-right { display: flex; flex-direction: column; gap: 10px; }
.final-cta .fc-right .wp-block-buttons, .final-cta .fc-right .wp-block-button { width: 100%; display: block; }

/* About/owner/associations */
.affil-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.affil-cell { background: #fff; padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.affil-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--paper-2); color: var(--primary); }
.affil-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; line-height: 1.3; }
.affil-sub { font-size: 12px; color: var(--ink-3); }
.note-wrap { max-width: 820px; margin: 0 auto; }
.note-p { font-size: 17px; color: var(--ink-2); margin-bottom: 16px; line-height: 1.65; }
.cred-grid { margin-top: 40px; grid-template-columns: repeat(3, 1fr) !important; gap: 16px; }
.cred-card { padding: 24px; background: var(--paper-2); border-radius: 16px; }
.cred-card h3 { font-size: 16px; margin: 8px 0 4px; }
.cred-card p { font-size: 13px; color: var(--ink-3); }
.cred-icon { color: var(--primary); }
.cred-icon svg { width: 24px; height: 24px; }
.lic-grid { margin-bottom: 56px; }
.lic-card { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.lic-card h3 { font-size: 18px; margin: 12px 0 6px; }
.lic-num { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.lic-org { font-size: 13px; color: var(--ink-3); }
.lic-icon { color: var(--primary); }
.assoc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; background: none; border: none; border-radius: 0; overflow: visible; margin-bottom: 56px; }
.assoc-card { padding: 24px; background: var(--paper-2); border-radius: 16px; }
.assoc-card h3 { font-size: 16px; margin: 10px 0 4px; }
.assoc-sub { font-size: 12px; color: var(--ink-3); line-height: 1.4; }
.assoc-icon { color: var(--accent); }
.award-list { display: flex; flex-direction: column; gap: 12px; }
.award-row { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 24px; display: flex; align-items: center; gap: 20px; }
.award-year { font-family: var(--font-display); font-weight: 700; color: var(--primary); font-size: 20px; margin: 0; }
.award-title { font-weight: 600; margin: 0; }
.award-org { font-size: 13px; color: var(--ink-3); margin: 0; }
.associations-body h2 { margin: 40px 0 24px; font-size: 28px; }

/* Careers */
.job-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.job-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.job-card h3 { font-size: 18px; margin-bottom: 4px; }
.job-sub { font-size: 13px; color: var(--ink-3); margin: 0; }

/* VIP page */
.benefit-grid { grid-template-columns: repeat(3, 1fr) !important; }
.benefit-card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.benefit-card h3 { font-size: 19px; margin: 14px 0 8px; }
.benefit-card p { font-size: 14px; color: var(--ink-3); }
.benefit-icon { width: 44px; height: 44px; border-radius: 12px; background: color-mix(in oklab, var(--primary) 12%, white); color: var(--primary); }
.vip-card-visual { background: linear-gradient(160deg, var(--ink) 0%, color-mix(in oklab, var(--ink) 70%, var(--primary)) 100%); border-radius: 24px; padding: 28px; color: #fff; position: relative; overflow: hidden; }
.vcv-brand { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px; }
.vcv-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 32px; }
.vcv-meta { font-size: 12px; color: rgba(255,255,255,.6); }
.vcv-row { display: flex; justify-content: space-between; margin-top: 4px; font-family: var(--font-mono); font-size: 14px; }
.vcv-glow { position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: var(--primary); opacity: .2; }
.math-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink-2); margin: 0; }
.math-row .pos { color: var(--primary); }
.math-row .neg { color: var(--ink-3); }
.math-total { display: flex; justify-content: space-between; padding: 20px 0 0; font-size: 18px; font-weight: 700; margin: 0; }
.math-total .total { color: var(--primary); font-family: var(--font-display); }

/* Financing */
.greensky-card { aspect-ratio: 1/1; border-radius: 20px; background: linear-gradient(135deg, var(--paper-2) 0%, color-mix(in oklab, var(--primary) 14%, white) 100%); padding: 32px; display: flex; flex-direction: column; justify-content: space-between; }
.gc-eyebrow { font-size: 13px; color: var(--ink-3); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.gc-logo { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--primary-deep); }
.gc-fine { font-size: 13px; color: var(--ink-3); }
.fin-controls label { font-size: 13px; color: var(--ink-3); font-weight: 600; }
.fin-amount { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--ink); margin: 6px 0 8px; }
.fin-controls input[type=range] { width: 100%; accent-color: var(--primary); }
.fin-range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-4); margin-top: 4px; }
.fin-terms { display: flex; gap: 8px; margin-top: 8px; }
.fin-terms button { flex: 1; padding: 12px 8px; border: 1.5px solid var(--line); background: #fff; border-radius: 8px; cursor: pointer; font-weight: 600; font-size: 14px; }
.fin-terms button.active { border-color: var(--primary); background: color-mix(in oklab, var(--primary) 8%, white); }
.fin-result { background: var(--ink); color: #fff; border-radius: 24px; padding: 40px; }
.fr-eyebrow { font-size: 13px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; }
.fr-big { font-family: var(--font-display); font-size: 72px; font-weight: 700; line-height: 1; }
.fr-mo { font-size: 24px; color: rgba(255,255,255,.6); margin-left: 6px; }
.fr-stats { display: flex; gap: 28px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.fr-lbl { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.fr-val { font-size: 20px; font-weight: 700; margin-top: 4px; }
.fr-cta { width: 100%; margin-top: 28px; background: #fff; color: var(--ink); justify-content: center; }
.fr-fine { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 12px; line-height: 1.5; }

/* Coupons */
.coupon-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 20px; }
.coupon-card { background: #fff; border: 1.5px dashed var(--primary); border-radius: 20px; padding: 32px; position: relative; overflow: hidden; }
.coupon-card::before { content: ""; position: absolute; top: -20px; right: -20px; width: 80px; height: 80px; border-radius: 50%; background: color-mix(in oklab, var(--primary) 10%, white); }
.coupon-amount { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--primary); line-height: 1; position: relative; margin: 0; }
.coupon-free .coupon-amount { font-size: 32px; }
.coupon-sub { font-size: 15px; color: var(--ink-2); margin: 12px 0 24px; font-weight: 500; position: relative; }
.coupon-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px dashed var(--line); position: relative; }
.cf-lbl { font-size: 10px; color: var(--ink-4); text-transform: uppercase; letter-spacing: .08em; margin: 0; }
.cf-val { font-size: 13px; font-weight: 600; margin: 0; }
.cf-val.mono { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--ink); }
.cf-exp { text-align: right; }
.fine-print { margin-top: 48px; padding: 28px; background: var(--paper-2); border-radius: 16px; font-size: 13px; color: var(--ink-3); }
.fine-print strong { color: var(--ink); }

/* Referral */
.referral-visual { background: var(--ink); color: #fff; padding: 32px; border-radius: 20px; position: relative; overflow: hidden; }
.rv-big { font-family: var(--font-display); font-size: 56px; font-weight: 700; line-height: 1; }
.rv-sub { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; }

/* Contact */
.contact-methods { background: #fff; padding: 24px; border-radius: 20px; border: 1px solid var(--line); }
.cm-item { display: flex; gap: 16px; align-items: center; padding: 14px 16px; background: var(--paper-2); border-radius: 12px; margin-bottom: 12px; }
.cm-item:last-child { margin-bottom: 0; }
.cm-icon { width: 44px; height: 44px; border-radius: 50%; color: #fff; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 44px; }
.cm-phone { background: var(--primary); }
.cm-mail { background: var(--accent); }
.cm-map { background: var(--ink); }
.cm-lbl { display: block; font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; }
.cm-val { display: block; font-weight: 700; font-size: 18px; color: var(--ink); }
.cm-val.small { font-weight: 600; font-size: 14px; }
.hours-table .hours-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); margin: 0; }
.hours-table .hours-row:last-child { border-bottom: none; }
.hours-row .ok { color: var(--primary); font-weight: 600; }
.hours-note { font-size: 13px; color: var(--ink-3); }

/* Rows-of-cards responsive */
@media (max-width: 900px) {
  .page-hero-grid, .page-hero-grid.two-col, .page-hero-grid.two-one { grid-template-columns: 1fr !important; gap: 28px; }
  .svc-leaf-grid, .review-grid, .benefit-grid, .coupon-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .proc-grid, .cred-grid { grid-template-columns: 1fr 1fr !important; }
  .affil-grid, .assoc-grid { grid-template-columns: 1fr 1fr; }
  .section-dark .vip-row { grid-template-columns: 1fr; }
  .emergency-banner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .svc-leaf-grid, .review-grid, .benefit-grid, .coupon-grid, .proc-grid, .cred-grid, .warn-grid { grid-template-columns: 1fr !important; }
  .affil-grid, .assoc-grid { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; padding: 36px 28px; }
}

/* ============================================================
   Wrapper-class neutralizer — design button classes applied to
   wp-block-button WRAPPERS must never paint the wrapper itself
   ============================================================ */
.wp-block-button.btn-lg, .wp-block-button.btn-sm,
.wp-block-button.eco-callout-btn, .wp-block-button.btn-lg-like,
.wp-block-button.btn-book-like, .wp-block-button.on-dark,
.wp-block-button.fc-phone, .wp-block-button.fc-book,
.wp-block-button.btn-sm-like {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border: none !important;
  transform: none !important;
}
.wp-block-button.btn-lg .wp-block-button__link { padding: 17px 28px; font-size: 16px; }
.wp-block-button.btn-sm .wp-block-button__link { padding: 10px 16px; font-size: 14px; }
.wp-block-button.eco-callout-btn .wp-block-button__link {
  background: #fff; color: var(--primary-deep); white-space: nowrap;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.3);
}
.wp-block-button.eco-callout-btn .wp-block-button__link:hover { background: #fff; color: var(--primary-deep); }
/* hero bg: scale belongs on the img only — the design rule also matches the figure wrapper */
.hero-photo figure.hero-bg-img { transform: none; }

/* ============================================================
   Icon chip centering — every fixed-size icon box centers its svg
   ============================================================ */
.slc-icon, .slc-arrow, .benefit-icon, .vt-icon, .affil-icon,
.warn-icon, .loc-icon, .tb-icon, .cred-icon, .lic-icon,
.assoc-icon, .g-badge, .icon-chip, .cm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* WP layout zeroes first-child margin-block-start — restore design margins */
.wp-block-group.offer-band { margin-top: -44px; margin-bottom: 24px; }
@media (max-width: 900px) { .wp-block-group.offer-band { margin-top: 24px; } }
.wp-block-group.eco-callout { margin-top: 56px; margin-bottom: 56px; }

/* ============================================================
   Button icons — CSS-drawn (mask inherits text color)
   ============================================================ */
.wp-block-button[class*="ic-"] .wp-block-button__link::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-color: currentColor;
  -webkit-mask: var(--btn-icon) no-repeat center / contain;
  mask: var(--btn-icon) no-repeat center / contain;
}
.wp-block-button.ic-phone .wp-block-button__link {
  --btn-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.19 13.11a19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z"/></svg>');
}
.wp-block-button.ic-calendar .wp-block-button__link {
  --btn-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/></svg>');
}
.wp-block-button.ic-mail .wp-block-button__link {
  --btn-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22,6 12,13 2,6"/></svg>');
}

/* Section-head buttons + primary glow to match the design */
.wp-block-buttons.sh-btn { margin-top: 20px; }
.wp-block-button .wp-block-button__link {
  box-shadow: 0 10px 22px -8px color-mix(in oklab, var(--primary) 65%, transparent);
}
.wp-block-button.is-style-outline .wp-block-button__link,
.wp-block-button.fc-phone .wp-block-button__link,
.wp-block-button.fc-book .wp-block-button__link,
.wp-block-button.btn-book-like .wp-block-button__link,
.wp-block-button.on-dark .wp-block-button__link { box-shadow: none; }
.wp-block-button.eco-callout-btn .wp-block-button__link { box-shadow: 0 10px 24px -8px rgba(0,0,0,.3); }

/* Outline buttons inside the green areas band read white */
.areas-band .wp-block-button.is-style-outline .wp-block-button__link {
  border-color: rgba(255,255,255,.5); color: #fff;
}
.areas-band .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: rgba(255,255,255,.12); border-color: #fff; color: #fff;
}

/* Inline click-to-call links in ledes read green + bold (per design) */
.lede a[href^="tel:"] {
  color: var(--primary);
  font-weight: 600;
}
.lede a[href^="tel:"]:hover { color: var(--primary-deep); }

/* Mid-page heading sizes (design used inline sizes outside section heads) */
h2.h2-28 { font-size: 28px; margin-bottom: 24px; }
h2.h2-40 { font-size: clamp(28px, 3.4vw, 40px); }
h2.h2-44 { font-size: clamp(28px, 3.4vw, 44px); }
h2.h2-48 { font-size: clamp(32px, 4vw, 48px); }
.h2-tight { margin-top: 8px; margin-bottom: 20px; }

/* Paragraph spacing utilities */
p.mb-12 { margin-bottom: 12px; }
p.mb-16 { margin-bottom: 16px; }
p.mb-20 { margin-bottom: 20px; }
p.mb-24 { margin-bottom: 24px; }

/* Mini lead form inside quote cards (per design MiniLeadForm) */
.quote-card .lead-form { box-shadow: none; padding: 0; border-radius: 0; }
.lead-form .lf-submit { width: 100%; margin-top: 4px; border: none; }
.lead-form .lf-success { padding: 20px; background: color-mix(in oklab, var(--primary) 8%, white); border-radius: 12px; border: 1px solid color-mix(in oklab, var(--primary) 25%, transparent); }
.lead-form .lf-success .head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-weight: 700; }
.lead-form .lf-success .tick { width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.lead-form .lf-success p { font-size: 14px; color: var(--ink-2); }
.page-hero-grid.align-start { align-items: start; }
.chip-line { margin-bottom: 16px; }

/* Reviews page: filter pills + card ages; quotes not italic (per design) */
.rc-quote { font-style: normal; }
.review-strip blockquote { font-style: italic; }
.review-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.rf-pill { padding: 8px 14px; border: 1.5px solid var(--line); background: #fff; color: var(--ink-2); border-radius: 999px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all .15s; }
.rf-pill.active { border-color: var(--primary); background: var(--primary); color: #fff; }
.rc-head { display: flex; justify-content: space-between; align-items: center; }
.rc-age { font-size: 11px; color: var(--ink-4); margin: 0; }

/* ============================================================
   Booking flow wizard (contact page)
   ============================================================ */
.booking-flow { background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.bf-head { padding: 24px 32px; border-bottom: 1px solid var(--line); background: var(--paper-2); }
.bf-steps { display: flex; align-items: center; gap: 16px; }
.bf-step { display: flex; align-items: center; gap: 10px; opacity: .45; flex: 0 0 auto; }
.bf-step.active, .bf-step.done { opacity: 1; }
.bf-num { width: 28px; height: 28px; border-radius: 50%; background: var(--paper-3); color: var(--ink-3); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; transition: background .2s; }
.bf-step.active .bf-num { background: var(--ink); color: #fff; }
.bf-step.done .bf-num { background: var(--primary); color: #fff; }
.bf-lbl { font-size: 14px; font-weight: 500; color: var(--ink-3); }
.bf-step.active .bf-lbl { font-weight: 600; color: var(--ink); }
.bf-bar { flex: 1; height: 2px; background: var(--paper-3); border-radius: 2px; }
.bf-bar.done { background: var(--primary); }
.bf-body { padding: 40px; min-height: 480px; }
.bf-panel h3 { font-size: 26px; margin-bottom: 8px; }
.bf-sub { color: var(--ink-3); font-size: 15px; margin-bottom: 28px; }
.bf-label { display: block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-top: 24px; margin-bottom: 12px; }
.bf-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 8px; }
.bf-cat { display: flex; gap: 16px; align-items: center; padding: 20px 22px; border: 1.5px solid var(--line); background: #fff; border-radius: 12px; text-align: left; cursor: pointer; transition: all .15s; font: inherit; }
.bf-cat.selected { border-color: var(--primary); background: color-mix(in oklab, var(--primary) 6%, white); }
.bf-cat-icon { width: 48px; height: 48px; border-radius: 10px; background: color-mix(in oklab, var(--primary) 12%, white); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 48px; }
.bf-cat-meta { display: flex; flex-direction: column; }
.bf-cat-title { font-weight: 600; font-size: 16px; }
.bf-cat-sub { font-size: 13px; color: var(--ink-3); }
.bf-check { margin-left: auto; width: 24px; height: 24px; border-radius: 50%; background: var(--primary); color: #fff; display: none; align-items: center; justify-content: center; font-size: 12px; }
.bf-cat.selected .bf-check { display: inline-flex; }
.bf-urgency { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.bf-opt { padding: 18px; border: 1.5px solid var(--line); background: #fff; border-radius: 12px; text-align: left; cursor: pointer; font: inherit; transition: all .15s; }
.bf-opt strong { display: block; font-size: 14px; }
.bf-opt span { display: block; font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.bf-opt.selected { border-color: var(--primary); background: color-mix(in oklab, var(--primary) 6%, white); }
.bf-opt.slim { padding: 16px; font-size: 14px; font-weight: 500; text-align: center; }
.bf-opt.disabled { opacity: .45; cursor: not-allowed; }
.bf-opt em { font-style: normal; font-size: 11px; color: var(--ink-4); display: block; }
.bf-emergency-note { margin-top: 16px; padding: 16px; background: color-mix(in oklab, var(--accent) 10%, white); border: 1px solid color-mix(in oklab, var(--accent) 30%, transparent); border-radius: 12px; font-size: 14px; }
.bf-emergency-note a { color: var(--accent-deep); font-weight: 700; }
.bf-row { display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px; }
.booking-flow .field { margin-bottom: 14px; }
.booking-flow .field label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-bottom: 6px; }
.booking-flow .field input, .booking-flow .field select, .booking-flow .field textarea { width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 8px; font-size: 15px; background: #fff; }
.booking-flow .field input:focus, .booking-flow .field select:focus, .booking-flow .field textarea:focus { outline: none; border-color: var(--primary); }
.bf-types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.bf-coverage { margin-top: 24px; padding: 14px; background: color-mix(in oklab, var(--primary) 6%, white); border: 1px solid color-mix(in oklab, var(--primary) 22%, transparent); border-radius: 10px; font-size: 14px; }
.bf-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.bf-day { padding: 12px 6px; border: 1.5px solid var(--line); background: #fff; border-radius: 10px; text-align: center; cursor: pointer; font: inherit; }
.bf-day.selected { border-color: var(--primary); background: color-mix(in oklab, var(--primary) 6%, white); }
.bf-day strong { display: block; font-size: 13px; }
.bf-day span { display: block; font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.bf-windows { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.bf-foot { padding: 20px 32px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; background: var(--paper-2); }
.bf-back { background: none; border: none; font: inherit; font-weight: 600; color: var(--ink-2); cursor: pointer; padding: 10px 16px; border-radius: 8px; }
.bf-back:disabled { opacity: .3; cursor: default; }
.bf-progress { font-size: 13px; color: var(--ink-3); }
.bf-next { font: inherit; font-weight: 600; background: var(--primary); color: #fff; border: none; border-radius: 999px; padding: 14px 22px; cursor: pointer; transition: opacity .15s; }
.bf-next:disabled { opacity: .4; cursor: default; }
.bf-confirm { text-align: center; max-width: 520px; margin: 0 auto; }
.bf-confirm-tick { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.bf-summary { text-align: left; background: var(--paper-2); border-radius: 14px; padding: 20px 24px; margin: 20px 0; }
.bf-summary div { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.bf-summary div:last-child { border-bottom: none; }
.bf-summary span { color: var(--ink-3); }
.bf-fine { font-size: 13px; color: var(--ink-3); }
.bf-fine a { color: var(--primary); font-weight: 600; }
@media (max-width: 760px) {
  .bf-body { padding: 24px; }
  .bf-lbl { display: none; }
  .bf-cats, .bf-urgency, .bf-row, .bf-types { grid-template-columns: 1fr; }
  .bf-days { grid-template-columns: repeat(4, 1fr); }
  .bf-windows { grid-template-columns: repeat(2, 1fr); }
}

/* Explicit icon sizes for chips that lacked them */
.lic-icon svg, .assoc-icon svg { width: 24px; height: 24px; }
.lic-icon { color: var(--primary); margin-bottom: 12px; }
.assoc-icon { color: var(--accent); margin-bottom: 10px; }
.award-ribbon { margin-left: auto; color: var(--ink-4); }
.award-ribbon svg { width: 20px; height: 20px; }
.loc-icon svg { width: 16px; height: 16px; }
.affil-icon svg { width: 22px; height: 22px; }
h2.h2-26 { font-size: 26px; margin-top: 6px; margin-bottom: 20px; }

/* Housecall Pro integration */
button.hcp-button.btn-hcp {
  font: inherit; font-weight: 600; font-size: 16px;
  background: var(--primary); color: #fff; border: none; cursor: pointer;
  border-radius: var(--radius-pill); padding: 17px 28px;
  box-shadow: 0 10px 22px -8px color-mix(in oklab, var(--primary) 65%, transparent);
  transition: transform .15s, background .2s;
}
button.hcp-button.btn-hcp:hover { background: var(--primary-deep); transform: translateY(-1px); }
.hcp-lead-wrap { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 12px; }
.hcp-lead-wrap iframe { width: 100%; min-height: 640px; display: block; border-radius: 12px; }
.quote-card .hcp-lead-wrap { border: none; padding: 0; }
.lead-split { margin-top: 40px; }
button.hcp-button.btn-hcp { text-transform: none; letter-spacing: 0; }

/* Careers note card tint (design parity) */
.quote-card.qc-tint { background: #F0EBDF; border: none; }
.quote-card.qc-tint input, .quote-card.qc-tint textarea, .quote-card.qc-tint select { background: #fff; }

/* Area pages: gap between review cards and ReviewBuzz panel (design=28px; killed by block-gap reset) */
.wp-block-group.rb-holder { margin-top: 28px; }
/* Area pages: van band 8px margins (design; killed by block-gap reset) */
.wp-block-group.van-hero { margin-top: 8px; margin-bottom: 8px; }
/* Mobile: hide CALL NOW label in phone pills (design hides its .label-long equivalent) */
@media (max-width: 720px) { .phone-cta .pc-label { display: none !important; } }
/* Header call button label: inline display:block in the part markup needs !important to hide on mobile */
@media (max-width: 720px) { .phone-cta .label-long { display: none !important; } }
