:root {
  --bg: #f6f2ea;
  --ink: #17231d;
  --muted: #5d6b63;
  --panel: #ffffff;
  --panel-soft: #ebe2d3;
  --green: #24563d;
  --green-dark: #173c2b;
  --gold: #c69a46;
  --line: rgba(23, 35, 29, 0.14);
  --shadow: 0 24px 70px rgba(23, 35, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 234, 0.92);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 0 0 5px rgba(36, 86, 61, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a:hover,
.nav-dropbtn:hover {
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
}

.nav-dropbtn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.nav-dropbtn::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.72em;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--green-dark);
  font-weight: 750;
}

.nav-menu a:hover {
  background: var(--panel-soft);
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-cta {
  color: #fff !important;
  background: var(--green);
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 32px;
  align-items: center;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at top right, rgba(198, 154, 70, 0.22), transparent 36%),
    linear-gradient(135deg, #f6f2ea 0%, #efe5d4 100%);
}

.hero-copy {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.hero-text {
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 32px rgba(36, 86, 61, 0.22);
}

.button.secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.52);
  border-color: var(--line);
}

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

.trust-strip span,
.area-grid span {
  display: inline-flex;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-card,
.card,
.cta-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
}

.hero-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.hero-card a,
.service-card a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(36, 86, 61, 0.25);
  text-underline-offset: 4px;
}

.price-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading p,
.split p,
.cta-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards.three,
.cards.two {
  display: grid;
  gap: 18px;
}

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

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

.service-row {
  margin-top: 18px;
}

.card {
  padding: 24px;
  box-shadow: none;
}

.card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 32px;
  background: var(--green-dark);
  color: #fff;
}

.split .eyebrow {
  color: #d9b766;
}

.split p {
  color: rgba(255, 255, 255, 0.74);
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.steps li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 18px;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-panel {
  margin: clamp(28px, 5vw, 54px) clamp(18px, 5vw, 72px) clamp(56px, 8vw, 96px);
  padding: clamp(28px, 5vw, 54px);
}

.site-footer {
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

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

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    align-items: flex-start;
  }

  .nav-dropdown {
    position: static;
  }

  .nav-menu {
    min-width: 220px;
  }

  .hero,
  .split,
  .cards.three,
  .cards.two {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }
}
