* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #161616;
  --muted: #5b5b5b;
  --accent: #f26522;
  --accent-dark: #c54c16;
  --paper: #f6f2ed;
  --paper-strong: #efe7df;
  --shadow: rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fffdfb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  border-bottom: 1px solid #ece6df;
  background: #fffaf6;
}

.nav-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 18px 24px;
}

.brand-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-columns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-columns a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-columns a:hover {
  color: var(--accent);
}

.hero {
  padding: 48px 18px 32px;
  background: linear-gradient(120deg, #fff9f2 0%, #ffe9dd 100%);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.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);
  border: 1px solid var(--accent);
}

.section {
  padding: 40px 18px;
}

.section.alt {
  background: var(--paper);
}

.section.deep {
  background: #1f1c1a;
  color: #fef7f1;
}

.magazine-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.magazine-row .lead {
  font-size: 1.2rem;
  font-weight: 600;
}

.split-panels {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px var(--shadow);
}

.panel.highlight {
  background: #fff1e7;
}

.panel h3 {
  margin-bottom: 8px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-step span {
  font-weight: 700;
  color: var(--accent);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #efe7df;
}

.card strong {
  font-size: 1.1rem;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.cta-strip {
  background: #fbe2d2;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d2cc;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  z-index: 30;
}

.footer {
  padding: 32px 18px;
  background: #1a1918;
  color: #f8efe8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.footer small {
  color: #d1c7bf;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fffdf9;
  border: 1px solid #e9e1d9;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions button {
  width: 100%;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-block {
  background: #fff;
  border: 1px solid #efe7df;
  border-radius: 16px;
  padding: 18px;
}

@media (min-width: 760px) {
  .nav-shell {
    padding: 26px 48px 28px;
  }

  .nav-columns {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero {
    padding: 64px 48px 48px;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .section {
    padding: 56px 48px;
  }

  .magazine-row {
    flex-direction: row;
    gap: 40px;
  }

  .split-panels {
    flex-direction: row;
  }

  .timeline {
    flex-direction: row;
    gap: 24px;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 220px;
  }

  .cta-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .form-shell {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-shell > div,
  .form-shell > label,
  .form-shell > button {
    flex: 1 1 200px;
  }

  .form-shell textarea {
    flex: 1 1 100%;
  }

  .cookie-banner {
    left: 40px;
    right: auto;
    width: 340px;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .cookie-actions button {
    width: auto;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-block {
    flex: 1 1 240px;
  }

  .footer {
    padding: 40px 48px;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}
