* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --text: #1e1b18;
  --muted: #5c5248;
  --accent: #c06b3e;
  --accent-dark: #8d4a2a;
  --sand: #f5efe9;
  --stone: #e6dbd2;
  --night: #1b1917;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-aside {
  background: var(--sand);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav-list a {
  color: var(--muted);
}

.aside-cta {
  padding: 12px 16px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.site-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.tight {
  padding: 40px 24px;
}

.section.layered {
  background: var(--sand);
}

.section.dark {
  background: var(--night);
  color: var(--white);
}

.section.dark a {
  color: var(--white);
}

.section-headline {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.8rem);
  font-weight: 700;
}

.section-subtitle {
  color: var(--muted);
  max-width: 640px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-media {
  border-radius: 24px;
  overflow: hidden;
  background: var(--stone);
}

.offset-card {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(26, 18, 10, 0.12);
}

.offset-card.raise {
  margin-top: -32px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.2rem;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--stone);
  font-size: 0.85rem;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.button.ghost {
  background: var(--white);
  color: var(--accent-dark);
  border: 1px dashed var(--accent-dark);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.form-shell {
  background: var(--white);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  font-size: 0.9rem;
  color: var(--accent-dark);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 40;
  background: var(--accent-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  background: var(--sand);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--night);
  color: var(--white);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-button.accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-button.reject {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

@media (min-width: 900px) {
  .page-shell {
    flex-direction: row;
  }

  .site-aside {
    width: 260px;
    min-height: 100vh;
    position: relative;
  }

  .site-main {
    width: calc(100% - 260px);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards.horizontal {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1;
    min-width: 220px;
  }
}
