* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1b1b1b;
  background: #f8f5f1;
  line-height: 1.6;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 12px;
  background: #f2eadf;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b4a2b;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #e8dbc9;
}

.hero-content {
  position: relative;
  padding: 96px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}

.hero-title {
  font-size: clamp(32px, 4vw, 54px);
  margin: 0;
}

.hero-subtitle {
  font-size: 18px;
  max-width: 560px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
}

.hero-media .image-frame {
  height: 100%;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: #f0e3d4;
}

.section-dark {
  background: #1f1b17;
  color: #f8f5f1;
}

.section-title {
  font-size: clamp(24px, 3vw, 38px);
  margin: 0 0 16px;
}

.section-lead {
  max-width: 680px;
  margin: 0 0 24px;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.column {
  flex: 1 1 280px;
}

.card {
  background: #fffdf9;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  margin: 0;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #6b4a2b;
}

.image-frame {
  background-color: #e8dbc9;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e9d5bb;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.center-cta {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #6b4a2b;
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn-light {
  background: #f2eadf;
  color: #1b1b1b;
  border: 1px solid #cbb59a;
}

.note {
  font-size: 14px;
  color: #5a4c40;
}

.form-wrap {
  background: #fffdf9;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ccb59d;
  font-size: 15px;
  background: #fff;
}

.form-message {
  font-size: 14px;
  color: #6b4a2b;
}

.footer {
  margin-top: auto;
  background: #1f1b17;
  color: #f8f5f1;
  padding: 40px 0;
}

.footer a {
  color: #f8f5f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  background: #fffdf9;
  padding: 10px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 30;
  max-width: 360px;
  background: #fffdf9;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal {
  font-size: 13px;
  color: #d6c6b4;
}

.wide-image {
  min-height: 240px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.center {
  text-align: center;
}

.muted {
  color: #5a4c40;
}

.no-underline {
  text-decoration: none;
}

@media (max-width: 720px) {
  .hero-content {
    padding: 72px 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
