/* Base */
:root {
  --bg: #f9f6f2;
  --bg-contrast: #11110f;
  --text: #1b1b18;
  --muted: #5b5b55;
  --accent: #c86a3a;
  --accent-dark: #9e4a20;
  --card: #ffffff;
  --line: #e5ded4;
  --highlight: #f1e7da;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
  position: relative;
}

.section-tight {
  padding: 36px 0;
}

.section-dark {
  background: var(--bg-contrast);
  color: #f8f4ed;
}

.section-layer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  color: var(--muted);
}

.title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 12px 0 20px;
}

.subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

@media (min-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 860px) {
  .card-row {
    flex-direction: row;
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card-highlight {
  background: var(--highlight);
  border-color: transparent;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #efe1d3;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px dashed currentColor;
}

.nav {
  padding: 18px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: currentColor;
}

.hero {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.2)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat;
  padding: 96px 0 120px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  padding: 28px;
  border-radius: 18px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-strip span {
  font-size: 15px;
  color: var(--muted);
}

.quote {
  font-size: 20px;
  font-style: italic;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 860px) {
  .stats {
    flex-direction: row;
  }
}

.stat-item {
  flex: 1;
  padding: 16px;
  background: #f0ebe4;
  border-radius: 12px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 18px;
}

.form-wrap {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--accent-dark);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.footer {
  background: #131311;
  color: #ece6dd;
  padding: 32px 0 48px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.list-columns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 860px) {
  .list-columns {
    flex-direction: row;
  }
}

.list-columns ul {
  padding-left: 18px;
  margin: 0;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-stack img:last-child {
  margin-left: 24px;
}

.banner {
  background: #f0e3d8;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-step {
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  background: #fff;
  border-radius: 12px;
}

.notice {
  background: #fff3e8;
  border-radius: 16px;
  padding: 16px;
}
