* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1f2328;
  text-decoration: underline;
}

a.button-link,
button,
.cta-button {
  cursor: pointer;
  border: none;
  background: #1f2328;
  color: #ffffff;
  padding: 12px 22px;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

a.button-link:hover,
button:hover,
.cta-button:hover {
  background: #3b424a;
}

.page {
  min-height: 100vh;
}

.site-header {
  padding: 28px 8vw;
  background: #efe9e2;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6a3f2b;
  font-weight: 600;
}

.hero {
  padding: 48px 8vw 72px;
  background: #fff7ef;
}

.split {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 8vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e4dfd7;
  padding: 18px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.section-title {
  font-size: 32px;
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: #4c5965;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border: 1px solid #d6cec4;
  background: #ffffff;
}

.price {
  font-size: 22px;
  font-weight: 600;
  color: #6a3f2b;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 24px;
  border: 1px solid #d6cec4;
}

.form-panel label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border: 1px solid #c5bdb2;
  font-size: 14px;
}

.form-status {
  font-size: 14px;
  color: #6a3f2b;
}

.note {
  font-size: 14px;
  color: #4c5965;
}

.highlight {
  background: #fff1e4;
}

.dark-section {
  background: #1f2328;
  color: #f7f4ee;
}

.dark-section a {
  color: #f7f4ee;
}

.footer {
  padding: 40px 8vw;
  background: #efe9e2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: #1f2328;
  color: #ffffff;
  padding: 14px 8vw;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.ghost-button {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  background: #ffffff;
  padding: 16px;
  border: 1px solid #d6cec4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-card {
  background: #dcd6cc;
  padding: 12px;
}

.image-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

.tagline {
  font-size: 18px;
  max-width: 520px;
}

.meta-block {
  font-size: 13px;
  color: #5a646e;
}

.two-column {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1;
  min-width: 240px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
