* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f3ef;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  padding: 6px 0;
}

.ad-label {
  font-size: 0.75rem;
  color: #5c534b;
  border-left: 1px solid #cdbfb2;
  padding-left: 12px;
}

.hero {
  padding: 56px 0 72px;
  background: #efe7dc;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 55%;
}

.split-media {
  flex: 1 1 45%;
  background: #d9cfc4;
  padding: 16px;
  border-radius: 24px;
}

.hero-image {
  width: 100%;
  border-radius: 16px;
  height: 420px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: #6b5a4c;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 3.3rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

p {
  margin: 0 0 16px;
  line-height: 1.65;
  color: #3c332b;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1c1c1c;
  background: #1c1c1c;
  color: #f6f3ef;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.secondary {
  background: transparent;
  color: #1c1c1c;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: #f0e8de;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.spaced-top {
  margin-top: 32px;
}

.card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(30, 23, 17, 0.08);
}

.card-image {
  width: 100%;
  height: 180px;
  background: #e3d7cc;
  border-radius: 12px;
  overflow: hidden;
}

.card-price {
  font-weight: 600;
  color: #1f1a15;
}

.info-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.info-block {
  flex: 1 1 240px;
  padding: 20px;
  border-left: 2px solid #cdbfb2;
}

.testimonial {
  background: #fffdf9;
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 260px;
}

.form-wrapper {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 26px rgba(28, 24, 19, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c1b8;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: #6b5a4c;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.split-banner {
  background: #1f1a15;
  color: #f5efe8;
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-banner a {
  color: #f5efe8;
}

.background-panel {
  background: #e7dacf;
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.background-panel.bg-image {
  background-size: cover;
  background-position: center;
  color: #f8f5f0;
}

.background-panel.bg-image p {
  color: #f8f5f0;
}

.footer {
  background: #15120f;
  color: #f6f3ef;
  padding: 36px 0;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #f6f3ef;
  text-decoration: none;
}

.footer-meta {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #c9bdb1;
  max-width: 720px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(30, 23, 17, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1c1c1c;
  color: #f6f3ef;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 40;
}

.sticky-cta button {
  border: none;
  background: transparent;
  color: #f6f3ef;
  cursor: pointer;
  font-size: 0.9rem;
}

.sticky-close {
  font-size: 1rem;
  line-height: 1;
}

.page-hero {
  padding: 56px 0;
  background: #efe7dc;
}

.page-hero img {
  height: 320px;
  border-radius: 18px;
}

.simple-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.simple-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
}

.legal-content {
  padding: 48px 0 80px;
}

.legal-content h2 {
  margin-top: 28px;
}

.notice {
  background: #fff7ec;
  border-left: 3px solid #d3bfa8;
  padding: 16px;
  border-radius: 12px;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1505691723518-36a5ac3be353?w=1400&q=80");
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
