*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d1f1d;
  --muted: #5d635e;
  --accent: #2f5f4f;
  --accent-soft: #e3efe9;
  --warm: #f4efe8;
  --stone: #f7f6f3;
  --line: #d9ded8;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 28px 6vw 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 60px 6vw 40px;
  background: var(--stone);
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-text {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 12px 0 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.hero-card {
  flex: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  align-self: flex-start;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.06);
}

.hero-card p {
  margin: 0 0 16px;
}

.section {
  padding: 52px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--warm);
}

.section.soft {
  background: var(--accent-soft);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offset-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-panel {
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 24px;
  background: #ffffff;
}

.offset-panel.highlight {
  background: #ffffff;
  transform: translateX(0);
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
}

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.image-caption {
  padding: 12px 16px 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-shell {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 6vw;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 6vw;
  right: 6vw;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  margin-top: auto;
  padding: 34px 6vw;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.thanks-box {
  max-width: 720px;
  margin: 40px auto;
  padding: 32px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (min-width: 820px) {
  .hero-split {
    flex-direction: row;
    align-items: stretch;
  }

  .offset-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .offset-panel {
    flex: 1;
  }

  .offset-panel.highlight {
    transform: translateX(40px);
  }

  .section-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .image-strip {
    flex-direction: row;
  }

  .image-card {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }

  .two-col > * {
    flex: 1;
  }
}
