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

/* ── Variables ──────────────────────────────────────── */
:root {
  --ink:      #1c2b42;
  --navy:     #12203e;
  --deep:     #192d52;
  --blue:     #1d4ed8;
  --purple:   #7c3aed;
  --indigo:   #4338ca;
  --cream:    #faf8f5;
  --stone:    #f0ece6;
  --border:   #e4ddd4;
  --text:     #1a1825;
  --mid:      #3d3c50;
  --muted:    #78788a;
  --white:    #ffffff;
  --grad:     linear-gradient(90deg, var(--blue), var(--purple));

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
}

/* ── Base ───────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Scroll progress bar ─────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad);
  z-index: 200;
  transition: width 0.08s linear;
}

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes revealClip {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

.animate-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Layout ─────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6.5rem 0; }

/* ── Typography helpers ──────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 0.85rem;
}
.eyebrow--light { color: rgba(165, 180, 252, 0.75); }

.section-rule {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--grad);
  border-radius: 1px;
  margin-bottom: 1.25rem;
}
.section-rule--light {
  background: linear-gradient(90deg, rgba(147,197,253,0.8), rgba(196,181,253,0.8));
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}
.section-heading--light { color: var(--white); }
.section-heading--xl {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.78;
}

.big-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 700;
  color: var(--stone);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.88rem 2rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  line-height: 1.4;
}

.btn--primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.14);
}
.btn--primary:hover {
  background: #e0e7ff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  text-decoration: none;
  color: var(--navy);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 14px rgba(18,32,62,0.25);
}
.btn--dark:hover {
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 22px rgba(18,32,62,0.35);
  text-decoration: none;
  color: var(--white);
}

.btn--gradient {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 2px 16px rgba(124,58,237,0.28);
  width: 100%;
  padding: 0.92rem 2rem;
}
.btn--gradient:hover {
  box-shadow: 0 5px 24px rgba(124,58,237,0.44);
  text-decoration: none;
  transform: translateY(-1px);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.42);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  text-decoration: none;
}

.btn--hero-cta {
  background: var(--white);
  color: var(--navy);
  font-size: 0.85rem;
  padding: 1rem 2.5rem;
  box-shadow: 0 4px 28px rgba(0,0,0,0.2);
}
.btn--hero-cta:hover {
  background: #e0e7ff;
  box-shadow: 0 8px 40px rgba(0,0,0,0.28);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--navy);
}

/* ── Navigation ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.32s ease, box-shadow 0.32s ease;
}
.nav.scrolled {
  background: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 2rem;
  max-width: 1160px;
  margin: 0 auto;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  text-decoration: none;
  color: var(--white);
}
.nav__logo-img {
  height: 56px;
  width: auto;
  border-radius: 4px;
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nav__logo {
  height: 56px;
  width: auto;
  display: block;
}

.nav__brand-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.nav__brand-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links li > a {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links li > a:hover { color: var(--white); }

.nav__donate {
  background: linear-gradient(135deg, var(--indigo), var(--purple)) !important;
  color: var(--white) !important;
  padding: 0.48rem 1.15rem;
  border-radius: 3px;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s !important;
}
.nav__donate:hover { opacity: 0.88; transform: translateY(-1px) !important; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 0.25rem;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.28s;
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  background-color: var(--ink);
  background-image:
    radial-gradient(ellipse at 65% 40%, rgba(67,56,202,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 75%, rgba(124,58,237,0.14) 0%, transparent 48%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.038) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero__hebrew {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(200px, 30vw, 480px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.045);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero__eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(165,180,252,0.68);
  margin-bottom: 1.5rem;
  display: block;
}

.hero__rule-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.hero__rule-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.hero__rule-diamond {
  width: 6px; height: 6px;
  background: var(--grad);
  transform: rotate(45deg);
  border-radius: 1px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin-bottom: 1.75rem;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: #a5b4fc;
}

.hero__tagline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.85rem;
  line-height: 1.65;
}

.hero__sub {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.48);
  margin: 0 auto 3rem;
  line-height: 1.75;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── How This Began ──────────────────────────────────── */
.began { background: var(--white); }

.began__inner {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}

.began__left {
  position: relative;
  padding-top: 0.5rem;
}
.began__left-content { position: relative; z-index: 1; }

.began__right p {
  font-size: 1.08rem;
  color: var(--mid);
  line-height: 1.88;
}

/* ── Who We Are ──────────────────────────────────────── */
.who { background: var(--cream); }

.who__header { margin-bottom: 3.5rem; }

.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.person-card {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow 0.26s, transform 0.26s;
}
.person-card:hover {
  box-shadow: 0 10px 40px rgba(29,78,216,0.1);
  transform: translateY(-2px);
}

.person-card__top {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.person-card__initial {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.person-card__meta h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.person-card__role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.15rem;
}
.person-card p {
  font-size: 0.96rem;
  color: var(--mid);
  line-height: 1.77;
}
.person-card__accent {
  height: 2px;
  border-radius: 1px;
  margin-top: auto;
}
.person-card:nth-child(1) .person-card__accent { background: linear-gradient(90deg, var(--blue), var(--indigo)); }
.person-card:nth-child(2) .person-card__accent { background: linear-gradient(90deg, var(--indigo), var(--purple)); }

/* ── Invitation ──────────────────────────────────────── */
.invitation {
  background: linear-gradient(150deg, #0c1220 0%, #1a2d58 52%, #160d34 100%);
}

.invitation__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.invitation__text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
}
.invitation__text .btn--outline-light { margin-top: 0.85rem; }
.invitation__inline-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.invitation__inline-link:hover { opacity: 0.75; }

.pledge-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}

.pledge-card__amount {
  font-family: var(--font-display);
  font-size: 0;   /* hidden until JS runs */
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.3rem;
  transition: font-size 0s;
}
.pledge-card__amount.counted {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.pledge-card__label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(165,180,252,0.6);
  margin-bottom: 1.75rem;
}
.pledge-card__divider {
  width: 36px; height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 1.5rem;
}
.pledge-card p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.83;
}

/* ── Organizations ───────────────────────────────────── */
.orgs { background: var(--cream); }

.orgs__header { margin-bottom: 3.5rem; }

.org-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.org-row {
  display: grid;
  grid-template-columns: 160px 1fr 220px;
  gap: 2.5rem;
  align-items: start;
  padding: 3rem 1.25rem;
  margin: 0 -1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.22s;
  position: relative;
}
.org-row:first-child { border-top: 1px solid var(--border); }
.org-row:hover { background: rgba(255,255,255,0.6); }

.org-row__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  padding-top: 0.15rem;
  letter-spacing: -0.03em;
  transition: color 0.22s;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.org-row:hover .org-row__num { color: #d8d0c8; }

.org-row__body {}

.org-row__logo {
  display: block;
  height: auto;
  width: auto;
  max-width: 155px;
  object-fit: contain;
  padding-top: 0.6rem;
}

.org-row__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.org-row:nth-child(1) .org-row__tag { color: var(--blue); }
.org-row:nth-child(2) .org-row__tag { color: var(--purple); }
.org-row:nth-child(3) .org-row__tag { color: var(--indigo); }

.org-row__body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.org-row__body p {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.78;
}

.org-row__action {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  padding-top: 0.2rem;
}

/* ── Donor Notes ─────────────────────────────────────── */
.donor-notes {
  background: #eef2ff;
  padding: 2rem 0;
  border-top: 1px solid #dde3f8;
  border-bottom: 1px solid #dde3f8;
}
.donor-notes__inner {
  font-size: 0.91rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 860px;
  border-left: 3px solid var(--indigo);
  padding-left: 1.25rem;
}
.donor-notes__inner strong { color: var(--text); }

/* ── Why This Matters ────────────────────────────────── */
.why {
  background: var(--ink);
  padding: 7rem 0;
}

.why__quote-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5rem;
}

.why__big-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.why__cite {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(165,180,252,0.5);
}

.why__rule {
  width: 60px;
  height: 2px;
  background: var(--grad);
  margin: 2rem auto 2rem;
  border-radius: 1px;
}

.why__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}
.why__body p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.88;
}

/* ── Survivor Quote ─────────────────────────────────── */
.survivor-quote {
  background: var(--stone);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.survivor-quote__block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.survivor-quote__block p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.survivor-quote__block footer {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
}

/* ── Join Us ─────────────────────────────────────────── */
.join {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%);
  padding: 7rem 0;
  text-align: center;
}
.join__inner { max-width: 700px; margin: 0 auto; }

.join__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 2.5rem;
}

.join__sub {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ── Resources ───────────────────────────────────────── */
.resources { background: var(--white); }

.resources__header { margin-bottom: 2.5rem; }

.resources__quote {
  border-left: 4px solid var(--indigo);
  padding: 1.5rem 2rem;
  margin: 0 0 3.5rem;
  background: var(--stone);
  border-radius: 0 6px 6px 0;
  max-width: 860px;
}
.resources__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.resources__quote footer {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
}

.resources__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  max-width: 860px;
}

.resources__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.resources__item:first-child { border-top: 1px solid var(--border); }

.resources__type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
  padding-top: 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}
.resources__type i {
  font-size: 2.2rem;
  letter-spacing: 0;
  opacity: 0.75;
}

.resources__body p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.resources__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--indigo);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
  margin-right: 1.25rem;
}
.resources__link:hover { color: var(--purple); }

@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .org-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .org-row__num {
    display: flex;
    order: 0;
  }
  .org-row__body  { order: 1; }
  .org-row__action {
    display: flex;
    order: 2;
  }
  .org-row__logo { max-width: 120px; padding-top: 0; }
  .resources__item { grid-template-columns: 1fr; gap: 0.4rem; }
  .resources__quote { padding: 1.25rem; }
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.33);
  max-width: 275px;
  line-height: 1.65;
  margin: 0;
}

.footer__nav { display: flex; gap: 3.5rem; }
.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer__nav-col h4 {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.24);
  margin-bottom: 0.3rem;
}
.footer__nav-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__nav-col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Responsive: Mobile Nav ──────────────────────────── */
@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: var(--ink);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    align-items: flex-start;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav__links.open { display: flex; }
  .nav__donate { align-self: stretch; text-align: center !important; }
}

/* ── Responsive: Tablets ─────────────────────────────── */
@media (max-width: 1024px) {
  .hide-tablet       { display: none; }
  .invitation__inner { grid-template-columns: 1fr; gap: 3rem; }
  .began__inner      { grid-template-columns: 1fr; gap: 1rem; }
  .began__num        { display: none; }
  .why__body         { grid-template-columns: 1fr; gap: 1.5rem; }
  .org-row           { grid-template-columns: 120px 1fr; }
  .org-row__action   { display: none; }  /* show donate inline */
  .org-row__body::after {
    content: '';
    display: block;
    margin-top: 1.25rem;
  }
}

/* ── Responsive: Mobile ──────────────────────────────── */
@media (max-width: 768px) {
  .section    { padding: 4rem 0; }
  .container  { padding: 0 1.25rem; }

  .hero { padding: 7.5rem 0 4rem; }
  .hero__hebrew { display: none; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; }

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

  .footer__inner  { flex-direction: column; gap: 2rem; }
  .footer__nav    { flex-direction: column; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .donor-notes__inner { flex-direction: column; gap: 0.75rem; }

  .join__headline { font-size: 2.4rem; }
  .why__big-quote { font-size: 2.2rem; }
}
