* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f8f5f1;
}

a {
  color: #1f1f1f;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background-color: #fff;
  border-bottom: 1px solid #e6ddd4;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #6d5c4c;
  background-color: #f1e6d8;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 0 24px;
  align-items: center;
}

.hero-text {
  flex: 1 1 340px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-copy {
  font-size: 18px;
  color: #43372f;
}

.hero-media {
  flex: 1 1 360px;
  background-color: #eaded0;
  padding: 12px;
}

.hero-media img {
  width: 100%;
  height: 340px;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background-color: #1f1f1f;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #1f1f1f;
  color: #1f1f1f;
}

.section {
  padding: 40px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 14px;
}

.magazine-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.col-wide {
  flex: 2 1 420px;
}

.col-narrow {
  flex: 1 1 240px;
}

.card {
  background-color: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 170px;
  border-radius: 12px;
}

.price-tag {
  font-weight: 700;
  color: #824e2b;
}

.split-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  background-color: #f1e6d8;
  padding: 28px;
  border-radius: 20px;
}

.split-highlight img {
  width: 100%;
  height: 240px;
  border-radius: 18px;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1458642849426-cfb724f15ef7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 50px 24px;
  color: #fff;
  position: relative;
}

.background-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(45, 33, 27, 0.72);
}

.background-panel .page {
  position: relative;
}

.inline-image {
  background-color: #e6d7c6;
  padding: 8px;
  border-radius: 12px;
}

.inline-image img {
  width: 100%;
  height: 220px;
  border-radius: 10px;
}

.form-card {
  background-color: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8c8b7;
  font-size: 14px;
}

.form-status {
  font-size: 13px;
  color: #824e2b;
  min-height: 18px;
}

.footer {
  padding: 32px 24px;
  background-color: #fff;
  border-top: 1px solid #e6ddd4;
  font-size: 13px;
  color: #50443b;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #824e2b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background-color: #fff;
  border: 1px solid #e6ddd4;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  padding: 16px;
  border-radius: 14px;
  max-width: 320px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.muted {
  color: #6d5c4c;
}

.contact-block {
  background-color: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
