* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  padding: 24px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f7f4ef;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: #1a1a1a;
}

.hero {
  padding: 48px 6% 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6%;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-visual {
  flex: 1;
  position: relative;
}

.visual-hero,
.visual-glow,
.visual-setting,
.visual-detail {
  min-height: 280px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
}

.visual-hero {
  background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1200&q=80");
}

.visual-glow {
  background-image: url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1200&q=80");
}

.visual-setting {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1200&q=80");
}

.visual-detail {
  background-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1200&q=80");
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a5c3a;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #f7f4ef;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn.outline {
  background: transparent;
  color: #1a1a1a;
}

.btn:hover {
  transform: translateY(-2px);
}

.inline-cta {
  color: #7a5c3a;
  border-bottom: 1px solid #7a5c3a;
}

.section-contrast {
  background: #ffffff;
  border-top: 1px solid #ece4d8;
  border-bottom: 1px solid #ece4d8;
}

.section-dark {
  background: #1a1a1a;
  color: #f7f4ef;
}

.section-dark .btn {
  background: #f7f4ef;
  color: #1a1a1a;
  border-color: #f7f4ef;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff7eb;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #eadac2;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #7a5c3a;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.85rem;
}

.form-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #eadac2;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9b79e;
  font-size: 1rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #7a5c3a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.2);
}

.footer {
  padding: 32px 6%;
  background: #efe7db;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a1a1a;
  color: #f7f4ef;
  padding: 16px 6%;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: 1px solid #f7f4ef;
  background: transparent;
  color: #f7f4ef;
  padding: 8px 16px;
  border-radius: 999px;
}

.cookie-actions .accept {
  background: #f7f4ef;
  color: #1a1a1a;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  font-style: italic;
  border-left: 3px solid #7a5c3a;
  padding-left: 16px;
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mini-list span {
  color: #7a5c3a;
  font-weight: 700;
}

@media (min-width: 900px) {
  .top-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid .form-field {
    flex: 1;
  }
}
