*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1e1c;
  background: #f7f4ef;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #6b5f4c;
  background: #efe7dc;
  padding: 6px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

main {
  flex: 1;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.tight {
  padding-top: 32px;
  padding-bottom: 32px;
}

.section-light {
  background: #ffffff;
}

.section-dark {
  background: #1f1e1c;
  color: #f7f4ef;
}

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 22px;
  color: #f7f4ef;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 88px 6vw 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 23, 20, 0.52);
}

.hero-content {
  position: relative;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 18px;
  border-radius: 28px;
  border: 1px solid transparent;
  background: #f2c94c;
  color: #1f1e1c;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border-color: #f2c94c;
  color: #f2c94c;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(31, 30, 28, 0.08);
}

.card.dark {
  background: #2c2a27;
  color: #f7f4ef;
  box-shadow: none;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.inline-link {
  color: #5c3b1e;
  text-decoration: underline;
  cursor: pointer;
}

.image-frame {
  background: #e5ddd1;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-small {
  width: 100%;
  max-width: 480px;
  height: 320px;
}

.image-tall {
  width: 100%;
  max-width: 520px;
  height: 380px;
}

.image-wide {
  width: 100%;
  height: 320px;
}

.form-panel {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7cbbd;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: #6b5f4c;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1f1e1c;
  color: #f7f4ef;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta button {
  background: #f2c94c;
  border: none;
  color: #1f1e1c;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.footer {
  padding: 32px 6vw 48px;
  background: #efe7dc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #5b5042;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(31, 30, 28, 0.2);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 24px;
  border: 1px solid #1f1e1c;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .primary {
  background: #1f1e1c;
  color: #f7f4ef;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1637666522102-bdb1c9d84b5f?w=1400&q=80");
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1633550233861-edf516679c90?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-dark-panel {
  background: #2c2a27;
  color: #f7f4ef;
}
