/* Charleston Lawn Maintenance (turfestate.com) — site shell
   Palette / rhythm inspired by franchise lawn sites (forest green + gold + black) */
:root {
  --ink: #0f1110;
  --muted: #4a5348;
  --line: #d9e0d4;
  --bg: #f4f7f2;
  --card: #ffffff;
  --accent: #1a542c;
  --accent-hover: #143f22;
  --accent-soft: #e4efe6;
  --gold: #e2b41a;
  --gold-hover: #ecc52e;
  --gold-soft: #fbf6e8;
  --warn: #b45309;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --radius: 10px;
  --max: 720px;
  --max-wide: 1040px;
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

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

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

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

.wrap {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.wrap--narrow {
  max-width: var(--max);
}

.site-header {
  background: var(--card);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 1px 0 rgba(15, 17, 16, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}

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

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-main a {
  color: var(--muted);
  text-decoration: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn--primary {
  background: linear-gradient(180deg, #1f5f33 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 2px 6px rgba(20, 63, 34, 0.28);
}

.btn--primary:hover {
  background: linear-gradient(180deg, var(--accent-hover) 0%, #0f3018 100%);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 3px 10px rgba(20, 63, 34, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn--ghost:hover {
  background: var(--accent-soft);
}

.hero {
  padding: 2.5rem 0 2rem;
}

.hero--hub {
  background: linear-gradient(160deg, var(--accent-soft) 0%, var(--bg) 45%);
  border-bottom: 1px solid var(--line);
}

/* Full-viewport-style photo hero (before/after asset as cover background) */
.hero--photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 20, 25, 0.35);
  min-height: min(88vh, 56rem);
  padding: clamp(2.25rem, 7vw, 4.5rem) 0;
  background-color: #121a14;
  background-image: url("../images/charleston-lawn-hero-premium.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    118deg,
    rgba(10, 14, 11, 0.82) 0%,
    rgba(15, 22, 16, 0.55) 38%,
    rgba(18, 26, 20, 0.35) 100%
  );
  pointer-events: none;
}

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

.hero--photo .section-kicker {
  color: var(--gold);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.hero--photo .section-kicker::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3px;
  margin-top: 0.5rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(226, 180, 26, 0.35) 100%);
}

.hero--photo h1 {
  color: #f8fafb;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  max-width: 52rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero--photo .lead,
.hero--photo .cmp-lead {
  color: rgba(248, 250, 251, 0.92);
  max-width: 44rem;
}

.hero--photo .lead strong {
  color: #fff;
}

.hero--photo .cta-bullets {
  color: rgba(248, 250, 251, 0.88);
}

.hero--photo .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.hero--photo .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .hero--photo {
    background-attachment: scroll;
  }
}

/* Hero image carousel (homepage): full-bleed slides; arrows + dots only (no labels) */
.hero--photo.hero--carousel {
  background-image: none;
  padding-bottom: clamp(2.5rem, 5vw, 3.25rem);
}

.hero--photo.hero--carousel::before {
  z-index: 1;
}

.hero--photo.hero--carousel .hero__inner {
  position: relative;
  z-index: 2;
}

.hero-carousel-root {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-carousel__slides {
  position: absolute;
  inset: 0;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.hero-carousel__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-carousel__chrome {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 20, 25, 0.45);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font-sans);
  pointer-events: auto;
}

.hero-carousel__arrow--prev {
  left: clamp(0.5rem, 2vw, 1rem);
}

.hero-carousel__arrow--next {
  right: clamp(0.5rem, 2vw, 1rem);
}

.hero-carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(0.65rem, 2.5vw, 1rem);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 20, 25, 0.4);
  pointer-events: auto;
}

.hero-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.hero-carousel__dot.is-active {
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
  transform: scale(1.35);
}

.hero-carousel__dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.hero-carousel__dot:focus-visible,
.hero-carousel__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel__slide {
    transition: none;
  }

  .hero-carousel__dot {
    transition: none;
  }
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  line-height: 1.12;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 1.25rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}

.trust-strip {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
}

.trust-bar {
  background: var(--card);
  border-top: 4px solid var(--gold);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}

.section--alt {
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.35rem;
}

.cta-bullets {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.cta-bullets li {
  margin-bottom: 0.35rem;
}

.service-grid .card h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.service-grid .card p {
  font-size: 0.9rem;
}

/* Conversion layout blocks + checklist / CTA variants */
.layout-section {
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--line);
}

.layout-section--surface {
  background: var(--accent-soft);
  border-bottom-color: var(--line);
}

.layout-container {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.layout-container.prose h2 {
  font-family: var(--font);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.layout-container.prose h3 {
  font-size: 1.15rem;
  margin: 1.25rem 0 0.5rem;
}

.hub-inline,
.authority-callout {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 1.15rem;
  max-width: 40rem;
}

.cmp-lead {
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 0 1rem;
}

.cmp-checklist {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.cmp-checklist li {
  margin-bottom: 0.45rem;
}

.cmp-section-figure {
  margin: 1.75rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.cmp-section-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.cmp-section-figure figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.65rem 1rem;
  background: var(--card);
}

.cmp-system-media {
  margin-top: 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.cmp-system-media img {
  display: block;
  width: 100%;
  height: auto;
}

.cmp-card-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .cmp-card-grid--2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.cmp-card-grid > div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.cmp-card-grid > div h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.cmp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}

.cmp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cmp-btn--primary {
  background: var(--accent);
  color: #fff;
}

.cmp-btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.cmp-btn--secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.cmp-btn--secondary:hover {
  background: var(--accent-soft);
}

main {
  padding-bottom: 3rem;
}

.section {
  padding: 2.25rem 0;
}

.section h2 {
  font-family: var(--font);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.section h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.prose {
  max-width: var(--max);
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.35rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-top: 1.25rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.card a {
  font-weight: 600;
}

.funnel-callout {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.funnel-callout strong {
  display: block;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.related-links {
  background: var(--gold-soft);
  border: 1px solid rgba(226, 180, 26, 0.25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.related-links h2,
.related-links h3 {
  margin-top: 0;
  font-size: 1rem;
}

.related-links ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.site-footer {
  background: #0a0c0a;
  color: #b8c0b5;
  padding: 2rem 0;
  font-size: 0.88rem;
  border-top: 4px solid var(--gold);
}

.site-footer a {
  color: #9dcca8;
}

.site-footer a:hover {
  color: var(--gold-hover);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: var(--muted);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1rem 0;
}

.price-table th,
.price-table td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.price-table th {
  background: var(--accent-soft);
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* --- Homepage: Charleston Turf & Estate (editorial / luxury) --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.home {
  --estate-ink: #1c1b19;
  --estate-muted: #5e5c57;
  --estate-line: #e3ddd4;
  --estate-cream: #f7f4ee;
  --estate-cream-deep: #ebe6dc;
  --estate-green: #2c3d30;
  --estate-green-hover: #1f2b22;
  --estate-gold: #c4a35a;
  --estate-gold-soft: rgba(196, 163, 90, 0.35);
  background: var(--estate-cream);
  color: var(--estate-ink);
}

body.home a {
  color: var(--estate-green);
}

body.home a:hover {
  color: var(--estate-green-hover);
}

body.home .site-header--estate {
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--estate-line);
  box-shadow: none;
}

body.home .site-header__inner--estate {
  padding: 0.65rem 0;
  flex-wrap: nowrap;
  gap: 1.5rem;
}

body.home .logo--estate {
  font-weight: 600;
  font-size: clamp(0.78rem, 1.9vw, 1rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--estate-ink);
  line-height: 1.25;
  max-width: min(22rem, 88vw);
}

body.home .logo--estate:hover {
  color: var(--estate-green);
}

body.home .nav-estate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.home .nav-estate a {
  color: var(--estate-muted);
  text-decoration: none;
}

body.home .nav-estate a:hover {
  color: var(--estate-ink);
}

body.home .nav-estate__plan {
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--estate-ink);
  color: var(--estate-ink);
  letter-spacing: 0.08em;
}

body.home .nav-estate__plan:hover {
  background: var(--estate-ink);
  color: var(--estate-cream);
  border-color: var(--estate-ink);
}

@media (max-width: 720px) {
  body.home .site-header__inner--estate {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  body.home .nav-estate {
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem 1.25rem;
  }
}

/* Hero: full-bleed carousel + editorial copy (left scrim) */
body.home .home-hero--fullbleed {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(88vh, 56rem);
  padding: clamp(2.75rem, 8vw, 5rem) 0 clamp(2.25rem, 5vw, 3.5rem);
  border-bottom: 1px solid rgba(28, 27, 25, 0.25);
  background: #141612;
}

body.home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

body.home .home-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(12, 11, 10, 0.88) 0%,
    rgba(18, 17, 15, 0.62) 38%,
    rgba(22, 21, 18, 0.28) 68%,
    rgba(22, 21, 18, 0.06) 100%
  );
}

body.home .home-hero__content {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

body.home .home-hero__copy {
  pointer-events: auto;
  max-width: 38rem;
}

body.home .home-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--estate-gold);
}

body.home .home-hero__copy h1 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: #faf7f2;
  max-width: 38rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body.home .home-hero__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(247, 244, 238, 0.88);
  max-width: 36rem;
}

body.home .home-hero__local-line {
  margin: 0.9rem 0 0;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.58;
  color: rgba(247, 244, 238, 0.86);
}

body.home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.75rem;
}

body.home .btn--estate-primary {
  background: var(--estate-green);
  color: #f7f4ee;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.35rem;
  border-radius: 2px;
  box-shadow: none;
  border: 1px solid var(--estate-green);
}

body.home .btn--estate-primary:hover {
  background: var(--estate-green-hover);
  color: #f7f4ee;
  border-color: var(--estate-green-hover);
}

body.home .btn--estate-ghost {
  background: transparent;
  color: var(--estate-ink);
  border: 1px solid var(--estate-line);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.35rem;
  border-radius: 2px;
}

body.home .btn--estate-ghost:hover {
  border-color: var(--estate-ink);
  background: rgba(28, 27, 25, 0.04);
  color: var(--estate-ink);
}

body.home .btn--estate-ghost--on-photo {
  color: #f7f4ee;
  border-color: rgba(247, 244, 238, 0.65);
}

body.home .btn--estate-ghost--on-photo:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(247, 244, 238, 0.95);
  color: #fff;
}

body.home .btn--estate-lg {
  padding: 0.9rem 1.75rem;
  font-size: 0.875rem;
}

/* Full-bleed carousel layer */
body.home .home-hero-carousel {
  position: absolute;
  inset: 0;
}

body.home .home-hero-carousel__slides {
  position: absolute;
  inset: 0;
}

body.home .home-hero-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

body.home .home-hero-carousel__slide.is-active {
  opacity: 1;
  z-index: 1;
}

body.home .home-hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

body.home .home-hero-carousel__chrome {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

body.home .home-hero-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(20, 22, 18, 0.42);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font-sans);
  pointer-events: auto;
}

body.home .home-hero-carousel__arrow--prev {
  left: 0.65rem;
}

body.home .home-hero-carousel__arrow--next {
  right: 0.65rem;
}

body.home .home-hero-carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}

body.home .home-hero-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.28rem 0.45rem;
  border-radius: 999px;
  background: rgba(18, 20, 16, 0.45);
  pointer-events: auto;
}

body.home .home-hero-carousel__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

body.home .home-hero-carousel__dot.is-active {
  background: var(--estate-gold);
  transform: scale(1.3);
}

body.home .home-hero-carousel__dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

body.home .home-hero-carousel__dot:focus-visible,
body.home .home-hero-carousel__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  body.home .home-hero-carousel__slide {
    transition: none;
  }
}

/* Residential | Commercial path picker (below hero, before locations) */
body.home .home-path-split {
  padding: clamp(2.25rem, 5vw, 3.25rem) 0;
  background: linear-gradient(
    180deg,
    var(--estate-cream) 0%,
    #fdfcfa 45%,
    var(--estate-cream-deep) 100%
  );
  border-bottom: 1px solid var(--estate-line);
}

body.home .home-path-split__inner {
  max-width: 72rem;
}

body.home .home-path-split__intro-heading {
  margin: 0 0 clamp(1.35rem, 3vw, 1.85rem);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--estate-ink);
}

body.home .home-path-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--estate-line);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 48px rgba(28, 27, 25, 0.06);
}

body.home .home-path-split__panel {
  position: relative;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
  overflow: hidden;
}

body.home .home-path-split__panel--commercial {
  border-left: 1px solid var(--estate-line);
}

body.home .home-path-split__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: var(--estate-ink);
  opacity: 0.07;
}

body.home .home-path-split__svg {
  width: min(15rem, 52vw);
  height: auto;
  flex-shrink: 0;
}

body.home .home-path-split__svg--building {
  width: min(12rem, 44vw);
}

body.home .home-path-split__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  max-width: 22rem;
  margin: 0 auto;
}

body.home .home-path-split__title {
  margin: 0;
  font-size: clamp(1.2rem, 2.3vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--estate-ink);
  line-height: 1.2;
}

body.home .home-path-split__sub {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--estate-muted);
}

body.home .home-path-split__picker {
  margin-top: 0.35rem;
  width: 100%;
  max-width: 20rem;
  text-align: left;
}

body.home .home-path-split__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--estate-green);
  background: rgba(255, 255, 255, 0.92);
  color: var(--estate-green);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

body.home .home-path-split__summary::-webkit-details-marker {
  display: none;
}

body.home .home-path-split__summary::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.15rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

body.home .home-path-split__picker[open] .home-path-split__summary::after {
  transform: rotate(225deg) translateY(2px);
}

body.home .home-path-split__summary:hover {
  border-color: var(--estate-green-hover);
  color: var(--estate-green-hover);
  background: #fff;
}

body.home .home-path-split__summary:focus-visible {
  outline: 2px solid var(--estate-gold);
  outline-offset: 3px;
}

body.home .home-path-split__picker[open] .home-path-split__summary {
  border-color: var(--estate-ink);
  color: var(--estate-ink);
}

body.home .home-path-split__menu {
  margin: 0.65rem 0 0;
  padding: 0.35rem 0;
  list-style: none;
  border-radius: 10px;
  border: 1px solid var(--estate-line);
  background: #fff;
  box-shadow: 0 12px 36px rgba(28, 27, 25, 0.08);
}

body.home .home-path-split__menu li {
  margin: 0;
  border-bottom: 1px solid rgba(227, 221, 212, 0.65);
}

body.home .home-path-split__menu li:last-child {
  border-bottom: none;
}

body.home .home-path-split__menu a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--estate-ink);
  text-decoration: none;
}

body.home .home-path-split__menu a:hover {
  background: var(--estate-cream);
  color: var(--estate-green-hover);
}

@media (max-width: 719px) {
  body.home .home-path-split__grid {
    grid-template-columns: 1fr;
  }

  body.home .home-path-split__panel--commercial {
    border-left: none;
    border-top: 1px solid var(--estate-line);
  }
}

/* Service area headline + linked neighborhoods */
body.home .home-locations {
  border-top: 1px solid var(--estate-line);
  border-bottom: 1px solid var(--estate-line);
  background: var(--estate-cream-deep);
}

body.home .home-locations__inner {
  padding: clamp(1.75rem, 4vw, 2.65rem) 0;
  text-align: center;
}

body.home .home-locations__title {
  margin: 0 auto 1.15rem;
  max-width: 38rem;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--estate-ink);
}

body.home .home-locations__nav {
  display: block;
}

body.home .home-locations__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--estate-muted);
}

body.home .home-locations__list li {
  display: inline-flex;
  align-items: center;
}

body.home .home-locations__list li:not(:last-child)::after {
  content: "•";
  margin: 0 0.5rem;
  color: rgba(94, 92, 87, 0.45);
  font-weight: 400;
  pointer-events: none;
}

body.home .home-locations__list a {
  color: var(--estate-ink);
  text-decoration: none;
}

body.home .home-locations__list a:hover {
  color: var(--estate-green);
}

/* Statement copy overlays before/after photo (top gradient scrim) */
body.home .home-ba__statement-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
  padding: clamp(2.25rem, 6vw, 4rem) 0 clamp(2.75rem, 7vw, 4.5rem);
  background: linear-gradient(
    180deg,
    rgba(12, 11, 10, 0.92) 0%,
    rgba(18, 17, 15, 0.72) 35%,
    rgba(22, 21, 18, 0.35) 62%,
    transparent 100%
  );
}

body.home .home-statement__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.25rem;
  pointer-events: auto;
}

body.home .home-statement__rule {
  width: 3rem;
  height: 1px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    90deg,
    transparent,
    var(--estate-gold) 20%,
    var(--estate-gold) 80%,
    transparent
  );
}

body.home .home-statement__title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: #faf7f2;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
}

body.home .home-statement__text {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(242, 237, 228, 0.9);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.3);
}

/* Before / after feature */
body.home .home-ba {
  background: var(--estate-cream);
  border-top: 1px solid var(--estate-line);
}

body.home .home-ba__heading-block {
  padding: clamp(2rem, 5vw, 2.75rem) 0 clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
  border-bottom: 1px solid var(--estate-line);
  background: var(--estate-cream);
}

body.home .home-ba__section-heading {
  margin: 0 auto;
  max-width: 38rem;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--estate-ink);
}

body.home .home-ba__frame {
  position: relative;
  isolation: isolate;
  max-width: 100%;
  margin: 0 auto;
}

body.home .home-ba__frame img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

body.home .home-ba__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: 1px;
  margin-left: -0.5px;
  background: linear-gradient(
    transparent 8%,
    rgba(247, 244, 238, 0.45) 25%,
    rgba(247, 244, 238, 0.45) 75%,
    transparent 92%
  );
  pointer-events: none;
}

body.home .home-ba__labels {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.75rem);
  background: linear-gradient(
    to top,
    rgba(28, 27, 25, 0.75) 0%,
    rgba(28, 27, 25, 0.2) 55%,
    transparent 100%
  );
  pointer-events: none;
}

body.home .home-ba__label {
  margin: 0;
  max-width: 46%;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.45;
  color: rgba(247, 244, 238, 0.95);
}

body.home .home-ba__label-kicker {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--estate-gold);
  letter-spacing: 0.16em;
}

@media (max-width: 560px) {
  body.home .home-ba__labels {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    background: #222220;
    max-width: 100%;
  }

  body.home .home-ba__label {
    max-width: 100%;
  }

  body.home .home-ba__divider {
    display: none;
  }
}

/* Services: editorial columns */
body.home .home-services {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  border-top: 1px solid var(--estate-line);
  background: var(--estate-cream);
}

body.home .home-services__heading {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--estate-ink);
}

body.home .home-services__intro {
  margin: 0 0 2.25rem;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--estate-muted);
}

body.home .home-services__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  body.home .home-services__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 1000px) {
  body.home .home-services__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

body.home .home-services__list > li {
  position: relative;
  margin: 0;
  padding: 1.45rem 1.35rem 1.55rem;
  border: 1px solid var(--estate-line);
  border-radius: 6px;
  background: linear-gradient(
    165deg,
    #ffffff 0%,
    var(--estate-cream-deep) 55%,
    var(--estate-cream) 100%
  );
  box-shadow:
    0 2px 6px rgba(28, 27, 25, 0.04),
    0 12px 32px rgba(28, 27, 25, 0.06);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease,
    border-color 0.28s ease,
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: no-preference) {
  body.home .home-services__list > li:hover,
  body.home .home-services__list > li:focus-within {
    transform: translateY(-6px);
    box-shadow:
      0 6px 20px rgba(28, 27, 25, 0.09),
      0 22px 56px rgba(28, 27, 25, 0.11);
    border-color: rgba(196, 163, 90, 0.42);
  }
}

body.home .home-services__list h3 {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

body.home .home-services__list h3 a {
  color: var(--estate-ink);
  text-decoration: none;
}

body.home .home-services__list h3 a:hover {
  color: var(--estate-green);
}

body.home .home-services__list p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--estate-muted);
}

body.home .home-services__link {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--estate-green);
  transition: color 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home .home-services__link::after {
  content: " →";
  font-weight: 400;
  opacity: 0.85;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: no-preference) {
  body.home .home-services__list > li:hover .home-services__link {
    transform: translateX(3px);
    color: var(--estate-green-hover);
  }

  body.home .home-services__list > li:hover .home-services__link::after {
    transform: translateX(4px);
  }
}

body.home .home-services__link:hover {
  color: var(--estate-green-hover);
}

/* Process: four steps */
body.home .home-process {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: var(--estate-cream-deep);
  border-top: 1px solid var(--estate-line);
}

body.home .home-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 800px) {
  body.home .home-process__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

body.home .home-process__steps > li {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--estate-line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 800px) {
  body.home .home-process__steps > li {
    border-bottom: none;
    border-right: 1px solid var(--estate-line);
    padding: 1rem 1.25rem;
    min-height: 5.5rem;
  }

  body.home .home-process__steps > li:last-child {
    border-right: none;
  }
}

body.home .home-process__num {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--estate-gold);
}

body.home .home-process__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--estate-ink);
  line-height: 1.35;
}

/* Fit / not fit */
body.home .home-fit {
  padding: clamp(3rem, 6vw, 4rem) 0;
  background: var(--estate-cream);
  border-top: 1px solid var(--estate-line);
}

body.home .home-fit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--estate-line);
}

@media (min-width: 720px) {
  body.home .home-fit__grid {
    grid-template-columns: 1fr 1fr;
  }
}

body.home .home-fit__panel {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--estate-cream);
}

@media (min-width: 720px) {
  body.home .home-fit__panel:first-child {
    border-right: 1px solid var(--estate-line);
  }
}

body.home .home-fit__panel--muted {
  background: var(--estate-cream-deep);
}

body.home .home-fit__title {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--estate-muted);
}

body.home .home-fit__panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.home .home-fit__panel li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--estate-ink);
}

body.home .home-fit__panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--estate-gold);
  opacity: 0.85;
}

/* Final CTA */
body.home .home-final-cta {
  padding: clamp(3.5rem, 9vw, 5.5rem) 0;
  border-top: 1px solid var(--estate-line);
  background: linear-gradient(180deg, var(--estate-cream-deep) 0%, var(--estate-cream) 100%);
  text-align: center;
}

body.home .home-final-cta__inner {
  max-width: 36rem;
  margin: 0 auto;
}

body.home .home-final-cta h2 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--estate-ink);
}

body.home .home-final-cta p {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--estate-muted);
}

body.home .home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
}

body.home .site-footer--estate {
  border-top: 1px solid rgba(196, 163, 90, 0.35);
}

body.home .site-footer__brand {
  color: #e8e4dc;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

body.home .site-footer__tag {
  margin: 0.5rem 0 0;
  color: #9a9a93;
  font-size: 0.875rem;
}

body.home .site-footer__head {
  color: #e8e4dc;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.home .site-footer__links {
  margin: 0.5rem 0 0;
  line-height: 1.65;
}

body.home .site-footer__links a {
  color: #a8b5aa;
}

body.home .site-footer__links a:hover {
  color: var(--estate-gold);
}

/* Homepage motion: hero load sequence + scroll reveals + parallax */
@media (prefers-reduced-motion: no-preference) {
  @keyframes home-drop-in {
    from {
      opacity: 0;
      transform: translateY(1.35rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes home-headline-weight {
    from {
      font-weight: 420;
    }
    to {
      font-weight: 620;
    }
  }

  body.home .home-hero__motion-el {
    opacity: 0;
    animation: home-drop-in 0.88s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  body.home .home-hero__motion-el--1 {
    animation-delay: 0.08s;
  }

  body.home .home-hero__motion-el--2 {
    animation-delay: 0.16s;
    animation-duration: 0.95s;
  }

  body.home .home-hero__motion-el--3 {
    animation-delay: 0.28s;
  }

  body.home .home-hero__motion-el--4 {
    animation-delay: 0.36s;
  }

  body.home .home-hero__motion-el--5 {
    animation-delay: 0.48s;
  }

  body.home .home-hero__motion-el--emph {
    font-weight: 420;
    animation-name: home-drop-in, home-headline-weight;
    animation-duration: 0.95s, 1.05s;
    animation-delay: 0.16s, 0.2s;
    animation-fill-mode: forwards, forwards;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), ease-out;
  }

  body.home .home-locations__motion {
    opacity: 0;
    transform: translateY(0.75rem);
    animation: home-drop-in 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
  }

  html.home-motion body.home main [data-home-reveal],
  html.home-motion body.home .home-path-split [data-home-reveal] {
    transition: opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
      font-weight 0.72s ease-out;
  }

  html.home-motion body.home main [data-home-reveal]:not(.home-reveal--in),
  html.home-motion body.home .home-path-split [data-home-reveal]:not(.home-reveal--in) {
    opacity: 0;
    transform: translateY(1.35rem);
  }

  html.home-motion body.home main [data-reveal-emphasize]:not(.home-reveal--in) {
    font-weight: 400;
  }

  html.home-motion body.home main [data-reveal-emphasize].home-reveal--in {
    font-weight: 640;
  }

  html.home-motion body.home main [data-home-stagger] > li,
  html.home-motion body.home main [data-home-stagger] > .home-fit__panel {
    opacity: 0;
    transform: translateY(1.2rem);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  html.home-motion body.home main [data-home-stagger].home-stagger--in > li,
  html.home-motion body.home main [data-home-stagger].home-stagger--in > .home-fit__panel {
    opacity: 1;
    transform: translateY(0);
  }

  html.home-motion body.home main [data-home-stagger].home-stagger--in > li:nth-child(1) {
    transition-delay: 0ms;
  }

  html.home-motion body.home main [data-home-stagger].home-stagger--in > li:nth-child(2) {
    transition-delay: 55ms;
  }

  html.home-motion body.home main [data-home-stagger].home-stagger--in > li:nth-child(3) {
    transition-delay: 110ms;
  }

  html.home-motion body.home main [data-home-stagger].home-stagger--in > li:nth-child(4) {
    transition-delay: 165ms;
  }

  html.home-motion body.home main [data-home-stagger].home-stagger--in > li:nth-child(5) {
    transition-delay: 220ms;
  }

  html.home-motion body.home main [data-home-stagger].home-stagger--in > li:nth-child(6) {
    transition-delay: 275ms;
  }

  html.home-motion body.home main [data-home-stagger].home-stagger--in > li:nth-child(7) {
    transition-delay: 330ms;
  }

  html.home-motion body.home main [data-home-stagger].home-stagger--in > li:nth-child(8) {
    transition-delay: 385ms;
  }

  html.home-motion body.home main [data-home-stagger].home-stagger--in > .home-fit__panel:nth-child(1) {
    transition-delay: 0ms;
  }

  html.home-motion body.home main [data-home-stagger].home-stagger--in > .home-fit__panel:nth-child(2) {
    transition-delay: 100ms;
  }

  /* Programs grid: stronger scroll-in + keeps card hover transitions */
  html.home-motion body.home main .home-services .home-services__list[data-home-stagger] > li {
    transition: opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.38s ease,
      border-color 0.28s ease;
  }

  html.home-motion
    body.home
    main
    .home-services
    .home-services__list[data-home-stagger]:not(.home-stagger--in)
    > li {
    opacity: 0;
    transform: translateY(2.35rem) scale(0.94);
  }

  html.home-motion body.home main .home-services .home-services__list.home-stagger--in > li {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  body.home .home-ba__frame:has(img[data-home-parallax]) {
    overflow: hidden;
  }

  body.home .home-ba__frame img[data-home-parallax] {
    display: block;
    width: 100%;
    height: auto;
    will-change: transform;
  }

  body.home .home-statement__inner[data-home-parallax-float] {
    will-change: transform;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home .home-hero__motion-el,
  body.home .home-locations__motion {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  body.home .home-hero__motion-el--emph {
    font-weight: 500 !important;
  }

  body.home .home-ba__frame img[data-home-parallax] {
    transform: none !important;
  }

  body.home .home-statement__inner[data-home-parallax-float] {
    transform: none !important;
  }

  body.home .home-services__list > li:hover,
  body.home .home-services__list > li:focus-within {
    transform: none !important;
  }

  body.home .home-services__list > li:hover .home-services__link,
  body.home .home-services__list > li:hover .home-services__link::after {
    transform: none !important;
  }
}
