* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --ink: #1f1b16;
  --muted: #6e6258;
  --accent: #2f7f6e;
  --accent-dark: #1e564b;
  --sun: #f3c66b;
  --cream: #fff9f0;
  --rose: #f0d9d0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.header {
  padding: 26px 0 10px;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.section {
  padding: 70px 0;
  position: relative;
}

.section.alt {
  background: var(--cream);
}

.section.soft {
  background: var(--rose);
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 12px;
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 2px solid var(--accent);
  transition: 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn.sun {
  background: var(--sun);
  color: #3b2b11;
  border-color: var(--sun);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.floating-note {
  position: absolute;
  bottom: -18px;
  left: 12%;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
}

.offset-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.offset-card.highlight {
  background: var(--accent);
  color: #fff;
}

.story-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-step {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.story-step span {
  font-weight: 700;
  color: var(--accent-dark);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.banner {
  background: var(--accent-dark);
  color: #fff;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d0c6;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #e3dcd3;
  font-size: 0.9rem;
}

.footer {
  padding: 50px 0 60px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.page-hero {
  padding: 60px 0 30px;
}

.hero-offset {
  margin-top: -40px;
}

.map-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
}

.policy-block {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  margin-top: 18px;
}

@media (min-width: 860px) {
  .nav-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero,
  .section.split,
  .two-col {
    flex-direction: row;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
  }

  .offset-grid {
    flex-direction: row;
  }

  .offset-card {
    flex: 1;
  }

  .offset-card.shift {
    transform: translateY(28px);
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .story-strip {
    flex-direction: row;
  }

  .story-step {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 calc(50% - 18px);
  }
}
