/* ==========================================================================
   The Wildlife Guys — site.css
   Distinct visual identity: warm cream + charcoal + orange accent (mascot palette)
   Editorial-but-warm. Trust-first. NOT a generic pest-control template.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ---- Custom scrollbar — subtle orange accent on the rail ---- */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: rgba(26,23,20,0.03); }
::-webkit-scrollbar-thumb { background: rgba(184, 106, 24, 0.35); border-radius: 6px; border: 3px solid var(--w-cream); }
::-webkit-scrollbar-thumb:hover { background: rgba(184, 106, 24, 0.6); }
html { scrollbar-color: rgba(184, 106, 24, 0.45) rgba(26,23,20,0.03); scrollbar-width: thin; }

/* ---- Selection color ---- */
::selection { background: rgba(216, 132, 43, 0.32); color: var(--w-ink); }

/* ---- Scroll progress bar (thin orange line at top of viewport, JS-driven) ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2.5px; z-index: 9999;
  background: linear-gradient(90deg, var(--w-orange), var(--w-orange-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform .12s linear;
  pointer-events: none;
}

/* ---- Entrance reveal (IntersectionObserver-driven) ---- */
.fx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fx-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reduce-motion .fx-reveal {
  opacity: 1; transform: none; transition: none;
}

/* ---- Header scroll state (JS adds .is-scrolled when scrollY > 24) ---- */
.site-header.is-scrolled {
  background: rgba(250, 244, 228, 0.97);
  box-shadow: 0 4px 14px rgba(26, 23, 20, 0.06);
  border-bottom-color: rgba(26, 23, 20, 0.08);
}
.site-header.is-scrolled .wrap {
  padding-top: 10px; padding-bottom: 10px;
}
.site-header.is-scrolled .brand-mark {
  width: 72px; height: 72px;
}
.site-header { transition: background .25s ease, box-shadow .25s ease; }
.site-header .wrap { transition: padding .25s ease; }
.site-header .brand-mark { transition: width .25s ease, height .25s ease; }

:root {
  /* Kit C palette — Outdoors / Wildlife / Restoration
     Per anti-AI doctrine: off-white paper (Pantone Cloud Dancer adjacent),
     deep ink, one dominant accent (the mascot orange), forest secondary */
  --w-ink: #1A1A1A;
  --w-ink-soft: #3A3733;
  --w-ink-mute: #6B6863;
  --w-ink-dim: #8F8C87;
  --w-cream: #EFEAE0;          /* Pantone-Cloud-Dancer-ish: anti-AI default white */
  --w-cream-warm: #E8E2D4;
  --w-cream-deep: #DDD5C2;
  --w-orange: #D8842B;
  --w-orange-deep: #B86A18;
  --w-orange-bright: #F0A04D;
  --w-rust: #8C4A12;
  --w-moss: #4A5D38;
  --w-moss-deep: #2F3E20;
  --w-night: #14110D;
  --w-night-soft: #1F1B15;
  --w-on-dark: #F5EFDF;
  --w-on-dark-mute: rgba(245,239,223,0.74);
  --w-on-dark-dim: rgba(245,239,223,0.48);
  --w-rule: rgba(26,23,20,0.14);
  --w-rule-strong: rgba(26,23,20,0.24);
  --w-rule-on-dark: rgba(245,239,223,0.16);
  --w-shadow-sm: 0 2px 8px rgba(26,23,20,0.06);
  --w-shadow-md: 0 8px 24px rgba(26,23,20,0.10);
  --w-shadow-lg: 0 20px 48px rgba(26,23,20,0.18);
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400; font-size: 17px; line-height: 1.65;
  color: var(--w-ink); background: var(--w-cream);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

h1, h2 {
  font-family: 'Fraunces', 'Source Serif 4', Georgia, serif;
  font-weight: 700; line-height: 1.02;
  color: var(--w-ink); margin: 0 0 0.5em;
  letter-spacing: -0.018em;
  text-transform: none;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
h1 { font-size: clamp(3rem, 8.4vw, 7.2rem); font-weight: 900; letter-spacing: -0.025em; line-height: 0.96; }
h2 { font-size: clamp(2.2rem, 5.4vw, 4.4rem); font-weight: 800; line-height: 1.0; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; line-height: 1.2; letter-spacing: -0.018em; text-transform: none; color: var(--w-ink); margin: 0 0 0.5em; }
h4 { font-size: 1.1rem; font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; text-transform: none; color: var(--w-ink); margin: 0 0 0.5em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--w-orange-deep);
  margin: 0 0 22px; display: inline-flex; align-items: baseline; gap: 10px;
}
/* Auto-prepended section number support via data-num */
.eyebrow[data-num]::before {
  content: '— ' attr(data-num) ' /';
  color: var(--w-ink-mute);
  font-weight: 500;
}
.lead { font-size: clamp(1.1rem, 1.6vw, 1.28rem); line-height: 1.55; color: var(--w-ink-soft); }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section-cream-warm { background: var(--w-cream-warm); }
.section-cream-deep { background: var(--w-cream-deep); }
.section-night { background: var(--w-night); color: var(--w-on-dark); }
.section-night h1, .section-night h2, .section-night h3, .section-night h4 { color: var(--w-on-dark); }
.section-night .lead { color: var(--w-on-dark-mute); }
.section-night .eyebrow { color: var(--w-orange-bright); }
.section-moss { background: var(--w-moss-deep); color: var(--w-on-dark); }
.section-moss h1, .section-moss h2, .section-moss h3 { color: var(--w-on-dark); }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 244, 228, 0.92);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--w-rule);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--w-ink); }
.brand-mark {
  width: 96px; height: 96px; flex-shrink: 0;
  background-image: url('/public/photos/brand/wildlife-guys-mascot.png');
  background-size: contain; background-repeat: no-repeat; background-position: center;
  filter: drop-shadow(0 4px 10px rgba(26,23,20,0.18));
}
.nav { display: flex; align-items: center; gap: 28px; font-size: 14.5px; font-weight: 500; color: var(--w-ink-soft); }
.nav a { color: var(--w-ink-soft); transition: color .15s ease; position: relative; padding: 4px 0; }
.nav > a:not(.cta):not(.phone)::after,
.nav > .nav-item > a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1.5px; background: var(--w-orange-deep);
  transition: right 0.32s cubic-bezier(0.7, 0, 0.3, 1);
  pointer-events: none;
}
.nav > a:not(.cta):not(.phone):hover::after,
.nav > .nav-item:hover > a::after { right: 0; }
.nav a:hover { color: var(--w-orange-deep); }
.nav a.cta {
  background: var(--w-ink); color: var(--w-cream) !important;
  padding: 11px 22px; border-radius: 999px;
  font-weight: 600; font-size: 13.5px; letter-spacing: 0.02em;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.nav a.cta:hover { background: var(--w-orange-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(216,132,43,0.35); }
.nav a.phone { color: var(--w-orange-deep); font-weight: 700; font-variant-numeric: tabular-nums; }
.nav-item { position: relative; }
.nav-item .has-dropdown::after { content: ' ▾'; font-size: 11px; opacity: 0.6; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--w-cream); border: 1px solid var(--w-rule);
  border-radius: 14px; box-shadow: var(--w-shadow-lg);
  padding: 14px; min-width: 280px;
  opacity: 0; visibility: hidden; transition: opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1) ease, transform .15s ease;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-inner { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown a {
  display: block; padding: 10px 14px; border-radius: 10px; color: var(--w-ink); font-weight: 500; font-size: 14px;
  transition: background .12s ease;
}
.nav-dropdown a small { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--w-orange-deep); margin-bottom: 2px; }
.nav-dropdown a:hover { background: var(--w-cream-warm); color: var(--w-ink); }
.nav-toggle { display: none; padding: 8px; color: var(--w-ink); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.005em;
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--w-orange); color: var(--w-cream);
  box-shadow: 0 6px 18px rgba(216,132,43,0.32);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background: var(--w-orange-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(184,106,24,0.42); }
.btn-secondary {
  background: var(--w-ink); color: var(--w-cream);
}
.btn-secondary:hover { background: var(--w-orange-deep); }
.btn-ghost {
  background: transparent; color: var(--w-ink); border: 1.5px solid var(--w-rule-strong);
}
.btn-ghost:hover { border-color: var(--w-ink); background: var(--w-cream-warm); }
.btn-arrow::after { content: '→'; font-size: 17px; transition: transform .18s ease; }
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(4px); }

/* ---- Hero V2 — Photo-led, bold display type ---- */
.hero-v2 {
  position: relative;
  background: var(--w-night);
  color: var(--w-on-dark);
  overflow: hidden;
  min-height: 88vh;
  display: flex; align-items: stretch;
}
.hero-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  width: 100%;
}
.hero-v2-text {
  padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--w-night);
  position: relative;
}
.hero-v2-text::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(216,132,43,0.10) 1px, transparent 1px);
  background-size: 32px 32px; opacity: 0.4; pointer-events: none;
}
.hero-v2-text > * { position: relative; z-index: 1; }
.hero-v2-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--w-orange-bright);
  margin-bottom: 28px;
}
.hero-v2-eyebrow::before { content: ''; width: 36px; height: 2px; background: var(--w-orange-bright); }
.hero-v2-headline {
  font-family: 'Fraunces', 'Source Serif 4', Georgia, serif;
  font-weight: 900; line-height: 0.97;
  font-size: clamp(3rem, 7.6vw, 6.4rem);
  letter-spacing: -0.028em;
  color: var(--w-on-dark);
  text-transform: none;
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 1;
  margin: 0 0 20px;
}
.hero-v2-headline em {
  font-style: italic; color: var(--w-orange-bright); font-weight: 400;
  font-family: 'Source Serif 4', 'Georgia', serif; text-transform: none;
  letter-spacing: -0.025em;
}
.hero-v2-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.55;
  color: var(--w-on-dark-mute); max-width: 540px; margin: 0 0 36px;
}
.hero-v2-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 44px; }
.hero-v2-phone {
  display: inline-flex; flex-direction: column; margin-left: 12px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--w-on-dark-dim);
}
.hero-v2-phone strong {
  font-family: 'Fraunces', serif;
  font-weight: 400; font-size: 26px; color: var(--w-on-dark);
  letter-spacing: 0.01em; margin-top: 4px;
  text-transform: none;
}
.hero-v2-trust {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding-top: 32px;
  border-top: 1px solid var(--w-rule-on-dark);
}
.hero-v2-trust-item strong {
  display: block; font-family: 'Fraunces', serif; font-weight: 800;
  font-weight: 400; font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  color: var(--w-on-dark); line-height: 1;
  letter-spacing: -0.005em;
}
.hero-v2-trust-item small {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--w-on-dark-dim); margin-top: 8px;
}
.hero-v2-photo {
  position: relative;
  background-size: cover; background-position: center;
  background-image: url('/public/photos/work/hero-main.jpg');
  min-height: 88vh;
}
.hero-v2-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,17,13,0.45) 0%, rgba(20,17,13,0) 25%);
  pointer-events: none;
}
.hero-v2-caption {
  position: absolute; bottom: 28px; right: 28px;
  background: rgba(20,17,13,0.78); color: var(--w-on-dark);
  padding: 14px 20px; border-radius: 8px; font-size: 12.5px;
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
  z-index: 2;
}
.hero-v2-caption strong { color: var(--w-orange-bright); }

/* legacy v1 still used by other places — keep but rarely used */
.hero-v1 {
  position: relative;
  padding: clamp(72px, 11vw, 144px) 0 clamp(64px, 9vw, 120px);
  background:
    radial-gradient(circle at 75% 30%, rgba(216,132,43,0.10), transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(74,93,56,0.08), transparent 50%),
    var(--w-cream);
  overflow: hidden;
}
.hero-v1::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(26,23,20,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  background-position: 0 0;
  opacity: 0.5; pointer-events: none;
}
.hero-v1 .wrap { position: relative; z-index: 1; }
.hero-v1-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px; align-items: center;
}
.hero-v1-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--w-orange-deep); margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-v1-eyebrow::before { content: ''; display: inline-block; width: 32px; height: 1.5px; background: var(--w-orange-deep); }
.hero-v1-headline {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 5rem); line-height: 1.0;
  letter-spacing: -0.028em; color: var(--w-ink);
  margin: 0 0 24px;
}
.hero-v1-headline em { font-style: italic; color: var(--w-orange-deep); font-weight: 700; }
.hero-v1-sub {
  font-size: clamp(1.08rem, 1.5vw, 1.22rem); line-height: 1.55;
  color: var(--w-ink-soft); max-width: 580px; margin: 0 0 36px;
}
.hero-v1-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-v1-actions .hero-v1-phone {
  display: inline-flex; flex-direction: column;
  margin-left: 16px; font-size: 13px; color: var(--w-ink-mute);
}
.hero-v1-actions .hero-v1-phone strong {
  font-family: 'Fraunces', serif; font-size: 22px; color: var(--w-ink); font-weight: 700;
  font-variant-numeric: tabular-nums; letter-spacing: -0.012em;
}
.hero-v1-trust {
  margin-top: 48px; display: flex; gap: 32px; flex-wrap: wrap; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--w-rule);
}
.hero-v1-trust-item { display: flex; flex-direction: column; }
.hero-v1-trust-item strong {
  font-family: 'Fraunces', serif; font-size: 28px; font-weight: 800;
  color: var(--w-ink); line-height: 1; letter-spacing: -0.02em;
}
.hero-v1-trust-item small {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--w-ink-mute); margin-top: 6px;
}
.hero-v1-card {
  background: var(--w-cream-warm);
  border: 1px solid var(--w-rule);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--w-shadow-lg);
  position: relative;
}
.hero-v1-card-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--w-orange-deep); margin-bottom: 12px;
}
.hero-v1-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.hero-v1-card-list { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 12px; }
.hero-v1-card-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.45; color: var(--w-ink-soft);
}
.hero-v1-card-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--w-moss-deep); color: var(--w-cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; margin-top: 1px;
}
.hero-v1-card-cta {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--w-rule);
  display: flex; flex-direction: column; gap: 6px;
}
.hero-v1-card-cta a {
  display: inline-flex; justify-content: center; align-items: center;
  padding: 14px; border-radius: 12px;
  background: var(--w-ink); color: var(--w-cream);
  font-weight: 600; font-size: 15px;
  transition: background .18s ease;
}
.hero-v1-card-cta a:hover { background: var(--w-orange-deep); }
.hero-v1-card-note { font-size: 12.5px; color: var(--w-ink-mute); text-align: center; }

/* ---- Marquee / Logos / Trust ---- */
.bar-trust {
  padding: 32px 0; background: var(--w-cream-warm);
  border-top: 1px solid var(--w-rule); border-bottom: 1px solid var(--w-rule);
}
.bar-trust .wrap {
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: space-between;
}
.bar-trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; font-weight: 500; color: var(--w-ink-soft);
}
.bar-trust-item strong { font-family: 'Fraunces', serif; font-weight: 700; color: var(--w-ink); font-size: 18px; }
.bar-trust-item .star { color: var(--w-orange); font-size: 18px; }

/* ---- Service / Animal grid ---- */
.grid-animals {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.card-animal {
  background: var(--w-cream); border: 1px solid var(--w-rule);
  border-radius: 16px; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
  text-decoration: none;
}
.card-animal {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}
.card-animal:hover {
  box-shadow: var(--w-shadow-lg);
  border-color: var(--w-orange);
}
.card-animal-photo {
  aspect-ratio: 5 / 3;
  background-size: cover; background-position: center;
  background-color: var(--w-cream-deep);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-animal:hover .card-animal-photo {
  transform: scale(1.05);
}
.card-animal-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,13,0) 60%, rgba(20,17,13,0.35) 100%);
  transition: opacity 0.35s ease;
}
.card-animal:hover .card-animal-photo::after { opacity: 0.5; }
.card-animal-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.card-animal h3 { font-size: 1.4rem; margin: 0; font-family: 'Inter', sans-serif; font-weight: 800; letter-spacing: -0.022em; text-transform: none; line-height: 1.1; }
.card-animal p { font-size: 14.5px; color: var(--w-ink-soft); margin: 0; flex-grow: 1; line-height: 1.5; }
.card-animal-link {
  font-weight: 700; font-size: 13.5px; color: var(--w-orange-deep);
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: gap .18s ease;
  margin-top: 4px;
}
.card-animal-link::after { content: '→'; transition: transform .18s ease; font-size: 15px; }
.card-animal:hover .card-animal-link::after { transform: translateX(5px); }
/* Old icon-only card-animal (still used in service-area cards in homepage) */
.card-animal-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--w-cream-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
}

/* ---- Process / How it works ---- */
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px;
  margin-top: 56px;
}
.process-step {
  position: relative; padding: 32px 0 0;
  border-top: 2px solid var(--w-orange);
}
.process-step-num {
  font-family: 'Fraunces', serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--w-orange-deep);
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.5rem; margin: 0 0 12px; }
.process-step p { font-size: 15px; color: var(--w-ink-soft); }

/* ---- Letter / Editorial ---- */
.letter {
  max-width: 720px; margin: 0 auto;
  font-size: 1.18rem; line-height: 1.65; color: var(--w-ink-soft);
}
.letter p { margin-bottom: 1.3em; }
.letter strong { color: var(--w-ink); font-weight: 600; }
.letter .signature {
  font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600;
  font-style: italic; color: var(--w-ink); margin-top: 32px;
}

/* ---- Stat blocks ---- */
.stats-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; border-top: 1px solid var(--w-rule); border-bottom: 1px solid var(--w-rule);
}
.stats-row > div {
  padding: 32px 24px; border-right: 1px solid var(--w-rule);
}
.stats-row > div:last-child { border-right: none; }
.stats-row strong {
  display: block; font-family: 'Fraunces', serif; font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800; line-height: 1; color: var(--w-ink); letter-spacing: -0.025em;
}
.stats-row small {
  display: block; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--w-ink-mute);
  margin-top: 10px;
}

/* ---- Reviews / Testimonials ---- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card {
  background: var(--w-cream); border: 1px solid var(--w-rule);
  border-radius: 18px; padding: 28px;
}
.review-stars { color: var(--w-orange); font-size: 17px; letter-spacing: 1px; margin-bottom: 14px; }
.review-card blockquote {
  margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--w-ink); font-weight: 500;
}
.review-card cite {
  display: block; margin-top: 14px; font-style: normal;
  font-size: 13px; font-weight: 600; color: var(--w-ink-soft);
}

/* ---- Footer ---- */
.site-footer {
  position: relative;
  background: var(--w-night); color: var(--w-on-dark-mute);
  padding: 72px 0 32px;
  overflow: hidden;
}
.site-footer::before {
  content: ''; position: absolute;
  bottom: -120px; left: -120px; width: 480px; height: 480px;
  background-image: url('/public/photos/brand/wildlife-guys-mascot.png');
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: 0.04; pointer-events: none; transform: rotate(12deg);
}
.site-footer .wrap { position: relative; z-index: 1; }
.site-footer h4 { color: var(--w-on-dark); font-size: 1rem; margin-bottom: 18px; letter-spacing: 0.05em; }
.site-footer a { color: var(--w-on-dark-mute); display: block; padding: 5px 0; font-size: 14px; transition: color .15s ease; }
.site-footer a:hover { color: var(--w-orange-bright); background: transparent; }
.site-footer a.phone-link {
  display: inline-block; color: var(--w-orange-bright); font-weight: 700;
  padding: 4px 0; font-variant-numeric: tabular-nums;
}
.site-footer a.phone-link:hover { color: #ffb86b; background: transparent; }
.site-footer .footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--w-rule-on-dark);
}
.site-footer .footer-brand {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 18px;
}
.site-footer .footer-mark {
  width: 140px; height: 140px;
  background-image: url('/public/photos/brand/wildlife-guys-mascot.png');
  background-size: contain; background-repeat: no-repeat; background-position: center;
}
.site-footer .footer-brand-text strong { display: none; }
.site-footer .footer-brand-text small { color: var(--w-on-dark-mute); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; display: block; margin-top: 4px; }
.site-footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 28px; font-size: 13px; color: var(--w-on-dark-dim);
}

/* ---- CTA block ---- */
.cta-block {
  background: var(--w-ink); color: var(--w-cream); border-radius: 28px;
  padding: clamp(48px, 7vw, 88px) clamp(36px, 6vw, 80px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(216,132,43,0.22), transparent 50%);
  pointer-events: none;
}
.cta-block::after {
  content: ''; position: absolute;
  top: -60px; right: -60px; width: 260px; height: 260px;
  background-image: url('/public/photos/brand/wildlife-guys-mascot.png');
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: 0.07; pointer-events: none; transform: rotate(-12deg);
}

/* Decorative mascot for any section */
.mascot-watermark { position: relative; }
.mascot-watermark::before {
  content: ''; position: absolute;
  width: 320px; height: 320px;
  background-image: url('/public/photos/brand/wildlife-guys-mascot.png');
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.06; pointer-events: none; z-index: 0;
}
.mascot-watermark.mascot-tr::before { top: -80px; right: -80px; transform: rotate(15deg); }
.mascot-watermark.mascot-bl::before { bottom: -80px; left: -80px; transform: rotate(-12deg); }
.mascot-watermark > * { position: relative; z-index: 1; }
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { color: var(--w-cream); }
.cta-block .lead { color: var(--w-on-dark-mute); max-width: 640px; margin: 0 auto 32px; }
.cta-block .btn-primary { background: var(--w-orange); }

/* ---- Form ---- */
.form-card {
  background: var(--w-cream); border: 1px solid var(--w-rule);
  border-radius: 20px; padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
}
.form-card label { display: block; font-size: 13px; font-weight: 600; color: var(--w-ink); margin-bottom: 6px; letter-spacing: 0.02em; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--w-rule);
  font-family: inherit; font-size: 15px; color: var(--w-ink); background: var(--w-cream);
  transition: border-color .15s ease;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: none; border-color: var(--w-orange); }
.form-card textarea { resize: vertical; min-height: 100px; }

/* ---- Service-page hero (rebuilt to match homepage caliber) ---- */
.svc-hero {
  position: relative;
  background: var(--w-night);
  color: var(--w-on-dark);
  padding: 0;
  overflow: hidden;
  border-bottom: none;
}
.svc-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(216,132,43,0.10) 1px, transparent 1px);
  background-size: 32px 32px; opacity: 0.35; pointer-events: none;
}
.svc-hero::after {
  content: ''; position: absolute;
  bottom: -90px; right: -80px; width: 380px; height: 380px;
  background-image: url('/public/photos/brand/wildlife-guys-mascot.png');
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: 0.04; pointer-events: none; transform: rotate(-8deg);
  z-index: 0;
}
.svc-hero .wrap { position: relative; z-index: 1; padding-top: clamp(48px, 7vw, 96px); padding-bottom: 0; }
.svc-hero .crumbs { color: var(--w-on-dark-dim); margin-bottom: 24px; }
.svc-hero .crumbs a { color: var(--w-orange-bright); }
.svc-hero .crumbs span { opacity: 0.5; }
.svc-hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px;
  align-items: stretch;
}
.svc-hero-text {
  padding-bottom: clamp(48px, 7vw, 96px);
  display: flex; flex-direction: column; justify-content: center;
}
.svc-hero-eyebrow,
.svc-hero .svc-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--w-orange-bright);
  margin-bottom: 24px;
}
.svc-hero-eyebrow::before,
.svc-hero .svc-hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--w-orange-bright); }
.svc-hero h1 {
  font-family: 'Fraunces', 'Source Serif 4', serif;
  font-weight: 900; line-height: 0.98;
  font-size: clamp(2.8rem, 6vw, 5.4rem); letter-spacing: -0.012em;
  color: var(--w-on-dark);
  text-transform: uppercase; margin: 0 0 22px;
}
.svc-hero h1 em {
  font-style: italic; color: var(--w-orange-bright); font-weight: 400;
  font-family: 'Source Serif 4', serif; text-transform: none; letter-spacing: -0.022em;
}
.svc-hero p.lead {
  color: var(--w-on-dark-mute); max-width: 540px; margin-bottom: 32px;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
}
.svc-hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  background: transparent; border: none; padding: 0;
  border-top: 1px solid var(--w-rule-on-dark); margin-top: 8px; padding-top: 28px;
}
.svc-hero-stats > div { padding-right: 18px; border-right: 1px solid var(--w-rule-on-dark); }
.svc-hero-stats > div:last-child { border-right: none; }
.svc-hero-stats > div strong {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
  color: var(--w-on-dark); display: block; line-height: 1; letter-spacing: -0.005em;
}
.svc-hero-stats > div small {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--w-on-dark-dim);
  margin-top: 10px; display: block;
}
.svc-hero-photo {
  position: relative;
  background-size: cover; background-position: center;
  background-color: var(--w-night-soft);
  min-height: 460px;
  margin: 0 -28px -1px 0;
  border-top: 6px solid var(--w-orange);
}
.svc-hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,17,13,0.32) 0%, rgba(20,17,13,0) 30%);
  pointer-events: none;
}
.svc-hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  margin-bottom: 36px;
}
/* legacy aside still used on some hero variants */
.svc-hero .hero-v1-card {
  background: rgba(245, 239, 223, 0.08);
  border: 1px solid var(--w-rule-on-dark-strong);
  color: var(--w-on-dark);
  backdrop-filter: blur(8px);
}
.svc-hero .hero-v1-card h3 { color: var(--w-on-dark); }
.svc-hero .hero-v1-card .hero-v1-card-eyebrow { color: var(--w-orange-bright); }
.svc-hero .hero-v1-card-list li { color: var(--w-on-dark-mute); }
.svc-hero .hero-v1-card-list li::before { background: var(--w-orange); color: var(--w-night); }

/* Force-light typography & button styling within dark svc-hero */
.svc-hero .btn-ghost { color: var(--w-on-dark); border-color: var(--w-rule-on-dark-strong); }
.svc-hero .btn-ghost:hover { background: rgba(245,239,223,0.06); border-color: var(--w-orange-bright); color: var(--w-on-dark); }
.svc-hero a { color: var(--w-on-dark); }
.svc-hero .btn-primary a, .svc-hero .btn-primary { color: var(--w-cream); }
.svc-hero p { color: var(--w-on-dark-mute); }
.svc-hero p.lead { color: var(--w-on-dark-mute); }
.svc-hero strong { color: inherit; }

/* Service-hero alt for pages without a photo aside — keeps the dark feel but lets text fill width */
.svc-hero-textonly { padding: clamp(72px, 9vw, 128px) 0; }
.svc-hero-textonly h1 { max-width: 900px; }
.svc-hero-textonly p.lead { max-width: 720px; }

/* ---- Sticky mobile CTA bar ---- */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 100; padding: 12px 14px;
  background: rgba(20, 17, 13, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-top: 1px solid var(--w-rule-on-dark-strong);
  gap: 10px;
}
.mobile-cta a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 12px; border-radius: 12px;
  font-weight: 700; font-size: 14.5px; letter-spacing: 0.005em;
  text-decoration: none;
  text-align: center;
}
.mobile-cta a.mobile-cta-call {
  background: var(--w-orange); color: var(--w-cream);
  box-shadow: 0 4px 14px rgba(216,132,43,0.4);
}
.mobile-cta a.mobile-cta-book {
  background: transparent; color: var(--w-on-dark);
  border: 1.5px solid var(--w-rule-on-dark-strong);
}
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 78px; }
  .site-footer { padding-bottom: 92px; }
}

/* ---- Service-area SVG map ---- */
.service-area-map {
  background: var(--w-cream); border: 1px solid var(--w-rule);
  border-radius: 18px; padding: 32px; position: relative;
  box-shadow: var(--w-shadow-sm);
}
.service-area-map svg { width: 100%; height: auto; max-height: 500px; }
.service-area-map .city-dot { fill: var(--w-orange); transition: r .15s ease; cursor: pointer; }
.service-area-map .city-dot:hover { fill: var(--w-orange-deep); }
.service-area-map .city-label { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; fill: var(--w-ink); pointer-events: none; }
.service-area-map .center-dot { fill: var(--w-night); }
.service-area-map .ring { fill: none; stroke: var(--w-orange); stroke-opacity: 0.18; stroke-dasharray: 4 6; }

/* ---- Content sections (article-style) ---- */
.prose { font-size: 17px; line-height: 1.65; color: var(--w-ink-soft); max-width: 720px; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.6em; font-size: 1.3rem; }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.prose li { margin-bottom: 0.5em; }
.prose strong { color: var(--w-ink); font-weight: 700; }
.prose blockquote {
  margin: 1.8em 0; padding: 20px 28px;
  border-left: 4px solid var(--w-orange); background: var(--w-cream-warm);
  font-style: italic; font-size: 1.05em; color: var(--w-ink);
}

/* ---- Tables ---- */
.table-clean {
  width: 100%; border-collapse: collapse;
  font-size: 14.5px; background: var(--w-cream);
  border-radius: 14px; overflow: hidden; box-shadow: var(--w-shadow-sm);
}
.table-clean th { background: var(--w-cream-warm); color: var(--w-ink); font-weight: 700; padding: 14px 18px; text-align: left; }
.table-clean td { padding: 14px 18px; border-top: 1px solid var(--w-rule); color: var(--w-ink-soft); }
.table-clean tr:hover td { background: var(--w-cream-warm); }

/* ---- FAQ accordion ---- */
.faq-item {
  border-top: 1px solid var(--w-rule);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--w-rule); }
.faq-q {
  font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 700;
  color: var(--w-ink); margin: 0 0 12px;
}
.faq-a { font-size: 16px; line-height: 1.6; color: var(--w-ink-soft); margin: 0; }
.faq-a p { margin-bottom: 0.8em; }

/* ---- Breadcrumb ---- */
.crumbs { font-size: 13px; color: var(--w-ink-mute); margin-bottom: 14px; }
.crumbs a { color: var(--w-orange-deep); }
.crumbs span { margin: 0 8px; opacity: 0.4; }

/* ---- Responsive ---- */
/* ---- Hero V2 responsive ---- */
@media (max-width: 920px) {
  .hero-v2 { min-height: auto; }
  .hero-v2-grid { grid-template-columns: 1fr; }
  .hero-v2-photo { min-height: 380px; aspect-ratio: 4 / 3; order: -1; }
  .hero-v2-text { padding: 48px 28px 60px; }
  .hero-v2-trust { grid-template-columns: 1fr 1fr; gap: 18px 24px; }
}

@media (max-width: 920px) {
  body { font-size: 16px; }
  /* Drawer pattern below at line ~960 handles nav on mobile.
     Old absolute-dropdown rules removed — they conflicted with the slide-in drawer. */
  .site-header .wrap { padding-top: 12px; padding-bottom: 12px; }
  .brand-mark { width: 68px; height: 68px; }

  .hero-v1-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-v1-card { order: -1; }
  .hero-v1-trust { gap: 24px; }
  .hero-v1-trust-item strong { font-size: 22px; }

  .svc-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-hero-stats { grid-template-columns: 1fr 1fr; }

  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .stats-row > div { border-right: none; border-bottom: 1px solid var(--w-rule); }

  .bar-trust .wrap { gap: 24px; justify-content: flex-start; }
}

@media (max-width: 560px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero-v1 { padding: 56px 0 48px; }
  .svc-hero-stats { grid-template-columns: 1fr; }
  .cta-block { padding: 48px 24px; }
}

@media print {
  .site-header, .site-footer, .nav { display: none; }
  body { background: #fff; }
}
w-orange); color: var(--w-cream);
  box-shadow: 0 4px 14px rgba(216,132,43,0.4);
}
.mobile-cta a.mobile-cta-book {
  background: transparent; color: var(--w-on-dark);
  border: 1.5px solid var(--w-rule-on-dark-strong);
}

/* ==========================================================================
   RESPONSIVE — TABLET + MOBILE
   ========================================================================== */

@media (max-width: 1100px) {
  .hero-v2-grid { grid-template-columns: 1fr; }
  .hero-v2-photo { min-height: 380px; aspect-ratio: 16 / 10; order: -1; }
  .hero-v2-text { padding: 56px 32px 72px; }
}

@media (max-width: 920px) {
  body { font-size: 16px; }
  .wrap, .wrap-narrow { padding: 0 22px; }

  /* HEADER — Hamburger menu activates */
  /* backdrop-filter on the header creates a containing block that traps the
     position:fixed drawer inside the 81px header. Remove it on mobile so the
     hamburger drawer fills the full screen height. */
  .site-header { position: sticky; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  .site-header .wrap { padding: 12px 22px; }
  .brand-mark { width: 72px; height: 72px; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--w-ink); color: var(--w-cream);
    cursor: pointer; z-index: 60;
    transition: background .15s ease, transform .15s ease;
  }
  .nav-toggle:hover { background: var(--w-orange-deep); }
  .nav-toggle:active { transform: scale(0.96); }
  .nav-toggle svg { stroke: currentColor; }

  /* Default state: nav hidden */
  .nav {
    display: flex;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(420px, 92vw);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0;
    background: var(--w-cream);
    box-shadow: -20px 0 60px rgba(26,23,20,0.18);
    padding: 88px 28px 40px;
    overflow-y: auto; overflow-x: hidden;
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(0.5, 0, 0.2, 1);
    z-index: 55;
    -webkit-overflow-scrolling: touch;
  }
  .nav.open { transform: translateX(0); }

  /* Backdrop when nav open */
  body.nav-open::before {
    content: ''; position: fixed; inset: 0;
    background: rgba(20, 17, 13, 0.5);
    backdrop-filter: blur(2px);
    z-index: 50;
    animation: fadeBackdrop .3s ease;
  }
  @keyframes fadeBackdrop { from { opacity: 0; } to { opacity: 1; } }

  /* Mobile nav links */
  .nav > a, .nav > .nav-item > a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--w-rule);
    font-size: 16px; font-weight: 600;
    color: var(--w-ink) !important;
    width: 100%;
  }
  .nav > a:last-child { border-bottom: none; }

  /* Hide underline animation on mobile */
  .nav > a::after, .nav > .nav-item > a::after { display: none !important; }

  /* Nav dropdowns become accordions */
  .nav .nav-item { position: relative; width: 100%; }
  .nav .nav-item .has-dropdown::after {
    content: '+'; position: absolute; right: 4px; top: 50%;
    transform: translateY(-50%);
    font-size: 22px; font-weight: 400;
    color: var(--w-orange-deep);
    transition: transform .2s ease;
    line-height: 1;
  }
  .nav .nav-item.open-mobile .has-dropdown::after { content: '−'; }

  .nav-dropdown {
    position: static !important; transform: none !important;
    opacity: 1 !important; visibility: visible !important;
    box-shadow: none; border: none; padding: 0;
    background: transparent;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .2s ease;
  }
  .nav .nav-item.open-mobile .nav-dropdown {
    max-height: 800px; padding: 6px 0 16px;
  }
  .nav-dropdown-inner { padding-left: 12px; gap: 0; }
  .nav-dropdown a {
    padding: 12px 10px; font-size: 14.5px;
    border-radius: 8px; color: var(--w-ink-soft) !important;
    background: transparent;
  }
  .nav-dropdown a:hover { background: var(--w-cream-warm); }
  .nav-dropdown a small {
    font-size: 10px; color: var(--w-orange-deep);
    margin-bottom: 2px;
  }

  /* Phone + CTA on mobile nav */
  .nav a.phone {
    background: var(--w-cream-warm); padding: 16px 18px !important;
    border-radius: 12px; text-align: center;
    font-size: 18px !important; border-bottom: none;
    margin-top: 18px; color: var(--w-orange-deep) !important;
    display: inline-flex !important; justify-content: center; align-items: center;
    gap: 8px;
  }
  .nav a.phone::before { content: '📞'; font-size: 16px; }
  .nav a.cta {
    margin-top: 12px; padding: 18px 22px !important;
    text-align: center; justify-content: center;
    font-size: 14.5px !important; border-bottom: none;
    border-radius: 12px;
    width: 100%;
  }

  /* HERO V2 mobile */
  .hero-v2 { min-height: auto; }
  .hero-v2-grid { grid-template-columns: 1fr; }
  .hero-v2-photo { min-height: 320px; aspect-ratio: 4 / 3; order: -1; }
  .hero-v2-text { padding: 48px 22px 64px; }
  .hero-v2-headline { font-size: clamp(2.4rem, 9vw, 3.8rem) !important; }
  .hero-v2-sub { font-size: 1rem; }
  .hero-v2-trust { grid-template-columns: 1fr 1fr; gap: 18px 20px; padding-top: 24px; }
  .hero-v2-trust-item strong { font-size: 1.6rem; }
  .hero-v2-actions { gap: 10px; }
  .hero-v2-actions .btn { width: 100%; justify-content: center; }
  .hero-v2-phone { margin-left: 0; width: 100%; padding-top: 6px; }
  .hero-v2-caption {
    position: static; margin: 12px 22px 0;
    text-align: center; padding: 10px 14px; font-size: 11px;
  }

  /* svc-hero mobile */
  .svc-hero-grid { grid-template-columns: 1fr; gap: 0; }
  .svc-hero-photo {
    margin: 0 -22px; min-height: 280px;
    aspect-ratio: 4 / 3;
  }
  .svc-hero .wrap { padding-top: 56px; padding-bottom: 0; }
  .svc-hero-text { padding-bottom: 56px; }
  .svc-hero h1 { font-size: clamp(2rem, 8vw, 3.2rem); }
  .svc-hero p.lead { font-size: 1rem; }
  .svc-hero-stats {
    grid-template-columns: 1fr; gap: 18px;
    border-top: 1px solid var(--w-rule-on-dark);
  }
  .svc-hero-stats > div {
    padding-right: 0; padding-bottom: 18px;
    border-right: none; border-bottom: 1px solid var(--w-rule-on-dark);
  }
  .svc-hero-stats > div:last-child { border-bottom: none; padding-bottom: 0; }

  /* Sections + grids */
  .section { padding: 64px 0; }
  h1 { font-size: clamp(2.4rem, 9vw, 4rem); }
  h2 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .lead { font-size: 1.05rem; }

  /* All multi-column grids collapse */
  .grid-animals { grid-template-columns: 1fr; gap: 20px; }
  .review-grid { grid-template-columns: 1fr; gap: 18px; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }
  .audit-grid { grid-template-columns: 1fr; }
  .gap-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stats-row > div { border-right: none; border-bottom: 1px solid var(--w-rule); padding: 24px 18px; }
  .stats-row > div:nth-child(odd) { border-right: 1px solid var(--w-rule); }
  .stats-row > div:nth-last-child(-n+2) { border-bottom: none; }

  /* Footer */
  .site-footer { padding: 56px 0 32px; }
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr; gap: 36px 24px;
    padding-bottom: 36px;
  }
  .site-footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* CTA blocks */
  .cta-block { padding: 48px 24px; border-radius: 20px; }
  .cta-block h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .cta-block .lead { font-size: 1rem; }
  .cta-block > div { flex-direction: column; }
  .cta-block .btn { width: 100%; justify-content: center; }

  /* Trust bar */
  .bar-trust .wrap { gap: 16px 24px; justify-content: flex-start; }
  .bar-trust-item { font-size: 12.5px; }

  /* Tables */
  .table-clean { font-size: 13px; }
  .table-clean th, .table-clean td { padding: 10px 12px; }

  /* Editorial 2-col blocks → stack */
  .section .wrap > div[style*="grid-template-columns: minmax"] {
    grid-template-columns: 1fr !important; gap: 32px !important;
  }
  .section .wrap > div[style*="grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr)"] {
    grid-template-columns: 1fr !important; gap: 32px !important;
  }
  /* Stacked column inside .section-moss "why us" 2-col */
  .section-moss .wrap > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }

  /* Sticky mobile CTA bar — shown on mobile */
  .mobile-cta { display: flex; }
  body { padding-bottom: 78px; }
  .site-footer { padding-bottom: 92px; }

  /* Service-hero photo mascot overlay smaller on mobile */
  .svc-hero::after { width: 220px; height: 220px; bottom: -50px; right: -50px; }

  /* Page-content nav adjustments */
  .nav-item .has-dropdown::after { content: ''; }
}

@media (max-width: 560px) {
  .wrap, .wrap-narrow { padding: 0 18px; }
  .site-header .wrap { padding: 10px 18px; }
  .brand-mark { width: 60px; height: 60px; }

  /* Hero stats stack 2x2 only */
  .hero-v2-trust { gap: 14px 16px; }
  .hero-v2-trust-item strong { font-size: 1.4rem; }
  .hero-v2-trust-item small { font-size: 10px; }
  .hero-v2-headline { font-size: clamp(2rem, 10vw, 2.8rem) !important; line-height: 1.05; }

  /* svc-hero responsive */
  .svc-hero-photo { margin: 0 -18px; min-height: 220px; }
  .svc-hero h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }

  /* Footer single column */
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Stats single col */
  .stats-row { grid-template-columns: 1fr; }
  .stats-row > div { border-right: none !important; border-bottom: 1px solid var(--w-rule); }
  .stats-row > div:last-child { border-bottom: none; }
  .stats-row strong { font-size: 2rem; }

  /* Section padding tighter */
  .section { padding: 48px 0; }
  .cta-block { padding: 36px 20px; }
  .cta-block h2 { font-size: 1.8rem; }

  /* Process step numbers + headings */
  .process-step h3 { font-size: 1.2rem; }

  /* FAQ */
  .faq-q { font-size: 1.05rem; }
  .faq-a { font-size: 15px; }

  /* Card text */
  .card-animal-body { padding: 22px 22px 24px; }
  .card-animal h3 { font-size: 1.2rem; }

  /* Mobile cta bar safe-area on iPhones */
  .mobile-cta { padding-bottom: calc(12px + env(safe-area-inset-bottom, 0)); }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0)); }
}

/* Print */
@media print {
  .site-header, .site-footer, .nav, .mobile-cta, .scroll-progress { display: none !important; }
  body { background: #fff; padding-bottom: 0; }
  .section { padding: 24px 0; }
}

/* ==========================================================================
   THE JOB, TOLD STRAIGHT — editorial 2-col with hand-crafted detail
   First anti-AI pass: torn paper feel on photo, handwritten annotation,
   asymmetric layout with proper mobile collapse
   ========================================================================== */
.told-straight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  position: relative;
}
.told-straight-photo {
  background-image: url('/public/photos/work/work-collage.jpg');
  background-size: cover; background-position: center;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  box-shadow: var(--w-shadow-lg);
  position: relative;
  transform: rotate(-1.2deg);
  transition: transform .4s cubic-bezier(0.2,0.8,0.2,1);
}
.told-straight-photo:hover { transform: rotate(0deg) scale(1.01); }
/* Sticky-note style annotation */
.told-straight-photo::after {
  content: 'real jobs · real photos';
  position: absolute;
  bottom: -22px; right: 24px;
  background: #FFF7B2;
  color: var(--w-ink);
  padding: 7px 18px;
  font-family: 'Caveat', 'Comic Sans MS', cursive;
  font-size: 17px; font-weight: 700;
  transform: rotate(-3deg);
  box-shadow: 0 3px 10px rgba(26,23,20,0.15);
  letter-spacing: 0.5px;
}
/* Tape strip */
.told-straight-photo::before {
  content: '';
  position: absolute;
  top: -14px; left: 18%;
  width: 80px; height: 22px;
  background: rgba(216, 132, 43, 0.32);
  border: 1px dashed rgba(216, 132, 43, 0.55);
  transform: rotate(-4deg);
  box-shadow: 0 2px 6px rgba(26,23,20,0.08);
}
.told-straight-text { padding-right: 8px; }

@media (max-width: 920px) {
  .told-straight-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .told-straight-photo {
    aspect-ratio: 4 / 3;
    transform: rotate(-1deg);
    margin: 0 -4px;
  }
  .told-straight-photo::after {
    font-size: 15px;
    bottom: -18px; right: 18px;
    padding: 6px 14px;
  }
  .told-straight-photo::before {
    width: 64px; left: 14%;
  }
  .told-straight-text h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .told-straight-text { padding-right: 0; }
}
@media (max-width: 560px) {
  .told-straight-grid { gap: 36px; }
  .told-straight-photo {
    aspect-ratio: 1 / 1;
    transform: rotate(-0.6deg);
  }
}

/* ==========================================================================
   ANTI-AI POLISH — universal craft details
   ========================================================================== */

/* Subtle paper grain on the cream surfaces */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: 0.7;
  z-index: 2;
  mix-blend-mode: multiply;
}

/* Hand-drawn underline accent helper */
.scribble-under {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8'><path d='M2 5 Q 50 0 100 4 T 198 5' stroke='%23D8842B' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 7px;
  padding-bottom: 6px;
}


/* ==========================================================================
   QUOTE / 111 EDITORIAL MOMENT — replaces the AI-default stats row
   ========================================================================== */
.quote-section { padding: clamp(100px, 11vw, 160px) 0; position: relative; }
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 80px; align-items: end;
}
.quote-big-num { position: relative; }
.num-overline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--w-orange-deep);
  margin-bottom: 24px; display: block;
}
.num-mega {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(10rem, 22vw, 22rem);
  line-height: 0.78;
  letter-spacing: -0.06em;
  color: var(--w-ink);
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
  margin-bottom: 28px;
}
.num-caption {
  display: block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.5;
  color: var(--w-ink-soft);
  max-width: 480px;
}
.num-caption em {
  font-style: italic; color: var(--w-orange-deep); font-weight: 500;
  font-family: 'Fraunces', serif;
}
.quote-polaroid {
  background: var(--w-cream);
  padding: 16px 16px 22px;
  box-shadow: 0 20px 40px -20px rgba(26,23,20,0.25), 0 4px 12px rgba(26,23,20,0.08);
  transform: rotate(2.5deg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  max-width: 360px;
}
.quote-polaroid:hover { transform: rotate(0.5deg) translateY(-4px); }
.quote-polaroid::before {
  content: '';
  position: absolute;
  top: -16px; left: 40px;
  width: 70px; height: 24px;
  background: rgba(216, 132, 43, 0.32);
  border: 1px dashed rgba(216, 132, 43, 0.55);
  transform: rotate(-3deg);
  box-shadow: 0 2px 4px rgba(26,23,20,0.08);
}
.polaroid-photo {
  aspect-ratio: 5 / 4;
  background-size: cover; background-position: center;
  filter: saturate(0.85);
}
.polaroid-cap {
  padding: 18px 8px 4px;
  font-family: 'Caveat', cursive;
  font-size: 19px;
  line-height: 1.3;
  color: var(--w-ink);
}
.polaroid-cap strong {
  display: block; margin-top: 8px;
  font-family: 'IBM Plex Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--w-ink-mute);
  font-style: normal;
}

/* Scribble-circle around inline text */
.scribble-circle {
  position: relative; display: inline-block; padding: 0 8px;
  font-style: italic; font-family: 'Fraunces', serif;
  color: var(--w-orange-deep);
}
.scribble-circle::before {
  content: '';
  position: absolute; inset: -8px -4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 60'><path d='M16 32 Q 30 8 130 12 Q 240 18 244 30 Q 246 50 130 50 Q 18 50 18 32' stroke='%23D8842B' stroke-width='2' fill='none' stroke-linecap='round' stroke-dasharray='2 0' opacity='0.85'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

@media (max-width: 920px) {
  .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .num-mega { font-size: clamp(7rem, 30vw, 13rem); }
  .quote-polaroid { transform: rotate(-1.5deg); margin: 0 auto; }
}

/* ==========================================================================
   ASYMMETRIC TIMELINE — replaces the AI-default 4-up process grid
   ========================================================================== */
.timeline-section { position: relative; overflow: hidden; }
.timeline-header { max-width: 720px; margin-bottom: 88px; position: relative; }
.timeline-header h2 em {
  font-style: italic;
  color: var(--w-orange-deep);
  font-weight: 800;
  font-family: 'Fraunces', serif;
}
.timeline-list { list-style: none; padding: 0; margin: 0; position: relative; }
/* Hand-drawn timeline rail */
.timeline-list::before {
  content: '';
  position: absolute;
  left: 38px; top: 8px; bottom: 60px;
  width: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 100' preserveAspectRatio='none'><path d='M2 2 Q 3 25 2 50 Q 1 75 2 98' stroke='%23D8842B' stroke-width='1.8' fill='none' stroke-linecap='round'/></svg>");
  background-size: 100% 200px;
  background-repeat: repeat-y;
  opacity: 0.55;
}
.tl-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 36px;
  padding-bottom: 56px;
  position: relative;
}
.tl-row:last-child { padding-bottom: 0; }

/* Asymmetric: alternate which side leans toward the content area */
.tl-row-2 .tl-content { padding-left: 60px; }
.tl-row-3 .tl-content { padding-left: 24px; max-width: 620px; }
.tl-row-4 .tl-content { padding-left: 80px; }

.tl-mark {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
}
.tl-num {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--w-ink);
  letter-spacing: -0.04em;
}
.tl-dot {
  position: absolute;
  left: 30px; top: 76px;
  width: 16px; height: 16px;
  background: var(--w-orange);
  border-radius: 50%;
  border: 3px solid var(--w-cream-warm);
  box-shadow: 0 0 0 1px rgba(216,132,43,0.4);
}
.tl-dot-final {
  background: var(--w-ink);
  width: 22px; height: 22px;
  left: 27px;
}
.tl-content { padding-top: 12px; }
.tl-content h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.018em;
  margin-bottom: 14px;
  text-transform: none;
  line-height: 1.05;
  color: var(--w-ink);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.tl-content p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--w-ink-soft);
  max-width: 540px;
  margin-bottom: 14px;
}
.tl-aside {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--w-orange-deep);
  transform: rotate(-2deg);
}
/* "2-YR WARRANTY" stamp */
.tl-stamp {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--w-orange-deep);
  border: 2px solid var(--w-orange-deep);
  padding: 4px 10px;
  transform: rotate(-3deg);
  background: rgba(255, 247, 178, 0.35);
  white-space: nowrap;
}

@media (max-width: 920px) {
  .timeline-list::before { left: 28px; bottom: 30px; }
  .tl-row { grid-template-columns: 68px minmax(0, 1fr); gap: 20px; padding-bottom: 40px; }
  .tl-num { font-size: 42px; }
  .tl-dot { left: 22px; top: 58px; width: 14px; height: 14px; }
  .tl-row-2 .tl-content, .tl-row-3 .tl-content, .tl-row-4 .tl-content { padding-left: 0; }
  .tl-content h3 { font-size: 1.4rem; gap: 10px; }
  .tl-content p { font-size: 15.5px; }
}


/* ==========================================================================
   CITY PAGES — hero photo + in-content "moment" block + caption + attribution
   ========================================================================== */
.city-hero { padding: 0 0 64px; margin-top: -8px; }
.city-hero-fig {
  position: relative;
  margin: 0; padding: 0;
  background: var(--w-ink);
  overflow: hidden;
}
.city-hero-fig img {
  display: block;
  width: 100%; height: clamp(280px, 42vw, 520px);
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}
.city-hero-fig::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(20,17,13,0.55) 100%);
  pointer-events: none;
}
.city-hero-fig figcaption {
  position: absolute; left: 32px; right: 32px; bottom: 22px;
  color: var(--w-cream);
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px; z-index: 1;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
}
.city-hero-fig .city-hero-label {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1;
}
.city-hero-fig .city-hero-credit {
  opacity: 0.7;
  font-size: 10.5px;
  text-align: right;
  max-width: 50%;
}
.city-hero-fig .city-hero-credit a { color: var(--w-cream); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); }

/* In-content "moment" block: photo + paragraph */
.city-moment {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  margin: 56px 0 24px;
}
.city-moment figure {
  margin: 0;
  position: relative;
  transform: rotate(-0.4deg);
  box-shadow: 0 24px 48px -24px rgba(26,23,20,0.32), 0 6px 14px rgba(26,23,20,0.08);
}
.city-moment figure img {
  display: block; width: 100%; height: auto;
  filter: saturate(0.92);
}
.city-moment-text { padding-right: 8px; }
.city-moment-text .eyebrow { margin-bottom: 18px; }
.city-moment-text h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.city-moment-text p { font-size: 16.5px; line-height: 1.65; color: var(--w-ink-soft); }
.city-moment-text p + p { margin-top: 12px; }

@media (max-width: 920px) {
  .city-hero-fig figcaption { left: 20px; right: 20px; bottom: 16px; }
  .city-hero-fig .city-hero-credit { display: none; }
  .city-moment { grid-template-columns: 1fr; gap: 32px; }
  .city-moment figure { transform: rotate(0deg); }
}

/* Smaller footer logo on mobile, still much bigger than old version */
@media (max-width: 920px) {
  .site-footer .footer-mark { width: 110px; height: 110px; }
}
@media (max-width: 560px) {
  .site-footer .footer-mark { width: 96px; height: 96px; }
}

/* ==========================================================================
   CITY PAGES — scoped intro: smaller H1, tighter padding, photo-first order
   ========================================================================== */
.section-city-intro { padding: clamp(36px, 5vw, 64px) 0 clamp(24px, 3vw, 40px); }
.section-city-intro .crumbs { margin-bottom: 16px; }
.section-city-intro .eyebrow { margin-bottom: 14px; }
.section-city-intro h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem) !important;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin-bottom: 18px;
  max-width: 880px;
}
.section-city-intro .lead {
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.55;
  color: var(--w-ink-soft);
  max-width: 720px;
}
/* Tighten the city-hero so it doesn't dominate */
.city-hero { padding: 0 0 0; }
.city-hero-fig img { height: clamp(240px, 32vw, 400px) !important; }

@media (max-width: 920px) {
  .section-city-intro h1 { font-size: clamp(1.6rem, 7.5vw, 2.4rem) !important; }
  .city-hero-fig img { height: clamp(180px, 50vw, 280px) !important; }
}

/* ==========================================================================
   SERVICE PAGES — scoped intro: smaller H1/H2, tighter hero, fixed photo
   ========================================================================== */
.svc-page .svc-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.6rem) !important;
  text-transform: none;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.018em;
}
.svc-page .svc-hero p.lead {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  max-width: 540px;
  margin-bottom: 28px;
}
.svc-page .svc-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 48px !important;
}
.svc-page .svc-hero-text {
  padding-bottom: clamp(48px, 6vw, 80px) !important;
}
.svc-page .svc-hero-photo {
  min-height: 0 !important;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  align-self: stretch;
  margin-bottom: 0 !important;
}
.svc-page h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem) !important;
  text-transform: none;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.018em;
}
.svc-page section.section { padding: clamp(56px, 7vw, 88px) 0; }

/* Timeline step-5 row (service pages have 5 steps; home only had 4) */
.tl-row-5 .tl-content { padding-left: 36px; }

@media (max-width: 920px) {
  .svc-page .svc-hero h1 { font-size: clamp(1.6rem, 7vw, 2.4rem) !important; }
  .svc-page .svc-hero-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .svc-page .svc-hero-photo { aspect-ratio: 16 / 11; max-height: 360px; order: -1; }
  .svc-page h2 { font-size: clamp(1.4rem, 6.5vw, 2rem) !important; }
  .tl-row-5 .tl-content { padding-left: 0; }
}

/* ==========================================================================
   GBP / GOOGLE FIND-US block — map embed + trust panel
   ========================================================================== */
.gbp-section { padding: clamp(64px, 9vw, 120px) 0; }
.gbp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}
.gbp-text { max-width: 520px; }
.gbp-text h2 { margin-bottom: 22px; }
.gbp-text p { color: var(--w-ink-soft); font-size: 16.5px; line-height: 1.65; margin-bottom: 28px; }
.gbp-rating-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 32px;
  padding: 16px 20px; background: var(--w-cream-warm);
  border: 1px solid var(--w-rule);
  border-left: 4px solid var(--w-orange);
}
.gbp-rating-row .stars {
  color: var(--w-orange-deep); font-size: 22px; letter-spacing: 2px; line-height: 1;
}
.gbp-rating-row strong {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: 26px; line-height: 1; color: var(--w-ink);
}
.gbp-rating-row .rev-count {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  letter-spacing: 0.06em; color: var(--w-ink-mute);
  text-transform: uppercase;
}
.gbp-map {
  position: relative;
  border: 1px solid var(--w-rule);
  background: var(--w-cream-warm);
  box-shadow: 0 22px 50px -28px rgba(26,23,20,0.34), 0 6px 14px rgba(26,23,20,0.06);
  transform: rotate(0.3deg);
}
.gbp-map iframe {
  display: block;
  width: 100%; height: 420px; border: 0;
  filter: saturate(0.92) contrast(1.02);
}
.gbp-map::before {
  content: ''; position: absolute;
  top: -14px; left: 32px;
  width: 90px; height: 22px;
  background: rgba(216, 132, 43, 0.32);
  border: 1px dashed rgba(216, 132, 43, 0.55);
  transform: rotate(-2deg);
  z-index: 2;
}

@media (max-width: 920px) {
  .gbp-grid { grid-template-columns: 1fr; gap: 32px; }
  .gbp-map iframe { height: 320px; }
}
