:root {
  --color-primary: #601520;
  --color-primary-dark: #4a0f19;
  --color-accent: #fdb913;
  --color-accent-dark: #e6a500;
  --color-background: #f8f5ef;
  --color-background-alt: #d8d1c8;
  --color-text: #1f1b18;
  --color-muted-accent: #c47b63;
  --color-gold-soft: #fff3c6;
  --ink: var(--color-text);
  --muted: #625953;
  --line: #d8d1c8;
  --soft: var(--color-background);
  --wash: #eee8df;
  --brand: var(--color-primary);
  --brand-dark: var(--color-primary-dark);
  --accent: var(--color-accent);
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(96, 21, 32, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--ink);
  line-height: 1.6;
}

.home-page {
  background:
    linear-gradient(180deg, #fffdfa 0%, #ffffff 38%, #fcfaf6 100%);
}

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

a {
  color: inherit;
}

.parallax-x {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .parallax-x {
    transform: none !important;
  }
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  background: var(--brand-dark);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  color: var(--brand-dark);
}

.logo img {
  display: block;
  width: auto;
  object-fit: contain;
}

.logo-primary img {
  max-width: min(329px, 60vw);
  max-height: 74px;
}

.logo-footer img {
  max-width: 240px;
  max-height: 127px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
  font-weight: 900;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  color: #3a3430;
  padding: 0.55rem 0.72rem;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a[aria-current="page"] {
  background: var(--wash);
  color: var(--brand-dark);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 2px solid var(--brand);
  border-radius: 8px;
  padding: 0.72rem 1rem;
  background: var(--brand);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button.secondary {
  background: var(--soft);
  color: var(--brand-dark);
}

.button.light {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.hero {
  background: linear-gradient(112deg, var(--color-background) 0%, #ffffff 55%, var(--color-gold-soft) 100%);
  border-bottom: 1px solid var(--line);
}

.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(253, 185, 19, 0.15), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(96, 21, 32, 0.09), transparent 18%),
    linear-gradient(135deg, #fffdf9 0%, #ffffff 50%, #fbf5ea 100%);
  border-bottom: 1px solid rgba(96, 21, 32, 0.08);
}

.hero-inner,
.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  min-height: 600px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 0;
}

.home-hero .hero-inner {
  min-height: 680px;
  gap: clamp(2rem, 4vw, 4.5rem);
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 0.45rem;
  font-size: 1.18rem;
  line-height: 1.25;
}

.lede {
  margin: 1.15rem 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.home-hero .lede {
  max-width: 34rem;
  color: #534c46;
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.home-hero .hero-actions {
  gap: 1rem;
  margin-top: 2rem;
}

.trust-line {
  display: inline-flex;
  margin-top: 1.4rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand-dark);
  font-weight: 800;
}

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

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(96, 21, 32, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-dark);
  box-shadow: 0 10px 25px rgba(96, 21, 32, 0.07);
  font-size: 0.9rem;
  font-weight: 850;
}

.hero-visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-visual-wrap {
  position: relative;
  min-height: 100%;
  display: grid;
  align-items: center;
}

.home-hero .hero-visual {
  position: relative;
  z-index: 1;
  aspect-ratio: 0.96;
  border: 12px solid rgba(255, 255, 255, 0.96);
  border-radius: 26px;
  box-shadow:
    0 28px 64px rgba(96, 21, 32, 0.16),
    0 12px 24px rgba(31, 27, 24, 0.08);
}

.hero-visual-accent {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-visual-accent-one {
  top: -1.5rem;
  right: -1rem;
  width: 9rem;
  height: 9rem;
  background: radial-gradient(circle, rgba(253, 185, 19, 0.28), rgba(253, 185, 19, 0.02));
}

.hero-visual-accent-two {
  left: -1.25rem;
  bottom: 3rem;
  width: 7.5rem;
  height: 7.5rem;
  background: radial-gradient(circle, rgba(96, 21, 32, 0.12), rgba(96, 21, 32, 0.02));
}

.hero-note {
  position: absolute;
  left: -1rem;
  bottom: 2rem;
  z-index: 2;
  max-width: 15rem;
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(96, 21, 32, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(31, 27, 24, 0.12);
}

.hero-note strong {
  color: var(--brand-dark);
  font-size: 0.98rem;
}

.hero-note span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section-image,
.card-media,
.wide-image {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(42, 42, 42, 0.06);
}

.section-image {
  aspect-ratio: 4 / 3;
}

.wide-image {
  aspect-ratio: 4 / 1.35;
  margin-top: 1.5rem;
}

.card-media {
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
  box-shadow: none;
}

.results-showcase-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(253, 185, 19, 0.14), transparent 24%),
    linear-gradient(180deg, #fcfaf6 0%, #ffffff 38%, #f8f5ef 100%);
}

.results-showcase-header {
  max-width: 760px;
}

.results-showcase-header h2 {
  margin-bottom: 0.7rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.result-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(96, 21, 32, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 252, 247, 0.98));
  box-shadow: 0 18px 36px rgba(31, 27, 24, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.result-card:hover,
.result-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(96, 21, 32, 0.18);
  box-shadow: 0 24px 42px rgba(31, 27, 24, 0.12);
}

.result-card-featured {
  grid-column: 1 / -1;
}

.result-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem 0.85rem;
}

.result-kicker {
  margin: 0 0 0.35rem;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
}

.result-summary {
  max-width: 19rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: right;
}

.before-after {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0 1.2rem 1.2rem;
}

.before-after::after {
  content: "→";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand);
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(31, 27, 24, 0.12);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.result-shot {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #f6f2eb;
  box-shadow: inset 0 0 0 1px rgba(96, 21, 32, 0.06);
}

.result-shot img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  filter: brightness(1.16) contrast(1.08) saturate(1.04);
  cursor: zoom-in;
  transition: transform 220ms ease;
}

.result-card:hover .result-shot img,
.result-card:focus-within .result-shot img {
  transform: scale(1.02);
}

.result-shot img:focus {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.result-label {
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  min-width: 4.4rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(31, 27, 24, 0.9);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.result-label.after {
  background: var(--brand);
}

.results-showcase-cta {
  margin-top: 2rem;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(96, 21, 32, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.98));
  box-shadow: 0 16px 34px rgba(31, 27, 24, 0.07);
  text-align: center;
}

.results-showcase-cta h3 {
  margin-bottom: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(42, 42, 42, 0.86);
}

.lightbox.open {
  display: flex;
}

.lightbox-panel {
  position: relative;
  width: min(96vw, 980px);
  max-height: 92vh;
  display: grid;
  gap: 0.75rem;
}

.lightbox img {
  max-width: 100%;
  max-height: 84vh;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain;
  background: var(--soft);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  filter: brightness(1.16) contrast(1.08) saturate(1.04);
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 42px;
  height: 42px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.section {
  padding: 4.5rem 0;
}

.home-page .section {
  position: relative;
}

.section.soft {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.home-page .section.soft {
  background:
    linear-gradient(180deg, rgba(250, 245, 238, 0.76), rgba(255, 255, 255, 0.96));
  border-block: 1px solid rgba(96, 21, 32, 0.07);
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.home-page .section-header {
  margin-bottom: 2.35rem;
}

.accented-header {
  position: relative;
  margin-bottom: 2.25rem;
  padding-bottom: 1.1rem;
}

.accented-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.section-header p,
.card p,
.split p,
.area-block p,
.footer p,
.checklist li,
.faq-answer {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.compact-trust-badges {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.35rem;
}

.trust-badge {
  min-height: 92px;
  display: grid;
  align-content: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--brand-dark);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 22px rgba(42, 42, 42, 0.06);
}

.compact-trust-badges .trust-badge {
  min-height: 78px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #fffaf2);
  box-shadow: 0 14px 28px rgba(31, 27, 24, 0.06);
}

.policy-list {
  display: grid;
  gap: 1rem;
}

.policy-list article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pet-friendly-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.pet-friendly-home-section {
  overflow: hidden;
}

.pet-friendly-home-section .section-inner {
  position: relative;
}

.pet-friendly-copy {
  max-width: 34rem;
}

.pet-friendly-visual-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(96, 21, 32, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(253, 185, 19, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 244, 0.94));
  box-shadow: 0 20px 44px rgba(31, 27, 24, 0.08);
}

.pet-friendly-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

img[src$="EHC_petfriendly.webp"] {
  object-fit: contain;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.pet-friendly-visual-card .pet-friendly-image {
  border-radius: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: 0 8px 22px rgba(42, 42, 42, 0.06);
}

.home-service-grid .card,
.benefit-card,
.included-shell,
.service-guarantee-section .section-header {
  border-radius: 18px;
}

.home-service-grid .card {
  padding: 1.2rem 1.2rem 1.3rem;
  border-color: rgba(96, 21, 32, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
  box-shadow: 0 18px 36px rgba(31, 27, 24, 0.07);
}

.home-service-grid .card h3 {
  color: var(--brand-dark);
}

.home-service-grid .card-link {
  margin-top: 1rem;
}

.service-area-card-grid .card {
  border: 1px solid rgba(96, 21, 32, 0.28);
  border-radius: 14px;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(116, 28, 41, 0.98), rgba(74, 15, 25, 0.98));
  color: var(--white);
  box-shadow:
    0 20px 40px rgba(96, 21, 32, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-area-card-grid .card h3,
.service-area-card-grid .card p {
  color: var(--white);
}

.service-area-card-grid .card p {
  opacity: 0.94;
}

.card-link {
  display: inline-flex;
  margin-top: 0.8rem;
  color: var(--brand-dark);
  font-weight: 850;
  text-decoration: none;
}

.card-link:hover,
.card-link:focus {
  color: var(--brand);
}

.home-intro-section {
  background: transparent;
}

.intro-trust-block {
  display: grid;
  gap: 0.55rem;
  max-width: 21rem;
  margin-top: 1.25rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(96, 21, 32, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.98));
  box-shadow: 0 16px 34px rgba(31, 27, 24, 0.08);
}

.intro-trust-kicker {
  margin: 0;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bbb-badge-link {
  display: block;
  max-width: 100%;
  text-decoration: none;
}

.bbb-badge-image {
  display: block;
  width: auto;
  max-width: min(250px, 100%);
  height: auto;
  border: 0;
}

.intro-trust-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.intro-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.service-contact-map-band {
  position: relative;
  z-index: 2;
  margin-top: -4rem;
  margin-bottom: 1.5rem;
}

.service-contact-map-grid {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(96, 21, 32, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 50px rgba(31, 27, 24, 0.11);
}

.service-contact-card,
.service-map-panel {
  min-width: 0;
}

.service-contact-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.4rem;
  text-align: center;
}

.service-contact-card + .service-contact-card,
.service-map-panel {
  border-left: 1px solid rgba(96, 21, 32, 0.08);
}

.service-contact-icon {
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 1.25rem;
  color: var(--brand);
}

.service-contact-card strong {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 800;
}

.service-contact-card a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.service-contact-card a:hover,
.service-contact-card a:focus {
  color: var(--brand-dark);
}

.service-map-panel {
  min-height: 220px;
}

.service-map-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
  background: #d8e9ef;
}

.service-map-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-map-ellipse {
  position: absolute;
  left: 30%;
  top: 10%;
  width: 70%;
  height: 70.6%;
  border: 3px solid rgba(208, 45, 45, 0.96);
  border-radius: 50%;
  background: rgba(208, 45, 45, 0.18);
  transform: rotate(-7deg);
  pointer-events: none;
}

.why-choose-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(250, 245, 238, 0.82));
}

@media (min-width: 901px) {
  .why-choose-section {
    margin-top: -2.5rem;
  }
}

.why-choose-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.benefit-card {
  padding: 1.4rem 1.25rem;
  border: 1px solid rgba(96, 21, 32, 0.09);
  background: linear-gradient(180deg, #ffffff, #fffaf4);
  box-shadow: 0 16px 34px rgba(31, 27, 24, 0.06);
}

.benefit-card h3 {
  color: var(--brand-dark);
  margin-bottom: 0.55rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
}

.services-overview-section {
  background: transparent;
}

.included-section {
  background:
    linear-gradient(180deg, rgba(250, 245, 238, 0.8), rgba(255, 255, 255, 0.94));
}

.seasonal-ideas-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(253, 185, 19, 0.13), transparent 20%),
    linear-gradient(180deg, rgba(248, 245, 239, 0.9), rgba(255, 255, 255, 0.98));
}

.seasonal-ideas-shell {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid rgba(96, 21, 32, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(31, 27, 24, 0.06);
}

.seasonal-ideas-header {
  max-width: none;
  margin-bottom: 1.8rem;
}

.seasonal-ideas-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.seasonal-ideas-heading-row a {
  color: var(--brand);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.seasonal-ideas-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(253, 185, 19, 0.18);
  color: var(--brand-dark);
  box-shadow: inset 0 0 0 1px rgba(96, 21, 32, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.seasonal-ideas-note {
  margin: 0.95rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.seasonal-ideas-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.seasonal-idea-card {
  position: relative;
  min-height: 100%;
  padding: 1.25rem 1.15rem 1.2rem;
  border: 1px solid rgba(96, 21, 32, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 244, 0.98));
  box-shadow: 0 14px 28px rgba(31, 27, 24, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.seasonal-idea-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1.15rem;
  width: 2.4rem;
  height: 0.22rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(196, 123, 99, 0.85));
}

.seasonal-idea-card:hover,
.seasonal-idea-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(96, 21, 32, 0.16);
  box-shadow: 0 20px 34px rgba(31, 27, 24, 0.1);
}

.seasonal-idea-card h3 {
  margin: 1rem 0 0.55rem;
  color: var(--brand-dark);
  font-size: 1.12rem;
}

.seasonal-idea-card p {
  margin: 0;
  color: var(--muted);
}

.included-shell {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid rgba(96, 21, 32, 0.16);
  border-top: 4px solid var(--brand);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(31, 27, 24, 0.1);
}

.included-shell .section-header {
  margin-bottom: 1.4rem;
}

.included-shell .checklist li {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border-color: rgba(96, 21, 32, 0.08);
  box-shadow: 0 12px 28px rgba(31, 27, 24, 0.05);
}

.included-shell .checklist li::before {
  content: none !important;
  display: none !important;
}

.checklist-static {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.included-shell .checklist-static .included-item {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 0.75rem 0.85rem 0.75rem 2.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  color: var(--muted);
  box-shadow: 0 10px 22px rgba(31, 27, 24, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.included-shell .checklist-static .included-item:hover {
  border-color: rgba(96, 21, 32, 0.22);
  background: #fffdf8;
  box-shadow: 0 14px 28px rgba(31, 27, 24, 0.08);
}

.included-shell .checklist-static .included-item::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--brand);
  box-shadow: 0 8px 18px rgba(96, 21, 32, 0.16);
}

.included-shell .checklist-static .included-item::after {
  content: "";
  position: absolute;
  left: 1.27rem;
  top: 50%;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--white);
}

.service-area-home-section {
  background: transparent;
}

.service-guarantee-section .section-header {
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(96, 21, 32, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 243, 198, 0.28), rgba(255, 255, 255, 0.95));
  box-shadow: 0 16px 34px rgba(31, 27, 24, 0.05);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.faq-home-section {
  background:
    linear-gradient(180deg, rgba(250, 245, 238, 0.78), rgba(255, 255, 255, 0.96));
}

.section.service-feature-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(248, 245, 239, 0.94)),
    var(--soft);
}

.section.service-detail-section {
  background:
    linear-gradient(180deg, rgba(216, 209, 200, 0.28), rgba(248, 245, 239, 0.92));
}

.section.estimate-section {
  background:
    linear-gradient(135deg, rgba(255, 243, 198, 0.55), rgba(216, 209, 200, 0.68)),
    var(--soft);
}

.feature-checklist {
  gap: 0.95rem;
}

.feature-checklist li {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 1rem 1.05rem 1rem 3.1rem;
  border-color: rgba(96, 21, 32, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 248, 0.96));
  box-shadow: 0 12px 30px rgba(31, 27, 24, 0.07);
  font-weight: 780;
}

.feature-checklist li::before {
  left: 1rem;
  top: 50%;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 0 0 5px rgba(96, 21, 32, 0.08);
}

.feature-checklist li::after {
  content: "";
  position: absolute;
  left: 1.46rem;
  top: 50%;
  width: 0.42rem;
  height: 0.72rem;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: translateY(-58%) rotate(45deg);
}

.feature-checklist li:hover,
.detail-card:hover,
.estimate-list li:hover {
  border-color: rgba(96, 21, 32, 0.26);
  box-shadow: 0 16px 34px rgba(31, 27, 24, 0.1);
}

.detail-grid {
  gap: 1.15rem;
}

.more-cleaning-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: start;
}

.detail-card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  border-color: rgba(96, 21, 32, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--brand);
}

.detail-card-heading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.95rem;
}

.detail-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    linear-gradient(145deg, var(--color-gold-soft), rgba(255, 255, 255, 0.92));
  color: var(--brand-dark);
  box-shadow:
    inset 0 0 0 1px rgba(253, 185, 19, 0.46),
    0 10px 22px rgba(96, 21, 32, 0.1);
}

.detail-icon svg {
  width: 38px;
  height: 38px;
  display: block;
}

.detail-icon .icon-fill {
  fill: rgba(96, 21, 32, 0.13);
}

.detail-icon .icon-accent {
  fill: rgba(253, 185, 19, 0.72);
}

.detail-card h3 {
  color: var(--brand-dark);
  margin: 0;
}

.detail-list {
  display: grid;
  gap: 0.68rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.detail-list li {
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.58;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--color-muted-accent);
}

.general-areas-feature-card {
  margin-top: 1.15rem;
  padding-bottom: 1.3rem;
}

.general-areas-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: start;
}

.general-areas-columns h4 {
  margin: 0 0 0.6rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.general-areas-feature-card .detail-list {
  gap: 0.58rem;
}

.estimate-header {
  max-width: 980px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.estimate-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 0.2rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.estimate-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 980px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.estimate-list li {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 0.95rem 1rem 0.95rem 3rem;
  border: 1px solid rgba(96, 21, 32, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(31, 27, 24, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.estimate-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--color-gold-soft);
  box-shadow: inset 0 0 0 1px rgba(96, 21, 32, 0.14);
}

.estimate-list li::after {
  content: "";
  position: absolute;
  left: 1.43rem;
  top: 50%;
  width: 0.36rem;
  height: 0.62rem;
  border: solid var(--brand-dark);
  border-width: 0 2px 2px 0;
  transform: translateY(-58%) rotate(45deg);
}

@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
  .detail-card:hover {
    transform: translateY(-7px);
  }
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.residential-intro {
  display: grid;
  gap: 1.1rem;
}

.residential-intro-heading-block {
  display: block;
}

.residential-intro-columns {
  display: grid;
  grid-template-columns: minmax(0, 490px) minmax(0, 1fr);
  column-gap: clamp(2.25rem, 5vw, 4rem);
  align-items: start;
}

.residential-intro-heading {
  max-width: 1800px;
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.05rem);
  line-height: 1.1;
}

.residential-intro-copy {
  padding-top: 0.01rem;
}

.residential-intro-copy p {
  max-width: 640px;
  line-height: 1.65;
}

.move-intro {
  display: grid;
  gap: 1.1rem;
}

.move-intro h2 {
  max-width: 100%;
  margin: 0;
}

.move-intro-columns {
  margin-top: 0;
  align-items: center;
}

.move-intro-copy {
  padding-top: 0;
}

.move-cleaning-areas .section-header {
  margin-bottom: 1.5rem;
}

.move-area-top-grid,
.move-area-compact-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.move-area-top-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.move-area-compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.move-area-card {
  align-self: start;
  padding: 1.2rem;
  border-color: rgba(96, 21, 32, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #fffdf9);
}

.move-area-top-grid > .move-area-card,
.move-area-compact-grid > .move-area-card {
  height: 100%;
  align-self: stretch;
}

.move-area-card h3 {
  color: var(--brand-dark);
}

.move-area-general {
  margin-top: 1rem;
}

.move-area-general h3 {
  margin-bottom: 1rem;
}

.move-general-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.move-general-groups h4 {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.move-area-compact {
  padding: 1.05rem;
}

.move-area-compact p {
  margin-bottom: 0;
}

.seasonal-intro {
  display: grid;
  gap: 1.1rem;
}

.seasonal-intro h2 {
  max-width: 100%;
  margin: 0;
}

.seasonal-intro-columns {
  margin-top: 0;
  align-items: start;
}

.seasonal-animal-card {
  position: relative;
  margin-top: 1.25rem;
  padding: 1.05rem 1.1rem 1.05rem 1.25rem;
  border: 1px solid rgba(96, 21, 32, 0.12);
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 243, 198, 0.42), rgba(255, 255, 255, 0.94));
  box-shadow: 0 14px 30px rgba(31, 27, 24, 0.06);
}

.seasonal-animal-card h3 {
  margin-bottom: 0.45rem;
  color: var(--brand-dark);
  font-size: 1rem;
}

.seasonal-animal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

@media (min-width: 901px) {
  .residential-intro-section {
    padding-top: 5rem;
  }

  .residential-intro-media .section-image {
    margin-top: 0.25rem;
  }

  .move-intro-copy {
    padding-top: 50px;
  }

  .seasonal-intro-copy {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .residential-intro-columns {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .residential-intro-copy,
  .move-intro-copy,
  .seasonal-intro-copy {
    padding-top: 0;
  }
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding: 0.75rem 0.85rem 0.75rem 2.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 1.02rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--brand);
}

.area-block {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.area-block:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid rgba(96, 21, 32, 0.14);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(31, 27, 24, 0.07);
  overflow: hidden;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.faq-item:hover {
  border-color: rgba(96, 21, 32, 0.28);
  box-shadow: 0 14px 34px rgba(31, 27, 24, 0.1);
}

.faq-item.open {
  background: #fffdf8;
  border-color: rgba(253, 185, 19, 0.78);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 1.1rem 1.15rem;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--brand);
}

.faq-question:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -4px;
}

.faq-question span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-gold-soft);
  color: var(--brand-dark);
  font-size: 0;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  grid-area: 1 / 1;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.faq-question span::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item.open .faq-question span {
  background: var(--accent);
  transform: rotate(180deg);
}

.faq-item.open .faq-question span::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: none;
  padding: 0 1.15rem 1.2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.faq-item.open .faq-answer {
  display: block;
}

.page-hero {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  padding: 4.25rem 0 3.25rem;
}

.breadcrumbs {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.cta-band,
.pre-footer-cta {
  background: var(--brand-dark);
  color: var(--white);
}

.cta-band p,
.pre-footer-cta p {
  color: #f6eadf;
}

.pre-footer-cta {
  position: relative;
  overflow: hidden;
  padding: 3.2rem 0;
  background:
    linear-gradient(120deg, rgba(96, 21, 32, 0.98), rgba(74, 15, 25, 0.98)),
    radial-gradient(circle at 85% 15%, rgba(253, 185, 19, 0.18), transparent 34%);
}

.home-page .pre-footer-cta {
  margin-top: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pre-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(253, 185, 19, 0.38);
  pointer-events: none;
}

.pre-footer-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.pre-footer-inner h2 {
  margin-bottom: 0.45rem;
}

.pre-footer-inner p {
  margin: 0;
}

.pre-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.pre-footer-actions .button {
  background: var(--white);
  border-color: var(--white);
  color: var(--brand-dark);
}

.pre-footer-actions .button.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--color-gold-soft);
}

.pre-footer-actions .button:hover,
.pre-footer-actions .button:focus {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.form-shell {
  display: grid;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d7c9b4;
  border-radius: 8px;
  padding: 0.8rem;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.form-status {
  margin: 0.85rem 0 0;
  min-height: 1.4rem;
  font-weight: 800;
}

.form-status.success {
  color: var(--brand-dark);
}

.form-status.error {
  color: #7a1c28;
}

button:disabled {
  opacity: 0.72;
  cursor: wait;
}

textarea {
  min-height: 135px;
  resize: vertical;
}

.contact-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.contact-list strong {
  display: block;
}

.site-footer {
  background:
    linear-gradient(180deg, #241c19 0%, var(--ink) 100%);
  color: var(--white);
  padding: 3.6rem 0 1.1rem;
  border-top: 3px solid var(--accent);
}

.footer-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.footer a {
  color: #efe6d9;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer a:hover,
.footer a:focus {
  color: var(--accent);
}

.footer h3 {
  margin-bottom: 0.8rem;
  color: var(--white);
}

.footer p {
  color: #d8d1c8;
}

.footer-brand p,
.footer-contact p {
  margin-top: 0.8rem;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.32rem 0.58rem;
  border: 1px solid rgba(253, 185, 19, 0.32);
  border-radius: 999px;
  color: var(--color-gold-soft);
  background: rgba(255, 243, 198, 0.06);
  font-size: 0.83rem;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 0.58rem;
}

.footer-bottom {
  width: min(1120px, calc(100% - 32px));
  margin: 2.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(216, 209, 200, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: #bfb6ab;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.note {
  margin: 1rem 0;
  padding: 1.05rem 1.1rem 1.05rem 1.25rem;
  border: 1px solid rgba(96, 21, 32, 0.12);
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 243, 198, 0.42), rgba(255, 255, 255, 0.94));
  color: var(--muted);
  line-height: 1.58;
  box-shadow: 0 14px 30px rgba(31, 27, 24, 0.06);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-inner,
  .split,
  .pet-friendly-layout,
  .pre-footer-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-contact-map-grid {
    grid-template-columns: 1fr;
  }

  .service-contact-card + .service-contact-card,
  .service-map-panel {
    border-left: 0;
    border-top: 1px solid rgba(96, 21, 32, 0.08);
  }

  .pre-footer-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .pre-footer-actions {
    justify-content: flex-start;
  }

  .hero-inner {
    min-height: auto;
    padding: 3rem 0;
  }

  .home-hero .hero-inner {
    min-height: auto;
    gap: 2rem;
  }

  .hero-note {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
  }

    .grid.three,
    .grid.two,
    .results-grid,
    .trust-badges {
      grid-template-columns: 1fr;
    }

  .estimate-header {
    display: block;
  }

  .estimate-badge {
      margin-top: 1rem;
    }
  }

@media (max-width: 640px) {
  .nav-wrap,
  .hero-inner,
  .section-inner,
  .footer-grid {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 3.25rem 0;
  }

  .page-hero {
    padding: 3rem 0 2.4rem;
  }

    .checklist,
    .estimate-list,
    .field-grid {
      grid-template-columns: 1fr;
    }

    .why-choose-grid,
    .compact-trust-badges {
      grid-template-columns: 1fr;
    }

    .move-area-compact-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

      .feature-checklist li,
      .estimate-list li {
      min-height: auto;
    }

  .button,
  button.button {
    width: 100%;
  }

  .hero-trust-row span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .service-contact-map-band {
    margin-top: 0;
  }

  .before-after {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .seasonal-ideas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seasonal-ideas-heading-row {
    display: block;
  }

  .seasonal-ideas-badge {
    margin-top: 0.9rem;
  }

  .before-after::after {
    content: "↓";
    top: 50%;
    left: 50%;
  }

  .result-shot img {
    aspect-ratio: 4 / 3;
  }

  .result-card-top {
    display: block;
  }

  .result-summary {
    max-width: none;
    margin-top: 0.55rem;
    text-align: left;
  }

  .seasonal-ideas-grid {
    grid-template-columns: 1fr;
  }

  .move-area-top-grid,
  .move-general-groups,
  .move-area-compact-grid,
  .more-cleaning-details-grid,
  .general-areas-columns {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .move-area-top-grid > .move-area-card,
  .move-area-compact-grid > .move-area-card {
    height: auto;
    align-self: start;
  }
}

.seasonal-intro .seasonal-intro-columns {
  align-items: start !important;
}

.seasonal-intro .seasonal-intro-copy {
  align-self: start !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
