* {
  box-sizing: border-box;
}

:root {
  --ink: #1d241f;
  --muted: #5b6b62;
  --leaf: #2f5b45;
  --sand: #f3efe7;
  --mist: #e3ebe5;
  --stone: #d1d9d2;
  --sun: #caa56a;
  --shadow: rgba(20, 26, 22, 0.08);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfaf7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--leaf);
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.page {
  overflow-x: hidden;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--mist);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 24px;
  align-items: stretch;
  padding: 24px 6vw 64px;
  position: relative;
}

.hero-text {
  flex: 1 1 45%;
  padding: 20px 0;
}

.hero-media {
  flex: 1 1 55%;
  background: var(--stone);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px var(--shadow);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sand);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: var(--sun);
  color: var(--ink);
}

.section {
  padding: 64px 6vw;
  position: relative;
}

.section.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section .block {
  flex: 1 1 50%;
}

.offset-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px var(--shadow);
  transform: translateY(-20px);
}

.image-frame {
  background: var(--stone);
  border-radius: 20px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.layered {
  background: linear-gradient(135deg, #eef3ee, #fbfaf7);
  border-top-left-radius: 80px;
}

.bg-coast {
  background-color: #2f3a33;
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-coast .offset-card {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.bg-meadow {
  background-color: #d7e0d8;
  background-image: url("https://images.unsplash.com/photo-1441716844725-09cedc13a4e7?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-ridge {
  background-color: #cfd5cf;
  background-image: url("https://images.unsplash.com/photo-1441829266145-6d4bfbd38eb4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-dawn {
  background-color: #c7c0b5;
  background-image: url("https://images.unsplash.com/photo-1439853949127-fa647821eba0?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 10;
  background: var(--leaf);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px var(--shadow);
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 48px 6vw;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 40px var(--shadow);
  max-width: 320px;
  z-index: 12;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-size: 14px;
}

.cookie-actions button.secondary {
  background: var(--sun);
  color: var(--ink);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mist);
  font-size: 13px;
}

.legal-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-grid .block {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px var(--shadow);
}

.two-column {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.two-column > * {
  flex: 1 1 50%;
}

@media (max-width: 900px) {
  .hero,
  .section.split,
  .two-column {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
