* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1a17;
  --muted: #5b5349;
  --accent: #8a3a2e;
  --accent-soft: #f1e4d6;
  --paper: #faf7f2;
  --border: #e3d9cd;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 28px 6vw 18px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1 {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 30px 6vw 80px;
}

.section {
  display: flex;
  gap: 28px;
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(41, 31, 20, 0.08);
}

.section.soft {
  background: var(--accent-soft);
}

.section.dark {
  background: #2b2420;
  color: #f6efe6;
}

.section.highlight {
  background: #fff7ea;
  border: 1px solid var(--border);
}

.section .column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.section .column.tight {
  flex: 0.8;
}

.section .column.wide {
  flex: 1.2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.headline {
  font-size: 2.2rem;
  line-height: 1.2;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn.light {
  background: #fff;
  color: #2b2420;
  border-color: #fff;
}

.magazine-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.magazine-list li {
  list-style: none;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe3d6;
  font-size: 0.8rem;
  color: var(--muted);
  align-self: flex-start;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border);
}

.card strong {
  font-size: 1.1rem;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}

.quote {
  font-style: italic;
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #fff;
}

.form-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.footer {
  padding: 24px 6vw 80px;
  border-top: 1px solid var(--border);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.sticky-cta .sticky-inner {
  background: #2b2420;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  pointer-events: auto;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 80px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1506354666786-959d6d497f1a?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-visual span {
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 12px;
  border-radius: 999px;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

@media (max-width: 900px) {
  .section {
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
