* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d1c1a;
  --muted: #6d655c;
  --surface: #f7f3ee;
  --accent: #8a4f3d;
  --accent-dark: #5d3328;
  --soft: #efe7dd;
  --highlight: #fff3e4;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: var(--surface);
  border-bottom: 1px solid #e5ddd2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.disclosure {
  padding: 6px 10px;
  background: var(--highlight);
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent-dark);
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 70px 6%;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft);
  padding: 22px;
  border-radius: 22px;
}

.split-media img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
}

.section {
  padding: 70px 6%;
}

.section.soft {
  background: var(--surface);
}

.section.highlight {
  background: var(--highlight);
}

.section .section-title {
  font-size: 26px;
  margin-bottom: 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #eadfd4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  background: #e8ddd3;
  padding: 10px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.two-col {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.two-col > div {
  flex: 1;
}

.form-panel {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #eadfd4;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 14px;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9cbbd;
  font: inherit;
  width: 100%;
}

.form-panel textarea {
  resize: vertical;
  min-height: 120px;
}

.footer {
  margin-top: auto;
  background: #15110e;
  color: #f3ede7;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 14px;
}

.footer a {
  color: #f3ede7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  color: #d8cfc7;
  max-width: 760px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eadfd4;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hero-tag {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.quote {
  font-style: italic;
  color: var(--accent-dark);
}

.map-panel {
  background: var(--soft);
  border-radius: 18px;
  padding: 24px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .split,
  .two-col {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
