:root {
  --cream: #f7f1e3;
  --paper: #fffdf7;
  --forest: #123f31;
  --deep: #0a3027;
  --sage: #78956f;
  --sage-soft: #e3eadb;
  --mustard: #e2aa21;
  --charcoal: #273a34;
  --muted: #60736b;
  --line: rgba(18, 63, 49, .15);
  --shadow: 0 12px 26px rgba(25, 59, 42, .07);
  --radius: 15px;
  --scroll-progress: 0%;
  --uy-loop: 30s;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font: 16px/1.65 Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(226, 170, 33, .32); color: var(--deep); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--deep);
  font-family: Georgia, serif;
  line-height: 1.1;
}
h1 {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 6vw, 6.2rem);
  letter-spacing: -.075em;
}
h1 span {
  display: block;
  color: #9b7220;
  font-style: italic;
}
h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  letter-spacing: -.045em;
}
h3 { font-size: 1.23rem; }
a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 4px;
}
.container { width: min(1120px, calc(100% - 48px)); margin: auto; }
.section { padding: 82px 0; scroll-margin-top: 72px; }
.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 30;
  padding: 10px;
  background: var(--deep);
  color: #fff;
}
.skip-link:focus { top: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 12px max(28px, calc((100% - 1160px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, .92);
  backdrop-filter: blur(18px) saturate(128%);
  box-shadow: 0 10px 26px rgba(18, 63, 49, .05);
  transition: min-height .22s ease, box-shadow .22s ease, background .22s ease, padding .22s ease;
}
.site-header.is-compact { min-height: 68px; padding-top: 9px; padding-bottom: 9px; background: rgba(255, 253, 247, .96); box-shadow: 0 12px 30px rgba(18, 63, 49, .08); }
.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mustard) var(--scroll-progress), transparent var(--scroll-progress));
  pointer-events: none;
}
@media (min-width: 761px) { .scroll-progress { display: none; } }
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; color: var(--deep); text-decoration: none; transition: transform .18s ease, opacity .18s ease; }
.brand:hover { opacity: .92; transform: translateY(-1px); }
.brand > span:last-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 48px;
}
.brand-mark {
  display: block;
  width: 60px;
  height: 49px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 3px;
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand strong { display: block; font-size: 1.08rem; line-height: 1; letter-spacing: .08em; text-transform: uppercase; }
.brand small { display: block; color: inherit; font-size: .58rem; font-weight: bold; line-height: 1.25; letter-spacing: .16em; text-transform: uppercase; }
.primary-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  max-width: 100%;
  padding: 5px;
  border: 1px solid rgba(18, 63, 49, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65);
}
.primary-nav a,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 9px;
  border-radius: 999px;
  color: var(--forest);
  font-size: clamp(.6rem, .68vw, .69rem);
  font-weight: bold;
  letter-spacing: .065em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease, opacity .18s ease, transform .18s ease, box-shadow .18s ease;
}
.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.nav-dropdown-toggle::after {
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 25;
  display: grid;
  min-width: 230px;
  padding: 8px;
  border: 1px solid rgba(18, 63, 49, .12);
  border-radius: 12px;
  background: rgba(255, 253, 247, .98);
  box-shadow: 0 18px 38px rgba(18, 63, 49, .16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity .16s ease, transform .16s ease;
}
.nav-dropdown-menu::before {
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  height: 10px;
  content: "";
}
.nav-dropdown-menu a {
  justify-content: flex-start;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--forest);
  font-size: .68rem;
  letter-spacing: .055em;
  text-transform: none;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: translateY(1px) rotate(225deg);
}
.primary-nav a:not(.button):hover,
.nav-dropdown-toggle:hover { background: rgba(226, 170, 33, .14); color: #7e5d18; transform: translateY(-1px); }
.primary-nav a[aria-current="page"]:not(.button),
.nav-dropdown-toggle.is-current { background: rgba(18, 63, 49, .1); color: var(--deep); box-shadow: inset 0 0 0 1px rgba(18, 63, 49, .08); }
.nav-indicator {
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: var(--nav-indicator-width, 0);
  background: var(--mustard);
  content: "";
  opacity: var(--nav-indicator-opacity, 0);
  pointer-events: none;
  transform: translateX(var(--nav-indicator-x, 0));
  transition: transform .22s ease, width .22s ease, opacity .2s ease;
}
.menu-toggle { display: none; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 2px solid var(--mustard);
  border-radius: 6px;
  background: var(--mustard);
  color: var(--deep);
  cursor: pointer;
  font-size: .72rem;
  font-weight: bold;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: filter .18s ease, transform .18s ease;
}
.button:hover { filter: brightness(.96); transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-small { min-height: 36px; padding: 9px 13px; font-size: .63rem; }
.text-link {
  display: inline-flex;
  gap: 7px;
  margin-left: 18px;
  color: var(--forest);
  font-size: .76rem;
  font-weight: bold;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.inline-link {
  color: var(--forest);
  font-weight: bold;
  text-decoration-color: rgba(226, 170, 33, .7);
  text-underline-offset: 4px;
}
.inline-link:hover { color: #8e6a1d; }
.eyebrow {
  margin-bottom: 11px;
  color: #55764e;
  font-size: .68rem;
  font-weight: bold;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero { position: relative; overflow: hidden; padding: 72px 0 116px; background: #123f31; isolation: isolate; }
.hero-background-video {
  position: absolute;
  inset: -5%;
  z-index: -2;
  width: 110%;
  height: 110%;
  object-fit: cover;
  transform: scale(1.05);
  transform-origin: center;
  animation: hero-video-fade .85s ease both;
}
.hero-background-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 44, 36, .54) 0%, rgba(13, 44, 36, .24) 46%, rgba(13, 44, 36, .08) 100%),
    linear-gradient(180deg, rgba(13, 44, 36, .04), rgba(13, 44, 36, .24));
}
.hero-film-effect {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(245, 211, 142, .035);
  box-shadow: inset 0 0 100px rgba(8, 27, 21, .22);
  mix-blend-mode: soft-light;
  pointer-events: none;
  animation: hero-film-flicker 1.35s steps(6, end) infinite;
}
.hero-grid { position: relative; z-index: 1; display: grid; max-width: min(calc(100% - 40px), 820px); margin-left: max(20px, calc((100vw - 1180px) / 2)); }
.hero-copy .eyebrow { color: rgba(255, 253, 247, .82); }
.hero-copy h1,
.hero-copy h1 span,
.hero-copy .hero-text { color: #fffdf7; text-shadow: 0 4px 22px rgba(13, 44, 36, .32); }
.hero-copy .text-link { color: #fffdf7; }
.hero-text { max-width: 610px; margin-bottom: 25px; font-size: 1.08rem; }
.hero-test-note {
  position: absolute;
  right: max(20px, calc((100vw - 1120px) / 2));
  bottom: 14px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 253, 247, .72);
  font-size: .68rem;
  letter-spacing: .02em;
}
.placeholder {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  align-content: center;
  gap: 5px;
  border: 1px dashed rgba(18, 63, 49, .28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(226, 170, 33, .16), transparent 30%),
    linear-gradient(145deg, #edf1e5, #dce6d2);
  color: #567165;
  text-align: center;
}
.placeholder span { position: relative; z-index: 1; font-size: .69rem; font-weight: bold; letter-spacing: .12em; text-transform: uppercase; }
.placeholder small { position: relative; z-index: 1; font-size: .72rem; }
.aspect-hero { aspect-ratio: 1.18 / 1; }
.aspect-service { aspect-ratio: 1.48 / 1; }
.aspect-detail { aspect-ratio: 2.25 / 1; }
.aspect-map { aspect-ratio: 1.15 / 1; }
.placeholder-hero {
  min-height: 430px;
  background: linear-gradient(125deg, #edf1e5 15%, #dce6d2 48%, #f3eac8 70%, #e4ebdc 92%);
  background-size: 230% 230%;
  animation: ambient-drift 14s ease-in-out infinite alternate;
}
.hero-image-frame {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 49, .16);
  border-radius: var(--radius);
  background: #efe4cf;
  box-shadow: 0 24px 58px rgba(25, 59, 42, .13);
}
.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes hero-video-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@keyframes hero-film-flicker {
  0%, 100% { opacity: .72; }
  18% { opacity: .82; }
  41% { opacity: .68; }
  63% { opacity: .78; }
  84% { opacity: .71; }
}
.animated-hero-frame {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 49, .16);
  border-radius: var(--radius);
  isolation: isolate;
  background: #efe4cf;
  box-shadow: 0 24px 58px rgba(25, 59, 42, .13);
}
.uy-base-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  animation: uy-whole-scene-breathe var(--uy-loop) ease-in-out infinite;
}
.uy-cloud-glow {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  background: rgba(255, 250, 240, .28);
  filter: blur(18px);
  mix-blend-mode: screen;
  pointer-events: none;
}
.uy-cloud-left { top: 7%; left: 7%; width: 22%; height: 6%; animation: uy-cloud-left var(--uy-loop) ease-in-out infinite; }
.uy-cloud-mid { top: 10%; left: 52%; width: 15%; height: 5%; animation: uy-cloud-mid var(--uy-loop) ease-in-out infinite; }
.uy-breeze {
  position: absolute;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent);
  filter: blur(8px);
  mix-blend-mode: soft-light;
  opacity: .26;
  pointer-events: none;
}
.uy-breeze-left { top: 25%; left: -12%; width: 38%; height: 75%; transform: rotate(-10deg); animation: uy-breeze-left var(--uy-loop) ease-in-out infinite; }
.uy-breeze-right { top: 0; right: -18%; width: 42%; height: 72%; transform: rotate(8deg); animation: uy-breeze-right var(--uy-loop) ease-in-out infinite; }
.uy-water-shimmer {
  position: absolute;
  top: 55.5%;
  left: 2.5%;
  z-index: 4;
  width: 18%;
  height: 7.5%;
  border-radius: 50%;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255,255,255,.45) 46%, transparent 57% 100%);
  filter: blur(5px);
  mix-blend-mode: soft-light;
  opacity: .35;
  pointer-events: none;
  animation: uy-water-shimmer var(--uy-loop) ease-in-out infinite;
}
.uy-cutout {
  position: absolute;
  inset: 0;
  z-index: 5;
  background-image: url("images/urban-yards-hero-source.png?v=20260605-1");
  background-position: center;
  background-size: 100% 100%;
  pointer-events: none;
  will-change: transform;
}
.uy-rabbit-layer {
  clip-path: polygon(33% 62%, 46% 61%, 47% 83%, 33% 84%);
  transform-origin: 40% 78%;
  animation: uy-rabbit-cutout var(--uy-loop) ease-in-out infinite;
}
.uy-robin-layer {
  clip-path: polygon(43% 68%, 56% 68%, 56% 83%, 43% 83%);
  transform-origin: 49% 79%;
  animation: uy-robin-cutout var(--uy-loop) ease-in-out infinite;
}
.uy-bird-layer {
  clip-path: polygon(80% 14%, 90% 14%, 90% 24%, 80% 24%);
  transform-origin: 84% 20%;
  animation: uy-bird-cutout var(--uy-loop) ease-in-out infinite;
}
.uy-butterfly-layer {
  clip-path: polygon(28% 28%, 34% 28%, 34% 38%, 28% 38%);
  transform-origin: 31% 33%;
  animation: uy-butterfly-cutout var(--uy-loop) ease-in-out infinite;
}
.uy-plant-left-layer {
  z-index: 4;
  clip-path: polygon(0 45%, 29% 58%, 30% 100%, 0 100%);
  transform-origin: 10% 100%;
  animation: uy-plant-left-cutout var(--uy-loop) ease-in-out infinite;
}
.uy-plant-right-layer {
  z-index: 4;
  clip-path: polygon(63% 46%, 100% 37%, 100% 100%, 65% 100%);
  transform-origin: 86% 100%;
  animation: uy-plant-right-cutout var(--uy-loop) ease-in-out infinite;
}
.uy-butterfly-pulse, .uy-bee-pulse, .uy-bird-perch, .uy-robin-hop, .uy-rabbit-ear {
  position: absolute;
  z-index: 6;
  border-radius: 999px;
  mix-blend-mode: soft-light;
  opacity: 0;
  pointer-events: none;
}
.uy-butterfly-pulse { top: 28.5%; left: 28.5%; width: 42px; height: 34px; background: rgba(255, 199, 64, .65); filter: blur(7px); animation: uy-butterfly-flicker var(--uy-loop) ease-in-out infinite; }
.uy-bee-pulse { top: 72.8%; left: 73.2%; width: 38px; height: 23px; background: rgba(255, 205, 64, .58); filter: blur(6px); animation: uy-bee-flicker var(--uy-loop) ease-in-out infinite; }
.uy-bird-perch { top: 14.7%; right: 19.2%; width: 48px; height: 30px; background: rgba(255,255,255,.3); filter: blur(6px); animation: uy-perched-bird var(--uy-loop) ease-in-out infinite; }
.uy-robin-hop { top: 61%; left: 52.3%; width: 62px; height: 42px; background: rgba(210, 104, 45, .34); filter: blur(8px); animation: uy-robin-hop var(--uy-loop) ease-in-out infinite; }
.uy-rabbit-ear { top: 55.3%; left: 27.2%; width: 52px; height: 78px; background: rgba(229, 181, 140, .28); filter: blur(9px); animation: uy-rabbit-ear var(--uy-loop) ease-in-out infinite; }
.hero-glow {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(226, 170, 33, .18);
  filter: blur(20px);
  opacity: .7;
  pointer-events: none;
  transform: translate(var(--glow-x, 40px), var(--glow-y, 40px));
  transition: transform .18s ease-out;
}
.services { position: relative; background: rgba(255, 253, 247, .68); }
.section-heading { max-width: 650px; margin-bottom: 31px; }
.section-heading > p:last-child { max-width: 590px; color: var(--muted); }
.centered { margin-inline: auto; text-align: center; }
.card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.home-promotions {
  position: relative;
  padding-block: 48px 36px;
  background:
    radial-gradient(circle at 88% 8%, rgba(226, 170, 33, .12), transparent 28%),
    linear-gradient(180deg, #eef3e7 0%, #f8f8f0 45%, #f2f5eb 100%);
}
.home-promotions::before,
.home-promotions::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 63, 49, .18), transparent);
  content: "";
}
.home-promotions::before { top: 0; }
.home-promotions::after { bottom: 0; }
.promotions-shell {
  width: min(calc(100% - 48px), 1120px);
  margin-inline: auto;
}
.promotions-intro {
  display: grid;
  gap: 20px;
  margin-bottom: 26px;
}
.promotions-heading {
  max-width: 790px;
  margin: 0;
  text-align: left;
}
.promotions-heading h2 {
  max-width: 700px;
  margin-bottom: 12px;
  font-size: clamp(2.7rem, 4.2vw, 3.75rem);
  line-height: 1.02;
}
.promotions-heading > p:last-child {
  max-width: 680px;
  margin-inline: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.58;
}
.promotion-discount {
  position: relative;
  display: flex;
  width: min(100%, 1040px);
  min-height: 74px;
  margin-inline: auto;
  padding: 16px 24px;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 49, .14);
  border-radius: 22px;
  background:
    linear-gradient(100deg, rgba(226, 170, 33, .1), transparent 38%),
    rgba(255, 253, 247, .84);
  box-shadow: 0 18px 38px rgba(25, 59, 42, .085);
}
.promotion-discount::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--mustard);
  content: "";
}
.promotions-credit {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border: 1px solid rgba(155, 114, 32, .23);
  border-radius: 50%;
  place-items: center;
  background: rgba(226, 170, 33, .13);
  color: #735517;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
}
.promotion-discount-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}
.promotion-discount-copy strong {
  color: var(--deep);
  font-family: Georgia, serif;
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.22;
}
.promotion-discount-copy small {
  max-width: 760px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.42;
}
.promotions-grid {
  display: grid;
  gap: 22px;
}
.promotion-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 210px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(30px, 3vw, 38px);
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 49, .13);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .42), transparent 58%),
    #fbfaf2;
  box-shadow: 0 18px 38px rgba(25, 59, 42, .085);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.promotion-card:hover {
  border-color: rgba(18, 63, 49, .24);
  box-shadow: 0 23px 45px rgba(25, 59, 42, .12);
  transform: translateY(-3px);
}
.promotion-card:focus-within {
  border-color: rgba(18, 63, 49, .36);
  box-shadow: 0 0 0 3px rgba(226, 170, 33, .19), 0 20px 40px rgba(25, 59, 42, .1);
}
.promotion-card.is-featured {
  border-color: rgba(18, 63, 49, .24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .48), transparent 52%),
    linear-gradient(120deg, #f9faef, #e7efdc);
  box-shadow: 0 22px 46px rgba(25, 59, 42, .13);
}
.promotion-card.is-featured::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--mustard);
  content: "";
}
.promotion-card-header {
  display: grid;
  align-content: start;
  gap: 8px;
  padding-right: 18px;
  border-right: 1px solid rgba(18, 63, 49, .12);
}
.promotion-label {
  color: var(--forest);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}
.promotion-helper {
  max-width: 150px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.42;
}
.promotion-card-content {
  display: grid;
  max-width: 820px;
  align-content: start;
  justify-items: start;
}
.promotion-card-content h3 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.03;
}
.promotion-card-content p {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
}
.promotion-card-content .button {
  width: auto;
  min-height: 42px;
  margin-top: 0;
  padding: 10px 18px;
  font-size: .66rem;
  line-height: 1.25;
}
.promotion-card-content .button:focus-visible {
  outline: 3px solid rgba(18, 63, 49, .34);
  outline-offset: 3px;
}
.promotions-scope-note {
  max-width: 940px;
  margin: 30px auto 0;
  padding: 15px 18px;
  border: 1px solid rgba(18, 63, 49, .1);
  border-left: 3px solid rgba(155, 114, 32, .58);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 253, 247, .7);
  color: #596c63;
  font-size: .76rem;
  line-height: 1.6;
}
.promotions-scope-note strong { color: var(--forest); }
.home-flow-section { background: linear-gradient(180deg, rgba(255, 253, 247, .72), rgba(227, 234, 219, .46)); }
.home-flow-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.home-flow-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 270px;
  padding: clamp(22px, 3vw, 34px);
}
.home-flow-card h2 { max-width: 520px; margin-bottom: 0; font-size: clamp(1.85rem, 3vw, 2.65rem); }
.home-flow-card p:not(.eyebrow) { max-width: 560px; margin-bottom: 6px; color: var(--muted); }
.home-flow-card .text-link { margin-left: 0; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.service-card {
  min-height: 385px;
  transform: perspective(850px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift, 0));
  transform-style: preserve-3d;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { --lift: -7px; border-color: rgba(18, 63, 49, .25); box-shadow: 0 18px 32px rgba(25, 59, 42, .11); }
.service-card-media, .service-detail-media {
  overflow: hidden;
  background: #e6eadb;
}
.service-card-media {
  height: 178px;
  border-bottom: 1px solid rgba(18, 63, 49, .1);
}
.service-detail-media {
  aspect-ratio: 4 / 3;
  margin: -24px -24px 6px;
  border-bottom: 1px solid rgba(18, 63, 49, .1);
}
.service-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .32s ease, filter .32s ease;
}
.service-card:hover .service-card-image,
.service-detail-card:hover .service-card-image {
  filter: saturate(1.03);
  transform: scale(1.03);
}
.placeholder-card { min-height: 166px; border: 0; border-bottom: 1px dashed rgba(18, 63, 49, .2); border-radius: 0; transition: background .2s ease; }
.service-card:nth-child(1) .placeholder-card { background: linear-gradient(145deg, #edf1e5, #dce6d2); }
.service-card:nth-child(2) .placeholder-card { background: linear-gradient(145deg, #eef0df, #dde4c9); }
.service-card:nth-child(3) .placeholder-card { background: linear-gradient(145deg, #e8efe8, #d3e1d7); }
.service-card:nth-child(4) .placeholder-card { background: linear-gradient(145deg, #f0eee0, #e2dfc5); }
.service-card:hover .placeholder-card { background: linear-gradient(145deg, #e7eee0, #ceddc2); }
.card-body { padding: 23px 20px; }
.card-body h3 { min-height: 46px; margin-bottom: 10px; }
.service-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--deep);
  cursor: default;
  font: inherit;
  text-align: left;
}
.service-toggle i { display: none; }
.service-card-summary {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}
.card-body ul { margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .88rem; }
.card-body li:before { margin-right: 8px; color: #658c5d; content: "+"; font-weight: bold; }
.service-card-link {
  display: inline-flex;
  margin-top: 16px;
  color: #8e6a1d;
  font-size: .65rem;
  font-weight: bold;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.service-card-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.property-types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin-top: 21px; }
.property-types span {
  padding: 10px 8px;
  border: 1px solid rgba(18, 63, 49, .13);
  border-radius: 999px;
  background: #f9fbf4;
  color: var(--forest);
  font-size: .67rem;
  font-weight: bold;
  letter-spacing: .045em;
  text-align: center;
  text-transform: uppercase;
}
.calendar-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, .86), rgba(227, 234, 219, .82)),
    var(--paper);
}
.calendar-layout { display: grid; gap: 14px; }
.calendar-section .section-heading { margin-bottom: 0; }
.calendar-section .section-heading h2 { margin-bottom: 16px; }
.calendar-section .section-heading > p:last-child { margin-bottom: 0; }
.calendar-panel {
  display: grid;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(18, 63, 49, .13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, .88), rgba(238, 245, 231, .78));
  box-shadow: 0 18px 38px rgba(25, 59, 42, .09);
}
.calendar-controls {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 18px;
  padding: 4px 4px 18px;
  border-bottom: 1px solid rgba(18, 63, 49, .12);
}
.control-label {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: .64rem;
  font-weight: bold;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.segmented-control, .month-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.segmented-control {
  padding: 5px;
  border: 1px solid rgba(18, 63, 49, .12);
  border-radius: 10px;
  background: rgba(255, 253, 247, .7);
}
.calendar-property-button, .calendar-month-button {
  min-height: 39px;
  padding: 9px 13px;
  border: 1px solid rgba(18, 63, 49, .18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, .98), rgba(239, 245, 232, .92));
  color: var(--forest);
  cursor: pointer;
  font-size: .66rem;
  font-weight: bold;
  letter-spacing: .055em;
  text-transform: uppercase;
  box-shadow: 0 5px 12px rgba(18, 63, 49, .05);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}
.calendar-property-button { flex: 1 1 145px; }
.calendar-month-button {
  min-width: 47px;
  min-height: 36px;
  padding: 8px 10px;
}
.calendar-property-button:hover, .calendar-month-button:hover {
  border-color: rgba(18, 63, 49, .34);
  box-shadow: 0 8px 16px rgba(18, 63, 49, .08);
  transform: translateY(-1px);
}
.calendar-property-button.is-active, .calendar-month-button.is-active {
  border-color: var(--forest);
  background:
    linear-gradient(180deg, #1d5441, var(--forest));
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, .16), 0 9px 18px rgba(18, 63, 49, .16);
  color: #fffdf7;
}
.calendar-results {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr);
  gap: 22px;
  align-items: stretch;
}
.calendar-main-card {
  display: grid;
  gap: 20px;
  padding: 0 4px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.calendar-highlight-card {
  padding: 24px;
  border-color: rgba(18, 63, 49, .16);
}
.calendar-main-card h3 { margin-bottom: 9px; font-size: clamp(1.75rem, 3vw, 2.35rem); letter-spacing: -.035em; }
.calendar-main-card h4, .calendar-highlight-card h4 {
  margin: 0 0 8px;
  color: #355d48;
  font-size: .69rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.calendar-main-card p, .calendar-highlight-card p { margin-bottom: 0; color: var(--muted); }
.calendar-main-card .button, .calendar-main-card .text-link { width: max-content; margin-left: 0; }
.calendar-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.calendar-detail-grid > div {
  padding-top: 15px;
  border-top: 1px solid rgba(18, 63, 49, .12);
}
#calendar-service-list, #calendar-best-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#calendar-service-list li, #calendar-best-list li {
  padding: 9px 10px;
  border: 1px solid rgba(18, 63, 49, .1);
  border-radius: 6px;
  background: rgba(255, 253, 247, .74);
  color: var(--forest);
  font-size: .82rem;
  font-weight: bold;
}
#calendar-service-list li:before, #calendar-best-list li:before {
  margin-right: 8px;
  color: #9b7220;
  content: "+";
}
.calendar-side { display: grid; gap: 17px; }
.calendar-highlight-card {
  background:
    linear-gradient(145deg, rgba(18, 63, 49, .96), rgba(10, 48, 39, .94));
  color: #eef4e5;
}
.calendar-highlight-card h3 { margin-bottom: 13px; color: #fff5dd; font-size: 1.48rem; letter-spacing: -.02em; }
.calendar-highlight-card .eyebrow { color: var(--mustard); }
.calendar-highlight-card p { color: rgba(238, 244, 229, .78); }
.calendar-highlight-card #calendar-best-list { grid-template-columns: 1fr; }
.calendar-highlight-card #calendar-best-list li {
  border-color: rgba(255, 245, 221, .14);
  background: rgba(255, 253, 247, .08);
  color: #eef4e5;
}
.plan-ahead-list { display: grid; gap: 10px; }
.plan-ahead-item {
  padding: 12px;
  border: 1px solid rgba(255, 245, 221, .13);
  border-radius: 8px;
  background: rgba(255, 253, 247, .07);
}
.plan-ahead-item strong { display: block; margin-bottom: 4px; color: #fff5dd; font-family: Georgia, serif; font-size: 1.02rem; line-height: 1.15; }
.plan-ahead-item span { display: block; color: rgba(238, 244, 229, .78); font-size: .8rem; line-height: 1.5; }
.about-section { background: #fffaf0; }
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.trust-strip article { position: relative; min-height: 151px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-icon {
  display: grid;
  width: 31px;
  height: 31px;
  margin-bottom: 12px;
  border: 1px dashed rgba(18, 63, 49, .35);
  border-radius: 50%;
  place-items: center;
  color: var(--sage);
  font: bold .48rem Arial, sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.trust-strip h3 { margin: 13px 0 5px; font-size: 1.05rem; }
.trust-strip p { margin: 0; color: var(--muted); font-size: .82rem; }
.quote-section { position: relative; scroll-margin-top: 96px; background: var(--sage-soft); }
.quote-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: stretch; gap: 48px; }
.quote-copy { display: flex; min-width: 0; flex-direction: column; }
.quote-copy p { max-width: 460px; }
.placeholder-detail { min-height: 150px; margin-top: 22px; background: rgba(255, 253, 247, .55); }
.quote-illustration {
  display: flex;
  flex: 1;
  min-height: 0;
  width: 100%;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e6eadb;
  box-shadow: 0 14px 30px rgba(18, 63, 49, .08);
}
.quote-illustration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.quote-form {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 20px;
  border-color: rgba(18, 63, 49, .18);
  background: #fffdf7;
  box-shadow: 0 14px 30px rgba(18, 63, 49, .08);
}
.quote-form-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(18, 63, 49, .12);
}
.quote-form-heading .eyebrow { margin-bottom: 5px; }
.quote-form-heading h3 { margin: 0; color: var(--forest); font-size: 1.22rem; letter-spacing: 0; }
.quote-form label {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 6px 8px;
  border: 1px solid rgba(18, 63, 49, .1);
  border-radius: 6px;
  background: #fffef9;
  color: var(--forest);
  font-size: .62rem;
  font-weight: bold;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.quote-form label:focus-within {
  border-color: rgba(18, 63, 49, .42);
  box-shadow: 0 10px 24px rgba(18, 63, 49, .08);
  transform: translateY(-1px);
}
.quote-form label small { color: var(--muted); font-size: .63rem; font-weight: normal; letter-spacing: 0; text-transform: none; }
.photo-upload {
  border-style: dashed;
  background: rgba(227, 234, 219, .38);
}
.wide { grid-column: 1 / -1; }
.required-note, .privacy-note, .quote-helper { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.45; }
.required-note {
  flex: 0 0 auto;
  max-width: 150px;
  padding-top: 3px;
  color: var(--muted);
  font-weight: bold;
  text-align: right;
}
.quote-submit-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
}
.quote-submit-row .submit-button { flex: 0 0 auto; }
.quote-submit-row .quote-helper { max-width: 270px; }
input, select, textarea {
  width: 100%;
  padding: 3px 0 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--charcoal);
  font: inherit;
}
input[type="file"] {
  padding-top: 5px;
  color: var(--muted);
  font-size: .74rem;
}
input[type="file"]::file-selector-button {
  margin-right: 10px;
  padding: 6px 9px;
  border: 1px solid rgba(18, 63, 49, .18);
  border-radius: 999px;
  background: #fffdf7;
  color: var(--forest);
  cursor: pointer;
  font: inherit;
  font-size: .66rem;
  font-weight: bold;
  letter-spacing: .045em;
  text-transform: uppercase;
}
select { padding-top: 3px; }
textarea { min-height: 68px; resize: none; }
input:focus, select:focus, textarea:focus { outline: 0; }
.submit-button.is-success { border-color: var(--forest); background: var(--forest); color: #fff; animation: success-pulse .5s ease; }
.submit-button:disabled { cursor: wait; opacity: .72; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.quote-turnstile:empty { display: none; }
.form-status { display: none; margin: 0; padding: 11px; border: 1px solid transparent; border-radius: 6px; font-weight: bold; }
.form-status.is-success { display: block; border-color: rgba(18, 63, 49, .14); background: #edf4e8; color: var(--forest); animation: success-rise .35s ease; }
.form-status.is-error { display: block; border-color: rgba(137, 47, 31, .2); background: #fff0eb; color: #76291d; animation: success-rise .35s ease; }
.lower-section { padding: 70px 0; background: #fffaf0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer-bottom a { color: inherit; font-size: .78rem; }
.lower-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 17px; }
.lower-card { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 248px; }
.lower-card:has(.map-embed) {
  grid-column: auto;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
  min-height: 0;
}
.lower-card > div:first-child { padding: 24px; }
.lower-card:has(.map-embed) > div:first-child { padding: 20px; }
.lower-card h2 { font-size: 2rem; }
.lower-card:has(.map-embed) h2 { font-size: 1.68rem; }
.lower-card .text-link { margin-left: 0; }
.placeholder-lower { min-height: 100%; border: 0; border-left: 1px dashed rgba(18, 63, 49, .2); border-radius: 0; box-shadow: inset 0 0 0 7px rgba(255, 253, 247, .32); }
.map-embed {
  position: relative;
  isolation: isolate;
  height: 100%;
  min-height: 248px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: var(--sage-soft);
  box-shadow: inset 0 0 0 7px rgba(255, 253, 247, .28);
}
.leaflet-service-map {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  background: #dfe8d3;
}
.map-embed .leaflet-service-map {
  min-height: 248px;
  height: 100%;
  aspect-ratio: auto;
}
.leaflet-service-map .leaflet-tile-pane {
  filter: saturate(.48) sepia(.1) hue-rotate(345deg) brightness(1.05) contrast(.88);
}
.leaflet-service-map .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(18, 63, 49, .18);
  border-radius: 8px;
  box-shadow: 0 5px 14px rgba(18, 63, 49, .12);
}
.leaflet-service-map .leaflet-control-zoom a { border-bottom-color: var(--line); background: rgba(255, 253, 247, .94); color: var(--forest); }
.leaflet-service-map .leaflet-control-attribution { background: rgba(255, 253, 247, .84); color: var(--muted); font-size: 8px; }
.leaflet-service-map .leaflet-control-attribution a { color: var(--forest); }
.leaflet-service-map .leaflet-tooltip {
  padding: 3px 6px;
  border: 1px solid rgba(18, 63, 49, .16);
  border-radius: 999px;
  background: rgba(255, 253, 247, .9);
  box-shadow: none;
  color: var(--forest);
  font-size: 10px;
  font-weight: bold;
}
.leaflet-service-map .leaflet-tooltip:before { display: none; }
.leaflet-service-map path {
  filter: drop-shadow(0 4px 4px rgba(18, 63, 49, .12));
}
.map-fallback {
  display: grid;
  min-height: inherit;
  padding: 18px;
  place-items: center;
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}
.map-actions {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}
.map-link, .map-expand {
  padding: 7px 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 63, 49, .9);
  color: #fffdf7;
  cursor: pointer;
  font-size: .59rem;
  font-weight: bold;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s ease, transform .18s ease;
}
.map-link:hover, .map-expand:hover { background: var(--deep); transform: translateY(-2px); }
.map-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 22px 48px rgba(10, 48, 39, .22);
}
.map-dialog::backdrop { background: rgba(10, 48, 39, .64); backdrop-filter: blur(4px); }
.map-dialog-header, .map-dialog-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.map-dialog-header h2 { margin-bottom: 10px; font-size: 2rem; }
.map-dialog-header .eyebrow { margin-bottom: 4px; }
.map-close { display: grid; width: 39px; height: 39px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; place-items: center; background: #f9fbf4; color: var(--forest); cursor: pointer; font-size: 1.5rem; line-height: 1; }
.leaflet-service-map-expanded { width: min(100%, 650px); margin: 4px auto 16px; border: 1px solid var(--line); border-radius: 12px; }
.map-dialog-footer p { margin-bottom: 0; color: var(--muted); font-size: .88rem; }
.city-list { margin-top: 17px; color: var(--muted); font-size: .82rem; }
.city-list strong { color: var(--forest); }
.payments-card { display: block; }
.payment-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 24px 24px; }
.payment-list span { display: grid; min-height: 98px; padding: 12px 10px; border-radius: 8px; place-items: center; align-content: center; gap: 9px; background: var(--sage-soft); color: var(--forest); font-size: .68rem; font-weight: bold; letter-spacing: .045em; text-align: center; text-transform: uppercase; }
.payment-list i { display: grid; width: 52px; height: 52px; border: 1px solid rgba(18, 63, 49, .18); border-radius: 12px; place-items: center; background: rgba(255, 253, 247, .58); color: var(--forest); font-style: normal; }
.payment-list svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.pay-page .site-header { background: rgba(255, 253, 247, .96); }
.pay-hero-section { min-height: 74vh; padding-top: 132px; }
.pay-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(340px, .7fr); gap: 32px; align-items: start; }
.pay-copy h1 { max-width: 720px; margin-bottom: 16px; color: var(--deep); font-size: clamp(2.8rem, 7vw, 5.8rem); line-height: .92; }
.pay-copy > p { max-width: 640px; color: var(--muted); font-size: 1.06rem; }
.square-brand-lockup,
.square-mini-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  border-radius: 8px;
}
.square-logo-mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.square-logo-mark img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.72);
  transform-origin: 50% 5%;
}
.square-brand-lockup {
  margin: 22px 0 2px;
  padding: 10px 12px;
  border: 1px solid rgba(18, 63, 49, .12);
  background: rgba(255, 253, 247, .86);
  color: var(--deep);
  box-shadow: 0 14px 30px rgba(18, 63, 49, .08);
}
.square-brand-lockup strong,
.square-brand-lockup small {
  display: block;
}
.square-brand-lockup strong {
  font-size: .98rem;
  letter-spacing: 0;
}
.square-brand-lockup small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.square-mini-lockup {
  padding: 7px 9px;
  border: 1px solid rgba(18, 63, 49, .12);
  background: var(--sage-soft);
  color: var(--deep);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.square-mini-lockup .square-logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}
.pay-security-list { max-width: 520px; margin-top: 24px; padding: 0; }
.pay-card { padding: 24px; }
.pay-form { display: grid; gap: 14px; }
.pay-form label { display: grid; gap: 7px; color: var(--deep); font-size: .86rem; font-weight: 800; }
.pay-form label span { color: var(--muted); font-weight: 650; }
.pay-results { display: grid; gap: 14px; margin-top: 18px; }
.pay-result-card, .pay-empty { display: grid; gap: 14px; padding: 16px; border: 1px solid rgba(18, 63, 49, .14); border-radius: 8px; background: #fffdf7; }
.pay-result-card { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
.pay-result-card h3 { margin-bottom: 8px; color: var(--deep); }
.pay-result-card p, .pay-empty p { margin-bottom: 6px; color: var(--muted); }
.pay-result-action { display: grid; justify-items: end; gap: 10px; }
.pay-result-action strong { color: var(--deep); font-size: 1.35rem; }
.site-footer { position: relative; overflow: hidden; padding: 40px 0 18px; background: var(--deep); color: #e8eedf; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(4, minmax(120px, .75fr)) 1.15fr; gap: 24px; align-items: start; }
.footer-brand { color: #fff; }
.footer-brand .brand-mark { border-color: rgba(255, 245, 221, .18); }
.footer-grid h2 { margin-bottom: 12px; color: #fff5dd; font-size: 1rem; letter-spacing: 0; }
.footer-grid p { margin-bottom: 7px; font-size: .84rem; }
.footer-nav-group {
  display: grid;
  align-content: start;
  gap: 7px;
}
.footer-nav-group a {
  display: block;
  width: 100%;
  max-width: 100%;
  color: rgba(232, 238, 223, .84);
  font-size: .76rem;
  line-height: 1.42;
  overflow-wrap: anywhere;
  text-decoration: none;
}
.footer-nav-group a:hover { color: var(--mustard); }
.footer-nav-group p {
  display: grid;
  gap: 2px;
  margin: 8px 0 0;
  color: rgba(232, 238, 223, .86);
}
.footer-nav-group span {
  color: rgba(255, 245, 221, .58);
  font-size: .58rem;
  font-weight: bold;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-contact-link {
  width: max-content;
  max-width: 100%;
  color: #fff5dd;
  font-weight: bold;
  letter-spacing: .02em;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(226, 170, 33, .55);
  text-underline-offset: 4px;
}
.footer-contact-link:hover { color: var(--mustard); }
.footer-project-link {
  display: inline-flex;
  margin-top: 8px;
  color: #fff5dd;
  font-size: .7rem;
  font-weight: bold;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}
.footer-project-link:hover { color: var(--mustard); }
.footer-quote-panel {
  padding: 18px;
  border: 1px solid rgba(255, 245, 221, .18);
  border-radius: 8px;
  background: rgba(255, 253, 247, .08);
}
.footer-quote-panel .eyebrow { margin-bottom: 7px; color: #d9a716; }
.footer-quote-panel h2 { margin-bottom: 8px; }
.footer-quote-panel .button { margin: 7px 0 12px; }
.footer-quote-panel .text-link { margin: 7px 0 12px; color: #fff5dd; }
.footer-quote-panel .text-link:hover { color: var(--mustard); }
.footer-bottom { margin-top: 24px; padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, .13); }
.footer-bottom p { margin: 0; font-size: .75rem; }
.uy-assistant {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  font-family: inherit;
}
.uy-assistant-toggle {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 253, 247, .48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 253, 247, .34), transparent 28%),
    linear-gradient(145deg, #1f5a45, #123f31 58%, #0d2c24);
  box-shadow: 0 18px 42px rgba(10, 48, 39, .32);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.uy-assistant-toggle:hover { transform: translateY(-2px); box-shadow: 0 22px 46px rgba(10, 48, 39, .38); }
.uy-assistant-toggle-icon {
  display: block;
  width: 44px;
  height: 44px;
  overflow: visible;
}
.uy-helper-hex-fill {
  fill: #e8efcf;
}
.uy-helper-hex-outline {
  fill: none;
  stroke: #fffdf7;
  stroke-width: 2.8;
  stroke-linejoin: round;
}
.uy-helper-hex-inner {
  fill: none;
  stroke: rgba(154, 185, 83, .66);
  stroke-width: 1.25;
  stroke-linejoin: round;
}
.uy-helper-leaf {
  fill: #9fbd4f;
  stroke: #123f31;
  stroke-width: 1.35;
  stroke-linejoin: round;
}
.uy-helper-leaf-line {
  fill: none;
  stroke: #123f31;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.uy-helper-bubble {
  fill: #fffdf7;
  stroke: #123f31;
  stroke-width: 2.25;
  stroke-linejoin: round;
}
.uy-helper-dot {
  fill: #123f31;
}
.uy-assistant-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  display: grid;
  width: min(390px, calc(100vw - 28px));
  max-height: min(680px, calc(100vh - 112px));
  grid-template-rows: auto minmax(180px, 1fr) auto auto auto;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 49, .18);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(226, 170, 33, .16), transparent 34%),
    linear-gradient(180deg, #fffdf7, #f4efe0);
  box-shadow: 0 26px 80px rgba(13, 44, 36, .32);
}
.uy-assistant-panel[hidden] { display: none; }
.uy-assistant-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid rgba(18, 63, 49, .12);
  background: rgba(255, 253, 247, .7);
}
.uy-assistant-header h2 { margin: 3px 0 0; color: var(--forest); font-size: 1.22rem; letter-spacing: 0; }
.uy-assistant-close {
  border: 1px solid rgba(18, 63, 49, .16);
  border-radius: 999px;
  background: rgba(227, 234, 219, .74);
  color: var(--forest);
  cursor: pointer;
  font-size: .62rem;
  font-weight: bold;
  letter-spacing: .06em;
  padding: 8px 10px;
  text-transform: uppercase;
}
.uy-assistant-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 0;
  overflow-y: auto;
  padding: 16px 18px;
  scrollbar-color: rgba(18, 63, 49, .32) transparent;
}
.uy-assistant-message {
  max-width: 86%;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: .88rem;
  line-height: 1.45;
  white-space: pre-wrap;
}
.uy-assistant-message.is-assistant {
  justify-self: start;
  border: 1px solid rgba(18, 63, 49, .12);
  background: rgba(255, 253, 247, .88);
  color: var(--charcoal);
}
.uy-assistant-message.is-user {
  justify-self: end;
  background: var(--forest);
  color: #fffdf7;
}
.uy-assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 18px 14px;
}
.uy-assistant-actions[hidden] { display: none; }
.uy-assistant-action {
  border: 1px solid rgba(18, 63, 49, .16);
  border-radius: 999px;
  background: rgba(255, 253, 247, .78);
  color: var(--forest);
  cursor: pointer;
  font: inherit;
  font-size: .74rem;
  line-height: 1.1;
  padding: 8px 10px;
}
.uy-assistant-action:hover,
.uy-assistant-action:focus-visible {
  background: var(--leaf);
  color: var(--paper);
  outline: none;
}
.uy-assistant-typing {
  display: flex;
  gap: 5px;
  width: max-content;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 247, .82);
}
.uy-assistant-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  animation: uy-assistant-pulse 1s ease-in-out infinite;
}
.uy-assistant-typing span:nth-child(2) { animation-delay: .14s; }
.uy-assistant-typing span:nth-child(3) { animation-delay: .28s; }
.uy-assistant-lead {
  margin: 0 18px 14px;
  padding: 12px;
  border: 1px solid rgba(18, 63, 49, .12);
  border-radius: 12px;
  background: rgba(255, 253, 247, .72);
}
.uy-assistant-lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.uy-assistant-lead label {
  display: grid;
  gap: 4px;
  color: var(--forest);
  font-size: .58rem;
  font-weight: bold;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.uy-assistant-lead input {
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid rgba(18, 63, 49, .14);
  border-radius: 8px;
  background: #fffdf7;
  color: var(--charcoal);
  font: inherit;
}
.uy-assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  padding: 0 18px 12px;
}
.uy-assistant-form textarea {
  min-height: 46px;
  max-height: 110px;
  resize: vertical;
  border: 1px solid rgba(18, 63, 49, .15);
  border-radius: 12px;
  background: #fffdf7;
  color: var(--charcoal);
  font: inherit;
  padding: 10px 11px;
}
.uy-assistant-form .button { align-self: end; border: 0; }
.uy-assistant-note {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.35;
}
@keyframes uy-assistant-pulse {
  0%, 80%, 100% { opacity: .32; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.mobile-quote-bar { display: none; }
.portfolio-section { background: rgba(255, 253, 247, .7); }
.portfolio-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.portfolio-toolbar .section-heading { margin-bottom: 0; }
.portfolio-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.filter-button {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f9fbf4;
  color: var(--forest);
  cursor: pointer;
  font-size: .65rem;
  font-weight: bold;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.filter-button:hover { border-color: rgba(18, 63, 49, .35); transform: translateY(-2px); }
.filter-button.is-active { border-color: var(--forest); background: var(--forest); color: #fff; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.portfolio-card { transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.portfolio-card:hover { box-shadow: 0 18px 32px rgba(25, 59, 42, .11); transform: translateY(-6px); }
.portfolio-card:hover { border-color: rgba(18, 63, 49, .24); }
.portfolio-card.is-filtered-out { display: none; }
.portfolio-image { min-height: 235px; border: 0; border-bottom: 1px dashed rgba(18, 63, 49, .2); border-radius: 0; }
.portfolio-card:nth-child(2n) .portfolio-image { background: linear-gradient(145deg, #e8efe8, #d3e1d7); }
.portfolio-card:nth-child(3n) .portfolio-image { background: linear-gradient(145deg, #f0eee0, #e2dfc5); }
.portfolio-project-photo { display: block; width: 100%; height: 235px; object-fit: cover; object-position: center 48%; }
.portfolio-comparison { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); height: 235px; overflow: hidden; }
.portfolio-comparison figure { position: relative; min-width: 0; margin: 0; overflow: hidden; }
.portfolio-comparison figure + figure { border-left: 2px solid rgba(255, 253, 247, .9); }
.portfolio-comparison img { display: block; width: 100%; height: 100%; object-fit: cover; }
.portfolio-comparison figure:first-child img { object-position: 42% center; }
.portfolio-comparison figure:last-child img { object-position: 45% center; }
.portfolio-comparison figcaption {
  position: absolute;
  left: 9px;
  bottom: 9px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 5px;
  background: rgba(10, 38, 29, .86);
  color: #fffdf7;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}
.portfolio-card-body { padding: 21px; }
.portfolio-card-body h3 { margin-bottom: 9px; }
.portfolio-card-body p:not(.eyebrow) { color: var(--muted); font-size: .88rem; }
.portfolio-tag { display: inline-flex; width: max-content; max-width: 100%; padding: 5px 8px; border-radius: 999px; background: rgba(226, 170, 33, .14); color: #8e6a1d; font-size: .65rem; font-weight: bold; letter-spacing: .08em; text-transform: uppercase; }
.portfolio-empty { display: none; margin: 24px 0 0; color: var(--muted); }
.portfolio-empty.is-visible { display: block; }
.portfolio-cta { background: var(--sage-soft); }
.portfolio-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.portfolio-cta h2 { max-width: 710px; margin-bottom: 0; }
.service-explorer-section { background: rgba(255, 253, 247, .7); }
.service-explorer {
  display: grid;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(18, 63, 49, .13);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 253, 247, .92), rgba(238, 245, 231, .82));
  box-shadow: 0 18px 38px rgba(25, 59, 42, .09);
}
.service-explorer .section-heading { margin-bottom: 0; }
.service-explorer-controls {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(18, 63, 49, .12);
}
.service-explorer-button, .service-goal-button {
  flex: 1 1 130px;
  min-height: 39px;
  padding: 9px 13px;
  border: 1px solid rgba(18, 63, 49, .18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 253, 247, .98), rgba(239, 245, 232, .92));
  color: var(--forest);
  cursor: pointer;
  font-size: .66rem;
  font-weight: bold;
  letter-spacing: .055em;
  text-transform: uppercase;
  box-shadow: 0 5px 12px rgba(18, 63, 49, .05);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}
.service-explorer-button:hover, .service-goal-button:hover {
  border-color: rgba(18, 63, 49, .34);
  box-shadow: 0 8px 16px rgba(18, 63, 49, .08);
  transform: translateY(-1px);
}
.service-explorer-button.is-active, .service-goal-button.is-active {
  border-color: var(--forest);
  background: linear-gradient(180deg, #1d5441, var(--forest));
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, .16), 0 9px 18px rgba(18, 63, 49, .16);
  color: #fffdf7;
}
.service-explorer-result {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: start;
}
.service-explorer-result h3 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
}
.service-explorer-result p { margin-bottom: 0; color: var(--muted); }
#service-result-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#service-result-list li {
  padding: 9px 10px;
  border: 1px solid rgba(18, 63, 49, .1);
  border-radius: 6px;
  background: rgba(255, 253, 247, .74);
  color: var(--forest);
  font-size: .82rem;
  font-weight: bold;
}
#service-result-list li:before { margin-right: 8px; color: #9b7220; content: "+"; }
.service-result-actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 16px;
}
.service-result-actions .text-link { margin-left: 0; }
.service-detail-section { background: #fffaf0; }
.service-detail-section #property-management-title {
  max-width: 820px;
  font-size: clamp(2.45rem, 4.6vw, 4.45rem);
  letter-spacing: -.055em;
}
.service-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.service-detail-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  scroll-margin-top: 92px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.service-detail-card:hover { border-color: rgba(18, 63, 49, .24); box-shadow: 0 18px 32px rgba(25, 59, 42, .1); transform: translateY(-4px); }
.service-detail-card h3 { margin-bottom: 0; font-size: 1.65rem; }
.service-detail-card p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); }
.service-detail-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-detail-card li {
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(227, 234, 219, .48);
  color: var(--forest);
  font-size: .82rem;
  font-weight: bold;
}
.service-detail-card li:before { margin-right: 7px; color: #9b7220; content: "+"; }
.service-detail-card .button, .service-detail-card .text-link { width: max-content; margin-left: 0; }
.turnover-support-card { grid-column: 1 / -1; margin-top: 4px; }
.service-detail-card .service-scope-note {
  padding: 13px 15px;
  border-left: 3px solid rgba(155, 114, 32, .62);
  border-radius: 0 7px 7px 0;
  background: rgba(226, 170, 33, .09);
  color: #53675e;
  font-size: .8rem;
  line-height: 1.55;
}
.service-scope-note strong { color: var(--forest); }
.error-page { min-height: 100vh; background: linear-gradient(145deg, var(--cream), #e8efdf); }
.error-main { min-height: calc(100vh - 74px); display: grid; align-items: center; }
.error-card {
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(18, 63, 49, .13);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .78);
  box-shadow: 0 18px 38px rgba(25, 59, 42, .09);
}
.error-card .section-heading { max-width: 760px; margin-bottom: 0; }
.error-card h1 { font-size: clamp(3rem, 7vw, 5.6rem); }
.error-card .text-link { margin-top: 17px; }
.service-frequency-section { background: var(--sage-soft); }
.service-frequency {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 34px;
  align-items: start;
}
.service-frequency-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.service-frequency-grid article {
  padding: 16px;
  border: 1px solid rgba(18, 63, 49, .14);
  border-radius: 8px;
  background: rgba(255, 253, 247, .72);
}
.service-frequency-grid strong { display: block; color: var(--deep); font-family: Georgia, serif; font-size: 1.16rem; line-height: 1.15; }
.service-frequency-grid span { display: block; margin-top: 7px; color: var(--muted); font-size: .86rem; }
.about-reliability-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(205, 162, 86, .12), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 247, .88), rgba(239, 245, 238, .7));
}
.about-reliability-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1.18fr);
  gap: 30px;
  align-items: stretch;
}
.about-section-heading {
  display: grid;
  align-content: center;
  padding: 26px;
  border: 1px solid rgba(18, 63, 49, .12);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .66);
  box-shadow: 0 18px 38px rgba(25, 59, 42, .06);
}
.about-section-heading h1,
.about-section-heading h2 {
  margin-bottom: 14px;
  max-width: 13ch;
  color: var(--deep);
}
.about-section-heading p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}
.about-expect-card,
.about-difference-grid article,
.about-brand-card {
  border: 1px solid rgba(18, 63, 49, .13);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .8);
  box-shadow: 0 18px 38px rgba(25, 59, 42, .07);
}
.about-expect-card {
  padding: 24px;
}
.about-expect-card h2 {
  margin-bottom: 18px;
  color: var(--deep);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}
.about-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.about-check-grid span {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  min-height: 58px;
  padding: 15px 16px;
  border: 1px solid rgba(18, 63, 49, .12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(227, 234, 219, .78), rgba(255, 253, 247, .82));
  color: var(--forest);
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.25;
}
.about-check-grid span::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: #fffdf7;
  content: "✓";
  font-size: .72rem;
  font-weight: 900;
}
.about-story-section { background: rgba(255, 253, 247, .72); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1.36fr .64fr;
  gap: 34px;
  align-items: start;
}
.about-story-intro {
  display: grid;
  gap: 22px;
  align-content: start;
  justify-items: center;
}
.about-portrait-placeholder {
  display: grid;
  width: min(100%, 310px);
  aspect-ratio: 4 / 5;
  align-content: end;
  gap: 4px;
  padding: 18px;
  border: 1px dashed rgba(18, 63, 49, .24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, .1), rgba(18, 63, 49, .12)),
    linear-gradient(145deg, #edf1e5, #dce6d2);
  box-shadow: 0 18px 38px rgba(25, 59, 42, .07);
  color: var(--forest);
}
.about-portrait-photo {
  overflow: hidden;
  padding: 0;
  border-style: solid;
}
.about-portrait-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 42%;
}
.about-portrait-placeholder span {
  font-size: .68rem;
  font-weight: bold;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-portrait-placeholder small {
  color: var(--muted);
  font-size: .82rem;
}
.about-story-copy {
  padding: 24px;
  width: 100%;
  border: 1px solid rgba(18, 63, 49, .13);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .78);
  box-shadow: 0 18px 38px rgba(25, 59, 42, .07);
}
.about-story-copy .eyebrow { margin-bottom: 8px; }
.about-story-copy h2 {
  margin-bottom: 18px;
  max-width: 12ch;
}
.about-story-copy p { margin-bottom: 14px; color: var(--muted); }
.about-story-copy p:last-child { margin-bottom: 0; }
.about-difference-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(18, 63, 49, .08), transparent 30%),
    var(--sage-soft);
}
.about-difference-inner {
  display: grid;
  gap: 24px;
}
.about-section-heading-wide h2 {
  max-width: none;
}
.about-difference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.about-difference-grid article {
  padding: 20px;
}
.about-difference-grid h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 1.2rem;
}
.about-difference-grid p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.58;
}
.about-brand-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(18, 63, 49, .98), rgba(47, 107, 79, .92));
  color: #fffdf7;
}
.about-brand-card h2 {
  margin-bottom: 10px;
  color: #fffdf7;
}
.about-brand-card p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 253, 247, .8);
}
.about-brand-card .eyebrow {
  color: var(--gold);
}
.about-brand-card .button {
  flex: 0 0 auto;
}
.about-values-section { background: #fffaf0; }
.about-values-strip .trust-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(18, 63, 49, .16);
  background: linear-gradient(145deg, rgba(227, 234, 219, .78), rgba(255, 253, 247, .82));
  box-shadow: inset 0 0 0 4px rgba(255, 253, 247, .48), 0 8px 18px rgba(25, 59, 42, .08);
  color: var(--forest);
  font-size: 0;
}
.about-values-strip .trust-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.feral-page {
  --feral-black: #171a16;
  --feral-ink: #20241d;
  --feral-sage: #6f906e;
  --feral-sage-dim: #475c32;
  --feral-red: #9e3438;
  --feral-red-soft: #a85d5e;
  --feral-lichen: #9a9366;
  --feral-paper: #d0c493;
  background: var(--feral-black);
  color: #c0b994;
}
.feral-page:before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 17% 21%, rgba(154, 147, 102, .13) 0 1px, transparent 2px),
    radial-gradient(circle at 79% 16%, rgba(158, 52, 56, .11) 0 1px, transparent 2px),
    linear-gradient(145deg, rgba(23, 26, 22, .96), rgba(32, 36, 29, .96));
  background-size: 23px 23px, 37px 37px, auto;
  content: "";
  pointer-events: none;
}
.feral-page h1, .feral-page h2, .feral-page h3 { color: var(--feral-sage); }
.feral-page .eyebrow { color: var(--feral-red-soft); }
.feral-page .hero-text { color: #b7b08b; }
.feral-header {
  flex-direction: row-reverse;
  border-bottom-color: rgba(111, 144, 110, .22);
  background: rgba(23, 26, 22, .9);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
}
.feral-header.is-compact { background: rgba(23, 26, 22, .94); box-shadow: 0 12px 28px rgba(0, 0, 0, .24); }
.feral-header .primary-nav {
  gap: 6px;
  border-color: rgba(111, 144, 110, .16);
  background: rgba(32, 36, 29, .48);
}
.feral-header .primary-nav a { color: #a9b58a; }
.feral-header .primary-nav a:not(.button):hover { background: rgba(158, 52, 56, .16); color: #d0c493; }
.feral-brand {
  flex-direction: row-reverse;
  color: var(--feral-sage);
  text-align: right;
}
.feral-brand > span:last-child { align-items: flex-end; }
.feral-brand strong {
  color: var(--feral-sage);
  font-size: 1rem;
  letter-spacing: .08em;
}
.feral-brand small { color: var(--feral-red-soft); letter-spacing: .16em; }
.feral-mark {
  display: grid;
  width: 64px;
  height: 46px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(111, 144, 110, .32);
  background: #171a16;
  place-items: center;
}
.feral-mark:before {
  color: rgba(208, 196, 147, .48);
  content: "Logo";
  font-size: .57rem;
  font-weight: bold;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.feral-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  background:
    linear-gradient(90deg, rgba(23, 26, 22, .94), rgba(23, 26, 22, .64)),
    url("images/feral-grounds-botanical.png?v=20260603-1") center 34px / cover no-repeat,
    radial-gradient(circle at 82% 31%, rgba(158, 52, 56, .2), transparent 28%),
    #171a16;
}
.feral-hero-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  align-items: center;
  gap: 58px;
}
.feral-hero-grid > div:first-child {
  order: 2;
  text-align: left;
}
.feral-page .feral-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  width: min(100%, 760px);
  margin-right: auto;
  text-align: left;
}
.feral-hero-grid > div:first-child .eyebrow,
.feral-hero-grid > div:first-child .hero-text {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.feral-page .feral-hero-copy .eyebrow,
.feral-page .feral-hero-copy h1,
.feral-page .feral-hero-copy .hero-text {
  align-self: flex-start;
  width: 100%;
  text-align: left !important;
}
.feral-page .feral-hero-copy .hero-text { max-width: 610px; }
.feral-hero-grid > div:last-child { order: 1; }
.feral-hero h1 {
  max-width: 760px;
  margin-left: 0;
  margin-right: auto;
  font-size: clamp(4rem, 8vw, 7.5rem);
  text-align: left;
}
.feral-hero-panel {
  display: grid;
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(111, 144, 110, .22);
  background:
    linear-gradient(rgba(23, 26, 22, .2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 26, 22, .2) 1px, transparent 1px),
    radial-gradient(circle at 49% 84%, rgba(111, 144, 110, .18), transparent 38%),
    #20241d;
  background-size: 19px 19px, 19px 19px, auto, auto;
  box-shadow: inset 0 0 0 1px rgba(208, 196, 147, .06), 0 24px 45px rgba(0, 0, 0, .28);
  color: rgba(208, 196, 147, .5);
  font-size: .72rem;
  font-weight: bold;
  letter-spacing: .16em;
  place-items: center;
  text-transform: uppercase;
}
.feral-map-panel {
  isolation: isolate;
  padding: 0;
  border-color: rgba(111, 144, 110, .32);
  background: #171a16;
}
.feral-habitat-map {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: #171a16;
}
.feral-habitat-map .leaflet-tile-pane {
  filter: invert(1) hue-rotate(180deg) saturate(.42) brightness(.58) contrast(1.08);
}
.feral-habitat-map .leaflet-overlay-pane { z-index: 350; }
.feral-habitat-map .leaflet-tooltip-pane { z-index: 450; }
.feral-habitat-map .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(208, 196, 147, .22);
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .34);
}
.feral-habitat-map .leaflet-control-zoom a {
  border-bottom-color: rgba(208, 196, 147, .18);
  background: rgba(23, 26, 22, .94);
  color: #d0c493;
}
.feral-habitat-map .leaflet-control-zoom a:hover { background: #20241d; color: var(--feral-sage); }
.feral-habitat-map .leaflet-control-attribution {
  background: rgba(23, 26, 22, .82);
  color: rgba(208, 196, 147, .68);
  font-size: 8px;
}
.feral-habitat-map .leaflet-control-attribution a { color: var(--feral-sage); }
.feral-map-tools {
  position: absolute;
  top: 12px;
  right: 12px;
  left: 52px;
  z-index: 1200;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  pointer-events: none;
}
.feral-map-tools button {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  padding: 7px 9px;
  border: 1px solid rgba(208, 196, 147, .22);
  border-radius: 0;
  background: rgba(23, 26, 22, .88);
  color: #c0b994;
  cursor: pointer;
  font-size: .56rem;
  font-weight: bold;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .24);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}
.feral-map-tools button:hover,
.feral-map-tools button.is-active {
  border-color: rgba(111, 144, 110, .72);
  background: rgba(111, 144, 110, .22);
  color: #e1dcc0;
}
.feral-map-tools button:hover { box-shadow: 0 10px 22px rgba(0, 0, 0, .3); transform: translateY(-1px); }
.feral-map-tools .feral-site-drop {
  border-color: rgba(158, 52, 56, .52);
  color: #d0c493;
}
.feral-map-tools .feral-site-drop.is-active {
  border-color: #d0c493;
  background: rgba(158, 52, 56, .34);
}
.feral-site-card {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1000;
  width: min(285px, calc(100% - 28px));
  padding: 14px;
  border: 1px solid rgba(111, 144, 110, .28);
  background: rgba(23, 26, 22, .92);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .38);
  color: #b7b08b;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: opacity .2s ease, transform .2s ease;
}
.feral-site-card.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
.feral-site-card .eyebrow { margin-bottom: 6px; }
.feral-site-card h2 {
  margin-bottom: 8px;
  color: var(--feral-sage);
  font-size: 1.18rem;
  letter-spacing: -.01em;
}
.feral-site-card p:last-child {
  margin-bottom: 0;
  font-size: .78rem;
  line-height: 1.5;
}
.feral-site-card strong { color: #d0c493; }
.feral-habitat-map .feral-zone-label {
  padding: 4px 7px;
  border: 1px solid rgba(111, 144, 110, .24);
  border-radius: 0;
  background: rgba(23, 26, 22, .88);
  box-shadow: none;
  color: #d0c493;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.feral-habitat-map .feral-zone-label:before { display: none; }
.feral-habitat-map path.leaflet-interactive {
  filter: drop-shadow(0 0 6px rgba(111, 144, 110, .45));
}
.feral-suggested-pin {
  border: 2px solid #d0c493;
  border-radius: 50%;
  background: rgba(158, 52, 56, .82);
  box-shadow: 0 0 0 4px rgba(158, 52, 56, .2), 0 0 18px rgba(208, 196, 147, .48);
}
.feral-section {
  border-top: 1px solid rgba(111, 144, 110, .18);
  border-bottom: 1px solid rgba(111, 144, 110, .12);
  background: #20241d;
}
.feral-split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 46px;
  align-items: start;
}
.feral-split > div:first-child {
  order: 2;
  text-align: left;
}
.feral-split > p:last-child { order: 1; }
.feral-split p:last-child {
  max-width: 680px;
  color: #b7b08b;
  font-size: 1.12rem;
  text-align: right;
}
.feral-footer {
  border-top: 1px solid rgba(158, 52, 56, .28);
  background: #20241d;
}
.feral-footer .footer-grid { grid-template-columns: 1fr 1fr; }
.feral-footer .footer-grid > div:nth-child(1) { order: 2; }
.feral-footer .footer-grid > div:nth-child(2) { order: 1; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease var(--reveal-delay, 0ms), transform .5s ease var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
@keyframes success-rise { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
@keyframes success-pulse { 50% { transform: scale(1.035); } }
@keyframes ambient-drift { from { background-position: 0% 32%; } to { background-position: 100% 68%; } }
@keyframes uy-whole-scene-breathe {
  0%, 100% { transform: scale(1.012) translate3d(0,0,0); }
  50% { transform: scale(1.018) translate3d(-3px, 2px, 0); }
}
@keyframes uy-cloud-left {
  0%, 100% { transform: translateX(-10px); opacity: .19; }
  50% { transform: translateX(18px); opacity: .31; }
}
@keyframes uy-cloud-mid {
  0%, 100% { transform: translateX(12px); opacity: .16; }
  50% { transform: translateX(-16px); opacity: .26; }
}
@keyframes uy-breeze-left {
  0%, 100% { transform: translateX(-18px) rotate(-10deg); opacity: .06; }
  45%, 58% { transform: translateX(24px) rotate(-9deg); opacity: .18; }
}
@keyframes uy-breeze-right {
  0%, 100% { transform: translateX(14px) rotate(8deg); opacity: .05; }
  48%, 62% { transform: translateX(-26px) rotate(7deg); opacity: .15; }
}
@keyframes uy-water-shimmer {
  0%, 100% { transform: translateX(-35%) scaleX(.85); opacity: 0; }
  35% { opacity: .08; }
  50% { transform: translateX(18%) scaleX(1.05); opacity: .25; }
  70% { opacity: .04; }
}
@keyframes uy-butterfly-flicker {
  0%, 100% { transform: translate(0,0) scale(.8); opacity: 0; }
  18% { transform: translate(2px,-3px) scale(1); opacity: .22; }
  22% { transform: translate(-1px,2px) scale(.85); opacity: .05; }
  26% { transform: translate(3px,-2px) scale(1.05); opacity: .22; }
  30% { transform: translate(0,0) scale(.8); opacity: 0; }
}
@keyframes uy-butterfly-cutout {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg) scale(1); }
  12% { transform: translate3d(10px,-14px,0) rotate(8deg) scale(1.025); }
  24% { transform: translate3d(18px,-4px,0) rotate(-6deg) scale(.985); }
  36% { transform: translate3d(6px,12px,0) rotate(7deg) scale(1.02); }
  48% { transform: translate3d(-8px,4px,0) rotate(-5deg) scale(.99); }
  60% { transform: translate3d(-15px,-12px,0) rotate(9deg) scale(1.02); }
  74% { transform: translate3d(-4px,-20px,0) rotate(-7deg) scale(.99); }
  88% { transform: translate3d(8px,-8px,0) rotate(4deg) scale(1.015); }
}
@keyframes uy-bee-flicker {
  0%, 100% { transform: translate(0,0) scale(.85); opacity: 0; }
  56% { transform: translate(2px,-1px) scale(1); opacity: .16; }
  60% { transform: translate(-2px,1px) scale(.9); opacity: .04; }
  64% { transform: translate(1px,-2px) scale(1); opacity: .17; }
  68% { opacity: 0; }
}
@keyframes uy-perched-bird {
  0%, 100% { transform: translate(0,0) scale(.9); opacity: 0; }
  38% { transform: translate(0,-1px) scale(1); opacity: .10; }
  44% { transform: translate(1px,1px) scale(.95); opacity: .03; }
  50% { transform: translate(0,0) scale(1); opacity: .08; }
  56% { opacity: 0; }
}
@keyframes uy-bird-cutout {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  30%, 36% { transform: translate3d(0,-2px,0) rotate(-1.5deg); }
  42% { transform: translate3d(2px,1px,0) rotate(2deg); }
  48% { transform: translate3d(0,0,0) rotate(0deg); }
  64%, 70% { transform: translate3d(-1px,-1px,0) rotate(1.5deg); }
}
@keyframes uy-robin-hop {
  0%, 100% { transform: translate(0,0) scale(.9); opacity: 0; }
  11% { transform: translate(0,0) scale(.95); opacity: .05; }
  14% { transform: translate(5px,-6px) scale(1); opacity: .15; }
  17% { transform: translate(10px,0) scale(.95); opacity: .04; }
  20% { opacity: 0; }
}
@keyframes uy-robin-cutout {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  10% { transform: translate3d(0,0,0) rotate(-1deg); }
  14% { transform: translate3d(10px,-12px,0) rotate(3deg); }
  18% { transform: translate3d(20px,0,0) rotate(0deg); }
  44% { transform: translate3d(20px,0,0) rotate(1.5deg); }
  48% { transform: translate3d(10px,-12px,0) rotate(-3deg); }
  52% { transform: translate3d(0,0,0) rotate(0deg); }
}
@keyframes uy-rabbit-ear {
  0%, 100% { transform: rotate(0deg) scale(.95); opacity: 0; }
  72% { transform: rotate(-2deg) scale(1); opacity: .08; }
  75% { transform: rotate(3deg) scale(1.02); opacity: .16; }
  78% { transform: rotate(-1deg) scale(1); opacity: .06; }
  82% { opacity: 0; }
}
@keyframes uy-rabbit-cutout {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  18%, 24% { transform: translate3d(0,-1px,0) rotate(-.8deg); }
  34% { transform: translate3d(6px,-4px,0) rotate(.8deg); }
  41% { transform: translate3d(12px,0,0) rotate(0deg); }
  56%, 65% { transform: translate3d(12px,0,0) rotate(1deg); }
  76% { transform: translate3d(4px,-4px,0) rotate(-.8deg); }
}
@keyframes uy-plant-left-cutout {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  25% { transform: translate3d(4px,0,0) rotate(.6deg); }
  50% { transform: translate3d(0,0,0) rotate(0deg); }
  75% { transform: translate3d(-4px,0,0) rotate(-.6deg); }
}
@keyframes uy-plant-right-cutout {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  30% { transform: translate3d(-5px,0,0) rotate(-.55deg); }
  55% { transform: translate3d(2px,0,0) rotate(.25deg); }
  80% { transform: translate3d(5px,0,0) rotate(.65deg); }
}

@media (max-width: 1100px) {
  .site-header { gap: 14px; padding-inline: 18px; }
  .primary-nav { gap: 2px; padding: 4px; }
  .primary-nav a, .nav-dropdown-toggle { min-height: 34px; padding-inline: 7px; font-size: .58rem; letter-spacing: .045em; }
  .button-small { min-height: 34px; padding-inline: 10px; font-size: .57rem; }
}
@media (max-width: 960px) {
  .brand-mark { width: 58px; height: 47px; }
  .brand strong { font-size: 1.05rem; }
  .brand small { font-size: .56rem; }
  .promotions-shell { width: min(calc(100% - 40px), 860px); }
  .home-promotions { padding-block: 44px 34px; }
  .promotions-heading h2 { font-size: clamp(2.25rem, 6vw, 3.2rem); }
  .promotion-card {
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
    gap: 24px;
    padding: 30px;
  }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 350px; }
  .calendar-controls, .calendar-results { grid-template-columns: 1fr; }
  .calendar-side { grid-template-columns: 1fr 1fr; }
  .quote-layout { gap: 30px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .service-explorer-controls, .service-explorer-result, .service-frequency, .about-story-grid { grid-template-columns: 1fr; }
  .lower-grid { grid-template-columns: 1fr; }
  .lower-card:has(.map-embed) { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pay-layout { grid-template-columns: 1fr; }
  .pay-result-card { grid-template-columns: 1fr; }
  .pay-result-action { justify-items: start; }
}
@media (max-width: 760px) {
  .site-header { min-height: 70px; padding: 10px 18px; }
  .site-header.is-compact { min-height: 70px; padding-top: 10px; padding-bottom: 10px; }
  .brand { gap: 9px; }
  .brand-mark { width: 52px; height: 43px; }
  .brand > span:last-child { min-height: 43px; }
  .brand strong { font-size: .98rem; }
  .brand small { font-size: .54rem; letter-spacing: .15em; }
  .menu-toggle {
    display: grid;
    gap: 4px;
    width: 42px;
    height: 42px;
    place-content: center;
    padding: 0;
    border: 1px solid rgba(18, 63, 49, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 8px 18px rgba(18, 63, 49, .08);
    cursor: pointer;
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  }
  .menu-toggle:hover { background: rgba(255, 253, 247, .95); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(18, 63, 49, .1); }
  .menu-toggle b { display: block; width: 22px; height: 2px; border-radius: 99px; background: var(--forest); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] b:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] b:nth-of-type(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] b:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 0 0 16px 16px;
    background: rgba(255, 253, 247, .98);
    box-shadow: 0 22px 38px rgba(18, 63, 49, .14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height .25s ease, opacity .2s ease, padding .25s ease, transform .2s ease;
  }
  .nav-indicator { display: none; }
  .primary-nav.is-open { max-height: 620px; padding: 16px; border-color: var(--line); opacity: 1; pointer-events: auto; transform: none; }
  .primary-nav.is-open a, .primary-nav.is-open .nav-dropdown-toggle { min-height: 42px; justify-content: flex-start; padding: 10px 12px; font-size: .68rem; letter-spacing: .07em; }
  .primary-nav .button { width: 100%; }
  .nav-dropdown {
    display: grid;
    width: 100%;
  }
  .nav-dropdown-toggle {
    width: 100%;
  }
  .nav-dropdown-toggle::after {
    margin-left: auto;
  }
  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 2px 0 6px;
    padding: 6px;
    border-color: rgba(18, 63, 49, .1);
    border-radius: 10px;
    background: rgba(227, 234, 219, .55);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
    transform: none;
  }
  .nav-dropdown-menu a {
    min-height: 38px;
    padding-left: 18px;
    font-size: .67rem;
  }
  .container { width: min(calc(100% - 32px), 620px); }
  .section { padding: 64px 0; }
  .hero { padding: 52px 0 94px; }
  .hero-grid, .quote-layout { grid-template-columns: 1fr; gap: 28px; }
  .quote-copy { display: block; }
  .home-promotions { padding-block: 58px 52px; }
  .promotions-shell { width: min(calc(100% - 32px), 620px); }
  .promotions-intro { gap: 22px; margin-bottom: 28px; }
  .promotions-heading { text-align: left; }
  .promotions-heading h2 { margin-bottom: 12px; font-size: clamp(2rem, 11vw, 2.8rem); }
  .promotions-heading > p:last-child { margin-inline: 0; }
  .promotion-discount {
    min-height: 0;
    padding: 18px 20px;
    gap: 15px;
    border-radius: 18px;
  }
  .promotions-credit { width: 56px; height: 56px; font-size: 1.3rem; }
  .promotions-grid { gap: 20px; }
  .promotion-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
    border-radius: 20px;
  }
  .promotion-card-header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px 12px;
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 63, 49, .12);
  }
  .promotion-helper { max-width: none; }
  .promotion-card-content h3 { font-size: clamp(1.65rem, 8vw, 2.15rem); }
  .promotion-card-content p { margin-bottom: 18px; line-height: 1.62; }
  .promotion-card-content .button { width: 100%; margin-top: 2px; }
  .home-flow-grid { grid-template-columns: 1fr; }
  .portfolio-toolbar { display: block; }
  .portfolio-filters { justify-content: flex-start; margin-top: 20px; }
  .service-explorer { padding: 16px; }
  .service-explorer-controls { padding-bottom: 15px; }
  .service-result-actions { display: grid; gap: 10px; justify-items: start; }
  .service-detail-grid,
  .service-frequency-grid,
  .about-reliability-grid,
  .about-check-grid,
  .about-difference-grid {
    grid-template-columns: 1fr;
  }
  .about-section-heading,
  .about-expect-card,
  .about-difference-grid article,
  .about-brand-card {
    padding: 18px;
  }
  .about-brand-card {
    display: grid;
    justify-items: start;
  }
  .feral-header { display: grid; gap: 14px; justify-content: stretch; }
  .feral-header .feral-brand { justify-self: end; }
  .feral-header .primary-nav {
    position: static;
    display: flex;
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .feral-header .primary-nav { justify-content: flex-end; }
  .feral-hero-grid, .feral-split { grid-template-columns: 1fr; gap: 28px; }
  .feral-hero-grid > div:first-child,
  .feral-hero-grid > div:last-child,
  .feral-split > div:first-child,
  .feral-split > p:last-child {
    order: initial;
    text-align: left;
  }
  .feral-hero-grid > div:first-child,
  .feral-hero-grid > div:first-child .eyebrow,
  .feral-hero-grid > div:first-child .hero-text,
  .feral-hero h1 { text-align: left; }
  .feral-page .feral-hero-copy { align-items: flex-start; }
  .feral-hero { padding: 70px 0 64px; }
  .feral-hero-panel { min-height: 300px; }
  .feral-map-tools {
    right: 9px;
    left: 44px;
    gap: 4px;
  }
  .feral-map-tools button { padding: 6px 7px; font-size: .5rem; }
  .feral-site-card {
    right: 9px;
    bottom: 9px;
    left: 9px;
    width: auto;
    padding: 11px;
  }
  .feral-site-card h2 { font-size: 1rem; }
  h1 { font-size: clamp(3.15rem, 13vw, 4.8rem); }
  .placeholder-hero, .hero-image-frame { min-height: 270px; }
  .property-types { grid-template-columns: 1fr 1fr; }
  .calendar-panel { padding: 16px; }
  .calendar-controls { padding: 0 0 15px; }
  .calendar-side { grid-template-columns: 1fr; }
  .calendar-detail-grid, #calendar-service-list { grid-template-columns: 1fr; }
  .quote-illustration {
    height: clamp(220px, 62vw, 280px);
    min-height: auto;
    margin-top: 18px;
  }
  .quote-form { padding: 16px; }
  .quote-form-heading, .quote-submit-row { display: grid; gap: 9px; }
  .quote-form-heading .required-note { max-width: none; padding-top: 0; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 23px; }
  .feral-footer .footer-grid > div:nth-child(1),
  .feral-footer .footer-grid > div:nth-child(2) { order: initial; }
  .uy-assistant { right: 14px; bottom: 72px; }
  .uy-assistant-toggle { width: 56px; height: 56px; }
  .uy-assistant-panel {
    right: 0;
    bottom: 68px;
    width: min(380px, calc(100vw - 28px));
    max-height: calc(100vh - 155px);
  }
  .mobile-quote-bar {
    position: fixed;
    right: 16px;
    bottom: 15px;
    z-index: 12;
    display: block;
    padding: 12px 17px;
    border-radius: 999px;
    background: var(--mustard);
    box-shadow: 0 10px 28px rgba(10, 48, 39, .24);
    color: var(--deep);
    font-size: .68rem;
    font-weight: bold;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity .2s ease, transform .2s ease;
  }
  .mobile-quote-bar.is-hidden { opacity: 0; pointer-events: none; transform: translateY(15px); }
}
@media (max-width: 520px) {
  body { font-size: 15px; }
  h2 { font-size: 1.85rem; }
  .text-link { display: flex; width: max-content; margin: 14px 0 0; }
  .service-grid, .trust-strip { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .card-body h3 { min-height: auto; }
  .service-toggle { cursor: pointer; }
  .service-toggle i {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid var(--line);
    border-radius: 50%;
  }
  .service-toggle i:before, .service-toggle i:after { position: absolute; top: 8px; left: 4px; width: 8px; height: 1px; background: var(--forest); content: ""; transition: transform .2s ease; }
  .service-toggle i:after { transform: rotate(90deg); }
  .service-toggle[aria-expanded="true"] i:after { transform: rotate(0); }
  .js .service-card ul { display: none; }
  .js .service-card ul.is-open { display: block; animation: success-rise .25s ease; }
  .property-types { grid-template-columns: 1fr; }
  .calendar-main-card, .calendar-highlight-card { padding: 18px; }
  .calendar-property-button, .calendar-month-button { flex: 1 1 auto; }
  .month-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
  .service-explorer-button, .service-goal-button { flex: 1 1 auto; }
  #service-result-list, .service-detail-card ul { grid-template-columns: 1fr; }
  .service-detail-card { padding: 18px; }
  .service-detail-media { margin: -18px -18px 4px; }
  .error-card { padding: 24px; }
  .error-card .text-link { width: max-content; margin-left: 0; }
  .trust-strip article { min-height: auto; }
  .quote-form { grid-template-columns: 1fr; }
  .quote-form label, .wide { grid-column: 1; }
  .quote-form label { padding: 6px 8px; }
  .quote-submit-row .submit-button { width: 100%; }
  .quote-submit-row .quote-helper { max-width: none; }
  .uy-assistant { right: 10px; bottom: 70px; }
  .uy-assistant-panel {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 145px);
  }
  .uy-assistant-header,
  .uy-assistant-messages,
  .uy-assistant-actions,
  .uy-assistant-form,
  .uy-assistant-note { padding-right: 14px; padding-left: 14px; }
  .uy-assistant-lead { margin-right: 14px; margin-left: 14px; }
  .uy-assistant-lead-grid { grid-template-columns: 1fr; }
  .uy-assistant-form { grid-template-columns: 1fr; }
  .uy-assistant-form .button { width: 100%; }
  .lower-card { grid-template-columns: 1fr; }
  .placeholder-lower { min-height: 165px; border-top: 1px dashed rgba(18, 63, 49, .2); border-left: 0; }
  .map-embed { height: 230px; min-height: 230px; border-top: 1px solid var(--line); border-left: 0; }
  .leaflet-service-map { min-height: 230px; }
  .map-embed .leaflet-service-map { height: 230px; min-height: 230px; }
  .map-actions { right: 8px; bottom: 8px; left: 8px; justify-content: flex-end; }
  .map-link, .map-expand { padding: 6px 8px; font-size: .55rem; }
  .map-dialog { padding: 13px; }
  .map-dialog-footer { display: block; }
  .map-dialog-footer .button { margin-top: 11px; }
  .payment-list { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-image { min-height: 205px; }
  .portfolio-project-photo { height: 205px; }
  .portfolio-comparison { height: 205px; }
  .portfolio-cta-inner { display: block; }
  .portfolio-cta .button { margin-top: 18px; }
  .about-story-copy { padding: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .uy-base-image,
  .uy-cutout,
  .uy-cloud-glow,
  .uy-breeze,
  .uy-water-shimmer,
  .uy-butterfly-pulse,
  .uy-bee-pulse,
  .uy-bird-perch,
  .uy-robin-hop,
  .uy-rabbit-ear,
  .uy-assistant-typing span { animation: none !important; }
}

/* Premium Urban Yards visual polish layer */
body:not(.feral-page) {
  background:
    radial-gradient(circle at 8% 0%, rgba(226, 170, 33, .08), transparent 28%),
    linear-gradient(180deg, #fbf8ee 0%, #f1f5ed 48%, #fffdf7 100%);
}

body:not(.feral-page) .site-header {
  min-height: 76px;
  padding: 12px max(18px, calc((100vw - 1220px) / 2));
  border-bottom-color: rgba(18, 63, 49, .08);
  background: rgba(255, 253, 247, .9);
  box-shadow: 0 16px 44px rgba(18, 63, 49, .075);
}

body:not(.feral-page) .site-header.is-compact {
  min-height: 66px;
  background: rgba(255, 253, 247, .96);
  box-shadow: 0 18px 50px rgba(18, 63, 49, .1);
}

body:not(.feral-page) .brand {
  gap: 12px;
}

body:not(.feral-page) .brand-mark {
  border-radius: 8px;
  filter: drop-shadow(0 10px 18px rgba(18, 63, 49, .12));
}

body:not(.feral-page) .primary-nav {
  gap: 5px;
  padding: 5px;
  border-color: rgba(18, 63, 49, .09);
  background: rgba(255, 255, 255, .64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .92),
    0 10px 26px rgba(18, 63, 49, .055);
}

body:not(.feral-page) .primary-nav a,
body:not(.feral-page) .nav-dropdown-toggle {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 999px;
  letter-spacing: .065em;
}

body:not(.feral-page) .primary-nav a:not(.button):hover,
body:not(.feral-page) .nav-dropdown-toggle:hover {
  background: rgba(18, 63, 49, .08);
  color: var(--deep);
  transform: translateY(-1px);
}

body:not(.feral-page) .primary-nav a[aria-current="page"]:not(.button),
body:not(.feral-page) .nav-dropdown-toggle.is-current {
  background: var(--deep);
  color: #fffdf7;
  box-shadow: 0 9px 20px rgba(18, 63, 49, .16);
}

body:not(.feral-page) .nav-dropdown-menu {
  top: calc(100% + 14px);
  padding: 8px;
  border-color: rgba(18, 63, 49, .1);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(18, 63, 49, .18);
}

body:not(.feral-page) .nav-dropdown-menu a {
  border-radius: 6px;
}

body:not(.feral-page) .button,
body:not(.feral-page) .submit-button,
body:not(.feral-page) .map-expand,
body:not(.feral-page) .map-link,
body:not(.feral-page) .portfolio-filter,
body:not(.feral-page) .service-explorer-button,
body:not(.feral-page) .service-goal-button,
body:not(.feral-page) .pay-submit,
body:not(.feral-page) .pay-result-action .button {
  min-height: 46px;
  border-radius: 999px;
  border-width: 1px;
  background:
    linear-gradient(180deg, #efc653 0%, var(--mustard) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .48),
    0 13px 24px rgba(126, 93, 24, .16);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease, border-color .18s ease;
}

body:not(.feral-page) .button:hover,
body:not(.feral-page) .submit-button:hover,
body:not(.feral-page) .map-expand:hover,
body:not(.feral-page) .map-link:hover,
body:not(.feral-page) .portfolio-filter:hover,
body:not(.feral-page) .service-explorer-button:hover,
body:not(.feral-page) .service-goal-button:hover,
body:not(.feral-page) .pay-submit:hover,
body:not(.feral-page) .pay-result-action .button:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    0 18px 32px rgba(126, 93, 24, .2);
  filter: brightness(.99);
  transform: translateY(-2px);
}

body:not(.feral-page) .button-small {
  min-height: 38px;
  padding: 9px 15px;
}

body:not(.feral-page) .text-link {
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

body:not(.feral-page) .card,
body:not(.feral-page) .quote-form,
body:not(.feral-page) .service-detail-card,
body:not(.feral-page) .portfolio-card,
body:not(.feral-page) .pay-card,
body:not(.feral-page) .pay-result-card,
body:not(.feral-page) .lower-card,
body:not(.feral-page) .calendar-panel,
body:not(.feral-page) .about-story-copy,
body:not(.feral-page) .footer-quote-panel {
  border-color: rgba(18, 63, 49, .1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 253, 247, .96));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .8) inset,
    0 22px 60px rgba(18, 63, 49, .095);
}

body:not(.feral-page) .service-card,
body:not(.feral-page) .trust-strip article,
body:not(.feral-page) .portfolio-card {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

body:not(.feral-page) .service-card:hover,
body:not(.feral-page) .trust-strip article:hover,
body:not(.feral-page) .portfolio-card:hover {
  border-color: rgba(18, 63, 49, .2);
  box-shadow: 0 28px 70px rgba(18, 63, 49, .13);
  transform: translateY(-5px);
}

body:not(.feral-page) .hero {
  min-height: clamp(620px, 76vh, 820px);
  display: grid;
  align-items: end;
  padding: 92px 0 112px;
}

body:not(.feral-page) .hero-background-overlay {
  background:
    linear-gradient(90deg, rgba(8, 32, 25, .78) 0%, rgba(8, 32, 25, .52) 42%, rgba(8, 32, 25, .18) 100%),
    linear-gradient(180deg, rgba(8, 32, 25, .18), rgba(8, 32, 25, .62));
}

body:not(.feral-page) .hero-copy {
  max-width: 720px;
}

body:not(.feral-page) .hero-copy h1 {
  letter-spacing: 0;
  text-wrap: balance;
}

body:not(.feral-page) .hero-text {
  max-width: 560px;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

body:not(.feral-page) .quote-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, .76), rgba(232, 239, 225, .72));
}

body:not(.feral-page) .quote-form {
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
}

body:not(.feral-page) .quote-form label,
body:not(.feral-page) .pay-form label,
body:not(.feral-page) .uy-assistant-form label {
  border-color: rgba(18, 63, 49, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

body:not(.feral-page) input,
body:not(.feral-page) select,
body:not(.feral-page) textarea {
  border-radius: 8px;
}

body:not(.feral-page) .lower-card {
  overflow: clip;
}

body:not(.feral-page) .map-embed {
  border-left-color: rgba(18, 63, 49, .09);
}

body:not(.feral-page) .payment-list span,
body:not(.feral-page) .property-types span {
  border-color: rgba(18, 63, 49, .11);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 8px 18px rgba(18, 63, 49, .055);
}

body:not(.feral-page) .site-footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background:
    radial-gradient(circle at 12% 0%, rgba(226, 170, 33, .13), transparent 30%),
    linear-gradient(180deg, #102f26 0%, #0a241d 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

body:not(.feral-page) .footer-brand-panel,
body:not(.feral-page) .footer-nav-group,
body:not(.feral-page) .footer-quote-panel {
  border-color: rgba(255, 255, 255, .08);
}

@media (max-width: 760px) {
  body:not(.feral-page) .site-header,
  body:not(.feral-page) .site-header.is-compact {
    padding: 10px 16px;
  }

  body:not(.feral-page) .primary-nav {
    border-radius: 0 0 14px 14px;
  }

  body:not(.feral-page) .hero {
    min-height: 560px;
    padding: 64px 0 92px;
  }

  body:not(.feral-page) .button,
  body:not(.feral-page) .submit-button {
    width: 100%;
  }
}

/* Focused public button aesthetics pass */
body:not(.feral-page) .button,
body:not(.feral-page) .submit-button,
body:not(.feral-page) .map-expand,
body:not(.feral-page) .map-link,
body:not(.feral-page) .filter-button,
body:not(.feral-page) .calendar-property-button,
body:not(.feral-page) .calendar-month-button,
body:not(.feral-page) .service-explorer-button,
body:not(.feral-page) .service-goal-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  gap: 8px;
  white-space: nowrap;
}

body:not(.feral-page) .button::after,
body:not(.feral-page) .submit-button::after,
body:not(.feral-page) .map-expand::after,
body:not(.feral-page) .map-link::after {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, .34), transparent 52%);
  content: "";
  pointer-events: none;
}

body:not(.feral-page) .button::before,
body:not(.feral-page) .submit-button::before {
  content: none;
}

body:not(.feral-page) .primary-nav .button::before,
body:not(.feral-page) .mobile-quote-bar::before {
  content: none;
}

body:not(.feral-page) .button:hover::before,
body:not(.feral-page) .submit-button:hover::before {
  background: rgba(10, 48, 39, .16);
}

body:not(.feral-page) .button:active,
body:not(.feral-page) .submit-button:active,
body:not(.feral-page) .map-expand:active,
body:not(.feral-page) .map-link:active,
body:not(.feral-page) .filter-button:active,
body:not(.feral-page) .calendar-property-button:active,
body:not(.feral-page) .calendar-month-button:active,
body:not(.feral-page) .service-explorer-button:active,
body:not(.feral-page) .service-goal-button:active {
  transform: translateY(0);
  box-shadow: 0 7px 16px rgba(18, 63, 49, .12);
}

body:not(.feral-page) .filter-button,
body:not(.feral-page) .calendar-property-button,
body:not(.feral-page) .calendar-month-button,
body:not(.feral-page) .service-explorer-button,
body:not(.feral-page) .service-goal-button {
  background: linear-gradient(180deg, #fff, #f7fbf5);
  box-shadow: 0 8px 18px rgba(18, 63, 49, .055);
}

body:not(.feral-page) .filter-button.is-active,
body:not(.feral-page) .calendar-property-button.is-active,
body:not(.feral-page) .calendar-month-button.is-active,
body:not(.feral-page) .service-explorer-button.is-active,
body:not(.feral-page) .service-goal-button.is-active {
  background: linear-gradient(180deg, #1d5441, var(--forest));
  box-shadow: 0 13px 26px rgba(18, 63, 49, .18);
}

body:not(.feral-page) .text-link {
  position: relative;
  text-decoration: none;
}

body:not(.feral-page) .text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: .34;
  transform: scaleX(.78);
  transform-origin: left;
  transition: opacity .18s ease, transform .18s ease;
}

body:not(.feral-page) .text-link:hover::after {
  opacity: .72;
  transform: scaleX(1);
}

@media (max-width: 760px) {
  body:not(.feral-page) .button,
  body:not(.feral-page) .submit-button,
  body:not(.feral-page) .map-expand,
  body:not(.feral-page) .map-link,
  body:not(.feral-page) .filter-button,
  body:not(.feral-page) .calendar-property-button,
  body:not(.feral-page) .calendar-month-button,
  body:not(.feral-page) .service-explorer-button,
  body:not(.feral-page) .service-goal-button {
    white-space: normal;
  }
}

/* 2M finish pass 1: final public tokens and rhythm */
body:not(.feral-page) {
  --premium-line: rgba(18, 63, 49, .105);
  --premium-glass: rgba(255, 255, 255, .72);
  --premium-shadow: 0 26px 72px rgba(18, 63, 49, .12);
  --premium-shadow-soft: 0 14px 34px rgba(18, 63, 49, .08);
}

body:not(.feral-page) .section {
  position: relative;
}

body:not(.feral-page) .section-heading {
  text-wrap: balance;
}

/* 2M finish pass 2: header and navigation */
body:not(.feral-page) .site-header {
  border-bottom-color: rgba(18, 63, 49, .075);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, .96), rgba(255, 253, 247, .82));
}

body:not(.feral-page) .brand strong {
  letter-spacing: .01em;
}

body:not(.feral-page) .primary-nav {
  backdrop-filter: blur(18px) saturate(130%);
}

body:not(.feral-page) .primary-nav a,
body:not(.feral-page) .nav-dropdown-toggle {
  font-size: clamp(.62rem, .68vw, .72rem);
}

body:not(.feral-page) .nav-dropdown-menu {
  backdrop-filter: blur(18px);
}

/* 2M finish pass 3: premium public actions */
body:not(.feral-page) .button,
body:not(.feral-page) .submit-button {
  min-height: 48px;
  padding-inline: 19px;
}

body:not(.feral-page) .primary-nav .button,
body:not(.feral-page) .button-small {
  min-height: 39px;
  padding-inline: 16px;
}

body:not(.feral-page) .text-link {
  align-items: center;
  transition: color .18s ease, transform .18s ease;
}

body:not(.feral-page) .text-link:hover {
  transform: translateY(-1px);
}

/* 2M finish pass 4: form and payment confidence */
body:not(.feral-page) .quote-form,
body:not(.feral-page) .pay-card {
  border-color: var(--premium-line);
  box-shadow: var(--premium-shadow);
}

body:not(.feral-page) .quote-form label,
body:not(.feral-page) .pay-form label {
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}

body:not(.feral-page) .quote-form label:focus-within,
body:not(.feral-page) .pay-form label:focus-within {
  background: #fff;
  box-shadow: 0 14px 30px rgba(18, 63, 49, .095);
  transform: translateY(-1px);
}

body:not(.feral-page) .pay-result-card,
body:not(.feral-page) .pay-empty {
  border-color: var(--premium-line);
  box-shadow: var(--premium-shadow-soft);
}

/* 2M finish pass 5: cards and content hierarchy */
body:not(.feral-page) .service-card,
body:not(.feral-page) .portfolio-card,
body:not(.feral-page) .lower-card,
body:not(.feral-page) .service-detail-card,
body:not(.feral-page) .calendar-panel,
body:not(.feral-page) .about-story-copy {
  outline: 1px solid rgba(255, 255, 255, .56);
  outline-offset: -2px;
}

body:not(.feral-page) .service-card-media,
body:not(.feral-page) .service-detail-media,
body:not(.feral-page) .portfolio-image {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .16), transparent),
    #e6eadb;
}

body:not(.feral-page) .card-body h3,
body:not(.feral-page) .service-detail-card h3,
body:not(.feral-page) .portfolio-card-body h3 {
  text-wrap: balance;
}

/* 2M finish pass 6: map, payment, and footer details */
body:not(.feral-page) .map-embed {
  background: #e9efe5;
}

body:not(.feral-page) .map-actions {
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 253, 247, .76);
  box-shadow: 0 12px 28px rgba(18, 63, 49, .12);
  backdrop-filter: blur(12px);
}

body:not(.feral-page) .payment-list span {
  min-height: 104px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body:not(.feral-page) .payment-list span:hover {
  border-color: rgba(18, 63, 49, .2);
  box-shadow: 0 18px 38px rgba(18, 63, 49, .1);
  transform: translateY(-2px);
}

body:not(.feral-page) .site-footer a {
  transition: color .18s ease, opacity .18s ease;
}

body:not(.feral-page) .footer-quote-panel {
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

@media (max-width: 760px) {
  body:not(.feral-page) .site-header {
    background: rgba(255, 253, 247, .96);
  }

  body:not(.feral-page) .primary-nav.is-open {
    box-shadow: 0 26px 54px rgba(18, 63, 49, .16);
  }

  body:not(.feral-page) .button,
  body:not(.feral-page) .submit-button {
    min-height: 48px;
  }

  body:not(.feral-page) .map-actions {
    justify-content: flex-end;
  }
}

/* Calendar side panel readability fix */
body:not(.feral-page) .calendar-side .calendar-highlight-card {
  border: 1px solid rgba(0, 0, 0, .08);
  background: #f8f6ee;
  color: var(--deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .7),
    0 18px 38px rgba(18, 63, 49, .09);
}

body:not(.feral-page) .calendar-side .calendar-highlight-card:first-child {
  background:
    linear-gradient(145deg, rgba(232, 240, 226, .96), rgba(248, 246, 238, .98));
}

/* Homepage polish pass: compact rhythm, refined cards, and cleaner form surfaces */
body:not(.feral-page) {
  --home-card-line: rgba(18, 63, 49, .12);
  --home-card-shadow: 0 18px 42px rgba(18, 63, 49, .085);
  --home-card-shadow-hover: 0 22px 54px rgba(18, 63, 49, .12);
}

body:not(.feral-page) .section {
  padding-block: 66px;
}

body:not(.feral-page) .section-heading {
  margin-bottom: 24px;
}

body:not(.feral-page) .section-heading h2,
body:not(.feral-page) .quote-copy h2,
body:not(.feral-page) .lower-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.04;
}

body:not(.feral-page) .hero {
  min-height: clamp(520px, 66vh, 690px);
  align-items: center;
  padding: 66px 0 78px;
}

body:not(.feral-page) .hero-background-overlay {
  background:
    radial-gradient(ellipse at 22% 50%, rgba(8, 32, 25, .88) 0%, rgba(8, 32, 25, .66) 34%, rgba(8, 32, 25, .2) 66%, rgba(8, 32, 25, .08) 100%),
    linear-gradient(180deg, rgba(8, 32, 25, .18), rgba(8, 32, 25, .5));
}

body:not(.feral-page) .hero-copy {
  max-width: 720px;
}

body:not(.feral-page) .hero-copy .eyebrow {
  margin-bottom: 9px;
  color: rgba(255, 253, 247, .78);
  font-size: .58rem;
  letter-spacing: .18em;
  line-height: 1.2;
}

body:not(.feral-page) .hero-copy h1 {
  max-width: 680px;
  margin-bottom: 16px;
}

body:not(.feral-page) .hero-text {
  max-width: 540px;
  margin-bottom: 18px;
  line-height: 1.5;
}

body:not(.feral-page) .hero-copy .button {
  margin-right: 10px;
}

body:not(.feral-page) .hero-copy .text-link {
  margin-left: 0;
}

body:not(.feral-page) .button,
body:not(.feral-page) .submit-button {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  border-width: 1px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .52),
    0 10px 20px rgba(126, 93, 24, .14);
}

body:not(.feral-page) .primary-nav .button,
body:not(.feral-page) .button-small {
  min-height: 36px;
  padding: 8px 14px;
}

body:not(.feral-page) .button:hover,
body:not(.feral-page) .submit-button:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .6),
    0 15px 28px rgba(126, 93, 24, .18);
}

body:not(.feral-page) .home-promotions,
body:not(.feral-page) .home-flow-section,
body:not(.feral-page) .quote-section,
body:not(.feral-page) .lower-section {
  padding-block: 56px;
}

body:not(.feral-page) .services {
  padding-block: 62px 58px;
  border-top: 1px solid rgba(18, 63, 49, .07);
  border-bottom: 1px solid rgba(18, 63, 49, .07);
}

body:not(.feral-page) .service-grid {
  gap: 14px;
}

body:not(.feral-page) .service-card,
body:not(.feral-page) .home-flow-card,
body:not(.feral-page) .lower-card,
body:not(.feral-page) .quote-form,
body:not(.feral-page) .trust-strip article {
  border-color: var(--home-card-line);
  box-shadow: var(--home-card-shadow);
}

body:not(.feral-page) .service-card {
  min-height: 0;
}

body:not(.feral-page) .service-card:hover,
body:not(.feral-page) .home-flow-card:hover,
body:not(.feral-page) .trust-strip article:hover {
  box-shadow: var(--home-card-shadow-hover);
}

body:not(.feral-page) .service-card-media {
  position: relative;
  height: auto;
  aspect-ratio: 1.35 / 1;
  isolation: isolate;
}

body:not(.feral-page) .service-card-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, .08), rgba(18, 63, 49, .2)),
    radial-gradient(circle at 22% 18%, rgba(226, 170, 33, .13), transparent 34%);
  content: "";
  mix-blend-mode: multiply;
  pointer-events: none;
}

body:not(.feral-page) .service-card-image {
  filter: saturate(.9) contrast(.96) brightness(1.02);
}

body:not(.feral-page) .service-card:hover .service-card-image {
  filter: saturate(.98) contrast(.98) brightness(1.03);
}

body:not(.feral-page) .card-body {
  padding: 20px 18px 19px;
}

body:not(.feral-page) .card-body h3 {
  min-height: 40px;
  margin-bottom: 8px;
}

body:not(.feral-page) .card-body ul {
  display: grid;
  gap: 5px;
  font-size: .82rem;
  line-height: 1.35;
}

body:not(.feral-page) .card-body li::before {
  margin-right: 7px;
}

body:not(.feral-page) .service-card-link {
  margin-top: 13px;
  color: #815f19;
  font-size: .62rem;
  letter-spacing: .075em;
}

body:not(.feral-page) .service-card-link::after {
  margin-left: 7px;
  content: ">";
}

body:not(.feral-page) .home-flow-card {
  min-height: 0;
  gap: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(248, 250, 241, .96));
}

body:not(.feral-page) .home-flow-card h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
}

body:not(.feral-page) .home-flow-card p:not(.eyebrow) {
  margin-bottom: 4px;
  line-height: 1.55;
}

body:not(.feral-page) .trust-strip {
  border-color: rgba(18, 63, 49, .09);
}

body:not(.feral-page) .trust-strip article {
  min-height: 132px;
  padding: 16px;
}

body:not(.feral-page) .trust-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 9px;
  border-style: solid;
  border-color: rgba(18, 63, 49, .2);
  background: rgba(255, 253, 247, .55);
}

body:not(.feral-page) .trust-strip h3 {
  margin: 9px 0 4px;
  font-size: .98rem;
}

body:not(.feral-page) .trust-strip p {
  font-size: .78rem;
  line-height: 1.45;
}

body:not(.feral-page) .quote-layout {
  gap: 34px;
  align-items: start;
}

body:not(.feral-page) .quote-form {
  gap: 10px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 253, 247, .98));
}

body:not(.feral-page) .quote-form-heading {
  padding-bottom: 10px;
}

body:not(.feral-page) .quote-form label {
  border-color: rgba(18, 63, 49, .16);
  background: rgba(255, 255, 255, .88);
}

body:not(.feral-page) .quote-form label:focus-within {
  border-color: rgba(18, 63, 49, .46);
  box-shadow:
    0 0 0 3px rgba(226, 170, 33, .16),
    0 12px 26px rgba(18, 63, 49, .08);
}

body:not(.feral-page) .quote-illustration {
  margin-top: 18px;
  box-shadow: var(--home-card-shadow);
}

body:not(.feral-page) .lower-section {
  padding-block: 48px 50px;
  background:
    linear-gradient(180deg, #fffaf0, rgba(238, 244, 229, .62));
}

body:not(.feral-page) .lower-grid {
  gap: 14px;
}

body:not(.feral-page) .lower-card {
  min-height: 218px;
}

body:not(.feral-page) .lower-card > div:first-child,
body:not(.feral-page) .lower-card:has(.map-embed) > div:first-child {
  padding: 18px;
}

body:not(.feral-page) .lower-card:has(.map-embed) h2 {
  font-size: 1.48rem;
}

body:not(.feral-page) .lower-card p {
  margin-bottom: 12px;
  line-height: 1.5;
}

body:not(.feral-page) .map-embed,
body:not(.feral-page) .map-embed .leaflet-service-map {
  min-height: 218px;
}

body:not(.feral-page) .payment-list {
  gap: 7px;
  padding: 0 18px 18px;
}

body:not(.feral-page) .payment-list span {
  min-height: 86px;
  gap: 7px;
}

body:not(.feral-page) .payment-list i {
  width: 44px;
  height: 44px;
}

body:not(.feral-page) .payment-list svg {
  width: 27px;
  height: 27px;
}

body:not(.feral-page) .site-footer {
  padding: 32px 0 16px;
}

body:not(.feral-page) .footer-grid {
  gap: 18px;
}

body:not(.feral-page) .footer-grid h2 {
  margin-bottom: 8px;
  font-size: .92rem;
}

body:not(.feral-page) .footer-nav-group {
  gap: 5px;
}

body:not(.feral-page) .footer-nav-group a {
  font-size: .72rem;
  line-height: 1.35;
}

body:not(.feral-page) .footer-quote-panel {
  padding: 15px;
}

body:not(.feral-page) .footer-bottom {
  margin-top: 18px;
  padding-top: 12px;
}

@media (max-width: 760px) {
  body:not(.feral-page) .section,
  body:not(.feral-page) .home-promotions,
  body:not(.feral-page) .home-flow-section,
  body:not(.feral-page) .quote-section,
  body:not(.feral-page) .lower-section {
    padding-block: 54px;
  }

  body:not(.feral-page) .hero {
    min-height: 500px;
    padding: 56px 0 78px;
  }

  body:not(.feral-page) .hero-copy .button {
    margin-right: 0;
    margin-bottom: 10px;
  }

  body:not(.feral-page) .service-card-media {
    aspect-ratio: 1.55 / 1;
  }

  body:not(.feral-page) .quote-form {
    padding: 16px;
  }

  body:not(.feral-page) .lower-card,
  body:not(.feral-page) .map-embed,
  body:not(.feral-page) .map-embed .leaflet-service-map {
    min-height: 220px;
  }
}

@media (max-width: 520px) {
  body:not(.feral-page) .section-heading h2,
  body:not(.feral-page) .quote-copy h2,
  body:not(.feral-page) .lower-card h2 {
    font-size: clamp(1.65rem, 8vw, 2.05rem);
  }

  body:not(.feral-page) .trust-strip article {
    padding: 15px;
  }

  body:not(.feral-page) .payment-list {
    grid-template-columns: 1fr;
  }
}

body:not(.feral-page) .calendar-side .calendar-highlight-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(250, 240, 216, .9), rgba(248, 246, 238, .98));
}

body:not(.feral-page) .calendar-side .calendar-highlight-card .eyebrow {
  color: #8a6518;
  font-weight: 800;
  opacity: 1;
}

body:not(.feral-page) .calendar-side .calendar-highlight-card h3,
body:not(.feral-page) .calendar-side .calendar-highlight-card strong {
  color: var(--deep);
  font-weight: 800;
  opacity: 1;
}

body:not(.feral-page) .calendar-side .calendar-highlight-card p,
body:not(.feral-page) .calendar-side .calendar-highlight-card span {
  color: #183f31;
  opacity: 1;
}

body:not(.feral-page) .calendar-side #calendar-best-list li,
body:not(.feral-page) .calendar-side .plan-ahead-item {
  border-color: rgba(0, 0, 0, .08);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, .98), rgba(238, 245, 232, .92));
  color: #183f31;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .7),
    0 8px 18px rgba(18, 63, 49, .06);
  opacity: 1;
}

body:not(.feral-page) .calendar-side #calendar-best-list li::before {
  color: #8a6518;
}

/* Homepage polish pass 2: featured promo structure, service cues, and trust details */
body:not(.feral-page) .home-promotions,
body:not(.feral-page) .services,
body:not(.feral-page) .home-flow-section,
body:not(.feral-page) .about-section,
body:not(.feral-page) .quote-section {
  overflow: hidden;
}

body:not(.feral-page) .home-promotions::after,
body:not(.feral-page) .services::after,
body:not(.feral-page) .quote-section::after {
  position: absolute;
  inset: auto -8% -90px auto;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 63, 49, .085), transparent 68%);
  content: "";
  pointer-events: none;
}

body:not(.feral-page) .services::after {
  inset: -110px auto auto -90px;
  background: radial-gradient(circle, rgba(120, 149, 111, .12), transparent 68%);
}

body:not(.feral-page) .quote-section::after {
  inset: -120px -100px auto auto;
  background: radial-gradient(circle, rgba(226, 170, 33, .105), transparent 68%);
}

body:not(.feral-page) .home-promotions {
  padding-block: 44px;
}

body:not(.feral-page) .promotions-shell {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(18, 63, 49, .09);
  border-radius: 18px;
  background:
    radial-gradient(circle at 94% 18%, rgba(18, 63, 49, .08), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 247, .58), rgba(239, 246, 232, .68));
  box-shadow: 0 18px 44px rgba(18, 63, 49, .075);
}

body:not(.feral-page) .promotions-intro {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: 22px;
}

body:not(.feral-page) .promotions-heading h2 {
  max-width: 640px;
  font-size: clamp(2.15rem, 3.5vw, 3.25rem);
}

body:not(.feral-page) .promotion-discount {
  width: 100%;
  min-height: 64px;
  margin-inline: 0;
  padding: 13px 18px;
  border-radius: 14px;
  box-shadow: var(--elevation-soft);
}

body:not(.feral-page) .promotions-credit {
  width: 46px;
  height: 46px;
  font-size: 1.14rem;
}

body:not(.feral-page) .promotion-discount-copy strong {
  font-size: 1rem;
}

body:not(.feral-page) .promotion-discount-copy small {
  font-size: .68rem;
  line-height: 1.36;
}

body:not(.feral-page) .promotions-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body:not(.feral-page) .promotion-card {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 20px;
}

body:not(.feral-page) .promotion-card-header {
  position: relative;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  padding: 0 0 14px;
  border-right: 0;
  border-bottom: 1px solid rgba(18, 63, 49, .1);
}

body:not(.feral-page) .promotion-helper {
  max-width: none;
  font-size: .68rem;
}

body:not(.feral-page) .promotion-card-content h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.05;
}

body:not(.feral-page) .promotion-card-content p {
  font-size: .84rem;
  line-height: 1.55;
}

body:not(.feral-page) .service-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

body:not(.feral-page) .service-card:hover {
  transform: translateY(-6px);
}

body:not(.feral-page) .service-card .card-body {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 260px;
}

body:not(.feral-page) .service-card .card-body::before {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 4px 8px;
  border: 1px solid rgba(18, 63, 49, .1);
  border-radius: 999px;
  background: rgba(227, 234, 219, .48);
  color: #355d48;
  font-size: .56rem;
  font-weight: 850;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
}

body:not(.feral-page) .service-card:nth-child(1) .card-body::before { content: "Best for routine curb appeal"; }
body:not(.feral-page) .service-card:nth-child(2) .card-body::before { content: "Best for property refreshes"; }
body:not(.feral-page) .service-card:nth-child(3) .card-body::before { content: "Best for rentals and shared spaces"; }
body:not(.feral-page) .service-card:nth-child(4) .card-body::before { content: "Best for resilient landscapes"; }

body:not(.feral-page) .service-card .card-body ul {
  align-content: start;
  gap: 6px;
}

body:not(.feral-page) .service-card .card-body li {
  position: relative;
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  align-items: start;
  column-gap: 6px;
  line-height: 1.32;
}

body:not(.feral-page) .service-card .card-body li::before {
  display: grid;
  width: 15px;
  height: 15px;
  margin: 2px 0 0;
  border-radius: 50%;
  place-items: center;
  background: rgba(18, 63, 49, .08);
  color: #6f8b63;
  content: "+";
  font-size: .68rem;
  line-height: 1;
}

body:not(.feral-page) .service-card .card-body li:nth-child(5) {
  font-size: .78rem;
  line-height: 1.28;
}

body:not(.feral-page) .property-types {
  gap: 8px;
  margin-top: 18px;
}

body:not(.feral-page) .property-types span {
  padding: 8px 11px;
  border-color: rgba(18, 63, 49, .1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .76), rgba(239, 246, 232, .78));
  box-shadow: 0 8px 18px rgba(18, 63, 49, .045);
  color: #315943;
  font-size: .62rem;
}

body:not(.feral-page) .home-flow-card {
  position: relative;
  padding-left: 24px;
}

body:not(.feral-page) .about-values-strip {
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 253, 247, .62);
  box-shadow: var(--elevation-soft);
}

body:not(.feral-page) .about-values-strip article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  align-content: start;
  border-color: rgba(18, 63, 49, .09);
  box-shadow: none;
}

body:not(.feral-page) .about-values-strip .trust-icon {
  grid-row: 1 / 4;
}

body:not(.feral-page) .quote-form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: -2px 0 2px;
  color: #426653;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

body:not(.feral-page) .quote-form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

body:not(.feral-page) .quote-form-trust span + span::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(226, 170, 33, .72);
  content: "";
}

body:not(.feral-page) .photo-upload small {
  color: #70827a;
  font-size: .58rem;
  line-height: 1.35;
}

body:not(.feral-page) .quote-form label:focus-within {
  border-color: rgba(18, 63, 49, .5);
  box-shadow:
    0 0 0 3px rgba(226, 170, 33, .18),
    0 13px 27px rgba(18, 63, 49, .09);
}

body:not(.feral-page) .map-expand,
body:not(.feral-page) .map-link {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(18, 63, 49, .12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #efc653 0%, var(--mustard) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .5),
    0 10px 20px rgba(126, 93, 24, .14);
  color: var(--deep);
}

body:not(.feral-page) .site-footer {
  border-top: 1px solid rgba(226, 170, 33, .14);
}

body:not(.feral-page) .site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 245, 221, .28), transparent);
  content: "";
}

@media (max-width: 960px) {
  body:not(.feral-page) .promotions-intro,
  body:not(.feral-page) .promotions-grid {
    grid-template-columns: 1fr;
  }

  body:not(.feral-page) .service-card .card-body {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  body:not(.feral-page) .promotions-shell {
    padding: 18px;
  }

  body:not(.feral-page) .promotion-card {
    padding: 18px;
  }

  body:not(.feral-page) .home-flow-card {
    padding-left: 18px;
  }

  body:not(.feral-page) .about-values-strip article {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

/* Site polish pass: shared rhythm, elevation, and navigation refinement */
body:not(.feral-page) {
  --radius: 12px;
  --muted: #586d64;
  --line: rgba(18, 63, 49, .12);
  --shadow: 0 14px 34px rgba(18, 63, 49, .075);
  --elevation-soft: 0 10px 24px rgba(18, 63, 49, .06);
  --elevation-card: 0 16px 40px rgba(18, 63, 49, .085);
  --elevation-card-hover: 0 22px 54px rgba(18, 63, 49, .12);
}

body:not(.feral-page) p,
body:not(.feral-page) .section-heading > p:last-child,
body:not(.feral-page) .service-detail-card p:not(.eyebrow),
body:not(.feral-page) .portfolio-card-body p:not(.eyebrow),
body:not(.feral-page) .about-section-heading p:not(.eyebrow) {
  color: var(--muted);
}

body:not(.feral-page) .site-header {
  gap: 18px;
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom-color: rgba(18, 63, 49, .085);
  box-shadow: 0 8px 22px rgba(18, 63, 49, .045);
}

body:not(.feral-page) .site-header.is-compact {
  min-height: 64px;
  box-shadow: 0 10px 26px rgba(18, 63, 49, .07);
}

body:not(.feral-page) .brand {
  gap: 10px;
}

body:not(.feral-page) .brand-mark {
  width: 56px;
  height: 46px;
}

body:not(.feral-page) .brand > span:last-child {
  min-height: 44px;
}

body:not(.feral-page) .brand strong {
  font-size: 1.01rem;
}

body:not(.feral-page) .brand small {
  font-size: .55rem;
  letter-spacing: .14em;
}

body:not(.feral-page) .primary-nav {
  gap: 2px;
  padding: 4px;
  border-color: rgba(18, 63, 49, .08);
  background: rgba(255, 255, 255, .48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 8px 20px rgba(18, 63, 49, .035);
}

body:not(.feral-page) .primary-nav a,
body:not(.feral-page) .nav-dropdown-toggle {
  min-height: 34px;
  padding: 7px 10px;
  font-size: clamp(.6rem, .64vw, .68rem);
  letter-spacing: .055em;
}

body:not(.feral-page) .primary-nav a:not(.button)::before,
body:not(.feral-page) .nav-dropdown-toggle::before {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(.5);
  transform-origin: center;
  transition: opacity .18s ease, transform .18s ease;
}

body:not(.feral-page) .primary-nav a:not(.button):hover::before,
body:not(.feral-page) .nav-dropdown-toggle:hover::before {
  opacity: .35;
  transform: scaleX(1);
}

body:not(.feral-page) .primary-nav a[aria-current="page"]:not(.button),
body:not(.feral-page) .nav-dropdown-toggle.is-current {
  background: rgba(18, 63, 49, .075);
  color: #123f31;
  box-shadow: inset 0 0 0 1px rgba(18, 63, 49, .06);
}

body:not(.feral-page) .nav-indicator {
  height: 1px;
  background: rgba(226, 170, 33, .72);
}

body:not(.feral-page) .nav-dropdown-menu {
  top: calc(100% + 8px);
  min-width: 220px;
  padding: 7px;
  border-color: rgba(18, 63, 49, .1);
  border-radius: 10px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .8) inset,
    0 16px 36px rgba(18, 63, 49, .13);
}

body:not(.feral-page) .nav-dropdown-menu a {
  min-height: 36px;
  padding: 9px 11px;
  border-radius: 7px;
}

body:not(.feral-page) .eyebrow {
  color: #4f754f;
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .135em;
  line-height: 1.25;
}

body:not(.feral-page) h2,
body:not(.feral-page) .about-section-heading h1,
body:not(.feral-page) .pay-copy h1,
body:not(.feral-page) .service-detail-section #property-management-title {
  letter-spacing: -.035em;
}

body:not(.feral-page) .about-section-heading h1,
body:not(.feral-page) .pay-copy h1,
body:not(.feral-page) .service-detail-section #property-management-title {
  font-size: clamp(2.25rem, 4vw, 4.1rem);
  line-height: 1.02;
}

body:not(.feral-page) .section {
  padding-block: 62px;
}

body:not(.feral-page) .section-heading {
  max-width: 620px;
  margin-bottom: 22px;
}

body:not(.feral-page) .section-heading > p:last-child,
body:not(.feral-page) .about-section-heading p:not(.eyebrow),
body:not(.feral-page) .service-explorer-result p,
body:not(.feral-page) .service-frequency-grid span {
  max-width: 66ch;
  line-height: 1.58;
}

body:not(.feral-page) .services,
body:not(.feral-page) .service-detail-section,
body:not(.feral-page) .portfolio-section,
body:not(.feral-page) .about-story-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(226, 170, 33, .055), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 247, .82), rgba(241, 246, 235, .62));
}

body:not(.feral-page) .home-promotions,
body:not(.feral-page) .service-frequency-section,
body:not(.feral-page) .portfolio-cta {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 253, 247, .62), transparent 28%),
    linear-gradient(180deg, rgba(227, 234, 219, .92), rgba(247, 241, 227, .76));
}

body:not(.feral-page) .card,
body:not(.feral-page) .promotion-card,
body:not(.feral-page) .service-card,
body:not(.feral-page) .service-detail-card,
body:not(.feral-page) .portfolio-card,
body:not(.feral-page) .quote-form,
body:not(.feral-page) .pay-card,
body:not(.feral-page) .lower-card,
body:not(.feral-page) .service-explorer,
body:not(.feral-page) .calendar-panel,
body:not(.feral-page) .about-section-heading,
body:not(.feral-page) .about-expect-card,
body:not(.feral-page) .about-difference-grid article,
body:not(.feral-page) .about-brand-card,
body:not(.feral-page) .footer-quote-panel {
  border-color: rgba(18, 63, 49, .11);
  border-radius: var(--radius);
  box-shadow: var(--elevation-card);
}

body:not(.feral-page) .promotion-card:hover,
body:not(.feral-page) .service-card:hover,
body:not(.feral-page) .service-detail-card:hover,
body:not(.feral-page) .portfolio-card:hover {
  box-shadow: var(--elevation-card-hover);
}

body:not(.feral-page) .promotion-card.is-featured::before,
body:not(.feral-page) .promotion-discount::before {
  width: 3px;
  background: rgba(226, 170, 33, .88);
}

body:not(.feral-page) .service-detail-card .service-scope-note,
body:not(.feral-page) .promotions-scope-note {
  border-left-width: 2px;
  border-left-color: rgba(155, 114, 32, .42);
  background: rgba(255, 253, 247, .72);
}

body:not(.feral-page) .service-explorer,
body:not(.feral-page) .service-frequency,
body:not(.feral-page) .service-detail-section .section-heading,
body:not(.feral-page) .portfolio-toolbar,
body:not(.feral-page) .about-section-heading {
  margin-bottom: 22px;
}

body:not(.feral-page) .service-detail-card {
  padding: 22px;
  gap: 12px;
}

body:not(.feral-page) .service-detail-card h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.55rem);
}

body:not(.feral-page) .service-detail-card p:not(.eyebrow) {
  max-width: 68ch;
  line-height: 1.58;
}

body:not(.feral-page) .portfolio-grid {
  gap: 16px;
}

body:not(.feral-page) .portfolio-image,
body:not(.feral-page) .portfolio-project-photo,
body:not(.feral-page) .portfolio-comparison {
  height: 220px;
  min-height: 220px;
}

body:not(.feral-page) .portfolio-image {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(18, 63, 49, .09);
  background: #e6eadb;
}

body:not(.feral-page) .portfolio-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, .06), rgba(18, 63, 49, .16)),
    radial-gradient(circle at 22% 14%, rgba(226, 170, 33, .1), transparent 32%);
  content: "";
  pointer-events: none;
}

body:not(.feral-page) .portfolio-project-photo,
body:not(.feral-page) .portfolio-comparison img {
  object-fit: cover;
}

body:not(.feral-page) .portfolio-card-body {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 253, 247, .96));
}

body:not(.feral-page) .portfolio-card-body h3 {
  margin-bottom: 7px;
  font-size: 1.18rem;
}

body:not(.feral-page) .portfolio-card-body p:not(.eyebrow) {
  margin-bottom: 10px;
  font-size: .84rem;
  line-height: 1.52;
}

body:not(.feral-page) .portfolio-tag {
  padding: 4px 8px;
  background: rgba(226, 170, 33, .1);
  color: #785818;
  font-size: .6rem;
}

body:not(.feral-page) .uy-assistant {
  right: 20px;
  bottom: 20px;
}

body:not(.feral-page) .uy-assistant-toggle {
  width: 56px;
  height: 56px;
  box-shadow: 0 14px 34px rgba(10, 48, 39, .26);
}

body:not(.feral-page) .uy-assistant-toggle-icon {
  width: 40px;
  height: 40px;
}

@media (max-width: 1100px) {
  body:not(.feral-page) .brand-mark {
    width: 52px;
    height: 43px;
  }

  body:not(.feral-page) .site-header {
    gap: 14px;
  }
}

@media (max-width: 760px) {
  body:not(.feral-page) .site-header,
  body:not(.feral-page) .site-header.is-compact {
    min-height: 70px;
  }

  body:not(.feral-page) .brand-mark {
    width: 52px;
    height: 43px;
  }

  body:not(.feral-page) .primary-nav.is-open {
    padding: 14px;
    border-radius: 0 0 12px 12px;
  }

  body:not(.feral-page) .nav-dropdown-menu {
    border-radius: 9px;
  }

  body:not(.feral-page) .section {
    padding-block: 54px;
  }

  body:not(.feral-page) .portfolio-image,
  body:not(.feral-page) .portfolio-project-photo,
  body:not(.feral-page) .portfolio-comparison {
    height: 210px;
    min-height: 210px;
  }

  body:not(.feral-page) .uy-assistant {
    right: 14px;
    bottom: 72px;
  }

  body:not(.feral-page) .uy-assistant-toggle {
    width: 56px;
    height: 56px;
  }
}

/* Homepage compactness pass: final cascade layer */
body:not(.feral-page) .section {
  padding-block: 62px;
}

body:not(.feral-page) .hero {
  min-height: clamp(430px, 54vh, 570px);
  padding: 42px 0 52px;
}

body:not(.feral-page) .hero-grid {
  max-width: min(calc(100% - 48px), 760px);
}

body:not(.feral-page) .hero-copy .eyebrow {
  margin-bottom: 7px;
  font-size: .55rem;
}

body:not(.feral-page) .hero-copy h1 {
  max-width: 640px;
  margin-bottom: 12px;
  font-size: clamp(3.35rem, 5.2vw, 5.35rem);
  line-height: .98;
}

body:not(.feral-page) .hero-text {
  max-width: 500px;
  margin-bottom: 14px;
  font-size: clamp(.98rem, 1.2vw, 1.1rem);
  line-height: 1.42;
}

body:not(.feral-page) .hero-copy .button {
  margin-right: 8px;
}

body:not(.feral-page) .home-promotions {
  padding-block: 38px;
}

body:not(.feral-page) .promotions-shell {
  padding: 20px;
}

body:not(.feral-page) .promotions-intro {
  gap: 18px;
  margin-bottom: 18px;
}

body:not(.feral-page) .promotions-heading h2 {
  max-width: 580px;
  margin-bottom: 8px;
  font-size: clamp(2rem, 3vw, 2.85rem);
}

body:not(.feral-page) .promotions-heading > p:last-child {
  max-width: 58ch;
  line-height: 1.5;
}

body:not(.feral-page) .promotion-discount {
  min-height: 58px;
  padding: 11px 14px;
  gap: 11px;
}

body:not(.feral-page) .promotions-credit {
  width: 42px;
  height: 42px;
  font-size: 1.02rem;
}

body:not(.feral-page) .promotion-discount-copy strong {
  font-size: .92rem;
}

body:not(.feral-page) .promotion-discount-copy small {
  font-size: .64rem;
  line-height: 1.3;
}

body:not(.feral-page) .promotions-grid {
  gap: 12px;
}

body:not(.feral-page) .promotion-card {
  gap: 11px;
  padding: 16px;
}

body:not(.feral-page) .promotion-card-header {
  gap: 3px;
  padding-bottom: 10px;
}

body:not(.feral-page) .promotion-label {
  font-size: .6rem;
}

body:not(.feral-page) .promotion-helper {
  font-size: .65rem;
  line-height: 1.34;
}

body:not(.feral-page) .promotion-card-content h3 {
  max-width: 13ch;
  margin-bottom: 6px;
  font-size: clamp(1.28rem, 1.7vw, 1.62rem);
  line-height: 1.04;
}

body:not(.feral-page) .promotion-card-content p {
  max-width: 48ch;
  margin-bottom: 11px;
  font-size: .78rem;
  line-height: 1.43;
}

body:not(.feral-page) .services .section-heading,
body:not(.feral-page) .about-section .section-heading {
  margin-bottom: 26px;
}

body:not(.feral-page) .service-grid {
  gap: 16px;
}

body:not(.feral-page) .service-card-media {
  aspect-ratio: 2.05 / 1;
}

body:not(.feral-page) .service-card .card-body {
  min-height: 198px;
  padding: 15px;
  grid-template-rows: auto auto 1fr auto;
}

body:not(.feral-page) .service-card .card-body::before {
  margin-bottom: 8px;
  padding: 3px 7px;
  font-size: .52rem;
}

body:not(.feral-page) .service-toggle {
  font-size: 1rem;
}

body:not(.feral-page) .service-card .card-body ul {
  gap: 5px;
  margin: 8px 0 10px;
}

body:not(.feral-page) .service-card .card-body li {
  font-size: .82rem;
  line-height: 1.28;
}

body:not(.feral-page) .service-card-link {
  font-size: .7rem;
}

body:not(.feral-page) .property-types {
  margin-top: 14px;
}

body:not(.feral-page) .home-flow-section {
  padding-block: 42px;
}

body:not(.feral-page) .home-flow-grid {
  gap: 14px;
}

body:not(.feral-page) .home-flow-card {
  padding: 18px;
  gap: 8px;
}

body:not(.feral-page) .home-flow-card h2 {
  max-width: 460px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

body:not(.feral-page) .home-flow-card p:not(.eyebrow) {
  margin-bottom: 2px;
  font-size: .84rem;
  line-height: 1.48;
}

body:not(.feral-page) .trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body:not(.feral-page) .trust-strip article {
  min-height: 0;
  padding: 15px;
}

body:not(.feral-page) .trust-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 7px;
}

body:not(.feral-page) .trust-strip h3 {
  margin: 5px 0 4px;
  font-size: .92rem;
  line-height: 1.15;
}

body:not(.feral-page) .trust-strip p {
  font-size: .76rem;
  line-height: 1.38;
}

body:not(.feral-page) .quote-section {
  padding-block: 54px;
}

body:not(.feral-page) .quote-layout {
  gap: 28px;
}

body:not(.feral-page) .quote-copy p:not(.eyebrow) {
  max-width: 48ch;
  line-height: 1.5;
}

body:not(.feral-page) .quote-form {
  gap: 9px;
  padding: 20px;
}

body:not(.feral-page) .quote-form-heading {
  padding-bottom: 8px;
}

body:not(.feral-page) .quote-submit-row {
  padding-top: 2px;
}

body:not(.feral-page) .lower-section {
  padding-block: 48px;
}

body:not(.feral-page) .lower-grid {
  gap: 14px;
}

body:not(.feral-page) .lower-card {
  min-height: 218px;
}

body:not(.feral-page) .lower-card > div:first-child,
body:not(.feral-page) .lower-card:has(.map-embed) > div:first-child {
  padding: 18px;
}

body:not(.feral-page) .lower-card p {
  margin-bottom: 12px;
  line-height: 1.48;
}

body:not(.feral-page) .map-embed,
body:not(.feral-page) .map-embed .leaflet-service-map {
  min-height: 218px;
}

@media (max-width: 960px) {
  body:not(.feral-page) .section {
    padding-block: 54px;
  }

  body:not(.feral-page) .promotions-grid,
  body:not(.feral-page) .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.feral-page) .promotion-card-content h3 {
    max-width: 18ch;
  }

  body:not(.feral-page) .service-card .card-body {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  body:not(.feral-page) .section,
  body:not(.feral-page) .home-promotions,
  body:not(.feral-page) .home-flow-section,
  body:not(.feral-page) .quote-section,
  body:not(.feral-page) .lower-section {
    padding-block: 46px;
  }

  body:not(.feral-page) .hero {
    min-height: 470px;
    padding: 48px 0 62px;
  }

  body:not(.feral-page) .hero-copy h1 {
    font-size: clamp(2.85rem, 14vw, 4.1rem);
  }

  body:not(.feral-page) .promotions-shell,
  body:not(.feral-page) .promotion-card,
  body:not(.feral-page) .home-flow-card {
    padding: 16px;
  }

  body:not(.feral-page) .promotions-grid,
  body:not(.feral-page) .trust-strip {
    grid-template-columns: 1fr;
  }

  body:not(.feral-page) .service-card-media {
    aspect-ratio: 1.58 / 1;
  }

  body:not(.feral-page) .quote-layout {
    gap: 22px;
  }

  body:not(.feral-page) .quote-form {
    padding: 16px;
  }

  body:not(.feral-page) .lower-card,
  body:not(.feral-page) .map-embed,
  body:not(.feral-page) .map-embed .leaflet-service-map {
    min-height: 210px;
  }
}

/* Inner-page compactness pass: align public pages with the homepage rhythm */
body:not(.feral-page) .service-explorer-section,
body:not(.feral-page) .calendar-section,
body:not(.feral-page) .service-detail-section,
body:not(.feral-page) .service-frequency-section,
body:not(.feral-page) .portfolio-section,
body:not(.feral-page) .portfolio-cta,
body:not(.feral-page) .about-reliability-section,
body:not(.feral-page) .about-story-section,
body:not(.feral-page) .about-difference-section,
body:not(.feral-page) .pay-hero-section {
  padding-block: 52px;
}

body:not(.feral-page) .section-heading,
body:not(.feral-page) .about-section-heading {
  margin-bottom: 24px;
}

body:not(.feral-page) .section-heading h1,
body:not(.feral-page) .about-section-heading h1,
body:not(.feral-page) .pay-copy h1 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}

body:not(.feral-page) .section-heading h2,
body:not(.feral-page) .about-section-heading h2,
body:not(.feral-page) .portfolio-cta h2,
body:not(.feral-page) .service-frequency h2 {
  font-size: clamp(1.85rem, 2.8vw, 2.55rem);
  line-height: 1.04;
}

body:not(.feral-page) .section-heading > p:last-child,
body:not(.feral-page) .about-section-heading p:not(.eyebrow),
body:not(.feral-page) .pay-copy > p {
  max-width: 58ch;
  line-height: 1.52;
}

body:not(.feral-page) .service-explorer,
body:not(.feral-page) .calendar-panel,
body:not(.feral-page) .about-section-heading,
body:not(.feral-page) .about-expect-card,
body:not(.feral-page) .about-brand-card,
body:not(.feral-page) .pay-card {
  padding: 20px;
}

body:not(.feral-page) .service-explorer {
  gap: 18px;
}

body:not(.feral-page) .service-explorer-controls {
  gap: 14px;
  padding-bottom: 16px;
}

body:not(.feral-page) .segmented-control {
  gap: 6px;
}

body:not(.feral-page) .service-explorer-button,
body:not(.feral-page) .service-goal-button,
body:not(.feral-page) .calendar-property-button,
body:not(.feral-page) .calendar-month-button,
body:not(.feral-page) .filter-button {
  min-height: 34px;
  padding: 8px 10px;
}

body:not(.feral-page) .service-explorer-result {
  gap: 14px;
  padding: 15px;
}

body:not(.feral-page) .service-explorer-result h3,
body:not(.feral-page) .calendar-main-card h3,
body:not(.feral-page) .calendar-highlight-card h3 {
  font-size: clamp(1.28rem, 2vw, 1.7rem);
}

body:not(.feral-page) .calendar-section .section-heading {
  margin-bottom: 18px;
}

body:not(.feral-page) .calendar-panel {
  gap: 18px;
}

body:not(.feral-page) .calendar-controls {
  gap: 14px;
}

body:not(.feral-page) .calendar-results {
  gap: 14px;
}

body:not(.feral-page) .calendar-main-card,
body:not(.feral-page) .calendar-highlight-card {
  padding: 18px;
}

body:not(.feral-page) .service-detail-grid {
  gap: 14px;
}

body:not(.feral-page) .service-detail-card {
  gap: 11px;
  padding: 18px;
  overflow: hidden;
}

body:not(.feral-page) .service-detail-media {
  display: block;
  width: calc(100% + 36px);
  min-width: 0;
  grid-column: 1 / -1;
  height: 220px;
  max-height: none;
  margin: -18px -18px 2px;
  aspect-ratio: auto;
  overflow: hidden;
}

body:not(.feral-page) .service-detail-media .service-card-image,
body:not(.feral-page) .service-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body:not(.feral-page) .service-image-mower {
  object-position: 66% center;
}

body:not(.feral-page) .homeowner-mower-crop {
  object-position: center 60%;
}

body:not(.feral-page) .service-image-bed-refresh {
  object-position: center center;
}

body:not(.feral-page) .service-image-blower {
  object-position: 50% center;
}

body:not(.feral-page) .service-image-trash {
  object-position: 43% center;
}

body:not(.feral-page) .service-detail-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  line-height: 1.08;
}

body:not(.feral-page) .service-detail-card p:not(.eyebrow) {
  font-size: .86rem;
  line-height: 1.5;
}

body:not(.feral-page) .service-detail-card ul {
  gap: 6px;
  margin-block: 2px 6px;
}

body:not(.feral-page) .service-detail-card li {
  font-size: .82rem;
  line-height: 1.34;
}

body:not(.feral-page) .turnover-support-card {
  gap: 10px;
}

body:not(.feral-page) .turnover-support-card p:not(.eyebrow) {
  max-width: 76ch;
}

body:not(.feral-page) .service-frequency {
  gap: 18px;
  padding: 20px;
}

body:not(.feral-page) .service-frequency-grid {
  gap: 10px;
}

body:not(.feral-page) .service-frequency-grid article {
  padding: 14px;
}

body:not(.feral-page) .service-frequency-grid strong {
  font-size: 1.02rem;
}

body:not(.feral-page) .service-frequency-grid span {
  margin-top: 5px;
  font-size: .8rem;
  line-height: 1.45;
}

body:not(.feral-page) .portfolio-toolbar {
  margin-bottom: 18px;
}

body:not(.feral-page) .portfolio-grid {
  gap: 14px;
}

body:not(.feral-page) .portfolio-image,
body:not(.feral-page) .portfolio-project-photo,
body:not(.feral-page) .portfolio-comparison {
  height: 190px;
  min-height: 190px;
}

body:not(.feral-page) .portfolio-card-body {
  padding: 15px;
}

body:not(.feral-page) .portfolio-card-body h3 {
  margin-bottom: 5px;
  font-size: 1.08rem;
}

body:not(.feral-page) .portfolio-card-body p:not(.eyebrow) {
  margin-bottom: 8px;
  font-size: .8rem;
  line-height: 1.44;
}

body:not(.feral-page) .portfolio-cta-inner {
  min-height: 0;
  padding: 18px 20px;
  border-radius: var(--radius);
}

body:not(.feral-page) .about-reliability-grid,
body:not(.feral-page) .about-story-grid {
  gap: 20px;
}

body:not(.feral-page) .about-check-grid {
  gap: 9px;
}

body:not(.feral-page) .about-check-grid span {
  grid-template-columns: 20px minmax(0, 1fr);
  column-gap: 10px;
  padding: 10px 12px;
  font-size: .8rem;
  line-height: 1.35;
}

body:not(.feral-page) .about-story-copy {
  padding: 22px;
}

body:not(.feral-page) .about-story-copy p {
  margin-bottom: 10px;
  font-size: .9rem;
  line-height: 1.55;
}

body:not(.feral-page) .about-portrait-placeholder {
  max-height: 330px;
}

body:not(.feral-page) .about-difference-inner {
  gap: 18px;
}

body:not(.feral-page) .about-difference-grid {
  gap: 12px;
}

body:not(.feral-page) .about-difference-grid article {
  padding: 16px;
}

body:not(.feral-page) .about-difference-grid h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

body:not(.feral-page) .about-difference-grid p {
  font-size: .82rem;
  line-height: 1.46;
}

body:not(.feral-page) .about-brand-card {
  gap: 18px;
  padding: 18px 20px;
}

body:not(.feral-page) .pay-hero-section {
  min-height: auto;
  padding-top: 76px;
}

body:not(.feral-page) .pay-layout {
  gap: 28px;
  align-items: center;
}

body:not(.feral-page) .pay-copy {
  gap: 12px;
}

body:not(.feral-page) .pay-security-list {
  gap: 8px;
}

body:not(.feral-page) .pay-form {
  gap: 10px;
}

body:not(.feral-page) .error-main {
  min-height: min(620px, calc(100vh - 74px));
}

body:not(.feral-page) .error-card {
  padding: 22px;
}

.feral-page .feral-hero {
  min-height: auto;
  padding: 62px 0 54px;
}

.feral-page .feral-hero-grid {
  gap: 28px;
  align-items: center;
}

.feral-page .feral-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: .98;
}

.feral-page .feral-hero-copy .hero-text {
  max-width: 54ch;
  line-height: 1.48;
}

.feral-page .feral-hero-panel,
.feral-page .feral-habitat-map {
  min-height: 340px;
}

.feral-page .feral-section {
  padding-block: 46px;
}

.feral-page .feral-split {
  gap: 20px;
}

@media (max-width: 960px) {
  body:not(.feral-page) .service-explorer-section,
  body:not(.feral-page) .calendar-section,
  body:not(.feral-page) .service-detail-section,
  body:not(.feral-page) .service-frequency-section,
  body:not(.feral-page) .portfolio-section,
  body:not(.feral-page) .portfolio-cta,
  body:not(.feral-page) .about-reliability-section,
  body:not(.feral-page) .about-story-section,
  body:not(.feral-page) .about-difference-section,
  body:not(.feral-page) .pay-hero-section {
    padding-block: 48px;
  }

  body:not(.feral-page) .service-detail-media {
    height: 220px;
  }

  body:not(.feral-page) .portfolio-image,
  body:not(.feral-page) .portfolio-project-photo,
  body:not(.feral-page) .portfolio-comparison {
    height: 200px;
    min-height: 200px;
  }

  body:not(.feral-page) .pay-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feral-page .feral-hero {
    padding-block: 56px 48px;
  }
}

@media (max-width: 760px) {
  body:not(.feral-page) .service-explorer-section,
  body:not(.feral-page) .calendar-section,
  body:not(.feral-page) .service-detail-section,
  body:not(.feral-page) .service-frequency-section,
  body:not(.feral-page) .portfolio-section,
  body:not(.feral-page) .portfolio-cta,
  body:not(.feral-page) .about-reliability-section,
  body:not(.feral-page) .about-story-section,
  body:not(.feral-page) .about-difference-section,
  body:not(.feral-page) .pay-hero-section {
    padding-block: 44px;
  }

  body:not(.feral-page) .section-heading h1,
  body:not(.feral-page) .about-section-heading h1,
  body:not(.feral-page) .pay-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  body:not(.feral-page) .service-explorer,
  body:not(.feral-page) .calendar-panel,
  body:not(.feral-page) .about-section-heading,
  body:not(.feral-page) .about-expect-card,
  body:not(.feral-page) .about-brand-card,
  body:not(.feral-page) .pay-card {
    padding: 16px;
  }

  body:not(.feral-page) .service-explorer-button,
  body:not(.feral-page) .service-goal-button,
  body:not(.feral-page) .calendar-property-button,
  body:not(.feral-page) .calendar-month-button,
  body:not(.feral-page) .filter-button {
    min-height: 40px;
  }

  body:not(.feral-page) .service-detail-card {
    padding: 16px;
  }

  body:not(.feral-page) .service-detail-media {
    width: calc(100% + 32px);
    height: 220px;
    margin: -16px -16px 2px;
    aspect-ratio: auto;
  }

  body:not(.feral-page) .portfolio-cta-inner,
  body:not(.feral-page) .about-brand-card {
    display: grid;
    gap: 14px;
  }

  body:not(.feral-page) .portfolio-cta .button,
  body:not(.feral-page) .about-brand-card .button {
    width: 100%;
    margin-top: 0;
  }

  body:not(.feral-page) .about-story-copy {
    padding: 18px;
  }

  body:not(.feral-page) .about-portrait-placeholder {
    max-height: 360px;
  }

  .feral-page .feral-hero {
    padding-block: 48px 44px;
  }

  .feral-page .feral-hero-panel,
  .feral-page .feral-habitat-map {
    min-height: 300px;
  }

  .feral-page .feral-section {
    padding-block: 42px;
  }
}

@media (min-width: 761px) {
  body:not(.feral-page) .service-explorer-section,
  body:not(.feral-page) .calendar-section,
  body:not(.feral-page) .service-detail-section,
  body:not(.feral-page) .service-frequency-section,
  body:not(.feral-page) .portfolio-section,
  body:not(.feral-page) .portfolio-cta,
  body:not(.feral-page) .about-reliability-section,
  body:not(.feral-page) .about-story-section,
  body:not(.feral-page) .about-difference-section {
    padding-block: 46px;
  }

  body:not(.feral-page) .service-explorer,
  body:not(.feral-page) .calendar-panel,
  body:not(.feral-page) .service-frequency,
  body:not(.feral-page) .pay-card {
    padding: 18px;
  }

  body:not(.feral-page) .service-explorer-controls,
  body:not(.feral-page) .calendar-controls,
  body:not(.feral-page) .calendar-results {
    gap: 12px;
  }

  body:not(.feral-page) .service-explorer-result,
  body:not(.feral-page) .calendar-main-card,
  body:not(.feral-page) .calendar-highlight-card {
    padding: 16px;
  }

  body:not(.feral-page) .service-detail-card {
    padding: 16px;
  }

  body:not(.feral-page) .service-detail-media {
    width: calc(100% + 32px);
    height: 190px;
    margin: -16px -16px 0;
  }

  body:not(.feral-page) .service-detail-card p:not(.eyebrow) {
    font-size: .82rem;
    line-height: 1.42;
  }

  body:not(.feral-page) .service-detail-card li {
    font-size: .78rem;
    line-height: 1.28;
  }

  body:not(.feral-page) .turnover-support-card {
    gap: 8px;
  }

  body:not(.feral-page) .pay-hero-section {
    min-height: auto;
    padding-block: 52px;
    padding-top: 60px;
  }

  body:not(.feral-page) .pay-layout {
    gap: 24px;
  }

  body:not(.feral-page) .pay-copy > p {
    max-width: 50ch;
    font-size: .9rem;
    line-height: 1.48;
  }

  body:not(.feral-page) .pay-security-list span {
    padding: 8px 10px;
  }

  body:not(.feral-page) .pay-form label {
    padding: 8px 10px;
  }

  body:not(.feral-page) .error-main {
    min-height: min(540px, calc(100vh - 74px));
  }
}

@media (min-width: 761px) {
  body:not(.feral-page) .homeowner-service-media,
  body:not(.feral-page) .property-management-service-media {
    height: clamp(260px, 24vw, 360px);
  }
}
