:root {
  --cream: #f7f1ea;
  --oat: #ede3d6;
  --surface: #fffdf8;
  --espresso: #3c342e;
  --muted: #756a61;
  --terracotta: #b56e4f;
  --border: #ddd0c4;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: linear-gradient(180deg, var(--cream), #fffaf4 62%);
  color: var(--espresso);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }
.shell {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 64px;
}
.nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
}
.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 22px;
}
.links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}
.eyebrow {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 253, 248, 0.72);
}
h1 {
  margin: 18px 0 14px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}
.subtitle {
  max-width: 680px;
  margin: 0 0 30px;
  font-size: clamp(18px, 3vw, 24px);
  color: var(--muted);
}
.card {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.88);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 18px 42px rgba(60, 52, 46, 0.08);
}
.section + .section { margin-top: 26px; }
h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}
p { margin: 0; color: var(--muted); }
.updated {
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--espresso);
  color: #fffaf4;
  font-weight: 800;
}
.button.secondary {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--border);
}
.footer {
  margin-top: 44px;
  color: var(--muted);
  font-size: 13px;
}
@media (max-width: 600px) {
  .shell { width: min(100% - 28px, 880px); padding-top: 28px; }
  .nav { align-items: flex-start; margin-bottom: 40px; }
  .links { justify-content: flex-end; gap: 12px; }
}
