:root {
  color-scheme: light;
  --ink: #1f1d1b;
  --muted: #5a524b;
  --paper: #f7f3ee;
  --sand: #efe7dc;
  --clay: #d9c6b0;
  --accent: #7a4f2b;
  --accent-dark: #5a3b22;
  --line: #d6cbbd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  border-bottom: 1px solid var(--line);
  background: #fff9f1;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

main {
  flex: 1;
}

.section {
  padding: 70px 24px;
}

.section.narrow {
  padding: 50px 24px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .media {
  flex: 1;
}

.hero {
  background: #f3ece4;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0 0 18px;
}

.hero p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 28px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.image-frame {
  background: var(--sand);
  padding: 12px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(31, 29, 27, 0.08);
}

.image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.story {
  background: #fff;
}

.trust {
  background-color: #3b2d23;
  background-image:
    linear-gradient(0deg, rgba(31, 29, 27, 0.6), rgba(31, 29, 27, 0.6)),
    url("https://images.unsplash.com/photo-1755082319260-1edd44b31d35?w=1400&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

.trust .copy p {
  color: #f2efe9;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.pill {
  display: inline-flex;
  align-items: center;
  background: var(--clay);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #2f261f;
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.details .detail {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
}

.footer {
  background: #201d1a;
  color: #efe7dc;
  padding: 48px 24px;
}

.footer a {
  color: #efe7dc;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d1c6b8;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
  max-width: 620px;
  box-shadow: 0 10px 24px rgba(31, 29, 27, 0.12);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 110px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31, 29, 27, 0.2);
}

.page-hero {
  background: #f2e9dd;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 2.2rem;
}

.muted {
  color: var(--muted);
}

.contact-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 90px;
  }
}
