* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1a17;
  --muted: #5b534a;
  --accent: #c54b2f;
  --accent-dark: #8f2f19;
  --cream: #f7f2ea;
  --sand: #efe6d8;
  --olive: #405045;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #fffdf9;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  padding: 32px 6vw 54px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual .overlay-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  max-width: 580px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.dark {
  background: var(--olive);
  color: #fefaf4;
}

.section.sand {
  background: var(--sand);
}

.section.layered {
  position: relative;
  overflow: hidden;
}

.section.layered::before {
  content: "";
  position: absolute;
  inset: 12% -10% auto;
  height: 120px;
  background: rgba(197, 75, 47, 0.14);
  transform: rotate(-2deg);
}

.section.layered > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(33, 24, 12, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background: #f6ede1;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.quote {
  font-size: 1.05rem;
  font-style: italic;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 46px rgba(31, 20, 10, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9cfc0;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  margin: 0 6vw 24px;
  background: #fff4ed;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  box-shadow: 0 16px 30px rgba(19, 13, 8, 0.12);
  gap: 12px;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1f1b16;
  color: #f7f0e7;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(10, 8, 6, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (min-width: 860px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual {
    flex: 1;
  }

  .hero-content {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
  }
}
