/* ============================================
   OHR CHABAD - Global Styles
   ============================================ */

/* --- CSS Custom Properties ---
   Exact palette from OhrChabad.com Elementor kit:
   --e-global-color-primary:   #10151D  (near-black)
   --e-global-color-secondary: #333231  (dark charcoal – headings)
   --e-global-color-text:      #53504C  (warm gray – body text)
   --e-global-color-accent:    #E8E4DA  (cream – section backgrounds)
   --e-global-color-15fb696:   #A4832A  (rich gold – buttons, links)
   --e-global-color-443db3f:   #FFFFFF  (white)
   Fonts: Cormorant (headings), Quicksand (body), Poppins (h3/display)
*/
:root {
  --color-primary: #10151D;
  --color-primary-light: #1a2030;
  --color-secondary: #333231;
  --color-gold: #A4832A;
  --color-gold-text: #7B6118;       /* WCAG AA compliant gold for text on light bgs (4.64:1 on cream) */
  --color-gold-dark: #6A5214;
  --color-gold-light: #C4A24E;
  --color-text: #53504C;
  --color-text-light: #6e6b66;
  --color-text-muted: #807c76;
  --color-bg: #ffffff;
  --color-bg-warm: #E8E4DA;
  --color-bg-cream: #F5F3EE;
  --color-bg-dark: #10151D;
  --color-border: #d6d2c9;
  --color-white: #ffffff;
  --font-heading: 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-body: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 3px;
  --radius-lg: 3px;
}

/* --- RTL Support Foundation ---
   To enable Hebrew: change <html lang="en" dir="ltr"> to <html lang="he" dir="rtl">
   and add font-family overrides for Hebrew fonts.
   These logical properties ensure layouts auto-flip for RTL. */
[dir="rtl"] {
  --font-heading: 'Alef', 'Hebrew Dorain', sans-serif;
  --font-body: 'Alef', 'Hebrew Journal', sans-serif;
  --font-display: 'Alef', sans-serif;
}

/* RTL menu: nav on right, image slides out to the left */
[dir="rtl"] .mobile-menu__left {
  left: auto;
  right: 0;
  transform: translateX(100%);
}
[dir="rtl"] .mobile-menu.active .mobile-menu__left {
  transform: translateX(0);
}
[dir="rtl"] .mobile-menu.closing .mobile-menu__left {
  transform: translateX(100%);
}
[dir="rtl"] .mobile-menu__right-panel {
  left: 0;
  transform: translateX(122%);
}
[dir="rtl"] .mobile-menu.active .mobile-menu__right-panel {
  transform: translateX(0);
}
[dir="rtl"] .mobile-menu.closing .mobile-menu__right-panel {
  transform: translateX(122%);
}

/* --- ב״ה corner mark --- */
.bsd {
  position: fixed;
  top: 6px;
  right: 10px;
  z-index: 10000;
  font-family: 'Alef', 'Cormorant Garamond', serif;
  font-size: 8px;
  font-weight: 400;
  color: var(--color-text);
  opacity: 0.55;
  pointer-events: none;
  line-height: 1;
  direction: rtl;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-bg);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-gold-text);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-gold-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.375rem);
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold-text);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.5px;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--warm {
  background: var(--color-white);
}

#the-yishuv {
  padding-top: 100px;
  padding-bottom: 50px;
}

#the-resort {
  padding-top: 50px;
  padding-bottom: 100px;
}

#volunteer-program {
  padding: 100px 0;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
  gap: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

#volunteer-program::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

#volunteer-program > * {
  position: relative;
  z-index: 1;
}

.volunteer-img {
  width: 100%;
  padding-top: 50px;
}

.volunteer-img img {
  width: 100%;
  height: auto;
}

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark .section__header h2 {
  color: var(--color-white);
}

.section--tan {
  background: var(--color-bg-warm);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section__header h2 {
  color: var(--color-gold-text);
}

.section__header p {
  color: var(--color-text);
  font-size: 1.0625rem;
  font-weight: 400;
  margin-top: 1rem;
  line-height: 1.8;
}

.section__subtitle {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--color-gold-text);
  margin-bottom: 0.5rem;
}

.text-center { text-align: center; }
.text-accent { color: var(--color-gold-text); }

.btn {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 300;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

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

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

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

.btn--outline-dark {
  background: transparent;
  color: var(--color-secondary);
  border-color: var(--color-gold);
}

.btn--outline-dark:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn--large {
  padding: 1rem 2.75rem;
  font-size: 0.95rem;
}

/* --- Skip to Content (a11y) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-bg-warm);
  transition: all 0.4s ease;
}

.header--transparent {
  background: var(--color-white);
  border-bottom-color: var(--color-bg-warm);
}

.header--scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 10px 30px;
}

/* Left: hamburger + menu label */
.header__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 15%;
}

.nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-gold-text);
  transition: transform var(--transition);
}

.nav__toggle:hover {
  transform: scale(1.1);
}

.nav__toggle svg {
  width: 29px;
  height: 20px;
}

.nav__menu-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--color-gold-text);
}

/* Center: inline nav */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 2px 7px;
  color: var(--color-gold-text);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 7px;
  right: 7px;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.nav__link:hover::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  padding: 0.5rem;
  z-index: 100;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 0.625rem 1rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
}

.nav__dropdown a:hover {
  background: var(--color-bg-cream);
  color: var(--color-gold-text);
}

.nav__cta {
  margin-left: 0.5rem;
}

.nav__cta .btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.8rem;
}

/* Right: brand name */
.header__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 15%;
  text-decoration: none;
  text-align: center;
}

.header__brand-name {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--color-gold-text);
  line-height: 1.2;
}

.header__brand-tagline {
  font-family: var(--font-display);
  font-size: 7px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--color-gold-text);
}

/* ============================================
   MOBILE MENU (Full-screen overlay — Double-Slide)
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.active {
  visibility: visible;
  pointer-events: auto;
}

/* Scrim (dark backdrop that fades in behind everything) */
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 21, 29, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.mobile-menu.active::before {
  opacity: 1;
}

/* Closing state — reverse transitions */
.mobile-menu.closing::before {
  opacity: 0;
  transition: opacity 0.3s ease 0.25s;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mobile-menu.active .mobile-menu__left,
  .mobile-menu.active .mobile-menu__right-panel { transform: none; }
  .mobile-menu__left,
  .mobile-menu__right-panel { transition: none !important; }
  .mobile-menu__item { opacity: 1 !important; transform: none !important; transition: none !important; }
  .mobile-menu__panel-img { transition: none !important; }
  .mobile-menu::before { transition: none !important; }
}

/* Close button — floating top-left of nav panel */
.mobile-menu__close {
  position: absolute;
  top: 1.75rem;
  left: 2.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(232, 228, 218, 0.85);
  padding: 0.5rem;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.mobile-menu.active .mobile-menu__close {
  opacity: 1;
  transition: color 0.3s ease, opacity 0.3s ease 0.45s;
}

.mobile-menu.closing .mobile-menu__close {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.mobile-menu__close:hover {
  color: var(--color-white);
}

.mobile-menu__close:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.mobile-menu__close svg {
  width: 22px;
  height: 22px;
}

.mobile-menu__close-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Split layout — relative container so image can tuck behind nav */
.mobile-menu__split {
  position: relative;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

/* LEFT: Navigation panel — slides in from left */
.mobile-menu__left {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3.5rem 2rem 5rem;
  background: var(--color-primary);
  z-index: 2;
  transform: translateX(-100%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active .mobile-menu__left {
  transform: translateX(0);
}

.mobile-menu.closing .mobile-menu__left {
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.84, 0) 0.1s;
}

.mobile-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Menu items — staggered animation (delayed until nav panel lands) */
.mobile-menu__item {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.active .mobile-menu__item {
  opacity: 1;
  transform: translateY(0);
}

/* Items stagger in after the nav panel slide (0.35s base delay) */
.mobile-menu.active .mobile-menu__item:nth-child(1) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-menu__item:nth-child(2) { transition-delay: 0.40s; }
.mobile-menu.active .mobile-menu__item:nth-child(3) { transition-delay: 0.45s; }
.mobile-menu.active .mobile-menu__item:nth-child(4) { transition-delay: 0.50s; }
.mobile-menu.active .mobile-menu__item:nth-child(5) { transition-delay: 0.55s; }
.mobile-menu.active .mobile-menu__item:nth-child(6) { transition-delay: 0.60s; }
.mobile-menu.active .mobile-menu__item:nth-child(7) { transition-delay: 0.65s; }

/* On close, items disappear instantly */
.mobile-menu.closing .mobile-menu__item {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

/* Main nav links */
.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 0;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(232, 228, 218, 0.75);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  padding-left: 1.25rem;
}

/* Gold left-bar hover indicator */
.mobile-menu__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 60%;
  background: var(--color-gold);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.mobile-menu__item:hover > .mobile-menu__link::before,
.mobile-menu__item--has-sub.open > .mobile-menu__link::before {
  transform: translateY(-50%) scaleY(1);
}

.mobile-menu__item:hover > .mobile-menu__link,
.mobile-menu__item--has-sub.open > .mobile-menu__link {
  color: var(--color-white);
  transform: translateX(6px);
}

/* Chevron for sub-menu parents */
.mobile-menu__chevron {
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--color-gold);
  opacity: 0.6;
}

.mobile-menu__item--has-sub.open .mobile-menu__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Sub-menu */
.mobile-menu__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  padding-left: 1.75rem;
}

.mobile-menu__item--has-sub.open .mobile-menu__sub {
  max-height: 250px;
}

.mobile-menu__sub li {
  list-style: none;
}

.mobile-menu__sub a {
  display: block;
  padding: 0.45rem 0;
  padding-left: 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(232, 228, 218, 0.8);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  position: relative;
}

.mobile-menu__sub a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.mobile-menu__sub a:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.mobile-menu__sub a:hover::before {
  width: 8px;
}

/* Focus styles for keyboard nav */
.mobile-menu__link:focus-visible,
.mobile-menu__sub a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Footer area (bottom of left panel) */
.mobile-menu__footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 228, 218, 0.08);
  margin-top: auto;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.active .mobile-menu__footer {
  opacity: 1;
  transition: opacity 0.4s ease 0.55s;
}

.mobile-menu.closing .mobile-menu__footer {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.mobile-menu__footer-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.mobile-menu__footer-links a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(232, 228, 218, 0.75);
  text-decoration: none;
  transition: color 0.25s ease;
}

.mobile-menu__footer-links a:hover {
  color: var(--color-gold);
}

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

.mobile-menu__donate-btn {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.mobile-menu__donate-btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.mobile-menu__lang-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(232, 228, 218, 0.75);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(232, 228, 218, 0.15);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.mobile-menu__lang-btn:hover {
  color: var(--color-white);
  border-color: rgba(232, 228, 218, 0.4);
}

.mobile-menu__social {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
}

.mobile-menu__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232, 228, 218, 0.06);
  color: rgba(232, 228, 218, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-menu__social a:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

/* RIGHT: Image panel — positioned at its final spot (left:55%),
   but pulled behind the nav via translateX(-122%) at rest.
   Both panels start moving at the same instant.
   The nav decelerates early (0.55s, spring curve).
   The image stays at full speed while the nav is slowing — it carries
   that momentum through — then only decelerates at the very end.
   cubic-bezier(0, 0, 0.15, 1) = near-linear speed for ~70% of travel,
   then gentle deceleration in the final 30%. */
.mobile-menu__right-panel {
  position: absolute;
  top: 0;
  left: 55%;
  width: 45%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  transform: translateX(-122%);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0, 0, 0.15, 1),
              opacity 0.3s ease;
}

.mobile-menu.active .mobile-menu__right-panel {
  transform: translateX(0);
  opacity: 1;
}

/* On close, image slides back behind the nav panel */
.mobile-menu.closing .mobile-menu__right-panel {
  transform: translateX(-122%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease;
}

/* Image crossfade — uses multiple stacked images */
.mobile-menu__panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu__panel-img--active {
  opacity: 1;
}

.mobile-menu__panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 21, 29, 0.7) 0%,
    rgba(16, 21, 29, 0.3) 50%,
    rgba(16, 21, 29, 0.15) 100%
  );
  z-index: 1;
}

.mobile-menu__panel-brand {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 2;
  text-align: right;
}

.mobile-menu__panel-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.1;
}

.mobile-menu__panel-tagline {
  display: block;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.35rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-primary);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(232, 228, 218, 0.55);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 20% 1.5rem 0;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(60px, 7vw, 100px);
  font-weight: 100;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0;
  text-shadow: 0px 0px 9px rgba(255,255,255,0.56);
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 15px 0;
  margin: -13px auto;
}

.hero__divider-line {
  display: block;
  width: 25%;
  height: 1px;
  background: var(--color-primary);
}

.hero__divider-diamond {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid var(--color-primary);
  background: transparent;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin: 0 8px;
}

.hero h1 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 0;
  font-size: clamp(35px, 4vw, 50px);
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  text-shadow: 0px 0px 9px rgba(255,255,255,0.56);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 400;
  color: var(--color-primary);
  max-width: 600px;
  margin: 1rem auto 0;
  text-shadow: 0px 0px 9px rgba(255,255,255,0.56);
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Scroll indicator removed - not present on original site */

/* ============================================
   ANNOUNCEMENT BAR (below hero)
   ============================================ */
.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: var(--color-secondary);
  padding: 50px;
  flex-wrap: wrap;
}

.announcement__text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  max-width: 75%;
  flex: 1;
}

.announcement .btn {
  flex-shrink: 0;
}

/* ============================================
   SPLIT SECTIONS (Yishuv / Resort / Volunteer)
   ============================================ */
.split-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  max-width: 75%;
  margin: 0 auto;
}

.split-section--reverse {
  flex-direction: row-reverse;
}

.split-section__text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 50px;
  background: var(--color-bg);
  flex: 0 0 50%;
  width: 50%;
  position: relative;
}

.split-section__text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.split-section__text--dark {
  background: var(--color-secondary);
  color: var(--color-white);
}

.split-section__text--dark p {
  color: rgba(255,255,255,0.85);
}

.split-section__text--dark h2 {
  color: var(--color-white);
}

.split-section__inner {
  max-width: 520px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.split-section__inner h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--color-gold-text);
  padding: 0 30px 30px;
  margin-bottom: 0;
}

.split-section__inner p {
  color: var(--color-primary);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}

.split-section__text--dark .split-section__inner p {
  color: rgba(255,255,255,0.85);
}

.split-section__inner .btn {
  margin-top: 1rem;
  background: transparent;
  color: var(--color-gold-text);
  border: 1px solid var(--color-gold);
  border-radius: 2px;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 1.5px;
}

.split-section__inner .btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.split-section__img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: 0 0 50%;
  width: 50%;
  min-height: 480px;
}

.text-white {
  color: var(--color-white) !important;
}

/* ============================================
   REBBE QUOTE SECTION
   ============================================ */
.quote-section {
  background: var(--color-secondary);
  background-image: url('../assets/images/the-rebbe.webp');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  color: var(--color-white);
  min-height: 650px;
  display: flex;
  align-items: center;
  position: relative;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(51, 50, 49, 0.5);
  pointer-events: none;
}

.quote-section .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
}

.quote-section__content {
  max-width: 66%;
  padding: 100px 0;
  text-align: center;
}

.quote-section__text {
  font-family: 'Cormorant Garamond', var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1.2em;
  letter-spacing: 0.6px;
  color: var(--color-white);
  margin: 0 0 2rem;
  border: none;
  padding: 0;
}

.quote-section__cite {
  display: inline-block;
}

/* ============================================
   INTRO / ABOUT CARDS (kept for inner pages)
   ============================================ */
.intro-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.intro-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.intro-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.intro-card__img {
  height: 220px;
  overflow: hidden;
}

.intro-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.intro-card:hover .intro-card__img img {
  transform: scale(1.05);
}

.intro-card__body {
  padding: 2rem;
}

.intro-card__body h3 {
  margin-bottom: 0.75rem;
}

.intro-card__body p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.intro-card__body .btn {
  margin-top: 1.25rem;
}

/* ============================================
   FEATURE SECTIONS (with image + text side by side)
   ============================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature--reverse {
  direction: rtl;
}

.feature--reverse > * {
  direction: ltr;
}

.feature__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__text h2 {
  margin-bottom: 1.25rem;
}

.feature__text p {
  color: var(--color-primary);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  padding: 3rem 0;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: var(--color-gold-light);
  font-weight: 300;
}

.stat__label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.5rem;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.blog-card {
  background: var(--color-white);
  border-radius: 3px;
  overflow: visible;
  padding: 15px 0 0;
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

.blog-card__img {
  height: 300px;
  overflow: hidden;
  border-radius: 3px 3px 0 0;
  position: relative;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 50px;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.blog-card__category {
  display: inline-block;
  font-size: 12px;
  text-transform: capitalize;
  color: var(--color-gold-text);
  background: var(--color-white);
  border: 1px solid var(--color-gold);
  border-radius: 3px;
  padding: 5px 10px;
  margin-top: -30px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.blog-card__body h3 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.blog-card__body h3 a {
  color: var(--color-text);
}

.blog-card__body h3 a:hover {
  color: var(--color-gold-text);
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-secondary);
  margin-top: 1rem;
  transition: color var(--transition);
}

.blog-card__read-more::before {
  content: '◇';
  display: inline-block;
  font-size: 25px;
  color: var(--color-gold-text);
  transform: rotate(0deg);
  transition: color var(--transition);
}

.blog-card__read-more:hover {
  color: var(--color-primary);
}

.blog-card__read-more:hover::before {
  color: var(--color-secondary);
}

.blog-card__excerpt {
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
}

.blog-grid__cta {
  margin-top: 2.5rem;
}

#blog .container {
  max-width: 75%;
}

/* ============================================
   DONATION / CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 100px 0;
  max-width: 75%;
  margin: 0 auto;
  background: var(--color-secondary);
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--color-gold);
  padding: 0 30px 30px;
  margin-bottom: 0;
}

.cta-section p {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-white);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.cta-section .btn {
  background: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  border-radius: 2px;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 1.5px;
}

.cta-section .btn:hover {
  background: transparent;
  color: var(--color-gold);
}

/* ============================================
   NEWSLETTER (in footer)
   ============================================ */

.newsletter__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 2rem auto 0;
}

.newsletter__form input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 1.3px;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition);
}

.newsletter__form input::placeholder {
  color: var(--color-text);
}

.newsletter__form input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-gold);
}

.newsletter__form .btn {
  padding: 0.875rem 1.5rem;
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 1.3px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  overflow: hidden;
}

/* Newsletter section in footer */
.footer__newsletter {
  background: var(--color-secondary);
  padding: 80px 0;
  text-align: center;
}

.footer__newsletter-heading {
  font-family: var(--font-heading);
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--color-white);
  font-weight: 400;
  margin-bottom: 2rem;
}

/* Bottom Bar */
.footer__bottom {
  background: var(--color-white);
  border-top: 1px solid var(--color-bg-warm);
  padding: 0.75rem 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
  min-height: 50px;
}

.footer__bottom p {
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-gold-text);
  margin-bottom: 0;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  text-transform: none !important;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: calc(150px + var(--header-height)) 0 150px;
  text-align: center;
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.page-hero h1 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-weight: 100;
  margin-bottom: 1rem;
}

.page-hero .container {
  max-width: 800px;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
  color: var(--color-white);
}

.breadcrumb span {
  color: rgba(255,255,255,0.5);
}

/* ============================================
   CONTENT PAGES
   ============================================ */
.content-section {
  padding: 4rem 0;
}

.content-section .container {
  max-width: 800px;
}

.content-section h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-section p {
  color: var(--color-text);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.content-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-section li {
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-card__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.team-card__bio {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   PARTNERS
   ============================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.partner-card {
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-gold);
}

.partner-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.partner-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 2.5rem;
}

.faq-category__title {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-text);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-gold);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: background var(--transition);
}

.faq-item__question:hover {
  background: var(--color-bg-warm);
}

.faq-item__icon {
  font-size: 1.25rem;
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info__icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-info__item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info__item p,
.contact-info__item a {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(164, 131, 42, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   DONATE PAGE
   ============================================ */
.donate-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.donate-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  transition: all var(--transition);
}

.donate-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}

.donate-card h3 {
  margin-bottom: 1rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.impact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.impact-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.impact-item p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.fundraising-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.fundraising-card {
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.fundraising-card h4 {
  font-family: var(--font-body);
  margin-bottom: 0.75rem;
}

.fundraising-card__goal {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.fundraising-card__goal strong {
  color: var(--color-gold-text);
}

.progress-bar {
  height: 6px;
  background: var(--color-bg-warm);
  border-radius: 3px;
  margin-top: 0.75rem;
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  background: var(--color-gold);
  border-radius: 3px;
  transition: width 1s ease;
}

/* ============================================
   EVENTS
   ============================================ */
.events-list {
  max-width: 800px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.event-card:hover {
  box-shadow: var(--shadow-md);
}

.event-card__date {
  text-align: center;
  padding: 1rem;
  background: var(--color-bg-warm);
  border-radius: var(--radius);
  min-width: 80px;
  flex-shrink: 0;
}

.event-card__date .month {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-gold-text);
}

.event-card__date .day {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-primary);
  font-weight: 700;
}

.event-card__date .year {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.event-card__content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.event-card__meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.event-card__content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* ============================================
   PRESS
   ============================================ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.press-card {
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-gold);
  transition: all var(--transition);
}

.press-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.press-card__source {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold-text);
  margin-bottom: 0.5rem;
}

.press-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.press-card h3 a {
  color: var(--color-primary);
}

.press-card h3 a:hover {
  color: var(--color-gold-text);
}

.press-card__date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ============================================
   DIRECTORY
   ============================================ */
.directory-section {
  margin-bottom: 2.5rem;
}

.directory-section h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-bg-warm);
}

.directory-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.directory-item:last-child {
  border-bottom: none;
}

.directory-item__name {
  font-weight: 600;
  color: var(--color-text);
}

.directory-item__details {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.directory-item__phone {
  font-weight: 500;
  color: var(--color-primary);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible,
.fade-in--left.visible,
.fade-in--right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  /* Tablet: adjust menu panel ratio */
  .mobile-menu__left {
    width: 60%;
    padding: 5rem 2.5rem 2rem 3.5rem;
  }

  .mobile-menu__right-panel {
    width: 40%;
    left: 60%;
    transform: translateX(-150%);
  }

  .mobile-menu.active .mobile-menu__right-panel {
    transform: translateX(0);
  }

  .mobile-menu.closing .mobile-menu__right-panel {
    transform: translateX(-150%);
  }

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

  .feature--reverse {
    direction: ltr;
  }

  .split-section {
    flex-direction: column;
    max-width: 100%;
  }

  .split-section--reverse {
    flex-direction: column-reverse;
  }

  .split-section__text {
    flex: auto;
    width: 100%;
    padding: 30px;
  }

  .split-section__img {
    flex: auto;
    width: 100%;
    min-height: 350px;
  }

  .cta-section {
    max-width: 100%;
    padding: 30px;
  }

  .quote-section__content {
    max-width: 100%;
  }

  /* Hide inline nav on tablet, show hamburger */
  .nav {
    display: none;
  }

  .nav__menu-label {
    display: none;
  }

  .header__left {
    flex: 0 0 25%;
  }

  .header__brand {
    flex: 0 0 25%;
  }

  .header__inner {
    padding: 5px 20px;
  }

  .announcement {
    padding: 25px;
    gap: 20px;
  }

  .announcement__text {
    max-width: 100%;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #volunteer-program {
    max-width: 100%;
    padding: 30px;
  }

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

}

@media (max-width: 768px) {
  :root {
    --header-height: 65px;
  }

  .header__inner {
    padding: 0 1.25rem;
  }

  /* Hide inline nav on mobile, keep hamburger always visible */
  .nav {
    display: none;
  }

  .nav__menu-label {
    display: none;
  }

  .header__brand-name {
    font-size: 20px;
  }

  .header__brand-tagline {
    font-size: 7px;
  }

  .header__left {
    flex: 0 0 50%;
  }

  .header__brand {
    flex: 0 0 50%;
  }

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

  /* Mobile menu — full-width nav, no image panel */
  .mobile-menu__right-panel {
    display: none;
  }

  .mobile-menu__left {
    width: 100%;
    padding: 4.5rem 1.5rem 1.5rem;
    overflow-y: auto;
  }

  .mobile-menu__close {
    top: 1.25rem;
    left: 1.5rem;
  }

  /* On mobile, items stagger faster since no image panel to wait for */
  .mobile-menu.active .mobile-menu__item:nth-child(1) { transition-delay: 0.25s; }
  .mobile-menu.active .mobile-menu__item:nth-child(2) { transition-delay: 0.30s; }
  .mobile-menu.active .mobile-menu__item:nth-child(3) { transition-delay: 0.35s; }
  .mobile-menu.active .mobile-menu__item:nth-child(4) { transition-delay: 0.40s; }
  .mobile-menu.active .mobile-menu__item:nth-child(5) { transition-delay: 0.45s; }
  .mobile-menu.active .mobile-menu__item:nth-child(6) { transition-delay: 0.50s; }
  .mobile-menu.active .mobile-menu__item:nth-child(7) { transition-delay: 0.55s; }

  .mobile-menu.active .mobile-menu__footer {
    transition-delay: 0.45s;
  }

  .mobile-menu__close-label {
    display: none;
  }

  .mobile-menu__link {
    font-size: 1.35rem;
    padding: 0.7rem 0;
    padding-left: 1rem;
  }

  .mobile-menu__sub {
    padding-left: 1rem;
  }

  .mobile-menu__sub a {
    font-size: 0.8rem;
  }

  .mobile-menu__footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .mobile-menu__footer-actions {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .hero {
    min-height: 85vh;
  }

  .section {
    padding: 3.5rem 0;
  }

  .page-hero {
    padding: calc(100px + var(--header-height)) 0 100px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .event-card {
    flex-direction: column;
    gap: 1rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__newsletter-heading {
    font-size: 28px;
  }

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

  .blog-card__body {
    padding: 20px;
  }

  .intro-cards {
    grid-template-columns: 1fr;
  }

  .split-section__text {
    padding: 30px;
  }

  .split-section__img {
    min-height: 280px;
  }

  .quote-section {
    min-height: auto;
    background-size: cover;
  }
}

/* ============================================
   APPLICATION FORM
   ============================================ */
.application-form {
  max-width: 800px;
  margin: 0 auto;
}

.application-form fieldset {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.application-form legend {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  padding: 0 0.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-group--checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form-group--checkbox label {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-group input[type="file"] {
  border: 1px dashed var(--color-border);
  padding: 1rem;
  cursor: pointer;
}

/* Breadcrumb <ol> variant */
.breadcrumb ol {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
}

.breadcrumb ol li::after {
  content: "/";
  margin-left: 0.5rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb ol li:last-child::after {
  content: none;
}

/* Legal content */
.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content p {
  color: var(--color-text-light);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal.active {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
}

.modal__content {
  position: relative;
  background: var(--color-white);
  max-width: 640px;
  width: 100%;
  padding: 3rem;
  border-radius: var(--radius);
  z-index: 1;
  animation: modalFadeIn 1.2s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* Letter-style modal with paper texture — scrolls WITH content */
.modal__content--letter {
  /* White wash layered over paper texture, both scroll with content */
  background-image: linear-gradient(rgba(255,255,255,0.52), rgba(255,255,255,0.52)),
                    url('../assets/images/Paper.webp');
  background-size: auto;
  background-position: center top;
  background-attachment: local;
  background-repeat: repeat;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
}

/* Envelope image — full width, flush to bottom of the letter */
.modal__envelope-wrapper {
  pointer-events: none;
  margin: 20px -40px -40px -40px;
}

.modal__envelope-img {
  display: block;
  width: 100%;
  opacity: 0.5;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
  z-index: 2;
}

/* Keep close button visible when scrolling the letter */
.modal__content--letter .modal__close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 10;
  margin: -0.5rem -0.5rem 0 0;
}

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

/* Letter title */
.modal__letter-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 1rem;
}

/* Diamond divider */
.modal__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.modal__divider-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-secondary);
}

.modal__divider-diamond {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-secondary);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Letter body - typewriter font */
.modal__letter-body {
  font-family: 'Special Elite', cursive;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-primary);
  padding-bottom: 1rem;
  text-align: start;
}

.modal__letter-body p {
  margin-bottom: 0.75rem;
}

.modal__letter-indent {
  padding-left: 2.5rem;
}

/* Typewriter animation */
.letter-typed [data-typewrite] {
  visibility: hidden;
}

.letter-typed [data-typewrite].typing,
.letter-typed [data-typewrite].typed {
  visibility: visible;
}

/* Blinking cursor after the currently typing element */
.letter-typed [data-typewrite].typing::after {
  content: '|';
  display: inline;
  animation: cursorBlink 0.6s step-end infinite;
  color: var(--color-primary);
  font-weight: 300;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Rest of letter hidden, fades in */
.letter-rest {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.letter-rest.visible {
  opacity: 1;
}

/* When skipped, show everything instantly */
.letter-body--skipped .letter-typed [data-typewrite] {
  visibility: visible;
}

.letter-body--skipped .letter-rest {
  opacity: 1;
  transition: none;
}

.modal__letter-signature {
  text-align: right;
  margin-top: 1rem;
}

/* Generic modal content (non-letter) */
.modal__content h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.modal__quote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-primary);
  border-left: 3px solid var(--color-gold);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal__source {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-gold-text);
  margin-bottom: 1.5rem;
}

.modal__desc {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
}

.quote-section__link {
  display: inline-block;
  background: transparent;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-white);
  border: 1px solid rgba(243, 242, 241, 0.22);
  border-radius: 2px;
  padding: 0.875rem 2.25rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}

.quote-section__link:hover {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

/* ============================================
   IN-PAGE NAV (sticky section navigation)
   ============================================ */
.page-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: var(--header-height);
  z-index: 50;
}

.page-nav a {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.page-nav a:hover,
.page-nav a.active {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

/* ============================================
   EXPANDABLE / READ-MORE SECTIONS
   ============================================ */
.expandable-section {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.expandable-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--color-secondary);
  transition: background var(--transition);
}

.expandable-section__header:hover {
  background: var(--color-bg-cream);
}

.expandable-section__icon {
  font-size: 1.25rem;
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
  color: var(--color-gold-text);
}

.expandable-section.active .expandable-section__icon {
  transform: rotate(45deg);
}

.expandable-section__preview {
  padding: 0 2rem 1rem;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
}

.expandable-section__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.expandable-section.active .expandable-section__body {
  max-height: 3000px;
}

.expandable-section__body-inner {
  padding: 0 2rem 2rem;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
}

.expandable-section__body-inner p {
  margin-bottom: 1rem;
}

.expandable-section__body-inner ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.expandable-section__body-inner li {
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.expandable-section__body-inner h4 {
  color: var(--color-gold-text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ============================================
   PARTNER CARD WITH LOGO
   ============================================ */
.partner-card__logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 0.5rem;
}

.partner-card__logo img {
  max-height: 70px;
  max-width: 180px;
  object-fit: contain;
}

/* ============================================
   COMMITTEE GRID
   ============================================ */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.committee-card {
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-gold);
}

.committee-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-gold-text);
  margin-bottom: 0.75rem;
}

.committee-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 480px) {
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero__buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .newsletter__form input {
    min-width: auto;
  }
}
