* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --charcoal: #1f1c1b;
  --sand: #f6f2ec;
  --rose: #d96c6c;
  --olive: #4b5b3c;
  --cream: #fffaf4;
  --stone: #e8e1d8;
  --ink: #2e2a28;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 20px;
}

header {
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
}

header .brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

header nav {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 6vw 80px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 40px;
  border-radius: 28px;
  background: var(--sand);
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-section .media-block {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--olive);
}

.headline {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.2;
  color: var(--charcoal);
}

.subline {
  font-size: 1.05rem;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn.light {
  background: #fff;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn.rose {
  background: var(--rose);
}

.inline-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.quote {
  font-style: italic;
  color: #4a3f3b;
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 20px;
  background: var(--olive);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

footer {
  padding: 32px 6vw 48px;
  background: var(--charcoal);
  color: #fef6ee;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

footer .footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 18px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.secondary-section {
  background: #fff;
}

.muted {
  color: #6c5f5a;
}

.divider {
  height: 1px;
  width: 100%;
  background: var(--stone);
}

.simple-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--stone);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--stone);
  font-size: 0.8rem;
}

.page-hero {
  padding: 50px 6vw 20px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
}

.content-block {
  padding: 0 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

@media (max-width: 780px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  header nav {
    flex-wrap: wrap;
  }

  .split-section {
    padding: 28px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
