/* Inter — self-hosted (rsms.me) */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root{
  /* Swiss “paper” + ink */
  --bg: #ffffff;
  --text: #0b0c0f;          /* near-black */
  --muted: #3f444d;         /* tight gray */
  --rule: rgba(11,12,15,.14);

  /* Swiss blue (poster energy, but controlled) */
  --accent: #0047ab;

  --max: 760px;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  line-height:1.55;
  letter-spacing:-0.01em;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:28px 20px 56px;
}

/* Links */
a{color:inherit; text-decoration:underline; text-underline-offset:3px;}
a:hover{color:var(--accent);}
.link{ text-decoration:underline; text-underline-offset:3px; }

/* Header */
.site-header{margin-bottom:28px;}
.mast{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
  padding:8px 0 16px;
}
.brand a{
  text-decoration:none;
  font-weight:600;
  letter-spacing:0.10em;
  font-size:12px;
  text-transform:uppercase;
}
.brand-sub{
  margin-top:6px;
  font-size:12px;
  color:var(--muted);
}
.nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  justify-content:flex-end;
}
.nav a{
  text-decoration:none;
  font-size:14px;
}
.nav a:hover{
  text-decoration:underline;
  text-underline-offset:3px;
}

/* Swiss hairline */
.rule{
  height:1px;
  background:var(--rule);
  width:100%;
}

/* Main typography */
.title{
  margin:0 0 10px;
  font-size:42px;
  font-weight:600;
  letter-spacing:-0.03em;
}
.lede{
  margin:0 0 26px;
  font-size:18px;
  max-width:64ch;
}

.section{
  padding:22px 0;
  border-top:1px solid var(--rule);
}

.kicker{
  margin:0 0 10px;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--muted);
}

p{
  margin:0 0 12px;
  max-width:74ch;
}

.muted{color:var(--muted);}

.list{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:8px;
}

.item{ padding:10px 0; }

.item-title{
  margin:0 0 6px;
  font-size:18px;
  font-weight:600;
  letter-spacing:-0.01em;
}

.fineprint{
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
}

/* Footer */
.footer{
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid var(--rule);
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:13px;
  color:var(--muted);
}
.footer a{ text-decoration:none; }
.footer a:hover{ text-decoration:underline; text-underline-offset:3px; }

/* Responsive */
@media (max-width:560px){
  .mast{flex-direction:column; align-items:flex-start;}
  .nav{justify-content:flex-start;}
  .title{font-size:34px;}
  .lede{font-size:16px;}
}

