:root {
  color-scheme: light;
  --ink: #1e1c18;
  --muted: #5b5752;
  --accent: #d4682f;
  --accent-dark: #b04f1c;
  --sand: #f6f1ea;
  --smoke: #efe7dd;
  --charcoal: #2a2520;
  --olive: #6b6a50;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffdf9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 6vw 10px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section--sand {
  background: var(--sand);
}

.section--smoke {
  background: var(--smoke);
}

.section--charcoal {
  background: var(--charcoal);
  color: #fdf6ee;
}

.section--charcoal a {
  color: #fdf6ee;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--olive);
}

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.section--charcoal p {
  color: #f1e8dc;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn.dark {
  background: #fff;
  color: var(--charcoal);
}

.inline-link {
  color: var(--accent-dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(30, 28, 24, 0.08);
}

.card.dark {
  background: #2f2a24;
  color: #fdf6ee;
  box-shadow: none;
}

.card.dark p {
  color: #f1e8dc;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(212, 104, 47, 0.12);
  color: var(--accent-dark);
  font-size: 0.85rem;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(30, 28, 24, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d9d1c6;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  padding: 42px 6vw;
  background: #171410;
  color: #f7efe3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(30, 28, 24, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(30, 28, 24, 0.18);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hidden {
  display: none;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.notice {
  background: rgba(212, 104, 47, 0.08);
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 12px;
  color: var(--muted);
}

@media (min-width: 900px) {
  .topbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }

  .section-grid {
    flex-direction: row;
  }
}
