* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f6f2ee;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 6vw;
  background-color: #f1e8df;
  border-bottom: 1px solid #e2d7cd;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.9rem;
  color: #5a4b42;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
  padding: 6px 0;
}

.nav a:hover,
.nav a:focus {
  color: #8b4d3a;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 70vh;
}

.hero-text,
.hero-media {
  flex: 1 1 360px;
  padding: 60px 6vw;
}

.hero-text {
  background-color: #fef9f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero-media {
  background-color: #d9c6bb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 70px 6vw;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.media {
  padding: 16px;
  border-radius: 18px;
  background-color: #d8ccc3;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.muted {
  color: #4f4742;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: #e8d9cf;
  font-size: 0.85rem;
  color: #5a4b42;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  background-color: #8b4d3a;
  color: #fff;
  font-weight: 600;
  border: 2px solid transparent;
}

.btn.secondary {
  background-color: transparent;
  color: #8b4d3a;
  border-color: #8b4d3a;
}

.btn:hover,
.btn:focus {
  background-color: #6f3b2c;
  color: #fff;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background-color: #8b4d3a;
  color: #fff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background-color: #fff9f3;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #eadcd2;
}

.card .price {
  font-weight: 700;
  color: #8b4d3a;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.callout {
  background-color: #efe3da;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel {
  background-color: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid #eadcd2;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cdbdb1;
  font-size: 1rem;
  background-color: #fff;
}

textarea {
  min-height: 120px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background-color: #1f1b19;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 6vw;
  z-index: 5;
}

.sticky-cta .btn {
  background-color: #f5d4c4;
  color: #1b1b1b;
}

.sticky-cta .btn:hover,
.sticky-cta .btn:focus {
  background-color: #f0bfa8;
  color: #1b1b1b;
}

.footer {
  background-color: #f1e8df;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #e2d7cd;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #fff;
  border-radius: 18px;
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #eadcd2;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-col > div {
  flex: 1 1 300px;
}

.banner-note {
  font-size: 0.95rem;
  color: #5f564f;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background-color: #fff9f3;
  border: 1px solid #eadcd2;
}

.pricing-row strong {
  color: #8b4d3a;
}

.notice {
  padding: 18px;
  border-radius: 14px;
  background-color: #ede1d8;
}

.spacer {
  height: 24px;
}

.background-panel {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1485462537746-965f33f7f6a0?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.background-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(28, 22, 19, 0.62);
}

.background-panel .split {
  position: relative;
  z-index: 1;
}

.background-panel .muted {
  color: #f2e8e2;
}
