* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5c5c5c;
  --accent: #c66a2b;
  --accent-dark: #9b4e1f;
  --bg: #faf7f2;
  --panel: #ffffff;
  --sand: #efe4d2;
  --sage: #e6efe8;
  --stone: #f1f1f1;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 90%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0;
  background: var(--panel);
  border-bottom: 1px solid #e6e2da;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero {
  padding: 40px 0 64px;
}

.hero-inner {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1 1 320px;
  background: var(--sand);
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--panel);
}

.section.sage {
  background: var(--sage);
}

.section.stone {
  background: var(--stone);
}

.section-title {
  font-size: 2rem;
  margin: 0 0 16px;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media-box {
  flex: 1 1 320px;
  background: #ded3c2;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.offset-card {
  background: var(--panel);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  margin-left: auto;
  width: min(560px, 100%);
}

.story-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.story-item {
  flex: 1 1 220px;
  background: var(--panel);
  padding: 20px;
  border-radius: 16px;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-space {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent-dark);
}

.button.light {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid #d6c7b8;
}

.inline-link {
  text-decoration: underline;
  color: var(--accent-dark);
}

.form-wrap {
  background: var(--panel);
  padding: 28px;
  border-radius: 18px;
}

.form-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d8d1c6;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  background: #161616;
  color: #f3f3f3;
  padding: 40px 0;
}

.footer a {
  color: #f3f3f3;
}

.footer-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #c9c9c9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  width: min(360px, 88%);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 9;
}

.simple-hero {
  padding: 40px 0 32px;
}

.simple-hero h1 {
  margin: 0 0 12px;
}

.legal {
  background: var(--panel);
  padding: 28px;
  border-radius: 18px;
}

.list {
  padding-left: 20px;
}

@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
