* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1f1d;
  --muted: #5f5d57;
  --accent: #d87b2e;
  --accent-dark: #b96522;
  --cream: #f7f3ee;
  --stone: #e5dfd7;
  --charcoal: #262520;
  --mist: #faf9f6;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--mist);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 20px 10px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.2em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
}

.hero-card {
  background: var(--cream);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card h1 {
  font-size: 2.1rem;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.cta.secondary {
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.light {
  background: var(--cream);
}

.section.dark {
  background: var(--charcoal);
  color: #f2efe9;
}

.magazine-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid var(--stone);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.highlight {
  font-weight: 700;
  color: var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  padding: 18px;
  background: #fff;
  border-left: 4px solid var(--accent);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--stone);
  background: #fff;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--stone);
}

.form-wrap label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--stone);
  border-radius: 10px;
}

.form-wrap button {
  border: none;
  cursor: pointer;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  padding: 24px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--stone);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 10px 16px;
}

.cookie-actions .reject {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.cookie-actions .accept {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
}

@media (min-width: 900px) {
  .topbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    padding: 32px 60px 16px;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
    padding: 0 60px;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero img {
    flex: 1;
    border-radius: 18px;
    object-fit: cover;
  }

  .section {
    padding: 32px 60px;
  }

  .magazine-row {
    flex-direction: row;
    gap: 28px;
  }

  .magazine-row .column {
    flex: 1;
  }

  .card-list {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-item {
    flex: 1 1 220px;
  }

  .footer {
    padding: 32px 60px 50px;
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    max-width: 360px;
  }
}
