/* Base */
:root {
  --bg: #f7f5f1;
  --bg-alt: #fff7ef;
  --ink: #1f1f1f;
  --muted: #5a5a5a;
  --brand: #2b5c4a;
  --accent: #c46b2a;
  --card: #ffffff;
  --line: #e4dfd7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
}

.page {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 28px 22px;
  background: #f1ede7;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar .brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 6px 0;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.content {
  flex: 1;
  padding: 36px 8vw 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.alt {
  background: var(--bg-alt);
  border-radius: 22px;
  padding: 28px;
}

.section .eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 24px;
  background: #f8efe4;
}

.hero h1 {
  margin: 0;
  font-size: 40px;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #d9d3c6;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.quote {
  font-style: italic;
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  border-radius: 12px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--brand);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 10;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 12;
}

.cookie-banner .actions {
  display: flex;
  gap: 8px;
}

.cookie-banner .actions button {
  flex: 1;
}

.notice {
  background: #f2f6f1;
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid #dde7dc;
}

.list {
  padding-left: 18px;
}

.list li {
  margin-bottom: 6px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
