:root {
  --forest: #052911;
  --mid: #215621;
  --gold: #e9b319;
  --paper: #fcfcfb;
  --ink: #222222;
  --muted: #4a564c;
  --line: rgba(5, 41, 17, 0.14);
  --logo: 108px;
  --header: 124px;
  --serif: "Fraunces", "Iowan Old Style", Palatino, Georgia, serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
}

* { 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;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--gold);
  color: var(--forest);
  padding: 8px 12px;
  z-index: 80;
}
.skip:focus { top: 12px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 3px solid var(--gold);
}
.header-inner {
  width: min(1240px, calc(100% - 24px));
  margin: 0 auto;
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: block;
  flex: 0 0 auto;
}
.logo img { height: var(--logo); width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 2px;
  transition: color 0.2s ease;
}
.nav a:not(.call-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}
.nav a:not(.call-btn):hover,
.nav a:not(.call-btn):focus-visible {
  color: var(--mid);
}
.nav a:not(.call-btn):hover::after,
.nav a:not(.call-btn):focus-visible::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.nav a:not(.call-btn):active {
  color: var(--forest);
}
.nav-toggle {
  display: none;
  margin-left: auto;
  background: var(--gold);
  color: var(--forest);
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
}
.call-btn, .gold-btn, .ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  border: 2px solid transparent;
}
.call-btn, .gold-btn, .ghost-btn, .forest-btn, .nav-toggle {
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}
.call-btn, .gold-btn {
  background: var(--gold);
  color: var(--forest);
}
.call-btn:hover, .gold-btn:hover, .forest-btn:hover, .nav-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(5, 41, 17, 0.18);
}
.call-btn:active, .gold-btn:active, .ghost-btn:active, .forest-btn:active, .nav-toggle:active {
  transform: translateY(0) scale(0.97);
}
.ghost-btn:hover {
  background: rgba(252, 252, 251, 0.12);
}
.ghost-btn.dark:hover {
  background: rgba(5, 41, 17, 0.06);
}
.ghost-btn {
  background: transparent;
  color: var(--paper);
  border-color: rgba(252, 252, 251, 0.7);
}
.ghost-btn.dark {
  color: var(--forest);
  border-color: var(--forest);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(100vh - var(--header));
  min-height: calc(100svh - var(--header));
  background: var(--forest);
}
.hero-photo {
  position: relative;
  min-height: 420px;
  background: #12331c center 18% / cover no-repeat;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, rgba(5, 41, 17, 0.35) 82%, var(--forest) 100%);
  pointer-events: none;
}
.hero-copy {
  color: var(--paper);
  padding: 56px 40px 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 14px;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 560; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 4.6vw, 4.3rem); line-height: 0.98; margin: 0 0 16px; }
h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1.05; margin: 0 0 12px; }
h3 { font-size: 1.45rem; line-height: 1.15; margin: 0 0 8px; }
.lede { font-size: 1.15rem; margin: 0 0 22px; max-width: 38rem; }
.hero-actions, .cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.fine {
  margin: 18px 0 0;
  color: rgba(252, 252, 251, 0.78);
  font-size: 0.95rem;
}

.section { padding: 72px 0; }
.section-head { max-width: 40rem; margin-bottom: 28px; }
.section-head p { color: var(--muted); margin: 0; }

.service-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  counter-reset: job;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  color: var(--paper);
  text-decoration: none;
  overflow: hidden;
  background: var(--forest);
  border-radius: 18px;
  counter-increment: job;
}
.service-card.feature { grid-row: 1 / span 2; min-height: 560px; }
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.45s ease;
}
.service-card:hover img,
.service-card:focus-visible img {
  transform: scale(1.05);
}
.service-card span {
  position: relative;
  margin-top: auto;
  padding: 22px 18px 18px;
  background: linear-gradient(transparent, rgba(5, 41, 17, 0.92) 42%);
}
.service-card strong { display: block; font-family: var(--serif); font-size: 1.7rem; font-weight: 560; }
.service-card em { font-style: normal; color: var(--gold); font-size: 0.92rem; }
.service-card em::before {
  content: counter(job, decimal-leading-zero) / "";
  display: block;
  margin-bottom: 6px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--forest);
  color: var(--paper);
}
.split img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.split-copy { padding: 56px 40px; display: flex; flex-direction: column; justify-content: center; }
.split-copy p { color: rgba(252, 252, 251, 0.86); }

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mosaic img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.45s ease; }
.mosaic a { display: block; overflow: hidden; aspect-ratio: 3 / 4; border-radius: 16px; }
.mosaic a:hover img,
.mosaic a:focus-visible img { transform: scale(1.05); }

.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.reason { border-top: 2px solid var(--gold); padding-top: 14px; }
.reason p { color: var(--muted); margin: 0; }

.reviews {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  background: white;
}
.reviews h2 { margin-bottom: 8px; }
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 18px;
}
.review-grid blockquote { margin: 0; }
.review-grid blockquote::before {
  content: "“" / "";
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 0.7;
  color: var(--gold);
  margin: 0 0 10px;
}
.review-grid p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.4;
}
.review-grid footer {
  margin-top: 14px;
  font-weight: 600;
  color: var(--forest);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: translateY(2px) rotate(225deg); }
.faq details p { color: var(--muted); margin: 10px 0 0; }
.faq-block { padding-top: 0; }

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.related a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}
.related a:hover,
.related a:focus-visible {
  background: rgba(233, 179, 25, 0.22);
  border-color: var(--gold);
}

.area-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.area-copy h2 { margin-top: 0; }
.area-copy p { color: var(--muted); }
.area-map { margin: 0; }
.area-map-stage {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #e2e8de;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(5, 41, 17, 0.12);
  container-type: inline-size;
}
.area-map-stage img { display: block; width: 100%; height: auto; }
.area-fx { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.area-fx-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5, 41, 17, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 41, 17, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 78%);
}
.area-fx-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 58%, rgba(5, 41, 17, 0.08) 100%);
}
.area-marks { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3; overflow: visible; }
.area-label {
  position: absolute;
  z-index: 4;
  margin: 0;
  transform: translate(12px, -50%);
  color: var(--forest);
  font-weight: 700;
  font-size: clamp(11px, 2.15cqi, 16px);
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 0 6px #e2e8de, 0 1px 0 #fff, 0 0 2px #fff;
  pointer-events: none;
}
.area-label.is-end { transform: translate(calc(-100% - 12px), -50%); }
.area-label.is-above { transform: translate(-50%, calc(-100% - 8px)); }
.area-label.is-below { transform: translate(-50%, 10px); }
.area-label.is-above-start { transform: translate(6px, calc(-100% - 6px)); }
.area-label.is-above-end { transform: translate(calc(-100% - 6px), calc(-100% - 6px)); }
.area-label.is-below-start { transform: translate(6px, 8px); }
.area-label.is-below-end { transform: translate(calc(-100% - 6px), 8px); }
.area-label.is-home {
  font-family: var(--serif);
  font-size: clamp(14px, 2.8cqi, 22px);
  letter-spacing: 0.01em;
}
.area-label.is-town {
  font-size: clamp(10px, 2.15cqi, 15px);
  font-weight: 700;
}
.area-label.is-lake {
  transform: translate(-50%, -50%);
  color: #1a4654;
  font-size: clamp(11px, 2cqi, 16px);
  letter-spacing: 0.04em;
}
.area-label.is-state {
  top: 0.85rem;
  left: 0.9rem;
  transform: none;
  color: rgba(5, 41, 17, 0.45);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(10px, 1.7cqi, 13px);
}
.hwy {
  position: absolute;
  z-index: 4;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  pointer-events: none;
  font-weight: 800;
  line-height: 1;
}
.hwy-i {
  min-width: 1.7rem;
  height: 1.7rem;
  padding: 0.38rem 0.28rem 0;
  color: #fff;
  font-size: 0.68rem;
  background:
    linear-gradient(#c4121a, #c4121a) top / 100% 0.4rem no-repeat,
    #163a86;
  border-radius: 2px 2px 9px 9px;
  box-shadow: 0 0 0 1.5px #fff;
}
.hwy-us {
  min-width: 1.85rem;
  height: 1.45rem;
  padding: 0 0.22rem;
  color: var(--ink);
  font-size: 0.62rem;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 40%;
  box-shadow: 0 1px 2px rgba(5, 41, 17, 0.18);
}
.hwy-nc {
  min-width: 1.45rem;
  height: 1.15rem;
  padding: 0 0.24rem;
  color: var(--forest);
  font-size: 0.62rem;
  background: #fff;
  border: 1.5px solid var(--forest);
  border-radius: 2px;
}
.area-dot {
  fill: var(--gold);
  stroke: var(--forest);
  stroke-width: 3;
  animation: area-blink 2.8s ease-in-out infinite;
}
.area-glows { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.area-glow {
  position: absolute;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(233, 179, 25, 0.95) 16%, rgba(233, 179, 25, 0.45) 42%, transparent 68%);
  animation: area-blink 2.8s ease-in-out infinite;
}
.area-glow:nth-child(2) { animation-delay: 0.45s; }
.area-glow:nth-child(3) { animation-delay: 0.9s; }
.area-glow:nth-child(4) { animation-delay: 1.35s; }
.area-glow:nth-child(5) { animation-delay: 1.8s; }
.area-glow:nth-child(6) { animation-delay: 0.25s; }
.area-glow:nth-child(7) { animation-delay: 1.1s; }
.area-glow:nth-child(8) { animation-delay: 1.6s; }
.area-glow:nth-child(9) { animation-delay: 0.7s; }
.area-glow:nth-child(10) { animation-delay: 2s; }
.area-glow:nth-child(11) { animation-delay: 1.25s; }
.area-glow:nth-child(12) { animation-delay: 0.55s; }
@keyframes area-blink {
  0%, 100% { opacity: 0.35; }
  46% { opacity: 1; }
  62% { opacity: 0.45; }
}
.area-frame { position: absolute; inset: 0; pointer-events: none; z-index: 5; }
.area-frame span {
  position: absolute;
  width: 1.15rem;
  height: 1.15rem;
  border-color: var(--forest);
  border-style: solid;
}
.area-frame .is-tl { top: 0.55rem; left: 0.55rem; border-width: 2px 0 0 2px; }
.area-frame .is-tr { top: 0.55rem; right: 0.55rem; border-width: 2px 2px 0 0; }
.area-frame .is-bl { bottom: 0.55rem; left: 0.55rem; border-width: 0 0 2px 2px; }
.area-frame .is-br { bottom: 0.55rem; right: 0.55rem; border-width: 0 2px 2px 0; }
.area-chip {
  position: absolute;
  z-index: 5;
  top: 0.7rem;
  right: 0.7rem;
  color: var(--forest);
  border: 1px solid var(--gold);
  background: rgba(252, 252, 251, 0.92);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.28rem 0.5rem;
}
.area-map figcaption {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.town-list li {
  background: rgba(233, 179, 25, 0.2);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.92rem;
  font-weight: 600;
}
.town-list li.is-home {
  background: var(--forest);
  color: var(--gold);
}

.emergency {
  background: var(--gold);
  color: var(--forest);
  padding: 36px 0 48px;
}
.emergency .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.emergency h2 { margin: 0 0 6px; }
.emergency p { margin: 0; }
.forest-btn {
  background: var(--forest);
  color: var(--paper);
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 600;
  white-space: nowrap;
}

.page-hero {
  background: var(--forest);
  color: var(--paper);
  padding: 54px 0 42px;
}
.page-hero p { max-width: 40rem; color: rgba(252, 252, 251, 0.86); }

.prose { max-width: 42rem; }
.prose p { color: var(--muted); }
.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: 36px;
  align-items: start;
}
.about-layout .prose { max-width: none; }
.about-photo { margin: 0; }
.about-photo img { width: 100%; height: auto; border-radius: 16px; }
.about-photo figcaption { margin-top: 8px; color: var(--muted); font-size: 0.92rem; }
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0;
  align-items: start;
}
.photo-pair img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #e7eee8;
  border-radius: 16px;
}

.gallery-grid {
  columns: 3;
  column-gap: 12px;
}
.gallery-grid figure {
  margin: 0 0 12px;
  width: 100%;
  break-inside: avoid;
  display: inline-block;
}
.gallery-grid.is-packed {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  columns: auto;
}
.gallery-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-col figure { margin: 0; }
.gallery-grid img { width: 100%; height: auto; cursor: zoom-in; border-radius: 14px; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.gallery-grid figure:hover img { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(5, 41, 17, 0.16); }
.gallery-grid figcaption { font-size: 0.88rem; color: var(--muted); padding: 6px 0 8px; }

.form {
  display: grid;
  gap: 14px;
  max-width: 640px;
}
label { display: grid; gap: 6px; font-weight: 500; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  padding: 12px 12px;
  border-radius: 8px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(233, 179, 25, 0.35);
}
.form label.is-filled input,
.form label.is-filled select,
.form label.is-filled textarea { border-color: var(--mid); }
.form-meter { display: grid; gap: 6px; }
.form-meter span {
  display: block;
  height: 3px;
  background: rgba(5, 41, 17, 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.form-meter i {
  display: block;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}
.form-meter em {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.form-meter.is-ready em { color: var(--forest); }
textarea { min-height: 120px; resize: vertical; }
.check { grid-template-columns: 20px 1fr; align-items: start; font-weight: 400; }
.check input { width: auto; margin-top: 4px; }
.form-note { color: var(--muted); font-size: 0.92rem; }
.error { color: #8a1f1f; font-size: 0.92rem; display: none; }
.error.show { display: block; }

.site-footer { background: var(--forest); color: var(--paper); padding: 48px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 32px;
}
.site-footer a { color: var(--paper); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-brand img { height: var(--logo); width: auto; background: var(--paper); border-radius: 8px; }
.legal {
  border-top: 1px solid rgba(252, 252, 251, 0.16);
  padding: 14px 0 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(252, 252, 251, 0.8);
}
.legal a { color: var(--gold); }

.sticky-cta {
  display: none;
}

dialog {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(960px, calc(100% - 24px));
}
dialog::backdrop { background: rgba(5, 41, 17, 0.82); }
dialog img { max-height: 86vh; margin: 0 auto; }
dialog button {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 0;
  background: var(--gold);
  color: var(--forest);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero, .split, .area-panel, .photo-pair, .reasons, .review-grid, .footer-grid, .service-grid, .about-layout {
    grid-template-columns: 1fr;
  }
  .service-card.feature { grid-row: auto; min-height: 360px; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
  .emergency .wrap { flex-direction: column; align-items: flex-start; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 3px solid var(--gold);
    padding: 12px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open {
    display: flex;
    gap: 0;
    padding: 6px 12px 18px;
    box-shadow: 0 18px 36px rgba(5, 41, 17, 0.12);
  }
  .nav.open a:not(.call-btn) {
    width: 100%;
    padding: 14px 4px;
    font-size: 1.12rem;
    border-bottom: 1px solid var(--line);
  }
  .nav.open .call-btn {
    width: 100%;
    margin-top: 14px;
    justify-content: center;
  }
  .header-inner { position: relative; }
  .hero-photo { min-height: 26vh; }
  .hero-photo::after {
    background: linear-gradient(180deg, transparent 48%, var(--forest) 100%);
  }
  .hero-copy { padding: 4px 18px 16px; }
  .hero-actions { flex-wrap: nowrap; }
  .hero-actions .gold-btn,
  .hero-actions .ghost-btn {
    flex: 1 1 auto;
    padding: 11px 10px;
    font-size: 0.86rem;
    white-space: nowrap;
  }
  h1 { font-size: 2.15rem; }
  .sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    background: linear-gradient(transparent, rgba(252, 252, 251, 0.94) 36%);
    backdrop-filter: blur(8px);
    padding: 18px 12px max(14px, env(safe-area-inset-bottom));
    gap: 8px;
    pointer-events: none;
  }
  .sticky-cta a {
    pointer-events: auto;
    text-align: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 8px;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(5, 41, 17, 0.22);
  }
  .sticky-cta .call { background: var(--gold); color: var(--forest); }
  .sticky-cta .est { background: var(--paper); color: var(--forest); border: 2px solid var(--forest); }
  body { padding-bottom: 88px; }
  main a, main button, main input, main select, main textarea { scroll-margin-bottom: 110px; }
  .legal { margin-bottom: 8px; }
}

::selection { background: rgba(233, 179, 25, 0.45); color: var(--forest); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}
.site-header, .header-inner, .logo img { transition: box-shadow 0.25s ease, min-height 0.25s ease, height 0.25s ease; }
.site-header.is-compact { box-shadow: 0 12px 28px rgba(5, 41, 17, 0.08); }
.site-header.is-compact .header-inner { min-height: 92px; }
.site-header.is-compact .logo img { height: 78px; }

.done-mark { margin-bottom: 8px; }
.done-mark circle,
.done-mark path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.seek {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border: 2px solid rgba(233, 179, 25, 0.4);
  border-radius: 50%;
  position: relative;
}
.seek i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--gold);
}

html.motion .hero { overflow: hidden; }
html.motion .hero-photo {
  transform-origin: 50% 18%;
  animation: hero-drift 22s ease-in-out infinite alternate;
}
@keyframes hero-drift {
  from { transform: scale(1.05); }
  to { transform: scale(1.12) translate3d(-1.2%, -1%, 0); }
}
html.motion .page-hero {
  position: relative;
  background: linear-gradient(120deg, #052911 0%, #0c3a1c 46%, #052911 82%);
  background-size: 220% 100%;
  animation: wash 16s ease-in-out infinite alternate;
}
html.motion .page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  animation: draw-line 1.05s cubic-bezier(0.16, 0.84, 0.32, 1) 0.15s forwards;
}
@keyframes wash {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}
@keyframes draw-line { to { transform: scaleX(1); } }

html.motion .kicker { display: flex; align-items: center; gap: 12px; }
html.motion .kicker::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s ease 0.2s;
}
html.motion .kicker.is-in::after { transform: scaleX(1); }

html.motion h1:not(.is-in) { opacity: 0; }
html.motion h1.is-split .word { display: inline-block; margin-right: 0.28em; }
html.motion h1.is-split .word:last-of-type { margin-right: 0; }
html.motion h1.is-split .word > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.16, 0.84, 0.32, 1);
}
html.motion h1.is-in { opacity: 1; }
html.motion h1.is-in .word > span { opacity: 1; transform: none; }

html.motion :is(
  .hero-copy > *:not(h1),
  .page-hero .wrap > *:not(h1):not(.done-mark):not(.seek),
  .section-head,
  .service-card,
  .reason,
  .review-grid blockquote,
  .faq details,
  .photo-pair img,
  .prose > p,
  .mosaic a,
  .related a,
  .area-copy > *:not(.town-list),
  .town-list li,
  .about-photo,
  .split-copy > *,
  .emergency .wrap > *,
  .footer-grid > *,
  .gallery-grid figure,
  .area-map,
  .form > label,
  .form > p:not(.error),
  .form > button,
  .form > .form-meter
) {
  transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.16, 0.84, 0.32, 1);
}
html.motion :is(
  .hero-copy > *:not(h1),
  .page-hero .wrap > *:not(h1):not(.done-mark):not(.seek),
  .section-head,
  .service-card,
  .reason,
  .review-grid blockquote,
  .faq details,
  .photo-pair img,
  .prose > p,
  .mosaic a,
  .related a,
  .area-copy > *:not(.town-list),
  .town-list li,
  .about-photo,
  .split-copy > *,
  .emergency .wrap > *,
  .footer-grid > *,
  .gallery-grid figure,
  .area-map,
  .form > label,
  .form > p:not(.error),
  .form > button,
  .form > .form-meter
):not(.is-in) {
  opacity: 0;
  transform: translateY(16px);
}
html.motion .photo-pair img:first-child:not(.is-in) { transform: translateX(-28px); }
html.motion .photo-pair img:last-child:not(.is-in) { transform: translateX(28px); }
html.motion .about-photo img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.05s cubic-bezier(0.16, 0.84, 0.32, 1);
}
html.motion .about-photo.is-in img { clip-path: inset(0); }
html.motion .reason { position: relative; border-top-color: transparent; }
html.motion .reason::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(0.16, 0.84, 0.32, 1);
}
html.motion .reason.is-in::after { transform: scaleX(1); }

html.motion .area-map-stage.is-awake::after {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 2;
  pointer-events: none;
  background: conic-gradient(from 0deg, transparent 0 72%, rgba(233, 179, 25, 0.38) 86%, transparent 100%);
  mix-blend-mode: multiply;
  animation: sweep 2.6s ease-out 1 forwards;
}
@keyframes sweep {
  from { transform: rotate(0deg); opacity: 0.9; }
  to { transform: rotate(340deg); opacity: 0; }
}
html.motion .area-dot {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  transition: transform 0.45s cubic-bezier(0.16, 0.84, 0.32, 1);
}
html.motion .area-map-stage.is-awake .area-dot { transform: scale(1); }

html.motion .gold-btn,
html.motion .call-btn,
html.motion .forest-btn { position: relative; overflow: hidden; }
html.motion .gold-btn::after,
html.motion .call-btn::after,
html.motion .forest-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.45) 50%, transparent 68%);
  transform: translateX(-120%);
  pointer-events: none;
}
html.motion .gold-btn:hover::after,
html.motion .call-btn:hover::after,
html.motion .forest-btn:hover::after { animation: sheen 0.7s ease; }
@keyframes sheen { to { transform: translateX(120%); } }
html.motion .gold-btn.is-ready { animation: ready-pulse 1.2s ease; }
@keyframes ready-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233, 179, 25, 0); }
  45% { box-shadow: 0 10px 26px rgba(233, 179, 25, 0.45); }
}
html.motion .error.show { animation: shake 0.35s ease; }
@keyframes shake {
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
}

html.motion .done-mark circle,
html.motion .done-mark path {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: draw 0.9s ease forwards;
}
html.motion .done-mark path { stroke-dasharray: 64; animation-delay: 0.45s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
html.motion .seek i { animation: orbit 2.8s linear infinite; }
@keyframes orbit {
  from { transform: rotate(0deg) translateX(18px); }
  to { transform: rotate(360deg) translateX(18px); }
}

html.motion .sticky-cta { animation: cta-rise 0.55s cubic-bezier(0.16, 0.84, 0.32, 1) 0.35s both; }
@keyframes cta-rise {
  from { transform: translateY(120%); }
  to { transform: none; }
}

html.motion .faq details { interpolate-size: allow-keywords; }
html.motion .faq details::details-content {
  height: 0;
  overflow: clip;
  opacity: 0;
  transition: height 0.35s ease, opacity 0.35s ease, content-visibility 0.35s allow-discrete;
}
html.motion .faq details[open]::details-content { height: auto; opacity: 1; }

@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
  ::view-transition-old(root) { animation-duration: 0.16s; }
  ::view-transition-new(root) { animation-duration: 0.22s; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
