:root {
  color-scheme: light;
  --page: #ffffff;
  --paper: #f7f8f3;
  --mist: #eef1ec;
  --ink: #26312d;
  --muted: #66746d;
  --forest: #405f52;
  --forest-dark: #253b34;
  --lake: #6f95a0;
  --red: #8b4037;
  --gold: #b88a44;
  --line: #d7ddd3;
  --shadow: 0 22px 70px rgb(38 49 45 / 0.12);
  --shadow-soft: 0 12px 36px rgb(38 49 45 / 0.09);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1180px;
  --tap: 44px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--forest);
  text-decoration-color: rgb(64 95 82 / 0.35);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--forest-dark);
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgb(184 138 68 / 0.65);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--forest-dark);
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(215 221 211 / 0.85);
  background: rgb(255 255 255 / 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap,
.section-inner,
.footer-inner,
.legal-inner {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: clamp(170px, 21vw, 260px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  padding: 0.55rem 0.78rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.95rem;
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  min-width: var(--tap);
  min-height: var(--tap);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.call-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  box-shadow: 0 10px 24px rgb(64 95 82 / 0.18);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.call-pill:hover {
  color: #fff;
  background: var(--forest-dark);
}

.call-pill small {
  color: rgb(255 255 255 / 0.78);
  font-weight: 400;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(820px, calc(100vh - 78px));
  overflow: hidden;
  color: #fff;
  background: var(--forest-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 57% center;
  transform: scale(1.08);
  animation: heroBreath 24s ease-in-out infinite alternate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgb(19 32 29 / 0.72), rgb(19 32 29 / 0.38) 44%, rgb(19 32 29 / 0.08)),
    linear-gradient(0deg, rgb(19 32 29 / 0.48), transparent 42%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: -1;
  content: "";
  background: linear-gradient(0deg, rgb(255 255 255 / 0.98), rgb(255 255 255 / 0));
}

.hero-inner {
  display: grid;
  width: min(var(--max), calc(100% - 32px));
  min-height: min(820px, calc(100vh - 78px));
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(5rem, 9vw, 8rem);
  align-items: center;
}

.hero-content {
  max-width: 710px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.15rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 999px;
  color: rgb(255 255 255 / 0.9);
  background: rgb(255 255 255 / 0.13);
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
}

.eyebrow::before {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
}

p {
  margin: 0;
}

.hero-lead {
  max-width: 62ch;
  margin-top: 1.35rem;
  color: rgb(255 255 255 / 0.9);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.button.primary {
  border-color: transparent;
  color: #fff;
  background: var(--forest);
}

.button.primary:hover {
  color: #fff;
  background: var(--forest-dark);
}

.button.ghost {
  border-color: rgb(255 255 255 / 0.36);
  color: #fff;
  background: rgb(255 255 255 / 0.12);
  backdrop-filter: blur(12px);
}

.button.ghost:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.18);
}

.phone-box {
  width: min(100%, 620px);
  margin-top: 1.6rem;
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.12);
  backdrop-filter: blur(16px);
}

.phone-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  color: inherit;
}

.phone-line strong {
  font-size: clamp(1.35rem, 4vw, 2.1rem);
  letter-spacing: 0;
  white-space: nowrap;
}

.phone-line span {
  color: inherit;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 700;
  text-align: right;
}

.phone-note {
  margin-top: 0.45rem;
  color: rgb(255 255 255 / 0.78);
  font-size: 0.94rem;
}

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

.notice-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  gap: 1.25rem;
  padding: 1rem 0;
}

.notice strong {
  display: block;
  color: var(--red);
}

.notice a {
  white-space: nowrap;
}

.section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

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

.section.compact {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-kicker {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

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

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

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

.card,
.quote-panel,
.legal-card,
.price-card,
.step,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.card,
.legal-card,
.price-card {
  padding: clamp(1.15rem, 2vw, 1.55rem);
}

.card p,
.price-card p,
.legal-card p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: rgb(184 138 68 / 0.55);
}

.price-card.featured::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--gold);
  content: "";
}

.price {
  margin-top: 1rem;
  color: var(--forest-dark);
  font-size: 2rem;
  font-weight: 800;
}

.price small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
}

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

.list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
}

.list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 1rem;
}

.step {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4.8rem;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 1.15rem;
  left: 1.2rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.quote-panel {
  padding: clamp(1.3rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgb(64 95 82 / 0.06), rgb(184 138 68 / 0.08)),
    #fff;
}

.quote-panel blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.3rem, 2.5vw, 2.05rem);
  line-height: 1.18;
}

.quote-panel cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-style: normal;
}

.boundary-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.boundary-table th,
.boundary-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.boundary-table th {
  color: #fff;
  background: var(--forest);
}

.boundary-table tr:last-child td {
  border-bottom: 0;
}

.boundary-table td:first-child {
  color: var(--forest-dark);
  font-weight: 700;
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  padding: 1rem 1.1rem;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq details p {
  margin-top: 0.85rem;
  color: var(--muted);
}

.cta-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgb(37 59 52 / 0.96), rgb(64 95 82 / 0.94)),
    var(--forest);
}

.cta-band .section-lead {
  color: rgb(255 255 255 / 0.82);
}

.service-label {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  color: var(--forest-dark);
  background: var(--mist);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(140px, 0.45fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem;
}

.footer-logo {
  width: 230px;
  margin-bottom: 1rem;
}

.footer-inner h2,
.footer-inner h3 {
  font-size: 1rem;
}

.footer-inner ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-inner p,
.footer-inner a {
  color: var(--muted);
}

.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  padding: 1rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.2rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgb(64 95 82 / 0.08), rgb(184 138 68 / 0.08)),
    var(--paper);
}

.legal-inner {
  max-width: 940px;
}

.legal-content {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 6vw, 6rem);
}

.legal-content h2 {
  margin-top: 2.2rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-content h3 {
  margin-top: 1.5rem;
  font-size: 1.12rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content p {
  margin-top: 0.85rem;
}

.legal-content ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

.legal-card {
  margin: 1.4rem 0;
  background: #fff;
}

.emergency-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.emergency-card {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: #fff;
}

.emergency-card strong {
  display: block;
  color: var(--red);
  font-size: 1.35rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroBreath {
  from {
    transform: scale(1.08) translate3d(-0.7%, -0.25%, 0);
  }
  to {
    transform: scale(1.14) translate3d(0.8%, 0.35%, 0);
  }
}

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

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    max-height: calc(100vh - 78px);
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: rgb(255 255 255 / 0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav a {
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .section-head,
  .split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .brand-logo {
    width: 165px;
  }

  .call-pill {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 760px;
    padding-top: 4rem;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .phone-line {
    display: grid;
    gap: 0.25rem;
  }

  .phone-line span {
    text-align: left;
  }

  .notice-inner {
    display: grid;
  }

  .grid.two,
  .grid.three,
  .emergency-grid {
    grid-template-columns: 1fr;
  }

  .boundary-table,
  .boundary-table tbody,
  .boundary-table tr,
  .boundary-table td {
    display: block;
  }

  .boundary-table thead {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
  }

  .boundary-table td {
    border-bottom: 0;
  }

  .boundary-table tr {
    border-bottom: 1px solid var(--line);
  }

  .boundary-table tr:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 420px) {
  .nav-wrap,
  .section-inner,
  .footer-inner,
  .footer-bottom,
  .legal-inner,
  .notice-inner {
    width: min(100% - 24px, var(--max));
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
