
:root{
  --bg:#f7f7f5;
  --text:#141414;
  --muted:#6e6e6e;
  --card:#ffffff;
  --line:#e6e6e1;
  --accent:#c1121f;
  --dark:#111;
}
*{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(--text);
  background:var(--bg);
  line-height:1.6;
}
a{color:inherit}
.container{width:min(1120px,calc(100% - 40px));margin:auto}
.narrow{width:min(760px,100%)}
.site-header{
  position:sticky;top:0;z-index:10;
  background:rgba(247,247,245,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;min-height:72px;gap:24px}
.brand{font-size:1.45rem;font-weight:900;text-decoration:none;letter-spacing:-.04em}
.brand span{color:var(--accent)}
nav{display:flex;gap:22px;flex-wrap:wrap}
nav a{text-decoration:none;color:#333;font-weight:650;font-size:.95rem}
.hero{padding:72px 0 56px}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:46px;align-items:center}
.eyebrow{font-size:.78rem;font-weight:800;letter-spacing:.14em;color:var(--accent)}
h1{font-size:clamp(3rem,7vw,6.4rem);line-height:.93;letter-spacing:-.065em;margin:.2em 0}
h2{font-size:clamp(2rem,4vw,3rem);line-height:1.05;letter-spacing:-.04em}
h3{font-size:1.28rem;line-height:1.2;margin:.55rem 0}
.lead{font-size:1.25rem;color:#4b4b4b;max-width:650px}
.button{
  display:inline-block;margin-top:14px;padding:13px 18px;border-radius:999px;
  background:var(--dark);color:white;text-decoration:none;font-weight:750
}
.hero-card,.card{background:var(--card);border:1px solid var(--line);border-radius:22px;overflow:hidden}
.image-placeholder,.thumb{
  min-height:250px;
  display:grid;place-items:center;
  color:white;font-weight:750;
  background:linear-gradient(135deg,#242424,#777);
}
.hero-card-body,.card-body{padding:22px}
.hero-card-body a{font-weight:800;text-decoration:none}
.tag{
  display:inline-block;font-size:.75rem;font-weight:800;
  padding:5px 9px;border-radius:999px;background:#f4e5e7;color:#8e0c15
}
.section{padding:64px 0}
.alt{background:#ecece8}
.section-head{display:flex;justify-content:space-between;align-items:end;gap:20px;margin-bottom:24px}
.section-head h2,.section-head p{margin:0}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.card .thumb{min-height:180px}
.card h3 a{text-decoration:none}
.card p{color:var(--muted)}
.split{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:start}
.list{display:grid;border-top:1px solid #d4d4cf}
.list a{display:flex;justify-content:space-between;padding:18px 0;border-bottom:1px solid #d4d4cf;text-decoration:none;font-weight:750}
footer{border-top:1px solid var(--line);padding:28px 0;color:#666;font-size:.9rem}
.footer-row{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap}
.article{width:min(780px,calc(100% - 40px));margin:64px auto}
.article h1{font-size:clamp(2.5rem,6vw,4.8rem)}
.article .meta{color:var(--muted)}
.article .cover{min-height:360px;margin:28px 0;border-radius:22px}
.article p,.article li{font-size:1.08rem}
.article h2{margin-top:2.2em}
.back{display:inline-block;margin-bottom:28px;text-decoration:none;font-weight:750}
.note{padding:18px 20px;border-left:4px solid var(--accent);background:white}
@media(max-width:800px){
  .hero-grid,.split,.cards{grid-template-columns:1fr}
  .hero{padding-top:46px}
  nav{display:none}
  .image-placeholder{min-height:210px}
}
