/* =====================================================
   Nora Deutsch Foundation — Sky Blue Design System
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Sky Blue Palette */
  --primary:        #1565C0;
  --primary-dark:   #0D47A1;
  --sky:            #42A5F5;
  --sky-light:      #E3F2FD;
  --sky-lighter:    #F0F8FF;
  --sky-mid:        #BBDEFB;

  /* Action Colors */
  --donate:         #E65100;
  --donate-hover:   #BF360C;
  --urgent:         #B71C1C;
  --success:        #2E7D32;
  --gold:           #F9A825;

  /* Text */
  --text:           #1A2332;
  --text-light:     #4A6282;
  --text-muted:     #7A90A8;

  /* Surfaces */
  --white:          #FFFFFF;
  --border:         #BBDEFB;
  --card-shadow:    0 4px 24px rgba(21,101,192,.10);
  --card-hover:     0 8px 36px rgba(21,101,192,.18);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
}

a               { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover         { color: var(--primary-dark); text-decoration: underline; }
img             { max-width: 100%; height: auto; display: block; }
p               { margin-bottom: 1rem; }
p:last-child    { margin-bottom: 0; }

/* ── EMERGENCY BANNER ── */
.emergency-bar {
  background: var(--urgent);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.emergency-bar a {
  color: #FFE0B2;
  font-weight: 700;
  text-decoration: underline;
}
.emergency-bar a:hover { color: #fff; }
.emergency-pulse {
  display: inline-block;
  width: 10px; height: 10px;
  background: #FFD54F;
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity:1; }
  50%      { transform: scale(1.5); opacity:.6; }
}

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(21,101,192,.12);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sky-mid);
}
.logo-text .name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.logo-text .tagline {
  font-size: .72rem;
  color: var(--text-light);
  font-style: italic;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  align-items: center;
}
nav a {
  display: block;
  padding: 8px 14px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
nav a:hover, nav a.active { background: var(--sky-light); color: var(--primary); text-decoration: none; }

.header-donate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--donate);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  transition: background .2s, transform .1s;
  flex-shrink: 0;
}
.header-donate:hover { background: var(--donate-hover); color: var(--white); text-decoration: none; transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--primary); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all .2s;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.btn-donate  { background: var(--donate);  color: var(--white); border-color: var(--donate); }
.btn-donate:hover  { background: var(--donate-hover); border-color: var(--donate-hover); color: var(--white); }

.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }

.btn-outline  { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover  { background: var(--white); color: var(--primary); }

.btn-outline-blue { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-blue:hover { background: var(--primary); color: var(--white); }

.btn-urgent { background: var(--urgent); color: var(--white); border-color: var(--urgent); }
.btn-urgent:hover { background: #8B0000; border-color: #8B0000; color: var(--white); }

.btn-lg { padding: 16px 40px; font-size: .95rem; }
.btn-sm { padding: 9px 20px; font-size: .78rem; }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.bg-white   { background: var(--white); }
.bg-sky     { background: var(--sky-lighter); }
.bg-sky-mid { background: var(--sky-light); }
.bg-primary { background: var(--primary); }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sky);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-title.white { color: var(--white); }
.section-lead {
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 48px;
}
.divider {
  width: 52px; height: 4px;
  background: var(--sky);
  border-radius: 2px;
  margin: 14px 0 36px;
}
.divider.centered { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-white  { color: var(--white); }

/* ── HERO ── */
.hero {
  background: linear-gradient(175deg, #1565C0 0%, #1976D2 30%, #42A5F5 70%, #BBDEFB 100%);
  color: var(--white);
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.hero p {
  font-size: 1.15rem;
  opacity: .92;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--sky) 100%);
  color: var(--white);
  padding: 64px 24px 48px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 10px; }
.breadcrumb { font-size: .82rem; opacity: .8; }
.breadcrumb a { color: var(--white); text-decoration: underline; }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--primary);
  padding: 40px 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 24px;
  text-align: center;
  max-width: 1140px;
  margin: 0 auto;
}
.stat-num   { font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.8); line-height: 1.4; }

/* ── CARDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px,1fr)); gap: 28px; }

.card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--card-hover); }

.card-icon-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--sky) 100%);
  color: var(--white);
  padding: 32px 24px;
  font-size: 2.8rem;
  text-align: center;
}
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.12rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.card-body p  { font-size: .9rem; color: var(--text-light); flex: 1; }
.card-footer  { padding: 0 24px 24px; }

/* ── BLOG CARDS ── */
.blog-date { font-size: .75rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.blog-card .card-body h3 a { color: var(--text); }
.blog-card .card-body h3 a:hover { color: var(--primary); text-decoration: none; }
.tag {
  display: inline-block;
  background: var(--sky-light);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.tag.urgent { background: #FFEBEE; color: var(--urgent); }
.read-more { font-size: .8rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .05em; margin-top: 14px; display: inline-block; }
.read-more:hover { color: var(--donate); text-decoration: none; }

/* ── CTA BAND ── */
.cta-band {
  padding: 64px 24px;
  text-align: center;
}
.cta-band.donate-band { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: var(--white); }
.cta-band.sky-band    { background: var(--sky-light); }
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-bottom: 12px; }
.cta-band p  { font-size: 1rem; opacity: .9; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Inline CTA box (inside sections) */
.inline-cta {
  background: var(--sky-light);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.inline-cta-text h4 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.inline-cta-text p  { font-size: .88rem; color: var(--text-light); margin: 0; }

/* ── IMPACT AMOUNTS ── */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 16px;
  margin: 28px 0;
}
.impact-item {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.impact-amount { font-size: 1.8rem; font-weight: 700; color: var(--primary); display: block; }
.impact-desc   { font-size: .82rem; color: var(--text-light); margin-top: 4px; line-height: 1.4; }

/* ── DONATE PAGE ── */
.donate-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }

.donate-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--card-shadow);
}
.donate-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.donate-card .sub { font-size: .88rem; color: var(--text-light); margin-bottom: 24px; }

.amount-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 16px; }
.amount-btn {
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--sky-lighter);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--primary);
  transition: all .2s;
}
.amount-btn:hover, .amount-btn.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.custom-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 18px;
  outline: none;
  font-family: inherit;
  transition: border-color .2s;
}
.custom-input:focus { border-color: var(--primary); }

/* ── FORMS ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .84rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .93rem;
  color: var(--text);
  font-family: inherit;
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── ADDRESS BOX ── */
.address-box {
  background: var(--sky-lighter);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  font-size: .92rem;
  line-height: 1.9;
  color: var(--text);
}

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }
.about-photo-wrap { position: sticky; top: 100px; text-align: center; }
.about-photo {
  width: 220px; height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--sky-mid);
  box-shadow: 0 8px 32px rgba(21,101,192,.18);
  margin: 0 auto 16px;
  display: block;
}
.founder-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.founder-tag {
  background: var(--sky-light);
  color: var(--primary);
  border: 1px solid var(--border);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
}

/* ── PLEDGE ── */
.pledge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pledge-box { border-radius: 12px; padding: 30px; }
.pledge-yes { background: #E8F5E9; border: 1px solid #A5D6A7; }
.pledge-no  { background: #FFF8E1; border: 1px solid #FFE082; }
.pledge-box h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.pledge-yes h3 { color: #1B5E20; }
.pledge-no  h3 { color: #E65100; }
.pledge-box ul { list-style: none; }
.pledge-box ul li { padding: 7px 0; font-size: .9rem; display: flex; gap: 10px; border-bottom: 1px solid rgba(0,0,0,.06); }
.pledge-box ul li:last-child { border: none; }
.pledge-yes li::before { content: '✓'; color: #2E7D32; font-weight: 700; flex-shrink: 0; }
.pledge-no  li::before { content: '✕'; color: #E65100; font-weight: 700; flex-shrink: 0; }

/* ── BLOG / POST ── */
.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.post-content h2 { font-size: 1.35rem; color: var(--primary); margin: 32px 0 10px; font-weight: 700; }
.post-content ul { margin: 10px 0 16px 24px; line-height: 2; }
.post-meta { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 24px; }
.post-hero-img { width: 100%; height: 320px; object-fit: cover; border-radius: 14px; margin-bottom: 28px; }

.sidebar-card { background: var(--sky-lighter); border: 1px solid var(--border); border-radius: 12px; padding: 22px; margin-bottom: 20px; }
.sidebar-card h4 { font-size: .85rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.sidebar-card ul { list-style: none; }
.sidebar-card ul li { padding: 7px 0; font-size: .88rem; border-bottom: 1px solid var(--border); }
.sidebar-card ul li:last-child { border: none; }
.sidebar-donate { background: linear-gradient(135deg, var(--primary) 0%, var(--sky) 100%); color: var(--white); }
.sidebar-donate h4 { color: var(--white); border-color: rgba(255,255,255,.3); }
.sidebar-donate p  { font-size: .88rem; opacity: .9; margin-bottom: 16px; }

/* ── QUOTE BLOCK ── */
.quote-block {
  border-left: 4px solid var(--sky);
  background: var(--sky-lighter);
  border-radius: 0 10px 10px 0;
  padding: 22px 26px;
  margin: 28px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
}
.quote-block cite { display: block; margin-top: 10px; font-style: normal; font-size: .85rem; font-weight: 700; color: var(--primary); }

/* ── IRS BADGE ── */
.irs-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--sky-lighter);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: .86rem;
  color: var(--text-light);
}
.irs-badge .icon { font-size: 2rem; flex-shrink: 0; }

/* ── FAQ ── */
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  font-weight: 700;
  font-size: .95rem;
  color: var(--primary);
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--sky); }
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 0 0 18px; font-size: .9rem; color: var(--text-light); }

/* ── FOOTER ── */
footer {
  background: #0D1B2E;
  color: #A8C0D8;
  padding: 64px 24px 0;
}
.footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-name { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: .86rem; line-height: 1.75; }
.footer-donate-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 16px;
  margin-top: 20px;
  text-align: center;
}
.footer-donate-box p { font-size: .8rem; margin-bottom: 10px; color: #90B4CC; }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: #A8C0D8; font-size: .86rem; }
.footer-col ul li a:hover { color: var(--sky); text-decoration: none; }
.social-links { display: flex; gap: 8px; margin-top: 16px; }
.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: background .2s;
}
.social-link:hover { background: var(--primary); color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .78rem;
  color: #607890;
}
.footer-bottom a { color: #607890; }
.footer-bottom a:hover { color: var(--sky); text-decoration: none; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.ein-pill {
  background: rgba(66,165,245,.15);
  border: 1px solid rgba(66,165,245,.25);
  color: var(--sky);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: .74rem;
  font-weight: 600;
}

/* ── EARTHQUAKE PAGE ── */
.urgency-header {
  background: linear-gradient(135deg, #7B0000 0%, #B71C1C 50%, #E53935 100%);
  color: var(--white);
  padding: 80px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.urgency-header::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0; height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.urgency-header h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; margin-bottom: 16px; }

/* ── PROGRESS BAR ── */
.progress-wrap { background: rgba(255,255,255,.2); border-radius: 50px; height: 12px; margin: 16px 0 6px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gold); border-radius: 50px; transition: width 1s; }
.progress-labels { display: flex; justify-content: space-between; font-size: .78rem; opacity: .85; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about-grid    { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; }
  .donate-grid   { grid-template-columns: 1fr; }
  .pledge-grid   { grid-template-columns: 1fr; }
  .post-layout   { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; height: auto; padding: 14px 18px; gap: 12px; }
  nav           { display: none; width: 100%; order: 3; }
  nav.open      { display: block; }
  nav ul        { flex-direction: column; gap: 0; }
  nav a         { border-top: 1px solid var(--border); border-radius: 0; }
  .nav-toggle   { display: block; }
  .hero         { padding: 72px 18px 64px; }
  .section      { padding: 56px 0; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .form-row     { grid-template-columns: 1fr; }
  .inline-cta   { flex-direction: column; text-align: center; }
  .about-grid   { gap: 28px; }
}
