:root {
  --red: #d90429;
  --red-dark: #a80822;
  --ink: #171717;
  --muted: #656565;
  --paper: #f7f5f1;
  --line: #d9d5ce;
  --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: "DM Sans", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: -60px; left: 16px; padding: 12px 16px; background: #fff; color: #000; }
.skip-link:focus { top: 12px; }
.alert-strip { background: var(--red); color: #fff; font: 700 12px/1 "Libre Franklin", sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.alert-strip__inner { min-height: 38px; display: flex; align-items: center; gap: 15px; }
.alert-strip a { font-size: 14px; letter-spacing: .03em; }
.alert-strip__location { margin-left: auto; opacity: .84; font-weight: 500; }
.site-header { position: relative; z-index: 20; background: #fff; border-bottom: 1px solid #e5e2dd; }
.masthead { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 16px; }
.brand-cross { width: 45px; height: 45px; position: relative; flex: 0 0 auto; }
.brand-cross::before, .brand-cross::after { content: ""; position: absolute; background: var(--red); }
.brand-cross::before { width: 17px; height: 45px; left: 14px; top: 0; }
.brand-cross::after { width: 45px; height: 17px; top: 14px; left: 0; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font: 800 25px/1 "Libre Franklin", sans-serif; letter-spacing: -.04em; }
.brand-copy small { margin-top: 6px; font: 700 10px/1 "Libre Franklin", sans-serif; letter-spacing: .15em; color: #555; }
.site-nav { display: flex; align-items: center; gap: 34px; font: 600 14px/1 "Libre Franklin", sans-serif; }
.site-nav a:not(.nav-donate):hover { color: var(--red); }
.nav-donate { padding: 14px 21px; color: #fff; background: var(--red); }
.menu-button { display: none; border: 0; padding: 11px 14px; background: var(--ink); color: #fff; font: inherit; }

.hero { height: clamp(520px, 66vw, 700px); position: relative; background: #222; overflow: hidden; color: #fff; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { display: grid; align-items: end; opacity: 0; pointer-events: none; transition: opacity .75s ease; background: #222 var(--hero-image) center/cover no-repeat; }
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.79) 0%, rgba(0,0,0,.48) 45%, rgba(0,0,0,.07) 80%), linear-gradient(0deg, rgba(0,0,0,.42), transparent 50%); }
.hero-content { position: relative; z-index: 1; padding-bottom: 112px; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 9px; font: 700 12px/1 "Libre Franklin", sans-serif; letter-spacing: .14em; text-transform: uppercase; color: var(--red); }
.eyebrow { color: #fff; }
.eyebrow::before, .kicker::before { content: ""; width: 25px; height: 3px; background: currentColor; }
.hero h1 { max-width: 850px; margin: 18px 0 20px; font: 700 clamp(42px, 6.2vw, 82px)/.98 "Source Serif 4", serif; letter-spacing: -.045em; text-wrap: balance; }
.hero p { max-width: 650px; margin: 0 0 32px; font-size: clamp(17px, 2vw, 21px); line-height: 1.5; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 16px 21px; font: 700 13px/1 "Libre Franklin", sans-serif; letter-spacing: .04em; }
.button--light { color: #111; background: #fff; }
.button--red { color: #fff; background: var(--red); }
.button:hover { transform: translateY(-1px); }
.hero-controls { position: absolute; z-index: 5; right: 0; left: 0; bottom: 34px; display: flex; align-items: center; gap: 13px; }
.hero-controls > button { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.45); background: rgba(0,0,0,.25); color: #fff; font-size: 17px; cursor: pointer; }
.hero-dots { display: flex; gap: 8px; }
.hero-dots button { width: 25px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.4); cursor: pointer; }
.hero-dots button.is-active { background: #fff; }

.newsroom { padding-block: 88px 105px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; padding-bottom: 24px; border-bottom: 3px solid var(--ink); }
.section-heading h2 { margin: 10px 0 0; font: 700 clamp(36px, 4.4vw, 56px)/1 "Source Serif 4", serif; letter-spacing: -.035em; }
.section-heading > p { max-width: 340px; margin: 0 0 5px; color: var(--muted); font-size: 15px; }
.lead-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(280px, .8fr); gap: 42px; padding-block: 34px 46px; border-bottom: 1px solid var(--line); }
.lead-story { display: grid; grid-template-columns: minmax(270px, 1.15fr) minmax(250px, .85fr); gap: 32px; }
.lead-image { overflow: hidden; min-height: 430px; background: #ddd; }
.lead-image img, .story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.lead-image:hover img, .story-image:hover img { transform: scale(1.025); }
.lead-copy { align-self: center; }
.story-meta { display: flex; align-items: center; gap: 9px; margin-bottom: 13px; font: 700 10px/1.25 "Libre Franklin", sans-serif; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.story-meta span { color: var(--red); }
.story-meta span::after { content: "/"; margin-left: 9px; color: #999; }
.lead-copy h3 { margin: 0 0 17px; font: 700 clamp(30px, 3.2vw, 46px)/1.05 "Source Serif 4", serif; letter-spacing: -.035em; }
.lead-copy p, .story-card p { color: var(--muted); line-height: 1.65; }
.read-more { display: inline-block; margin-top: 12px; padding-bottom: 5px; border-bottom: 2px solid var(--red); color: var(--red); font: 700 12px/1 "Libre Franklin", sans-serif; letter-spacing: .06em; text-transform: uppercase; }
.briefs { border-top: 5px solid var(--red); }
.briefs-title { padding: 16px 0 11px; font: 800 12px/1 "Libre Franklin", sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.brief { padding: 21px 0; border-top: 1px solid var(--line); }
.brief h3 { margin: 0; font: 700 22px/1.15 "Source Serif 4", serif; }
.brief h3 a:hover, .story-card h3 a:hover, .lead-copy h3 a:hover { color: var(--red); }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 28px; padding-top: 46px; }
.story-image { display: block; aspect-ratio: 4/3; margin-bottom: 19px; overflow: hidden; background: #ddd; }
.story-card h3 { margin: 0 0 10px; font: 700 26px/1.1 "Source Serif 4", serif; letter-spacing: -.02em; }
.story-card p { margin: 0; font-size: 14px; }

.services { padding-block: 86px; color: #fff; background: #151515; }
.services-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 0; }
.services-intro { padding-right: 50px; }
.kicker--light { color: #fff; }
.services h2 { margin: 17px 0 18px; font: 600 41px/1.04 "Source Serif 4", serif; letter-spacing: -.03em; }
.services-intro p { max-width: 430px; color: #bdbdbd; line-height: 1.65; }
.service-item { padding: 8px 28px 0; border-left: 1px solid #444; }
.service-item > span { color: var(--red); font: 700 12px/1 "Libre Franklin", sans-serif; }
.service-item h3 { margin: 45px 0 13px; font: 700 23px/1.1 "Source Serif 4", serif; }
.service-item p { margin: 0; color: #aaa; font-size: 14px; line-height: 1.6; }
.help-banner { background: var(--paper); }
.help-banner__inner { min-height: 235px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.help-banner h2 { margin: 12px 0 5px; font: 700 clamp(38px, 5vw, 62px)/1 "Source Serif 4", serif; }
.help-banner p { margin: 0; color: var(--muted); }

.site-footer { padding-top: 62px; color: #ddd; background: #090909; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr .7fr; gap: 65px; }
.brand--footer .brand-copy strong { color: #fff; }
.brand--footer .brand-copy small { color: #aaa; }
.footer-grid p, .footer-grid address { max-width: 440px; color: #999; font-style: normal; line-height: 1.65; }
.footer-grid h2 { margin: 0 0 17px; color: #fff; font: 700 13px/1 "Libre Franklin", sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div > a:not(.brand) { display: block; margin-top: 12px; color: #fff; }
.footer-bottom { margin-top: 55px; padding: 20px 0 26px; border-top: 1px solid #292929; color: #777; font-size: 12px; }

.article-page { padding-block: 70px 110px; }
.article-header { max-width: 1000px; }
.back-link { display: inline-block; margin-bottom: 45px; color: var(--red); font: 700 12px/1 "Libre Franklin", sans-serif; text-transform: uppercase; letter-spacing: .08em; }
.article-header h1 { max-width: 960px; margin: 16px 0 25px; font: 700 clamp(44px, 6vw, 76px)/1 "Source Serif 4", serif; letter-spacing: -.045em; text-wrap: balance; }
.article-deck { max-width: 800px; margin: 0; color: var(--muted); font: 500 clamp(18px, 2.2vw, 23px)/1.5 "DM Sans", sans-serif; }
.article-figure { margin-top: 50px; height: min(65vw, 650px); overflow: hidden; background: #ddd; }
.article-figure img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: minmax(0, 720px) minmax(230px, 1fr); gap: 95px; padding-top: 55px; }
.article-body p { margin: 0 0 26px; font: 500 19px/1.8 "Source Serif 4", serif; }
.article-body p:first-child::first-letter { float: left; margin: 8px 8px 0 0; color: var(--red); font: 700 67px/.75 "Source Serif 4", serif; }
.article-aside { align-self: start; padding: 25px 0; border-top: 4px solid var(--ink); border-bottom: 1px solid var(--line); }
.article-aside p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.not-found { min-height: 55vh; padding-block: 100px; }
.not-found h1 { font: 700 54px/1.1 "Source Serif 4", serif; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; right: 20px; left: 20px; padding: 23px; background: #fff; box-shadow: 0 18px 40px rgba(0,0,0,.16); align-items: stretch; flex-direction: column; gap: 20px; }
  .site-nav.is-open { display: flex; }
  .nav-donate { text-align: center; }
  .lead-grid { grid-template-columns: 1fr; }
  .lead-story { grid-template-columns: 1fr 1fr; }
  .briefs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .briefs-title { grid-column: 1/-1; }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 45px 0; }
  .services-intro { grid-column: 1/-1; }
  .article-layout { gap: 45px; }
}

@media (max-width: 640px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .alert-strip__location { display: none; }
  .masthead { min-height: 76px; }
  .brand { gap: 11px; }
  .brand-cross { width: 36px; height: 36px; }
  .brand-cross::before { width: 14px; height: 36px; left: 11px; }
  .brand-cross::after { width: 36px; height: 14px; top: 11px; }
  .brand-copy strong { font-size: 20px; }
  .brand-copy small { font-size: 8px; }
  .hero { height: 610px; }
  .hero-shade { background: linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.35) 75%); }
  .hero-content { padding-bottom: 105px; }
  .hero h1 { font-size: 45px; }
  .section-heading { align-items: start; flex-direction: column; gap: 14px; }
  .newsroom { padding-block: 62px; }
  .lead-story { grid-template-columns: 1fr; }
  .lead-image { min-height: 360px; }
  .briefs, .story-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-intro { padding-right: 0; }
  .service-item { padding: 26px 0 0; border-left: 0; border-top: 1px solid #444; }
  .service-item h3 { margin-top: 22px; }
  .help-banner__inner { align-items: start; flex-direction: column; padding-block: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .article-page { padding-block: 45px 75px; }
  .article-header h1 { font-size: 45px; }
  .article-figure { width: 100%; height: 68vw; }
  .article-layout { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

