:root {
  color-scheme: light;
  --ink: #1f1a17;
  --muted: #5d5450;
  --accent: #c06b3e;
  --accent-dark: #8c4826;
  --surface: #f6f1eb;
  --surface-alt: #fffaf4;
  --highlight: #f2d7c7;
  --border: #e1d6cb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fffdfb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4%;
  gap: 18px;
  background: #fffdfb;
  border-bottom: 1px solid var(--border);
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.ad-disclosure {
  font-size: 12px;
  color: var(--muted);
  max-width: 260px;
  text-align: right;
}

.hero {
  position: relative;
  background: #2b2019;
  color: #fffaf4;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  padding: 80px 4%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 680px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  color: #f6efe8;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fffaf4;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border-color: #fffaf4;
  color: #fffaf4;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: var(--accent-dark);
  color: #fffaf4;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--surface);
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-frame {
  background: var(--highlight);
  border-radius: 18px;
  overflow: hidden;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame img {
  border-radius: 12px;
}

.story-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--surface);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  width: fit-content;
}

.pricing-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-shell {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.banner {
  background: var(--accent-dark);
  color: #fffaf4;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  font-size: 14px;
}

.footer {
  background: #1f1916;
  color: #f6efe8;
  padding: 50px 0;
}

.footer a {
  color: #f2d7c7;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.reference-list {
  font-size: 13px;
  color: #dcc8bb;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  background: var(--surface-alt);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.page-hero .container {
  gap: 16px;
}

.media-strip {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.media-strip img {
  border-radius: 16px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice {
  background: var(--highlight);
  padding: 16px;
  border-radius: 14px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-disclosure {
    text-align: left;
    max-width: 100%;
  }
}
