* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1f;
  background-color: #f7f2ed;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  background-color: #f1e7db;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav a,
.nav span {
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background-color: #d7c2ad;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 6% 20px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 18px;
  border: none;
  background-color: #3b2c25;
  color: #fff;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
}

.button.secondary {
  background-color: #b07b56;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 36px 6%;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.section-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-content h2 {
  font-size: 2rem;
}

.section-content p {
  font-size: 1rem;
}

.media-frame {
  flex: 1 1 320px;
  background-color: #cbb7a4;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background-color: #fff8f1;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .media-frame {
  min-height: 160px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.highlight {
  background-color: #efe1d2;
  padding: 26px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inline-link {
  text-decoration: underline;
}

.form-section {
  padding: 32px 6% 60px;
  background-color: #f3e9de;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #bba99a;
  font-size: 0.95rem;
  background-color: #fff;
}

.footer {
  margin-top: auto;
  padding: 26px 6%;
  background-color: #2a201b;
  color: #f8f3ef;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #f8f3ef;
  text-decoration: underline;
}

.footer small {
  font-size: 0.85rem;
}

.split-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-block {
  flex: 1 1 220px;
  background-color: #fff8f1;
  padding: 16px;
  border-radius: 12px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background-color: #fff;
  border-top: 1px solid #d7c2ad;
  padding: 12px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fff8f1;
  border: 1px solid #bba99a;
  padding: 16px;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}
