* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #141414;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 28px 7vw 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ded9d2;
  background: #f9f7f3;
}

.brand {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #efe9e0;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 40px 7vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.alt {
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 20px 40px rgba(16, 16, 16, 0.08);
}

.section.dark {
  background: #1b1d1f;
  color: #f6f4f1;
  border-radius: 26px;
  padding: 36px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7d7469;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.lead {
  font-size: 1.1rem;
  max-width: 620px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-row .panel {
  padding: 18px;
  border-radius: 18px;
  background: #efe9e0;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 30px rgba(16, 16, 16, 0.08);
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 600;
  color: #ab4d2a;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1b1d1f;
  color: #f6f4f1;
  font-weight: 500;
}

.btn.alt {
  background: #efe9e0;
  color: #1b1d1f;
}

.btn.light {
  background: #f6f4f1;
  color: #1b1d1f;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  color: #60584f;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d3ccc3;
  background: #fff;
  font-size: 1rem;
}

.footer {
  background: #121314;
  color: #f6f4f1;
  padding: 40px 7vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ab4d2a;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1b1d1f;
  color: #f6f4f1;
  padding: 18px 7vw;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.plain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-link {
  color: #ab4d2a;
  font-weight: 600;
}

.note {
  font-size: 0.9rem;
  color: #6b635a;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .offset-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .form-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-grid .field {
    flex: 1 1 240px;
  }
}
