* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1b1a;
  --muted: #5f5b57;
  --accent: #3f6b4a;
  --accent-dark: #2c4c36;
  --sand: #f5f1ea;
  --pebble: #e2ddd6;
  --mist: #f7f6f4;
  --sun: #c38b4a;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: #fff;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-cta {
  border: 1px solid var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--accent);
}

.hero {
  padding: 20px 6vw 50px;
  background: linear-gradient(120deg, #faf8f4 30%, #ffffff 100%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--sun);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 30;
}

.section {
  padding: 60px 6vw;
}

.section-alt {
  background: var(--sand);
}

.section-pebble {
  background: var(--pebble);
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.section-lead {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 24px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.asym-row.reverse {
  flex-direction: column-reverse;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.split-band {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.service-picks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-pick {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #eee;
}

.service-pick.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(63, 107, 74, 0.15);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d2cb;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw 60px;
  background: #151311;
  color: #f2ede7;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #d2cbc3;
  font-size: 0.9rem;
}

.banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 6vw;
  background: #1c1a17;
  color: #fff;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 40;
}

.banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.banner button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.banner .accept {
  background: var(--sun);
  color: #fff;
}

.banner .reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.micro-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}

.legal h2 {
  margin-top: 20px;
}

@media (min-width: 860px) {
  .hero-inner,
  .asym-row,
  .contact-grid {
    flex-direction: row;
    align-items: center;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 22px);
  }

  .service-picks {
    flex-direction: row;
  }

  .service-pick {
    flex: 1;
  }

  .split-band {
    flex-direction: row;
    align-items: flex-start;
  }
}
