* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1f;
  background: #faf9f7;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #f2efe9;
  padding: 22px 6vw 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.topline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a514a;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw;
  background: #ede7de;
}

.hero .content {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0 0 12px;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero .media {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #d8d0c6;
}

.hero .media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  flex: 1;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #d7cfc4;
}

.highlight {
  background: #f7f4ef;
  border-left: 4px solid #c9b7a2;
  padding: 18px;
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1d1d1f;
  background: #1d1d1f;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: transparent;
  color: #1d1d1f;
}

.inline-link {
  text-decoration: underline;
  cursor: pointer;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #e5dfd7;
}

.price {
  font-weight: 700;
  color: #5b3f2f;
}

.form-shell {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc6bb;
  font-size: 0.95rem;
  font-family: inherit;
}

footer {
  background: #f2efe9;
  padding: 28px 6vw 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
  color: #5a514a;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: sticky;
  bottom: 14px;
  margin: 0 6vw 30px;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e5dfd7;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #d8d0c6;
}

.image-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #d8d0c6;
  border-radius: 14px;
  padding: 16px;
  max-width: 300px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero .media img {
    height: 420px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .price-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1 1 220px;
  }

  .sticky-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
