* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1d1c;
  --muted: #5f5a57;
  --sand: #f5f0ea;
  --olive: #55614c;
  --rose: #e8d2c5;
  --stone: #e2e0db;
  --accent: #8b4b3e;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fffdfb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px clamp(20px, 4vw, 56px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.section {
  padding: clamp(40px, 7vw, 92px) clamp(20px, 6vw, 90px);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

h1, h2, h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.4rem, 3.6vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
}

h3 {
  font-size: 1.3rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.pill-cta,
.button-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--ink);
}

.button-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.pill-cta.light {
  background: #fff;
}

.section.sand {
  background: var(--sand);
}

.section.rose {
  background: var(--rose);
}

.section.stone {
  background: var(--stone);
}

.section.olive {
  background: #4e5a46;
  color: #fdfaf7;
}

.section.olive .lead,
.section.olive a {
  color: #fdfaf7;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 18px 20px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(20, 12, 7, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  display: flex;
  gap: 14px;
  align-items: center;
}

.metric span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.form-panel {
  padding: 22px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(20, 12, 7, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4cbc2;
  font-family: inherit;
}

.form-panel button {
  border: none;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
}

.sticky-cta a {
  background: var(--olive);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(40, 40, 40, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(20, 12, 7, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: 1px solid var(--ink);
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer {
  padding: 32px clamp(20px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #1f1d1c;
  color: #f5f0ea;
}

.footer a {
  color: #f5f0ea;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  font-size: 0.9rem;
}

.page-hero {
  padding: 48px clamp(20px, 6vw, 90px);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 860px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split,
  .split.reverse {
    flex-direction: row;
  }

  .split.reverse .content {
    order: 2;
  }

  .split > * {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 220px;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
  }

  .footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
