* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d1a16;
  --muted: #6d675f;
  --sand: #f4efe8;
  --stone: #e7ded2;
  --clay: #c98f6b;
  --sage: #7a8a7a;
  --night: #2a2a32;
  --paper: #fffdf9;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  padding: 32px 24px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.nav a {
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom: 1px solid var(--ink);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--clay);
}

.content {
  flex: 1;
  padding: 32px 6vw 64px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border-radius: 24px;
}

.section--airy {
  background: var(--sand);
}

.section--dense {
  background: var(--night);
  color: #f5f1ea;
}

.section--offset {
  background: var(--paper);
  border: 1px solid var(--stone);
  box-shadow: 0 18px 40px rgba(25, 20, 15, 0.08);
}

.section--split {
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

.section--split.reverse {
  flex-direction: row-reverse;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.headline {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0;
}

.subhead {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--clay);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--clay);
  color: var(--clay);
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.price {
  font-weight: 700;
  color: var(--clay);
  font-size: 18px;
}

.highlight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.highlight {
  flex: 1 1 180px;
  padding: 16px;
  border-radius: 16px;
  background: var(--stone);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form label {
  font-size: 14px;
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 14px;
  background: #fff;
}

.footer {
  padding: 20px 0;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--night);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  font-size: 14px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--paper);
  border: 1px solid var(--stone);
  box-shadow: 0 12px 30px rgba(20, 18, 16, 0.12);
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal {
  max-width: 760px;
}

.legal h1 {
  margin-top: 0;
}

.note {
  padding: 14px;
  border-left: 3px solid var(--clay);
  background: #fff7f2;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--stone);
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .content {
    padding: 24px;
  }

  .section--split,
  .section--split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
