/* ===== CSS VARIABLES ===== */
:root {
  --primary: #88b731;
  --primary-dark: #6d9227;
  --primary-light: #a0ce4e;
  --primary-xlight: #d4eeaa;
  --sage-bg: #f5f9ee;
  --sage-100: #eaf2d8;
  --sage-200: #cfe3a0;
  --bg: #f9fafb;
  --card: #ffffff;
  --text: #1c2a09;
  --muted: #4a5e1e;
  --slate-100: #eaeee0;
  --slate-200: #d0d9bc;
  --slate-300: #8fa070;
  --slate-700: #2d3e10;
  --slate-900: #1c2a09;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); }
body { font-family: "Assistant", ui-sans-serif, system-ui, sans-serif; line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: "Heebo", sans-serif; }
p { margin: 0; }
button, input, textarea { font: inherit; }
button { cursor: pointer; border: 0; background: transparent; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ===== LAYOUT ===== */
.container {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 50;
  padding: 18px 0;
  transition: all 0.3s ease;
}

.site-nav.scrolled {
  background: #fff;
  box-shadow: 0 4px 24px rgba(26, 46, 13, 0.1);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 44px;
  width: auto;
  transition: opacity 0.3s ease;
}
.logo-default {
  display: block;
  opacity: 1;
}
.logo-scrolled {
  display: none;
  opacity: 0;
}
.site-nav.scrolled .logo-default {
  display: none;
}
.site-nav.scrolled .logo-scrolled {
  display: block;
  opacity: 1;
}

.desktop-menu {
  display: none;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  padding: 3px;
}

.site-nav.scrolled .lang-switch {
  border-color: var(--sage-200);
  background: #fff;
}

.lang-btn {
  border-radius: 999px;
  border: 0;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  transition: background-color 0.2s, color 0.2s;
}

.site-nav.scrolled .lang-btn {
  color: var(--slate-700);
}

.lang-btn.active {
  background: #fff;
  color: var(--primary-dark);
}

.site-nav.scrolled .lang-btn.active {
  background: var(--sage-bg);
  color: var(--primary-dark);
}

.mobile-menu .lang-switch.mobile {
  display: flex;
  width: fit-content;
  border-color: var(--sage-200);
  background: var(--sage-bg);
  margin-bottom: 8px;
}

.mobile-menu .lang-btn {
  color: var(--slate-700);
}

.mobile-menu .lang-btn.active {
  background: #fff;
}

.nav-link {
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
  padding: 4px 0;
}

.site-nav.scrolled .nav-link { color: var(--muted); }
.nav-link.active, .nav-link:hover { color: var(--primary); }
.site-nav.scrolled .nav-link.active { color: var(--primary); }

.mobile-toggle {
  color: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 4px;
}
.site-nav.scrolled .mobile-toggle { color: var(--slate-900); }

.mobile-menu {
  display: none;
  position: absolute; top: 100%; right: 0; left: 0;
  background: #fff;
  box-shadow: 0 20px 40px rgba(26,46,13,0.12);
  border-top: 1px solid var(--sage-100);
  padding: 20px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu button,
.mobile-menu a {
  display: block;
  text-align: right;
  border-bottom: 1px solid var(--sage-100);
  color: var(--slate-700);
  font-weight: 600;
  padding: 14px 0;
}
.mobile-menu button:last-child,
.mobile-menu a:last-child { border-bottom: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 8px;
  border-radius: 14px;
  font-weight: 700;
  padding: 12px 22px;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-large { font-size: 17px; padding: 14px 26px; border-radius: 16px; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(136, 183, 49, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow:
    0 6px 22px rgba(136, 183, 49, 0.4),
    0 0 0 3px rgba(164, 221, 59, 0.18),
    0 0 20px rgba(164, 221, 59, 0.45),
    0 0 38px rgba(164, 221, 59, 0.28);
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow:
    0 4px 16px rgba(136, 183, 49, 0.3),
    0 0 0 4px rgba(255, 255, 255, 0.3),
    0 0 0 7px rgba(164, 221, 59, 0.3),
    0 0 24px rgba(164, 221, 59, 0.5);
}

.btn-glass {
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-glass:hover { background: rgba(255,255,255,0.22); }

.btn-dark {
  background: var(--slate-900);
  color: #fff;
}
.btn-dark:hover { background: var(--primary); }

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--sage-100); }

.text-link {
  color: var(--primary);
  font-weight: 700;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link:hover { color: var(--primary-dark); }

/* ===== PAGE TRANSITIONS ===== */
main { min-height: 70vh; }
.page { display: none; animation: fade-in 0.4s ease; }
.page.active { display: block; }
/* WordPress safety: if a template outputs only a single `.page`, don't hide it. */
.page:only-of-type { display: block; }

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--slate-900);
}
.hero img,
.hero .hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  pointer-events: none;
}
.hero .hero-media.is-active {
  opacity: 0.9;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to left,
    rgba(28, 42, 9, 0.75) 0%,
    rgba(28, 42, 9, 0.35) 50%,
    rgba(28, 42, 9, 0.08) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 58px,
      rgba(255, 255, 255, 0.03) 58px,
      rgba(255, 255, 255, 0.03) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 58px,
      rgba(255, 255, 255, 0.03) 58px,
      rgba(255, 255, 255, 0.03) 60px
    );
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  padding-top: 130px; padding-bottom: 60px;
}
.hero-copy { max-width: 740px; color: #fff; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 26px;
  border-radius: 999px;
  border: 1.5px solid rgba(136, 183, 49, 0.5);
  background: rgba(136, 183, 49, 0.15);
  color: var(--primary-xlight);
  padding: 7px 16px;
  font-size: 14px; font-weight: 700;
  backdrop-filter: blur(4px);
}

.hero-copy h1 {
  font-size: clamp(46px, 7.5vw, 84px);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 900;
}
.hero-copy h1 span { color: var(--primary-light); }

.hero-copy p {
  font-size: clamp(18px, 2.2vw, 24px);
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== IMPACT STATS ===== */
/* ===== CORNERS SECTION ===== */
.corners-section {
  background: #fff;
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--sage-100);
}

.corners-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 64px;
}

/* ── New split layout ── */
.corners-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}

/* Locations list */
.corners-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.corner-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--sage-100);
  transition: background 0.2s;
}
.corner-item:first-child {
  border-top: 1px solid var(--sage-100);
}

.corner-num {
  font-family: "Heebo", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 1px;
  min-width: 28px;
  padding-top: 4px;
  opacity: 0.8;
}

.corner-item-body {
  flex: 1;
}

.corner-item-name {
  font-family: "Heebo", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.corner-item-name svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.corner-item-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Video column */
.corners-video-col {
  position: sticky;
  top: 100px;
}

.corners-video-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 8px;
}

.corners-video-title {
  font-family: "Heebo", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 20px;
  line-height: 1.3;
}

.corners-video-player {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  background: #000;
  display: block;
}

/* old video block (hidden) */
.corners-video {
  display: none;
}


/* Each card = full-width stage */
.corner-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  overflow: hidden;
  background: var(--card);
  border-top: 1px solid var(--sage-100);
  position: relative;
  transition: background 0.3s;
}
.corner-card:last-child {
  border-bottom: 1px solid var(--sage-100);
}
.corner-card:hover {
  background: var(--sage-bg);
}

/* Alternating: odd → image right, even → image left (RTL aware) */
.corner-card:nth-child(odd) {
  direction: rtl;
}
.corner-card:nth-child(even) {
  direction: ltr;
}
.corner-card:nth-child(even) .corner-body {
  direction: rtl;
}

.corner-img-wrap {
  position: relative;
  overflow: hidden;
  height: 380px;
  min-height: unset;
}
.corner-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.corner-card:hover .corner-img {
  transform: scale(1.04);
}
.corner-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 16px rgba(136,183,49,0.35);
}
.corner-badge svg { width: 13px; height: 13px; }

/* Content side */
.corner-body {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  position: relative;
}

/* Large number accent */
.corner-body::before {
  content: counter(corner-count, decimal-leading-zero);
  counter-increment: corner-count;
  position: absolute;
  top: 24px;
  left: 28px;
  font-family: "Heebo", sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--sage-100);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}
.corners-grid {
  counter-reset: corner-count;
}

.corner-name {
  font-family: "Heebo", sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}
.corner-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 400px;
}
.corner-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--sage-100);
}
.corner-meta span {
  font-size: 14px;
  color: var(--slate-300);
  display: flex;
  align-items: center;
  gap: 8px;
}
.corner-meta svg { width: 14px; height: 14px; color: var(--primary); }

/* ===== ABOUT TEASER ===== */
.about-teaser-section {
  padding: 96px 0;
  background: var(--bg);
}
.about-teaser-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.about-teaser-img-wrap {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  width: 100%;
  max-width: 860px;
}
.video-controls {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.video-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.video-btn:hover {
  background: rgba(0,0,0,0.8);
}
.video-btn svg {
  width: 22px;
  height: 22px;
}
.about-teaser-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border-radius: 36px;
}
.about-teaser-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  padding: 14px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(136,183,49,0.35);
}
.about-teaser-num {
  display: block;
  font-family: 'Heebo', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-teaser-label {
  display: block;
  font-size: 0.78rem;
  opacity: 0.9;
  margin-top: 3px;
}
.about-teaser-content .section-eyebrow {
  margin-bottom: 0px;
}
.about-teaser-content {
  width: 100%;
  max-width: 860px;
  text-align: right;
}
.about-teaser-content h2 {
  margin-bottom: 18px;
}
.about-teaser-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
}
.about-teaser-content p {
  color: var(--muted);
  margin-bottom: 24px;
}
.about-teaser-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px 24px;
}
.about-teaser-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  background: var(--sage-100);
  border-radius: 100px;
  padding: 8px 18px 8px 14px;
}
.about-teaser-list li svg {
  color: var(--primary);
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .about-teaser-grid {
    gap: 28px;
  }
  .about-teaser-img {
    height: 240px;
  }
}

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 110px 0;
  background: var(--slate-900);
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(136,183,49,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 20%, rgba(136,183,49,0.10) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.trust-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.025) 0px,
    rgba(255,255,255,0.025) 1px,
    transparent 1px,
    transparent 80px
  ), repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.025) 0px,
    rgba(255,255,255,0.025) 1px,
    transparent 1px,
    transparent 80px
  );
  pointer-events: none;
  z-index: 0;
}
.trust-section .container {
  position: relative;
  z-index: 1;
}
.trust-section .section-eyebrow {
  background: rgba(136,183,49,0.18);
  color: var(--primary-light);
}
.trust-section .section-heading h2 {
  color: #fff;
}

.section-heading {
  margin-bottom: 64px;
}
.section-heading.center { text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(136, 183, 49, 0.14);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-heading h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 2px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

.trust-card {
  background: rgba(255,255,255,0.04);
  border-radius: 0;
  padding: 44px 32px;
  border: none;
  border-inline-start: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: background 0.35s, transform 0.35s;
  overflow: hidden;
}
.trust-card:first-child { border-inline-start: none; }
.trust-card:hover {
  background: rgba(136,183,49,0.10);
  transform: translateY(-4px);
}

.trust-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(136,183,49,0.15);
  color: var(--primary-light);
  display: grid; place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(136,183,49,0.25);
}
.trust-card h3 {
  font-size: 19px; font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.3;
}
.trust-card p { color: rgba(255,255,255,0.55); font-size: 14.5px; line-height: 1.65; }

/* ===== QUICK DONATE SECTION ===== */
/* ===== QUICK DONATE SECTION ===== */
.quick-donate-section {
  padding: 70px 0 80px;
  background: var(--bg);
}

/* --- Banner --- */
.quick-donate-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 36px;
  overflow: hidden;
  padding: 52px 44px;
  background-color: var(--primary-dark);
  background-image: url('../media/Project-ahava-aza_0000s_0005_israel-flag-field-with-cloudy-sky-memorial-day-concept.png');
  background-size: cover;
  background-position: center;
  margin-bottom: 28px;
}

.quick-donate-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(136, 183, 49, 0.35);
}

.quick-donate-banner > * { position: relative; z-index: 1; }

.quick-donate-banner-text {
  position: relative;
  z-index: 3;
}

.banner-layer-img {
  position: absolute;
  right: 44px;
  top: 28px;
  transform: none;
  height: 75px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  z-index: 2; /* under the text (see .quick-donate-banner-text z-index) */
  pointer-events: none;
}

.quick-donate-banner-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 0;
  margin-top: 27px;
}

.quick-donate-banner-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 22px !important;
  line-height: 1.75;
  margin-top: -2px;
  max-width: 560px;
}

@media (min-width: 769px) {
  .quick-donate-banner-text p {
    white-space: nowrap;
  }
}

.btn-banner {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  background: rgb(164, 221, 59);
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  white-space: nowrap;
  box-shadow: 0px 13px 49px 0px rgba(0, 0, 0, 0.6);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, filter 0.2s, transform 0.2s;
}

.btn-banner:hover {
  background: var(--primary-light);
  box-shadow:
    0px 16px 54px 0px rgba(0, 0, 0, 0.7),
    0 0 0 3px rgba(164, 221, 59, 0.22),
    0 0 24px rgba(164, 221, 59, 0.55),
    0 0 44px rgba(164, 221, 59, 0.35);
  filter: saturate(1.05) brightness(1.03);
  transform: translateY(-1px);
}

.btn-banner:focus-visible {
  outline: none;
  box-shadow:
    0px 13px 49px 0px rgba(0, 0, 0, 0.6),
    0 0 0 4px rgba(255, 255, 255, 0.35),
    0 0 0 7px rgba(164, 221, 59, 0.35),
    0 0 28px rgba(164, 221, 59, 0.55);
}

/* --- Bottom two columns --- */
.quick-donate-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 24px;
  align-items: start;
}

/* Photo column */
.quick-donate-photo-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 233px;
}

.quick-donate-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 15% 25%;
  display: block;
}

/* Form card column */
.quick-donate-card {
  background: #fff;
  border: 1px solid var(--sage-200);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 8px 32px rgba(28, 42, 9, 0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-donate-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  direction: rtl;
  flex-direction: row-reverse; /* icon on the left, title on the right */
}

.quick-donate-card-icon {
  color: var(--primary);
}

.quick-donate-card-icon svg {
  width: 54px;
  height: 54px;
  stroke-width: 1.8;
}

.quick-donate-card h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--slate-900);
  margin: 0;
  flex: 1;
  text-align: right;
}

.quick-donate-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-donate-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}

.quick-donate-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quick-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quick-field span {
  font-weight: 700;
  color: var(--slate-700);
  font-size: 14px;
}

.quick-field input {
  width: 100%;
  border: 1.5px solid var(--slate-200);
  border-radius: 12px;
  padding: 11px 14px;
  background: var(--sage-bg);
  color: var(--text);
  direction: rtl;
  text-align: right;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quick-field input::placeholder {
  color: var(--slate-300);
}

.quick-field input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(136, 183, 49, 0.18);
}

.quick-donate-form .btn {
  min-width: 160px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .quick-donate-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .quick-donate-bottom {
    grid-template-columns: 1fr;
  }

  .quick-donate-photo-wrap {
    min-height: 240px;
  }

  .quick-donate-actions {
    grid-template-columns: 1fr;
  }
}

/* ===== INNER PAGES ===== */
.inner-page { padding-top: 130px; padding-bottom: 90px; }

.intro {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}
.intro h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.2;
  margin-bottom: 16px;
}
.intro p { font-size: 22px; color: var(--muted); }

.title-underlined {
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 6px;
  text-underline-offset: 10px;
}
.title-wavy {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: rgba(136, 183, 49, 0.45);
  text-underline-offset: 8px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 32px; font-weight: 900;
}
.section-title.center { justify-content: center; margin-bottom: 30px; }
.section-title.inverse { color: #fff; }

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  margin-bottom: 64px;
}
.about-grid article p {
  color: var(--slate-700);
  font-size: 18px;
  margin-bottom: 18px;
  line-height: 1.75;
}

.values-card {
  border: 1.5px solid var(--sage-200);
  border-radius: 32px;
  background: var(--sage-bg);
  padding: 32px;
}
.values-card h3 { font-size: 26px; margin-bottom: 18px; }

.value-item {
  display: flex; gap: 14px;
  align-items: flex-start;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--sage-200);
}
.value-item:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.value-index {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
  font-family: "Heebo", sans-serif; font-weight: 900;
}
.value-item h4 { font-size: 18px; margin-bottom: 4px; }
.value-item p { color: var(--muted); font-size: 15px; }

.team-wrap {
  border-radius: 48px;
  background: var(--sage-bg);
  padding: 44px;
  border: 1px solid var(--sage-200);
}
.team-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.member { text-align: center; }
.member-image {
  width: 116px; height: 116px;
  border-radius: 999px; overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 28px rgba(26,46,13,0.14);
  margin: 0 auto 12px;
}
.member h4 { font-size: 18px; margin-bottom: 4px; }
.member p { color: var(--muted); font-size: 14px; }

/* ===== DONATION TIERS ===== */
.donation-tiers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.tier-card-v2 {
  position: relative;
  background: #fff;
  border: 2px solid var(--sage-200);
  border-radius: 28px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.tier-card-v2:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(136,183,49,0.13);
}

.tier-tag {
  display: inline-block;
  background: var(--sage-100);
  color: var(--primary-dark);
  font-size: 12px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  align-self: flex-start;
}

.featured-tag {
  background: #fff;
  color: var(--primary-dark);
}

.tier-featured {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.tier-featured h3, .tier-featured p { color: #fff; }
.tier-featured p { opacity: 0.88; }
.tier-featured .tier-icon-v2 {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.tier-featured:hover {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
}

.tier-custom { border-style: dashed; }

.tier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tier-icon-v2 {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--sage-100);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}

.tier-amount {
  font-family: "Heebo", sans-serif;
  font-size: 36px; font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
  text-align: left;
}
.featured-amount { color: #fff; }

.tier-card-v2 h3 { font-size: 20px; font-weight: 700; }
.tier-card-v2 p { color: var(--muted); font-size: 15px; line-height: 1.6; flex: 1; }

.btn-tier { width: 100%; margin-top: auto; }

.custom-amount-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--sage-200);
  border-radius: 12px;
  padding: 10px 14px;
  background: var(--sage-bg);
}
.currency-sym { font-weight: 700; color: var(--primary); font-size: 18px; }
.custom-amount-wrap input {
  border: 0; background: transparent;
  width: 100%; font-size: 16px;
  color: var(--text);
  outline: none;
}
.custom-amount-wrap input::placeholder { color: var(--slate-300); }

/* ===== OTHER WAYS ===== */
.other-ways-wrap { margin-top: 16px; }
.other-ways {
  background: var(--slate-900);
  color: #fff;
  border-radius: 40px;
  padding: 36px;
  max-width: 680px;
  margin: 0 auto;
}
.other-item { display: flex; gap: 14px; margin-bottom: 24px; }
.other-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.other-item h4 { font-size: 22px; margin-bottom: 6px; }
.other-item p, .mono p { color: var(--slate-300); }
.mono { font-family: ui-monospace, monospace; font-size: 13px; line-height: 1.7; }

.tax-note {
  border: 1.5px solid rgba(136,183,49,0.4);
  background: rgba(136,183,49,0.12);
  border-radius: 18px;
  padding: 20px;
  margin-top: 24px;
}
.tax-note h4 {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
  font-size: 17px;
}
.tax-note p { color: var(--slate-300); font-size: 14px; }

/* ===== STORIES ===== */
.stories-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.story-card {
  border-radius: 28px; overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 28px rgba(26,46,13,0.07);
  border: 1px solid var(--sage-100);
  transition: transform 0.3s, box-shadow 0.3s;
}
.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(26,46,13,0.12);
}
.story-media { position: relative; height: 200px; overflow: hidden; }
.story-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.story-card:hover .story-media img { transform: scale(1.08); }
.story-icon {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 999px;
  background: var(--primary); color: #fff;
  display: grid; place-items: center;
}
.story-content { padding: 26px; }
.story-content h3 { font-size: 22px; margin-bottom: 10px; }
.story-content p {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
}
.story-author {
  border-top: 1px solid var(--sage-100);
  padding-top: 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-dark);
}
.stories-action { text-align: center; margin-top: 52px; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 840px; margin: 0 auto 56px;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1.5px solid var(--sage-200);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--primary); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  font-family: "Heebo", sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--text);
  gap: 16px;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-arrow {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--sage-100);
  color: var(--primary);
  display: grid; place-items: center;
  transition: transform 0.3s, background 0.2s;
}
.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
  background: var(--primary);
  color: #fff;
}

.faq-answer {
  padding: 0 28px 24px;
  border-top: 1px solid var(--sage-100);
}
.faq-answer p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  padding-top: 18px;
}

.faq-cta {
  text-align: center;
  padding: 48px;
  background: var(--sage-bg);
  border-radius: 32px;
  max-width: 840px;
  margin: 0 auto;
  border: 1px solid var(--sage-200);
}
.faq-cta p { font-size: 20px; color: var(--muted); margin-bottom: 22px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 44px;
  align-items: flex-start;
}

.contact-info {
  background: var(--sage-bg);
  border-radius: 32px;
  padding: 36px;
  border: 1px solid var(--sage-200);
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid var(--sage-200);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
a.contact-value:hover { color: var(--primary); }

.social-links { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--sage-200); }
.social-links h3 { font-size: 20px; margin-bottom: 14px; }
.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.social-btn {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid var(--sage-200);
  color: var(--primary);
  display: grid; place-items: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
.social-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.social-btn:focus-visible {
  outline: 3px solid var(--primary-xlight);
  outline-offset: 2px;
}

/* CONTACT FORM */
.contact-form {
  background: #fff;
  border-radius: 32px;
  padding: 40px;
  border: 1.5px solid var(--sage-200);
  box-shadow: 0 8px 32px rgba(26,46,13,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 14px; font-weight: 700;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--sage-200);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  background: var(--sage-bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  direction: rtl;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(136,183,49,0.12);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-300); }

.btn-submit { width: 100%; margin-top: 8px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(136,183,49,0.1);
  border: 1px solid rgba(136,183,49,0.3);
  border-radius: 12px;
  color: var(--primary-dark);
  font-weight: 600;
}

/* ===== HELP PAGE ===== */
.help-page {
  background: linear-gradient(180deg, #fff 0%, var(--sage-bg) 100%);
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  align-items: flex-start;
}

.help-info {
  background: #fff;
  border: 1.5px solid var(--sage-200);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 12px 34px rgba(26, 46, 13, 0.07);
}

.help-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.help-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 14px;
  background: var(--sage-bg);
  border: 1px solid var(--sage-200);
  color: var(--slate-700);
  font-weight: 700;
  font-size: 13px;
}

.help-urgent-box {
  border-radius: 20px;
  background: rgba(136, 183, 49, 0.12);
  border: 1.5px solid rgba(136, 183, 49, 0.38);
  padding: 18px;
}

.help-urgent-box h3 {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
}

.help-urgent-box p {
  color: var(--muted);
  margin-bottom: 10px;
}

.help-hotline {
  display: inline-block;
  font-family: "Heebo", sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
}

.help-hotline:hover {
  color: var(--primary);
}

.help-hotline-meta {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--slate-700);
}

.help-note {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.help-form {
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  border: 1.5px solid var(--sage-200);
  box-shadow: 0 12px 34px rgba(26, 46, 13, 0.07);
}

.help-form select {
  border: 1.5px solid var(--sage-200);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  background: var(--sage-bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.help-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(136, 183, 49, 0.12);
  background: #fff;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--slate-900);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 72px 0 24px;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #87B730;
  opacity: 0.22;
  filter: brightness(0.85) saturate(0.9);
  -webkit-mask-image: url('../media/חיילים רקע.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  -webkit-mask-size: cover;
  mask-image: url('../media/חיילים רקע.svg');
  mask-repeat: no-repeat;
  mask-position: center bottom;
  mask-size: cover;
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 24px;
  margin-bottom: 44px;
}
.footer-brand {}

.footer-logo {
  margin-bottom: 20px;
}
.logo-img-footer {
  height: 56px;
  width: auto;
  display: block;
}

.site-footer p { color: var(--slate-300); font-size: 15px; line-height: 1.6; }

.footer-social {
  display: flex; gap: 10px;
  margin-top: 20px;
}
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social-btn svg { width: 18px; height: 18px; stroke: currentColor; flex-shrink: 0; }
.footer-social-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.footer-col h4 { font-size: 18px; margin-bottom: 16px; color: #fff; }
.footer-col button:not(.btn),
.footer-col a:not(.btn) {
  display: block;
  text-align: right;
  color: var(--slate-300);
  padding: 5px 0;
  font-size: 15px;
  transition: color 0.2s;
}
.footer-col button:not(.btn):hover,
.footer-col a:not(.btn):hover { color: var(--primary-light); }

.newsletter { display: flex; gap: 8px; margin-top: 12px; }
.newsletter input {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  width: 100%;
  outline: none;
  direction: rtl;
}
.newsletter input::placeholder { color: #94a3b8; }
.newsletter input:focus { border-color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #94a3b8;
  font-size: 14px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links button,
.footer-bottom-links a {
  color: #94a3b8;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-bottom-links button:hover,
.footer-bottom-links a:hover { color: var(--primary-light); }

/* ===== MOBILE DONATE ===== */
.mobile-donate {
  position: fixed;
  right: 16px; left: 16px; bottom: 16px;
  z-index: 45;
}
.mobile-donate .btn {
  width: 100%;
  box-shadow: 0 16px 32px rgba(136,183,49,0.35);
}
.mobile-donate.hidden { display: none; }

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.corners-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.corners-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.12s; }
.corners-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.19s; }
.corners-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.26s; }
.trust-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.trust-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.12s; }
.trust-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.19s; }
.trust-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.26s; }

/* ===== RESPONSIVE ===== */
@media (min-width: 900px) {
  .desktop-menu { display: flex; }
  .mobile-toggle, .mobile-menu, .mobile-donate { display: none !important; }
}

@media (max-width: 1100px) {
  .corners-split { grid-template-columns: 1fr; gap: 40px; }
  .corners-video-col { position: static; }
  .corners-grid, .trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .quick-donate-shell { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .team-grid, .stories-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .donation-tiers { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .container { width: calc(100% - 28px); }
  .site-nav { padding: 14px 0; }
  .logo-img { height: 40px; }
  .lang-switch { transform: scale(0.96); transform-origin: right center; }
  .mobile-menu { padding: 16px; }
  .mobile-menu button { padding: 12px 0; }

  .hero { min-height: 72vh; }
  .hero-content { padding-top: 48px; padding-bottom: 26px; }
  .hero-copy h1 { font-size: clamp(34px, 9vw, 52px); line-height: 1.12; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .quick-donate-copy,
  .quick-donate-frame-wrap { padding: 22px; border-radius: 22px; }
  .quick-donate-banner { padding: 26px 22px; border-radius: 22px; }
  .banner-layer-img { right: 18px; top: 18px; height: 54px; }
  .btn-banner { width: 100%; justify-content: center; }
  .quick-donate-banner-text h2 { margin-top: 0; }
  .quick-donate-banner-text p { white-space: normal; max-width: 100%; }

  .quick-donate-bottom { grid-template-columns: 1fr; }
  .quick-donate-photo-wrap { height: 220px; }

  .quick-donate-row { grid-template-columns: 1fr; }
  .quick-type-group { grid-template-columns: 1fr; }
  .quick-donate-embed-note { min-height: 320px; padding: 18px; }
  .corner-card { grid-template-columns: 1fr; }
  .corner-img-wrap { min-height: 260px; }
  .corner-body { padding: 32px 28px; }
  .corner-body::before { font-size: 52px; top: 16px; left: 16px; }
  .donation-tiers { grid-template-columns: 1fr; }
  .team-grid, .stories-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-copy p, .intro p { font-size: 17px; }
  .site-footer { padding-bottom: 90px; }
  .faq-cta { padding: 30px 20px; }
  .contact-form { padding: 28px 20px; }
  .contact-info { padding: 26px 20px; }
  .help-form { padding: 26px 20px; }
  .help-info { padding: 24px 20px; }
  .help-hotline { font-size: 26px; }

  .help-chip-row { flex-wrap: wrap; gap: 10px; }
  .help-chip { width: 100%; justify-content: flex-start; }

  .contact-detail { grid-template-columns: 44px 1fr; }
  .social-row { flex-wrap: wrap; }
  .social-btn { flex: 1 1 120px; justify-content: center; }

  .site-footer p { font-size: 14px; }
  .footer-col button:not(.btn) { padding: 12px 0; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .container { width: calc(100% - 22px); }
  .hero { min-height: 70vh; }
  .hero-copy h1 { font-size: clamp(30px, 10vw, 46px); }
  .hero-copy p { font-size: 16px; }

  .quick-donate-banner { padding: 22px 18px; }
  .banner-layer-img { display: none; }
  .btn-banner { font-size: 18px; padding: 14px 22px; }

  .help-hotline { font-size: 22px; }
  .contact-detail { gap: 10px; }
  .faq-question { font-size: 16px; }
}
