:root {
  --ink: #5c2218;
  --maroon: #6b1d22;
  --cream: #fff6e9;
  --sand: #fff6e9;
  --peach: #ffd7a3;
  --coral: #e24c1f;
  --lagoon: #14827a;
  --paper: #ffe9c4;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Arial Hebrew",
    "Noto Sans Hebrew", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Arial Hebrew",
    "Noto Sans Hebrew", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-compact: "SF Compact Text", "SF Compact Display", "SF Compact", -apple-system,
    BlinkMacSystemFont, "SF Pro Text", "Arial Hebrew", "Noto Sans Hebrew", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-logo-h: 5rem;
  --btn-radius: 0.7rem;
  --btn-corner: squircle;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

html,
body {
  background: var(--sand);
  color: var(--ink);
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans), ui-sans-serif, system-ui, sans-serif;
  font-size: 1.2rem;
  line-height: 1.65;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.font-display {
  font-family: var(--font-display), ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.038em;
}

.font-compact {
  font-family: var(--font-compact), ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.wrap {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .wrap {
    width: min(72rem, calc(100% - 3rem));
  }
}

.wrap-narrow {
  width: min(56rem, calc(100% - 2rem));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .wrap-narrow {
    width: min(56rem, calc(100% - 3rem));
  }
}

main {
  flex: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid color-mix(in srgb, var(--maroon) 10%, transparent);
}

.glass {
  background: transparent;
}

.glass .header-bar {
  overflow: visible;
  background: color-mix(in srgb, var(--cream) 68%, transparent);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  transition:
    background 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    padding 0.5s var(--ease);
}

.glass.is-scrolled .header-bar {
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  box-shadow: 0 10px 36px rgba(92, 34, 24, 0.08);
}

.header-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 7.8rem;
  padding: 0 1rem;
  overflow: visible;
  transition: padding 0.5s var(--ease), min-height 0.5s var(--ease);
}

@media (min-width: 640px) {
  .header-bar {
    padding-inline: 1.5rem;
  }
}

.site-header.is-scrolled .header-bar {
  padding-block: 0;
  min-height: 5rem;
}

html[lang="he"] .lang-en {
  display: none !important;
}

html[lang="en"] .lang-he {
  display: none !important;
}

html[lang="he"] body,
html[lang="he"] .font-display,
html[lang="he"] .font-compact,
html[lang="he"] .person-name,
html[lang="he"] .how-title,
html[lang="he"] .kicker,
html[lang="he"] .way-kicker,
html[lang="he"] .doc-num,
html[lang="he"] .btn {
  letter-spacing: 0;
}

html[lang="he"] {
  font-feature-settings: "ss01" 0;
}

html[lang="he"] .hero-copy h1,
html[lang="he"] .page-header h1,
html[lang="he"] .how-title {
  line-height: 1.15;
}

html[lang="he"] .way-kicker {
  text-transform: none;
}

.num,
.ltr {
  direction: ltr;
  unicode-bidi: isolate;
}

.num {
  font-variant-numeric: tabular-nums;
}

.brand-cluster {
  display: flex;
  flex: 1;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
}

@media (min-width: 1024px) {
  .brand-cluster {
    flex: 0 1 auto;
  }
}

.lang-toggle {
  display: flex;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--maroon);
  border-radius: 999px;
}

.lang-btn {
  min-height: 2.15rem;
  padding: 0 0.7rem;
  border: 0;
  background: transparent;
  color: var(--maroon);
  font-family: var(--font-compact), sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.lang-btn[data-lang="he"] {
  letter-spacing: 0;
}

.lang-btn.is-on {
  background: var(--maroon);
  color: var(--cream);
}

html[dir="rtl"] .nav-desktop {
  justify-content: center;
}

.home-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .home-social {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.home-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 4.5rem;
  padding: 1rem 1.25rem;
  border-radius: 1.2rem;
  background: var(--cream);
  color: var(--maroon);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(92, 34, 24, 0.1);
}

.home-social a:hover {
  transform: scale(1.03);
}

.home-social--lined a {
  border: 1px solid #c9a45a;
}

.home-social .icon {
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
}

.social-band {
  background: var(--maroon);
  color: var(--cream);
  padding: 3.5rem 0;
}

.social-band h2 {
  color: var(--cream);
}

.social-band .home-social a {
  background: var(--cream);
  color: var(--maroon);
}

.social-network {
  margin-top: 2.25rem;
}

.social-network h3 {
  margin: 0;
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 600;
}

.social-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.85rem;
}

.social-posts--videos .social-post img,
.social-posts--videos .social-post iframe {
  aspect-ratio: 16 / 9;
}

@media (min-width: 900px) {
  .social-posts--videos {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: none;
  }
}

.yt-feed-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 1.05rem;
}

.social-post {
  display: block;
  overflow: hidden;
  border-radius: 1.25rem;
  background: var(--cream);
  color: var(--maroon);
  text-decoration: none;
  transition: transform 0.35s var(--ease);
}

.social-post:hover {
  transform: translateY(-3px);
}

.social-post--video:hover {
  transform: none;
}

.social-post-media {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: #1c0a08;
  aspect-ratio: 16 / 9;
}

.social-post img,
.social-post iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.social-post iframe,
.social-post-media > div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #1c0a08;
}

.social-post--video .social-post-media::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0 0.7rem 1.15rem;
  border-color: transparent transparent transparent #fffdf6;
  transform: translate(-35%, -50%);
  filter: drop-shadow(0 2px 8px rgba(28, 8, 6, 0.45));
  pointer-events: none;
}

.social-post-media[data-yt-id] {
  cursor: pointer;
}

.social-post--video .social-post-media.is-playing::after {
  display: none;
}

.social-post p,
.social-post-title {
  margin: 0;
  padding: 0.9rem 1rem 1.05rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
}

.social-post-title {
  display: block;
  color: inherit;
  text-decoration: none;
}

.social-post-title:hover {
  text-decoration: underline;
}

html[lang="he"] .social-post p,
html[lang="he"] .social-post-title {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: start;
}

.brand {
  display: flex;
  min-width: 0;
  flex-shrink: 0;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  height: var(--header-logo-h);
  width: auto;
  max-width: min(14rem, calc(100vw - 8.5rem));
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: height 0.5s var(--ease), max-width 0.5s var(--ease);
}

.site-header.is-scrolled {
  --header-logo-h: 3.75rem;
}

@media (min-width: 1024px) {
  :root {
    --header-logo-h: 5.5rem;
  }

  .brand img {
    max-width: 9rem;
  }

  .site-header.is-scrolled {
    --header-logo-h: 4.15rem;
  }
}

.brand-tag {
  display: none;
}

.header-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.45rem;
  margin-inline-start: auto;
}

.menu-toggle {
  display: inline-flex;
  min-height: 3rem;
  min-width: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  color: var(--maroon);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.burger span {
  display: block;
  height: 2px;
  width: 1.75rem;
  background: var(--coral);
  transform-origin: center;
  transition: transform 0.5s var(--ease);
}

.menu-toggle.is-open .burger span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open .burger span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-desktop {
  display: none;
}

.nav-pair {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .header-bar {
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.85rem;
    min-height: 8.25rem;
  }

  .site-header.is-scrolled .header-bar {
    min-height: 5.4rem;
  }

  .nav-desktop {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 0.4rem;
    order: 0;
    flex: 1 1 auto;
    min-width: 0;
    position: static;
    pointer-events: auto;
    padding: 0;
    max-height: 8.25rem;
  }

  .nav-desktop a {
    pointer-events: auto;
  }

  .header-actions {
    margin-inline-start: 0;
  }

  .nav-link {
    min-height: 2.35rem;
    padding: 0.32rem 1.05rem;
    font-size: 0.92rem;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.5rem 1.7rem;
  border: 0;
  border-radius: var(--btn-radius);
  corner-shape: var(--btn-corner);
  background: var(--coral);
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-align: center;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

html[lang="he"] .nav-link {
  letter-spacing: 0;
}

.nav-link:hover,
.nav-link.is-active {
  background: #c73d16;
  color: var(--cream);
  font-weight: 800;
}

.nav-link.is-active {
  font-weight: 800;
}

.nav-link.nav-donate {
  background: var(--lagoon);
  box-shadow: none;
}

.nav-link.nav-donate:hover,
.nav-link.nav-donate.is-active {
  background: #0f6b65;
  color: var(--cream);
}


.donate-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.65rem 1.25rem;
  background: var(--coral);
  text-decoration: none;
}

@media (min-width: 640px) {
  .donate-strip {
    padding-inline: 1.5rem;
  }
}

.donate-strip:hover {
  background: #c73d16;
}

.donate-strip-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  min-width: 11.5rem;
  padding: 0.35rem 2.4rem;
  border-radius: var(--btn-radius);
  corner-shape: var(--btn-corner);
  background: var(--cream);
  color: var(--maroon);
  font-family: var(--font-compact), sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

html[lang="he"] .donate-strip-go {
  letter-spacing: 0;
}

.person-latin {
  margin: 0.15rem 0 0;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.72;
  direction: ltr;
  unicode-bidi: isolate;
}

.footer-donate {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0 0.85rem;
  border-radius: var(--btn-radius);
  corner-shape: var(--btn-corner);
  background: var(--coral);
  color: var(--cream);
  font-weight: 700;
  text-decoration: none;
}

.footer-donate:hover {
  background: #c73d16;
  color: var(--cream);
}

#people,
#faq,
#repertoire,
#social {
  scroll-margin-top: 8.5rem;
}

@media (min-width: 1024px) {
  #people,
  #faq,
  #repertoire,
  #social {
    scroll-margin-top: 10.5rem;
  }
}

.menu-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}

@media (min-width: 1024px) {
  .menu-panel {
    display: none;
  }
}

.menu-panel.is-open {
  grid-template-rows: 1fr;
}

.menu-panel:not(.is-open) {
  pointer-events: none;
}

.menu-panel-inner {
  overflow: hidden;
}

.menu-nav {
  background: #e4f1ef;
  padding: 0.25rem 1rem 1.25rem;
}

.site-header:has(.menu-panel.is-open) .header-bar {
  background: #e4f1ef;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.menu-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.menu-nav li + li {
  border-top: 1px solid color-mix(in srgb, var(--lagoon) 26%, transparent);
}

.menu-nav li:has(.menu-donate) {
  border-top-color: color-mix(in srgb, var(--lagoon) 18%, transparent);
}

.menu-link {
  display: block;
  min-height: 3rem;
  padding: 0.75rem 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--maroon);
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.menu-panel.is-open .menu-link {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--i, 0) * 55ms + 80ms);
}

.menu-link.is-active {
  font-weight: 800;
}

.menu-link.menu-donate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.15rem;
  margin-top: 0.55rem;
  padding: 0.85rem 1.5rem;
  line-height: 1;
  text-align: center;
  border-radius: var(--btn-radius);
  corner-shape: var(--btn-corner);
  background: var(--lagoon);
  color: var(--cream);
  font-weight: 800;
  box-sizing: border-box;
  box-shadow: none;
}

/* Motion */
@keyframes rise {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(0, 22px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.rise {
  animation: rise 0.85s var(--ease) both;
}

.stagger > * {
  animation: rise 0.85s var(--ease) both;
}
.stagger > *:nth-child(1) {
  animation-delay: 0.04s;
}
.stagger > *:nth-child(2) {
  animation-delay: 0.1s;
}
.stagger > *:nth-child(3) {
  animation-delay: 0.16s;
}
.stagger > *:nth-child(4) {
  animation-delay: 0.22s;
}
.stagger > *:nth-child(5) {
  animation-delay: 0.28s;
}
.stagger > *:nth-child(6) {
  animation-delay: 0.34s;
}

.reveal {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 36px, 0) scale(0.975);
  transition:
    opacity 0.95s var(--ease),
    transform 0.95s var(--ease),
    filter 0.95s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.lift {
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease);
}

.lift:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 50px rgba(92, 34, 24, 0.16);
}

.hero-still {
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 24px 50px rgba(92, 34, 24, 0.16);
  cursor: zoom-in;
}

.hero-still img {
  display: block;
  width: 100%;
  transform-origin: center;
  transition: transform 0.9s var(--ease);
}

.hero-still:hover img {
  transform: scale(1.05);
}

.btn {
  display: inline-flex;
  max-width: 100%;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-radius);
  corner-shape: var(--btn-corner);
  padding: 0.7rem 1.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  text-wrap: balance;
  background: var(--coral);
  color: var(--cream);
  border: 0;
  box-shadow: none;
}

.btn:hover {
  background: #c73d16;
  color: var(--cream);
}

.btn:active {
  background: #c73d16;
}

.btn-primary {
  background: var(--coral);
  color: var(--cream);
}

.btn-primary:hover {
  background: #c73d16;
}

.btn-outline {
  border: 3px solid var(--lagoon);
  background: var(--cream);
  color: var(--lagoon);
}

.btn-outline:hover {
  background: var(--lagoon);
  color: var(--cream);
}

.btn-ghost {
  color: var(--coral);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--coral) 50%, transparent);
  text-underline-offset: 8px;
  box-shadow: none;
  background: none;
}

.btn-ghost:hover {
  text-decoration-color: var(--coral);
  box-shadow: none;
  transform: none;
  background: none;
  color: var(--coral);
}

.btn-inline {
  display: inline-flex;
  min-height: 2.35rem;
  margin: 0.15rem 0.2rem;
  padding: 0.3rem 0.85rem;
  font-size: 1rem;
  vertical-align: middle;
}

.bg-coral .btn {
  background: var(--cream);
  color: var(--maroon);
}

.bg-coral .btn:hover,
.bg-coral .btn:active {
  background: var(--paper);
  color: var(--maroon);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Hero / pages */
.hero {
  background: linear-gradient(180deg, #ffd7a3 0%, #fff6e9 55%);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem 0;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 400px) 1fr;
    padding-block: 4rem;
  }
}

.hero-copy h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.95;
  color: var(--maroon);
}

.kicker {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--coral);
}

.lede {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  font-size: 1.5rem;
  line-height: 2.25rem;
}

.muted {
  color: color-mix(in srgb, var(--ink) 80%, transparent);
}

.band {
  background: var(--peach);
  padding: 3.5rem 0;
}

.stats-stage {
  background: var(--peach);
  padding: 3.5rem 0;
}

.stats-copy h2,
.stats-stage h2 {
  max-width: 22ch;
}

html[lang="he"] .stats-stage h2 {
  max-width: 18em;
  line-height: 1.25;
}

.faq-lede {
  margin: 0.85rem 0 0;
  max-width: 38rem;
  font-size: 1.2rem;
  line-height: 1.65;
}

.faq-groups {
  display: grid;
  gap: 2.5rem;
  margin-top: 0.25rem;
}

.faq-group-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  line-height: 1.2;
  color: #0f5c56;
}

html[lang="he"] .faq-group-title {
  letter-spacing: -0.03em;
}

.faq-acc + .faq-acc {
  margin-top: 0.75rem;
}

.faq-acc {
  border-radius: 1.35rem;
  background: var(--maroon);
  color: var(--cream);
  overflow: hidden;
}

.faq-acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.45rem;
}

.faq-acc summary::-webkit-details-marker,
.faq-acc summary::marker {
  display: none;
  content: "";
}

.faq-acc-q {
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.25;
  color: inherit;
}

.faq-acc-icon {
  position: relative;
  flex-shrink: 0;
  width: 0.72rem;
  height: 0.72rem;
  border: none;
  border-radius: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
  transition: transform 0.25s var(--ease);
}

.faq-acc[open] .faq-acc-icon {
  transform: translateY(0.12rem) rotate(225deg);
}

.faq-acc > .faq-acc-body {
  display: grid !important;
  grid-template-rows: 0fr;
  padding: 0 1.45rem;
  overflow: hidden;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-acc[open] > .faq-acc-body {
  grid-template-rows: 1fr;
}

.faq-acc-clip {
  min-height: 0;
  overflow: hidden;
  padding-bottom: 1.35rem;
}

.faq-acc-body > :first-child {
  margin-top: 0;
}

.faq-acc-body p {
  margin: 0.75rem 0 0;
  font-size: 1.15rem;
  line-height: 1.7;
}

.home-faq .faq-acc-body p {
  font-size: 1.38rem;
  line-height: 1.75;
}

.faq-acc--ink {
  background: var(--cream);
  color: var(--maroon);
  border: 1px solid color-mix(in srgb, var(--maroon) 16%, transparent);
}

.faq-acc--home {
  background: #e7f4f0;
  color: #143f3c;
  border: 1px solid color-mix(in srgb, #14827a 22%, transparent);
}

.faq-acc-body .faq-list,
.faq-acc-body .prep-block {
  margin-top: 0.85rem;
}

.faq-acc-body .faq-sub {
  margin: 1.2rem 0 0.5rem;
}

.stat-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-slide {
  position: relative;
  overflow: hidden;
  min-height: 16.5rem;
  border-radius: 1.35rem;
  color: var(--cream);
  opacity: 0;
  transform: translate3d(-3.4rem, 1.4rem, 0) scale(0.88) rotate(-2.2deg);
}

html[dir="rtl"] .stat-slide:not(.is-in) {
  transform: translate3d(3.4rem, 1.4rem, 0) scale(0.88) rotate(2.2deg);
}

.stat-slide.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  transition:
    transform 0.58s cubic-bezier(0.16, 1.22, 0.3, 1),
    opacity 0.4s ease;
}

.stat-photo {
  position: absolute;
  inset: 0;
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-position 1.35s ease-out;
}

.stat-slide.is-in .stat-photo {
  background-position: 50% 50%;
}

.stat-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 16.5rem;
  padding: 1.5rem 1.75rem 1.45rem;
  text-align: start;
  background: linear-gradient(to top, rgba(28, 10, 8, 0.78) 18%, rgba(28, 10, 8, 0.22));
}

.stat-num {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 4.4rem);
  line-height: 0.9;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: start;
}

.stat-num .ltr {
  display: inline-block;
}

.stat-slide.is-in .stat-num {
  animation: statPunch 0.58s cubic-bezier(0.16, 1.32, 0.3, 1);
}

@keyframes statPunch {
  0% {
    transform: translate3d(0, 0.55em, 0) scale(0.55);
    opacity: 0;
  }
  68% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.stat-label {
  margin: 0.45rem 0 0;
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 600;
}

html[lang="he"] .stat-label,
html[lang="he"] .stat-note {
  line-height: 1.5;
}

.stat-note {
  margin: 0.3rem 0 0;
  font-size: 0.98rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--cream) 82%, transparent);
}

.section {
  padding: 3.5rem 0;
}

#gallery {
  background: var(--peach);
}

.page {
  padding: 3rem 0 5rem;
}

.page-header h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1.05;
  color: var(--maroon);
}

.card {
  border-radius: 1.5rem;
  padding: 1.25rem 1.5rem;
}

.card-lg {
  padding: 2rem 1.5rem;
}

.bg-peach {
  background: var(--peach);
}
.bg-paper {
  background: var(--paper);
}
.bg-coral {
  background: var(--coral);
  color: var(--cream);
}

.bg-lagoon {
  background: var(--lagoon);
  color: var(--cream);
}

.jgive-brand {
  margin: 0.45rem 0 0;
  line-height: 0;
}

.jgive-brand img {
  display: block;
  height: 3.15rem;
  width: auto;
  max-width: 12rem;
  background: #fff;
  border-radius: 0.8rem;
  padding: 0.4rem 0.75rem;
}

.bg-lagoon h2,
.bg-lagoon h3,
.bg-lagoon p {
  color: inherit;
}

.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-14 {
  margin-top: 3.5rem;
}

h2.font-display {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--maroon);
}

.social-band h2.font-display {
  color: inherit;
}

.bg-coral h2,
.bg-coral h3,
.bg-coral p {
  color: inherit;
}

.perf-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.rep-block {
  margin-top: 1.5rem;
  overflow: visible;
}

.rep-years {
  display: grid;
  margin-top: 1.25rem;
  gap: 0;
}

@media (min-width: 800px) {
  .rep-years {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(11, auto);
    grid-auto-flow: column;
    column-gap: 1.75rem;
  }
}

.rep-year-block {
  display: grid;
  grid-template-columns: 4.75rem minmax(0, 1fr);
  align-items: start;
  column-gap: 1.1rem;
  margin: 0;
  padding: 0.85rem 0 0.95rem;
  border-bottom: 1px solid color-mix(in srgb, var(--maroon) 12%, transparent);
  opacity: 0;
  transform: translate3d(-3.1rem, 0.85rem, 0) scale(0.94);
  filter: blur(8px);
}

html[dir="rtl"] .rep-year-block:not(.is-in) {
  transform: translate3d(3.1rem, 0.85rem, 0) scale(0.94);
}

.rep-year-block.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
  transition:
    transform 0.5s cubic-bezier(0.16, 1.18, 0.3, 1),
    opacity 0.36s ease,
    filter 0.36s ease;
}

.rep-year-block:last-child {
  margin-bottom: 0;
}

.rep-year-mark {
  margin: 0;
  padding-top: 0.15rem;
  font-size: 1.05rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--lagoon);
  font-weight: 700;
  text-align: start;
}

.rep-shows {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rep-shows li {
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: none;
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--maroon);
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.rep-shows li + li {
  margin-top: 0.28rem;
  padding-top: 0.32rem;
  border-top: 1px solid color-mix(in srgb, var(--maroon) 16%, transparent);
}

html[lang="he"] .rep-shows li {
  line-height: 1.5;
}

@media (max-width: 639px) {
  .rep-year-block {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0.2rem;
    padding: 0.75rem 0 0.85rem;
  }

  .rep-year-mark {
    padding-top: 0;
    font-size: 0.95rem;
  }

  .rep-shows li {
    font-size: 1.02rem;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.gallery-credit {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  color: color-mix(in srgb, var(--ink) 62%, var(--peach));
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0.9rem;
  background: var(--paper);
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  color: var(--cream);
  text-align: start;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.gallery-item:hover img {
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover img {
    transform: scale(1.05);
  }
}

.gallery-item .gallery-cap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gallery-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--peach);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: max(3.5rem, env(safe-area-inset-top)) 0.75rem max(1rem, env(safe-area-inset-bottom));
  background: rgba(28, 10, 8, 0.78);
  overscroll-behavior: none;
  touch-action: none;
}

.lightbox.is-open {
  display: flex;
}

html.lightbox-open {
  overflow: hidden;
}

.lightbox--solo .lightbox-nav,
.lightbox--solo .lightbox-bar {
  display: none;
}

.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: auto;
  max-width: min(92vw, 70rem);
}

.lightbox-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  overflow: hidden;
  background: transparent;
  touch-action: none;
}

.lightbox img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  background: transparent;
  transform-origin: center center;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}

.lightbox-cap {
  margin: 0;
  min-width: 0;
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 1px 8px rgba(28, 10, 8, 0.65);
}

.lightbox-bar {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
  align-items: center;
  gap: 0.55rem;
  width: min(92vw, 70rem);
  direction: ltr;
  unicode-bidi: isolate;
}

html[dir="rtl"] .lightbox-cap {
  direction: rtl;
}

.lightbox-cap .gallery-year {
  display: inline-block;
  margin-inline-start: 0.4rem;
}

.lightbox-nav {
  position: static;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  color: var(--maroon);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  direction: ltr;
  unicode-bidi: isolate;
  touch-action: manipulation;
}

.lightbox-prev,
.lightbox-next {
  left: auto;
  right: auto;
}

.lightbox-close {
  position: absolute;
  top: max(0.55rem, env(safe-area-inset-top));
  inset-inline-end: 0.75rem;
  width: 2.75rem;
  height: 2.75rem;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  color: var(--maroon);
  font-size: 1.6rem;
  cursor: pointer;
  touch-action: manipulation;
}

@media (min-width: 800px) {
  .lightbox {
    padding: 1.25rem;
  }

  .lightbox-bar {
    display: block;
    width: auto;
    max-width: min(92vw, 70rem);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    font-size: 1.75rem;
  }

  .lightbox-prev {
    left: 0.75rem;
    right: auto;
  }

  .lightbox-next {
    right: 0.75rem;
    left: auto;
  }
}

.people-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .people-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.person-name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.person-role {
  margin: 0.15rem 0 0;
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--ink) 75%, transparent);
}

.doc-list {
  display: grid;
  gap: 1rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.doc-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .doc-row {
    flex-direction: row;
    align-items: baseline;
    gap: 1.5rem;
  }
}

.doc-num {
  font-size: 1.875rem;
  font-variant-numeric: tabular-nums;
  color: var(--coral);
  direction: ltr;
  unicode-bidi: isolate;
}

.doc-note {
  flex-shrink: 0;
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--ink) 60%, transparent);
}

a.doc-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.doc-card .doc-note {
  color: var(--lagoon);
  font-weight: 700;
  text-underline-offset: 4px;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--lagoon) 45%, transparent);
}

a.doc-card:hover .doc-note {
  color: var(--maroon);
}

.he {
  color: var(--lagoon);
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--lagoon);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-logo {
  display: block;
  width: 6.75rem;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: top start;
  filter: brightness(0) invert(1);
}

.footer-grid > div:first-child p {
  margin: 0;
}

.footer-link {
  color: var(--cream);
  text-underline-offset: 4px;
  text-decoration-color: var(--peach);
}

.footer-link:hover {
  opacity: 0.85;
  text-underline-offset: 6px;
}

.footer-link[href^="tel:"] {
  display: inline-block;
  direction: ltr;
  unicode-bidi: isolate;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 1rem 0 0;
}

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.leading {
  line-height: 2rem;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  font-size: 1rem;
}

.crumb a {
  color: var(--lagoon);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.crumb [aria-current="page"] {
  font-weight: 600;
  color: var(--maroon);
}

.crumb-sep {
  opacity: 0.45;
}

.stat-card {
  border-radius: 1.5rem;
  background: var(--cream);
  padding: 1.25rem 1.5rem;
}

.donate-ways {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.way-card {
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
}

.way-kicker {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.bank-facts {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
}

.bank-facts div {
  margin: 0;
}

.bank-facts dt {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.bank-facts dd {
  margin: 0.15rem 0 0;
  font-size: 1.2rem;
  line-height: 1.5;
}

.donate-note {
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.aud-faq {
  padding: 1.5rem 0 5rem;
}

.home-faq {
  padding: 3.5rem 0 4.5rem;
  background: #c5e4de;
}

.faq-intro,
.faq-item p,
.faq-close {
  font-size: 1.22rem;
  line-height: 2.05rem;
}

.faq-intro {
  margin: 0 0 0.5rem;
}

.aud-faq > .wrap-narrow > h2.font-display,
.home-faq > .wrap-narrow > h2.font-display {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  line-height: 1.1;
}

.aud-faq > .wrap-narrow > h2.font-display {
  color: var(--maroon);
}

.home-faq > .wrap-narrow > h2.font-display {
  color: #0f5c56;
}

.faq-item {
  margin-top: 2.35rem;
}

.faq-item h2,
.faq-item h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  line-height: 1.2;
  color: var(--maroon);
}

.faq-sub {
  margin: 1.4rem 0 0.6rem;
  font-size: 1.35rem;
  color: var(--maroon);
}

.faq-item p {
  margin: 0.75rem 0 0;
}

.faq-item p:first-of-type {
  margin-top: 0;
}

.faq-list {
  margin: 0.85rem 0 0;
  padding-inline-start: 1.35rem;
  font-size: 1.22rem;
  line-height: 2.05rem;
}

.faq-list li + li {
  margin-top: 0.2rem;
}

.faq-link {
  color: var(--lagoon);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-link:hover {
  color: var(--coral);
}

.faq-acc .faq-link {
  color: var(--peach);
}

.faq-acc .faq-link:hover {
  color: var(--cream);
}

.faq-acc--ink .faq-link {
  color: var(--coral);
}

.faq-acc--ink .faq-link:hover {
  color: var(--maroon);
}

.faq-acc--home .faq-link {
  color: #b42318;
}

.faq-acc--home .faq-link:hover {
  color: #0f5c56;
}

.prep-block {
  margin-top: 1.15rem;
  padding: 1.15rem 1.35rem 1.25rem;
  border-radius: 1.25rem;
  background: var(--peach);
}

.prep-label {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--maroon);
}

html[lang="en"] .prep-label {
  text-transform: uppercase;
}

.prep-block p + p {
  margin-top: 0.7rem;
}

.faq-close {
  margin: 2.75rem 0 0;
  font-weight: 600;
  color: var(--maroon);
}

.how-title {
  margin: 0;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  line-height: 1.05;
  color: var(--maroon);
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .stat-slide,
  html[dir="rtl"] .stat-slide:not(.is-in),
  .rep-year-block,
  html[dir="rtl"] .rep-year-block:not(.is-in),
  .stat-slide.is-in,
  .rep-year-block.is-in {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .stat-slide.is-in .stat-num {
    animation: none;
  }
  .stat-slide.is-in .stat-photo {
    background-position: 50% 50%;
    transition: none;
  }
  .rise,
  .stagger > * {
    animation: none;
    filter: none;
  }
  .faq-acc > .faq-acc-body {
    transition: none;
  }
  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
  .lift,
  .lift:hover,
  .btn,
  .btn:hover,
  .hero-still:hover img,
  .social-post,
  .social-post:hover {
    transition: none;
    transform: none;
    box-shadow: none;
  }
  .menu-panel,
  .menu-link,
  .nav-link::after {
    transition: none;
  }
}


