

/* ============================================================
   FREEALKHALIDI.ORG — MERGED HOMEPAGE
   Base: free-alkhalidi.org visual identity
   Added: banner, who-is, his-words, echr, footer, improvements
   Fonts: Barlow Condensed (headlines) + Barlow (body)
   ============================================================ */

:root {
  /* Legacy variable names are now ALIASES of the system.css tokens, so both
     vocabularies share one source of truth. Resolved values are unchanged. */
  --bg:       var(--color-bg);
  --bg-2:     #111B2E;
  --bg-3:     #15233B;
  --bg-card:  var(--color-surface);
  --text:     var(--color-text);
  --text-dim: var(--color-text-dim);
  --text-faint: var(--color-text-faint);
  --red:      var(--color-accent);
  --red-dark: var(--color-accent-hover);
  --gold:     var(--color-highlight);
  --rule:     var(--color-border);
  --rule-2:   rgba(237,239,243,0.04);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── IMAGE PLACEHOLDERS ── */
.ph {
  background: linear-gradient(135deg,#1A2942,#0F1828);
  border: 2px dashed rgba(197,165,114,0.3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.62rem;
  font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; text-align: center;
  padding: 1rem; position: relative; overflow: hidden;
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 12px,rgba(197,165,114,0.025) 12px,rgba(197,165,114,0.025) 24px);
}
.ph-id {
  font-family: monospace; font-size: 0.6rem;
  background: rgba(197,165,114,0.15);
  padding: 0.18rem 0.45rem; border-radius: 2px;
  margin-bottom: 0.35rem; color: var(--gold);
}
.ph-label { color: rgba(237,239,243,0.7); font-size: 0.68rem; }
.ph-spec  { color: var(--text-faint); font-size: 0.58rem; margin-top: 0.3rem; font-weight:400; text-transform:none; letter-spacing:0; }

/* ── ANIMATIONS ── */
@keyframes fadeUp   { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulseRed { 0%,100%{box-shadow:0 0 0 0 rgba(228,0,43,.5)} 50%{box-shadow:0 0 0 7px rgba(228,0,43,0)} }
@keyframes tick     { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ============================================================
   UPDATE BANNER
   ============================================================ */
.update-bar {
  background: #0A0F1A;
  border-bottom: 1px solid rgba(228,0,43,.2);
  padding: .65rem 2rem;
  display: flex; align-items: center;
  justify-content: center; gap: 1rem;
  flex-wrap: wrap;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .06em;
}
.ub-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  animation: pulseRed 1.8s ease-in-out infinite;
}
.ub-date { color: var(--red); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .68rem; }
.ub-text { color: rgba(237,239,243,.8); }
.ub-text strong { color: #fff; }
.ub-link {
  color: var(--red); text-decoration: none;
  border: 1px solid rgba(228,0,43,.4);
  padding: .3rem .75rem; font-size: .65rem;
  font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; white-space: nowrap;
  transition: all .2s;
}
.ub-link:hover { background: var(--red); color: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,18,32,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  padding: 1rem 2rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.nav-brand {
  margin-right: auto;
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-brand-name {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: .02em; text-transform: uppercase;
}
.nav-brand-sub {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--red);
}
.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-link {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none;
  transition: color .2s;
}
.nav-link:hover { color: var(--text); }
.nav-cta {
  background: var(--red); color: #fff;
  padding: .6rem 1.3rem;
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; transition: background .2s;
}
.nav-cta:hover { background: var(--red-dark); }

/* ============================================================
   HERO  — preserves exact layout from existing site
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 580px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.hero-left {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem 4rem 0;
  animation: fadeUp .8s ease both;
}
.hero-kicker {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 1.2rem;
}
.hero-title {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: clamp(3.6rem, 7.2vw, 6.2rem);
  font-weight: 700; line-height: .98;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.hero-title .red-rule {
  display: block;
  border-bottom: 5px solid var(--red);
  padding-bottom: .3rem;
  margin-bottom: .4rem;
}
.hero-tagline {
  font-size: 1.05rem; font-weight: 400;
  color: var(--text-dim); margin-bottom: 2rem;
  line-height: 1.55; max-width: 460px;
}
.hero-tagline strong { color: var(--text); font-weight: 600; }
.btn-red {
  display: inline-block;
  background: var(--red); color: #fff;
  padding: .9rem 2rem;
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .9rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s; align-self: flex-start;
}
.btn-red:hover { background: var(--red-dark); }
.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--text);
  padding: .9rem 2rem;
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .9rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(237,239,243,.25);
  transition: border-color .2s;
}
.btn-ghost:hover { border-color: var(--text); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-right {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-portrait {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: right top;
  display: block;
}

/* ============================================================
   STATS BAR  — exact match to existing site
   ============================================================ */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  padding: 2rem;
}
.stat {
  text-align: center;
  border-right: 1px solid var(--rule);
  padding: .5rem 1rem;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: clamp(2.8rem,5vw,4rem);
  font-weight: 700; color: var(--text);
  line-height: 1; letter-spacing: -.01em;
  display: block;
}
.stat-num .accent { color: var(--red); }
.stat-num .plus   { font-size: .65em; color: var(--text-dim); }
.stat-label {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dim); margin-top: .35rem;
}
.stat-label .underline {
  color: var(--red);
  text-decoration: underline; text-underline-offset: 3px;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.sec-wrap { max-width: 1280px; margin: 0 auto; padding: 3.6rem 2rem; }
.sec-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: .6rem;
}
.sec-title {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .01em; margin-bottom: .8rem;
  line-height: 1.05;
}
.sec-rule { width: 100%; height: 1px; background: var(--rule); }

/* ============================================================
   LATEST UPDATES  — exact card style from existing site
   ============================================================ */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.update-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.update-card:hover { border-color: rgba(237,239,243,.2); transform: translateY(-3px); }
.uc-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.uc-img img, .uc-img .ph { width: 100%; height: 100%; object-fit: cover; }
.uc-body { padding: 1.2rem 1.4rem 1.4rem; }
.uc-tag {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--red); margin-bottom: .5rem;
}
.uc-title { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; line-height: 1.35; }
.uc-desc { font-size: .82rem; color: var(--text-dim); line-height: 1.55; margin-bottom: 1rem; }
.uc-read {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
}

/* ── News & Coverage: visual polish ───────────────────────────── */
.updates-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.update-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.update-card:hover { border-color: rgba(228,0,43,.35); transform: translateY(-2px); }
.uc-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.uc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .35s ease;
}
.update-card:hover .uc-img img { transform: scale(1.03); }
.uc-body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.uc-tag {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .45rem;
}
.uc-title {
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.38;
  margin-bottom: .5rem;
  color: var(--text);
}
.uc-desc {
  font-size: .78rem;
  color: var(--text-dim);
  line-height: 1.58;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.uc-read {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  align-self: flex-start;
}
.uc-read:hover { opacity: .8; }

.uc-read::after { content: '→'; transition: transform .2s; }
.uc-read:hover::after { transform: translateX(4px); }

/* ============================================================
   WHO IS — NEW SECTION
   ============================================================ */
.who-section {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem; align-items: start;
}
.who-text p {
  font-size: 1rem; color: rgba(237,239,243,.85);
  margin-bottom: 1.1rem; line-height: 1.75;
}
.who-text p:last-child { margin-bottom: 0; }

.fact-card {
  background: var(--bg);
  border: 1px solid var(--rule);
}
.facts-dashboard { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.fact-card-title { padding: .9rem 1.1rem .2rem; font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); }
.fact-row {
  display: grid; grid-template-columns: 95px 1fr;
  gap: .8rem; padding: .9rem 1.3rem;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.fact-row:first-child { padding-top: 1rem; }
.fact-row:last-child  { border-bottom: none; padding-bottom: 1rem; }
.fact-key {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-faint);
}
.fact-val { font-size: .9rem; color: var(--text); font-weight: 500; }
.fact-val.red { color: var(--red); font-weight: 700; }
.fact-val.gold { color: var(--gold); }

/* ============================================================
   LEGAL CHRONOLOGY — enhanced from existing
   ============================================================ */
.tl-outer { overflow-x: auto; padding: 2rem 0 .5rem; }
.tl-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(165px,1fr));
  gap: .9rem;
  min-width: 900px;
}
.tl-line {
  position: absolute; left: 0; right: 0; top: .55rem;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(228,0,43,.25) 10%,rgba(228,0,43,.25) 90%,transparent);
}
.tl-stop { position: relative; padding-top: 1.7rem; }
.tl-stop::before {
  content: ''; position: absolute; left: 0; top: .35rem;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--bg); border: 2px solid rgba(228,0,43,.35);
}
.tl-stop.active::before {
  background: var(--red); border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(228,0,43,.15);
}
.tl-when {
  font-size: .66rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: .3rem;
}
.tl-stop.active .tl-when { color: var(--red); }
.tl-what {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .95rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: .25rem;
  line-height: 1.2;
}
.tl-detail { font-size: .75rem; color: var(--text-faint); line-height: 1.45; }
.tl-chip {
  display: inline-block; background: var(--red); color: #fff;
  font-size: .52rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .12rem .42rem; margin-left: .4rem; vertical-align: middle;
}

/* ============================================================
   IN HIS OWN WORDS — NEW SECTION
   ============================================================ */
.his-words {
  background: linear-gradient(135deg,#0D1826 0%,#15233B 100%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hw-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.hw-ql {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 600; line-height: 1.35;
  color: var(--text); font-style: italic;
  margin-bottom: 2rem;
  position: relative; padding: 0 1.5rem;
}
.hw-ql::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem; color: var(--gold);
  position: absolute; left: -.3rem; top: -.8rem;
  line-height: 1; font-style: normal;
}
.hw-attr {
  display: inline-flex; align-items: center; gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(237,239,243,.1);
}
.hw-attr-name  { font-size: .9rem; font-weight: 700; }
.hw-attr-src   { font-size: .7rem; color: var(--text-faint); margin-top: .15rem; }
.hw-attr-src a { color: var(--gold); text-decoration: none; border-bottom: 1px dotted rgba(197,165,114,.4); }
.hw-all {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 2.5rem;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none;
  border-bottom: 1px solid rgba(237,239,243,.15);
  padding-bottom: .2rem;
  transition: color .2s, border-color .2s;
}
.hw-all:hover { color: var(--text); border-color: var(--text); }

/* ============================================================
   HOW CAN YOU HELP — enhanced from existing
   ============================================================ */
.help-section {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.help-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.2rem; margin-top: 2rem;
}
.help-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 1.6rem; position: relative;
  transition: border-color .2s;
}
.help-card:hover { border-color: var(--red); }
.help-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0);
  transform-origin: left; transition: transform .2s;
}
.help-card:hover::before { transform: scaleX(1); }
.help-num {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: 2.5rem; font-weight: 700;
  color: rgba(228,0,43,.2); line-height: 1;
  margin-bottom: .8rem;
}
.help-title {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: 1.05rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: .5rem;
}
.help-desc { font-size: .85rem; color: var(--text-dim); line-height: 1.55; }
.help-cta-row {
  display: flex; gap: 1rem; margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ============================================================
   PRESS KIT + GLOBAL ATTENTION side by side  — enhanced
   ============================================================ */
.kit-attn {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3rem; align-items: start;
}
.press-kit {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 1.8rem;
}
.pk-item {
  display: flex; align-items: center; gap: .8rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: .88rem; color: var(--text-dim);
  text-decoration: none; transition: color .2s;
}
.pk-item:last-child { border-bottom: none; }
.pk-item:hover { color: var(--text); }
.pk-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}
.pk-btn {
  display: block; margin-top: 1.2rem;
  background: var(--red); color: #fff; text-align: center;
  padding: .75rem 1rem;
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; transition: background .2s;
}
.pk-btn:hover { background: var(--red-dark); }
.pk-portrait {
  width: 72%;
  aspect-ratio: 4/5;
  margin: 1.2rem auto 0;
  overflow: hidden;
  display: block;
  object-fit: cover;
}

.attn-quotes { display: flex; flex-direction: column; gap: 1.2rem; }
.attn-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.3rem; align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--rule);
  padding: 1.3rem 1.5rem;
  transition: border-color .2s;
}
.attn-card.reverse {
  grid-template-columns: 1fr 88px;
}
.attn-card.reverse .attn-portrait { order: 2; }
.attn-card.reverse .attn-body     { order: 1; }
.attn-card:hover { border-color: rgba(237,239,243,.18); }
.attn-portrait {
  width: 88px; height: 88px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
}
.attn-portrait img,
.attn-portrait .ph { width: 100%; height: 100%; object-fit: cover; }
.attn-name {
  font-size: .88rem; font-weight: 700;
  margin-bottom: .15rem;
}
.attn-role {
  font-size: .65rem; color: var(--text-faint);
  letter-spacing: .06em; margin-bottom: .6rem;
}
.attn-quote {
  font-size: .82rem; color: rgba(237,239,243,.8);
  line-height: 1.55; font-style: italic;
}

/* ============================================================
   SUPPORT LOGOS — all 20+ organizations
   ============================================================ */
.logos-section {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 3.5rem 2rem;
}
.logos-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dim); text-align: center;
  margin-bottom: 2rem;
}
.logos-wrap { max-width: 1280px; margin: 0 auto; }
.logos-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 1rem;
}
.logo-cell {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--rule);
  aspect-ratio: 2/1;
  display: flex; align-items: center; justify-content: center;
  padding: .5rem;
  transition: border-color .2s;
  overflow: hidden;
}
.logo-cell:hover { border-color: rgba(237,239,243,.2); }
.logo-cell img { max-width: 100%; max-height: 36px; object-fit: contain; filter: brightness(0) invert(.7); transition: filter .2s; }
.logo-cell:hover img { filter: brightness(0) invert(1); }
.logo-text {
  font-size: .58rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-dim); text-align: center; line-height: 1.4;
}

/* ============================================================
   LATEST MEDIA — exact style from existing site
   ============================================================ */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.media-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.media-card:hover { border-color: rgba(237,239,243,.2); transform: translateY(-3px); }
.mc-img { aspect-ratio: 16/9; overflow: hidden; }
.mc-img .ph, .mc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mc-body { padding: 1.1rem 1.3rem 1.3rem; }
.mc-source {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: .4rem;
}
.mc-title { font-size: .88rem; font-weight: 600; line-height: 1.35; margin-bottom: .5rem; }
.mc-desc  { font-size: .78rem; color: var(--text-dim); line-height: 1.5; margin-bottom: .9rem; }
.mc-read {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
}
.mc-read::after { content: '→'; transition: transform .2s; }
.mc-read:hover::after { transform: translateX(4px); }

/* ============================================================
   ECHR SECTION — NEW
   ============================================================ */
.echr-section {
  background: linear-gradient(135deg,#1A0810 0%,#0B1220 100%);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--rule);
}
.echr-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem; align-items: center;
}
.echr-text p {
  font-size: .98rem; color: rgba(237,239,243,.8);
  margin-bottom: 1rem; line-height: 1.7;
}
.echr-articles {
  display: flex; flex-direction: column; gap: .6rem;
  margin-top: 1.5rem;
}
.echr-art {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(228,0,43,.08);
  border: 1px solid rgba(228,0,43,.18);
  padding: .8rem 1.1rem;
}
.echr-art-num {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--red); white-space: nowrap;
}
.echr-art-text { font-size: .82rem; color: var(--text-dim); line-height: 1.4; }
.echr-case {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  padding: 2rem;
  text-align: center;
}
.echr-case-num {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: .02em; margin-bottom: .3rem;
}
.echr-case-name {
  font-size: .78rem; color: var(--text-dim);
  margin-bottom: 1.5rem; letter-spacing: .04em;
}
.echr-case-divider { height: 1px; background: var(--rule); margin: 1.2rem 0; }
.echr-case-stat { margin-bottom: .8rem; }
.echr-case-stat-num {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: 2.4rem; font-weight: 700; color: var(--gold);
  display: block; line-height: 1;
}
.echr-case-stat-label {
  font-size: .65rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   FOOTER — NEW professional footer
   ============================================================ */
.footer-main {
  background: #060C17;
  padding: 4rem 2rem 2.5rem;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: 1.8rem; font-weight: 700;
  text-transform: uppercase; line-height: 1;
  margin-bottom: .8rem;
}
.footer-brand-name span {
  border-bottom: 4px solid var(--red);
  padding-bottom: .1rem;
}
.footer-brand-desc {
  font-size: .85rem; color: var(--text-dim);
  line-height: 1.65; max-width: 380px;
  margin-bottom: 1.5rem;
}
.footer-echr {
  font-family: monospace; font-size: .75rem;
  color: var(--text-faint); letter-spacing: .06em;
  margin-bottom: .4rem;
}
.footer-col-title {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-links a {
  font-size: .82rem; color: var(--text-dim);
  text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-faint);
}
.footer-hash { color: var(--red); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero           { grid-template-columns: 1fr; }
  .hero-right     { order: -1; min-height: 380px; max-height: 460px; }
  .hero-right .ph { min-height: 380px !important; }
  .hero-portrait { height: 460px; width: 100%; }
  .hero-left      { padding: 2.5rem 0 3rem; }
  .who-grid       { grid-template-columns: 1fr; }
  .kit-attn       { grid-template-columns: 1fr; }
  .echr-grid      { grid-template-columns: 1fr; }
  .logos-grid     { grid-template-columns: repeat(4,1fr); }
  .stats-inner    { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .attn-card      { grid-template-columns: 72px 1fr; }
  .attn-card.reverse { grid-template-columns: 1fr 72px; }
  .attn-portrait  { width: 72px; height: 72px; }
}
@media (max-width: 768px) {
  .stats-inner    { grid-template-columns: repeat(2,1fr); }
  .updates-grid   { grid-template-columns: 1fr; }
  .help-grid      { grid-template-columns: 1fr; }
  .media-grid     { grid-template-columns: 1fr; }
  .stats-inner    { grid-template-columns: repeat(2,1fr); }
  .stat           { border-right: none; border-bottom: 1px solid var(--rule); padding: 1rem 0; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: none; }
  .logos-grid     { grid-template-columns: repeat(3,1fr); }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links      { display: none; }
  .nav, .sec-wrap, .update-bar, .logos-section { padding-left: 1.2rem; padding-right: 1.2rem; }
  .help-section .sec-wrap,
  .echr-section .sec-wrap,
  .his-words .sec-wrap,
  .footer-main { padding-left: 1.2rem; padding-right: 1.2rem; }
}


/* Final refinement pass */
body { font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif; }
.nav-brand-name, .hero-title, .sec-title, .stat-num, .help-num, .help-title, .echr-case-num, .echr-case-stat-num, .footer-brand-name { font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif; }
.hero-title { font-weight: 800; letter-spacing: -.035em; }
.sec-title { font-weight: 700; letter-spacing: -.015em; }
.btn-red, .btn-ghost, .nav-cta, .pk-btn { font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif; font-weight: 700; }
.stats-inner { grid-template-columns: repeat(4,1fr); padding: 1.35rem 2rem; }
.stat { padding: .35rem .8rem; }
.stat-num { font-size: clamp(2.1rem,4vw,3.2rem); }
.stat-label { font-size: .62rem; line-height: 1.45; }
.who-grid { grid-template-columns: 1fr 520px; gap: 2.5rem; }
.facts-dashboard { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.fact-card.compact .fact-row { grid-template-columns: 105px 1fr; padding: .72rem 1rem; }
.fact-card-title { padding: .9rem 1rem .15rem; font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif; font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); }
.kit-attn { grid-template-columns: .9fr 1.6fr; gap: 2rem; }
.press-kit { padding: 1.35rem; }
.pk-item { padding: .6rem 0; }
.compact-quote .sec-wrap { padding-top: 2.6rem; padding-bottom: 2.6rem; }
.compact-quote .hw-inner { max-width: 850px; }
.compact-quote .hw-ql { font-size: clamp(1.05rem,2vw,1.55rem); line-height: 1.55; margin-bottom: 1.1rem; }
.compact-quote .hw-ql::before { font-size: 2.6rem; top: -.55rem; }
.compact-quote .hw-attr { padding-top: .9rem; }
.compact-quote .hw-all { margin-top: 1rem; }
.compact-logos { padding: 2.2rem 2rem; }
.compact-logos .logos-label { margin-bottom: 1rem; }
.compact-logos .logos-grid { grid-template-columns: repeat(4,1fr); gap: .65rem; }
.compact-logos .logo-cell { aspect-ratio: 3.6/1; padding: .55rem; }
.logos-more { display: inline-block; margin-top: 1.1rem; color: var(--red); text-decoration: none; font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-brand-desc { max-width: 520px; }
@media (max-width: 1024px) {
  .who-grid { grid-template-columns: 1fr; }
  .facts-dashboard { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .facts-dashboard { grid-template-columns: 1fr; }
  .compact-logos .logos-grid { grid-template-columns: repeat(2,1fr); }
  .hero-title { font-size: clamp(3rem,14vw,4.5rem); }
}



/* ============================================================
   FINAL MOBILE + DESKTOP REFINEMENTS
   ============================================================ */
.update-bar { padding: .52rem 2rem; }
.sec-wrap { padding: 3rem 2rem; }
.hero { min-height: 540px; }
.hero-portrait { height: 540px; width: 100%; }
.hero-title { font-size: clamp(3.4rem, 7vw, 5.8rem); font-weight: 800; }
.hero-tagline { max-width: 620px; }
.stats-inner { grid-template-columns: repeat(4,1fr); padding: 1.15rem 2rem; }
.stat-num { font-size: clamp(1.9rem,3.6vw,3rem); }
.stat-label { font-size: .6rem; }

.help-section .sec-wrap { padding-top: 2.6rem; padding-bottom: 2.8rem; }
.help-section .sec-title { font-size: clamp(1.8rem,3.4vw,2.55rem); margin-bottom: 1.2rem; }
.help-grid { gap: 1rem; margin-top: 1.3rem; }
.help-card { padding: 1.2rem 1.25rem; min-height: 235px; }
.help-num { font-size: 2.05rem; margin-bottom: .55rem; }
.help-title { font-size: .94rem; line-height: 1.35; margin-bottom: .55rem; }
.help-desc { font-size: .82rem; line-height: 1.52; }
.help-cta-row { margin-top: 1.35rem; }
.help-cta-row .btn-red, .help-cta-row .btn-ghost { padding: .72rem 1.35rem; font-size: .75rem; }

.tl-outer { padding-top: 1.5rem; }
.tl-track { grid-template-columns: repeat(5, minmax(150px,1fr)); min-width: 790px; gap: .75rem; }
.tl-what { font-size: .86rem; }
.tl-detail { font-size: .7rem; }

.kit-attn { grid-template-columns: minmax(280px,.86fr) minmax(0,1.5fr); align-items: start; }
.press-kit { padding: 1.15rem; }
.pk-item { padding: .52rem 0; font-size: .8rem; }
.pk-btn { padding: .72rem .9rem; font-size: .75rem; }
.side-quote { margin-top: 1rem; background: rgba(255,255,255,.025); border: 1px solid var(--rule); padding: 1.05rem 1.15rem; }
.side-quote .sec-label { margin-bottom: .6rem; color: var(--gold); }
.side-quote p { font-size: .94rem; line-height: 1.65; color: rgba(237,239,243,.9); font-style: italic; }
.side-quote-attr { margin-top: .85rem; font-size: .72rem; color: var(--text-faint); }
.side-quote-attr a { color: var(--gold); text-decoration: none; }
.side-quote-link { display: inline-block; margin-top: .8rem; color: var(--red); text-decoration: none; font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.attn-quotes { gap: .85rem; }
.attn-card, .attn-card.reverse { grid-template-columns: 76px 1fr; padding: 1rem 1.1rem; }
.attn-card.reverse .attn-portrait, .attn-card.reverse .attn-body { order: initial; }
.attn-portrait { width: 76px; height: 76px; }
.attn-name { font-size: .82rem; }
.attn-role { font-size: .6rem; margin-bottom: .4rem; }
.attn-quote { font-size: .76rem; }
.voices-more { display: inline-block; margin-top: .4rem; color: var(--red); text-decoration: none; font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.timeline-more { margin-top: 1.1rem; border-bottom: 1px solid rgba(228,0,43,.25); padding-bottom: .15rem; }

@media (min-width: 900px) {
  .echr-grid { grid-template-columns: minmax(0,1.35fr) 360px; gap: 2rem; align-items: start; }
  .echr-case { padding: 1.45rem; }
  .echr-case-stat-num { font-size: 2rem; }
  .echr-text p { font-size: .92rem; }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { order: -1; min-height: 320px; max-height: 420px; }
  .hero-portrait { height: 420px; width: 100%; object-position: right top; }
  .hero-left { padding: 2.2rem 0 2.5rem; }
  .kit-attn { grid-template-columns: 1fr; }
  .side-quote { max-width: none; }
}

@media (max-width: 768px) {
  .sec-wrap { padding: 2.4rem 1.1rem; }
  .nav { padding: .85rem 1.1rem; }
  .nav-brand-name { font-size: 1rem; }
  .hero { padding: 0 1.1rem; }
  .hero-title { font-size: clamp(2.75rem, 13vw, 4rem); }
  .hero-tagline { font-size: .94rem; }
  .hero-right { min-height: 300px; max-height: 360px; }
  .hero-portrait { height: 360px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); padding: .7rem 1rem; }
  .stat { padding: .85rem .55rem; }
  .stat-num { font-size: clamp(1.75rem,8vw,2.4rem); }
  .stat-label { font-size: .56rem; }
  .updates-grid, .help-grid, .media-grid { grid-template-columns: 1fr; }
  .help-section .sec-wrap { padding-top: 2.15rem; padding-bottom: 2.25rem; }
  .help-card { min-height: auto; padding: 1rem; }
  .help-cta-row { flex-direction: column; }
  .help-cta-row .btn-red, .help-cta-row .btn-ghost { width: 100%; text-align: center; }
  .tl-outer { margin-left: -1.1rem; margin-right: -1.1rem; padding-left: 1.1rem; padding-right: 1.1rem; }
  .tl-track { min-width: 720px; }
  .attn-card, .attn-card.reverse { grid-template-columns: 58px 1fr; gap: .85rem; padding: .9rem; }
  .attn-portrait { width: 58px; height: 58px; }
  .attn-quote { font-size: .72rem; }
  .echr-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .echr-case { padding: 1.15rem; }
  .compact-logos .logos-grid { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
  .hero-title { font-size: clamp(2.35rem, 12vw, 3.4rem); }
  .hero-portrait { height: 320px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .fact-card.compact .fact-row { grid-template-columns: 90px 1fr; }
  .attn-card, .attn-card.reverse { grid-template-columns: 1fr; }
  .attn-portrait { display: none; }
}


/* ============================================================
   V6 MOBILE-FIRST COMPRESSION PASS
   ============================================================ */
/* Keep the homepage lighter: smaller update/media cards, four voices only, and a tighter ECHR block. */
.updates-grid, .media-grid { gap: 1rem; margin-top: 1.35rem; }
.uc-img { aspect-ratio: 16/7.2; }
.uc-body { padding: .9rem 1rem 1rem; }
.uc-tag { font-size: .56rem; margin-bottom: .35rem; }
.uc-title { font-size: .84rem; line-height: 1.32; margin-bottom: .35rem; }
.uc-desc { font-size: .74rem; line-height: 1.45; margin-bottom: .7rem; }
.uc-read { font-size: .62rem; }
.mc-img { aspect-ratio: 16/7.5; }
.mc-body { padding: .85rem 1rem 1rem; }
.mc-source { font-size: .54rem; margin-bottom: .35rem; }
.mc-title { font-size: .82rem; line-height: 1.32; margin-bottom: .35rem; }
.mc-desc { font-size: .72rem; line-height: 1.42; margin-bottom: .7rem; }
.mc-read { font-size: .62rem; }

.echr-section .sec-wrap { padding-top: 2.6rem; padding-bottom: 2.6rem; }
.echr-grid { align-items: start; }
.echr-articles-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .75rem;
  margin-top: .35rem;
}
.echr-art { padding: .65rem .85rem; }
.echr-art-num { font-size: .95rem; }
.echr-art-text { font-size: .74rem; }
.echr-case { min-height: 100%; }
.echr-case-stat-num { font-size: 1.85rem; }

@media (max-width: 768px) {
  .updates-grid, .media-grid { gap: .85rem; }
  .update-card, .media-card {
    display: grid;
    grid-template-columns: 108px 1fr;
    min-height: 132px;
  }
  .uc-img, .mc-img { aspect-ratio: auto; min-height: 100%; height: 100%; }
  .uc-img img, .mc-img img { height: 100%; object-fit: cover; }
  .uc-body, .mc-body { padding: .75rem .85rem; }
  .uc-title, .mc-title { font-size: .78rem; }
  .uc-desc, .mc-desc { font-size: .68rem; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .uc-tag, .mc-source, .uc-read, .mc-read { font-size: .56rem; }
  .echr-section .sec-wrap { padding-top: 2.2rem; padding-bottom: 2.25rem; }
  .echr-articles-wide { grid-template-columns: 1fr; gap: .55rem; }
  .echr-art { padding: .62rem .75rem; gap: .65rem; }
  .echr-art-text { font-size: .7rem; }
  .attn-quotes { gap: .7rem; }
  .attn-card { min-height: auto; }
}

@media (max-width: 420px) {
  .update-card, .media-card { grid-template-columns: 92px 1fr; }
  .uc-body, .mc-body { padding: .65rem .72rem; }
  .uc-desc, .mc-desc { -webkit-line-clamp: 2; }
  .echr-text p { font-size: .82rem; line-height: 1.55; }
}


/* ============================================================
   LAUNCH FINAL TOUCHES
   ============================================================ */
@keyframes chronologyPulse {
  0% { box-shadow: 0 0 0 0 rgba(228,0,43,.42); }
  70% { box-shadow: 0 0 0 9px rgba(228,0,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(228,0,43,0); }
}
.tl-stop.active::before {
  background: var(--red);
  border-color: var(--red);
  animation: chronologyPulse 2.2s ease-out infinite;
}
@media (min-width: 1100px) {
  .updates-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1099px) and (min-width: 769px) {
  .updates-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}



/* ============================================================
   FINAL LAUNCH PATCH: reordered action, compact support block, neutral ECHR title
   ============================================================ */
.kit-attn {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 1.15rem !important;
}
.kit-attn > div { min-width: 0; }
.kit-attn .sec-title { font-size: 1.45rem !important; margin-bottom: 1rem !important; }
.press-kit { padding: 1rem !important; }
.pk-item { padding: .46rem 0 !important; font-size: .76rem !important; line-height: 1.35 !important; }
.pk-btn { padding: .65rem .8rem !important; font-size: .7rem !important; margin-top: .85rem !important; }
.side-quote { padding: .9rem 1rem !important; margin-top: .85rem !important; }
.side-quote p { font-size: .82rem !important; line-height: 1.55 !important; }
.side-quote-attr { font-size: .66rem !important; }
.attn-quotes { gap: .62rem !important; }
.attn-card { padding: .78rem .85rem !important; grid-template-columns: 58px 1fr !important; gap: .72rem !important; }
.attn-portrait { width: 58px !important; height: 58px !important; }
.attn-name { font-size: .78rem !important; }
.attn-role { font-size: .55rem !important; margin-bottom: .28rem !important; }
.attn-quote { font-size: .68rem !important; line-height: 1.42 !important; }
.voices-more { font-size: .62rem !important; margin-top: .3rem !important; }

.help-section {
  background: #0A101B !important;
  border-top: 1px solid var(--rule) !important;
  border-bottom: 1px solid var(--rule) !important;
}
.help-section .sec-wrap {
  padding-top: 1.65rem !important;
  padding-bottom: 1.75rem !important;
}
.help-section .sec-label { margin-bottom: .35rem !important; }
.help-section .sec-title {
  font-size: clamp(1.35rem,2.4vw,1.9rem) !important;
  margin-bottom: .75rem !important;
}
.help-grid {
  grid-template-columns: repeat(3, minmax(0,1fr)) !important;
  gap: .75rem !important;
  margin-top: .75rem !important;
}
.help-card {
  padding: .82rem .9rem !important;
  min-height: 0 !important;
}
.help-num {
  font-size: 1.35rem !important;
  margin-bottom: .35rem !important;
}
.help-title {
  font-size: .78rem !important;
  line-height: 1.25 !important;
  margin-bottom: .35rem !important;
}
.help-desc {
  font-size: .7rem !important;
  line-height: 1.38 !important;
}
.help-cta-row {
  margin-top: .9rem !important;
  gap: .65rem !important;
}
.help-cta-row .btn-red,
.help-cta-row .btn-ghost {
  padding: .58rem 1rem !important;
  font-size: .66rem !important;
}

.echr-section .sec-title {
  font-size: clamp(1.55rem,3vw,2.3rem) !important;
}

@media (max-width: 900px) {
  .kit-attn { grid-template-columns: 1fr !important; }
}
@media (max-width: 768px) {
  .help-grid { grid-template-columns: 1fr !important; gap: .55rem !important; }
  .help-card { padding: .78rem .85rem !important; }
  .help-cta-row { flex-direction: column !important; }
  .help-cta-row .btn-red,
  .help-cta-row .btn-ghost { width: 100% !important; text-align: center !important; }
  .attn-card { grid-template-columns: 48px 1fr !important; }
  .attn-portrait { width: 48px !important; height: 48px !important; }
}
@media (max-width: 420px) {
  .attn-card { grid-template-columns: 1fr !important; }
  .attn-portrait { display: none !important; }
}



/* ============================================================
   LAUNCH FINAL V3 — Media Kit side card
   ============================================================ */
.final-support-grid {
  grid-template-columns: minmax(0, 1.55fr) minmax(240px, .65fr);
  gap: 1.35rem;
  align-items: start;
}
.sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 86px;
}
.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 1rem;
  transition: border-color .2s;
}
.featured-card:hover { border-color: rgba(228,0,43,.3); }
.featured-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: .85rem;
  background: linear-gradient(135deg,#1A2942 0%,#0F1828 100%);
  display: flex; align-items: center; justify-content: center;
}
.featured-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-card-img .ph-fallback {
  color: rgba(237,239,243,.3);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.featured-card-tag {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .55rem;
}
.featured-card-title {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}
.featured-card-link {
  display: inline-block;
  color: var(--red);
  text-decoration: none;
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
}
.featured-card-link:hover { color: #fff; }
.media-kit-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 1rem;
}
.media-kit-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: .9rem;
  background: rgba(255,255,255,.035);
}
.media-kit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.media-kit-card .sec-label {
  margin-bottom: .45rem;
  color: var(--gold);
}
.media-kit-card h2 {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: .55rem;
}
.media-kit-card p {
  color: var(--text-dim);
  font-size: .82rem;
  line-height: 1.5;
  margin-bottom: .85rem;
}
.media-kit-link {
  display: inline-block;
  color: var(--red);
  text-decoration: none;
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.media-kit-link:hover { color: #fff; }
@media (max-width: 1024px) {
  .final-support-grid { grid-template-columns: 1fr; }
  .sidebar-stack { position: static; }
}
@media (max-width: 768px) {
  .media-kit-card { padding: .9rem; }
  .media-kit-photo { aspect-ratio: 16 / 8; }
}



/* ============================================================
   LOCAL TIME + ANNOUNCEMENT STRIP
   ============================================================ */
.ub-local-time {
  color: var(--text-faint);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-left: 1px solid var(--rule);
  padding-left: .85rem;
  white-space: nowrap;
}
.announcement-strip {
  background: var(--bg-2);
  border-bottom: 1px solid var(--rule);
}
.announcement-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: .85rem 2rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
}
.announcement-label {
  color: var(--red);
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.announcement-text {
  color: rgba(237,239,243,.82);
  font-size: .82rem;
  flex: 1;
  min-width: 220px;
}
.announcement-inner a {
  color: var(--red);
  text-decoration: none;
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.announcement-inner a:hover { color: #fff; }
@media (max-width: 768px) {
  .ub-local-time {
    width: 100%;
    text-align: center;
    border-left: none;
    padding-left: 0;
    margin-top: .15rem;
  }
  .announcement-inner {
    padding: .85rem 1.1rem;
    display: block;
  }
  .announcement-label,
  .announcement-text,
  .announcement-inner a {
    display: block;
    margin-bottom: .32rem;
  }
  .announcement-inner a { margin-bottom: 0; }
}


/* ============================================================
   FINAL OVERRIDES — sticky top, compact news, side announcement
   ============================================================ */
.site-head {
  position: sticky;
  top: 0;
  z-index: 140;
  background: rgba(11,18,32,.98);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
.update-bar {
  background: #09111d;
  border-bottom: 1px solid rgba(237,239,243,.08);
  padding: .48rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
  font-size: .64rem;
}
.update-left, .update-right {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
}
.ub-track {
  color: rgba(237,239,243,.76);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ub-local-time {
  color: var(--text-dim);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  border-left: 1px solid rgba(237,239,243,.12);
  padding-left: .75rem;
}
.nav {
  position: relative;
  top: auto;
  z-index: auto;
  padding: .86rem 2rem;
}
.announcement-strip { display: none !important; }
.hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
  gap: 1.25rem;
}
.hero-side-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 1rem;
  align-items: stretch;
  justify-content: end;
  overflow: visible;
}
.hero-side-stack .hero-portrait {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: right top;
  min-width: 0;
}
.featured-article-card {
  align-self: center;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.featured-image {
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.featured-body {
  padding: .9rem .95rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.featured-label {
  color: var(--red);
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.featured-body h3 {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .95rem;
  line-height: 1.28;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.featured-body a {
  color: var(--red);
  text-decoration: none;
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.updates-grid {
  gap: .85rem !important;
  margin-top: 1.05rem !important;
}
.uc-img { aspect-ratio: 16 / 8.8 !important; }
.uc-body { padding: .78rem .85rem .88rem !important; }
.uc-tag { font-size: .55rem !important; margin-bottom: .32rem !important; }
.uc-title { font-size: .8rem !important; line-height: 1.34 !important; margin-bottom: .32rem !important; }
.uc-desc { font-size: .7rem !important; line-height: 1.42 !important; margin-bottom: .6rem !important; }
.uc-read { font-size: .6rem !important; }
.final-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .95fr);
  gap: 1rem !important;
  align-items: start !important;
}
.attn-quotes { gap: .8rem !important; }
.attn-card, .attn-card.reverse {
  padding: .9rem 1rem !important;
  grid-template-columns: 60px 1fr !important;
  gap: .78rem !important;
}
.attn-name { font-size: .86rem !important; }
.attn-role {
  font-size: .66rem !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
  letter-spacing: .03em !important;
  text-transform: none !important;
  margin-bottom: .34rem !important;
}
.attn-quote { font-size: .73rem !important; line-height: 1.45 !important; }
.media-kit-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem !important;
}
.media-kit-photo {
  aspect-ratio: 5 / 4;
  border: 1px solid var(--rule);
  overflow: hidden;
  background: var(--bg-card);
  margin-bottom: .95rem;
}
.media-kit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.help-section .sec-title {
  font-size: clamp(1.55rem, 3vw, 2.05rem) !important;
  margin-bottom: .9rem !important;
}
.help-grid { gap: .75rem !important; margin-top: 1rem !important; }
.help-card { padding: .95rem .95rem !important; }
.help-title { font-size: .92rem !important; }
.help-desc { font-size: .74rem !important; line-height: 1.45 !important; }
@media (min-width: 1100px) {
  .updates-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}
@media (max-width: 1099px) and (min-width: 700px) {
  .updates-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-side-stack {
    order: -1;
    grid-template-columns: 1fr 220px;
    min-height: 330px;
    max-height: none;
  }
  .hero-side-stack .hero-portrait { height: 360px; }
  .featured-article-card { min-height: auto; }
  .final-support-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 720px) {
  .update-bar { padding: .46rem .9rem; }
  .ub-track {
    font-size: .53rem;
    letter-spacing: .12em;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 56vw;
  }
  .ub-local-time { font-size: .49rem; padding-left: .55rem; }
  .nav { padding: .76rem 1rem; }
  .hero-side-stack { grid-template-columns: 1fr; gap: .75rem; }
  .hero-side-stack .hero-portrait { height: 320px; }
  .featured-image { aspect-ratio: 16 / 7; }
  .featured-body { padding: .8rem .85rem; }
  .featured-body h3 { font-size: .82rem; margin-bottom: .55rem; }
  .updates-grid { grid-template-columns: 1fr !important; }
  .attn-card, .attn-card.reverse { grid-template-columns: 52px 1fr !important; }
  .media-kit-card { padding: .95rem !important; }
}
@media (max-width: 520px) {
  .ub-track { max-width: 52vw; }
  .help-card { padding: .85rem .85rem !important; }
}


/* New update bar styles */
.ub-local-time-extra {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-dim);
  border-left: 1px solid var(--rule);
  padding-left: 1rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.ub-time { color: var(--text); font-weight: 700; font-variant-numeric: tabular-nums; }
.ub-sep { color: var(--text-faint); }
.ub-date { color: var(--text-dim); font-weight: 500; }
.ub-prefix {
  color: var(--red);
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .58rem;
  border-right: 1px solid rgba(228,0,43,.25);
  padding-right: .65rem;
  margin-right: .15rem;
  white-space: nowrap;
}
a.nav-brand { text-decoration: none; color: inherit; }
a.nav-brand:hover .nav-brand-name { color: var(--red); transition: color .2s; }

/* ════════════════════════════════════════════
   CONNECT SECTION — Substack + Social
   ════════════════════════════════════════════ */
.connect-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--rule);
  padding: 4rem 2rem;
}
.connect-wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
.substack-card {
  background: linear-gradient(135deg, #1A1308 0%, #2B1F0E 50%, #1A1308 100%);
  border: 1px solid rgba(255,108,55,0.18);
  border-radius: 4px;
  padding: 1.8rem 2rem;
  text-decoration: none;
  color: var(--text);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.substack-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  height: 100%; width: 3px;
  background: #FF6719;
  opacity: .96;
}
.substack-card:hover {
  border-color: rgba(255,108,55,0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,108,55,0.08);
}
.substack-icon {
  width: 48px; height: 48px;
  background: #FF6719;
  color: #fff;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.substack-text { min-width: 0; }
.substack-text .connect-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #FF6719;
  margin-bottom: .35rem;
}
.substack-text h3 {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: .35rem;
}
.substack-text p {
  font-size: .82rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}
.substack-arrow {
  font-size: 1.6rem;
  color: #FF6719;
  font-weight: 300;
  transition: transform .25s;
  flex-shrink: 0;
}
.substack-card:hover .substack-arrow { transform: translateX(6px); }

.social-block {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.social-block .connect-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.social-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
  margin-bottom: 1rem;
}
.social-icon {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .85rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--rule);
  border-radius: 3px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 600;
  transition: all .2s;
}
.social-icon svg { flex-shrink: 0; }
.social-icon:hover {
  color: var(--text);
  border-color: rgba(237,239,243,.25);
  background: rgba(255,255,255,.05);
}
.social-note {
  font-size: .72rem;
  color: var(--text-faint);
  text-align: left;
  padding-top: .9rem;
  border-top: 1px solid var(--rule);
}
.social-note strong { color: var(--red); font-weight: 700; }

@media (max-width: 860px) {
  .connect-wrap { grid-template-columns: 1fr; gap: 1.2rem; }
  .substack-card { grid-template-columns: auto 1fr; padding: 1.4rem 1.4rem; }
  .substack-arrow { display: none; }
}
@media (max-width: 480px) {
  .connect-section { padding: 3rem 1.2rem; }
  .substack-card { padding: 1.2rem; gap: 1rem; }
  .substack-icon { width: 40px; height: 40px; }
  .substack-text h3 { font-size: 1.1rem; }
  .social-icons { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   FRONT LINE DEFENDERS — Hero Recognition Badge
   ════════════════════════════════════════════ */
.fld-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(197,165,114,0.08);
  border: 1px solid rgba(197,165,114,0.28);
  border-left: 3px solid var(--gold);
  padding: .7rem 1.05rem;
  text-decoration: none;
  color: var(--text);
  margin: 0 0 1.6rem 0;
  max-width: 480px;
  border-radius: 2px;
  transition: all .22s ease;
}
.fld-badge:hover {
  background: rgba(197,165,114,0.14);
  border-color: rgba(197,165,114,0.55);
  transform: translateX(2px);
}
.fld-badge-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #0B1220;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fld-badge-text { display: flex; flex-direction: column; line-height: 1.25; }
.fld-badge-line1 {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.005em;
}
.fld-badge-line2 {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold);
  margin-top: .15rem;
}
@media (max-width: 600px) {
  .fld-badge { padding: .6rem .85rem; gap: .6rem; }
  .fld-badge-icon { width: 28px; height: 28px; }
  .fld-badge-line1 { font-size: .72rem; }
  .fld-badge-line2 { font-size: .6rem; }
}

/* ════════════════════════════════════════════
   FRONT LINE DEFENDERS — Lead Partner cell
   ════════════════════════════════════════════ */
.logo-cell-lead {
  position: relative;
  background: rgba(197,165,114,0.05) !important;
  border-color: rgba(197,165,114,0.3) !important;
}
.logo-cell-lead .logo-text { color: #fff !important; font-weight: 700 !important; }
.logo-lead-tag {
  position: absolute;
  top: 4px; right: 4px;
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(11,18,32,.85);
  padding: .15rem .4rem;
  border-radius: 2px;
  pointer-events: none;
}
.logo-cell-lead:hover {
  background: rgba(197,165,114,0.1) !important;
  border-color: rgba(197,165,114,0.55) !important;
}

/* ============================================================
   FINAL V2 — compact voices beside writings and media kit
   ============================================================ */
.compact-attention {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.compact-support-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(230px, .55fr) !important;
  gap: .9rem !important;
  align-items: start !important;
}
.compact-title {
  font-size: 1.55rem !important;
  margin-bottom: .9rem !important;
}
.compact-quotes {
  gap: .62rem !important;
}
.compact-voice {
  padding: .72rem .82rem !important;
  grid-template-columns: 52px 1fr !important;
  gap: .65rem !important;
}
.compact-voice .attn-portrait {
  width: 52px !important;
  height: 52px !important;
}
.compact-voice .attn-name {
  font-size: .82rem !important;
}
.compact-voice .attn-role {
  font-size: .58rem !important;
  margin-bottom: .24rem !important;
}
.compact-voice .attn-quote {
  font-size: .64rem !important;
  line-height: 1.36 !important;
}
.compact-side-stack {
  position: static !important;
  top: auto !important;
  gap: .75rem !important;
}
.mini-side-card {
  display: block;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: .75rem;
  transition: border-color .2s, transform .2s;
}
.mini-side-card:hover {
  border-color: rgba(228,0,43,.32);
  transform: translateY(-2px);
}
.mini-side-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg,#1A2942,#0F1828);
  margin-bottom: .7rem;
}
.mini-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.mini-side-card h2 {
  font-size: 1rem !important;
  line-height: 1.2 !important;
  margin: .25rem 0 .35rem !important;
}
.mini-side-card p {
  color: var(--text-dim);
  font-size: .72rem !important;
  line-height: 1.42 !important;
  margin-bottom: .45rem !important;
}
.compact-media-kit {
  height: auto !important;
}
@media (max-width: 900px) {
  .compact-support-grid {
    grid-template-columns: minmax(0, 1fr) 210px !important;
    gap: .75rem !important;
  }
  .compact-voice {
    grid-template-columns: 46px 1fr !important;
    padding: .65rem .72rem !important;
  }
  .compact-voice .attn-portrait {
    width: 46px !important;
    height: 46px !important;
  }
  .compact-voice .attn-quote {
    font-size: .6rem !important;
    line-height: 1.32 !important;
  }
}
@media (max-width: 620px) {
  .compact-support-grid {
    grid-template-columns: 1fr !important;
  }
  .compact-side-stack {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .mini-side-card h2 {
    font-size: .86rem !important;
  }
  .mini-side-card p {
    font-size: .64rem !important;
  }
}
@media (max-width: 420px) {
  .compact-side-stack {
    grid-template-columns: 1fr !important;
  }
}


/* Final V3 — linked supporting organization logos */
.logos-grid.linked-logos {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: .55rem !important;
}
.logo-cell.logo-link {
  min-height: 78px !important;
  padding: .55rem !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #DDE5EF !important;
  border: 1px solid rgba(34, 49, 74, 0.35) !important;
  border-radius: 6px !important;
  transition: border-color .2s, transform .2s !important;
}
.logo-cell.logo-link:hover {
  border-color: rgba(228,0,43,.35) !important;
  transform: translateY(-1px);
}
/* Full-fill & dark variants for homepage logo strip */
.logo-cell.logo-link.logo-cell--full { padding: 0 !important; }
.logo-cell.logo-link.logo-cell--full img { width:100% !important; height:100% !important; max-width:none !important; max-height:none !important; object-fit:contain !important; }
.logo-cell.logo-link.logo-cell--amnesty { background:#FFFF00 !important; border-color:rgba(0,0,0,.18) !important; }
.logo-cell.logo-link.logo-cell--hrw     { background:#1E78BD !important; border-color:rgba(30,120,189,.4) !important; }
.logo-cell.logo-link.logo-cell--fld     { background:#ffffff !important; }
.logo-cell.logo-link.logo-cell--dark    { background:#22314A !important; border-color:rgba(255,255,255,.10) !important; }

.logo-cell.logo-link img {
  max-width: 86%;
  max-height: 52px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.logo-cell.logo-link .logo-text {
  font-size: .58rem !important;
  line-height: 1.25 !important;
  color: #0F1928 !important;
}
.logo-cell.logo-link img + .logo-text {
  display: none;
}
@media (max-width: 700px) {
  .logos-grid.linked-logos { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
}


/* ============================================================
   FINAL V6 — integrated hero image, media kit crop, contact form
   ============================================================ */
.hero {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr) !important;
  min-height: 520px !important;
  overflow: hidden;
}
.hero-right {
  align-items: center !important;
  justify-content: flex-end !important;
  overflow: visible !important;
  isolation: isolate;
}
.hero-right::before {
  content: "";
  position: absolute;
  inset: 4% 0 0 12%;
  background: radial-gradient(circle at 70% 35%, rgba(228,0,43,.12), transparent 34%),
              linear-gradient(90deg, rgba(11,18,32,.75), rgba(11,18,32,0) 45%);
  z-index: 1;
  pointer-events: none;
}
.hero-portrait {
  width: 100% !important;
  max-width: 560px !important;
  height: 500px !important;
  object-fit: contain !important;
  object-position: right center !important;
  display: block !important;
  position: relative;
  z-index: 0;
  filter: contrast(1.02) saturate(.95);
}
.media-kit-photo img,
.compact-media-kit .mini-side-img img {
  object-fit: cover !important;
  object-position: center 38% !important;
  transform: none !important;
}
.contact-section {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  padding: 3rem 2rem;
}
.contact-wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr);
  gap: 1.4rem;
  align-items: start;
}
.contact-intro {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 1.2rem;
}
.contact-intro h2 {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: 1.55rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin: .35rem 0 .7rem;
}
.contact-intro p {
  color: var(--text-dim);
  font-size: .88rem;
  line-height: 1.62;
}
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 1.2rem;
  display: grid;
  gap: .85rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.form-field label,
.form-check {
  display: block;
  color: var(--text-dim);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: #09111D;
  border: 1px solid rgba(237,239,243,.14);
  color: var(--text);
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .9rem;
  padding: .78rem .85rem;
  outline: none;
}
.form-field textarea {
  min-height: 150px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(228,0,43,.65);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  margin: .1rem 0;
}
.form-check input {
  margin-top: .22rem;
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  flex-shrink: 0;
}
.form-check a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(228,0,43,.6);
}
.contact-submit {
  justify-self: start;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: .85rem 1.3rem;
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-submit:hover {
  background: var(--red-dark);
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .hero-left {
    padding: 2.6rem 0 1rem !important;
  }
  .hero-right {
    justify-content: center !important;
    margin-top: -1rem;
  }
  .hero-portrait {
    height: 360px !important;
    max-width: 420px !important;
    object-position: center center !important;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .hero-portrait {
    height: 280px !important;
    max-width: 360px !important;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-section {
    padding: 2.1rem 1rem;
  }
}



/* FINAL V14 — protests multi-image element */
.protests-feature {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  text-decoration: none;
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(260px,.68fr);
  gap: 1rem;
  padding: 1rem;
  margin-top: 1rem;
  transition: border-color .2s, transform .2s;
}
.protests-feature:hover {
  border-color: rgba(228,0,43,.35);
  transform: translateY(-2px);
}
.protests-copy h3 {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: 1.35rem;
  line-height: 1.12;
  text-transform: uppercase;
  margin: .35rem 0 .5rem;
}
.protests-copy p {
  color: var(--text-dim);
  font-size: .86rem;
  line-height: 1.58;
  max-width: 680px;
}
.protests-link {
  display: inline-block;
  color: var(--red);
  margin-top: .8rem;
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.protests-collage {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: .45rem;
  min-height: 190px;
}
.protest-shot {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,#111B2E,#0B1220);
  border: 1px solid var(--rule);
}
.protest-shot:first-child {
  grid-row: span 2;
}
.protest-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.protest-shot .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--text-faint);
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.protest-shot img:not([src]), .protest-shot img[src=""] { display: none; }
@media (max-width: 760px) {
  .protests-feature {
    grid-template-columns: 1fr;
    padding: .85rem;
  }
  .protests-collage {
    min-height: 220px;
  }
  .protests-copy h3 {
    font-size: 1.08rem;
  }
}


/* FINAL V16 — homepage protests uses five small adjacent photos */
.protests-feature {
  grid-template-columns: minmax(0,.82fr) minmax(300px,.78fr) !important;
}
.protests-collage {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  grid-template-rows: 1fr !important;
  gap: .38rem !important;
  min-height: 116px !important;
}
.protest-shot,
.protest-shot:first-child {
  grid-row: auto !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
}
.protest-shot img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
@media (max-width: 760px) {
  .protests-collage {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    min-height: 84px !important;
  }
}
@media (max-width: 430px) {
  .protests-collage {
    gap: .28rem !important;
  }
}
.press-library-go {
    grid-column: 2;
    padding: 0;
  }
  .press-library-copy h3 {
    font-size: .82rem;
  }
  .press-library-copy p {
    font-size: .65rem;
  }
}


/* FINAL FIX — exact protest image path, correct folder: images/protests/ */
.protest-shot img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  position: relative;
  z-index: 2;
}
.protest-shot .ph {
  z-index: 1;
  opacity: .35;
}



/* FINAL HOMEPAGE ONLY — hero image beside the text on the right */
.hero {
  grid-template-columns: minmax(0,1fr) minmax(340px,.9fr) !important;
  min-height: 540px !important;
  align-items: center !important;
  gap: 0 !important;
}
.hero-left {
  grid-column: 1 !important;
  grid-row: 1 !important;
  position: relative !important;
  z-index: 3 !important;
  padding-right: 1.2rem !important;
  margin: 0 !important;
}
.hero-right {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-content: flex-end !important;
  align-items: center !important;
  margin: 0 !important;
}
.hero-right::before {
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(11,18,32,.62) 0%, rgba(11,18,32,.16) 42%, rgba(11,18,32,0) 72%) !important;
}
.hero-portrait {
  width: 100% !important;
  max-width: 560px !important;
  height: 500px !important;
  object-fit: cover !important;
  object-position: center top !important;
  transform: none !important;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0,1fr) minmax(0,.82fr) !important;
    min-height: 450px !important;
    padding: 0 1rem !important;
  }
  .hero-left {
    grid-column: 1 !important;
    grid-row: 1 !important;
    padding: 1.5rem .6rem 1.3rem 0 !important;
    align-self: center !important;
  }
  .hero-right {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }
  .hero-portrait {
    height: 360px !important;
    width: 100% !important;
    max-width: none !important;
    object-position: center top !important;
  }
}
@media (max-width: 620px) {
  .hero {
    grid-template-columns: minmax(0,1fr) minmax(0,.78fr) !important;
    min-height: 400px !important;
  }
  .hero-left {
    padding: 1rem .4rem 1rem 0 !important;
  }
  .hero-title {
    font-size: clamp(2.25rem,11.4vw,3.55rem) !important;
    line-height: .94 !important;
  }
  .hero-tagline {
    font-size: .9rem !important;
    line-height: 1.4 !important;
    margin-bottom: 1.1rem !important;
  }
  .hero-kicker {
    font-size: .58rem !important;
    margin-bottom: .65rem !important;
  }
  .hero-portrait {
    height: 315px !important;
    width: 100% !important;
    object-position: center top !important;
  }
}

/* ════════════════════════════════════════════════════
   MOBILE RESCUE LAYER — fixes overflow, density, and
   broken stacking on small screens. Loaded last so it
   wins the cascade over earlier !important rules.
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Kill horizontal overflow everywhere */
  html, html { overflow-x: hidden; }
body { overflow-x: hidden !important; max-width: 100vw !important; }

  /* Top bar: compact the date, prevent overflow */
  .update-bar { padding: .45rem .85rem !important; gap: .6rem !important; }
  .ub-prefix, .ub-track { font-size: .55rem !important; letter-spacing: .1em !important; }
  .ub-headline { font-size: .58rem !important; max-width: 38vw !important; overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; }
  .ub-local-time, .ub-local-date { font-size: .5rem !important; letter-spacing: .06em !important; padding-left: .5rem !important; }
  .ub-local-date { display: none !important; }

  /* Hero: better mobile composition */
  .hero { padding-bottom: 1.5rem !important; }
  .hero-grid { gap: 1.2rem !important; }
  .hero-portrait-wrap { margin: 0 -1rem !important; }
  .hero-title { font-size: clamp(2.6rem, 13vw, 4rem) !important; line-height: .94 !important; }
  .hero-tagline { font-size: 1rem !important; line-height: 1.4 !important; }
  .hero-text { font-size: .9rem !important; }

  /* Stats bar: 2-column grid, equal heights */
  .stats-bar, .impact-stats, .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: .5rem !important; }
  .stat-item, .stat-card { padding: .9rem .7rem !important; }
  .stat-num, .stat-number { font-size: 1.85rem !important; }
  .stat-label { font-size: .56rem !important; line-height: 1.3 !important; }

  /* News & Coverage cards: tame oversized images */
  .news-card-thumb, .update-card-thumb { aspect-ratio: 16/9 !important; height: auto !important; max-height: 180px !important; }
  .news-card-thumb img, .update-card-thumb img { object-fit: cover !important; }

  /* Quick Facts grid: stack to single column */
  .qf-grid, .quick-facts-grid, .facts-grid { grid-template-columns: 1fr !important; gap: .65rem !important; }

  /* Help section, ECHR articles, connect section */
  .help-grid { grid-template-columns: 1fr !important; }
  .echr-articles { grid-template-columns: 1fr !important; gap: .6rem !important; }
  .connect-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
}

@media (max-width: 620px) {
  /* THE BIG FIX: 10-voice cards must stack and use full width */
  .compact-support-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .voices-panel { width: 100% !important; }
  .compact-side-stack { width: 100% !important; }

  /* Voice cards: full-width with portrait above text */
  .attn-card.compact-voice,
  .attn-card.compact-voice.reverse {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    padding: 1rem 1.1rem !important;
    gap: .7rem !important;
    text-align: left !important;
  }
  .attn-card.compact-voice .attn-portrait,
  .attn-card.compact-voice.reverse .attn-portrait {
    display: block !important;
    width: 56px !important;
    height: 56px !important;
    order: 1 !important;
    justify-self: start !important;
  }
  .attn-card.compact-voice .attn-body,
  .attn-card.compact-voice.reverse .attn-body {
    order: 2 !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .attn-card.compact-voice .attn-name { font-size: .92rem !important; margin-bottom: .15rem !important; }
  .attn-card.compact-voice .attn-role { font-size: .62rem !important; margin-bottom: .55rem !important; }
  .attn-card.compact-voice .attn-quote { font-size: .82rem !important; line-height: 1.5 !important; }

  /* Section padding tighter */
  .sec-wrap { padding: 1.8rem 1.1rem !important; }
}

@media (max-width: 480px) {
  /* Even tighter top bar */
  .ub-local-time { display: none !important; }
  .ub-headline { max-width: 50vw !important; }

  /* Nav brand smaller */
  .nav-brand-name { font-size: .9rem !important; }
  .nav-brand-sub { font-size: .5rem !important; }
}

/* ════════════════════════════════════════════════════
   MOBILE RESCUE LAYER 2 — additional fixes for hero,
   who section, protests, large titles, and final
   overflow protection on very small screens.
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* All large section titles: reduce and break at word boundaries (not letters) */
  .sec-title, .hero-title { word-wrap: break-word !important; overflow-wrap: break-word !important; hyphens: none !important; }
  .hero-title { word-break: keep-all !important; }
  .sec-title { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; line-height: 1.05 !important; }

  /* Who section: single column, dashboard below text */
  .who-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .who-text p { font-size: .92rem !important; line-height: 1.65 !important; }
  .facts-dashboard, .fact-card.compact { width: 100% !important; max-width: 100% !important; }

  /* Protests section: single column, copy on top, photos below */
  .protests-feature { grid-template-columns: 1fr !important; gap: 1rem !important; padding: 1rem !important; }
  .protests-copy h3 { font-size: 1.1rem !important; }
  .protests-collage { grid-template-columns: repeat(5, minmax(0,1fr)) !important; gap: .25rem !important; min-height: 80px !important; }

  /* News & Coverage: full-width single column cards */
  .news-grid, .updates-grid, .coverage-grid { grid-template-columns: 1fr !important; gap: .85rem !important; }

  /* Footer: stack columns */
  .footer-grid, .footer-cols { grid-template-columns: 1fr !important; gap: 1.2rem !important; text-align: left !important; }

  /* Logos section: tighter grid */
  .logos-grid { grid-template-columns: repeat(3, 1fr) !important; gap: .9rem !important; }

  /* Connect section icon row wraps */
  .social-icons, .connect-icons { flex-wrap: wrap !important; gap: .55rem !important; }

  /* All large hero titles cap on small screens */
  .hero-title { font-size: clamp(2.4rem, 11vw, 3.6rem) !important; }
}

@media (max-width: 420px) {
  /* Tighter hero title on narrow phones so ABDULRAHMAN fits on one line */
  .hero-title { font-size: clamp(2rem, 10vw, 2.8rem) !important; letter-spacing: -.045em !important; }
  /* Final overflow guard: no element exceeds viewport */
  * { max-width: 100vw !important; }
  img, video { height: auto !important; }
  .sec-wrap, .wrap, .hero-grid { padding-left: 1rem !important; padding-right: 1rem !important; }

  /* Tiny screens: shrink logos to 2 columns */
  .logos-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ═══════════════════════════════════════════════
   MOBILE VOICES SECTION — compact horizontal layout
   with portrait on left + name/role/quote on right
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .compact-quotes {
    display: flex !important;
    flex-direction: column !important;
    gap: .55rem !important;
  }
  .attn-card.compact-voice,
  .attn-card.compact-voice.reverse {
    display: grid !important;
    grid-template-columns: 56px 1fr !important;
    grid-template-rows: auto !important;
    gap: .8rem !important;
    padding: .85rem .95rem !important;
    align-items: start !important;
    text-align: left !important;
  }
  .attn-card.compact-voice .attn-portrait,
  .attn-card.compact-voice.reverse .attn-portrait {
    width: 56px !important;
    height: 56px !important;
    order: 0 !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin-top: 0 !important;
  }
  .attn-card.compact-voice .attn-body,
  .attn-card.compact-voice.reverse .attn-body {
    order: 0 !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .attn-card.compact-voice .attn-name {
    font-size: .82rem !important;
    margin-bottom: .12rem !important;
    line-height: 1.2 !important;
  }
  .attn-card.compact-voice .attn-role {
    font-size: .58rem !important;
    margin-bottom: .35rem !important;
    line-height: 1.3 !important;
  }
  .attn-card.compact-voice .attn-quote,
  .attn-card.compact-voice.reverse .attn-quote {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-size: .72rem !important;
    line-height: 1.42 !important;
    color: rgba(237,239,243,.78) !important;
  }
  .voices-more {
    text-align: center !important;
    padding: .85rem 1rem !important;
    font-size: .7rem !important;
    margin-top: .3rem !important;
  }
}


/* ════════════════════════════════════════════════════
   SIDEBAR CARD TITLES — institutional cold palette
   ════════════════════════════════════════════════════ */
.mini-side-card h2,
.sidebar-feature-card h2 {
  color: #D7DEE8 !important;
}

/* ════════════════════════════════════════════════════
   LOGO BADGES — CSS-only, no external dependencies
   ════════════════════════════════════════════════════ */
.logo-badge {
  display: flex;
  align-items: center;
  gap: .45rem;
  width: 100%;
  padding: 0 .45rem;
  overflow: hidden;
}
/* If logo img is hidden via onerror, show badge fallback inline */
.logo-cell.logo-link .logo-badge[style*="display:none"],
.logo-cell.logo-link .logo-badge[style*="display: none"] {
  display: none !important;
}
.logo-abbr {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .05em;
  color: var(--red);
  border-right: 2px solid rgba(228,0,43,.3);
  padding-right: .42rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.logo-name {
  font-family: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(237,239,243,.62);
  line-height: 1.3;
  overflow: hidden;
}

/* ════════════════════════════════════════════════════
   MOBILE HERO — robust single-column layout ≤768px
   Prevents ABDULRAHMAN word-break on any phone
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  .hero-left {
    order: 2 !important;
    grid-column: 1 !important;
    grid-row: 2 !important;
    padding: 1.8rem 1.2rem 2.2rem !important;
    z-index: auto !important;
  }
  .hero-right {
    order: 1 !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    height: 290px !important;
    max-height: 290px !important;
    min-height: 0 !important;
    overflow: hidden !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .hero-right::before { display: none !important; }
  .hero-portrait {
    width: 100% !important;
    max-width: 100% !important;
    height: 290px !important;
    object-fit: cover !important;
    object-position: center 15% !important;
  }
  .hero-title {
    font-size: clamp(2.6rem, 9vw, 3.8rem) !important;
    word-break: keep-all !important;
    hyphens: none !important;
    overflow-wrap: normal !important;
  }
  .hero-tagline { font-size: .94rem !important; }
  .hero-kicker  { font-size: .6rem !important; }
  .fld-badge    { max-width: 100% !important; }
}
@media (max-width: 480px) {
  .hero-portrait { height: 240px !important; }
  .hero-right    { height: 240px !important; max-height: 240px !important; }
  .hero-title    { font-size: clamp(2.3rem, 8vw, 3rem) !important; }
}
@media (max-width: 380px) {
  .hero-title { font-size: clamp(2.1rem, 7.5vw, 2.7rem) !important; }
}


/* SVG logos with built-in backgrounds need slight scaling */
.logo-cell.logo-link img[src$=".svg"] {
  max-height: 30px;
}


/* === MOBILE NAV — v12 hamburger === */
.nav-toggle{display:none;background:transparent;border:0;padding:.4rem;cursor:pointer;width:36px;height:36px;flex-direction:column;justify-content:center;align-items:center;gap:4px;margin-left:auto}
.nav-toggle-bar{display:block;width:22px;height:2px;background:var(--text);transition:transform .2s,opacity .2s}
.nav.nav-open .nav-toggle-bar:nth-child(1){transform:translateY(6px) rotate(45deg)}
.nav.nav-open .nav-toggle-bar:nth-child(2){opacity:0}
.nav.nav-open .nav-toggle-bar:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
@media (max-width:768px){
  .nav-toggle{display:flex}
  .nav{flex-wrap:wrap;position:relative}
  .nav .nav-links{display:none !important;flex-direction:column;width:100%;gap:0;padding:.6rem 0 .2rem;border-top:1px solid var(--rule);margin-top:.6rem}
  .nav.nav-open .nav-links{display:flex !important}
  .nav.nav-open .nav-link,.nav.nav-open .nav-cta{padding:.78rem .2rem;border-bottom:1px solid var(--rule);width:100%;font-size:.78rem;letter-spacing:.08em}
  .nav.nav-open .nav-cta{background:var(--red);color:#fff;text-align:center;margin-top:.4rem;border-radius:2px}
}
/* === /MOBILE NAV === */
