/* ============================================================
   HALUTZIM ARAVA — Landing Page
   v8: M PLUS Rounded 1c, events warm palette, deep buttons,
       join modal with Noteforms iframe
   ============================================================ */

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

:root {
  --cream:     #FBF7F2;
  --sand:      #F2E8D9;
  --sand-mid:  #E8D5B7;
  --sand-dark: #D4BC98;
  --earth:     #C4956A;
  --earth-dk:  #A87850;
  --rust:      #B85C38;
  --rust-dk:   #9A4A2A;
  --deep:      #2C1810;
  --warm-mid:  #6B5744;
  --warm-lt:   #9E8472;

  --sans: 'Heebo', 'Arial Hebrew', sans-serif;
  --serif: 'M PLUS Rounded 1c', 'Heebo', sans-serif;

  --section-v: clamp(44px, 5vw, 80px);
  --max-w: 1160px;
  --r: 14px;
  --shadow-soft: 0 4px 24px rgba(44,24,16,.07);
  --shadow-card: 0 16px 56px rgba(44,24,16,.14);
  --t: .26s ease;
  --t-md: .42s ease;
  --spring: cubic-bezier(.16, 1, .3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--deep);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── GRAIN ── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px; opacity: .038; mix-blend-mode: multiply;
}

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(24px, 5vw, 72px); }
.section { padding: var(--section-v) 0; }

/* ── TYPOGRAPHY ── */
.section-tag {
  display: inline-block; font-family: var(--sans);
  font-size: 1.08rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--earth); margin-bottom: 18px;
}
.section-tag--event { color: var(--rust); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.4vw, 2.7rem); font-weight: 700; line-height: 1.18;
  color: var(--deep); margin-bottom: 20px; letter-spacing: -0.01em;
  text-wrap: balance;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 6px; font-family: var(--sans);
  font-weight: 600; font-size: 0.92rem; cursor: pointer;
  border: 2px solid transparent; transition: all var(--t); white-space: nowrap;
}
.btn--large { padding: 14px 32px; font-size: 1rem; }
.btn--rust  { background: var(--rust);  color: #fff; border-color: var(--rust); }
.btn--rust:hover  { background: var(--rust-dk);  border-color: var(--rust-dk);  transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184,92,56,.32); }
.btn--deep  { background: rgba(20,8,4,.52); color: #fff; border-color: rgba(255,245,230,.35); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn--deep:hover  { background: rgba(20,8,4,.68); border-color: rgba(255,245,230,.6); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(44,24,16,.28); }
.btn--outline { background: transparent; color: var(--deep); border-color: var(--sand-dark); }
.btn--outline:hover { border-color: var(--earth); background: rgba(196,149,106,.08); transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.3); border: 2px solid rgba(255,255,255,.3); border-radius: 6px; padding: 14px 18px; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 8px; transition: all var(--t); white-space: nowrap; font-family: var(--sans); font-weight: 600; cursor: pointer; }
.btn--outline-light:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.1); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════
   PARALLAX SYSTEM
   ══════════════════════════════════════════════════ */
.section-has-bg { position: relative; overflow: hidden; }

.section-bg {
  position: absolute;
  top: -22%; bottom: -22%; left: 0; right: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

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

.section-has-bg > .container,
.hero__content,
.hero__scroll { position: relative; z-index: 2; }

/* Inset photo */
.ph--inset {
  position: relative;
  background-size: cover; background-position: center;
  border-radius: var(--r);
}

/* ── TOPBAR ── */
.topbar { background: var(--deep); color: #fff; font-size: 0.82rem; font-weight: 500; padding: 9px 0; position: relative; z-index: 201; border-bottom: 1px solid rgba(255,255,255,.07); }
.topbar__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(24px, 5vw, 72px); display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.topbar__dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--earth); flex-shrink: 0; animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: .9; transform: scale(1); box-shadow: 0 0 0 0 rgba(196,149,106,.5); }
  50%       { opacity: 1; transform: scale(1.15); box-shadow: 0 0 0 5px rgba(196,149,106,0); }
}
.topbar__text { color: rgba(255,255,255,.45); }
.topbar__text strong { color: rgba(255,220,180,.88); font-weight: 700; }
.topbar__cta {
  color: rgba(255,220,180,.85); font-weight: 700; font-size: 0.82rem;
  background: rgba(196,149,106,.12); border: 1px solid rgba(196,149,106,.28);
  padding: 5px 18px; border-radius: 20px; transition: background var(--t), color var(--t); flex-shrink: 0;
}
.topbar__cta:hover { background: rgba(196,149,106,.24); color: #fff; }

/* ── NAV ── */
.nav { position: sticky; top: 0; inset-inline: 0; z-index: 200; padding: 18px 0; transition: background var(--t-md), padding var(--t-md), box-shadow var(--t-md); }
.nav--transparent { background: linear-gradient(to bottom, rgba(44,24,16,.28), transparent); }
.nav--scrolled { background: rgba(251,247,242,.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 12px 0; box-shadow: 0 1px 0 rgba(44,24,16,.08); }
.nav__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(24px, 5vw, 72px); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav__logo { font-size: 1.1rem; font-weight: 900; color: #fff; letter-spacing: -0.01em; transition: color var(--t-md); flex-shrink: 0; }
.nav--scrolled .nav__logo { color: var(--deep); }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__social { display: flex; align-items: center; gap: 4px; }
.nav__icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: rgba(255,255,255,.7); transition: color var(--t), background var(--t); }
.nav__icon:hover { color: #fff; background: rgba(255,255,255,.15); }
.nav--scrolled .nav__icon { color: var(--warm-mid); }
.nav--scrolled .nav__icon:hover { color: var(--deep); background: var(--sand); }
.nav__join { padding: 8px 18px; font-size: 0.85rem; }
.nav__cta  { padding: 9px 20px; font-size: 0.85rem; }

/* Fix ghost button when nav is scrolled */
.nav--scrolled .nav__join {
  color: var(--deep); background: transparent;
  border-color: var(--sand-dark); backdrop-filter: none;
}
.nav--scrolled .nav__join:hover {
  background: var(--sand); border-color: var(--earth); transform: none;
}

/* ── HERO ── */
.hero { height: 100svh; min-height: 640px; display: flex; align-items: center; justify-content: center; }
.hero__content { text-align: center; color: #fff; padding: 0 24px; max-width: 920px; }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 7rem); font-weight: 700; line-height: 1.04;
  margin-bottom: 18px; text-shadow: 0 2px 32px rgba(0,0,0,.2); letter-spacing: -0.01em;
}
.hero__subtitle {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem); font-weight: 400; letter-spacing: 0.04em;
  margin-bottom: 40px; color: rgba(255,255,255,.82); text-wrap: balance;
}
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; animation: heroScrollBounce 2.8s ease-in-out infinite; }
.hero__scroll-arrow { width: 22px; height: 22px; border-right: 2px solid rgba(255,255,255,.5); border-bottom: 2px solid rgba(255,255,255,.5); transform: rotate(45deg); }
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .55; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ── STORY ── */
.story { padding: var(--section-v) 0; }
.story__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(44px, 7vw, 96px); align-items: center; }
.story__text p { font-size: 1.22rem; color: var(--warm-mid); line-height: 1.9; margin-bottom: 20px; text-wrap: pretty; }
.story__img-wrap { border-radius: var(--r); overflow: hidden; }
.story__img { height: 480px; background-size: cover; background-position: center; transition: transform .7s ease; }
.story__img-wrap:hover .story__img { transform: scale(1.04); }

/* ── WHO + CTA ── */
.who-cta__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 7vw, 96px); align-items: start;
}
.who-cta__panel .section-tag { display: block; }
.who-cta__body { font-size: 1.18rem; color: var(--warm-mid); line-height: 1.88; }
.who-cta__quote {
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--sand-mid);
}
.who-cta__quote-person { display: flex; align-items: flex-start; gap: 14px; }
.who-cta__quote-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background-size: cover; background-position: center;
  border: 2px solid var(--sand-mid);
}
.who-cta__quote-text {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(0.98rem, 1.5vw, 1.12rem); color: var(--warm-mid); line-height: 1.65;
  margin-bottom: 8px;
}
.who-cta__quote-cite {
  display: block; font-size: 0.78rem; font-weight: 700;
  color: var(--earth); letter-spacing: 0.08em; font-style: normal;
}
.who-cta__items p { font-size: 1.08rem; color: var(--warm-mid); line-height: 1.42; padding: 14px 0; }
.who-cta__rule { border: none; border-top: 1px solid var(--sand-mid); margin: 0; }
.who-cta__btn { margin-top: 28px; background: rgba(20,8,4,.78); border-color: rgba(255,245,230,.28); }
.who-cta__btn:hover { background: rgba(20,8,4,.92); }
.who-cta__after { margin-top: 12px; font-size: 0.82rem; color: var(--warm-lt); line-height: 1.5; }

/* ── WHY NOW — dark bg, white text ── */
.why-now { padding: var(--section-v) 0; }
.why-now__inner { position: relative; max-width: 620px; margin: 0 auto; text-align: center; }
.why-now .section-tag { color: var(--earth); }
.why-now__title {
  font-family: var(--serif); font-weight: 700; font-style: normal;
  color: #fff; font-size: clamp(2rem, 3.8vw, 3rem); letter-spacing: -0.02em;
  text-wrap: balance; line-height: 1.15;
}
.why-now__body { margin-bottom: 20px; }
.why-now__body p { font-size: clamp(0.98rem, 1.6vw, 1.1rem); color: rgba(255,255,255,.78); line-height: 1.78; margin-bottom: 18px; text-wrap: pretty; }
.why-now__body p:last-child { margin-bottom: 0; }
.why-now__quote {
  position: relative;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.why-now__quote p {
  font-family: var(--serif); font-style: italic;
  font-size: 0.88rem; font-weight: 400; line-height: 1.5;
  color: rgba(255,255,255,.72); letter-spacing: 0.01em;
}

/* ── LIFE — alternating rows ── */
.life { padding: var(--section-v) 0; }
.life__header { margin-bottom: clamp(16px, 2vw, 24px); }
.life__header .section-tag { display: block; }
.life__header .section-title { max-width: 560px; }
.life__rule { height: 1px; background: var(--sand-mid); margin: 0; opacity: 0.7; }

.life__row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px); align-items: center;
  padding: clamp(36px, 4vw, 56px) 0;
}
.life__row--rev { direction: ltr; }
.life__row--rev .life__row-text { direction: rtl; }
.life__row-text { position: relative; }
.life__num { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; color: var(--earth); margin-bottom: 16px; }
.life__row-text h3 { font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; color: var(--deep); margin-bottom: 14px; letter-spacing: -0.01em; line-height: 1.2; }
.life__row-text p { font-size: 1.15rem; color: var(--warm-mid); line-height: 1.88; margin-bottom: 14px; text-wrap: pretty; }
.life__row-text p:last-child { margin-bottom: 0; }

.life__row-img { border-radius: var(--r); overflow: hidden; }
.life__row-img .ph--inset { height: clamp(280px, 38vw, 520px); display: block; }

/* Animation states */
.life__row-text { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--spring), transform .7s var(--spring); }
.life__row-img { opacity: 0; transition: opacity .9s var(--spring), transform .9s var(--spring); transition-delay: .08s; }
.life__row[data-slide="left"]  .life__row-img { transform: translateX(-72px); }
.life__row[data-slide="right"] .life__row-img { transform: translateX(72px); }
.life__row.row-visible .life__row-text { opacity: 1; transform: translateY(0); }
.life__row.row-visible .life__row-img  { opacity: 1; transform: translateX(0); }

/* ── LOCATION ── */
.location { padding: var(--section-v) 0; }
.location__grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1.1fr;
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
  direction: ltr; /* photo left → text center → map right */
}
.location__text { direction: rtl; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.location__photo-wrap { border-radius: var(--r); overflow: hidden; }
.location__photo { height: 100%; min-height: 480px; }
.location__distances { display: flex; align-items: center; gap: 24px; margin: 24px 0 0; justify-content: center; }
.location__distance { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.location__time { font-size: clamp(1.4rem, 2.8vw, 2.2rem); font-weight: 900; color: var(--rust); line-height: 1; letter-spacing: -0.03em; }
.location__from { font-size: 0.88rem; color: var(--warm-mid); font-weight: 500; }
.location__sep { width: 1px; height: 40px; background: var(--sand-dark); flex-shrink: 0; }
.location__map-wrap { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-card); }
.location__map { width: 100%; height: 100%; min-height: 360px; border: none; display: block; }

/* ── TESTIMONIAL ── */
.testimonial { background: var(--sand); }
.testimonial__inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
}
.testimonial__photo-wrap { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testimonial__photo { width: 100%; height: 100%; background-size: cover; background-position: center; }
.testimonial__text {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-family: var(--serif);
  font-style: italic;
  color: var(--deep);
  line-height: 1.65;
  margin-bottom: 12px;
}
.testimonial__cite {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--warm-mid);
  letter-spacing: 0.06em;
  font-style: normal;
}

/* ── EVENTS — dark bg, editorial columns ── */
.events .section-overlay { background: radial-gradient(ellipse 75% 60% at center 45%, rgba(16,5,1,.88) 0%, rgba(16,5,1,.58) 55%, rgba(16,5,1,.18) 100%), linear-gradient(to bottom, transparent 60%, rgba(16,5,1,.82) 100%) !important; }
.events { padding: var(--section-v) 0; }
.events__header { text-align: center; margin-bottom: clamp(20px, 3vw, 32px); }
.events__header .section-tag { display: block; }
.events__title { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; line-height: 1.1; text-wrap: balance; }
.events__subtitle { font-size: 1.08rem; color: rgba(255,255,255,.68); max-width: 500px; margin: 0 auto; line-height: 1.75; text-wrap: balance; }

/* Two editorial columns with thin separator */
.events__cols {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}
.events__vsep {
  background: rgba(255,255,255,.14);
  align-self: stretch;
  min-height: 320px;
}
.events__col { padding: clamp(20px, 3vw, 52px); }

.events__col-type {
  font-size: clamp(1.85rem, 3.2vw, 2.8rem); font-weight: 800; color: #FFEEDD;
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 10px;
}
.events__rec {
  font-family: var(--serif); font-style: italic;
  font-size: 0.88rem; color: var(--earth); margin-bottom: 20px; letter-spacing: 0.01em;
}
.events__col-daterow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.events__col-time-big { margin-inline-start: auto; display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.events__col-time-big > span:first-child { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 800; color: rgba(255,230,200,.88); letter-spacing: -0.02em; line-height: 1; }
.events__col-time-note { font-size: 0.72rem; color: rgba(255,200,140,.42); font-weight: 500; letter-spacing: 0.04em; }
.events__col-day {
  font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 900; color: var(--earth);
  line-height: 1; letter-spacing: -0.04em; flex-shrink: 0;
}
.events__col-datemeta { display: flex; flex-direction: column; gap: 3px; }
.events__col-month { font-size: 1rem; font-weight: 700; color: rgba(255,230,200,.9); }
.events__col-weekday { font-size: 0.82rem; color: rgba(255,210,160,.38); }
.events__col-where {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.9rem; color: rgba(255,220,180,.55); font-weight: 500; margin-bottom: 8px;
}
.events__col-where svg { color: var(--earth); flex-shrink: 0; }
.events__footer { text-align: center; margin-top: 10px; }
.events__after {
  font-size: 0.96rem; font-weight: 600; color: rgba(255,230,195,.82);
  margin-top: 14px; letter-spacing: 0.02em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.events__after::before {
  content: '';
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--earth); opacity: .9; flex-shrink: 0;
}
.btn--white { background: rgba(255,251,244,.92); color: var(--deep); border-color: transparent; }
.btn--white:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.events__col-body {
  font-size: 1.05rem; color: rgba(255,225,195,.68);
  line-height: 1.82; margin-bottom: 28px; text-wrap: pretty;
}
.events__col-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.waze-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  color: rgba(255,200,140,.38); border: 1px solid rgba(255,200,140,.16);
  border-radius: 999px; padding: 5px 12px;
  transition: color var(--t), border-color var(--t), background var(--t);
}
.waze-link:hover { color: #0DC3C3; border-color: rgba(13,195,195,.4); background: rgba(13,195,195,.07); }
.waze-link svg { color: #0DC3C3; }

/* ── FOLLOW — warm bg section ── */
.follow__inner { max-width: 520px; margin: 0 auto; text-align: center; }
.follow__inner .section-tag { display: block; }
.follow .section-tag { color: var(--rust); }
.follow__title { color: var(--deep); margin-bottom: 12px; }
.follow__sub { font-size: 1.08rem; color: var(--warm-mid); margin-bottom: 40px; line-height: 1.78; text-wrap: pretty; }
.follow__grid { display: flex; gap: 56px; justify-content: center; flex-wrap: wrap; }
.follow__item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.follow__qr { width: 90px; height: 90px; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-soft); border: 2px solid var(--sand-mid); background: var(--cream); transition: transform var(--t), box-shadow var(--t); }
.follow__qr:hover { transform: scale(1.05); box-shadow: var(--shadow-card); }
.follow__qr img { width: 100%; height: 100%; }
.follow__label { display: flex; align-items: center; gap: 6px; font-size: 0.92rem; font-weight: 600; color: var(--warm-mid); transition: color var(--t); }
.follow__label:hover { color: var(--rust); }

/* ── JOIN MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9100;
  background: rgba(44,24,16,.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .32s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  position: relative;
  background: var(--cream);
  border-radius: 20px;
  width: 100%; max-width: 560px;
  height: min(680px, 88svh);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(44,24,16,.38);
  transform: translateY(18px) scale(.97);
  transition: transform .36s cubic-bezier(.16,1,.3,1);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(44,24,16,.08); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--deep); transition: background var(--t);
}
.modal-close:hover { background: rgba(44,24,16,.16); }
.modal-iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── FOOTER ── */
.footer { background: var(--deep); }
.footer__main { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-top: 36px; padding-bottom: 40px; }
.footer__name { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 5px; }
.footer__tagline { font-size: 0.8rem; color: rgba(255,255,255,.36); letter-spacing: 0.06em; }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__links a { font-size: 0.85rem; color: rgba(255,255,255,.46); transition: color var(--t); }
.footer__links a:hover { color: var(--earth); }

/* ── SCROLL ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity .78s var(--spring), transform .78s var(--spring); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .14s; }
.delay-2 { transition-delay: .28s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .who-cta__grid { grid-template-columns: 1fr; }
  .life__row, .life__row--rev { grid-template-columns: 1fr; direction: rtl; }
  .life__row--rev .life__row-text { direction: rtl; }
  .life__row-img { order: -1; }
  .life__row[data-slide="left"]  .life__row-img { transform: translateY(32px); }
  .life__row[data-slide="right"] .life__row-img { transform: translateY(32px); }
  .life__row.row-visible .life__row-img { transform: translateY(0); }
}

@media (max-width: 760px) {
  .events__cols { grid-template-columns: 1fr; }
  .events__vsep { display: none; }
  .events__col { padding: 0 0 clamp(32px, 5vw, 48px); border-bottom: 1px solid rgba(255,255,255,.1); }
  .events__col:last-child { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 960px) {
  .location__grid { grid-template-columns: 1fr 1.2fr; direction: rtl; }
  .location__photo-wrap { display: none; }
  .location__map { height: 420px; min-height: 420px; }
}

@media (max-width: 840px) {
  .story__grid { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }
  .story__img-wrap { order: -1; }
  .story__img { height: 300px; }
  .location__photo-wrap { display: block; }
  .location__photo { height: 280px; min-height: 280px; }
  .location__map { height: 320px; min-height: 320px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .events .section-overlay { background: rgba(16,5,1,.88) !important; }
  .events .section-bg { background-position: 75% center; }
}

@media (max-width: 540px) {
  .nav__social, .nav__join { display: none; }
  .topbar__text { font-size: 0.74rem; }
  .testimonial__inner { grid-template-columns: 1fr; text-align: center; }
  .testimonial__photo-wrap { margin: 0 auto; }
  .testimonial__cite { text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(3.2rem, 18vw, 5rem); }
  .footer__main { flex-direction: column; text-align: center; }
  .footer__links { gap: 20px; justify-content: center; }
  .follow__grid { gap: 32px; }
}
