:root{
  --primary:#6d1e3f; --primary-dark:#4a1329; --primary-light:#8f2b52;
  --accent:#f3a847; --accent-hover:#db9238; --accent-soft:rgba(243,168,71,0.10);
  --bg:#fdf8ef; --bg-alt:#f5ebdb; --text:#2a1f24; --text-light:#6f5d63;
  --heading:#3d1225; --surface:#ffffff; --surface-hover:#fdf8ef;
  --border:#eadcc3; --border-light:#f5ecd8;
  --footer:#3d1225; --footer-accent:#f3a847; --footer-text:rgba(253,248,239,0.72);
  --footer-heading:#fdf8ef; --hero-text:#fdf8ef;
  --nav-bg:#fdf8ef; --nav-text:#3d1225;
  --card-shadow:0 4px 18px rgba(61,18,37,0.07); --card-shadow-hover:0 12px 36px rgba(61,18,37,0.14);
  --r-sm:8px; --r-md:14px; --r-lg:22px; --r-xl:32px;
}
*,*::before,*::after{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--text);
  font-family:'Inter', sans-serif;font-size:17px;line-height:1.7;-webkit-text-size-adjust:100%}
img{max-width:100%;height:auto}
h1,h2,h3,h4{font-family:'Fraunces', serif;color:var(--heading);line-height:1.25;margin:1.8em 0 .6em}
h1{font-size:clamp(1.85rem,4.2vw,2.6rem);margin-top:0}
h2{font-size:clamp(1.35rem,2.8vw,1.75rem)}
h3{font-size:1.2rem}
a{color:var(--primary);text-underline-offset:2px}
a:hover{color:var(--primary-dark)}
.wrap{max-width:1080px;margin:0 auto;padding:0 20px}
.skip{position:absolute;left:-9999px}
.skip:focus{left:8px;top:8px;background:var(--surface);padding:10px 14px;z-index:99}
.masthead{background:var(--nav-bg);color:var(--nav-text);position:sticky;top:0;z-index:50}
.masthead__inner{display:flex;flex-wrap:wrap;gap:12px 24px;align-items:center;
  justify-content:space-between;padding-block:14px}
.brand{display:flex;flex-direction:column;font-family:'Fraunces', serif;font-weight:700;
  font-size:1.2rem;color:var(--nav-text);text-decoration:none;letter-spacing:.01em}
.brand small{font-weight:400;font-size:.72rem;opacity:.75;letter-spacing:.04em}
.nav{display:flex;flex-wrap:wrap;gap:6px 18px}
.nav a{color:var(--nav-text);text-decoration:none;font-size:.94rem;padding:6px 2px;
  border-bottom:2px solid transparent}
.nav a:hover,.nav a[aria-current]{border-bottom-color:var(--footer-accent);color:#fff}
.hero{background:linear-gradient(135deg, rgba(109,30,63,0.88) 0%, rgba(74,19,41,0.78) 50%, rgba(243,168,71,0.55) 100%);color:var(--hero-text);padding:clamp(34px,7vw,72px) 0}
.hero h1{color:var(--hero-text);max-width:22ch}
.hero p{max-width:62ch;font-size:1.06rem;opacity:.94;margin:0}
.kicker{text-transform:uppercase;letter-spacing:.14em;font-size:.76rem;opacity:.85;margin:0 0 .5em}
.breadcrumb{font-size:.84rem;color:var(--text-light);padding:14px 0 0}
.breadcrumb ol{list-style:none;display:flex;flex-wrap:wrap;gap:8px;margin:0;padding:0}
.breadcrumb li+li::before{content:"›";margin-right:8px;opacity:.5}
.article{background:var(--surface);border:1px solid var(--border-light);
  border-radius:var(--r-lg);padding:clamp(20px,3.4vw,44px);margin:26px 0 40px;
  box-shadow:var(--card-shadow)}
.article figure{margin:1.6em 0}
.article figure{text-align:center}
.article figure img{border-radius:var(--r-md);width:auto;max-width:100%;height:auto}
.article img{width:auto;max-width:100%;height:auto}
.article figcaption{font-size:.84rem;color:var(--text-light);margin-top:.5em}
.article ul,.article ol{padding-left:1.25em}
.grid{display:grid;gap:20px;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  margin:24px 0 44px;padding:0;list-style:none}
.card{background:var(--surface);border:1px solid var(--border-light);border-radius:var(--r-md);
  overflow:hidden;box-shadow:var(--card-shadow);display:flex;flex-direction:column}
.card:hover{box-shadow:var(--card-shadow-hover)}
.card img{width:100%;aspect-ratio:16/10;object-fit:cover;display:block}
.card__b{padding:14px 16px 18px}
.card__b h3{margin:0 0 .35em;font-size:1.03rem}
.card__b a{text-decoration:none}
.card__b p{margin:0;font-size:.88rem;color:var(--text-light)}
.footer{background:var(--footer);color:var(--footer-text);margin-top:40px;
  padding:40px 0 22px;font-size:.9rem}
.footer h3{color:var(--footer-heading);font-size:.82rem;text-transform:uppercase;
  letter-spacing:.11em;margin:0 0 .7em}
.footer a{color:var(--footer-text);text-decoration:none}
.footer a:hover{color:var(--footer-heading)}
.footer ul{list-style:none;margin:0;padding:0;display:grid;gap:6px}
.footer__cols{display:grid;gap:26px;grid-template-columns:repeat(auto-fit,minmax(190px,1fr))}
.footer__base{border-top:1px solid rgba(255,255,255,.14);margin-top:28px;padding-top:16px;
  display:flex;flex-wrap:wrap;gap:8px 24px;justify-content:space-between;opacity:.85}
@media (max-width:640px){
  body{font-size:16px}
  .masthead__inner{flex-direction:column;align-items:flex-start}
  .nav{gap:4px 14px}
}
