*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f1f1f;
  background: #f7f3ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 6vw 1rem;
  background: #fff6ea;
  border-bottom: 1px solid #e4d7c5;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #ffe1c6;
  font-size: 0.85rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #c56b32;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 6vw 4rem;
  background: #f2e6da;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: #1f1f1f;
  color: #fff;
  font-weight: 600;
  border: 2px solid #1f1f1f;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.btn-outline {
  background: transparent;
  color: #1f1f1f;
}

.section {
  padding: 3.5rem 6vw;
}

.section.alt {
  background: #fff;
}

.section.dark {
  background: #1f1f1f;
  color: #fef7ef;
}

.section-title {
  font-size: 1.9rem;
  margin: 0 0 1rem;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 220px;
  padding: 1.5rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card.dark {
  background: #2c2621;
  color: #fef7ef;
}

.card-price {
  font-size: 1.35rem;
  font-weight: 700;
}

.image-frame {
  background: #e2d2c0;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame.tall img {
  width: 100%;
  height: 360px;
}

.image-frame.wide img {
  width: 100%;
  height: 320px;
}

.image-frame.small img {
  width: 100%;
  height: 220px;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quote {
  padding: 1.5rem;
  border-left: 4px solid #c56b32;
  background: #fff3e5;
  border-radius: 12px;
}

.highlight {
  font-weight: 600;
  color: #c56b32;
}

.sticky-cta {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
  padding: 1.2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
  max-width: 260px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid #c7b8a7;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: #5d4f45;
}

.form-error {
  color: #b0482b;
  font-weight: 600;
  min-height: 1.2rem;
}

.footer {
  margin-top: auto;
  padding: 2rem 6vw 3rem;
  background: #1b1b1b;
  color: #fef7ef;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-bottom-color: #f2c39e;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  z-index: 20;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 2px solid #1f1f1f;
  background: #1f1f1f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .secondary {
  background: transparent;
  color: #1f1f1f;
}

.page-hero {
  padding: 3rem 6vw 2.5rem;
  background: #f2e6da;
}

.content-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.list {
  padding-left: 1.2rem;
  margin: 0;
}

.list li {
  margin-bottom: 0.6rem;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid #c56b32;
}

.inline-link:hover {
  border-bottom-color: #1f1f1f;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .story-grid {
    flex-direction: row;
  }

  .content-columns {
    flex-direction: row;
  }
}
