/* ==========================================================
   TheImbra.com — Main stylesheet
   Organized version of the existing CSS.
   Visual style is kept the same; the file is only cleaned up.
   ========================================================== */


/* ==========================================================
   1. Variables / Base
   ========================================================== */

:root {
  --bg: #071015;
  --bg-deep: #040a0e;
  --panel: rgba(8, 18, 24, .82);
  --panel-soft: rgba(13, 27, 35, .62);
  --line: rgba(255, 255, 255, .105);
  --text: #f5f1ea;
  --muted: #b6bdc2;
  --dim: #7c858b;
  --red: #ab1518;
  --red-dark: #7f0d10;
  --red-soft: #d34d50;
  --max: 1320px;
  --shadow: 0 30px 90px rgba(0, 0, 0, .48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 0%, rgba(255, 255, 255, .12), transparent 30%),
    linear-gradient(180deg, #081218 0%, #071015 45%, #04090c 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

.container {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}


/* ==========================================================
   2. Header / Navigation / Logo
   ========================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .055);
  background: linear-gradient(180deg, rgba(3, 8, 11, .88), rgba(3, 8, 11, .42));
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03));
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .24);
}

.brand-logo svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  letter-spacing: .14em;
}

.brand-copy small,
.footer-brand small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  letter-spacing: .08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.main-nav a:not(.nav-donate) {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease, text-shadow .18s ease;
}

.main-nav a:not(.nav-donate):hover {
  color: #fff;
  border-bottom-color: rgba(217, 42, 47, .72);
  text-shadow: 0 0 16px rgba(217, 42, 47, .22);
}

.nav-donate {
  display: none;
}

.mobile-toggle {
  display: none;
}



/* Image logo in header / footer */
.brand-logo-img {
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.brand-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

/* ==========================================================
   3. Hero
   ========================================================== */

.hero {
  position: relative;
  min-height: 610px;
  padding-top: 112px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0 0 auto auto;
  width: 67%;
  height: 610px;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 36%;
  filter: saturate(.95) contrast(1.02) brightness(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 14, .99) 0%, rgba(4, 10, 14, .9) 37%, rgba(4, 10, 14, .2) 66%, rgba(4, 10, 14, .6) 100%),
    linear-gradient(180deg, transparent 0%, rgba(7, 16, 21, .38) 64%, #071015 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-copy {
  width: min(610px, 100%);
  padding-top: 38px;
}

.hero h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(48px, 5.2vw, 82px);
  line-height: .96;
  letter-spacing: .045em;
  text-transform: uppercase;
  text-shadow: 0 5px 34px rgba(0, 0, 0, .62);
}

.hero p {
  max-width: 580px;
  margin: 24px 0 30px;
  color: rgba(245, 241, 234, .86);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.mini-trust {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}


/* ==========================================================
   4. Buttons
   ========================================================== */

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-red {
  background: linear-gradient(180deg, #bc1c20, #8e1013);
  box-shadow: 0 18px 45px rgba(171, 21, 24, .24);
}

.btn-red:hover {
  background: linear-gradient(180deg, #d1262b, #9d1418);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 22px 58px rgba(171, 21, 24, .38), inset 0 0 0 1px rgba(255, 255, 255, .12);
  filter: saturate(1.08);
}

.btn-outline {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .03);
}


/* ==========================================================
   5. Fact cards
   ========================================================== */

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(5, 13, 18, .79);
  box-shadow: var(--shadow);
}

.fact-card {
  position: relative;
  min-height: 106px;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.fact-card:last-child {
  border-right: none;
}

.fact-card:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .10), 0 18px 44px rgba(0, 0, 0, .22);
}

.fact-card:hover svg {
  stroke: var(--red-soft);
  filter: drop-shadow(0 0 12px rgba(217, 42, 47, .30));
}

.fact-card svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fact-card h2 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}


/* ==========================================================
   6. Story / Support / Timeline
   ========================================================== */

.content-grid-section {
  border-bottom: 1px solid var(--line);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1fr;
  gap: 48px;
  padding: 34px 0 38px;
}

.content-grid article {
  min-width: 0;
}

.content-grid h2,
.donation-copy h2,
.section-head h2,
.profiles-head h2 {
  margin: 0 0 20px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 27px;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.content-grid h2::after,
.section-head h2::after,
.profiles-head h2::after {
  content: '';
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 13px;
  background: var(--red);
}

.story-block p {
  margin: 0 0 15px;
  color: rgba(245, 241, 234, .78);
  font-size: 15px;
  line-height: 1.7;
}

.support-list {
  display: grid;
  gap: 12px;
}

.support-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.support-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .20);
  background: linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .20);
}

.support-item:hover .round-icon {
  transform: scale(1.04);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12), 0 10px 28px rgba(171, 21, 24, .28);
}

.round-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #b11b1e, #751013);
  font-size: 20px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.support-item h3 {
  margin: 0 0 5px;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.support-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.timeline {
  position: relative;
  display: grid;
  gap: 13px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 8px;
  width: 1px;
  background: rgba(171, 21, 24, .75);
}

.update-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 8px 8px 8px 28px;
  border-radius: 8px;
  transition: background .18s ease, transform .18s ease;
}

.update-item:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .035);
}

.update-item::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
}

.update-item img {
  width: 120px;
  height: 70px;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(255, 255, 255, .06);
  opacity: .82;
}

.update-item time,
.news-card time {
  display: block;
  color: var(--red-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.update-item h3 {
  margin: 4px 0;
  font-size: 15px;
}

.update-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.update-item span {
  display: inline-block;
  margin-top: 5px;
  color: var(--red-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}


/* ==========================================================
   7. News
   ========================================================== */

.news-section,
.profiles-section {
  padding: 42px 0 48px;
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 24px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, .025);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .20);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.news-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .20);
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .022));
  box-shadow: 0 22px 55px rgba(0, 0, 0, .28);
}

.news-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: rgba(255, 255, 255, .05);
  filter: saturate(.85) brightness(.78);
}

.news-card div {
  padding: 20px;
}

.news-card h3 {
  margin: 8px 0 10px;
  font-size: 19px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.news-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.news-card a {
  color: var(--red-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.priority-card {
  position: relative;
  min-height: 190px;
}

.priority-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 18% 0%, rgba(217, 42, 47, .13), transparent 38%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.priority-card:hover::before {
  opacity: 1;
}

.priority-card:hover .priority-number {
  color: #fff;
}

.priority-card div {
  padding: 24px;
}

.priority-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}

.priority-card h3 {
  margin-top: 0;
}


/* ==========================================================
   8. Official contact cards
   ========================================================== */

.profiles-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, .018), rgba(255, 255, 255, .006));
}

.official-links-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.official-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.official-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .22);
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
}

.official-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(171, 21, 24, .14);
  color: var(--red-soft);
}

.official-donate .official-icon {
  background: linear-gradient(180deg, #ba1e22, #870f12);
  color: #fff;
}

.official-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.official-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: .04em;
}

.official-card small {
  display: block;
  margin-top: 6px;
  color: var(--red-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.official-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}


/* ==========================================================
   9. Donation CTA
   ========================================================== */

.donation-section {
  border-bottom: 1px solid var(--line);
}

.donation-grid {
  display: grid;
  grid-template-columns: 1.15fr 370px .95fr;
  align-items: center;
  gap: 38px;
  padding: 28px 0;
}

.donation-copy h2 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.1;
}

.donation-copy p {
  margin: 0;
  color: var(--muted);
}

.donate-big {
  min-height: 84px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  column-gap: 18px;
  padding: 16px 28px;
  border-radius: 4px;
  background: linear-gradient(180deg, #b91e22, #861014);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .34);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, filter .18s ease;
}

.donate-big:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #d1262b, #981417);
  box-shadow: 0 28px 72px rgba(171, 21, 24, .38), 0 0 0 1px rgba(255, 255, 255, .10) inset;
  filter: saturate(1.08);
}

.donate-big:hover span {
  transform: scale(1.06);
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, .22));
}

.donate-big span {
  grid-row: span 2;
  font-size: 52px;
}

.donate-big strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 42px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.donate-big small {
  color: rgba(255, 255, 255, .78);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-row div {
  position: relative;
  padding: 15px 8px;
  border-left: 1px solid var(--line);
  border-radius: 5px;
  text-align: center;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.trust-row div:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 42, 47, .48);
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 18px 44px rgba(0, 0, 0, .24);
}

.trust-row div:hover span {
  color: #fff;
  filter: drop-shadow(0 0 12px rgba(217, 42, 47, .34));
}

.trust-row span {
  display: block;
  color: rgba(255, 255, 255, .85);
  font-size: 28px;
}

.trust-row strong,
.trust-row small {
  display: block;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trust-row strong {
  margin-top: 5px;
  font-size: 12px;
}

.trust-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}


/* ==========================================================
   10. Footer
   ========================================================== */

.site-footer {
  padding: 34px 0 24px;
  background: rgba(2, 8, 11, .5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr .9fr 1.35fr;
  align-items: start;
  gap: 36px;
}

.footer-brand {
  align-items: flex-start;
}

.footer-brand .brand-logo {
  width: 58px;
  height: 58px;
}

.footer-brand p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 7px 0;
  color: var(--muted);
}

.footer-col a:hover {
  color: #fff;
}

.footer-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

blockquote {
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.65;
}

blockquote::before {
  content: '“';
  display: block;
  color: rgba(255, 255, 255, .2);
  font-size: 54px;
  line-height: .7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(182, 189, 194, .66);
  font-size: 12px;
}


/* ==========================================================
   11. Article pages
   ========================================================== */

.article-page {
  min-height: 100vh;
  padding: 90px 0;
  background: linear-gradient(180deg, #071015, #04090c);
}

.article-wrap {
  max-width: 780px;
}

.article-wrap .back-link {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--red-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-wrap time {
  display: block;
  margin-bottom: 12px;
  color: var(--red-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.article-wrap h1 {
  margin: 0 0 26px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(44px, 7vw, 78px);
  line-height: .95;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.article-wrap p {
  color: rgba(245, 241, 234, .82);
  font-size: 18px;
  line-height: 1.75;
}


/* ==========================================================
   12. Responsive
   ========================================================== */

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }

  .content-grid,
  .donation-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    max-width: 520px;
  }

  .section-head {
    display: grid;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 30px, var(--max));
  }

  .mobile-toggle {
    display: inline-grid;
    gap: 5px;
    padding: 8px;
    border: 0;
    background: transparent;
  }

  .mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(4, 10, 14, .96);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-donate {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-bottom: 28px;
  }

  .hero-image {
    width: 100%;
    opacity: .46;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 10, 14, .25), rgba(4, 10, 14, .08)),
      linear-gradient(180deg, transparent, rgba(7, 16, 21, .35));
  }

  .hero-copy {
    padding-top: 18px;
  }

  .fact-row,
  .donation-grid,
  .trust-row,
  .official-links-panel {
    grid-template-columns: 1fr;
  }

  .fact-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact-card:last-child {
    border-bottom: 0;
  }

  .update-item {
    grid-template-columns: 94px 1fr;
  }

  .update-item img {
    width: 94px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
    padding: 10px;
  }
}

@media (max-width: 560px) {
  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    font-size: 11px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero p {
    font-size: 15px;
  }

  .btn,
  .hero-actions {
    width: 100%;
  }

  .fact-card,
  .support-item,
  .official-card {
    grid-template-columns: 1fr;
  }

  .donate-big {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .donate-big span {
    grid-row: auto;
  }

  .donate-big strong {
    font-size: 34px;
  }
}

/* ==========================================================
   Article polish: warmer editorial layout
   ========================================================== */

.article-page-warm {
  background:
    radial-gradient(circle at top left, rgba(198, 42, 42, .18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, .06), transparent 30%),
    linear-gradient(180deg, #071015 0%, #04090c 100%);
}

.article-card-wrap {
  max-width: 900px;
}

.article-card-full {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(19, 30, 35, .92), rgba(8, 14, 17, .96));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
  position: relative;
  overflow: hidden;
}

.article-card-full::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), rgba(255,255,255,.22), transparent);
}

.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  color: var(--red-soft);
  background: rgba(255, 255, 255, .04);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-wrap .article-lead {
  margin-bottom: 24px;
  color: rgba(245, 241, 234, .92);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.65;
}

.pull-quote {
  margin: 34px 0;
  padding: 24px 26px;
  border-left: 4px solid var(--red);
  border-radius: 18px;
  color: rgba(245, 241, 234, .95);
  background: rgba(255, 255, 255, .055);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
}

.article-note {
  display: grid;
  gap: 8px;
  margin: 34px 0;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 20px;
  background: rgba(198, 42, 42, .11);
}

.article-note strong {
  color: #fff;
  font-size: 16px;
  letter-spacing: .02em;
}

.article-note span {
  color: rgba(245, 241, 234, .78);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .article-page {
    padding: 58px 0;
  }

  .article-card-full {
    border-radius: 20px;
  }

  .pull-quote {
    padding: 20px;
  }
}


/* ==========================================================
   Final article upgrade: richer editorial cards and fills
   ========================================================== */
.article-page-warm {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(204, 47, 47, .28), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(240, 186, 118, .13), transparent 28%),
    radial-gradient(circle at 60% 100%, rgba(255, 255, 255, .07), transparent 30%),
    linear-gradient(135deg, #05090b 0%, #101a1c 45%, #050608 100%);
}

.article-card-full {
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.025) 38%, rgba(198,42,42,.08)),
    linear-gradient(180deg, rgba(18, 28, 31, .96), rgba(7, 11, 13, .98));
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 36px 95px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.08);
}

.article-card-full::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(198,42,42,.28), transparent 68%);
  pointer-events: none;
}

.article-card-full > * {
  position: relative;
  z-index: 1;
}

.article-hero-fill {
  margin: 28px 0 30px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.13), transparent 34%),
    linear-gradient(135deg, rgba(198,42,42,.22), rgba(255,255,255,.055));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.article-hero-fill span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-hero-fill strong {
  display: block;
  max-width: 720px;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
}

.housing-fill {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 35%),
    linear-gradient(135deg, rgba(198,42,42,.24), rgba(240,186,118,.10));
}

.support-fill {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.13), transparent 34%),
    linear-gradient(135deg, rgba(198,42,42,.18), rgba(120,120,120,.11));
}

.article-grid-callout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0;
}

.article-grid-callout div {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;
  background: rgba(255,255,255,.052);
}

.article-grid-callout strong,
.article-grid-callout span {
  display: block;
}

.article-grid-callout strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 15px;
}

.article-grid-callout span {
  color: rgba(245,241,234,.76);
  font-size: 15px;
  line-height: 1.55;
}

.soft-note {
  background: rgba(255,255,255,.055);
}

.strong-note {
  background: linear-gradient(135deg, rgba(198,42,42,.18), rgba(255,255,255,.045));
}

.article-cta {
  margin-top: 34px;
}

@media (max-width: 760px) {
  .article-grid-callout {
    grid-template-columns: 1fr;
  }

  .article-hero-fill {
    padding: 22px;
  }
}
