* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --dark: #0d1b1e;
  --light: #f7f3ef;
  --accent: #c46f3c;
  --accent-soft: #e9c7b1;
  --sage: #7a8a7f;
  --ink: #1a1f24;
  --paper: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--light);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 12px;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 0 70px;
  position: relative;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  width: 88%;
  box-shadow: 0 24px 60px rgba(13, 27, 30, 0.22);
}

.hero-content {
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(13, 27, 30, 0.08);
  max-width: 620px;
}

.hero-content h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-row {
  margin-top: 18px;
}

.spaced-top {
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--dark);
  font-weight: 600;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn.ghost {
  background: transparent;
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--paper);
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.offset-block .offset-card {
  background: var(--paper);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(13, 27, 30, 0.12);
  max-width: 620px;
}

.offset-highlight {
  background: var(--accent-soft);
  padding: 22px;
  border-radius: 18px;
  max-width: 420px;
  align-self: flex-end;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-panel {
  flex: 1;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--paper);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 32px rgba(13, 27, 30, 0.12);
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.quote {
  padding: 24px;
  background: var(--dark);
  color: #fff;
  border-radius: 18px;
}

.quote.alt {
  background: #24424b;
}

.form-shell {
  background: var(--paper);
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(13, 27, 30, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-shell label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7d2cb;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(13, 27, 30, 0.22);
  z-index: 10;
}

.footer {
  padding: 40px 0 60px;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 90px;
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(13, 27, 30, 0.16);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .hero {
    padding: 40px 0 90px;
  }

  .hero-content {
    position: absolute;
    left: 0;
    top: 30%;
  }

  .hero-visual img {
    width: 70%;
  }

  .offset-block {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 18px);
  }

  .form-actions {
    flex-direction: row;
    align-items: center;
  }

  .cookie-actions {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .card {
    flex: 1 1 calc(33.333% - 18px);
  }
}
