@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600&family=Source+Sans+3:wght@400;500;600&display=swap");

:root {
  --ink: #1a1f1c;
  --muted: #5c675f;
  --line: #d7ddd6;
  --paper: #f3efe6;
  --card: #fffcf7;
  --accent: #1c3d32;
  --accent-hover: #142c24;
  --gold: #9a7b3c;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
a { color: var(--accent); }
.wrap { width: min(920px, calc(100% - 40px)); margin: 0 auto; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 239, 230, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: Fraunces, Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.logo span { font-size: 12px; letter-spacing: 0.12em; font-weight: 600; }
nav { display: flex; gap: 20px; }
nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
nav a:hover, nav a.active { color: var(--ink); }

.hero { padding: 40px 0 8px; max-width: 760px; }
.kicker {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
h1, h2, h3 { font-family: Fraunces, Georgia, serif; font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(30px, 4.4vw, 44px); margin: 0 0 14px; }
h2 { font-size: 24px; margin: 0 0 10px; }
h3 { font-size: 18px; margin: 0 0 6px; }
.lede { font-size: 18px; color: var(--muted); margin: 0 0 20px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
}
.btn:hover { background: var(--accent-hover); }
.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn.pending {
  background: #8a948d;
  pointer-events: none;
  opacity: 0.72;
  cursor: not-allowed;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--card);
  margin: 24px 0 32px;
}
.stats div { padding: 16px 18px; border-right: 1px solid var(--line); }
.stats div:last-child { border-right: 0; }
.stats strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}
.stats span { color: var(--muted); font-size: 14px; }

.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 20px;
}
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card ul { margin: 8px 0 0; padding-left: 1.1rem; }

section { padding: 6px 0 28px; }
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: Fraunces, Georgia, serif;
  color: var(--gold);
  font-size: 16px;
}

.studies { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0 8px; }
.study small { color: var(--gold); font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; font-weight: 600; }
.study h3 { margin: 8px 0 6px; font-size: 20px; }
.study .meta { color: var(--muted); font-size: 14px; margin: 0 0 8px; }
.study .hit { margin: 12px 0 0; font-weight: 600; }
.tiers { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.tier .price {
  font-family: Fraunces, Georgia, serif;
  font-size: 30px;
  margin: 4px 0 2px;
}
.tier .meta { color: var(--muted); font-size: 14px; margin: 0 0 14px; }

.photo-rows { display: grid; gap: 10px; }
.photo-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 12px;
}
.photo-row img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  display: block;
}
.photo-row small {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.photo-row h3 { margin: 2px 0 4px; font-size: 17px; }
.photo-row p { margin: 0; font-size: 15px; color: var(--muted); }

table.example {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 15px;
}
table.example th, table.example td {
  text-align: left;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
}
table.example td:last-child, table.example th:last-child { text-align: right; }
table.example th { color: var(--muted); font-weight: 600; font-size: 13px; }
table.example tr:last-child td { border-bottom: 0; }

.disclaimer, .fine { font-size: 14px; color: var(--muted); }
.disclaimer {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 16px;
}
footer .legal {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.5;
  color: #9bb0a6;
}

footer {
  background: var(--accent);
  color: #d7e3dc;
  padding: 40px 0 48px;
  margin-top: 8px;
}
footer a { color: #fff; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; }
.foot h3 { color: #fff; }
.legal { margin-top: 24px; font-size: 13px; color: #9bb0a6; }

@media (max-width: 720px) {
  .stats, .grid, .foot, .tiers, .studies { grid-template-columns: 1fr; }
  .stats div { border-right: 0; border-bottom: 1px solid var(--line); }
  nav { gap: 12px; }
  .hero { padding-top: 28px; }
}
