* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 18px 6%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f2efe9;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  color: #5f4f39;
  background: #efe4d2;
  padding: 4px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  color: #1c1c1c;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom: 2px solid #b68934;
}

.hero {
  padding: 60px 6%;
  background: #1f2c34;
  color: #fff;
}

.hero-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-visual {
  flex: 1 1 320px;
  background-color: #34444f;
  padding: 12px;
  border-radius: 14px;
}

.hero-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  background: #b68934;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #b68934;
  border: 2px solid #b68934;
}

.section {
  padding: 60px 6%;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.split-media {
  background-color: #e1ddd6;
  padding: 10px;
  border-radius: 16px;
}

.split-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card-image {
  background-color: #d6d0c8;
  border-radius: 12px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: #2e5a4f;
}

.cta-strip {
  padding: 24px 6%;
  background: #efe4d2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.form-block {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.form-block label {
  font-weight: 600;
}

.form-block input,
.form-block select,
.form-block textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c2b8;
  font-size: 1rem;
  font-family: inherit;
}

.two-col {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 220px;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #1f2c34;
  color: #fff;
}

.footer a {
  color: #f5d08c;
  text-decoration: none;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #f0e7d8;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #2e5a4f;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.section-alt {
  background: #f0ebe2;
}

.section-dark {
  background: #2f3b40;
  color: #fff;
}

.section-dark .btn.secondary {
  color: #f5d08c;
  border-color: #f5d08c;
}

.inline-link {
  color: #b68934;
  text-decoration: underline;
}
