:root {
  --green-950: #0b2d27;
  --green-900: #123f36;
  --green-800: #1b584b;
  --sage-600: #718c78;
  --sage-300: #b9cbbb;
  --sage-100: #e8efe9;
  --ochre: #d5962d;
  --slate: #34434a;
  --ink: #172622;
  --muted: #5d6c67;
  --paper: #fbfcfa;
  --white: #ffffff;
  --line: #d6e0d8;
  --radius: 22px;
  --shadow: 0 22px 70px rgba(12, 49, 42, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--green-950);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(251, 252, 250, .94);
  border-bottom: 1px solid rgba(214, 224, 216, .8);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand { margin-right: auto; }
.brand img { width: 235px; height: 62px; object-fit: cover; object-position: center; }
nav { display: flex; align-items: center; gap: 28px; }
nav a {
  text-decoration: none;
  color: var(--slate);
  font-weight: 650;
  font-size: .91rem;
}
nav a:hover, nav a:focus-visible { color: var(--green-800); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 2px solid var(--green-900);
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white);
  font-weight: 760;
  text-decoration: none;
  line-height: 1.15;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover, .button:focus-visible {
  background: var(--green-800);
  border-color: var(--green-800);
  transform: translateY(-1px);
}
.button-small { min-height: 44px; padding: 9px 18px; font-size: .9rem; }
.text-link {
  color: var(--green-900);
  font-weight: 760;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero {
  overflow: hidden;
  padding: 82px 0 74px;
  background:
    radial-gradient(circle at 8% 0%, rgba(213, 150, 45, .10), transparent 30%),
    linear-gradient(135deg, var(--paper) 0%, #eef4ef 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 68px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green-800);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; color: var(--green-950); line-height: 1.08; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.025em; }
h1 { max-width: 730px; margin-bottom: 24px; font-size: clamp(3rem, 6vw, 5.3rem); }
h2 { margin-bottom: 18px; font-size: clamp(2.15rem, 4vw, 3.35rem); }
h3 { margin-bottom: 10px; font-size: 1.22rem; }
.hero-lead {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--slate);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.trust-line {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-line span {
  padding: 8px 12px;
  border: 1px solid var(--sage-300);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  color: var(--green-950);
  font-size: .82rem;
  font-weight: 700;
}
.hero-image {
  position: relative;
  margin: 0;
  padding: 12px;
  border-radius: 34px 34px 110px 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 160px;
  height: 160px;
  right: -38px;
  bottom: -38px;
  border-radius: 50%;
  background: var(--ochre);
  opacity: .9;
}
.hero-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 25px 25px 88px 25px;
}
.hero-image figcaption {
  position: absolute;
  left: 32px;
  right: 40px;
  bottom: 30px;
  padding: 12px 15px;
  border-radius: 12px;
  background: rgba(11, 45, 39, .9);
  color: var(--white);
  font-size: .84rem;
  font-weight: 650;
}

.section { padding: 96px 0; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  min-height: 280px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.service-card-accent { background: var(--green-900); border-color: var(--green-900); }
.service-card-accent h3, .service-card-accent p { color: var(--white); }
.service-number {
  display: block;
  margin-bottom: 62px;
  color: var(--ochre);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.service-card p { margin: 0; color: var(--muted); font-size: .96rem; }

.how-it-works { background: var(--sage-100); }
.split {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 84px;
  align-items: start;
}
.steps { margin: 0; padding: 0; list-style: none; }
.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--sage-300);
}
.steps li:first-child { padding-top: 0; }
.steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: white;
  font-weight: 800;
}
.steps h3 { margin-bottom: 5px; }
.steps p { margin: 0; color: var(--muted); }

.pricing { background: var(--green-950); color: var(--white); }
.pricing .eyebrow { color: #d4b56e; }
.pricing h2, .pricing .section-heading > p:last-child { color: var(--white); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
}
.price-card.featured { padding-top: 72px; border-color: var(--ochre); background: var(--white); color: var(--ink); }
.recommended {
  position: absolute;
  top: 22px;
  left: 28px;
  display: inline-flex;
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--ochre);
  color: var(--green-950);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.price-label { margin: 0 0 22px; font-weight: 780; }
.price { margin: 0; }
.price strong { color: inherit; font-size: clamp(3.3rem, 7vw, 5.2rem); line-height: 1; }
.price span { color: inherit; font-size: .92rem; }
.four-week { margin: 10px 0 28px; color: #d4b56e; font-weight: 760; }
.featured .four-week { color: var(--green-800); }
.price-card > p:last-child { margin-bottom: 0; }
.extras-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px 50px;
  margin-top: 38px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
}
.extras-kicker { margin: 0 0 8px; color: #d4b56e; font-size: .78rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.extras-panel h3 { margin-bottom: 12px; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; }
.extras-panel p { margin: 0; color: #d9e3de; }
.extras-rates { margin: 0; }
.extras-rates div { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.extras-rates div:first-child { padding-top: 0; }
.extras-rates div:last-child { border-bottom: 0; }
.extras-rates dt { color: #d9e3de; }
.extras-rates dd { margin: 0; color: var(--white); font-weight: 850; white-space: nowrap; }
.extras-panel .extras-note { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .16); font-size: .86rem; }
.pricing-note { margin: 24px 0 0; color: #cbd8d1; font-size: .85rem; text-align: center; }

.about-grid {
  display: grid;
  grid-template-columns: .38fr 1fr;
  gap: 66px;
  align-items: center;
}
.about-photo {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 34px 34px 100px 34px;
  background: var(--sage-100);
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.about-copy > p:not(.eyebrow) { color: var(--muted); }
.dbs-note {
  padding: 14px 17px;
  border: 1px solid var(--sage-300);
  border-radius: 14px;
  background: var(--sage-100);
}
.quote {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 5px solid var(--ochre);
  background: var(--sage-100);
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.boundaries { padding-top: 0; }
.boundaries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
}
.boundary-copy p { margin-top: 0; color: var(--muted); }

.area { padding-top: 0; }
.area-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 48px;
  border-radius: 28px;
  background: var(--sage-100);
}
.area-card p:last-child { max-width: 720px; margin-bottom: 0; color: var(--muted); }
.area-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--white);
  color: var(--green-950);
  line-height: 1.25;
}
.area-badge strong { font-size: 1.6rem; }
.area-badge span { font-size: .76rem; font-weight: 700; }

.contact { padding: 88px 0; background: var(--green-900); color: var(--white); text-align: center; }
.contact .eyebrow { color: #d4b56e; }
.contact h2 { max-width: 800px; margin-inline: auto; color: var(--white); }
.contact p:not(.eyebrow) { font-size: 1.1rem; }
.contact-actions { display: flex; justify-content: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.button-light { background: var(--white); border-color: var(--white); color: var(--green-950); }
.button-light:hover, .button-light:focus-visible { background: var(--sage-100); border-color: var(--sage-100); }
.button-outline { background: transparent; border-color: rgba(255, 255, 255, .7); }
.button-outline:hover, .button-outline:focus-visible { background: rgba(255, 255, 255, .12); border-color: var(--white); }

.site-footer { padding: 52px 0; background: #071e1a; color: #c7d4ce; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 54px; align-items: start; }
.site-footer img {
  width: 200px;
  height: 54px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.site-footer p { margin: 8px 0 0; font-size: .84rem; }
details { font-size: .86rem; }
summary { cursor: pointer; color: var(--white); font-weight: 760; }

:focus-visible { outline: 3px solid var(--ochre); outline-offset: 3px; }

@media (max-width: 940px) {
  nav { display: none; }
  .hero-grid, .split, .about-grid, .boundaries-grid, .extras-panel { grid-template-columns: 1fr; }
  .hero-grid { gap: 50px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 34px; }
  .price-grid { grid-template-columns: 1fr; }
  .about-photo { width: min(340px, 78vw); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .shell { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 72px; gap: 12px; }
  .brand img { width: 166px; height: 46px; }
  .button-small { padding: 8px 12px; font-size: .78rem; }
  .hero { padding: 54px 0 60px; }
  .hero-grid { gap: 38px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.7rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-image { border-radius: 24px 24px 74px 24px; }
  .hero-image figcaption { left: 24px; right: 28px; bottom: 22px; }
  .section { padding: 72px 0; }
  .service-grid, .price-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-number { margin-bottom: 34px; }
  .price-card { padding: 28px 24px; }
  .price-card.featured { padding-top: 72px; }
  .extras-panel { padding: 28px 24px; }
  .boundaries-grid, .area-card { padding: 30px 24px; }
  .area-card { grid-template-columns: 1fr; }
  .area-badge { justify-self: start; }
  .contact { padding: 72px 0; }
  .contact-actions { flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

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