*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1b16;
  background-color: #f6f2ee;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 20px 40px 10px;
  background-color: #f6f2ee;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.9rem;
  color: #6b4d3f;
  background-color: #efe1d4;
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 8px;
}

.nav-links a:hover {
  background-color: #efe1d4;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: #fdf8f4;
  background-color: #5a3e31;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(45, 28, 21, 0.55);
}

.hero-content {
  position: relative;
  max-width: 720px;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-content h1 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  background-color: #f2c28b;
  color: #2a1b12;
}

.btn.secondary {
  background-color: transparent;
  color: #fdf8f4;
  border-color: #fdf8f4;
}

.section {
  padding: 80px 40px;
}

.section.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 340px;
}

.split-media {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.image-frame {
  background-color: #e8d7c9;
  padding: 10px;
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.section-cta {
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  background-color: #fff7f0;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card .card-media {
  background-color: #e8d7c9;
  border-radius: 18px;
  overflow: hidden;
}

.card .card-media img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  color: #8a4b2a;
}

.highlight-panel {
  background-color: #3b2a21;
  color: #fdf8f4;
  border-radius: 32px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-image: url("https://images.unsplash.com/photo-1458642849426-cfb724f15ef7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.highlight-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(44, 28, 20, 0.6);
}

.highlight-panel > * {
  position: relative;
}

.form-section {
  background-color: #fdf8f4;
  border-radius: 32px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8c5b6;
  font-size: 1rem;
  background-color: #fff;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #8a4b2a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.footer {
  padding: 40px;
  background-color: #2f2119;
  color: #fdf8f4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background-color: #fff7f0;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 12;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #8a4b2a;
  background-color: #8a4b2a;
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background-color: transparent;
  color: #8a4b2a;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.meta-list li {
  background-color: #efe1d4;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  header,
  .section {
    padding: 60px 24px;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
