*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1b18;
  --muted: #6a5f56;
  --accent: #d9633f;
  --accent-dark: #b74727;
  --cream: #f7f0e6;
  --sand: #efe3d2;
  --olive: #4c5a4d;
  --paper: #fffaf4;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1.5rem 0.5rem;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.5rem 3rem;
}

.hero-card {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title {
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border: none;
}

.hero-cta.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.section {
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--olive);
  color: white;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--muted);
}

.section.dark .eyebrow {
  color: #f5e9d7;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  background: white;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 15px 35px rgba(31, 27, 24, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card img {
  border-radius: 0.75rem;
}

.highlight {
  background: white;
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-badge {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 1rem;
  background: white;
}

.price-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid #d8c8b4;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.button {
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.footer {
  margin-top: auto;
  padding: 2rem 1.5rem;
  background: #1f1b18;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  background: var(--accent);
  color: white;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f1b18;
  color: white;
  padding: 1rem 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-button {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid white;
  background: transparent;
  color: white;
}

.cookie-button.accept {
  background: white;
  color: #1f1b18;
}

.meta-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.note {
  background: rgba(255, 255, 255, 0.12);
  padding: 1rem;
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .meta-grid {
    flex-direction: row;
  }

  .price-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .timeline {
    flex-direction: row;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
  }
}
