* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b2a22;
  --muted: #58665b;
  --accent: #2f6b57;
  --accent-soft: #d7e6df;
  --earth: #f4f2ee;
  --moss: #e0ece6;
  --sand: #faf8f3;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.8rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 24px 6vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.split {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.offset {
  margin-top: 32px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.hero {
  background: var(--earth);
  border-radius: 28px;
  padding: 32px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.image-frame {
  background: #d5e3d7;
  border-radius: 24px;
  overflow: hidden;
}

.image-frame.tall {
  min-height: 360px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 36px rgba(26, 37, 30, 0.08);
}

.card .image-frame {
  border-radius: 16px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.cta.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.cta.inline {
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--accent);
  font-weight: 600;
}

.floating-cta {
  align-self: flex-end;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(21, 29, 24, 0.12);
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 16px;
}

.highlight {
  background: var(--moss);
  border-radius: 24px;
  padding: 28px;
}

.form-shell {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 36px rgba(26, 37, 30, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cdd8d0;
  font-size: 1rem;
  font-family: inherit;
}

.hidden {
  display: none;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

footer {
  padding: 32px 6vw 48px;
  background: #f1f4f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(21, 29, 24, 0.16);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-title {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  margin: 0;
}

.page-hero {
  background: var(--earth);
  border-radius: 26px;
  padding: 28px;
}

.content-block {
  max-width: 860px;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.offset-grid .card {
  flex: 1 1 260px;
}

@media (max-width: 820px) {
  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }

  .floating-cta {
    align-self: stretch;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
  }
}
