/* =========================================
   LION OF JUDAH MISSION — STYLESHEET
   ========================================= */

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

:root {
  --navy:    #0a1628;
  --gold:    #c9a84c;
  --gold-lt: #e8c96a;
  --gold-dk: #8b6914;
  --cream:   #fdf8f0;
  --white:   #ffffff;
  --text:    #1a1a2e;
  --muted:   #6b7280;
  --green:   #25D366;
  --header-h: 80px;
  --radius:  12px;
  --shadow:  0 8px 40px rgba(10,22,40,.18);
  --trans:   .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background var(--trans), box-shadow var(--trans), height var(--trans);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 40px rgba(201,168,76,.15);
  height: 66px;
}

/* Decorative animated glow bar */
.header-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-lt), var(--gold), transparent);
  background-size: 200% 100%;
  animation: glowSlide 3s linear infinite;
  opacity: 0;
  transition: opacity var(--trans);
}
.site-header.scrolled .header-glow { opacity: 1; }
@keyframes glowSlide {
  0%   { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* --- LOGO --- */
.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}

/* Aura wrap holds SVG rings + pulse + image */
.logo-aura-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--trans);
}
.site-header.scrolled .logo-aura-wrap { width: 60px; height: 60px; }
.logo-link:hover .logo-aura-wrap { transform: scale(1.06); }

/* SVG rings overlay */
.logo-rings {
  position: absolute;
  inset: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  pointer-events: none;
  z-index: 2;
}

/* Ring 1 — outer dashed, slow spin */
.ring-1 {
  animation: ringSpinCW 14s linear infinite;
  transform-origin: 60px 60px;
}
/* Ring 2 — middle, animated stroke draw + reverse spin */
.ring-2 {
  animation: ringDraw 2.5s ease forwards, ringSpinCCW 10s 2.5s linear infinite;
  transform-origin: 60px 60px;
}
/* Ring 3 — inner gentle pulse */
.ring-3 {
  animation: ringPulse 2.8s ease-in-out infinite;
  transform-origin: 60px 60px;
}
/* Sparks group — slow opposite rotation */
.sparks-group {
  animation: ringSpinCW 8s linear infinite;
  transform-origin: 60px 60px;
}
.spark {
  animation: sparkTwinkle 1.4s ease-in-out infinite alternate;
}
.spark:nth-child(2) { animation-delay: .35s; }
.spark:nth-child(3) { animation-delay: .7s; }
.spark:nth-child(4) { animation-delay: 1.05s; }
.spark-sm { animation: sparkTwinkle 1s ease-in-out infinite alternate; }
.spark-sm:nth-child(6) { animation-delay: .2s; }
.spark-sm:nth-child(7) { animation-delay: .5s; }
.spark-sm:nth-child(8) { animation-delay: .8s; }

@keyframes ringSpinCW  { to { transform: rotate(360deg); } }
@keyframes ringSpinCCW { to { transform: rotate(-360deg); } }
@keyframes ringDraw {
  from { stroke-dashoffset: 340; }
  to   { stroke-dashoffset: 0; }
}
@keyframes ringPulse {
  0%,100% { opacity: .4; r: 38; }
  50%     { opacity: .9; r: 40; }
}
@keyframes sparkTwinkle {
  0%   { opacity: .3; transform: scale(.7); }
  100% { opacity: 1;  transform: scale(1.3); }
}

/* Soft glow pulse behind logo */
.logo-pulse {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.25) 0%, transparent 70%);
  animation: logoPulse 2.4s ease-in-out infinite;
  z-index: 0;
}
@keyframes logoPulse {
  0%,100% { transform: scale(.9); opacity: .5; }
  50%     { transform: scale(1.1); opacity: 1; }
}

.logo-img {
  position: relative;
  z-index: 1;
  height: 54px;
  width: auto;
  transition: transform var(--trans), filter var(--trans);
  filter: drop-shadow(0 0 10px rgba(201,168,76,.45));
}
.site-header.scrolled .logo-img { height: 46px; }
.logo-link:hover .logo-img {
  filter: drop-shadow(0 0 22px rgba(201,168,76,.9)) brightness(1.08);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.logo-title em {
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
}
.logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* --- NAV --- */
.main-nav { flex: 1; display: flex; justify-content: center; }

.main-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-link {
  position: relative;
  padding: 8px 18px;
  text-decoration: none;
  color: rgba(255,255,255,.82);
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color var(--trans);
  overflow: hidden;
  border-radius: 6px;
}

.nav-link span { position: relative; z-index: 1; }

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.18), rgba(201,168,76,.05));
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 6px;
  opacity: 0;
  transform: scaleX(.6);
  transition: opacity var(--trans), transform var(--trans);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-lt);
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Magnetic-ish hover wiggle */
.nav-link:hover span {
  animation: navWiggle .4s ease;
}
@keyframes navWiggle {
  0%,100% { transform: translateY(0); }
  30%      { transform: translateY(-2px); }
  70%      { transform: translateY(1px); }
}

/* --- ACTION BUTTONS — PREMIUM REDESIGN --- */
.header-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Base button shell */
.action-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
  isolation: isolate;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* Inner layout container */
.btn-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s ease, letter-spacing .2s ease;
  white-space: nowrap;
}

.btn-icon {
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-icon svg { width: 17px; height: 17px; }

/* Animated expanding ring halo */
.btn-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  z-index: 1;
  pointer-events: none;
}

/* Background FX layer */
.btn-bg-fx {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.btn-bg-fx::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  opacity: 0;
  transition: opacity .3s;
}
.action-btn:hover .btn-bg-fx::before { opacity: 1; }

/* Sparkle particles container */
.btn-particles { position: absolute; inset: 0; pointer-events: none; z-index: 4; }

/* Hover lift */
.action-btn:hover .btn-inner {
  transform: translateY(-1px);
  letter-spacing: .13em;
}
.action-btn:active .btn-inner { transform: translateY(1px) scale(.97); }

/* ── CALL BUTTON ── */
.btn-call .btn-inner {
  background: linear-gradient(145deg, #0d1e3a 0%, #162d55 50%, #0a1628 100%);
  color: var(--gold-lt);
  border: 1.5px solid rgba(201,168,76,.5);
  box-shadow:
    inset 0 1px 0 rgba(201,168,76,.2),
    inset 0 -1px 0 rgba(0,0,0,.4),
    0 6px 24px rgba(10,22,40,.5);
}
.btn-call .btn-ring {
  background: transparent;
  border: 1.5px solid rgba(201,168,76,.35);
  animation: callRingPulse 2s ease-in-out infinite;
}
.btn-call .btn-ring::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,.15);
  animation: callRingPulse 2s .6s ease-in-out infinite;
}
@keyframes callRingPulse {
  0%,100% { transform: scale(1);    opacity: .7; }
  50%     { transform: scale(1.06); opacity: 0;  }
}
.btn-call .btn-bg-fx::before {
  background: linear-gradient(145deg, #162d55, #0a1628);
  box-shadow: 0 0 30px rgba(201,168,76,.4);
}
.btn-call:hover .btn-inner {
  border-color: rgba(201,168,76,.8);
  box-shadow:
    inset 0 1px 0 rgba(201,168,76,.35),
    0 10px 36px rgba(10,22,40,.6),
    0 0 20px rgba(201,168,76,.25);
}
/* Phone icon ringing */
.btn-call .btn-icon { animation: phoneRing .55s ease-in-out infinite alternate; }
@keyframes phoneRing {
  0%   { transform: rotate(-20deg) scale(1);    }
  100% { transform: rotate(20deg)  scale(1.15); }
}

/* ── WHATSAPP BUTTON ── */
.btn-whatsapp .btn-inner {
  background: linear-gradient(145deg, #075e54 0%, #128c7e 40%, #25d366 100%);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    inset 0 -1px 0 rgba(0,80,60,.5),
    0 6px 24px rgba(37,211,102,.35);
}
.btn-whatsapp .btn-ring {
  background: transparent;
  border: 1.5px solid rgba(37,211,102,.4);
  animation: waPing 2.2s ease-in-out infinite;
}
@keyframes waPing {
  0%,100% { transform: scale(1);    opacity: .5; }
  60%     { transform: scale(1.08); opacity: 0;  }
}
.btn-whatsapp .btn-bg-fx::before {
  background: linear-gradient(145deg, #128c7e, #25d366);
  box-shadow: 0 0 30px rgba(37,211,102,.5);
}
.btn-whatsapp:hover .btn-inner {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 12px 36px rgba(37,211,102,.5),
    0 0 24px rgba(37,211,102,.35);
}
/* WA icon floating bounce */
.btn-whatsapp .btn-icon { animation: waBounce 1.6s ease-in-out infinite; }
@keyframes waBounce {
  0%,100% { transform: translateY(0) scale(1);    }
  40%     { transform: translateY(-4px) scale(1.15); }
  60%     { transform: translateY(-2px) scale(1.08); }
}

/* ── DONATE BUTTON ── */
.btn-donate .btn-inner {
  background: linear-gradient(145deg, #8b6914 0%, #c9a84c 45%, #ffe48a 75%, #c9a84c 100%);
  background-size: 300% 100%;
  color: #0a1628;
  font-weight: 900;
  border: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -1px 0 rgba(100,60,0,.4),
    0 6px 28px rgba(201,168,76,.55),
    0 2px 8px rgba(0,0,0,.2);
  animation: donateFlow 2s linear infinite;
}
@keyframes donateFlow {
  0%   { background-position: 0%   0; }
  100% { background-position: 300% 0; }
}
.btn-donate .btn-ring {
  background: transparent;
  border: 2px solid rgba(201,168,76,.6);
  animation: donateGlow 1.8s ease-in-out infinite;
}
.btn-donate .btn-ring::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50px;
  border: 1.5px solid rgba(201,168,76,.25);
  animation: donateGlow 1.8s .4s ease-in-out infinite;
}
@keyframes donateGlow {
  0%,100% { transform: scale(1);    opacity: .8; box-shadow: 0 0 12px rgba(201,168,76,.3); }
  50%     { transform: scale(1.07); opacity: 0;  box-shadow: 0 0 28px rgba(201,168,76,.0); }
}
.btn-donate:hover .btn-inner {
  animation: none;
  background-position: 0 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    0 14px 40px rgba(201,168,76,.7),
    0 0 30px rgba(201,168,76,.5);
}
/* Heart beating */
.btn-donate .btn-icon { animation: heartBeat 1.1s ease-in-out infinite; }
@keyframes heartBeat {
  0%,100% { transform: scale(1);    }
  14%     { transform: scale(1.4);  }
  28%     { transform: scale(1);    }
  42%     { transform: scale(1.25); }
  70%     { transform: scale(1);    }
}

/* Shine sweep across donate on load */
.btn-donate::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-15deg);
  animation: donateSweep 3.5s ease-in-out infinite;
  z-index: 5;
  border-radius: 50px;
  pointer-events: none;
}
@keyframes donateSweep {
  0%,55%,100% { left: -120%; }
  35%         { left: 160%;  }
}

/* ── HOVER LIFT (all) ── */
.action-btn:hover {
  transform: translateY(-3px);
}
.action-btn:active {
  transform: translateY(0) scale(.97);
}


/* --- HAMBURGER --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--trans);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO — SLIDESHOW VERSION
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ---- SLIDESHOW BACKGROUNDS ---- */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(.4,0,.2,1);
  transform: scale(1.06);
  animation: none;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease-out forwards;
}

.hero-slide.fade-out {
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(.4,0,.2,1);
}

.slide-1 { background-image: url('hero1.jpg'); }
.slide-2 { background-image: url('hero2.jpg'); }

@keyframes kenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

/* ---- OVERLAY ---- */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(6,14,28,.65) 0%,
      rgba(6,14,28,.35) 40%,
      rgba(6,14,28,.55) 70%,
      rgba(6,14,28,.90) 100%),
    linear-gradient(90deg,
      rgba(6,14,28,.4) 0%,
      transparent 50%,
      rgba(6,14,28,.4) 100%);
  pointer-events: none;
}

/* Gold vignette */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 120px rgba(201,168,76,.08);
  pointer-events: none;
}

/* ---- PARTICLES ---- */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* ---- SLIDE DOTS ---- */
.hero-slide-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s 1.8s forwards;
}

.slide-dot {
  width: 36px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: all .4s ease;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.slide-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 6s linear;
  border-radius: 2px;
}
.slide-dot.active {
  background: rgba(201,168,76,.4);
  width: 56px;
}
.slide-dot.active::after {
  transform: scaleX(1);
}

/* ---- HERO CONTENT ---- */
.hero-content {
  position: relative;
  z-index: 5;
  padding: 140px 24px 100px;
  max-width: 900px;
  width: 100%;
}

/* Eyebrow with lines */
.hero-eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}
.hero-eyebrow-line {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  flex-shrink: 0;
}
.hero-eyebrow-wrap .hero-eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: .78rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* Big stacked title */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp .9s .5s forwards;
  line-height: 1;
}

.hero-title-lion,
.hero-title-judah {
  font-family: 'Cinzel', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1;
  text-shadow:
    0 0 60px rgba(201,168,76,.3),
    0 4px 20px rgba(0,0,0,.6);
}

.hero-title-of {
  display: block;
}
.hero-title-of em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .25em;
  text-transform: uppercase;
  display: block;
  line-height: 1.4;
}

.hero-title-mission {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold-lt));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  letter-spacing: .05em;
  margin-top: 4px;
  filter: drop-shadow(0 2px 12px rgba(201,168,76,.4));
}

/* Cross divider */
.hero-cross-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 28px auto 24px;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}
.hcd-line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.6));
}
.hero-cross-divider .hcd-line:last-child {
  background: linear-gradient(90deg, rgba(201,168,76,.6), transparent);
}
.hcd-cross {
  font-size: 1.2rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201,168,76,.6);
  animation: crossGlow 2.5s ease-in-out infinite alternate;
}
@keyframes crossGlow {
  from { text-shadow: 0 0 10px rgba(201,168,76,.4); }
  to   { text-shadow: 0 0 30px rgba(201,168,76,.9), 0 0 60px rgba(201,168,76,.3); }
}

/* Tagline */
.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp .8s .8s forwards;
}
.hero-tag-word {
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.hero-tag-dot {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

/* Scripture */
.hero-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .92rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 40px;
  letter-spacing: .04em;
  opacity: 0;
  animation: fadeUp .8s .9s forwards;
}

/* CTA buttons */
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s 1s forwards;
  margin-bottom: 56px;
}

.cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
  background-size: 200% 100%;
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(201,168,76,.45), 0 0 0 0 rgba(201,168,76,.3);
  overflow: hidden;
  transition: all var(--trans);
  animation: ctaPulse 2.4s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(201,168,76,.45), 0 0 0 0 rgba(201,168,76,.3); }
  50%     { box-shadow: 0 8px 32px rgba(201,168,76,.45), 0 0 0 12px rgba(201,168,76,0); }
}
.cta-primary-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  position: relative;
  z-index: 2;
}
.cta-primary:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201,168,76,.6);
  animation: none;
}
.cta-shine {
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-15deg);
  animation: shinePass 3s ease-in-out infinite;
  z-index: 3;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
  transition: all var(--trans);
}
.cta-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  transform: translateY(-3px);
  background: rgba(201,168,76,.1);
  box-shadow: 0 8px 32px rgba(201,168,76,.2);
}

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(6,14,28,.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 60px;
  padding: 16px 36px;
  width: fit-content;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp .8s 1.2s forwards;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  gap: 2px;
}
.hero-trust-num {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold-lt);
  line-height: 1;
}
.hero-trust-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}
.hero-trust-sep {
  width: 1px; height: 36px;
  background: rgba(201,168,76,.25);
  flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll-hint span {
  display: block;
  width: 24px; height: 38px;
  border: 2px solid rgba(201,168,76,.5);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ---- HERO RESPONSIVE ---- */
@media (max-width: 600px) {
  .hero-title-lion, .hero-title-judah { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero-title-mission { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero-trust { padding: 14px 16px; }
  .hero-trust-item { padding: 0 16px; }
  .hero-trust-label { font-size: .58rem; letter-spacing: .08em; }
  .hero-tagline { gap: 8px; }
}

/* =========================================
   SECTIONS SHARED
   ========================================= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1.5px solid var(--gold);
  padding-top: 8px;
  margin-bottom: 20px;
}
.section-label.light { color: var(--gold-lt); border-color: var(--gold-lt); }

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 48px;
  letter-spacing: .02em;
}
.section-title.light { color: var(--white); }

/* =========================================
   ABOUT
   ========================================= */
.section-about {
  padding: 120px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  color: #444;
  line-height: 1.85;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.inline-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-dk);
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: all var(--trans);
}
.inline-link:hover {
  color: var(--gold);
  padding-left: 6px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(201,168,76,.15);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,22,40,.1);
  border-color: rgba(201,168,76,.3);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.pillar h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.pillar p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================
   BLOG
   ========================================= */
.section-blog {
  padding: 120px 0;
  background: var(--navy);
}
.section-blog .section-title { color: var(--white); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--trans);
}
.blog-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.06), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,.35);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.blog-card:hover::after { opacity: 1; }
.blog-card.featured {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.3);
}

.blog-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.4);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.blog-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.35;
  letter-spacing: .02em;
}

.blog-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 24px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: gap var(--trans), color var(--trans);
}
.read-more span { transition: transform var(--trans); }
.read-more:hover { color: var(--gold-lt); gap: 10px; }
.read-more:hover span { transform: translateX(4px); }

/* =========================================
   DONATE
   ========================================= */
.section-donate {
  padding: 120px 0;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at center, #1a2f52 0%, var(--navy) 70%, #030810 100%);
  overflow: hidden;
}
.section-donate .container { position: relative; z-index: 2; }

.donate-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M40 0l40 40-40 40L0 40z'/%3E%3C/g%3E%3C/svg%3E") repeat;
  animation: bgDrift 25s linear infinite;
}
@keyframes bgDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

.donate-sub {
  max-width: 560px;
  margin: -24px auto 48px;
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  line-height: 1.75;
}

.donate-big-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 56px;
  background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 50%, var(--gold-lt) 100%);
  background-size: 200% 100%;
  color: var(--navy);
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(201,168,76,.45), 0 0 0 0 rgba(201,168,76,.3);
  animation: donatePulse 2.2s ease-in-out infinite;
  transition: transform var(--trans);
}
.donate-big-btn:hover {
  transform: translateY(-4px) scale(1.03);
  animation: none;
  background-position: 100% 0;
  box-shadow: 0 20px 60px rgba(201,168,76,.6);
}
.donate-heart { font-size: 1.4rem; animation: heartBeat 1.2s ease-in-out infinite; }
.donate-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-15deg);
  animation: shinePass 3s ease-in-out infinite;
}
@keyframes shinePass {
  0%,60%,100% { left: -100%; }
  40%          { left: 150%; }
}
@keyframes donatePulse {
  0%,100% { box-shadow: 0 12px 40px rgba(201,168,76,.45), 0 0 0 0 rgba(201,168,76,.3); }
  50%     { box-shadow: 0 12px 40px rgba(201,168,76,.45), 0 0 0 18px rgba(201,168,76,0); }
}

/* =========================================
   CONTACT
   ========================================= */
.section-contact {
  padding: 120px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.c-icon { font-size: 1.4rem; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-item p { color: var(--muted); font-size: .95rem; }

.contact-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  letter-spacing: .06em;
  transition: all var(--trans);
}
.whatsapp-pill {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.whatsapp-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
}
.call-pill {
  background: var(--navy);
  color: var(--gold-lt);
  border: 1px solid rgba(201,168,76,.3);
  box-shadow: 0 4px 16px rgba(10,22,40,.2);
}
.call-pill:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(10,22,40,.35);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(10,22,40,.1);
  border: 1px solid rgba(201,168,76,.12);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: #fafafa;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--navy), #1a2f52);
  color: var(--gold-lt);
  border: none;
  border-radius: 8px;
  font-family: 'Cinzel', serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--trans);
  box-shadow: 0 4px 16px rgba(10,22,40,.25);
  position: relative;
  overflow: hidden;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(10,22,40,.4);
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: var(--navy);
}

/* =========================================
   DIRECTOR SPOTLIGHT
   ========================================= */
.section-director {
  position: relative;
  padding: 120px 0 140px;
  background: linear-gradient(160deg, #060e1c 0%, #0a1628 40%, #0d1e3a 70%, #060e1c 100%);
  overflow: hidden;
}

.director-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201,168,76,.04) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23c9a84c' fill-opacity='0.025'%3E%3Ccircle cx='40' cy='40' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.director-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.director-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: orbDrift1 12s ease-in-out infinite alternate;
}
.director-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(10,80,160,.15) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation: orbDrift2 10s ease-in-out infinite alternate;
}
@keyframes orbDrift1 {
  from { transform: translate(0,0); }
  to   { transform: translate(60px, 40px); }
}
@keyframes orbDrift2 {
  from { transform: translate(0,0); }
  to   { transform: translate(-40px, -60px); }
}

.director-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* --- PHOTO COLUMN --- */
.director-photo-col {
  display: flex;
  justify-content: center;
}

.director-photo-frame {
  position: relative;
  width: 380px;
  max-width: 100%;
}

.dir-frame-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.25);
  inset: -24px;
  animation: frameRingSpin 20s linear infinite;
  pointer-events: none;
}
.dir-ring-outer {
  inset: -32px;
  border-style: dashed;
  border-width: 1px;
  border-color: rgba(201,168,76,.15);
  animation: frameRingSpin 28s linear infinite reverse;
}
.dir-ring-mid {
  inset: -16px;
  border-color: rgba(201,168,76,.3);
  animation: frameRingSpin 20s linear infinite;
}
@keyframes frameRingSpin { to { transform: rotate(360deg); } }

.dir-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,.35);
  box-shadow:
    0 0 0 6px rgba(201,168,76,.06),
    0 40px 80px rgba(0,0,0,.7),
    0 0 60px rgba(201,168,76,.15);
}

.director-photo {
  width: 100%;
  display: block;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.director-photo-frame:hover .director-photo {
  transform: scale(1.03);
}

.dir-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,14,28,.85) 100%);
  pointer-events: none;
}

/* Floating badge */
.dir-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(201,168,76,.5), 0 0 0 4px rgba(201,168,76,.2);
  animation: badgeFloat 3s ease-in-out infinite;
  z-index: 4;
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-8px) rotate(3deg); }
}
.dir-badge-cross {
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 900;
  line-height: 1;
}
.dir-badge-text {
  font-family: 'Cinzel', serif;
  font-size: .45rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
  line-height: 1.3;
}

/* Corner accent brackets */
.dir-corner {
  position: absolute;
  width: 22px; height: 22px;
  pointer-events: none;
  z-index: 5;
}
.dir-corner::before,
.dir-corner::after {
  content: '';
  position: absolute;
  background: var(--gold);
}
.dir-corner::before { width: 100%; height: 2px; }
.dir-corner::after  { width: 2px; height: 100%; }

.dir-corner-tl { top: -2px; left: -2px; }
.dir-corner-tl::before { top: 0; left: 0; }
.dir-corner-tl::after  { top: 0; left: 0; }

.dir-corner-tr { top: -2px; right: -2px; }
.dir-corner-tr::before { top: 0; right: 0; }
.dir-corner-tr::after  { top: 0; right: 0; }

.dir-corner-bl { bottom: -2px; left: -2px; }
.dir-corner-bl::before { bottom: 0; left: 0; }
.dir-corner-bl::after  { bottom: 0; left: 0; }

.dir-corner-br { bottom: -2px; right: -2px; }
.dir-corner-br::before { bottom: 0; right: 0; }
.dir-corner-br::after  { bottom: 0; right: 0; }

/* --- CONTENT COLUMN --- */
.director-content-col {
  color: var(--white);
}

.dir-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s ease, transform .7s ease;
}
.dir-eyebrow.visible { opacity: 1; transform: translateX(0); }
.dir-eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.5), transparent);
}

.dir-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s .15s ease, transform .7s .15s ease;
}
.dir-name.visible { opacity: 1; transform: translateY(0); }

.dir-title-word { display: block; }
.dir-name-gold {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold-lt));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dir-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s .25s ease, transform .6s .25s ease;
}
.dir-role-badge.visible { opacity: 1; transform: translateY(0); }
.dir-role-badge svg { color: var(--gold); animation: starSpin 4s linear infinite; }
@keyframes starSpin { to { transform: rotate(360deg); } }

.dir-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  transition: opacity .6s .3s ease;
}
.dir-divider.visible { opacity: 1; }
.dir-divider span:first-child,
.dir-divider span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.4));
}
.dir-divider span:last-child {
  background: linear-gradient(90deg, rgba(201,168,76,.4), transparent);
}
.dir-divider-cross {
  color: var(--gold);
  font-size: 1rem;
  flex: none !important;
  background: none !important;
}

.dir-bio {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s .35s ease, transform .7s .35s ease;
}
.dir-bio.visible { opacity: 1; transform: translateY(0); }

.dir-bio p {
  color: rgba(255,255,255,.72);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.dir-bio-lead {
  color: rgba(255,255,255,.9) !important;
  font-size: 1.05rem !important;
  font-weight: 400;
}
.dir-bio-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem !important;
  color: var(--gold-lt) !important;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-top: 24px !important;
  line-height: 1.6 !important;
}

/* Stats strip */
.dir-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 36px 0 36px;
  background: rgba(201,168,76,.06);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 16px;
  padding: 24px 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s .5s ease, transform .7s .5s ease;
}
.dir-stats.visible { opacity: 1; transform: translateY(0); }

.dir-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.dir-stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold-lt));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.dir-stat-plus {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  margin-top: -2px;
  -webkit-text-fill-color: var(--gold);
}
.dir-stat-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-family: 'Lato', sans-serif;
}
.dir-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,168,76,.2);
  flex-shrink: 0;
}

/* CTA */
.dir-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 50%, var(--gold-lt) 100%);
  background-size: 200% 100%;
  color: var(--navy);
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(201,168,76,.4);
  transition: all var(--trans);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s .6s ease, transform .6s .6s ease, background-position .3s, box-shadow .3s, transform .3s;
}
.dir-cta.visible { opacity: 1; transform: translateY(0); }
.dir-cta:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201,168,76,.55);
}
.dir-cta-arrow {
  transition: transform var(--trans);
  font-size: 1.1rem;
}
.dir-cta:hover .dir-cta-arrow { transform: translateX(4px); }
.dir-cta-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-15deg);
  animation: shinePass 3.5s ease-in-out infinite;
}

/* =========================================
   FOOTER — REDESIGNED
   ========================================= */
.site-footer {
  background: #04090f;
  border-top: 1px solid rgba(201,168,76,.1);
}

/* --- TOP FOOTER --- */
.footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo img {
  filter: drop-shadow(0 0 10px rgba(201,168,76,.4));
}
.footer-logo-name {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-logo-sub {
  display: block;
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(201,168,76,.6);
  margin-top: 2px;
}
.footer-brand-desc {
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: .85rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,.3);
  padding-bottom: 3px;
  transition: all var(--trans);
  font-family: 'Lato', sans-serif;
}
.footer-email-link:hover {
  color: var(--gold-lt);
  border-color: var(--gold-lt);
}

.footer-col {}
.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-links a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-size: .85rem;
  transition: all var(--trans);
  position: relative;
  padding-left: 14px;
}
.footer-col-links a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold-dk);
  transition: color var(--trans), transform var(--trans);
}
.footer-col-links a:hover {
  color: var(--gold-lt);
  padding-left: 20px;
}
.footer-col-links a:hover::before {
  color: var(--gold-lt);
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-social-btn {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.15);
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: all var(--trans);
}
.footer-social-btn:hover {
  background: rgba(201,168,76,.12);
  border-color: rgba(201,168,76,.5);
  color: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201,168,76,.2);
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.4);
  font-size: .82rem;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
}
.footer-contact-line svg { flex-shrink: 0; opacity: .7; color: var(--gold-dk); }

/* --- BOTTOM BAR --- */
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  color: rgba(255,255,255,.25);
  font-size: .78rem;
}
.footer-credit {
  color: rgba(255,255,255,.25);
  font-size: .78rem;
}
.footer-creator-link {
  color: var(--gold);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: .05em;
  transition: color var(--trans);
}
.footer-creator-link:hover { color: var(--gold-lt); }

/* =========================================
   RESPONSIVE — Director + New Footer
   ========================================= */
@media (max-width: 1024px) {
  .director-container { grid-template-columns: 1fr; gap: 60px; }
  .director-photo-col { order: -1; }
  .director-photo-frame { width: 340px; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .director-photo-frame { width: 100%; max-width: 320px; }
  .dir-stats { flex-direction: column; gap: 24px; padding: 24px; }
  .dir-stat-divider { width: 60px; height: 1px; }
  .footer-top-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: unset; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* =========================================
   PARTICLES (JS drawn, CSS styled)
   ========================================= */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  animation: particleFloat linear infinite;
  opacity: 0;
}
@keyframes particleFloat {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .2; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid  { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .main-nav, .header-actions { display: none; }
  .hamburger { display: flex; }

  .main-nav.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: rgba(6,14,28,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 999;
    animation: navFadeIn .3s ease;
  }
  @keyframes navFadeIn {
    from { opacity:0; transform: translateY(-10px); }
    to   { opacity:1; transform: translateY(0); }
  }
  .main-nav.open ul {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .main-nav.open .nav-link {
    font-size: 1.2rem;
    padding: 14px 36px;
  }
  .main-nav.open + .header-actions,
  .main-nav.open ~ .header-actions {
    display: flex;
  }

  /* Mobile floating action buttons */
  .header-actions.mobile-fab {
    display: flex !important;
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    gap: 12px;
    z-index: 998;
    background: rgba(6,14,28,.9);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 60px;
    padding: 12px 20px;
    backdrop-filter: blur(16px);
  }

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

@media (max-width: 600px) {
  .about-pillars { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-links { justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ===================== GALLERY SECTION ===================== */
.section-gallery {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a1628 0%, #060e1c 100%);
  position: relative;
}

.gallery-sub {
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  margin: 0 auto 2.5rem;
  max-width: 600px;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.2);
  cursor: pointer;
}

.gallery-item--wide {
  grid-column: span 1;
}

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

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,14,28,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #e8c96a;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .gallery-item {
    height: 200px;
  }
  .gallery-item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--wide {
    grid-column: span 1;
  }
}
