@font-face {
  font-family: "Fraunces";
  src: url("/fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 600 700;
  font-display: swap;
}
:root {
  --green: #0D5B43;
  --green-soft: rgba(13, 91, 67, 0.08);
  --cream: #FAF7F1;
  --cream-2: #F7FAF6;
  --ink: #1C1B18;
  --muted: #6B675E;
  --card: #FFFFFF;
  --dark: #1A130D;
  --line: rgba(28, 27, 24, 0.12);
  --serif: "Fraunces", ui-serif, "New York", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
.wrap { max-width: 720px; margin: 0 auto; padding-inline: clamp(20px, 5vw, 40px); }
header {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 22px; gap: 16px;
  max-width: 1080px; margin: 0 auto; padding-inline: clamp(20px, 5vw, 48px);
}
.wordmark {
  font-family: var(--serif); font-size: 24px; font-weight: 600;
  color: var(--green); text-decoration: none; letter-spacing: -0.01em;
}
.header-cta {
  font-size: 14px; font-weight: 600; color: var(--green); text-decoration: none;
  padding: 8px 16px; border: 1.5px solid rgba(13, 91, 67, 0.35); border-radius: 999px;
  transition: background 200ms ease;
}
.header-cta:hover { background: var(--green-soft); }
a:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 6px; }
article { padding-block: clamp(28px, 5vh, 56px) clamp(48px, 8vh, 96px); }
.crumb { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.crumb a { color: var(--green); text-decoration: none; font-weight: 600; }
h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.6vw, 46px); font-weight: 700;
  line-height: 1.12; letter-spacing: -0.015em; text-wrap: balance;
}
.dateline { margin-top: 14px; font-size: 13.5px; color: var(--muted); }
.answer {
  margin-top: 26px;
  background: var(--card);
  border-left: 3px solid var(--green);
  border-radius: 0 16px 16px 0;
  padding: 20px 24px;
  font-size: 17px;
  box-shadow: 0 6px 22px rgba(28, 27, 24, 0.06);
}
h2 {
  font-family: var(--serif);
  font-size: clamp(23px, 3vw, 29px); font-weight: 600;
  letter-spacing: -0.01em; line-height: 1.2;
  margin-top: 46px; text-wrap: balance;
}
h3 { font-size: 17.5px; font-weight: 650; margin-top: 28px; }
article p { margin-top: 14px; color: #3a3833; }
article p.muted { color: var(--muted); }
article ul, article ol { margin: 14px 0 0 22px; color: #3a3833; }
article li { margin-top: 8px; }
article li b { color: var(--ink); }
article a { color: var(--green); font-weight: 600; }
table {
  margin-top: 18px; border-collapse: collapse; width: 100%;
  font-size: 14.5px; background: var(--card); border-radius: 14px; overflow: hidden;
  box-shadow: 0 6px 22px rgba(28, 27, 24, 0.06);
}
.table-scroll { overflow-x: auto; }
th, td { padding: 12px 14px; text-align: left; vertical-align: top; }
th { background: var(--green); color: #fff; font-weight: 600; font-size: 13.5px; }
tr + tr td { border-top: 1px solid var(--line); }
.tip {
  margin-top: 20px; padding: 16px 20px;
  background: var(--green-soft); border-radius: 14px;
  font-size: 15px;
}
.cta-panel {
  margin-top: 52px;
  background: var(--dark); color: #fff;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 44px);
  text-align: center;
}
.cta-panel h2 { margin-top: 0; color: #fff; }
.cta-panel p { color: rgba(255,255,255,0.65); margin-top: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ink);
  border-radius: 12px; padding: 11px 20px 11px 16px;
  text-decoration: none; margin-top: 22px;
}
.badge svg { width: 22px; height: 26px; flex: none; }
.badge .lines { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.badge .top { font-size: 10.5px; font-weight: 500; opacity: 0.8; }
.badge .bottom { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.related { margin-top: 46px; border-top: 1px solid var(--line); padding-top: 26px; }
.related h2 { margin-top: 0; font-size: 20px; }
.related ul { list-style: none; margin-left: 0; }
.related a { text-decoration: none; }
footer {
  max-width: 1080px; margin: 0 auto;
  padding: 36px clamp(20px, 5vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--muted);
}
footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--green); }
