:root {
  --paper: #f5f3ed;
  --paper-2: #ebe6dc;
  --ink: #252525;
  --ink-soft: #4a463f;
  --forest: #0b4a2d;
  --forest-2: #083822;
  --leaf: #5a9637;
  --burgundy: #8a0e2b;
  --burgundy-2: #6d0b22;
  --line: #ddd6c8;
  --white: #fffcf7;
  --shadow: 0 18px 40px rgba(37, 37, 37, 0.08);
  --logo-size: 6.75rem;
  --header: 7.6rem;
  --sticky: 4.25rem;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.has-sticky { padding-bottom: calc(var(--sticky) + env(safe-area-inset-bottom)); }

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

a { color: inherit; }

p { margin: 0 0 1rem; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 0.6rem;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 0.9rem;
  z-index: 20;
}

.skip:focus { top: 0.6rem; }

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lede {
  color: var(--ink-soft);
  font-size: 1.12rem;
  max-width: 38rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(245, 243, 237, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.logo img {
  width: var(--logo-size);
  height: var(--logo-size);
  background: #fff;
  border-radius: 50%;
}

.nav-toggle {
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 650;
  cursor: pointer;
}

.nav-toggle:hover { border-color: var(--forest); color: var(--forest); }

.nav-toggle:focus-visible,
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 3px;
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 0.4rem 1rem 1rem;
}

.site-nav.is-open {
  display: block;
  box-shadow: 0 18px 36px rgba(37, 37, 37, 0.08);
}

.site-nav a {
  display: block;
  text-decoration: none;
  padding: 0.72rem 0.2rem;
  border-bottom: 1px solid var(--line);
  font-weight: 550;
}

.site-nav a[aria-current="page"] { color: var(--burgundy); }

.header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 650;
}

.btn-solid {
  background: var(--burgundy);
  color: white;
}

.btn-solid:hover { background: var(--burgundy-2); }

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn-ghost:hover { background: rgba(11, 74, 45, 0.06); }

.btn-light {
  background: var(--white);
  color: var(--forest);
}

body:has(.hero) .site-header { border-bottom: 0; }

.hero {
  display: grid;
  gap: 1.4rem;
  padding: 0.85rem 0 2.2rem;
}

.hero::before {
  content: "";
  grid-column: 1 / -1;
  height: 1px;
  margin: 0.15rem 0 0.85rem;
  background: var(--burgundy);
}

.hero-copy h1 {
  font-size: clamp(2.45rem, 7vw, 4.35rem);
  max-width: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.2rem 0 1rem;
}

.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.fact-row li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.fact-row li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--leaf);
}

.hero-photo {
  margin: 0;
  position: relative;
}

.hero-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

.hero-photo figcaption {
  position: absolute;
  left: 0.95rem;
  bottom: 0.95rem;
  z-index: 2;
  background: var(--forest);
  color: var(--white);
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.section { padding: 2.4rem 0; }

.section h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  max-width: none;
}

.service-index {
  display: grid;
  border-top: 1px solid var(--ink);
}

.service-index a {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr) auto;
  gap: 0.2rem 0.9rem;
  align-items: start;
  text-decoration: none;
  padding: 1.05rem 0.2rem;
  border-bottom: 1px solid var(--line);
}

.service-index .num {
  color: var(--burgundy);
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  font-size: 0.92rem;
  padding-top: 0.28rem;
}

.service-index strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 620;
}

.service-index span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.service-index em {
  align-self: center;
  font-style: normal;
  color: var(--forest);
  font-weight: 650;
  white-space: nowrap;
}

.mosaic {
  display: grid;
  gap: 0.7rem;
  align-items: start;
}

.mosaic figure { margin: 0; }

.mosaic img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0.8rem;
}

.mosaic figcaption {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.band {
  background: var(--forest);
  color: var(--white);
}

.band .kicker { color: #e7c2cb; }

.band .lede { color: rgba(255, 252, 247, 0.82); }

.split {
  display: grid;
  gap: 1.4rem;
}

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

.why-list li {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 252, 247, 0.18);
}

.why-list strong { display: block; font-size: 1.05rem; }

.reviews {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem 1.15rem;
  box-shadow: 0 10px 28px rgba(37, 37, 37, 0.04);
}

.reviews a {
  color: var(--forest);
  font-weight: 650;
  text-underline-offset: 0.18em;
}

.reviews a:hover { color: var(--burgundy); }

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

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

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

.faq details p { margin: 0.7rem 0 0.2rem; color: var(--ink-soft); }

.page-hero {
  padding: 1.1rem 0 0.4rem;
}

.page-hero::before {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 1.15rem;
  background: var(--burgundy);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: none;
}

.prose { max-width: 42rem; }

.photo-block {
  margin: 1.2rem 0 0;
}

.photo-block img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 1rem;
}

.photo-block figcaption {
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.cta-panel {
  background: var(--white);
  border-radius: 1.1rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.cta-panel .phone {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--forest);
}

.form {
  display: grid;
  gap: 0.85rem;
}

label { display: grid; gap: 0.35rem; font-weight: 620; font-size: 0.95rem; }

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 0.7rem;
  padding: 0.75rem 0.85rem;
  font: inherit;
}

input::placeholder,
textarea::placeholder { color: #8a847a; }

select {
  appearance: none;
  padding-right: 2.2rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--forest) 50%),
    linear-gradient(135deg, var(--forest) 50%, transparent 50%);
  background-position: calc(100% - 1.15rem) 1.15rem, calc(100% - 0.75rem) 1.15rem;
  background-size: 0.4rem 0.4rem, 0.4rem 0.4rem;
  background-repeat: no-repeat;
}

input[type="file"] {
  padding: 0.55rem 0.65rem;
  font-size: 0.92rem;
}

textarea { min-height: 8rem; resize: vertical; }

.form-note { color: var(--ink-soft); font-size: 0.92rem; }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.gallery-filters button {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 650;
  cursor: pointer;
}

.gallery-filters button:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.gallery-filters button[aria-pressed="true"],
.gallery-filters button[aria-pressed="true"]:hover {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}

.gallery-grid {
  display: grid;
  gap: 0.7rem;
  align-items: start;
}

.gallery-grid figure { margin: 0; }

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0.75rem;
  cursor: zoom-in;
}

.gallery-grid figcaption {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 14, 0.92);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(100%, 900px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 0.4rem;
}

.lightbox button {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: white;
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.coverage-section {
  background: var(--paper-2);
}

.coverage-layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.coverage-map {
  margin: 0;
  max-width: 36rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.coverage-frame {
  position: relative;
  background: #d9d3c6;
}

.coverage-frame img,
.coverage-overlay {
  display: block;
  width: 100%;
  height: auto;
}

.coverage-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  pointer-events: none;
}

.coverage-map .town-glow,
.coverage-map .town-dot {
  transform-box: fill-box;
  transform-origin: center;
}

.coverage-map .town-dot,
.coverage-map .town-label {
  animation: town-blink 2.6s ease-in-out infinite;
}

.coverage-map .town-glow {
  animation: town-glow 2.6s ease-in-out infinite;
}

.coverage-map .town-label.is-home {
  font-family: "Source Serif 4", Georgia, serif;
}

@keyframes town-blink {
  0%,
  100% { opacity: 0.32; }
  50% { opacity: 1; }
}

@keyframes town-glow {
  0%,
  100% { opacity: 0.05; }
  50% { opacity: 0.38; }
}

.coverage-map figcaption {
  margin: 0;
  padding: 0.8rem 1rem 1rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.town-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.town-grid li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.75rem 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: baseline;
}

.town-grid span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  white-space: nowrap;
}

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

.area-list li {
  background: var(--white);
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
}

.site-footer {
  background: var(--forest-2);
  color: rgba(255, 252, 247, 0.88);
  padding: 2.2rem 0 1.2rem;
  margin-top: 1rem;
}

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

.site-footer a {
  color: white;
  text-underline-offset: 0.16em;
}

.site-footer a:hover { color: #f3e6ea; }

.site-footer h2 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 650;
  color: #e7c2cb;
}

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

.site-footer li { margin: 0.35rem 0; }

.footer-logo {
  width: var(--logo-size);
  height: var(--logo-size);
  background: #fff;
  border-radius: 50%;
}

.legal {
  margin-top: 1.5rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 252, 247, 0.16);
  font-size: 0.86rem;
  line-height: 1.5;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--forest-2);
  border-top: 1px solid rgba(255, 252, 247, 0.12);
  box-shadow: 0 -12px 28px rgba(8, 20, 14, 0.16);
  padding-bottom: env(safe-area-inset-bottom);
}

.sticky-cta a {
  color: white;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.01em;
  min-height: var(--sticky);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0.5rem;
}

.sticky-cta a + a {
  background: var(--burgundy);
  box-shadow: inset 1px 0 0 rgba(255, 252, 247, 0.16);
}

.sticky-cta a:active { filter: brightness(1.12); }

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.related a {
  text-decoration: none;
  border-bottom: 1px solid var(--burgundy);
  font-weight: 650;
}

.related a:hover { color: var(--burgundy); }

.mosaic + p { margin: 1.05rem 0 0; }

.mosaic figcaption,
.gallery-grid figcaption { line-height: 1.4; }

.split:has(.estimate-form) .cta-panel .btn { display: none; }

.split:has(.estimate-form) .cta-panel p:last-child { margin-bottom: 0; }

body:has(.estimate-form) .page-hero .btn-ghost { display: none; }

@media (min-width: 640px) {
  .town-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 759px) {
  .lede { font-size: 1.05rem; }

  .hero {
    gap: 1.05rem;
    padding: 0.15rem 0 1.6rem;
  }

  .hero::before { order: -2; }

  .hero-photo { order: -1; }

  .hero-photo img { height: auto; }

  .hero-actions { margin: 1rem 0 0.8rem; }

  .section { padding: 2.15rem 0; }

  .service-index a { padding-inline: 0; }
}

@media (min-width: 760px) {
  .nav-toggle { margin-left: 0; }

  .header-cta {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
  }

  .header-cta .btn { min-height: 2.6rem; padding: 0.45rem 0.9rem; font-size: 0.92rem; }

  .hero-copy h1 { max-width: 12ch; }

  .section h2 { max-width: 16ch; }

  .page-hero h1 { max-width: 20ch; }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
    gap: 2.25rem;
    padding-top: 1.15rem;
  }

  .section { padding: 3rem 0; }

  .mosaic,
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .mosaic img,
  .gallery-grid img { height: auto; }

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

  .band .why-list { padding-top: 2.15rem; }

  .estimate-form {
    grid-template-columns: 1fr 1fr;
    column-gap: 0.85rem;
  }

  .estimate-form > :nth-child(n + 5) { grid-column: 1 / -1; }

  .coverage-layout { grid-template-columns: 0.82fr 1.18fr; }

  .town-grid { grid-template-columns: 1fr 1fr 1fr; }

  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }

  .sticky-cta { display: none; }

  body.has-sticky { padding-bottom: 0; }
}

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

  .site-nav {
    display: flex;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    gap: 0.15rem 1.05rem;
    margin-left: auto;
    align-items: center;
    box-shadow: none;
  }

  .site-nav a {
    border: 0;
    padding: 0.3rem 0;
  }

  .site-nav a:hover { color: var(--forest); }

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

  .header-cta { margin-left: 0.75rem; }
}

@media (min-width: 1280px) {
  .wrap { width: min(1160px, calc(100% - 3.5rem)); }
}

@media (min-width: 980px) {
  .gallery-grid { grid-template-columns: 1fr 1fr 1fr; }
  .gallery-grid img { height: auto; }
  .mosaic { grid-template-columns: 1.15fr 0.85fr 0.85fr; }
  .town-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 45;
  width: 100%;
  height: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  background: var(--burgundy);
  pointer-events: none;
}

.site-header {
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(245, 243, 237, 0.98);
  box-shadow: 0 12px 32px rgba(37, 37, 37, 0.08);
}

.site-nav a,
.btn,
.service-index a,
.gallery-filters button,
input,
select,
textarea,
.town-grid li,
.cta-panel {
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.service-index a { position: relative; }

.service-index a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: var(--burgundy);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.service-index a:hover,
.service-index a:focus-visible {
  background: rgba(11, 74, 45, 0.035);
}

.service-index a:hover::before,
.service-index a:focus-visible::before { transform: scaleY(1); }

.service-index em::after {
  content: " →";
  display: inline-block;
  transition: transform 0.25s ease;
}

.service-index a:hover em::after,
.service-index a:focus-visible em::after { transform: translateX(4px); }

.media-frame {
  overflow: hidden;
  border-radius: 0.8rem;
}

.hero-photo .media-frame {
  position: relative;
  border-radius: 1.2rem 1.2rem 0.3rem 1.2rem;
  box-shadow: 0 24px 48px rgba(11, 74, 45, 0.16);
}

.mosaic .media-frame,
.gallery-grid .media-frame,
.photo-block .media-frame {
  box-shadow: 0 16px 34px rgba(37, 37, 37, 0.1);
}

.hero-photo .media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 2px solid var(--forest);
  border-radius: inherit;
  pointer-events: none;
}

.media-frame img { transition: transform 0.7s ease; }

.mosaic figure:hover .media-frame img,
.gallery-grid figure:hover .media-frame img,
.photo-block:hover .media-frame img { transform: none; }

html.motion .gallery-grid figure.is-out {
  opacity: 0;
  transform: translateY(10px);
}

html.motion .gallery-grid figure.reveal {
  transition-duration: 0.32s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(11, 74, 45, 0.12);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--burgundy);
  border-bottom: 2px solid var(--burgundy);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}

.faq details[open] summary::after { transform: rotate(225deg) translateY(-2px); }

.confirm-mark {
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 0.8rem;
}

.confirm-mark svg {
  width: 100%;
  height: 100%;
}

.confirm-mark circle,
.confirm-mark path {
  fill: none;
  stroke: var(--forest);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html.motion .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), letter-spacing 0.7s ease, box-shadow 0.7s ease;
  transition-delay: calc(var(--d, 0) * 60ms);
}

html.motion .reveal.is-in {
  opacity: 1;
  transform: none;
}

html.motion .kicker.reveal { letter-spacing: 0.32em; }
html.motion .kicker.reveal.is-in { letter-spacing: 0.16em; }

html.motion .btn.reveal.is-in:hover { transform: translateY(-2px); }

html.motion .town-grid li.reveal.is-in:hover { transform: translateY(-3px); }

html.motion .fact-row li.reveal.is-in::before {
  animation: dot-in 0.45s ease both;
}

@keyframes dot-in {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

html.motion .prose > p:first-child {
  padding-left: 0.85rem;
  box-shadow: inset 3px 0 0 transparent;
}

html.motion .prose > p.reveal.is-in:first-child {
  box-shadow: inset 3px 0 0 var(--leaf);
}

html.motion .hero-photo.is-in .media-frame img {
  animation: photo-settle 1.05s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes photo-settle {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

html.motion .sticky-cta {
  animation: cta-rise 0.55s 0.25s both;
}

@keyframes cta-rise {
  from { transform: translateY(100%); }
  to { transform: none; }
}

html.motion .confirm-mark circle {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: draw-ring 0.7s ease forwards;
}

html.motion .confirm-mark path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: draw-ring 0.4s 0.45s ease forwards;
}

@keyframes draw-ring {
  to { stroke-dashoffset: 0; }
}

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

  .coverage-map .town-glow,
  .coverage-map .town-dot,
  .coverage-map .town-label,
  .confirm-mark circle,
  .confirm-mark path,
  .sticky-cta,
  .hero-photo .media-frame img {
    animation: none;
  }

  .coverage-map .town-dot,
  .coverage-map .town-label { opacity: 1; }
  .coverage-map .town-glow { opacity: 0.22; }

  .scroll-progress,
  .btn,
  .service-index a,
  .service-index a::before,
  .service-index em::after,
  .media-frame img,
  .lightbox,
  .site-header,
  .faq summary::after {
    transition: none;
  }

  .btn:hover { transform: none; }
}
