* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #2a221b;
  background: #f9f6f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #7c4c2c;
  text-decoration: none;
}

header {
  padding: 1.5rem 1.5rem 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #e4d8cc;
  padding-bottom: 1rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #2a221b;
  color: #f9f6f3;
  font-weight: 600;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2rem 0 4rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
  background: #fff8f2;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.split.reverse {
  background: #f2e7dd;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.split-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: #8a6e57;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  border: none;
  padding: 0.85rem 1.4rem;
  border-radius: 18px;
  background: #7c4c2c;
  color: #fff8f2;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #7c4c2c;
  color: #7c4c2c;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid #7c4c2c;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.price {
  font-weight: 700;
  color: #7c4c2c;
}

.sticky-cta {
  position: sticky;
  bottom: 1rem;
  background: #2a221b;
  color: #f9f6f3;
  padding: 1rem 1.4rem;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  margin-top: 1rem;
  width: min(420px, 100%);
}

.sticky-cta a {
  color: #f9f6f3;
  font-weight: 600;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #d8c7b3;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.section-note {
  font-size: 0.95rem;
  color: #6a5644;
}

.footer {
  background: #2a221b;
  color: #f9f6f3;
  padding: 2.5rem 1.5rem;
}

.footer a {
  color: #f2e3d4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (min-width: 840px) {
  .split {
    flex-direction: row;
    gap: 3rem;
    padding: 3rem;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .two-col {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 1rem);
  }

  form {
    padding: 2.2rem;
  }
}
