:root {
  color-scheme: light;
  --ink: #1d1a18;
  --muted: #5e5650;
  --accent: #d26b2b;
  --accent-dark: #9f4a1f;
  --paper: #faf6f1;
  --stone: #efe7df;
  --sage: #d8e0d3;
  --sun: #f2d3a2;
  --shadow: rgba(24, 21, 18, 0.12);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 30px var(--shadow);
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

header {
  background: #fff;
  border-bottom: 1px solid #e7ded6;
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 0.75rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--ink);
}

.hero {
  background: linear-gradient(135deg, #fff, var(--sun));
}

.section {
  padding: 64px 24px;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.magazine-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.column {
  flex: 1 1 320px;
}

.column.narrow {
  flex: 1 1 240px;
}

.column.wide {
  flex: 2 1 440px;
}

.tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.6rem, 3vw, 3.4rem);
}

h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(210, 107, 43, 0.25);
}

.button:hover {
  transform: translateY(-1px);
}

.button.ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  box-shadow: none;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid var(--accent-dark);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 14px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  box-shadow: none;
}

.split-banner {
  background: #fff;
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  box-shadow: 0 20px 40px var(--shadow);
}

.stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 140px;
  background: var(--stone);
  padding: 18px;
  border-radius: 14px;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 220px;
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid #efe1d7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
}

.section.tone-sage {
  background: var(--sage);
}

.section.tone-stone {
  background: var(--stone);
}

.section.tone-white {
  background: #fff;
}

.form-shell {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 16px 40px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd1c8;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  background: #1c1a18;
  color: #f4eee7;
  padding: 40px 24px 30px;
}

.footer a {
  color: #f2d3a2;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: #d3c7bd;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px var(--shadow);
  display: none;
  z-index: 50;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1c1a18;
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 220px;
  box-shadow: 0 18px 40px var(--shadow);
  z-index: 40;
}

.sticky-cta button {
  width: 100%;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid #efe1d7;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-number {
  font-weight: 700;
  color: var(--accent-dark);
}

.sidebar-note {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 30px var(--shadow);
}

@media (min-width: 900px) {
  .section-inner {
    gap: 40px;
  }

  .hero .section-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero .column {
    flex: 1 1 50%;
  }

  .sticky-cta {
    right: 36px;
    bottom: 36px;
  }
}

@media (max-width: 720px) {
  .nav-links {
    width: 100%;
    justify-content: space-between;
  }
}
