:root {
  --ink: #142f39;
  --muted: #52666e;
  --accent: #a96a27;
  --line: #d8e1e4;
  --soft: #f4f7f8;
  --warm: #faf6f0;
  --white: #fff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 17px/1.72 Arial, Helvetica, sans-serif;
}
a { color: inherit; text-underline-offset: 4px; }
a:focus-visible { outline: 3px solid #c68033; outline-offset: 5px; }
.wrap { width: min(1060px, calc(100% - 48px)); margin: auto; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 10; background: #fff; padding: 10px; }
.header { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand b { display: block; font: 700 21px/1.2 Georgia, serif; }
.brand small { display: block; color: var(--muted); font-size: 12px; }
nav { display: flex; align-items: center; gap: 24px; font-size: 14px; }
nav a { text-decoration: none; }
.nav-cta { border-bottom: 1px solid var(--accent); padding: 8px 0; }
.hero { padding: 72px 0 54px; max-width: 880px; }
.eyebrow { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; line-height: 1.13; letter-spacing: -.025em; }
h1 { font-size: clamp(40px, 6vw, 66px); margin: 12px 0 24px; }
h2 { font-size: clamp(30px, 4vw, 43px); margin: 54px 0 20px; }
h3 { font-size: 24px; margin: 0 0 10px; }
.lead { font-size: 21px; line-height: 1.58; color: #314b55; max-width: 820px; }
.meta { color: var(--muted); font-size: 14px; }
.notice { border-left: 4px solid var(--accent); background: var(--warm); padding: 20px 24px; margin: 30px 0; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; margin: 30px 0; }
.card { border: 1px solid var(--line); border-radius: 4px; padding: 28px; background: #fff; }
.card p:last-child { margin-bottom: 0; }
.card-link { display: inline-block; margin-top: 8px; font-weight: 700; color: #7d4d18; }
.article { max-width: 820px; padding-bottom: 68px; }
.article p, .article li { max-width: 78ch; }
.article li + li { margin-top: 8px; }
.formula { margin: 28px 0; padding: 24px; background: var(--soft); border: 1px solid var(--line); font-weight: 700; }
.cta { margin: 54px 0; padding: 34px; background: var(--ink); color: #fff; }
.cta h2 { margin-top: 0; color: #fff; }
.button { display: inline-block; margin-top: 10px; padding: 13px 20px; background: #fff; color: var(--ink); text-decoration: none; font-weight: 700; }
.sources { font-size: 14px; color: var(--muted); }
.footer { border-top: 1px solid var(--line); padding: 30px 0 44px; color: var(--muted); font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; }
.footer a { margin-right: 12px; }
@media (max-width: 760px) {
  .wrap { width: min(100% - 30px, 1060px); }
  .header { flex-direction: column; align-items: flex-start; gap: 14px; }
  nav { width: 100%; flex-direction: column; align-items: flex-start; gap: 8px; }
  nav a:not(.nav-cta) { display: none; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .footer-inner { flex-direction: column; }
}
