/* Diaz Hauling — Landing Page Styles */

:root {
  /* Brand palette (derived from logo) */
  --green-primary: #486048;
  --green-dark: #2F4030;
  --green-darker: #1f2a20;
  --green-sage: #5B6F5E;
  --green-action: #61A229;
  --green-action-dark: #4f871f;

  --ink: #161816;
  --ink-2: #2a2d2a;
  --muted: #5A5A5A;
  --muted-2: #8a8e8a;

  --surface: #FFFFFF;
  --surface-alt: #F4F4F4;
  --surface-tint: #ECEFEA;
  --line: #E2E5E0;
  --line-strong: #C9CFC5;

  --gold: #C9A227;
  --gold-soft: #f3e7b8;

  --font-display: 'Oswald', 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --radius: 6px;
  --radius-sm: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(20,30,20,.05), 0 1px 1px rgba(20,30,20,.04);
  --shadow: 0 4px 16px rgba(20,30,20,.06), 0 1px 2px rgba(20,30,20,.04);
  --shadow-lg: 0 18px 40px rgba(20,30,20,.12), 0 4px 10px rgba(20,30,20,.06);

  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ───────── Typography ───────── */
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.92;
  color: var(--ink);
  margin: 0;
}
.h1 { font-size: clamp(48px, 7.2vw, 104px); }
.h2 { font-size: clamp(36px, 4.6vw, 64px); line-height: 0.96; }
.h3 { font-size: clamp(26px, 2.6vw, 36px); line-height: 1; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-primary);
  font-weight: 500;
}
.eyebrow.on-dark { color: #c0d4c0; }
.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-2); line-height: 1.5; max-width: 56ch; }
.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 22px;
  border: 0; border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}
.btn-lg { height: 60px; padding: 0 28px; font-size: 17px; }
.btn-sm { height: 40px; padding: 0 16px; font-size: 13px; }

.btn-action { background: var(--green-action); color: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.1), 0 8px 18px rgba(97,162,41,.28); }
.btn-action:hover { background: var(--green-action-dark); transform: translateY(-1px); }
.btn-primary { background: var(--green-primary); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.btn-outline-light:hover { background: #fff; color: var(--green-primary); border-color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: rgba(0,0,0,.05); }

.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ───────── Top utility bar ───────── */
.utility {
  background: var(--green-darker);
  color: #d6dbd2;
  font-size: 12.5px;
}
.utility-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px; gap: 24px;
}
.utility-left, .utility-right { display: flex; align-items: center; gap: 22px; }
.utility a { color: #fff; text-decoration: none; font-weight: 500; }
.utility a:hover { color: var(--gold-soft); }
.utility .sep { width: 1px; height: 14px; background: rgba(255,255,255,.18); }
.utility .lic { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-soft); font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em; }
.utility .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
@media (max-width: 760px) {
  .utility-right .hide-sm { display: none; }
}

/* ───────── Nav ───────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 32px;
}
.nav-links {
  display: flex; align-items: center; gap: 30px;
}
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
}
.nav-links a:hover { color: var(--green-primary); }
.nav-links a.active { color: var(--green-primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15px; }
.nav-phone:hover { color: var(--green-primary); }

/* Mobile hamburger toggle — hidden on desktop, shown ≤880px below */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { background: var(--surface-alt); }
.nav-toggle-bars { position: relative; display: inline-block; width: 22px; height: 16px; }
.nav-toggle-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 7px; }
.nav-toggle-bars span:nth-child(3) { top: 14px; }
.nav-toggle-bars.open span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-toggle-bars.open span:nth-child(2) { opacity: 0; }
.nav-toggle-bars.open span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* Mobile dropdown menu panel (rendered only while open — see Nav() in sections.jsx) */
.nav-menu-panel {
  position: absolute;
  top: 100%; left: 0; right: 0;
  z-index: 99;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 8px var(--gutter) calc(16px + env(safe-area-inset-bottom));
  animation: navMenuIn .16s ease;
}
@keyframes navMenuIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-menu-links { display: flex; flex-direction: column; }
.nav-menu-links a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
.nav-menu-links a:last-child { border-bottom: 0; }
.nav-menu-links a.active { color: var(--green-primary); }
.nav-menu-actions { display: flex; gap: 10px; margin-top: 14px; }
.nav-menu-actions .btn { flex: 1; justify-content: center; }

@media (max-width: 880px) {
  .utility { display: none; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ───────── Logo wordmark (CSS recreation) ───────── */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--green-primary);
  user-select: none;
}
.logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 0.82;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: inherit;
  font-size: 28px;
}
.logo-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.logo-row .word { letter-spacing: -0.01em; }
.logo-row .arrow-tail {
  display: inline-block;
  width: 18px; height: 2.5px;
  background: currentColor;
  margin-left: 2px;
  position: relative;
}
.logo-row .arrow-tail::after {
  content: '';
  position: absolute;
  right: -1px; top: 50%;
  width: 9px; height: 9px;
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
.logo.on-dark, .logo.on-dark .logo-mark { color: #fff; }
.logo-lg .logo-mark { font-size: 40px; }
.logo-sm .logo-mark { font-size: 22px; }

/* ───────── Hero ───────── */
.hero {
  position: relative;
  background: var(--green-darker);
  color: #fff;
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,28,20,.55) 0%, rgba(20,28,20,.7) 60%, rgba(20,28,20,.85) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: radial-gradient(circle at 50% 0%, rgba(255,255,255,.05), transparent 60%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding-top: clamp(72px, 10vw, 140px);
  padding-bottom: clamp(80px, 9vw, 120px);
}
.hero h1.h-display { color: #fff; }
.hero h1 .accent { color: #b8d4a9; display: inline-block; }
.hero h1 .underline { display:inline-block; position: relative; }
.hero h1 .underline::after {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: 0.08em;
  height: 0.16em; background: var(--green-action); z-index: -1;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5;
  color: #e3eadf;
  max-width: 60ch;
  margin-top: 28px;
}
.hero-ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trustline {
  margin-top: 48px;
  display: flex; flex-wrap: wrap; gap: 24px 36px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #b9c4b3;
}
.hero-trustline span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trustline .pip { width: 6px; height: 6px; background: var(--green-action); border-radius: 50%; }

/* Typography balance (agency rule): headings break at sense boundaries, body avoids orphans */
.h-display { text-wrap: balance; }
p, .hero-sub, .lede, .page-hero-sub, .mid-cta-sub { text-wrap: pretty; }

/* Hero variant: split — /free-quote/ centered conversion hero (no photo) */
.hero.v-split { background: var(--surface); color: var(--ink); }
.hero.v-split h1.h-display { color: var(--ink); }
.hero.v-split h1 .accent { color: var(--green-primary); }
.hero.v-split .hero-sub { color: var(--ink-2); margin-inline: auto; }
.hero.v-split .hero-trustline { color: var(--muted); justify-content: center; }
.hero.v-split .hero-photo { display: none; }
.hero.v-split .hero-inner {
  max-width: 920px;
  text-align: center;
  padding-top: clamp(60px, 7vw, 100px);
  padding-bottom: clamp(60px, 7vw, 100px);
}
.hero.v-split .hero-ctas { justify-content: center; }

/* Hero variant: editorial */
.hero.v-editorial { background: var(--surface-alt); color: var(--ink); }
.hero.v-editorial h1.h-display { color: var(--ink); font-size: clamp(64px, 11vw, 168px); line-height: 0.88; }
.hero.v-editorial .hero-photo { display: none; }
.hero.v-editorial .hero-sub { color: var(--ink-2); }
.hero.v-editorial .hero-trustline { color: var(--muted); }
.hero.v-editorial .editorial-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
.hero.v-editorial .editorial-photo {
  aspect-ratio: 21/9; border-radius: var(--radius); overflow: hidden; position: relative;
  margin-top: 24px;
}
.hero.v-editorial h1 .underline::after { background: var(--green-action); opacity: .9; }

/* ───────── Photo placeholder ───────── */
.photo-ph {
  position: relative;
  background: #c9d0c6;
  overflow: hidden;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,.55);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  isolation: isolate;
}
.photo-ph svg.stripes { position: absolute; inset: 0; width: 100%; height: 100%; }
.photo-ph .ph-label {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.78);
  padding: 6px 10px; border-radius: 3px;
  border: 1px dashed rgba(0,0,0,.25);
  text-align: center;
  max-width: 80%;
  line-height: 1.3;
}
.photo-ph.dark { background: #2a342a; color: rgba(255,255,255,.7); }
.photo-ph.dark .ph-label { background: rgba(0,0,0,.5); border-color: rgba(255,255,255,.35); color: rgba(255,255,255,.85); }
.photo-ph.tint-sage { background: #889b86; }
.photo-ph.tint-warm { background: #c7b08a; }

/* Real photo override — when PhotoPlaceholder matches PHOTO_MAP, the
   .photo-real class is added; we hide placeholder chrome and stretch the
   <img> to fill the container with cover cropping. */
.photo-real { background: #1a1a1a; padding: 0; }
.photo-real > img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.photo-real .ph-label,
.photo-real .stripes { display: none; }
/* Hero/Mid-CTA variants override .ph-label positioning — also hide it when real photo */
.page-hero-photo .photo-real .ph-label,
.hero-photo .photo-real .ph-label,
.mid-cta-photo .photo-real .ph-label { display: none; }

/* ───────── Trust strip (license band only) ───────── */
.trust {
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
  border-top: 4px solid var(--green-action);
}
.trust-license-row, .trust-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px 32px; flex-wrap: wrap;
}
.lic-lockup-item {
  display: flex; align-items: center; gap: 14px;
}
.trust-license-row .license-lockup {
  display: flex; align-items: center; gap: 14px;
}
.trust-license-row .license-seal,
.lic-lockup-item .license-seal {
  width: 44px; height: 44px;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  text-align: center;
  line-height: 1.05;
}
.trust-license-row .license-text,
.lic-lockup-item .license-text {
  display: flex; flex-direction: column; gap: 2px;
}
.trust-license-row .license-text .lic-line1,
.lic-lockup-item .license-text .lic-line1 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: #fff;
}
.trust-license-row .license-text .lic-line2,
.lic-lockup-item .license-text .lic-line2 {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.06em;
  color: var(--gold-soft);
  text-transform: uppercase;
}
.trust-license-row .license-cta {
  display: flex; align-items: center; gap: 16px;
}
.trust-license-row .license-cta .insurance {
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #b9c4b3;
}
.trust-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 18px 32px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
}
.trust-item .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}
.trust-item .lbl {
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 11.5px;
  color: #b9c4b3; font-family: var(--font-mono);
}
.trust-item .lic-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,.15);
  border: 1px solid rgba(201,162,39,.5);
  padding: 6px 10px; border-radius: 4px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
}
.trust-item .lic-badge .gold-pin { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }

/* ───────── Section base ───────── */
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section.tight { padding: clamp(48px, 6vw, 88px) 0; }
.section-alt { background: var(--surface-alt); }
.section-sage { background: var(--green-sage); color: #fff; }
.section-sage .lede { color: rgba(255,255,255,.88); }
.section-sage .eyebrow { color: #d8e3d2; }
.section-dark { background: var(--green-darker); color: #fff; }
.section-dark .lede { color: rgba(255,255,255,.84); }

.section-head {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head .lede { margin: 0; }
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}

.section-head .h2 { margin: 12px 0 0; }
.section-head-row {
  display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* ───────── Photo-quote workflow (3 steps) ───────── */
.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
  position: relative;
}
.workflow-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.workflow-step .step-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 56px; line-height: 1;
  color: var(--green-action);
  display: inline-block;
}
.workflow-step .step-num::after {
  content: ''; display: block;
  width: 32px; height: 3px; background: var(--green-primary);
  margin-top: 10px;
}
.workflow-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
  margin: 20px 0 10px;
  letter-spacing: -0.005em;
}
.workflow-step p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.workflow-step .step-visual {
  margin-top: 24px;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-alt);
  position: relative;
}
@media (max-width: 880px) { .workflow { grid-template-columns: 1fr; } }

/* Phone mockup for step 1 */
.phone-mock {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #e8ece4 0%, #d4dccd 100%);
  overflow: hidden;
}
.phone-mock .phone {
  width: 56%; aspect-ratio: 9/19;
  background: #1a1a1a;
  border-radius: 22px;
  padding: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,.18), 0 2px 6px rgba(0,0,0,.1);
  position: relative;
}
.phone-mock .phone-screen {
  width: 100%; height: 100%;
  background: #f1f4ed;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.phone-mock .notch {
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 28%; height: 14px; background: #1a1a1a;
  border-bottom-left-radius: 10px; border-bottom-right-radius: 10px;
  z-index: 2;
}
.text-thread {
  padding: 28px 8px 8px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 8px;
}
.bubble {
  max-width: 75%;
  padding: 5px 8px;
  border-radius: 9px;
  line-height: 1.25;
}
.bubble.in { background: #e6e8e3; align-self: flex-start; border-bottom-left-radius: 3px; color: #1a1a1a;}
.bubble.out { background: var(--green-action); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px;}
.bubble.photo {
  width: 65%; align-self: flex-end;
  aspect-ratio: 4/3; padding: 0; overflow: hidden;
  background: #2a342a;
}
.bubble.photo .mini-ph { width:100%; height:100%; background: linear-gradient(135deg, #4a5a44, #6e7e60); position: relative; }
.bubble.photo .mini-ph::after { content: '📷'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; opacity: .7; }

/* Quote receipt for step 2 */
.quote-receipt {
  position: absolute; inset: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex; flex-direction: column;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  font-size: 12px;
}
.quote-receipt .qr-head { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed var(--line); padding-bottom: 10px; }
.quote-receipt .qr-head .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.quote-receipt .qr-head .stamp {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--green-action);
  border: 1.5px solid var(--green-action);
  padding: 2px 6px; border-radius: 3px;
  transform: rotate(-3deg);
}
.quote-receipt .qr-line { display: flex; justify-content: space-between; padding: 6px 0; font-size: 11.5px; color: var(--ink-2); }
.quote-receipt .qr-total { margin-top: auto; padding-top: 10px; border-top: 1px solid var(--ink); display: flex; justify-content: space-between; align-items: baseline; }
.quote-receipt .qr-total .price { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--green-primary); line-height: 1;}
.quote-receipt .qr-total .price-lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* Truck visual for step 3 */
.truck-visual {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #c5d2bb 0%, #a8b89c 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 18%;
  overflow: hidden;
}
.truck-visual::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 18%;
  background: #4a4a44;
}
.truck-visual::after {
  content: ''; position: absolute; bottom: 18%; left: 0; right: 0; height: 1px;
  background: rgba(0,0,0,.2);
}
.truck-shape {
  width: 78%; height: 56%;
  position: relative;
  z-index: 2;
}
.truck-shape .cab {
  position: absolute; left: 0; bottom: 0;
  width: 36%; height: 70%;
  background: var(--green-primary);
  border-radius: 6px 4px 0 0;
  border: 2px solid var(--green-darker);
  box-shadow: inset -4px 0 0 rgba(0,0,0,.15);
}
.truck-shape .cab::before {
  content: ''; position: absolute; top: 8%; left: 18%; right: 12%; height: 38%;
  background: #c8d3c2; border-radius: 3px;
  border: 1px solid var(--green-darker);
}
.truck-shape .bed {
  position: absolute; right: 0; bottom: 0;
  width: 66%; height: 60%;
  background: var(--green-primary);
  border: 2px solid var(--green-darker);
  border-radius: 4px 4px 0 0;
}
.truck-shape .bed::before {
  content: 'DIAZ HAULING';
  position: absolute; left: 8%; top: 35%;
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(8px, 1.2vw, 13px);
  color: #fff;
  letter-spacing: -0.01em;
}
.truck-shape .wheel {
  position: absolute; bottom: -8px;
  width: 16%; aspect-ratio: 1;
  background: #1a1a1a;
  border-radius: 50%;
  border: 3px solid #4a4a44;
}
.truck-shape .wheel.w1 { left: 6%; }
.truck-shape .wheel.w2 { right: 8%; }

/* ───────── Services grid ───────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
.service-card {
  grid-column: span 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-primary);
}
.service-card .sc-photo {
  aspect-ratio: 5/4;
  position: relative;
  overflow: hidden;
}
.service-card .sc-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.5) 100%);
}
.service-card .sc-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.95);
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-primary);
  border-radius: 3px;
  z-index: 2;
}
.service-card .sc-tag.featured {
  background: var(--green-action);
  color: #fff;
}
.service-card .sc-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 8px;
  color: var(--ink);
}
.service-card p { margin: 0 0 18px; color: var(--muted); font-size: 14.5px; line-height: 1.5; flex: 1; }
.service-card .sc-meta { display: flex; align-items: center; justify-content: space-between; }
.service-card .sc-meta .price { font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); }
.service-card .sc-meta .more { font-family: var(--font-display); text-transform: uppercase; font-size: 13px; font-weight: 600; color: var(--green-primary); letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 6px; }
.service-card:hover .sc-meta .more .arrow { transform: translateX(4px); }
.service-card .sc-meta .more .arrow { transition: transform .15s; }

/* Bobcat featured spans 3 */
.service-card.span-3 { grid-column: span 3; }
.service-card.span-3 .sc-photo { aspect-ratio: 16/9; }
.service-card.span-2-half { grid-column: span 3; }

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card, .service-card.span-3, .service-card.span-2-half { grid-column: span 2; }
}
@media (max-width: 680px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card.span-3, .service-card.span-2-half { grid-column: span 1; }
}

/* Icon-led variant */
.service-card.icon-led .sc-photo { aspect-ratio: auto; height: 0; padding-top: 0; }
.service-card.icon-led .sc-photo { display: none; }
.service-card.icon-led { padding-top: 0; }
.service-card.icon-led .sc-body { padding-top: 30px; }
.service-card.icon-led .sc-icon {
  width: 56px; height: 56px; border-radius: 8px;
  background: var(--green-sage); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.service-card.icon-led.featured-icon .sc-icon { background: var(--green-action); }

/* ───────── About / Why Diaz ───────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.about-photo-stack {
  position: relative;
  aspect-ratio: 4/5;
}
.about-photo-stack .ph-main {
  position: absolute; inset: 0;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo-stack .ph-mini {
  position: absolute;
  right: -8%; bottom: -6%;
  width: 46%; aspect-ratio: 4/3;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 36px;
}
.about-stat .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5vw, 56px); line-height: 0.9;
  color: var(--green-primary);
}
.about-stat .lbl {
  font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); margin-top: 8px;
}
.about-signature {
  margin-top: 28px;
  display: flex; align-items: center; gap: 16px;
}
.about-signature .sig-name {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  letter-spacing: -0.005em;
}
.about-signature .sig-title {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); margin-top: 4px;
}
.about-signature .sig-avatar {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--line);
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-stack { aspect-ratio: 5/4; }
}

/* ───────── Eco section (sage) ───────── */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  margin-top: clamp(40px, 5vw, 56px);
}
.eco-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 28px 26px;
  border-radius: var(--radius-lg);
}
.eco-item .num {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
  color: #d8e3d2; text-transform: uppercase;
}
.eco-item h3 {
  font-family: var(--font-display);
  font-size: 22px; text-transform: uppercase;
  margin: 14px 0 10px;
  color: #fff; font-weight: 600; letter-spacing: -0.005em;
}
.eco-item p { margin: 0; color: rgba(255,255,255,.84); font-size: 14.5px; line-height: 1.55; }
@media (max-width: 880px) { .eco-grid { grid-template-columns: 1fr; } }

/* ───────── Service area ───────── */
.area-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.area-region {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  grid-column: span 3;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px; align-items: baseline;
}
.area-region .region-name {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; font-size: 15px;
  letter-spacing: 0.04em; color: var(--green-primary);
}
.area-region .region-cities {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
}
.area-region .city {
  font-size: 15px; color: var(--ink-2);
  cursor: default;
  padding: 2px 0;
  position: relative;
}
.area-region .city:hover { color: var(--green-primary); }
.area-region .city.match { color: var(--green-action); font-weight: 600; }
/* East Bay city grid */
.east-bay-cities {
  display: flex; flex-wrap: wrap; gap: 8px;
  border-top: 2px solid var(--green-primary);
  padding-top: 24px;
}
.east-bay-cities .eb-city {
  font-family: var(--font-display);
  font-weight: 500; font-size: 15px;
  letter-spacing: 0.02em; text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink); background: var(--surface);
  transition: all .15s ease; cursor: default;
}
.east-bay-cities .eb-city:hover {
  border-color: var(--green-primary);
  background: var(--green-primary); color: #fff;
  transform: translateY(-1px);
}
.area-fine {
  margin-top: 22px; padding-top: 16px;
  border-top: 1px solid var(--line);
}
.call-cta-btn { width: 100%; justify-content: center; text-align: center; font-size: 14px; }
@media (min-width: 600px) { .call-cta-btn { font-size: 16px; } }

.area-search {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  height: 48px;
  margin-bottom: 18px;
}
.area-search input {
  border: 0; outline: 0; background: transparent; flex: 1;
  font-family: inherit; font-size: 15px; color: var(--ink);
}
.area-search .badge {
  font-family: var(--font-mono); font-size: 11px;
  background: var(--surface-alt); padding: 4px 8px; border-radius: 3px;
  color: var(--muted);
}
@media (max-width: 880px) {
  .area-region { grid-template-columns: 1fr; gap: 8px; }
}

/* ───────── Reviews ───────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  position: relative;
}
.review .stars { display: flex; gap: 2px; color: #e02b27; font-size: 16px; }
.review .stars .star { width: 16px; height: 16px; }
.review .review-text { font-size: 16px; line-height: 1.55; color: var(--ink-2); margin: 18px 0 22px; flex: 1; }
.review .review-meta { display: flex; align-items: center; gap: 12px; }
.review .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green-sage); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.review .who { display: flex; flex-direction: column; }
.review .who .name { font-weight: 600; font-size: 14.5px; }
.review .who .city { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); letter-spacing: 0.04em; }
.review .yelp-tag {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-display); font-weight: 700;
  background: #d32323; color: #fff;
  padding: 4px 8px; border-radius: 3px;
  font-size: 11px; letter-spacing: 0.05em;
}
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ───────── Dumpster rentals ───────── */
.dumpster {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.dumpster-photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.dumpster-sizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 32px;
}
.dumpster-size {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  background: var(--surface);
  text-align: left;
  cursor: pointer;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.dumpster-size:hover {
  border-color: var(--green-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.dumpster-size.active {
  border-color: var(--green-primary);
  background: #f0f4ee;
  box-shadow: 0 0 0 3px rgba(72,96,72,.08);
}
.dumpster-size .size-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 34px; line-height: 1; color: var(--ink);
  letter-spacing: -0.01em;
}
.dumpster-size .size-unit {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px;
}
.dumpster-size .size-desc {
  font-size: 12.5px; color: var(--ink-2);
  margin-top: 10px; line-height: 1.4;
}
.dumpster-bullets {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
}
.dumpster-bullets li {
  font-size: 14.5px; color: var(--ink-2);
  display: flex; align-items: flex-start; gap: 8px;
}
.dumpster-bullets li::before {
  content: '→'; color: var(--green-action);
  font-weight: 700; flex-shrink: 0;
}
@media (max-width: 880px) {
  .dumpster { grid-template-columns: 1fr; }
  .dumpster-sizes { grid-template-columns: 1fr; }
  .dumpster-bullets { grid-template-columns: 1fr; }
}

/* ───────── Workiz scheduling band ───────── */
.workiz {
  background: var(--green-darker);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.workiz::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(97,162,41,.15), transparent 60%);
  pointer-events: none;
}
.workiz-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
  position: relative;
}
.workiz h2 { color: #fff; }
.workiz .lede { color: rgba(255,255,255,.84); }
.workiz .eyebrow { color: #c0d4c0; }
.workiz-features {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.workiz-features li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  font-size: 14.5px;
  color: rgba(255,255,255,.9);
}
.workiz-features li .wf-num {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green-action);
  font-size: 13px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  min-width: 28px;
}
/* Booking-section CTAs: equal-width stacked pair, no ragged wrap */
.workiz-ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 380px;
}
.workiz-ctas .btn { justify-content: center; }

.workiz-embed {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 40px);
  color: var(--ink);
  box-shadow: 0 24px 50px rgba(0,0,0,.3);
  display: flex; flex-direction: column;
  min-height: 460px;
}
.workiz-embed-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.workiz-embed-head .wz-brand {
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 14px; color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.workiz-embed-head .wz-brand .wz-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green-action);
}
.workiz-embed-head .wz-tag {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  padding: 4px 10px;
  background: var(--surface-alt);
  border-radius: 3px;
}
.workiz-slots {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-bottom: 20px;
}
.workiz-slot {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 12px;
  background: var(--surface);
  cursor: pointer;
  transition: all .15s;
  text-align: center;
}
.workiz-slot:hover {
  border-color: var(--green-primary);
  background: #f0f4ee;
}
.workiz-slot.selected {
  border-color: var(--green-primary);
  background: var(--green-primary);
  color: #fff;
}
.workiz-slot .day {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.workiz-slot.selected .day { color: #b8d4a9; }
.workiz-slot .date {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; line-height: 1.1;
  margin: 4px 0;
}
.workiz-slot .time {
  font-size: 12px; color: var(--ink-2);
}
.workiz-slot.selected .time { color: #d8e3d2; }
.workiz-windows {
  display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap;
}
.workiz-window {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 14px; font-size: 13px;
  background: var(--surface); cursor: pointer;
  transition: all .15s;
}
.workiz-window:hover { border-color: var(--green-primary); }
.workiz-window.selected {
  background: var(--green-primary); color: #fff;
  border-color: var(--green-primary);
}
.workiz-fields {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 18px;
}
.workiz-fields label {
  font-family: var(--font-mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); display: block; margin-bottom: 5px;
}
.workiz-fields input, .workiz-fields select {
  width: 100%; box-sizing: border-box;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 10px 12px; font: inherit; font-size: 14px;
  color: var(--ink);
}
.workiz-fields input:focus, .workiz-fields select:focus {
  outline: none; border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(72,96,72,.12);
}
.workiz-fields .full { grid-column: span 2; }
.workiz-confirm {
  width: 100%; height: 52px;
  background: var(--green-action); color: #fff;
  border: 0; border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s, transform .15s;
}
.workiz-confirm:hover {
  background: var(--green-action-dark);
  transform: translateY(-1px);
}
.workiz-confirmed {
  text-align: center; padding: 20px;
  background: #f0f8e8;
  border: 1px solid var(--green-action);
  border-radius: var(--radius);
  margin-top: 14px;
  color: var(--green-action-dark);
  font-size: 14px;
  display: none;
}
.workiz-confirmed.show { display: block; }
.workiz-fine {
  font-size: 11.5px; color: var(--muted);
  margin-top: 12px; text-align: center;
}
@media (max-width: 880px) {
  .workiz-grid { grid-template-columns: 1fr; }
  .workiz-slots { grid-template-columns: 1fr; }
  .workiz-fields { grid-template-columns: 1fr; }
  .workiz-fields .full { grid-column: span 1; }
}

/* SMS pulse for primary CTA emphasis */
.btn-sms { position: relative; }
.btn-sms .sms-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
}

/* ───────── Bobcat callout ───────── */
.callout {
  position: relative;
  background: var(--green-darker);
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 380px;
}
.callout .callout-photo { position: relative; }
.callout-content {
  padding: clamp(36px, 4vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
}
.callout-content .eyebrow { color: #b9c4b3; }
.callout-content h2 { color: #fff; margin: 14px 0 18px; }
.callout-content p { color: rgba(255,255,255,.86); font-size: 16px; max-width: 50ch; line-height: 1.55; }
.callout-content .bobcat-list {
  list-style: none; padding: 0; margin: 22px 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px;
}
.callout-content .bobcat-list li {
  font-family: var(--font-mono); font-size: 12.5px;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: #d8e3d2;
  position: relative; padding-left: 18px;
}
.callout-content .bobcat-list li::before { content: '→'; position: absolute; left: 0; color: var(--green-action); }
@media (max-width: 880px) { .callout { grid-template-columns: 1fr; } .callout .callout-photo { aspect-ratio: 16/9; } }

/* ───────── Quote form ───────── */
.quote-section {
  background: var(--ink);
  color: #fff;
}
.quote-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.quote-section h2 { color: #fff; }
.quote-section .lede { color: rgba(255,255,255,.82); }
.quote-section .eyebrow { color: #c0d4c0; }
.quote-list {
  list-style: none; padding: 0; margin: 28px 0 0;
}
.quote-list li {
  display: flex; gap: 14px; padding: 10px 0;
  font-size: 15px; color: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.quote-list li:last-child { border-bottom: 0; }
.quote-list .check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--green-action); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px;
}
.quote-cta-card {
  background: #fff; color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: 0 24px 50px rgba(0,0,0,.25);
  display: flex; flex-direction: column; align-items: flex-start;
}
.quote-cta-card .qcta-icon {
  width: 46px; height: 46px; border-radius: 8px;
  background: var(--green-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.quote-cta-card .qcta-heading {
  font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 28px);
  margin: 0 0 10px;
}
.quote-cta-card .qcta-sub {
  color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 0 26px;
}
.quote-cta-card .qcta-ctas {
  display: flex; flex-direction: column; gap: 12px; width: 100%;
}
.quote-cta-card .qcta-ctas .btn { width: 100%; justify-content: center; }
.quote-cta-card .qcta-book-link {
  display: flex; align-items: center; gap: 6px;
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--line);
  width: 100%; box-sizing: border-box;
  font-family: var(--font-mono); font-size: 12.5px;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--green-primary); text-decoration: none;
}
.quote-cta-card .qcta-book-link:hover { color: var(--green-action); }

@media (max-width: 880px) {
  .quote-grid { grid-template-columns: 1fr; }
}

/* ───────── Footer ───────── */
.footer {
  background: var(--green-darker);
  color: #d8e0d4;
  padding: clamp(60px, 7vw, 96px) 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 60px);
}
.footer h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 13px; letter-spacing: 0.08em;
  color: #fff; font-weight: 600;
  margin: 0 0 18px;
}
.footer a { color: #d8e0d4; text-decoration: none; font-size: 14.5px; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer .footer-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; }
.footer .footer-cities li { font-size: 13.5px; color: #b9c4b3; }
.footer-bottom {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 12.5px; color: #9ba79a;
  flex-wrap: wrap;
}
.footer-bottom .lic-foot {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); color: var(--gold-soft); letter-spacing: 0.04em;
}
.footer .social { display: flex; gap: 10px; }
.footer .social a {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  transition: background .15s;
}
.footer .social a:hover { background: var(--green-action); }

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ───────── Sticky mobile bar ───────── */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: none;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.mobile-bar .btn { flex: 1; height: 50px; justify-content: center; font-size: 14px; }
@media (max-width: 760px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 80px; }
}

/* ───────── Helpers ───────── */
.fade-in { animation: fadeIn .5s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.muted { color: var(--muted); }
.divider { height: 1px; background: var(--line); margin: 0; }

/* Visible focus ring for keyboard */
:focus-visible { outline: 2px solid var(--green-action); outline-offset: 2px; border-radius: 4px; }

/* Scroll padding so anchor jumps clear sticky nav */
html { scroll-behavior: smooth; scroll-padding-top: 120px; }


/* ─────────────────────────────────────────────────────────
   Multi-page additions
   ───────────────────────────────────────────────────────── */

/* Breadcrumb */
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .bc-sep { color: rgba(255,255,255,.4); }
.breadcrumb [aria-current="page"] { color: #fff; font-weight: 600; }
.page-hero-compact .breadcrumb,
.section .breadcrumb { color: rgba(0,0,0,.55); }
.page-hero-compact .breadcrumb a,
.section .breadcrumb a { color: var(--ink-2); }

/* Page hero (non-home) */
.page-hero {
  position: relative;
  background: var(--green-darker);
  color: #fff;
  overflow: hidden;
}
.page-hero-photo {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,28,20,.55) 0%, rgba(20,28,20,.72) 55%, rgba(20,28,20,.88) 100%);
}
.page-hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: radial-gradient(circle at 50% 0%, rgba(255,255,255,.05), transparent 60%);
}
.page-hero-inner {
  position: relative; z-index: 2;
  padding-top: clamp(60px, 8vw, 110px);
  padding-bottom: clamp(60px, 7vw, 96px);
}
/* Homepage hero: ~150px taller than the standard page hero, photo crop biased
   toward the lower half so the truck fleet reads (Steven 7/10) */
.page-hero-tall .page-hero-inner {
  padding-top: clamp(130px, 12vw, 190px);
  padding-bottom: clamp(130px, 11vw, 170px);
}
.page-hero-tall .page-hero-photo .photo-real img { object-position: center 68%; }
.page-hero-h1 {
  color: #fff;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1;
  max-width: 22ch;
  margin: 14px 0 0;
  padding-bottom: 6px;
}
.page-hero-sub { margin-top: 32px; }
.page-hero-h1 .underline { display:inline-block; position: relative; }
.page-hero-h1 .underline::after {
  content: ''; position: absolute; left:-2px; right:-2px; bottom:0.08em;
  height: 0.16em; background: var(--green-action); z-index:-1;
}
.page-hero-h1 .accent { color: #b8d4a9; }
.page-hero-sub {
  font-size: clamp(16px, 1.4vw, 20px); line-height: 1.5;
  color: #e3eadf;
  max-width: 60ch;
  margin: 24px 0 0;
}
.page-hero .hero-ctas { margin-top: 32px; }
.page-hero-compact .page-hero-inner {
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

/* Trust strip — 4 up (light background; pre-merge with the dark .trust band) */
.trust-strip-4up {
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
  border-top: 4px solid var(--green-action);
}
.trust-4up-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 16px 32px;
}
.trust-4up-inner .ts-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
}
.trust-4up-inner .ts-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.005em;
  line-height: 1;
}
.trust-4up-inner .ts-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b9c4b3;
}
.trust-4up-inner .ts-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,.16);
  border: 1px solid rgba(201,162,39,.55);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  text-transform: uppercase;
}
.trust-4up-inner .ts-item .stars { color: #ffd35e; }

/* Mid-CTA banner */
.mid-cta {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.mid-cta-photo {
  position: absolute; inset: 0; z-index: 0;
}
.mid-cta-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(20,28,20,.85) 0%, rgba(20,28,20,.7) 60%, rgba(20,28,20,.65) 100%);
}
.mid-cta-inner {
  position: relative; z-index: 1;
  padding: clamp(56px,7vw,96px) 0;
  text-align: center;
}
.mid-cta h2.h-display { color: #fff; }
.mid-cta-sub {
  margin: 18px auto 0;
  color: #e3eadf;
  font-size: clamp(16px, 1.3vw, 19px);
  max-width: 56ch;
  line-height: 1.5;
}
.mid-cta .hero-ctas { justify-content: center; margin-top: 30px; }

/* Photo gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
}
.gallery-tile {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 760px) { .photo-gallery { grid-template-columns: 1fr 1fr; } }

/* City tiles + pill grid */
.city-tile-grid { display: flex; flex-direction: column; gap: 24px; }
.city-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
}
.city-tile {
  text-decoration: none; color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  display: flex; flex-direction: column;
}
.city-tile:hover {
  transform: translateY(-2px);
  border-color: var(--green-primary);
  box-shadow: var(--shadow);
}
.city-tile-photo { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.city-tile-name {
  padding: 12px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
@media (max-width: 1100px) { .city-tiles { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px)  { .city-tiles { grid-template-columns: repeat(2, 1fr); } }

.city-pill-grid { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.city-pill {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  transition: all .15s ease;
}
.city-pill:hover {
  background: var(--green-primary);
  color: #fff;
  border-color: var(--green-primary);
}

/* Inside the quote / value-prop / four-step shared card style */
.inside-quote-grid,
.value-prop-grid,
.four-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 28px);
}
.value-prop-grid { grid-template-columns: repeat(4, 1fr); }
.four-step-grid  { grid-template-columns: repeat(4, 1fr); }
.iq-card, .vp-card, .four-step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 32px;
}
.section-alt .iq-card,
.section-alt .vp-card,
.section-alt .four-step-card { background: #fff; }
.iq-num, .vp-num, .fs-num {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--green-primary);
  text-transform: uppercase;
}
.iq-card h3, .vp-card h3, .four-step-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 14px 0 8px;
  color: var(--ink);
}
.iq-card p, .vp-card p, .four-step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
@media (max-width: 1100px) {
  .inside-quote-grid { grid-template-columns: 1fr; }
  .value-prop-grid   { grid-template-columns: 1fr 1fr; }
  .four-step-grid    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .value-prop-grid, .four-step-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-of-type { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  text-transform: none;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-icon {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--green-primary);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
  transition: transform .15s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item .faq-a {
  padding: 0 4px 22px;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 72ch;
}

/* Check list */
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15.5px; color: var(--ink-2);
  line-height: 1.5;
}
.check-list li svg { color: var(--green-action); margin-top: 4px; flex-shrink: 0; }
.check-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px 24px;
}
@media (max-width: 980px) { .check-list-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .check-list-grid { grid-template-columns: 1fr; } }

/* X list (prohibited) */
.x-list { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.x-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15.5px; color: var(--ink-2);
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}
.x-list li::before {
  content: '×';
  position: absolute; left: 4px; top: -2px;
  width: 20px; height: 20px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  color: var(--gold-deep, #9F811A);
  line-height: 1;
}

/* Services grid extension (5 cards) */
.services-grid.services-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
}
.services-grid.services-5 .service-card { grid-column: span 2; }
.services-grid.services-5 .card-featured { grid-column: span 2; }
@media (max-width: 1100px) {
  .services-grid.services-5 { grid-template-columns: 1fr 1fr; }
  .services-grid.services-5 .service-card,
  .services-grid.services-5 .card-featured { grid-column: span 1; }
}
@media (max-width: 600px) {
  .services-grid.services-5 { grid-template-columns: 1fr; }
}

/* Related services grid */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.4vw, 20px);
}
.related-card {
  text-decoration: none; color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  display: flex; flex-direction: column;
  transition: all .15s ease;
}
.related-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.related-photo { aspect-ratio: 4/3; }
.related-body { padding: 16px 18px 20px; }
.related-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.related-body .more {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-primary);
  display: inline-flex; align-items: center; gap: 6px;
}
@media (max-width: 880px) { .related-grid { grid-template-columns: 1fr 1fr; } }

/* Dumpster size cards (spec-only — see .dumpster-gallery below for the photo strip) */
.dumpster-size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.4vw, 22px);
}
.dumpster-size-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  text-align: left;
  padding: 0;
  font: inherit;
  transition: all .15s ease;
  display: flex; flex-direction: column;
}
.dumpster-size-card:hover {
  transform: translateY(-2px);
  border-color: var(--green-primary);
  box-shadow: var(--shadow);
}
.dumpster-size-card.active {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(72,96,72,.15);
}
.dumpster-size-card .ds-body { padding: 28px 26px 32px; }
.dumpster-size-card .ds-yards {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.dumpster-size-card .ds-unit {
  font-size: 22px; color: var(--muted); margin-left: 4px; font-weight: 500;
}
.dumpster-size-card .ds-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-top: 8px;
}
.dumpster-size-card .ds-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 14px 0 0;
}
@media (max-width: 1100px) { .dumpster-size-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .dumpster-size-grid { grid-template-columns: 1fr; } }

/* Dumpster photo strip — 3-up gallery across the top of /dumpster-rentals/,
   same grid/gap tokens as .photo-gallery so it reads as the same system. */
.dumpster-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
}
.dg-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 880px) { .dumpster-gallery { grid-template-columns: 1fr; } }

.canister-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
}
@media (max-width: 760px) { .canister-grid { grid-template-columns: 1fr; } }

/* Contact page */
.contact-grid {
  max-width: 720px;
}
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:first-child { border-top: 1px solid var(--line); }
.contact-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-decoration: none;
}
a.contact-value:hover { color: var(--green-primary); }
@media (max-width: 760px) {
  .contact-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
}

/* Reviews — wider grid for /testimonials/ */
.reviews-grid.reviews-grid-wide {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) {
  .reviews-grid.reviews-grid-wide { grid-template-columns: 1fr; }
}

/* City-page copy — long-form SEO text */
.city-copy { max-width: 880px; margin: 0 auto; }
.city-copy h2.h-display, .city-copy h3.h-display {
  margin: 36px 0 14px;
}
.city-copy h2.h-display { font-size: clamp(26px, 2.6vw, 36px); }
.city-copy h3.h-display { font-size: clamp(22px, 2vw, 28px); }
.city-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 14px;
  max-width: 72ch;
}
.city-copy .check-list { margin-top: 10px; }
.city-contact { max-width: 880px; margin: 0 auto; text-align: left; }
.city-contact h2 { margin-bottom: 12px; }
.city-contact p { font-size: 16px; line-height: 1.6; color: var(--ink-2); max-width: 64ch; margin: 0; }

/* Legal copy */
.legal-copy { max-width: 720px; margin: 0 auto; }
.legal-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 32px 0 10px;
}
.legal-copy p { font-size: 15.5px; line-height: 1.65; color: var(--ink-2); margin: 0 0 14px; }

/* Footer additions */
.footer-contact-block { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-block a { color: #fff !important; font-weight: 600; }
.footer-phone, .footer-email, .footer-hours { font-size: 14.5px; }
.footer-hours { color: #b9c4b3; }

/* Service area hide search-related (legacy) */
.section .area-cities, .section .area-search { display: none; }


/* ─────────────────────────────────────────────────────────
   Post-build fixes
   ───────────────────────────────────────────────────────── */

/* Nav phone — never wrap */
.nav-phone { white-space: nowrap; }
.nav-inner { gap: 20px; }
.nav-links { gap: 22px; }
@media (max-width: 1100px) {
  .nav-phone { display: none; }
}

/* Hero placeholder labels — push to bottom corner so they don't fight the headline */
.page-hero-photo .photo-ph .ph-label,
.hero-photo .photo-ph .ph-label,
.mid-cta-photo .photo-ph .ph-label {
  position: absolute;
  bottom: 16px; right: 16px;
  left: auto; top: auto;
  max-width: 50%;
  font-size: 10px;
  background: rgba(0,0,0,.5);
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.75);
  z-index: 2;
}
.page-hero-photo .photo-ph,
.hero-photo .photo-ph,
.mid-cta-photo .photo-ph {
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0;
}

/* Stripes inside dark photo placeholders look a bit too noisy in big hero — dial down */
.page-hero-photo .photo-ph svg.stripes,
.hero-photo .photo-ph svg.stripes {
  opacity: 0.55;
}

/* ═══════════ 2026-07-09 iteration: real logo, 2×2 services, dumpster band, live Workiz ═══════════ */

/* Real brand logo image */
.logo-img {
  display: block;
  height: 44px;
  width: auto;
}
.logo-lg .logo-img { height: 54px; }
.logo-sm .logo-img { height: 34px; }
/* Footer sits on dark green — put the logo on a white chip so the charcoal
   "HAULING" wordmark stays legible. */
.logo-chip {
  background: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  display: inline-block;
}
@media (max-width: 600px) {
  .logo-img { height: 36px; }
}

/* 2×2 services grid (4 cards) */
.services-grid.services-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 1.8vw, 24px);
}
.services-grid.services-4 .service-card,
.services-grid.services-4 .card-featured { grid-column: span 1; }
@media (max-width: 600px) {
  .services-grid.services-4 { grid-template-columns: 1fr; }
}

/* Dumpster band size chips */
.dumpster-band-sizes {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.dumpster-band-size {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .15s ease, transform .15s ease;
}
.dumpster-band-size:hover {
  border-color: var(--green-primary);
  transform: translateY(-2px);
}
.dumpster-band-size .dbs-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  line-height: 1;
}
.dumpster-band-size .dbs-unit {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

/* Live Workiz embed */
.workiz-embed.workiz-live {
  padding: 0;
  overflow: hidden;
  min-height: 0;
}
.workiz-embed.workiz-live .workiz-embed-head {
  padding: 18px clamp(20px, 2.5vw, 28px);
  margin-bottom: 0;
  border-bottom: 1px solid var(--line);
}
.workiz-iframe {
  display: block;
  width: 100%;
  height: 840px; /* fits the full 12-slot day — no inner scrollbar, no dead slab */
  border: 0;
  background: #fff;
}
@media (max-width: 600px) {
  .workiz-iframe { height: 1000px; }
}

/* ═══════════ 2026-07-09 free-quote cleanup: calendar visual ═══════════ */

/* Workflow step 3 calendar (replaces the CSS truck) */
.cal-visual {
  position: absolute; inset: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex; flex-direction: column;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  font-size: 12px;
}
.cal-visual .cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.cal-visual .cal-title {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}
.cal-visual .cal-badge {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .05em;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--ink-2);
}
.cal-visual .cal-dow,
.cal-visual .cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-visual .cal-dow span {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 9px; color: var(--muted-2, var(--muted));
  padding-bottom: 2px;
}
.cal-visual .cal-day {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  background: var(--surface-alt);
}
.cal-visual .cal-day.open {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  position: relative;
}
.cal-visual .cal-day.open::after {
  content: '';
  position: absolute; bottom: 3px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--green-primary);
}
.cal-visual .cal-day.sel {
  background: var(--green-primary);
  color: #fff;
  font-weight: 700;
  border: none;
}
.cal-visual .cal-slot {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .03em;
  color: var(--green-primary);
  font-weight: 600;
}
