* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-header {
  background: #f1ede7;
  border-bottom: 1px solid #ded7cf;
}

.nav-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.4rem 0;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  align-items: center;
}

.ad-label {
  margin-left: auto;
  background: #2e2b27;
  color: #f7f5f2;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  position: relative;
  color: #f7f5f2;
  padding: 4.5rem 0 3.5rem;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 23, 0.6);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: #fff;
  color: #1f1f1f;
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 420px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  background: #c08a5a;
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.btn.secondary {
  background: transparent;
  color: #1f1f1f;
  border: 1px solid #1f1f1f;
}

.link-cta {
  font-weight: 600;
  text-decoration: underline;
}

.section {
  padding: 3.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.section-alt {
  background: #fff;
}

.section-contrast {
  background: #2e2b27;
  color: #f7f5f2;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #e2ddd7;
}

.card.dark {
  background: #3b3630;
  color: #f7f5f2;
  border-color: rgba(255, 255, 255, 0.2);
}

.img-frame {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  background: #e5ded6;
}

.img-frame.tall {
  height: 320px;
}

.badge {
  background: #f1ede7;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.sticky-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sticky-card {
  position: sticky;
  top: 1.2rem;
  background: #f7f2ec;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid #e4d9ce;
}

.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid #e4d9ce;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #cfc6bb;
  font-family: inherit;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer {
  background: #1f1c19;
  color: #f7f5f2;
  padding: 2.5rem 0;
  margin-top: auto;
}

.footer a {
  color: #f7f5f2;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  padding: 1.2rem 1.4rem;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.muted {
  color: #756f68;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1721825159307-a59f6806d10e?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwxfHxTYW5pdCVDMyVBNHJsJUMzJUI2c3VuZ2VuJTJDJTIwZGllJTIwUiVDMyVBNHVtZSUyMHJ1aGlnJTIwdW5kJTIwZnVua3Rpb25hbCUyMG1hY2hlbnxkZXwwfDB8fHwxNzg0MDM0MTU2fDA&ixlib=rb-4.1.0&q=80&w=1080");
}

.story-bg {
  background-image: url("https://images.unsplash.com/photo-1763485956343-61b0163a3e7e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.texture-bg {
  background-image: url("https://images.unsplash.com/photo-1769356815043-ca0e8c571830?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

@media (min-width: 900px) {
  .nav-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
