* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1b16;
  --muted: #5a534b;
  --paper: #f6f2ed;
  --sand: #efe7dd;
  --clay: #d8c6b3;
  --forest: #214131;
  --accent: #c0643f;
  --accent-soft: #f1d3c2;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--forest);
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: var(--white);
  border-bottom: 1px solid var(--clay);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  padding: 6px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink);
}

.section {
  padding: 70px 6vw;
}

.section.compact {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--forest);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  background-image: url("https://images.unsplash.com/photo-1711623350002-d97138f35bf2?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 16, 12, 0.72), rgba(20, 16, 12, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 6vw;
  max-width: 620px;
  color: var(--white);
}

.hero-card {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 20px 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--forest);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  max-width: 520px;
}

.split .media {
  flex: 1 1 320px;
  max-width: 520px;
  background: var(--clay);
  border-radius: 18px;
  padding: 10px;
}

.offset {
  position: relative;
  margin-top: -40px;
  margin-left: 8vw;
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--clay);
}

.card .media {
  background: var(--clay);
  border-radius: 14px;
  overflow: hidden;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price-tag {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  background: var(--white);
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--clay);
  max-width: 680px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--clay);
  font-size: 15px;
  font-family: inherit;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.sticky-cta button {
  border: none;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.footer {
  padding: 40px 6vw;
  background: var(--white);
  border-top: 1px solid var(--clay);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border: 1px solid var(--clay);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--white);
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--forest);
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.legal-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-block {
  flex: 1 1 260px;
  background: var(--white);
  border: 1px solid var(--clay);
  border-radius: 16px;
  padding: 16px;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-content {
    padding-top: 120px;
  }

  .offset {
    margin-left: 0;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    display: flex;
    justify-content: center;
  }
}
