:root {
  color-scheme: light;
  --ink: #321c20;
  --muted: #725b60;
  --red: #7e1e2b;
  --paper: #fffaf5;
  --line: rgba(126, 30, 43, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.7 Georgia, "Times New Roman", serif;
}
a { color: var(--red); }
.info-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 245, .96);
  backdrop-filter: blur(10px);
}
.info-brand {
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}
.info-nav { display: flex; flex-wrap: wrap; gap: 16px; }
.info-nav a { font: 700 14px/1.2 system-ui, sans-serif; text-decoration: none; }
.info-main {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 90px;
}
.info-hero {
  margin-bottom: 56px;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(53, 20, 26, .08);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font: 800 13px/1.2 system-ui, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.16; }
h1 { margin: 0 0 16px; font-size: clamp(40px, 8vw, 70px); }
h2 { margin: 54px 0 12px; padding-top: 18px; font-size: clamp(28px, 5vw, 40px); }
h3 { margin: 28px 0 6px; font-size: 22px; }
p, ul { margin: 0 0 18px; }
li + li { margin-top: 8px; }
.lede { max-width: 660px; color: var(--muted); font-size: 21px; }
.price {
  margin: 26px 0;
  color: var(--red);
  font: 800 clamp(32px, 6vw, 52px)/1 system-ui, sans-serif;
}
.price small { display: block; margin-top: 10px; color: var(--muted); font-size: 14px; }
.cta {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font: 800 15px/1.2 system-ui, sans-serif;
  text-decoration: none;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 42px;
}
.fact {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.fact strong { display: block; margin-bottom: 4px; font: 800 15px/1.3 system-ui, sans-serif; }
.legal-note {
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  background: rgba(126, 30, 43, .05);
}
.info-footer {
  padding: 28px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font: 14px/1.6 system-ui, sans-serif;
}
.info-footer a { margin: 0 7px; }
@media (max-width: 640px) {
  .info-header { align-items: flex-start; flex-direction: column; }
  .fact-grid { grid-template-columns: 1fr; }
  .info-main { padding-top: 36px; }
}
