:root{
  --bg:#f8f7f3;
  --surface:#ffffff;
  --surface-soft:#f2eeea;
  --ink:#121212;
  --muted:#5b5651;
  --line:#ddd7d0;
  --accent:#741c1c;
  --accent-strong:#561414;
  --shadow:0 24px 60px rgba(18,18,18,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(116,28,28,.08), transparent 24%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  line-height:1.7;
}
a{color:inherit}
img{max-width:100%;display:block}
.container{width:min(1160px, calc(100% - 32px)); margin:0 auto}
.site-header{
  position:sticky;top:0;z-index:20;
  backdrop-filter:saturate(140%) blur(14px);
  background:rgba(248,247,243,.88);
  border-bottom:1px solid rgba(221,215,208,.72);
}
.topbar{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  min-height:82px;
}
.brand{display:flex;align-items:center;gap:14px;text-decoration:none}
.brand-mark{
  width:44px;height:44px;border-radius:14px;display:grid;place-items:center;
  background:var(--ink);color:#fff;font-weight:800;font-size:.9rem;letter-spacing:.08em
}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-text strong{font-size:1rem}
.brand-text span{color:var(--muted);font-size:.85rem}
.site-nav{display:flex;flex-wrap:wrap;gap:18px;font-size:.95rem;font-weight:600}
.site-nav a{text-decoration:none;color:var(--muted)}
.site-nav a:hover{color:var(--accent)}
.hero{padding:34px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(340px,.92fr);
  gap:18px;
  align-items:stretch;
}
.hero-copy,.hero-visual,.featured-article,.story-card,.footer-row{
  background:var(--surface);border:1px solid var(--line);border-radius:28px;box-shadow:var(--shadow)
}
.hero-copy{padding:38px}
.eyebrow{
  margin:0 0 12px;text-transform:uppercase;letter-spacing:.18em;
  font-size:.78rem;color:var(--accent);font-weight:800
}
h1,h2,h3,p{margin-top:0}
h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2rem, 3.6vw, 3.1rem);
  line-height:1;
  margin-bottom:16px;
  max-width:13ch;
  letter-spacing:-.03em;
}
.lead{
  font-size:1.05rem;color:var(--muted);max-width:62ch;margin-bottom:20px
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;align-items:center;margin-bottom:24px}
.button{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 18px;border-radius:999px;
  background:var(--accent);color:#fff;text-decoration:none;font-weight:700
}
.button:hover{background:var(--accent-strong)}
.text-link{
  color:var(--accent);text-decoration:none;font-weight:700
}
.hero-stats{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px
}
.hero-stats div{
  padding:14px 14px 12px;border-radius:18px;background:var(--surface-soft);border:1px solid var(--line)
}
.hero-stats strong{
  display:block;font-size:1.1rem;margin-bottom:6px
}
.hero-stats span{color:var(--muted);font-size:.92rem}
.hero-visual{
  min-height:100%;
  padding:14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.88)),
    radial-gradient(circle at top right, rgba(116,28,28,.16), transparent 30%),
    var(--surface-soft);
}
.hero-visual-frame{
  height:100%;
  min-height:320px;
  border:1px dashed rgba(116,28,28,.35);
  border-radius:24px;
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:
    linear-gradient(180deg, rgba(18,18,18,.03), rgba(18,18,18,.08));
  position:relative;
  overflow:hidden;
}
.hero-visual-label{
  display:inline-flex;
  align-self:flex-start;
  margin-bottom:auto;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(18,18,18,.08);
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--muted);
}
.hero-visual strong{
  display:block;
  font-size:1.45rem;
  line-height:1.1;
  margin-bottom:10px;
}
.hero-visual p{color:var(--muted);max-width:28ch}
.hero-visual img{
  position:absolute;
  inset:auto 18px 18px 18px;
  width:calc(100% - 36px);
  max-height:58%;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 18px 34px rgba(18,18,18,.12);
  opacity:.98;
}
.section{padding:18px 0 52px}
.section-heading{margin-bottom:18px}
.section-heading h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.6rem, 2.8vw, 2.4rem);
  line-height:1.05;
  margin-bottom:0;
}
.featured-article{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:0;
  overflow:hidden;
  margin-bottom:18px;
}
.featured-media{
  min-height:280px;
  background:
    radial-gradient(circle at 20% 25%, rgba(116,28,28,.85), transparent 0 13%, transparent 14%),
    linear-gradient(135deg, #171717 0%, #3a3a3a 55%, #7d7d7d 100%);
  display:flex;align-items:flex-end;justify-content:flex-start;
  padding:22px;
  color:#fff;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.featured-content{padding:28px}
.card-label{color:var(--accent);font-size:.78rem;text-transform:uppercase;letter-spacing:.16em;font-weight:800}
.featured-content h3,.story-card h3{font-size:1.38rem;line-height:1.12;margin-bottom:12px}
.featured-content h3 a{text-decoration:none}
.article-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.story-card{
  padding:22px;
  background:linear-gradient(180deg, #fff 0%, #fcfbf8 100%);
}
.story-card p{color:var(--muted)}
.story-card h3{
  font-family:Georgia,"Times New Roman",serif;
}
.story-card h3 a{text-decoration:none}
.editorial-band{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:18px;
  margin-top:18px;
  padding:22px 24px;
  border:1px solid var(--line);
  border-radius:28px;
  background:
    linear-gradient(135deg, rgba(116,28,28,.06), rgba(255,255,255,.96)),
    var(--surface);
}
.editorial-band h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.35rem;
  line-height:1.1;
  margin-bottom:0;
}
.editorial-band p{
  margin-bottom:0;
  color:var(--muted);
}
.site-footer{padding:0 0 34px}
.footer-row{
  display:flex;justify-content:space-between;gap:16px;
  padding:18px 20px;font-size:.95rem;color:var(--muted)
}
.article-page{padding:22px 0 56px}
.article-shell{
  padding:clamp(22px, 4vw, 48px);
}
.article-nav{
  display:flex;justify-content:space-between;gap:14px;
  padding-bottom:20px;margin-bottom:28px;border-bottom:1px solid var(--line);
  font-size:.95rem;font-weight:700
}
.article-nav a{text-decoration:none;color:var(--accent)}
.article-head{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(280px,.92fr);
  gap:20px;
  align-items:start;
}
.article-meta{
  color:var(--accent);font-size:.78rem;text-transform:uppercase;letter-spacing:.16em;font-weight:800;margin-bottom:12px
}
.article h1{
  max-width:14ch;
  font-size:clamp(1.9rem, 3.3vw, 2.8rem);
  line-height:1.02;
  margin-bottom:14px
}
.article .lead{max-width:none}
.article-aside{
  border:1px solid var(--line);
  border-radius:22px;
  background:var(--surface-soft);
  padding:18px 18px 16px;
}
.article-aside span{
  display:inline-block;
  margin-bottom:8px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.75rem;
  color:var(--muted);
  font-weight:800;
}
.article-aside strong{
  display:block;
  font-size:1.2rem;
  margin-bottom:8px;
}
.article-body{margin-top:24px}
.article-body p,.article-body li{color:var(--muted);font-size:1.03rem}
.article-body h2{
  margin:2rem 0 .8rem;
  font-size:1.4rem;
  line-height:1.15;
}
.article-body figure{margin:24px 0}
.article-body img{
  width:100%;
  border-radius:22px;
  border:1px solid var(--line);
  background:var(--surface-soft);
}
.article-body ul{padding-left:20px}
.article-body li{margin-bottom:.6rem}
@media (max-width: 920px){
  .hero-grid,.featured-article,.article-head,.article-grid,.editorial-band{grid-template-columns:1fr}
  .hero-stats{grid-template-columns:1fr}
  .site-nav{gap:14px}
}
@media (max-width: 640px){
  .topbar{flex-direction:column;align-items:flex-start;padding:14px 0}
  .hero{padding-top:18px}
  .hero-copy,.featured-content,.story-card,.article-shell,.editorial-band{border-radius:22px}
  .hero-copy,.featured-content,.story-card,.editorial-band{padding:22px}
  .hero-visual-frame{min-height:280px;padding:22px}
  .hero-visual img{inset:auto 14px 14px 14px;width:calc(100% - 28px);max-height:52%}
  .article-nav{flex-direction:column;align-items:flex-start}
  .footer-row{flex-direction:column;align-items:flex-start}
}
