* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d2a24;
  --muted: #5a6b62;
  --accent: #2f7a59;
  --accent-soft: #cde6d8;
  --sand: #f4f1ea;
  --mist: #eef3f0;
  --stone: #dde3dc;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 28px 6%;
  background: var(--sand);
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 64px 6% 72px;
  background: var(--mist);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1 1 360px;
  max-width: 520px;
  padding-right: 24px;
}

.hero-panel {
  position: relative;
  z-index: 2;
  flex: 1 1 280px;
  align-self: flex-end;
  background: #ffffff;
  padding: 24px;
  margin-top: 40px;
  margin-left: auto;
  border-left: 6px solid var(--accent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border-color: var(--accent);
}

.section {
  padding: 72px 6%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}

.section-heading h2 {
  font-size: 2rem;
}

.section-heading p {
  color: var(--muted);
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.asym-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
  position: relative;
  top: 0;
}

.asym-card h3 {
  margin-bottom: 12px;
}

.asym-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.inline-visual {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.inline-visual.reverse {
  flex-direction: row-reverse;
}

.image-box {
  flex: 1 1 280px;
  background: var(--stone);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-block {
  flex: 1 1 320px;
}

.text-block p {
  color: var(--muted);
  margin-bottom: 16px;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: var(--sand);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section.sand {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.offset-up {
  top: -12px;
}

.offset-down {
  top: 16px;
}

.offset-slight {
  top: -6px;
}

.bg-moss {
  background-color: #dbe7df;
}

.bg-sage {
  background-color: #cad7cf;
}

.bg-leaf {
  background-color: #d7e5d4;
}

.bg-river {
  background-color: #dfe9e2;
}

.bg-wind {
  background-color: #dde7dd;
}

.bg-dune {
  background-color: #e3e2da;
}

.bg-stone {
  background-color: #d7ded6;
}

.bg-foam {
  background-color: #e1ebe8;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: #ffffff;
  color: var(--muted);
}

.form-shell {
  background: var(--mist);
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ccd6cf;
  font-size: 1rem;
  font-family: inherit;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  background: var(--sand);
  border-radius: 24px;
  padding: 24px;
}

.split-band .band-block {
  flex: 1 1 240px;
}

.split-band ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 32px 6%;
  background: #1f2e27;
  color: #f1f4f2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f1f4f2;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d8dfda;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  max-width: 360px;
  display: none;
  z-index: 12;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
}

.legal-block h2 {
  font-size: 1.6rem;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.contact-card p {
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero {
    padding-top: 48px;
  }

  .hero-panel {
    margin-left: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
