* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1d1a;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw 8px;
}

.nav-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #e2d9cc;
  padding-bottom: 16px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #bfa98b;
}

.ad-label {
  font-size: 12px;
  padding: 6px 12px;
  border: 1px dashed #bfa98b;
  border-radius: 20px;
  background: #f1e7d9;
}

main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
}

.section-bg {
  position: relative;
  overflow: hidden;
}

.section-bg .bg-layer {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  z-index: 0;
}

.section-bg .bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-bg .content-layer {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  padding-top: 32px;
}

.hero-title {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 16px;
}

.hero-sub {
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  border: 1px solid #1f1d1a;
  background: #1f1d1a;
  color: #f7f4ef;
  font-size: 14px;
}

.btn.secondary {
  background: transparent;
  color: #1f1d1a;
}

.inline-link {
  border-bottom: 1px solid #1f1d1a;
  padding-bottom: 2px;
}

.img-wrap {
  background: #e9dfd1;
  padding: 10px;
  border-radius: 18px;
}

.img-wrap img {
  border-radius: 12px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e2d9cc;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 600;
  color: #4a3a28;
}

.soft-bg {
  background: #f1e7d9;
}

.dark-bg {
  background: #1f1d1a;
  color: #f7f4ef;
}

.dark-bg .btn.secondary {
  border-color: #f7f4ef;
  color: #f7f4ef;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e2d9cc;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d3c7b7;
  font-size: 14px;
  font-family: inherit;
  background: #fdfaf6;
}

footer {
  padding: 40px 6vw 60px;
  background: #efe7dc;
  font-size: 14px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f1d1a;
  color: #f7f4ef;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 14px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #d3c7b7;
  display: none;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #1f1d1a;
  background: #1f1d1a;
  color: #f7f4ef;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1f1d1a;
}

.legal-section {
  max-width: 860px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 800px) {
  .hero-title {
    font-size: 32px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
