 :root {
  --bg: #fbfaf7;
  --ink: #171717;
  --muted: #66615a;
  --line: #ddd6cc;
  --soft: #f2eee7;
  --accent: #0b5a4a;
  --accent-2: #b6872d;
  --white: #fff;
  --max: 1120px;
  --radius: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; background: var(--soft); padding: 2px 5px; border-radius: 6px; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(251,250,247,.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav { max-width: var(--max); margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }
.brand strong { letter-spacing: .08em; font-size: .95rem; }
.brand span { color: var(--muted); font-size: .78rem; }
.nav-links { display: flex; gap: 18px; align-items: center; font-size: .94rem; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 999px; background: var(--ink); color: var(--white); text-decoration: none; font-weight: 650; border: 1px solid var(--ink); }
.button:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.button.secondary { background: transparent; color: var(--ink); }
.button.secondary:hover { color: var(--white); background: var(--accent); border-color: var(--accent); }
.button.light { background: var(--white); color: var(--accent); border-color: var(--white); }
.button.light:hover { background: transparent; color: var(--white); }
.button.secondary-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
main { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.hero { padding: 88px 0 70px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 44px; align-items: end; }
.eyebrow { color: var(--accent-2); font-weight: 750; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; margin-bottom: 12px; }
h1,h2,h3 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(3rem, 8vw, 6.2rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); letter-spacing: -.045em; margin-bottom: 18px; }
h3 { font-size: 1.35rem; letter-spacing: -.025em; margin-bottom: 8px; }
p { margin: 0 0 18px; }
.lede { font-size: clamp(1.22rem, 2.1vw, 1.65rem); color: #2f2d2a; max-width: 780px; }
.hero-card { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.hero-card .date { font-size: 2rem; font-weight: 800; letter-spacing: -.04em; }
.hero-card small { color: var(--muted); display: block; margin-top: 6px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.section { padding: 54px 0; border-top: 1px solid var(--line); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card p, .muted { color: var(--muted); }
.two-col { display: grid; grid-template-columns: .72fr 1.28fr; gap: 36px; align-items: start; }
.list { padding-left: 20px; margin: 0; }
.list li { margin: 0 0 10px; }
.notice { padding: 18px 20px; border-radius: 16px; background: #fff8e8; border: 1px solid #ead6aa; color: #3c3120; margin: 24px 0; }
.page-head { padding: 64px 0 42px; }
.page-head h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.page-head .lede { margin-top: 18px; }
.rule-block { border-top: 1px solid var(--line); padding: 28px 0; }
.rule-block:first-child { border-top: 0; }
.meta-row { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.meta-label { color: var(--muted); font-weight: 750; }
.callout { background: var(--accent); color: var(--white); border-radius: var(--radius); padding: 28px; }
.callout a { color: var(--white); }
.big-email { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 750; letter-spacing: -.04em; }
.footer { margin-top: 64px; border-top: 1px solid var(--line); padding: 32px 24px; color: var(--muted); }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.small { font-size: .9rem; color: var(--muted); }
@media (max-width: 900px) {
  .nav { align-items: flex-start; }
  .nav-links { display: none; }
  .hero, .two-col, .meta-row { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
}
