* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  background: #ffffff;
  border-bottom: 1px solid #dedbd6;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #6b6357;
  flex: 1 1 240px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 64px;
}

.backdrop {
  position: relative;
  padding: 32px;
  border-radius: 22px;
  overflow: hidden;
  background: #ede7df;
}

.backdrop .backdrop-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #cfc7bd;
}

.backdrop .backdrop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.backdrop .content,
.backdrop .visual {
  position: relative;
  z-index: 1;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .visual {
  flex: 1 1 420px;
}

.content h1,
.content h2,
.content h3 {
  margin-bottom: 12px;
  line-height: 1.2;
}

.content p {
  margin-bottom: 16px;
  color: #2f2b27;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #8f8376;
  margin-bottom: 12px;
}

.image-box {
  background: #d9d5cf;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(34, 26, 18, 0.08);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f4a43;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.secondary {
  background: #ffffff;
  color: #1f4a43;
  border: 1px solid #1f4a43;
}

.inline-link {
  font-weight: 600;
  color: #1f4a43;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 28px rgba(34, 26, 18, 0.08);
}

.card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f4a43;
}

.card .image-box {
  min-height: 180px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note {
  background: #efeae2;
  padding: 16px;
  border-radius: 16px;
  color: #4c443b;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c3ba;
  font-size: 1rem;
  background: #ffffff;
}

textarea {
  min-height: 120px;
}

.footer {
  background: #1a1a1a;
  color: #f2eee7;
  padding: 36px 20px;
}

.footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #f2eee7;
}

.footer .refs {
  font-size: 0.9rem;
  color: #c7bfb5;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  max-width: 520px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: #173036;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    margin: 20px;
    display: inline-flex;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
  }
}
