* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4f0;
  --bg-dark: #121212;
  --text: #1d1d1d;
  --muted: #5f5f5f;
  --accent: #2f6b5f;
  --accent-2: #c47c3b;
  --card: #ffffff;
  --outline: #e3ded6;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 6vw 12px;
}

.nav-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 600;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.ad-label {
  font-size: 0.92rem;
  color: var(--muted);
  border-left: 4px solid var(--accent-2);
  padding-left: 12px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px 6vw 48px;
}

.hero-media {
  border-radius: 28px;
  overflow: hidden;
  background: #c9d2cc;
  box-shadow: var(--shadow);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 640px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #25584e;
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 999px;
}

.btn-outline:hover {
  background: rgba(47, 107, 95, 0.08);
}

.inline-link {
  text-decoration: underline;
  color: var(--accent-2);
}

.section {
  padding: 54px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-dark {
  background: var(--bg-dark);
  color: #f5f5f5;
}

.section-muted {
  background: #f0ebe4;
}

.section-split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-media {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background: #d9d4cf;
  min-height: 240px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent-2);
  font-weight: 700;
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
  flex: 1 1 240px;
  min-width: 240px;
}

.card-media {
  border-radius: 16px;
  overflow: hidden;
  background: #d5d8d1;
}

.card h3 {
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 14px;
}

.quote {
  font-style: italic;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  font: inherit;
}

.form-grid textarea {
  min-height: 110px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 5;
}

.sticky-cta:hover {
  background: #aa6a33;
}

.footer {
  margin-top: auto;
  padding: 36px 6vw 48px;
  background: #0d0d0d;
  color: #eaeaea;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.notice {
  font-size: 0.88rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 18px;
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  color: var(--accent);
  background: #fff;
}

.cookie-btn.primary {
  background: var(--accent);
  color: #fff;
}

.hero-note {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 420px;
}

@media (min-width: 880px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .section-split {
    gap: 32px;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .form-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-grid .field {
    flex: 1 1 240px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-grid .field.full {
    flex: 1 1 100%;
  }
}
