* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #5c636d;
  --sand: #f6f1ea;
  --lake: #e7f0f5;
  --stone: #ece7df;
  --accent: #cf3b2f;
  --accent-dark: #9e271f;
  --line: #d9d2c8;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--ink);
}

.hero {
  padding: 40px 0 70px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .pane {
  flex: 1;
}

.split .pane.card {
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 12px 0 18px;
}

h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.inline-link {
  border-bottom: 1px solid var(--ink);
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.section.light {
  background: var(--lake);
}

.section.stone {
  background: var(--stone);
}

.section.sand {
  background: var(--sand);
}

.layered {
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 8% 6%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  pointer-events: none;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  font-weight: 600;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-item {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  font-weight: 600;
}

input, select, textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 14px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.sticky-cta a {
  color: var(--accent);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.bg-market {
  background-image: url("https://images.unsplash.com/photo-1498654896293-37aacf113fd9?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 260px;
}

.bg-lake {
  background-image: url("https://images.unsplash.com/photo-1500835556837-99ac94a94552?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 260px;
}

.bg-kitchen {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 260px;
}

.bg-cheese {
  background-image: url("https://images.unsplash.com/photo-1466637574441-749b8f19452f?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 260px;
}

.quote {
  font-style: italic;
  color: var(--ink);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.small-text {
  font-size: 13px;
  color: var(--muted);
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .metrics {
    flex-direction: row;
    gap: 24px;
  }

  .cards {
    flex-direction: row;
  }

  .two-col {
    flex-direction: row;
  }
}
