:root {
  color-scheme: light;
  --bg: #fff9ed;
  --card: #ffffff;
  --ink: #402817;
  --muted: #765d49;
  --accent: #db762e;
  --line: #efd9bd;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; background: radial-gradient(circle at top, #fff4cd 0, var(--bg) 30rem); color: var(--ink); line-height: 1.7; }
a { color: #a94c1d; text-underline-offset: .18em; }
.site-header { width: min(1080px, calc(100% - 2rem)); margin: 0 auto; padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { color: var(--ink); font-weight: 850; font-size: 1.15rem; text-decoration: none; }
.brand span { color: var(--muted); font-weight: 600; }
nav { display: flex; flex-wrap: wrap; gap: .35rem; }
nav a { padding: .45rem .7rem; border-radius: 999px; color: var(--muted); font-weight: 700; text-decoration: none; }
nav a:hover, nav a[aria-current="page"] { background: #ffe0b9; color: #7b3516; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: .75rem; }
.language-picker { display: flex; padding: .2rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .72); }
.language-picker button { appearance: none; padding: .4rem .7rem; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font: inherit; font-size: .82rem; font-weight: 750; cursor: pointer; }
.language-picker button[aria-pressed="true"] { background: var(--accent); color: white; box-shadow: 0 3px 10px rgba(169, 76, 29, .2); }
main { width: min(880px, calc(100% - 2rem)); margin: 1rem auto 4rem; }
.card { margin-bottom: 1.5rem; padding: clamp(1.4rem, 4vw, 3.5rem); background: color-mix(in srgb, var(--card) 94%, #fff3d7); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 18px 50px rgba(102, 61, 24, .09); }
.eyebrow { margin: 0 0 .45rem; color: var(--accent); font-size: .84rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
h1 { margin: 0 0 1rem; font-size: clamp(2rem, 7vw, 3.8rem); line-height: 1.05; letter-spacing: -.035em; }
h2 { margin: 2.25rem 0 .45rem; font-size: 1.35rem; line-height: 1.3; }
h3 { margin: 1.35rem 0 .25rem; font-size: 1.05rem; }
p, li { color: var(--muted); }
.lead { max-width: 48rem; color: #59402c; font-size: 1.08rem; }
li + li { margin-top: .3rem; }
footer { padding: 0 1rem 3rem; color: var(--muted); text-align: center; }
@media (max-width: 680px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .header-actions { width: 100%; align-items: flex-start; flex-direction: column; }
  nav { margin-left: -.7rem; }
  .card { border-radius: 18px; }
}
@media print {
  .site-header, footer { display: none; }
  body { background: white; }
  main { width: 100%; margin: 0; }
  .card { box-shadow: none; border: 0; break-after: page; }
}
