:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #5a6670;
  --paper: #f8f6f1;
  --surface: #ffffff;
  --line: #d9ddd8;
  --green: #16695e;
  --green-dark: #0e453e;
  --gold: #f2b544;
  --red: #b53a2e;
  --shadow: 0 20px 55px rgba(23, 32, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(248, 246, 241, 0.92);
  border-bottom: 1px solid rgba(23, 32, 38, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand strong,
footer strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.5vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  padding: 8px 0;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
}

.nav-cta {
  padding: 10px 18px;
  color: #fff;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: clamp(630px, 82vh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: var(--green-dark);
  background-image:
    linear-gradient(90deg, rgba(9, 30, 27, 0.94) 0%, rgba(9, 30, 27, 0.84) 48%, rgba(9, 30, 27, 0.54) 100%),
    radial-gradient(circle at 84% 48%, rgba(242, 181, 68, 0.3), rgba(242, 181, 68, 0) 34%),
    url("https://lh3.googleusercontent.com/sitesv/AA5AbUDyprGnD6FIdPUNvgJyzi3h7gS6bG73iodB_-IHGV8924wA5KyCim4oMOv6yiw481lh3w0_qRk4LKU2JIb1BGH2tyv6K1URImbRfAJWfXfIuj3tpql1bgJMyi9LYbQQlPqye0Ojs27vUifP_mph6KElx_cetn4y8ZgOZ-2iOsLotLTeC7lKUTYy=w16383");
  background-position:
    center,
    center,
    right -90px center;
  background-repeat: no-repeat;
  background-size:
    cover,
    cover,
    min(820px, 78vw) auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 150px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(248, 246, 241, 0), var(--paper));
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 96px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-width: min(100%, 230px);
  padding: 13px 22px;
  border: 2px solid transparent;
}

.button.primary {
  color: #172026;
  background: var(--gold);
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
}

.quick-info,
.split-section,
.services,
.cta-band,
footer {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.quick-info article,
.price-card,
.service-grid article,
.area-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-info article {
  padding: 24px;
}

.quick-info strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
}

.quick-info p,
.split-section p,
.service-grid p,
footer p,
.cta-band p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: 96px 0 24px;
}

.price-list {
  display: grid;
  gap: 14px;
}

.price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.price-card.featured {
  border-color: rgba(22, 105, 94, 0.32);
  background: #edf5f2;
}

.price-card p {
  margin-bottom: 0;
}

.price-card strong {
  min-width: 96px;
  color: var(--green-dark);
  font-size: 1.5rem;
  text-align: right;
}

.services {
  padding: 72px 0 24px;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.service-grid article {
  padding: 24px;
}

.service-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-grid strong {
  display: block;
  margin-top: 20px;
  color: var(--green-dark);
  font-size: 1.65rem;
}

.area-panel {
  padding: 28px;
}

.area-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-panel li {
  padding: 13px 14px;
  border-radius: 8px;
  background: var(--paper);
  font-weight: 800;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding: clamp(28px, 5vw, 48px);
  color: #fff;
  background: var(--green-dark);
  border-radius: 8px;
}

.cta-band h2 {
  max-width: 620px;
  margin-bottom: 8px;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .button.secondary {
  background: transparent;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 0;
}

footer p {
  margin-bottom: 0;
}

footer a {
  color: var(--green-dark);
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 6px;
  text-align: right;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    padding-top: 96px;
  }

  .quick-info,
  .service-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section {
    padding-top: 72px;
  }

  .cta-band,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 16px;
  }

  nav {
    gap: 18px;
    font-size: 0.9rem;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content,
  .quick-info,
  .split-section,
  .services,
  .cta-band,
  footer {
    width: min(100% - 28px, 1120px);
  }

  .button {
    width: 100%;
  }

  .price-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-card strong {
    min-width: 0;
    text-align: left;
  }

  .area-panel ul {
    grid-template-columns: 1fr;
  }
}
