* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f1ec;
  --ink: #1e1c1a;
  --muted: #5c554f;
  --accent: #3b5f62;
  --accent-strong: #224044;
  --light: #ffffff;
  --sand: #efe7df;
  --rose: #f3d9cd;
  --shadow: 0 20px 40px rgba(18, 18, 18, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.sidebar {
  background: var(--light);
  border-bottom: 1px solid #e4dcd4;
  padding: 18px 20px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

.cta-mini {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--light);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  gap: 8px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 20px 120px;
}

.section {
  background: var(--light);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--sand);
}

.section.accent {
  background: var(--accent);
  color: var(--light);
}

.section.accent a {
  color: var(--light);
}

.section.hero {
  background: linear-gradient(130deg, var(--light) 45%, var(--rose) 100%);
  overflow: hidden;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--muted);
}

.headline {
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 700;
}

.subhead {
  color: var(--muted);
  font-size: 1.05rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  gap: 8px;
  background: transparent;
}

.btn.primary {
  background: var(--accent);
  color: var(--light);
}

.btn.light {
  background: var(--light);
  color: var(--accent-strong);
  border-color: transparent;
}

.inline-link {
  color: var(--accent-strong);
  text-decoration: underline;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--light);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e7ddd4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background: #1c1f20;
  color: var(--light);
  border-color: transparent;
}

.card .price {
  font-weight: 700;
  font-size: 1.2rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rose);
  color: var(--accent-strong);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d1c9;
  font-size: 1rem;
  font-family: inherit;
  background: var(--light);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 32px 20px;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--accent-strong);
  color: var(--light);
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.sticky-cta a {
  color: var(--light);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #181716;
  color: var(--light);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--light);
  color: var(--accent-strong);
}

.cookie-reject {
  background: transparent;
  color: var(--light);
  border-color: var(--light);
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    border-bottom: none;
    border-right: 1px solid #e4dcd4;
    padding: 32px 24px;
  }

  main {
    padding: 40px 48px 160px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .headline {
    font-size: 2.6rem;
  }

  .cards.horizontal {
    flex-direction: row;
  }

  .sticky-cta {
    left: auto;
    right: 32px;
    bottom: 32px;
    width: 360px;
  }
}
