/* ============================================================
   Tzir Chesed — design system
   Palette: deep navy / honey gold / warm cream
   Type: Frank Ruhl Libre (display, HE+EN) · Heebo (body, HE+EN)
   ============================================================ */

:root {
  --navy-900: #0b1b31;
  --navy-800: #0f2440;
  --navy-700: #14304e;
  --navy-600: #1c4066;

  --gold-700: #8a6526;
  --gold-600: #b8873b;
  --gold-500: #c9944e;
  --gold-400: #dbb077;
  --gold-300: #e9cd9a;
  --gold-200: #f3e2c0;
  --gold-100: #faf0dc;
  --gold-ink: #7e5c22;

  --cream: #faf7f0;
  --cream-soft: #f4eee1;
  --white: #ffffff;

  --ink: #1b2537;
  --ink-soft: #4e5b72;
  --ink-faint: #6b7487;

  --line: #e7dfcc;
  --line-soft: #eee8d8;

  --shadow-sm: 0 1px 2px rgba(15, 36, 64, 0.05), 0 2px 10px rgba(15, 36, 64, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 36, 64, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 36, 64, 0.14);

  --radius: 14px;
  --radius-lg: 22px;

  --font-body: "Heebo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Frank Ruhl Libre", "Heebo", Georgia, serif;

  --container: 1160px;
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--navy-700); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-600); }

:focus-visible {
  outline: 2.5px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold-200); color: var(--navy-900); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

main section[id] { scroll-margin-top: 88px; }

.skip-link {
  position: absolute;
  inset-inline-start: -9999px;
  top: 0;
  background: var(--navy-800);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 10px 10px;
}
.skip-link:focus { inset-inline-start: 8px; top: 0; color: #fff; }

/* ============ HEADER ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled {
  background: rgba(250, 247, 240, 0.94);
  box-shadow: 0 8px 30px rgba(15, 36, 64, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy-800);
  letter-spacing: 0.01em;
}
.brand-tag { font-size: 12px; color: var(--ink-faint); margin-top: 1px; }

.site-nav { margin-inline-start: auto; }
.site-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}
.site-nav a:hover { background: rgba(233, 205, 154, 0.28); color: var(--navy-900); }
.nav-cta { margin-inline-start: 8px; }
.site-nav .nav-cta a { color: var(--navy-900); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  margin: 4px 0;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.site-nav.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy-800);
  padding: 8px 15px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.lang-toggle svg { width: 15px; height: 15px; opacity: 0.75; }
.lang-toggle:hover {
  background: var(--white);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.25s, background 0.2s, color 0.2s, border-color 0.2s, filter 0.2s;
  font-family: inherit;
  line-height: 1.3;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 16.5px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--navy-800);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--navy-900);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: linear-gradient(180deg, #dfaf6a, #c9944e);
  color: var(--navy-900);
  box-shadow: 0 2px 10px rgba(201, 148, 78, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-gold:hover {
  filter: brightness(1.06);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(201, 148, 78, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: rgba(20, 48, 78, 0.30);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--navy-700);
  box-shadow: var(--shadow-sm);
}

.btn:focus-visible { outline-offset: 2px; border-radius: 999px; }

.icon-arrow { width: 18px; height: 18px; flex: 0 0 auto; transition: transform 0.2s var(--ease); }
.btn:hover .icon-arrow { transform: translateX(3px); }
html[dir="rtl"] .icon-arrow { transform: scaleX(-1); }
html[dir="rtl"] .btn:hover .icon-arrow { transform: scaleX(-1) translateX(3px); }

/* ============ TYPE HELPERS ============ */

.eyebrow {
  font-size: 13px;
  color: var(--gold-ink);
  font-weight: 700;
  margin: 0;
}
html[lang="en"] .eyebrow { text-transform: uppercase; letter-spacing: 0.14em; }
.eyebrow.center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.eyebrow.center::before,
.eyebrow.center::after {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}
.eyebrow.center::after { background: linear-gradient(90deg, var(--gold-500), transparent); }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.2;
  color: var(--navy-800);
  margin: 12px 0 18px;
}
.section-title.center { text-align: center; }

.section-lede {
  font-size: 18.5px;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-top: 0;
}
.section-lede.center { margin-inline: auto; text-align: center; }

/* ============ SECTIONS ============ */

.section { padding: 104px 0; }
.section-white { background: var(--white); }

/* ============ HERO ============ */

.hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(219, 176, 119, 0.22), transparent 62%),
    radial-gradient(900px 500px at -8% 42%, rgba(20, 48, 78, 0.07), transparent 60%);
}
html[dir="ltr"] .hero {
  background:
    radial-gradient(1100px 520px at 12% -8%, rgba(219, 176, 119, 0.22), transparent 62%),
    radial-gradient(900px 500px at 108% 42%, rgba(20, 48, 78, 0.07), transparent 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(46px, 5.6vw, 80px);
  line-height: 1.1;
  color: var(--navy-900);
  margin: 16px 0 20px;
}

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  max-width: 54ch;
  margin: 0 0 30px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.trust-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-strip svg { width: 15px; height: 15px; color: var(--gold-600); flex: 0 0 auto; }

.hero-art { position: relative; }
.hero-art > svg {
  width: 100%;
  height: auto;
  max-width: 500px;
  margin-inline-start: auto;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(15, 36, 64, 0.18));
}

.hero-chip {
  position: absolute;
  bottom: 11%;
  inset-inline-start: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(233, 205, 154, 0.6);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
}
.hero-chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-200), var(--gold-400));
  color: var(--navy-800);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.hero-chip-icon svg { width: 20px; height: 20px; }
.hero-chip-text { display: flex; flex-direction: column; line-height: 1.25; }
.hero-chip-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy-800);
}
.hero-chip-text span:not(strong) { font-size: 12.5px; color: var(--ink-faint); font-weight: 500; }

/* hero entrance */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.hero-copy > * { animation: riseIn 0.7s var(--ease) both; }
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.13s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.21s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.30s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.40s; }
.hero-art > svg { animation: riseIn 0.9s 0.2s var(--ease) both; }
.hero-chip { animation: riseIn 0.7s 0.55s var(--ease) both; }

/* ============ STATS BAND ============ */

.stats-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  background:
    radial-gradient(600px 220px at 50% -40%, rgba(219, 176, 119, 0.18), transparent 70%),
    linear-gradient(160deg, var(--navy-700), var(--navy-800) 55%, var(--navy-900));
  border-radius: 24px;
  padding: 46px 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(233, 205, 154, 0.16);
  border-radius: 17px;
  pointer-events: none;
}
.stat { text-align: center; padding: 6px 20px; }
.stat + .stat { border-inline-start: 1px solid rgba(255, 255, 255, 0.12); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 14.5px;
  color: rgba(240, 244, 250, 0.72);
  font-weight: 500;
}

/* ============ CARDS (what we do) ============ */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px 34px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.card::after {
  content: "";
  position: absolute;
  inset-inline-start: 28px;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  transition: width 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-300);
}
.card:hover::after { width: 64px; }

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  color: var(--gold-700);
  display: grid;
  place-items: center;
}
.card-icon svg { width: 26px; height: 26px; }
.card-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: var(--gold-200);
  letter-spacing: 0.02em;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--navy-800);
}
.card p { margin: 0; color: var(--ink-soft); font-size: 16px; }

/* ============ WORLDS / FEATURE ============ */

.section-feature {
  position: relative;
  background:
    radial-gradient(900px 480px at 82% 18%, rgba(219, 176, 119, 0.14), transparent 60%),
    linear-gradient(160deg, var(--navy-700) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
  color: #ece5d4;
  overflow: hidden;
}
.section-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cpath d='M36 22 l2.4 8 8 2.4 -8 2.4 -2.4 8 -2.4-8 -8-2.4 8-2.4Z' fill='%23EFD3A0' fill-opacity='.06'/%3E%3Cpath d='M108 92 l1.7 5.8 5.8 1.7 -5.8 1.7 -1.7 5.8 -1.7-5.8 -5.8-1.7 5.8-1.7Z' fill='%23EFD3A0' fill-opacity='.05'/%3E%3Ccircle cx='72' cy='128' r='1.6' fill='%23EFD3A0' fill-opacity='.07'/%3E%3Ccircle cx='16' cy='72' r='1.3' fill='%23EFD3A0' fill-opacity='.07'/%3E%3C/svg%3E");
  pointer-events: none;
}
.section-feature .container { position: relative; }
.section-feature .section-title { color: #fff; }
.section-feature .section-lede { color: rgba(230, 233, 240, 0.78); max-width: 52ch; margin-bottom: 30px; }
.section-feature .eyebrow { color: var(--gold-300); }

.worlds-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 64px;
  align-items: center;
}

.worlds-quote blockquote {
  position: relative;
  margin: 0;
  padding: 36px 38px 38px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 24px 60px rgba(5, 12, 24, 0.35);
}
.quote-icon {
  width: 34px;
  height: 34px;
  color: var(--gold-400);
  margin-bottom: 14px;
}
html[dir="rtl"] .quote-icon { transform: scaleX(-1); }
.worlds-quote p {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.55;
  margin: 0 0 18px;
  color: #fff;
  font-weight: 500;
}
.worlds-quote footer { display: flex; align-items: center; gap: 12px; }
.worlds-quote footer::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold-500);
}
.worlds-quote cite {
  font-style: normal;
  font-size: 14.5px;
  color: var(--gold-300);
  font-weight: 600;
}

/* ============ DONATE ============ */

.amounts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 42px;
}
.amounts-label { color: var(--ink-soft); font-size: 15px; font-weight: 600; }
.amounts-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pill {
  appearance: none;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--navy-800);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s var(--ease), box-shadow 0.2s;
}
.pill:hover { border-color: var(--gold-500); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.pill.selected {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
}

.donate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 34px;
}
.donate-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.donate-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-300);
}
.donate-head { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.flag {
  width: 34px;
  height: 25px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(15, 36, 64, 0.10), 0 2px 6px rgba(15, 36, 64, 0.12);
}
.donate-card h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-800);
}
.donate-currency {
  margin: 0;
  background: var(--gold-100);
  color: var(--gold-ink);
  font-weight: 700;
  font-size: 13.5px;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.donate-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--ink-faint);
  margin: 0 0 14px;
}
.donate-meta svg { width: 14px; height: 14px; color: var(--gold-600); flex: 0 0 auto; }
.donate-card .btn { margin-top: auto; }

.donate-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 38px;
  color: var(--ink-faint);
  font-size: 14px;
  text-align: center;
}
.donate-note svg { width: 16px; height: 16px; color: var(--gold-600); flex: 0 0 auto; }

/* ============ CONTACT ============ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 52px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.contact-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.contact-pin {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  color: var(--gold-700);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.contact-pin svg { width: 19px; height: 19px; }
.contact-card h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  color: var(--navy-800);
}
.contact-card address { font-style: normal; color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; }
.contact-card address p { margin: 6px 0; }
html[dir="rtl"] .addr-ltr { text-align: right; }
.contact-phone { display: flex; align-items: center; gap: 8px; }
.contact-phone svg { width: 15px; height: 15px; color: var(--gold-600); flex: 0 0 auto; }
.contact-phone a { color: var(--navy-800); font-weight: 700; }
.contact-phone a:hover { color: var(--gold-600); }

.contact-email { text-align: center; margin-top: 48px; margin-bottom: 0; }
.contact-email a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy-800);
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.18s var(--ease);
}
.contact-email a:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--navy-900);
}
.contact-email svg { width: 17px; height: 17px; color: var(--gold-600); }

/* ============ FOOTER ============ */

.site-footer {
  background: var(--navy-900);
  color: rgba(226, 232, 242, 0.75);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 44px;
  padding: 60px 0 44px;
}
.footer-brand-head { display: flex; align-items: center; gap: 12px; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-tag { color: rgba(226, 232, 242, 0.55); }
.footer-about {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(226, 232, 242, 0.65);
  max-width: 38ch;
  margin: 16px 0 0;
}
.footer-col h4 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-300);
}
html[lang="en"] .footer-col h4 { text-transform: uppercase; letter-spacing: 0.12em; }
.footer-col a {
  display: block;
  padding: 4px 0;
  color: rgba(226, 232, 242, 0.8);
  font-size: 15px;
}
.footer-col a:hover { color: var(--gold-300); }
.footer-col p { margin: 6px 0; font-size: 14.5px; color: rgba(226, 232, 242, 0.65); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 20px 0 26px;
}
.footer-copy { margin: 0; font-size: 13.5px; color: rgba(226, 232, 242, 0.55); }
.footer-domain {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-300);
}
.footer-domain:hover { color: var(--gold-200); }

/* ============ SCROLL REVEAL ============ */

html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
html.js .reveal.in { opacity: 1; transform: none; }
html.js .stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
html.js .stagger > .reveal:nth-child(3) { transition-delay: 0.24s; }

/* ============ RESPONSIVE ============ */

@media (max-width: 1020px) {
  .hero-inner { gap: 40px; }
  .worlds-grid { gap: 44px; }
}

@media (max-width: 940px) {
  .section { padding: 80px 0; }
  .hero { padding: 56px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { max-width: 420px; margin-inline: auto; }
  .hero-chip { inset-inline-start: 0; }
  .worlds-grid { grid-template-columns: 1fr; gap: 40px; }

  .cards, .donate-grid, .contact-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .stats-band { grid-template-columns: 1fr; gap: 10px; padding: 34px 24px; }
  .stat { padding: 16px 10px; }
  .stat + .stat { border-inline-start: 0; border-top: 1px solid rgba(255, 255, 255, 0.12); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }

  .nav-toggle { display: block; }
  .site-nav ul {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(15, 36, 64, 0.14);
    padding: 14px 20px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .site-nav.open ul {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .site-nav ul a { display: block; padding: 13px 14px; border-radius: 12px; font-size: 16px; }
  .nav-cta { margin-inline-start: 0; margin-top: 8px; }
  .nav-cta a { text-align: center; }

  .header-inner { gap: 10px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .brand-tag { display: none; }
  .brand-logo { width: 40px; height: 40px; }
  .hero-art { max-width: 330px; }
  .hero-chip { padding: 10px 14px; gap: 10px; }
  .hero-chip-icon { width: 34px; height: 34px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 36px; }
  .worlds-quote blockquote { padding: 40px 26px 30px; }
}

/* ============ REDUCED MOTION ============ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
}
