:root {
  --paper: #f5efe4;
  --paper-strong: #fffaf1;
  --ink: #18201d;
  --muted: #59635d;
  --line: #d8cdbd;
  --orange: #ee6a2c;
  --orange-dark: #a83c12;
  --green: #123f32;
  --acid: #dfe969;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 4%, rgba(238, 106, 44, 0.17), transparent 28rem),
    linear-gradient(180deg, var(--paper-strong), var(--paper));
  font-family: "Aptos", "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

a { color: var(--orange-dark); text-underline-offset: 0.2em; }
a:hover { color: var(--orange); }

.site-nav,
.page-shell,
.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.28rem;
}

.brand span { color: var(--orange); }

.nav-links { display: flex; flex-wrap: wrap; gap: 16px; }
.nav-links a { color: var(--ink); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-decoration: none; text-transform: uppercase; }

.page-shell { padding: 84px 0 96px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  text-wrap: balance;
}

h1 { max-width: 900px; margin: 0; font-size: clamp(3rem, 8vw, 6.8rem); letter-spacing: -0.055em; }
h2 { margin: 0 0 22px; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.035em; }
h3 { margin: 0 0 10px; font-size: 1.35rem; }

.lede { max-width: 760px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.35rem); }

.answer-box {
  max-width: 840px;
  margin: 42px 0 0;
  padding: 24px 28px;
  border-left: 6px solid var(--orange);
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 16px 50px rgba(35, 25, 17, 0.08);
}

.answer-box p { margin: 0; }

.section {
  margin-top: 94px;
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.72);
}

.card .number { display: block; margin-bottom: 32px; color: var(--orange); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; }
.card p, .section > p { color: var(--muted); }

.dark {
  padding: 42px;
  border-radius: 28px;
  color: #fff9ef;
  background: var(--green);
}

.dark p { color: #dce7df; }
.dark a { color: var(--acid); }

.comparison { width: 100%; border-collapse: collapse; background: rgba(255, 250, 241, 0.68); }
.comparison th, .comparison td { padding: 18px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison th { background: var(--green); color: white; }

.faq-item { padding: 28px 0; border-top: 1px solid var(--line); }
.faq-item h2, .faq-item h3 { margin-bottom: 12px; font-size: clamp(1.4rem, 3vw, 2rem); }
.faq-item p { max-width: 820px; margin: 0; color: var(--muted); }

.source-list li { margin-bottom: 16px; }
.meta { color: var(--muted); font-size: 0.9rem; }

.cta {
  display: inline-flex;
  min-height: 48px;
  margin-top: 24px;
  padding: 11px 20px;
  align-items: center;
  border-radius: 999px;
  color: white;
  background: var(--orange-dark);
  font-weight: 800;
  text-decoration: none;
}

.cta:hover { color: white; background: var(--orange); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-nav { align-items: flex-start; flex-direction: column; padding: 20px 0; }
  .page-shell { padding-top: 58px; }
  .grid, .grid.two { grid-template-columns: 1fr; }
  .dark { padding: 28px; }
  .comparison { font-size: 0.88rem; }
  .comparison th, .comparison td { padding: 12px; }
  .site-footer { flex-direction: column; }
}
