* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f1eb;
  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;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw;
  background: #f6f1eb;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.hero {
  min-height: 70vh;
  position: relative;
  padding: 0 8vw 48px;
}

.hero-card {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 26px;
  padding: 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-card img {
  width: 48%;
  object-fit: cover;
  height: 100%;
}

.hero-content {
  width: 52%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: #9a5b2c;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: #1c1c1c;
  color: #fff;
}

.btn-secondary {
  background: #f2c4a0;
  color: #1c1c1c;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1c1c1c;
  color: #1c1c1c;
}

.section {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 64px 8vw;
}

.section.alt {
  flex-direction: row-reverse;
  background: #fff;
}

.section .text,
.section .media {
  width: 50%;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.card p {
  margin: 12px 0 0;
}

.highlight {
  background: #1c1c1c;
  color: #fff;
  border-radius: 24px;
  padding: 32px;
}

.form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5c2b1;
  font-size: 1rem;
  background: #fffaf5;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1c1c1c;
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 8vw;
  background: #151515;
  color: #e9e0d9;
  font-size: 0.9rem;
}

.footer a {
  color: #e9e0d9;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.small-note {
  font-size: 0.9rem;
  color: #5f4a3e;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #f2c4a0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.page-title {
  padding: 48px 8vw 16px;
}

.simple-content {
  padding: 0 8vw 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 920px) {
  .hero-card,
  .section,
  .section.alt {
    flex-direction: column;
  }

  .hero-card img,
  .hero-content,
  .section .text,
  .section .media {
    width: 100%;
  }

  .hero {
    padding: 0 6vw 32px;
  }

  .nav {
    flex-direction: column;
    gap: 14px;
  }

  .footer {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
