:root {
  --ink: #172024;
  --muted: #627174;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #dce4e1;
  --teal: #0b6259;
  --teal-dark: #083f3b;
  --lime: #d6f45f;
  --gold: #f2b441;
  --red: #cb3a2c;
  --shadow: 0 24px 70px rgba(8, 63, 59, 0.18);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(3.1rem, 7.6vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: #fff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 8px 30px rgba(23, 32, 36, 0.08);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-weight: 900;
}

.brand small {
  display: block;
  margin-top: 0.15rem;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.75;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  background: var(--teal-dark);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(5, 32, 33, 0.92), rgba(5, 32, 33, 0.4) 52%, rgba(5, 32, 33, 0.2)),
    url("https://images.unsplash.com/photo-1590362891991-f776e747a588?auto=format&fit=crop&w=2200&q=82") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 22% 20%, rgba(214, 244, 95, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(5, 32, 33, 0.28), rgba(5, 32, 33, 0.82));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 96vh;
  flex-direction: column;
  justify-content: center;
  padding: 8rem clamp(1.1rem, 5vw, 5rem) 2rem;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.local-page {
  padding-top: 76px;
}

.local-hero {
  background:
    linear-gradient(135deg, rgba(8, 63, 59, 0.94), rgba(11, 98, 89, 0.88)),
    url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: #fff;
}

.local-hero h1 {
  max-width: 900px;
}

.local-copy {
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-strip .eyebrow {
  color: var(--lime);
}

.hero-actions,
.hero-stats,
.contact-grid,
.payg {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  font-weight: 900;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.button-primary {
  background: var(--lime);
  color: var(--teal-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--teal-dark);
}

.hero-stats {
  width: min(820px, 100%);
  margin-top: clamp(2rem, 6vw, 5rem);
}

.hero-stats article {
  min-width: 170px;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 1.7rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.78);
}

.section,
.feature-band,
.process,
.cta-strip,
.site-footer {
  padding: clamp(4rem, 9vw, 7rem) clamp(1.1rem, 5vw, 5rem);
}

.intro,
.split,
.package,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.section-heading {
  max-width: 850px;
}

.intro-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.feature-band {
  background: #e8efeb;
}

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

.feature-card,
.check-panel,
.price-card,
.package-details,
.contact-grid > * {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(23, 32, 36, 0.06);
}

.feature-card {
  padding: clamp(1.1rem, 2vw, 1.6rem);
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1.4rem;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.split {
  align-items: center;
}

.check-panel,
.package-details {
  padding: clamp(1.3rem, 3vw, 2rem);
}

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

.check-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list li::before {
  position: absolute;
  top: 0.18rem;
  left: 0;
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--teal-dark);
  content: "✓";
  font-size: 0.8rem;
  font-weight: 900;
}

.process {
  background: var(--teal-dark);
  color: #fff;
}

.process p,
.process li {
  color: rgba(255, 255, 255, 0.75);
}

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

.timeline article {
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.06);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 4rem;
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package {
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.88), rgba(251, 250, 246, 0.98)),
    url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1800&q=80") center / cover fixed;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.price {
  margin: 0.5rem 0 0.6rem;
  color: var(--teal);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 950;
  line-height: 0.95;
}

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

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

.payg {
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.payg strong {
  width: 100%;
}

.payg span {
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: #eff5f1;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.areas {
  background: #f2f5ef;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.area-list span,
.area-list a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: #fff;
  color: var(--teal-dark);
  font-size: 0.95rem;
  font-weight: 900;
}

.area-list a:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--red);
  color: #fff;
}

.cta-strip h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.contact-grid {
  align-content: start;
}

.contact-grid > * {
  min-width: min(260px, 100%);
  flex: 1 1 42%;
  padding: 1.2rem;
}

.contact-grid span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-grid strong {
  overflow-wrap: anywhere;
  font-size: 1.05rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .feature-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro,
  .split,
  .package,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    position: relative;
    z-index: 40;
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 0.8rem;
    left: 0.8rem;
    z-index: 35;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.7rem);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

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

  .site-nav a {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    content: none;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-content {
    min-height: 92vh;
    padding-top: 7rem;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.5rem);
  }

  .hero-actions .button,
  .button-light {
    width: 100%;
  }

  .feature-grid,
  .timeline,
  .columns {
    grid-template-columns: 1fr;
  }

  .timeline article {
    min-height: 230px;
  }

  .timeline span {
    margin-bottom: 2rem;
  }

  .cta-strip {
    display: block;
  }

  .cta-strip .button {
    margin-top: 1.2rem;
  }
}

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