/* Top Dog Junk Removal — site styles
   Mobile-first · phone-first · polished local service */

:root {
  --color-bg: #f7f4ef;
  --color-surface: #ffffff;
  --color-ink: #1c1917;
  --color-ink-muted: #44403c; /* darker for WCAG AA on cream bg */
  --color-border: #e7e0d6;
  --color-accent: #c4302b;
  --color-accent-hover: #9f1f1b;
  --color-accent-soft: #fdecea;
  --color-trust: #2f5d40;
  --color-trust-soft: #e7f2eb;
  --color-star: #f5b301;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.75rem;
  --space-8: 3.5rem;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 8px rgba(28, 25, 23, 0.05), 0 8px 24px rgba(28, 25, 23, 0.06);
  --shadow-lg: 0 4px 12px rgba(28, 25, 23, 0.06), 0 16px 40px rgba(28, 25, 23, 0.08);
  --max: 70rem;
  --header-h: 4.25rem;
  --sticky-cta-h: 3.85rem;
  --focus: 2px solid var(--color-accent);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--color-ink);
  background: var(--color-bg);
  padding-bottom: calc(var(--sticky-cta-h) + 0.5rem);
}

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

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--color-accent-hover);
}

a:focus-visible,
button:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.35rem, 3.5vw, 1.85rem); }
h3 { font-size: 1.1rem; }

p {
  margin: 0 0 1em;
  color: var(--color-ink-muted);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.9);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 700;
  font-size: 1rem;
}

.logo-link img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.logo-text {
  display: none;
}

@media (min-width: 400px) {
  .logo-text { display: inline; }
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  cursor: pointer;
  padding: 0;
  color: var(--color-ink);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 1rem 1rem;
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav a {
  display: block;
  padding: 0.65rem 0.75rem;
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 600;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }

  .site-nav {
    display: block;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
  }

  .site-nav a {
    padding: 0.45rem 0.65rem;
    font-size: 0.95rem;
  }

  .header-cta {
    display: inline-flex;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.2rem;
  min-height: 2.85rem;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), transform 0.18s var(--ease);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08), 0 6px 16px rgba(196, 48, 43, 0.22);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.08), 0 10px 22px rgba(196, 48, 43, 0.28);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-ink);
  border-color: var(--color-border);
  box-shadow: 0 1px 2px rgba(28, 25, 23, 0.04);
}

.btn-secondary:hover {
  border-color: #c4b8a8;
  color: var(--color-ink);
  background: #fff;
}

.btn-lg {
  padding: 0.95rem 1.4rem;
  min-height: 3.15rem;
  font-size: 1.05rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

/* ——— Hero ——— */
.hero {
  padding: var(--space-7) 0 var(--space-8);
}

.hero-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 800px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 2.5rem;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-trust);
  background: var(--color-trust-soft);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.hero h1 {
  margin-bottom: 0.5rem;
}

.hero .lede {
  font-size: 1.125rem;
  color: var(--color-ink-muted);
  max-width: 36rem;
}

.hero-cities {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--color-ink-muted);
}

.hero-cities a {
  color: var(--color-ink-muted);
  font-weight: 600;
}

.hero-visual {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 2px);
  padding: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 0;
}

.hero-visual figure {
  margin: 0;
  position: relative;
}

.hero-visual img.hero-photo {
  width: 100%;
  height: auto;
  /* Matches cropped hero-trailer.jpg (~5:4) — shorter window than old 4:5 */
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-visual figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--color-ink-muted);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.hero-visual .placeholder-note {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  margin: 0;
  padding: 1.25rem;
  text-align: center;
}

/* Evenings feature band */
.feature-split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .feature-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.25rem;
  }

  .feature-split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .feature-split.reverse .feature-copy {
    order: 2;
  }
}

.feature-photo {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  background: #111;
}

.feature-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.feature-photo figcaption {
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  background: #1a1a1a;
}

.hours-note {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.hours-note li {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  background: var(--color-trust-soft);
  color: var(--color-trust);
  border-radius: 999px;
}

/* Barkley mascot featurette */
.barkley-featurette {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section-alt .barkley-featurette {
  background: var(--color-bg);
}

@media (min-width: 720px) {
  .barkley-featurette {
    grid-template-columns: minmax(200px, 0.9fr) 1.2fr;
    gap: 2rem;
    padding: 1.5rem 1.75rem;
  }
}

.barkley-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f0eeea;
  aspect-ratio: 1;
  max-width: 22rem;
  margin-inline: auto;
  width: 100%;
}

.barkley-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.barkley-copy h2 {
  margin-bottom: 0.5rem;
}

.barkley-copy p {
  max-width: 32rem;
}

/* Compact home teaser → full evenings page */
.schedule-teaser {
  margin-top: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f3faf5 0%, var(--color-bg) 55%);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 1px 2px rgba(28, 25, 23, 0.04);
}

.section-alt .schedule-teaser {
  background: linear-gradient(135deg, #eef8f1 0%, var(--color-bg) 60%);
}

.schedule-teaser-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
}

.schedule-teaser-inner > div {
  flex: 1 1 18rem;
  min-width: 0;
}

.schedule-teaser h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.schedule-teaser p {
  margin: 0;
  max-width: none; /* let the flex row use available width — avoid mid-sentence wraps */
}

@media (min-width: 1100px) {
  .schedule-teaser-inner > div {
    flex: 1 1 auto;
  }

  /* Keep the flexible-scheduling line on one line when the row is wide enough */
  .schedule-teaser p.mb-0 {
    white-space: nowrap;
  }
}

/* ——— Sections ——— */
.section {
  padding: var(--space-8) 0;
}

.section-alt {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.section-header {
  margin-bottom: var(--space-6);
  max-width: 52rem;
}

.section-header h2 {
  margin-bottom: 0.4em;
}

.section-header p {
  margin-top: 0;
  max-width: none;
}

.section-more {
  margin-top: var(--space-5);
  margin-bottom: 0;
}

/* ——— Proof / cards ——— */
.card-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .card-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(28, 25, 23, 0.04);
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.section-alt .card {
  background: var(--color-bg);
}

.card h3 {
  margin-bottom: 0.4rem;
  color: var(--color-ink);
}

.card.has-photo:hover,
.service-card:hover {
  box-shadow: var(--shadow);
  border-color: #d6cdc0;
  transform: translateY(-2px);
}

.service-card h3 {
  font-size: 1.05rem;
}

.proof-slot {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #eceae6, #f5f3ef);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.proof-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proof-slot-ba {
  aspect-ratio: 16 / 8;
}

.proof-slot-ba img {
  object-fit: cover;
  object-position: center;
}

.card.has-photo {
  padding-top: 0.85rem;
}

.card.has-photo .proof-slot {
  margin: -0.15rem -0.15rem 0.85rem;
  border-radius: 8px;
  border: none;
}

.photo-band {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.photo-band img {
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .photo-band img {
    aspect-ratio: 16 / 10;
  }
}

.google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-ink);
}

.google-link:hover {
  color: var(--color-accent);
}

.google-link .g-mark,
.google-panel .g-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 4px;
  background: #fff;
  border: 1px solid var(--color-border);
  font-size: 0.75rem;
  font-weight: 800;
  color: #4285f4;
  flex-shrink: 0;
}

/* Why Top Dog: checklist + bold Google panel */
.why-row {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  overflow: visible;
}

@media (min-width: 700px) {
  .why-row {
    grid-template-columns: 1.15fr 1fr;
    gap: 1.75rem;
    align-items: stretch;
  }
}

/* parent sections sometimes clip peeks */
.section-alt .container {
  overflow: visible;
}

.why-row .checklist {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.google-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1.75rem 1.5rem 1.75rem 1.5rem;
  border: 2px solid rgba(196, 48, 43, 0.35);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.18), transparent 45%),
    linear-gradient(155deg, #c4302b 0%, #a11f1a 48%, #1a1a1a 100%);
  text-decoration: none;
  color: #fff;
  box-shadow: 0 10px 28px rgba(161, 31, 26, 0.28);
  transition: transform 0.15s, box-shadow 0.15s;
  overflow: visible;
  z-index: 1;
}

.google-panel:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(161, 31, 26, 0.35);
}

/* Disney-style Barkley caricature peeking in from the side */
.barkley-peek {
  position: absolute;
  left: -1.1rem;
  bottom: -0.35rem;
  width: clamp(7.5rem, 28vw, 9.5rem);
  height: auto;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.28));
  transform: rotate(-4deg);
}

@media (min-width: 700px) {
  .barkley-peek {
    left: -1.6rem;
    bottom: -0.5rem;
    width: 10rem;
  }

  .google-panel {
    padding-left: 3.5rem; /* room so text isn't under Barkley */
  }
}

@media (max-width: 699px) {
  .google-panel {
    padding-bottom: 5.5rem;
    padding-left: 1.5rem;
  }

  .barkley-peek {
    left: 0.25rem;
    bottom: -0.25rem;
    width: 7.25rem;
  }
}

.google-panel-logo {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 0.35rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.google-panel-stars {
  font-size: 1.65rem;
  letter-spacing: 0.12em;
  color: #fbbc04;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.google-panel-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  line-height: 1.3;
}

.google-panel-text strong {
  font-size: clamp(1.35rem, 2.8vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.google-panel-text span {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  max-width: 16rem;
  margin-inline: auto;
}

.google-panel-cta {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  background: #fff;
  color: #a11f1a;
  border-radius: 999px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  padding: 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

/* ——— Pricing ——— */
.price-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price-card-featured {
  border-color: rgba(196, 48, 43, 0.35);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #fff 0%, #fff8f6 100%);
}

.section-alt .price-card-featured {
  background: linear-gradient(180deg, #fff 0%, #fff8f6 100%);
}

.price-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  margin: 0;
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-accent);
  border-radius: 999px;
}

.price {
  font-size: clamp(1.65rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--color-ink);
  margin: 0.4rem 0 0.85rem;
  letter-spacing: -0.02em;
}

.price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-ink-muted);
}

.card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--color-ink-muted);
  font-size: 0.95rem;
}

.card ul li {
  margin-bottom: 0.3rem;
}

/* ——— Chips / lists ——— */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.chip-list a,
.chip {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.chip-list a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-soft);
  box-shadow: 0 2px 8px rgba(196, 48, 43, 0.1);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
  color: var(--color-ink-muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-trust);
  font-weight: 700;
}

/* ——— CTA band ——— */
.cta-band {
  padding: var(--space-8) 0;
  background:
    radial-gradient(ellipse 80% 80% at 10% 0%, rgba(196, 48, 43, 0.35), transparent 55%),
    linear-gradient(160deg, #1c1917 0%, #292524 100%);
  color: #fff;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
}

.cta-band .btn-primary {
  background: var(--color-accent);
}

.cta-band .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-band .btn-secondary:hover {
  border-color: #fff;
  color: #fff;
}

/* ——— Page hero (inner pages) ——— */
.page-hero {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.page-hero .lede {
  max-width: 50rem; /* short intros — avoid mid-sentence wraps */
  font-size: 1.1rem;
}

.page-hero .lede-wide {
  max-width: min(100%, 62rem);
}

/* ——— FAQ ——— */
.faq details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
}

.faq details p {
  margin-top: 0.65rem;
}

/* ——— Footer ——— */
.site-footer {
  padding: 2.5rem 0 2rem;
  background: #141414;
  /* Solid light gray (not translucent) so contrast passes WCAG AA on dark bg */
  color: #d6d3d1;
  font-size: 0.95rem;
}

.site-footer a {
  color: #f5f5f4;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* Footer contact links: larger touch targets (PSI target-size) */
.site-footer p a {
  display: inline-block;
  padding: 0.4rem 0;
  min-height: 1.75rem;
  line-height: 1.45;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer h3 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.footer-brand img {
  width: 2.25rem;
  height: 2.25rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: #a8a29e; /* ~5.5:1 on #141414 for small text */
}

.footer-bottom a {
  color: #e7e5e4;
}

/* ——— Mobile sticky CTA ——— */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 28px rgba(28, 25, 23, 0.1);
}

.sticky-cta .btn {
  padding: 0.75rem 0.5rem;
  font-size: 0.98rem;
  min-height: 2.85rem;
  box-shadow: none;
}

.sticky-cta .btn-primary:hover {
  transform: none;
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

/* ——— Property managers / agents landing ——— */
.pm-pain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .pm-pain-list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
  }
}

.pm-pain-list li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.1rem 1.2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(28, 25, 23, 0.04);
}

.section-alt .pm-pain-list li {
  background: var(--color-surface);
}

.pm-pain-list strong {
  color: var(--color-ink);
  font-size: 1.02rem;
}

.pm-pain-list span {
  color: var(--color-ink-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.pm-share-box {
  max-width: 36rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 2px dashed rgba(196, 48, 43, 0.35);
  background: var(--color-accent-soft);
  text-align: center;
}

.pm-share-url {
  margin: 0 0 0.5rem;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 800;
  color: var(--color-ink);
  letter-spacing: -0.02em;
  word-break: break-all;
}

.pm-hero .hero-photo {
  aspect-ratio: 16 / 9;
}

/* On-call / retainer partnership — standout band */
.pm-retainer-section {
  padding-block: var(--space-7);
}

.pm-retainer {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: calc(var(--radius) + 6px);
  border: 2px solid rgba(196, 48, 43, 0.4);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(196, 48, 43, 0.18), transparent 50%),
    linear-gradient(145deg, #1c1917 0%, #292524 48%, #3f1a18 100%);
  color: #fff;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
}

.pm-retainer-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c1917;
  background: #f5b301;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pm-retainer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 860px) {
  .pm-retainer-grid {
    grid-template-columns: 1.25fr 0.9fr;
    gap: 2.25rem;
    align-items: start;
  }
}

.pm-retainer h2 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
}

.pm-retainer-lede {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 38rem;
}

.pm-retainer p {
  color: rgba(255, 255, 255, 0.82);
}

.pm-retainer-list li {
  color: rgba(255, 255, 255, 0.88);
}

.pm-retainer-list li::before {
  color: #f5b301;
}

.pm-retainer-list strong {
  color: #fff;
}

.pm-retainer .btn-primary {
  background: #fff;
  color: #9f1f1b;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.pm-retainer .btn-primary:hover {
  background: #fdecea;
  color: #9f1f1b;
}

.pm-retainer .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.pm-retainer .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

.pm-retainer-aside {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.pm-retainer-aside h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.pm-retainer-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: pm-step;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pm-retainer-steps li {
  counter-increment: pm-step;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.65rem 0.85rem;
  align-items: start;
}

.pm-retainer-steps li::before {
  content: counter(pm-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #f5b301;
  color: #1c1917;
  font-weight: 800;
  font-size: 0.95rem;
  grid-row: 1 / span 2;
}

.pm-retainer-steps strong {
  color: #fff;
  font-size: 1rem;
}

.pm-retainer-steps span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
  grid-column: 2;
}

.pm-retainer-note {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* About — local small company standout (compact + friendly) */
.about-local-section {
  padding-block: var(--space-5);
}

.about-local {
  position: relative;
  padding: 1.15rem 1.25rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(47, 93, 64, 0.22);
  background: linear-gradient(135deg, #f3faf5 0%, #eef6f0 55%, #fff 100%);
  color: var(--color-ink);
  box-shadow: 0 1px 3px rgba(28, 25, 23, 0.05);
  overflow: hidden;
}

.about-local-badge {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-trust);
  background: var(--color-trust-soft);
  border-radius: 999px;
}

.about-local-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .about-local-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 1.35rem;
    align-items: start;
  }
}

.about-local h2 {
  color: var(--color-ink);
  margin-bottom: 0.35rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.about-local-lede {
  font-size: 1rem;
  color: var(--color-ink-muted);
  max-width: 36rem;
  margin-bottom: 0.65rem;
}

.about-local p {
  color: var(--color-ink-muted);
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}

.about-local p:last-child {
  margin-bottom: 0;
}

.about-local-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

@media (max-width: 520px) {
  .about-local-points {
    grid-template-columns: 1fr;
  }
}

.about-local-points li {
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(47, 93, 64, 0.12);
}

.about-local-points strong {
  display: block;
  color: var(--color-trust);
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

.about-local-points span {
  color: var(--color-ink-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

/* ——— 404 / Barkley lost page ——— */
.page-404 .site-header {
  background: rgba(247, 244, 239, 0.95);
}

.error-404 {
  padding: var(--space-6) 0 var(--space-8);
  min-height: calc(100vh - var(--header-h) - var(--sticky-cta-h) - 2rem);
  display: flex;
  align-items: center;
}

.error-404-inner {
  display: grid;
  gap: var(--space-6);
  align-items: center;
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

@media (min-width: 720px) {
  .error-404-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    text-align: left;
    gap: var(--space-7);
  }
}

.error-404-art {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-3) var(--space-5);
  background:
    radial-gradient(ellipse 70% 55% at 50% 62%, var(--color-trust-soft) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 20%, var(--color-accent-soft) 0%, transparent 65%);
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.error-404-code {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(196, 48, 43, 0.12);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.error-404-barkley {
  position: relative;
  z-index: 1;
  width: min(100%, 17.5rem);
  height: auto;
  margin: 1.25rem auto 0;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-surface);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.9),
    0 12px 32px rgba(28, 25, 23, 0.12);
  animation: barkley-float 3.2s var(--ease) infinite;
}

@keyframes barkley-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .error-404-barkley {
    animation: none;
  }
}

.error-404-paws {
  display: flex;
  gap: 1.25rem;
  margin-top: var(--space-4);
  opacity: 0.45;
}

.error-404-paws span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50% 50% 45% 45%;
  background: var(--color-trust);
  position: relative;
}

.error-404-paws span::before,
.error-404-paws span::after {
  content: "";
  position: absolute;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--color-trust);
}

.error-404-paws span::before {
  top: -0.35rem;
  left: -0.15rem;
}

.error-404-paws span::after {
  top: -0.35rem;
  right: -0.15rem;
  box-shadow: 0.35rem 0.1rem 0 var(--color-trust), -0.35rem 0.1rem 0 var(--color-trust);
}

.error-404-copy h1 {
  margin-bottom: 0.5em;
}

.error-404-copy .lede {
  max-width: 34rem;
}

@media (min-width: 720px) {
  .error-404-copy .lede {
    margin-inline: 0;
  }
}

.error-404-actions {
  margin: var(--space-5) 0;
  justify-content: center;
}

@media (min-width: 720px) {
  .error-404-actions {
    justify-content: flex-start;
  }
}

.error-404-links {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}

.error-404-links-label {
  margin: 0 0 var(--space-3);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-trust);
}

.error-404-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  justify-content: center;
}

@media (min-width: 720px) {
  .error-404-links ul {
    justify-content: flex-start;
  }
}

.error-404-links a {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease), color 0.15s var(--ease);
}

.error-404-links a:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

/* ——— Utilities ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.muted {
  color: var(--color-ink-muted);
  font-size: 0.95rem;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
