/* ═══════════════════════════════════════════════════════════════
   Hameir Laaretz — Brand Editorial System
   Arch · Pathway · Light · Jerusalem Stone
   ═══════════════════════════════════════════════════════════════ */

:root {
  --jerusalem-stone: #E8E2D6;
  --warm-sand: #F5F0E8;
  --champagne-gold: #C9A962;
  --gold-light: #E8D5A8;
  --olive-green: #5C6B4A;
  --deep-navy: #1A2332;
  --charcoal: #2C2C2C;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.25rem;
  --space-lg: 1.75rem;
  --space-xl: 2.75rem;
  --space-2xl: 4rem;
  --space-3xl: 5rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--warm-sand);
  overflow-x: hidden;
}

/* Jerusalem stone texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background: var(--deep-navy);
  color: white;
  z-index: 9999;
}
.skip-link:focus { top: var(--space-sm); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ─── Ambient Light System ───────────────────────────────────── */
.ambient-light {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  opacity: 0.45;
}

.ambient-light__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(201, 169, 98, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 60%, rgba(232, 213, 168, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 90%, rgba(201, 169, 98, 0.22) 0%, transparent 50%);
  animation: lightWashPulse 14s ease-in-out infinite;
}

.ambient-light__sweep {
  position: absolute;
  top: -10%;
  left: -60%;
  width: 55%;
  height: 120%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(232, 213, 168, 0.15) 44%,
    rgba(201, 169, 98, 0.55) 50%,
    rgba(232, 213, 168, 0.15) 56%,
    transparent 65%
  );
  transform: skewX(-12deg);
  animation: lightSweep 10s ease-in-out infinite;
}

.ambient-light__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.45;
  animation: lightDrift 20s ease-in-out infinite;
}

.ambient-light__orb--1 {
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  top: 5%;
  left: -12%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.55) 0%, rgba(232, 213, 168, 0.2) 45%, transparent 70%);
}

.ambient-light__orb--2 {
  width: 45vw;
  height: 45vw;
  max-width: 580px;
  max-height: 580px;
  top: 40%;
  right: -18%;
  background: radial-gradient(circle, rgba(232, 213, 168, 0.5) 0%, rgba(201, 169, 98, 0.15) 50%, transparent 72%);
  animation-delay: 5s;
}

.ambient-light__orb--3 {
  width: 40vw;
  height: 40vw;
  max-width: 520px;
  max-height: 520px;
  bottom: 8%;
  left: 25%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.45) 0%, transparent 68%);
  animation-delay: 10s;
}

.ambient-light__orb--4 {
  width: 35vw;
  height: 35vw;
  max-width: 480px;
  max-height: 480px;
  top: 65%;
  right: 20%;
  background: radial-gradient(circle, rgba(232, 213, 168, 0.42) 0%, transparent 70%);
  animation-delay: 15s;
}

@keyframes lightDrift {
  0%, 100% { opacity: 0.35; transform: translate(0, 0) scale(1); }
  25% { opacity: 0.85; transform: translate(50px, -40px) scale(1.08); }
  50% { opacity: 0.65; transform: translate(20px, 30px) scale(1.04); }
  75% { opacity: 0.9; transform: translate(-30px, -20px) scale(1.06); }
}

@keyframes lightSweep {
  0%, 100% { left: -60%; opacity: 0.4; }
  50% { left: 110%; opacity: 0.9; }
}

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

/* ─── Journey Pathway ────────────────────────────────────────── */
.journey-pathway {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.25;
  transition: opacity 0.3s ease-out;
}

.journey-pathway__svg {
  width: 100%;
  height: 100%;
}

#journey-path,
#journey-path-glow,
#journey-path-base {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-path-glow { opacity: 0.75; }
.journey-path-base { opacity: 0.35; }

/* ─── Journey Beats ──────────────────────────────────────────── */
.journey-beat {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: max(var(--space-md), 4vw);
  z-index: 4;
  opacity: 0.5;
  transition: opacity 0.6s var(--ease-out);
  pointer-events: none;
}

.journey-beat--hero { top: 88vh; }
.journey-beat--cinematic,
.journey-beat--final,
.journey-beat--signature { left: auto; right: 0; padding-left: 0; padding-right: max(var(--space-md), 4vw); flex-direction: row-reverse; }

.journey-beat__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--warm-sand);
  border: 3px solid var(--champagne-gold);
  box-shadow: 0 0 12px rgba(201, 169, 98, 0.5);
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}

.journey-beat__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne-gold);
  background: rgba(245, 240, 232, 0.92);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}

.journey-beat--active,
[data-journey-anchor].journey-active .journey-beat {
  opacity: 1;
}

.journey-beat--active .journey-beat__dot,
[data-journey-anchor].journey-active .journey-beat__dot {
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.8);
  background: var(--champagne-gold);
}

/* ─── Signature Moment ─────────────────────────────────────────── */
.signature-moment {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep-navy);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
  --signature-light: 0;
}

.signature-moment__veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(26, 33, 32, 0) 0%, rgba(26, 33, 32, 0.95) 70%);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.1s linear;
}

.signature-moment__inner {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.signature-moment__words {
  color: var(--warm-sand);
}

.signature-line {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.25;
  margin: 0 0 var(--space-md);
  letter-spacing: -0.01em;
}

.signature-line--dim {
  color: rgba(245, 240, 232, 0.45);
  font-weight: 400;
  font-style: italic;
}

.signature-line--bright {
  color: var(--warm-sand);
  font-weight: 500;
  opacity: calc(0.3 + var(--signature-light) * 0.7);
  transition: opacity 0.1s linear;
}

.signature-whisper {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne-gold);
  margin: var(--space-lg) 0 0;
  opacity: calc(0.4 + var(--signature-light) * 0.6);
  transition: opacity 0.1s linear;
}

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: background 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft);
}

.site-header.scrolled {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26, 33, 32, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 168px;
  display: block;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deep-navy);
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-navy);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--champagne-gold); }

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
}

.btn-primary {
  background: var(--champagne-gold);
  color: var(--deep-navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--deep-navy);
  border: 1px solid rgba(26, 33, 32, 0.2);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--champagne-gold);
  color: var(--champagne-gold);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 0.875rem; }

.btn-nav { padding: 0.625rem 1.25rem; }

.btn-play {
  margin-top: var(--space-md);
}

/* ─── Typography ───────────────────────────────────────────────── */
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-green);
  margin-bottom: var(--space-sm);
}

.eyebrow--light { color: var(--gold-light); }
.eyebrow--gold { color: var(--champagne-gold); }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--deep-navy);
  margin: 0 0 var(--space-md);
}

.display-title--light { color: var(--warm-sand); }

.editorial-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--deep-navy);
  margin: 0 0 var(--space-md);
}

.editorial-title--light { color: var(--warm-sand); }

.editorial-title--manifesto {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
}

.lead {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--charcoal);
  max-width: 36rem;
  margin: 0;
}

.lead--light { color: rgba(245, 240, 232, 0.92); }

.editorial-lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(44, 44, 44, 0.72);
  max-width: 32rem;
  margin: 0;
}

.editorial-lead--wide { max-width: 40rem; font-size: 1.2rem; }
.editorial-lead--give { max-width: 36rem; margin: 0 auto; }

.section-intro { margin-bottom: var(--space-xl); }
.section-intro--center { text-align: center; }
.section-intro--center .editorial-lead { margin: 0 auto; }
.section-intro--wide { max-width: 900px; margin-left: auto; margin-right: auto; }
.section-intro--editorial .editorial-title { font-size: clamp(2.25rem, 5vw, 3.75rem); }

.manifesto-line {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--deep-navy);
  margin: 0;
  text-align: center;
}

.manifesto-line--gold {
  color: var(--champagne-gold);
  font-weight: 500;
  margin-top: 0.25rem;
}

.pillars-manifesto {
  margin: var(--space-xl) 0 var(--space-lg);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(201, 169, 98, 0.3);
  border-bottom: 1px solid rgba(201, 169, 98, 0.3);
}

.pillars-bridge {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.6;
  color: rgba(44, 44, 44, 0.7);
  max-width: 36rem;
  margin: 0 auto var(--space-xl);
}

/* ─── Arch Motif ───────────────────────────────────────────────── */
.arch-mask {
  position: relative;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  box-shadow:
    0 0 0 3px var(--champagne-gold),
    0 8px 40px rgba(201, 169, 98, 0.35);
}

.arch-mask::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--champagne-gold);
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 30px rgba(232, 213, 168, 0.25);
}

.arch-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0% 100%, 0% 18%, 50% 0%, 100% 18%, 100% 100%);
  transition: transform 0.8s var(--ease-out);
}

.arch-mask--wide img {
  clip-path: polygon(0% 100%, 0% 15%, 50% 0%, 100% 15%, 100% 100%);
}

.arch-mask:hover img { transform: scale(1.04); }

.arch-divider {
  width: 100%;
  line-height: 0;
}

.arch-divider svg { width: 100%; height: auto; display: block; }

.arch-divider--top { margin-bottom: -1px; }

.arch-stroke-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2.5s var(--ease-out);
}

.arch-stroke-line.drawn { stroke-dashoffset: 0; }

.arch-draw {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2s var(--ease-out);
}

.arch-draw.drawn { stroke-dashoffset: 0; }

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-2xl);
  z-index: 3;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: opacity 1.2s var(--ease-out);
  opacity: 0;
}

.hero.loaded .hero-image { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 33, 32, 0.25) 0%,
    rgba(26, 33, 32, 0.1) 35%,
    rgba(26, 33, 32, 0.45) 100%
  );
}

.hero-light-ray {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    transparent 30%,
    rgba(232, 213, 168, 0.12) 42%,
    rgba(201, 169, 98, 0.35) 50%,
    rgba(232, 213, 168, 0.12) 58%,
    transparent 70%
  );
  animation: heroLightRay 8s ease-in-out infinite;
}

@keyframes heroLightRay {
  0%, 100% { opacity: 0.5; transform: translateX(-5%); }
  50% { opacity: 1; transform: translateX(5%); }
}

.hero-arch-frame {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
}

.hero-arch-svg { width: 100%; height: 140px; display: block; }

.hero-arch-emblem {
  margin-bottom: var(--space-md);
}

.hero-arch-icon {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(201, 169, 98, 0.6));
  animation: archEmblemGlow 4s ease-in-out infinite;
}

@keyframes archEmblemGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(201, 169, 98, 0.4)); }
  50% { filter: drop-shadow(0 0 20px rgba(232, 213, 168, 0.9)); }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
}

.hero-content .display-title { color: var(--warm-sand); }
.hero-content .lead { color: rgba(245, 240, 232, 0.88); }
.hero-content .eyebrow { color: var(--gold-light); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.hero-actions .btn-ghost {
  color: var(--warm-sand);
  border-color: rgba(245, 240, 232, 0.4);
}

.hero-actions .btn-ghost:hover {
  border-color: var(--champagne-gold);
  color: var(--champagne-gold);
}

/* ─── Sections ─────────────────────────────────────────────────── */
.journey { position: relative; z-index: 3; }

[data-journey-anchor] {
  position: relative;
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section--editorial {
  padding-top: var(--space-xl);
  position: relative;
}

.section--editorial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 30%, rgba(201, 169, 98, 0.18) 0%, transparent 65%);
}

.section--pillars {
  background: var(--jerusalem-stone);
  padding: var(--space-2xl) 0;
  position: relative;
}

.section--pillars::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(201, 169, 98, 0.12));
}

.section--give {
  background: var(--warm-sand);
  padding: var(--space-xl) 0;
}

.section--stories { padding: var(--space-lg) 0 var(--space-xl); }

.section--trust {
  background: var(--deep-navy);
  color: var(--warm-sand);
  padding: var(--space-2xl) 0 var(--space-xl);
}

/* ─── Initiative Journey Rows ────────────────────────────────── */
.initiative-journey { display: flex; flex-direction: column; }

.initiative-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-2xl) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.initiative-row--reverse { direction: rtl; }
.initiative-row--reverse > * { direction: ltr; }

.initiative-row--cinematic {
  max-width: 100%;
  padding: var(--space-2xl) 0;
  grid-template-columns: 1.2fr 0.8fr;
}

.initiative-row--cinematic .initiative-row__media {
  max-height: 65vh;
  aspect-ratio: 16 / 10;
}

.initiative-row--intimate {
  padding: var(--space-xl) var(--space-md);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.initiative-row__media {
  aspect-ratio: 4 / 3;
  max-height: 480px;
}

.initiative-row__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.initiative-row__chapter {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-green);
}

.pillar-badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.pillar-badge--torah { background: rgba(92, 107, 74, 0.12); color: var(--olive-green); }
.pillar-badge--chesed { background: rgba(201, 169, 98, 0.15); color: #8a7340; }
.pillar-badge--future { background: rgba(26, 33, 32, 0.08); color: var(--deep-navy); }

.initiative-row__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: var(--deep-navy);
  margin: 0 0 var(--space-sm);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.initiative-row__narrative {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--deep-navy);
  margin: 0 0 var(--space-md);
  max-width: 30rem;
}

.initiative-row__desc {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(44, 44, 44, 0.68);
  margin: 0;
  max-width: 28rem;
}

/* ─── Pillars ──────────────────────────────────────────────────── */
.pillars-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.pillar {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-top: 3px solid transparent;
  transition: border-color 0.4s;
}

.pillar--torah { border-top-color: rgba(92, 107, 74, 0.4); }
.pillar--chesed { border-top-color: rgba(201, 169, 98, 0.5); }
.pillar--future { border-top-color: rgba(26, 33, 32, 0.25); }

.pillar-tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne-gold);
  margin: 0 0 var(--space-xs);
}

.pillar-manifesto {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: var(--champagne-gold);
  margin: 0 0 var(--space-sm);
}

.pillar-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--deep-navy);
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.02em;
}

.pillar-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(44, 44, 44, 0.72);
  margin: 0;
}

/* ─── Cinematic Blocks ─────────────────────────────────────────── */
.cinematic-block { padding: 0; }

.cinematic-frame {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cinematic-block--final .cinematic-frame { min-height: 80vh; }

.cinematic-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 33, 32, 0.7) 0%,
    rgba(26, 33, 32, 0.35) 50%,
    rgba(26, 33, 32, 0.15) 100%
  );
}

.cinematic-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 40%,
    rgba(201, 169, 98, 0.2) 50%,
    transparent 60%
  );
  animation: cinematicLight 12s ease-in-out infinite;
}

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

.cinematic-overlay--deep {
  background: linear-gradient(
    180deg,
    rgba(26, 33, 32, 0.5) 0%,
    rgba(26, 33, 32, 0.7) 100%
  );
}

.cinematic-content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) var(--space-md);
  max-width: 640px;
}

.cinematic-content--center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cinematic-content--center .lead { margin: 0 auto var(--space-lg); }

/* ─── Give Tiers ───────────────────────────────────────────────── */
.give-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 169, 98, 0.2);
  margin-bottom: var(--space-xl);
}

.give-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--warm-sand);
  text-align: center;
  transition: background 0.4s var(--ease-out), color 0.4s;
  min-height: 140px;
}

.give-tier:hover,
.give-tier.selected {
  background: var(--deep-navy);
  color: var(--warm-sand);
}

.give-tier__amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.give-tier__label {
  font-size: 0.8125rem;
  line-height: 1.4;
  opacity: 0.75;
}

.give-custom {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.give-custom-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  color: rgba(44, 44, 44, 0.6);
}

.give-custom-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(26, 33, 32, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.give-currency {
  padding: 0.875rem 0.75rem 0.875rem 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--champagne-gold);
  background: var(--jerusalem-stone);
}

.give-custom-row input {
  flex: 1;
  border: none;
  padding: 0.875rem 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: white;
  min-width: 0;
}

.give-custom-row input:focus { outline: none; }

.give-custom-row .btn {
  border-radius: 0;
  flex-shrink: 0;
}

/* ─── Story Rows ───────────────────────────────────────────────── */
.stories-editorial { display: flex; flex-direction: column; }

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 1100px;
  margin: 0 auto;
}

.story-row--reverse { direction: rtl; }
.story-row--reverse > * { direction: ltr; }

.story-row__media {
  aspect-ratio: 5 / 4;
  max-height: 420px;
}

.pillar-arch {
  color: var(--champagne-gold);
  margin-bottom: var(--space-md);
}

.pillar-arch svg {
  width: 96px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 8px rgba(201, 169, 98, 0.5));
}

.pillar-arch path {
  stroke-width: 2.5;
}

.give-tier__meaning {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  line-height: 1.4;
  margin-top: 0.5rem;
  opacity: 0.65;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.give-tier.selected .give-tier__meaning,
.give-tier:hover .give-tier__meaning {
  opacity: 0.85;
}

.story-row--featured .story-row__quote {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.story-row__quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--deep-navy);
  margin: 0 0 var(--space-md);
  border: none;
  padding: 0;
}

.story-row__name {
  font-weight: 600;
  font-size: 0.9375rem;
  margin: 0 0 0.25rem;
}

.story-row__context {
  font-size: 0.875rem;
  color: rgba(44, 44, 44, 0.6);
  margin: 0;
}

/* ─── Trust ────────────────────────────────────────────────────── */
.trust-header { margin-bottom: var(--space-xl); }

.trust-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
}

.trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 var(--space-xs);
  color: var(--warm-sand);
}

.trust-item p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.65);
  margin: 0;
}

.trust-partners {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 232, 0.45);
  text-align: center;
  margin: 0;
}

/* ─── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(245, 240, 232, 0.7);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  z-index: 3;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.footer-brand { display: flex; gap: var(--space-md); align-items: flex-start; }

.footer-logo-img { height: 72px; width: auto; max-width: 180px; flex-shrink: 0; display: block; }

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
  color: rgba(245, 240, 232, 0.8);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-links a {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--champagne-gold); }

.footer-legal {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.4);
  margin: var(--space-md) 0 0;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

/* ─── Video Modal ──────────────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal[hidden] { display: none; }

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 33, 32, 0.9);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  z-index: 1;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: white;
  line-height: 1;
  padding: 0.25rem;
}

.video-modal-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--deep-navy);
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.6);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
}

/* ─── Scroll Reveals ───────────────────────────────────────────── */
.reveal,
.reveal-slow {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-slow { transition-duration: 1.2s; }

.reveal.visible,
.reveal-slow.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-flow { grid-template-columns: 1fr; gap: var(--space-md); }
  .trust-flow { grid-template-columns: repeat(2, 1fr); }
  .give-tiers { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: var(--warm-sand);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .initiative-row,
  .story-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-md);
  }

  .initiative-row--reverse,
  .story-row--reverse { direction: ltr; }

  .initiative-row__media,
  .story-row__media { max-height: 280px; }

  .cinematic-frame { min-height: 60vh; }

  .cinematic-overlay {
    background: linear-gradient(
      180deg,
      rgba(26, 33, 32, 0.3) 0%,
      rgba(26, 33, 32, 0.75) 100%
    );
  }

  .initiative-row--cinematic { grid-template-columns: 1fr; }

  .editorial-split { grid-template-columns: 1fr; }
  .editorial-split__visual { min-height: 280px; }
  .journey-phases,
  .journey-node { display: none; }

  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .ambient-light__orb,
  .ambient-light__sweep,
  .ambient-light__wash,
  .hero-light-ray,
  .cinematic-overlay::after,
  .hero-arch-icon {
    animation: none;
  }

  .ambient-light__orb { opacity: 0.5; }
  .ambient-light__wash { opacity: 0.8; }

  .reveal,
  .reveal-slow {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-image,
  .cinematic-image { transform: none; }

  .arch-draw,
  .arch-stroke-line { stroke-dashoffset: 0; transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   Content & Editorial Refinement — Approved Messaging
   ═══════════════════════════════════════════════════════════════ */

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin: 0 0 var(--space-sm);
  letter-spacing: 0.02em;
}

.hero-pull {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--warm-sand);
  margin: 0 0 var(--space-md);
  max-width: 34rem;
  letter-spacing: -0.02em;
}

.hero--atmosphere .hero-overlay {
  background: linear-gradient(180deg, rgba(26,33,32,0.35) 0%, rgba(26,33,32,0.2) 40%, rgba(26,33,32,0.65) 100%);
}

.hero-image--hidden { display: none; }

.cinematic-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(232, 213, 168, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 75% 60%, rgba(201, 169, 98, 0.25) 0%, transparent 50%),
    linear-gradient(165deg, #2a3544 0%, #1a2332 45%, #3d4a3a 100%);
  will-change: transform;
}

.cinematic-atmosphere--hero {
  background:
    radial-gradient(ellipse 90% 70% at 25% 35%, rgba(232, 213, 168, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(92, 107, 74, 0.3) 0%, transparent 55%),
    linear-gradient(180deg, #1f2a38 0%, #1a2332 50%, #2c3e2e 100%);
}

.cinematic-atmosphere--warm {
  min-height: 420px;
  border-radius: 2px;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(232, 213, 168, 0.5) 0%, transparent 50%),
    linear-gradient(145deg, #3a4a5c 0%, #1a2332 60%, #5c6b4a 100%);
}

.cinematic-atmosphere--signature {
  position: absolute;
  inset: 0;
  opacity: calc(0.4 + var(--signature-light, 0) * 0.6);
  transition: opacity 0.1s linear;
}

.cinematic-atmosphere--final {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201, 169, 98, 0.3) 0%, transparent 55%),
    linear-gradient(180deg, #1a2332 0%, #2a3544 50%, #1a2332 100%);
}

.cinematic-frame--atmosphere { min-height: 80vh; }

/* Journey pathway — narrative device */
.journey-phases {
  position: fixed;
  left: max(var(--space-md), 3vw);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  pointer-events: none;
}

.journey-phase {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.35);
  transition: color 0.5s, opacity 0.5s;
  opacity: 0.5;
}

.journey-phase--active {
  color: var(--champagne-gold);
  opacity: 1;
}

.journey-node {
  position: absolute;
  left: max(var(--space-md), 3vw);
  top: var(--space-xl);
  z-index: 4;
  pointer-events: none;
}

.journey-node--right {
  left: auto;
  right: max(var(--space-md), 3vw);
}

.journey-node__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--warm-sand);
  border: 2px solid var(--champagne-gold);
  transition: transform 0.5s, background 0.5s, box-shadow 0.5s;
}

.journey-node--active .journey-node__dot,
[data-journey-anchor].journey-active .journey-node__dot {
  background: var(--champagne-gold);
  transform: scale(1.4);
  box-shadow: 0 0 16px rgba(201, 169, 98, 0.6);
}

/* Editorial split — Featured campaign */
.section--featured-editorial { padding: var(--space-2xl) 0; }

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
}

.editorial-split__visual {
  position: relative;
  min-height: 480px;
}

.editorial-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(44, 44, 44, 0.78);
  margin: 0 0 var(--space-md);
}

.editorial-body--emphasis {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--deep-navy);
  margin-top: var(--space-lg);
}

.editorial-title--large {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  letter-spacing: -0.03em;
}

/* Why this matters now */
.section--why-now {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--warm-sand) 0%, var(--jerusalem-stone) 100%);
}

.why-now-grid { max-width: 720px; }

.why-now-line {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  margin: 0 0 var(--space-lg);
  color: var(--deep-navy);
}

.why-now-list {
  list-style: none;
  margin: 0 0 var(--space-lg);
  padding: 0;
}

.why-now-list li {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--charcoal);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.why-now-close {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(44, 44, 44, 0.75);
  margin: 0 0 var(--space-md);
}

.why-now-statement {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--champagne-gold);
  margin: 0;
  letter-spacing: -0.02em;
}

/* Programs editorial list */
.section--programs { padding: var(--space-2xl) 0; }

.programs-editorial {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 640px;
}

.programs-item {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.programs-item__marker {
  width: 24px;
  height: 2px;
  background: var(--champagne-gold);
  flex-shrink: 0;
  margin-top: 0.65em;
}

.programs-item__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: var(--deep-navy);
}

.programs-closing {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
  margin: var(--space-xl) 0 0;
  max-width: 36rem;
}

/* Stories — poetic editorial */
.stories-intro p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.6;
  margin: 0.25rem 0;
  color: rgba(44, 44, 44, 0.8);
}

.story-moments-list {
  list-style: none;
  margin: var(--space-xl) 0 0;
  padding: 0;
  max-width: 800px;
}

.story-moment {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
  opacity: calc(0.5 + var(--moment-index, 0) * 0.1);
}

.story-moment__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-style: italic;
  color: var(--deep-navy);
  line-height: 1.5;
}

/* Impact statistics */
.section--impact {
  background: var(--deep-navy);
  color: var(--warm-sand);
  padding: var(--space-2xl) 0;
}

.impact-header { margin-bottom: var(--space-xl); }

.impact-disclaimer {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  margin: var(--space-sm) 0 0;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

.impact-stat {
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
  border-top: 2px solid rgba(201, 169, 98, 0.35);
}

.impact-stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--champagne-gold);
  margin: 0 0 var(--space-xs);
  line-height: 1;
}

.impact-stat__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}

.impact-stat__note {
  font-size: 0.6875rem;
  color: rgba(245, 240, 232, 0.4);
  margin: 0;
}

/* Signature moment — atmospheric frame */
.signature-moment__frame {
  position: absolute;
  inset: 10% 20%;
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  pointer-events: none;
  z-index: 2;
}

.signature-moment__light {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40%;
  background: radial-gradient(ellipse at 50% 100%, rgba(201, 169, 98, calc(0.15 + var(--signature-light, 0) * 0.5)) 0%, transparent 70%);
}

/* Final CTA */
.final-cta-bridge {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  margin: var(--space-md) 0 var(--space-lg) !important;
}

.final-cta-list {
  margin: 0 auto var(--space-lg);
  max-width: 28rem;
}

.final-cta-list p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.85);
  margin: 0.15rem 0;
}

@media (max-width: 1024px) {
  .impact-stats { grid-template-columns: repeat(3, 1fr); }
  .pillars-monument { grid-template-columns: 1fr; gap: var(--space-xl); }
  .story-moments-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══ Video, Humanity, Film, Monument — Design Update ═══ */

.hero--video .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}

.hero-overlay--video {
  background: linear-gradient(
    180deg,
    rgba(26, 33, 32, 0.35) 0%,
    rgba(26, 33, 32, 0.15) 45%,
    rgba(26, 33, 32, 0.6) 100%
  );
}

.human-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.human-frame__img,
.human-moment__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  filter: contrast(1.02) saturate(0.95);
}

.human-frame--cinematic {
  min-height: 65vh;
  max-height: 80vh;
}

.human-moment {
  margin-top: var(--space-xl);
  max-height: 50vh;
  overflow: hidden;
}

.human-moment__img { max-height: 50vh; }

.human-frame:hover .human-frame__img,
.story-card:hover .story-card__img {
  transform: scale(1.04);
}

.cinematic-image--human {
  filter: contrast(1.03) saturate(0.92);
}

/* Film section */
.film-section { padding: 0; }

.film-cinematic {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md);
}

.film-cinematic__media {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.film-cinematic__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s var(--ease-out);
}

.film-cinematic__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,33,32,0.25) 0%, rgba(26,33,32,0.55) 100%);
}

.film-cinematic__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
}

.film-cinematic:hover .film-cinematic__poster {
  transform: scale(1.07);
}

.btn-play--large {
  display: inline-flex;
  align-items: center;
  padding: 1.1rem 2.5rem;
  font-size: 0.9rem;
}

.btn-play__icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--deep-navy);
  margin-right: 0.25rem;
}

/* Journey CTAs */
.journey-cta {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
}

.journey-cta--light .btn-primary {
  background: var(--champagne-gold);
}

/* Pillars monument */
.section--monument {
  background: var(--jerusalem-stone);
  padding: var(--space-3xl) 0;
  position: relative;
}

.monument-arch--top,
.monument-arch--bottom {
  height: 48px;
  background: linear-gradient(180deg, var(--warm-sand), var(--jerusalem-stone));
}

.monument-arch--bottom {
  background: linear-gradient(180deg, var(--jerusalem-stone), var(--warm-sand));
}

.editorial-title--monument {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.pillars-monument {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

.pillar-monument {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  transition: transform 0.5s var(--ease-out);
}

.pillar-monument:hover {
  transform: translateY(-4px);
}

.pillar-monument__arch {
  position: relative;
  color: var(--champagne-gold);
  margin-bottom: var(--space-lg);
  height: 100px;
}

.pillar-monument__arch svg {
  width: 140px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.pillar-monument__light {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  background: radial-gradient(ellipse at 50% 100%, rgba(201, 169, 98, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.pillar-monument__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600;
  color: var(--deep-navy);
  margin: 0 0 var(--space-md);
  letter-spacing: -0.02em;
}

.pillar-monument__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(44, 44, 44, 0.75);
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* Signature — full bleed */
.signature-moment--hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.signature-moment__image-wrap {
  position: absolute;
  inset: 0;
}

.signature-moment__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.signature-moment__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,33,32,0.7) 0%, rgba(26,33,32,0.35) 50%, rgba(26,33,32,0.55) 100%);
  pointer-events: none;
}

.signature-statement {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--warm-sand);
  margin: 0;
  text-align: center;
  max-width: 900px;
  padding: var(--space-xl);
  position: relative;
  z-index: 2;
}

.signature-moment__words {
  position: relative;
  z-index: 3;
}

/* Story cards */
.story-moments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  list-style: none;
  margin: var(--space-xl) 0 0;
  padding: 0;
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.story-card__media {
  aspect-ratio: 4 / 3;
  max-height: 320px;
}

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

.story-card__text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--deep-navy);
  margin: 0;
  padding: 0 var(--space-xs);
}

/* Premium hover */
.hover-lift {
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s;
}

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

.give-tier.hover-lift:hover {
  box-shadow: 0 12px 40px rgba(201, 169, 98, 0.2);
}

.impact-stat.hover-lift:hover {
  border-top-color: var(--champagne-gold);
}

.programs-item.hover-lift:hover .programs-item__marker {
  width: 36px;
  background: var(--gold-light);
}

/* Video modal cinematic */
.video-modal-content--cinematic {
  width: 92%;
  max-width: 1100px;
}

.video-modal-video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
  background: #000;
}

.video-modal-player {
  background: #000;
  line-height: 0;
}

@media (max-width: 768px) {
  .story-moments-grid { grid-template-columns: 1fr; }
  .film-cinematic__media { min-height: 50vh; }
  .signature-statement { font-size: clamp(2rem, 8vw, 3rem); }
}
