/* ============================================================
   PROJECTING HOPE — Shared Stylesheet
   style.css
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Lato:wght@300;400;600;700;900&family=Caveat:wght@600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --ph-blue:        #3D77A8;
  --ph-blue-dark:   #1C3F5E;
  --ph-blue-light:  #D6E8F5;
  --ph-gold:        #F2B830;
  --ph-gold-dark:   #B8920A;
  --ph-gold-light:  #FFF3CC;
  --ph-green:       #1D9E75;
  --ph-green-light: #E1F5EE;
  --ph-surface:     #F4F8FC;
  --ph-border:      #A8C8E0;
  --text-primary:   #1a2b3c;
  --text-muted:     #6b7f93;
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  scroll-padding-top: 80px; /* Account for sticky nav height */
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-primary);
  background: #fff;
  overflow-x: clip; /* clip instead of hidden — doesn't create scroll container, so position:sticky works */
  max-width: 100vw;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(1.6rem, 3.2vw, 2.55rem); }
h2 { font-size: clamp(1.2rem, 2.4vw, 1.9rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ph-blue-light);
  margin-bottom: 10px;
  display: block;
}

.eyebrow-dark {
  color: var(--ph-blue);
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 72px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid #e8edf2;
}

.section-alt {
  background: var(--ph-surface);
}

/* Layout containers — mix these for visual rhythm */
.layout-wide {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 72px);
}
.layout-standard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.layout-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ph-blue);
  margin-bottom: 8px;
  display: block;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.see-all-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ph-blue);
  white-space: nowrap;
  padding-top: 4px;
  transition: opacity .2s;
}
.see-all-link:hover { opacity: 0.7; }

.section-intro {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 580px;
  margin-bottom: 32px;
}

/* Mobile-only line break helper */
.ph-mob-br { display: none; }
@media (max-width: 680px) { .ph-mob-br { display: block; } }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    radial-gradient(ellipse 40% 160% at 32% 50%, rgba(201,168,76,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 55% 180% at 85% 50%, rgba(100,160,220,0.50) 0%, transparent 60%),
    var(--ph-blue-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  padding: 5px clamp(32px, 5vw, 80px) 0;
  height: 63px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  position: relative;
}


.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon { display: none; } /* replaced by real logo image */

.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-logo-text { display: none; }
.nav-logo-sub  { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: visible;
  min-width: 0;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  padding: 6px 12px;
  border-radius: 6px;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav-link.active {
  color: var(--ph-gold, #c9a84c) !important;
  font-weight: 700;
  background: transparent;
}

.nav-link-upnext {
  font-weight: 700;
  font-size: 15px;
}

.btn-nav-cta {
  background: var(--ph-gold);
  color: var(--ph-blue-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 32px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}

.state-chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 99px;
  border: 1.5px solid var(--ph-blue);
  color: var(--ph-blue);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.state-chip:hover {
  background: var(--ph-blue);
  color: #fff;
}

.btn-nav-cta:hover {
  background: #DFA020;
  color: var(--ph-blue-dark);
}

/* Mobile nav toggle */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 99px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--ph-gold);
  color: var(--ph-blue-dark);
  border-color: var(--ph-gold);
}
.btn-gold:hover {
  background: #DFA020;
  border-color: #DFA020;
}

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-ghost-blue {
  background: transparent;
  color: var(--ph-blue-dark);
  border-color: var(--ph-blue);
}
.btn-ghost-blue:hover {
  background: var(--ph-blue-light);
}

.btn-blue {
  background: var(--ph-blue);
  color: #fff;
  border-color: var(--ph-blue);
}
.btn-blue:hover {
  background: var(--ph-blue-dark);
  border-color: var(--ph-blue-dark);
}

.btn-sm {
  font-size: 12px;
  padding: 7px 16px;
}

.btn-dark-gold {
  background: var(--ph-gold-dark);
  color: #fff;
  border-color: var(--ph-gold-dark);
}
.btn-dark-gold:hover {
  background: #9a7a08;
}

/* ============================================================
   PERK PILLS
   ============================================================ */

/* Two perk pill variants — keep it simple */
.perk-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
  line-height: 1;
}

/* On light backgrounds (white/cream cards) */
.perk-pill--on-light {
  background: transparent;
  border: 1.5px solid rgba(28,63,94,0.35);
  color: #1C3F5E;
}

/* On dark backgrounds (navy hero) */
.perk-pill--on-dark {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
}

/* Keep legacy names mapped to new styles for backwards compat */
.perk-ticket-full  { background: #1C3F5E; color: #fff; }
.perk-popcorn-full { background: #F2B830; color: #1C3F5E; }
.perk-popcorn-avail { background: #f0f0f0; border: 1px solid #ddd; color: #555; }

.perks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0;
}

/* ============================================================
   EVENT TYPE BADGES
   ============================================================ */

.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 99px;
  display: inline-block;
  letter-spacing: 0.04em;
}

/* Content badges — pill style (rating, release status) */
.badge-coming    { background: #f5e6e9; color: #8B2D42; }
.badge-pending   { background: var(--ph-gold-light); color: var(--ph-gold-dark); }
.badge-now       { background: #1C3F5E; color: #fff; }

/* ── Event Type Chips ─────────────────────────────────────────
   Larger, icon + text, strong color. Clearly the category label.
   Content badges (Coming Soon, Rating TBA) stay small below these.
   ─────────────────────────────────────────────────────────── */
.event-type-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 5px 12px 5px 8px;
  border-radius: 99px;
  margin-bottom: 10px;
  line-height: 1;
}
.event-type-chip svg { flex-shrink: 0; }

.event-type--early-access {
  background: var(--ph-blue);
  color: #fff;
}
.event-type--festival {
  background: var(--ph-gold);
  color: var(--ph-blue-dark);
}
.event-type--faith-night {
  background: #8B2D42;
  color: #fff;
}

/* Legacy badge classes kept for non-event-type uses */
.badge-premiere  { background: var(--ph-blue-light); color: var(--ph-blue-dark); }
.badge-festival  { background: var(--ph-gold-light); color: var(--ph-gold-dark); }
.badge-faith     { background: #f5e6e9; color: #6B1F30; }

/* ============================================================
   IMAGE ZONES
   ============================================================ */

.img-zone {
  background: var(--ph-blue-light);
  border: 1.5px dashed var(--ph-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.img-zone-dark {
  background: #2A4A66;
  border-color: rgba(255,255,255,0.25);
}

.img-zone-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.88);
  color: var(--ph-blue);
  padding: 3px 8px;
  border-radius: 4px;
  text-align: center;
}

.img-zone-dark .img-zone-label {
  color: var(--ph-blue-dark);
}

.img-zone-tag {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-size: 9px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}

.img-zone-icon {
  color: rgba(61,119,168,0.35);
}

.img-zone-dark .img-zone-icon {
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   CAUSE TAGS
   ============================================================ */

/* Partner org logo grid — used in Hope Causes sections on home + location pages */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
}
.partner-logo-cell {
  opacity: 0.6;
  transition: opacity 0.2s ease, background 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}
.partner-logo-cell:hover {
  opacity: 1;
  background: rgba(255,255,255,0.06);
  transform: scale(1.04);
  border-radius: 6px;
}

.causes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.cause-pill {
  background: var(--ph-blue-light);
  color: var(--ph-blue-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid var(--ph-border);
}

.cause-pill-white {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.causes-caption {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

/* ============================================================
   SCROLLABLE FILM STRIP
   ============================================================ */

.film-strip-wrapper {
  position: relative;
  overflow: visible; /* let scaled card shadows bleed outside boundary */
}
/* Right-edge fade removed */

.film-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden; /* prevent vertical scroll from shadow padding */
  scroll-snap-type: x proximity; /* soft snap — allows partial cards */
  /* Vertical padding for hover shadow headroom, compensated by negative margin */
  padding: 40px 24px;
  margin: -32px 0 -36px;
  scrollbar-width: none;
}

.film-strip::-webkit-scrollbar { display: none; }

/* ── Handwritten season label above each upcoming poster ── */
.cs-season-label {
  font-family: 'Caveat', cursive;
  font-size: 15px;
  font-weight: 600;
  color: var(--ph-blue);
  text-align: center;
  display: block;
  padding: 2px 2px 5px;
  letter-spacing: .02em;
  transform: rotate(-2deg);
  clip-path: inset(0 100% 0 0); /* hidden until JS animates in */
  pointer-events: none;
  user-select: none;
}

.film-card {
  flex: 0 0 110px;
  /* no scroll-snap — past films scroll freely, allowing edge cut-off */
}

/* Coming Soon badges — hidden on film strip cards, but shown on EA poster grid */
.cs-badge { display: none !important; }
.ea-poster-card .cs-badge { display: inline-block !important; bottom: 14px !important; padding: 5px 10px !important; }

.film-card:hover .film-poster {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.film-card:hover .film-badge-custom {
  animation: badgeFloat 0.4s ease-out forwards;
}

/* ── Featured base (any upcoming film) ── */
.film-card-featured {
  flex: 0 0 192px;
  background: transparent;
  border: none;
  border-radius: 10px;
  padding: 4px 10px 14px;
}
.film-card-featured .film-poster { width: 176px; height: 260px; }
.film-card-featured .film-title  { color: var(--ph-blue-dark); }
.film-card-featured .film-meta   { font-size: 10px; color: var(--ph-gold-dark); font-weight: 700; }

/* ── Primary — hero film (largest, most prominent) ── */
.film-card-primary {
  flex: 0 0 192px;
  background: transparent;
  border: none !important;
  box-shadow: none;
  padding: 4px 8px 12px;
}
.film-card-primary .film-poster { width: 176px; height: 260px; }

/* ── Secondary — supporting upcoming film ── */
.film-card-secondary {
  flex: 0 0 192px;
  opacity: 0.92;
}
.film-card-secondary .film-poster { width: 176px; height: 260px; }

.film-poster {
  width: 110px;
  height: 150px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  margin-bottom: 5px;
}

.film-poster.dark-bg {
  background: #1a1c1f;
  border: none;
}

/* ── Wide (16:9) faith-night cards ── */
.film-card-wide { flex-shrink: 0; }
.film-card-wide .film-poster {
  width: 240px;
  height: 135px; /* 16:9 */
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.5);
}
.film-card-wide.film-card-featured .film-poster,
.film-card-wide.film-card-primary .film-poster,
.film-card-wide.film-card-secondary .film-poster {
  width: 240px;
  height: 135px;
}

.film-poster.light-bg {
  background: #2a2d31;
  border: none;
}

.film-poster-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 0 6px;
}

.film-poster.light-bg .film-poster-label {
  color: rgba(61,119,168,0.6);
}

.film-badge {
  position: absolute;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
  letter-spacing: 0.04em;
}

.film-badge-coming {
  top: 6px;
  left: 6px;
  background: var(--ph-gold);
  color: var(--ph-blue-dark);
}

.film-badge-screened {
  bottom: 6px;
  left: 6px;
  background: var(--ph-blue-light);
  color: var(--ph-blue-dark);
}

.film-badge-pending {
  top: 6px;
  left: 6px;
  background: var(--ph-gold);
  color: var(--ph-blue-dark);
  border: none;
  font-weight: 800;
}

.film-badge-custom {
  top: 6px;
  left: 6px;
  background: var(--ph-gold);
  color: var(--ph-blue-dark);
  border: none;
  font-weight: 700;
}

/* Film strip section divider */
.film-strip-divider {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 150px;
  margin: 0; /* flex gap handles spacing evenly like all other cards */
}

.film-strip-divider-line {
  flex: 1;
  width: 1px;
  background: var(--ph-border);
}

.film-strip-divider-label {
  font-family: 'Lato', sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.film-info {
  padding: 6px 0 0;
}

.film-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}

.film-meta {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.strip-controls {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.strip-btn {
  width: 28px;
  height: 28px;
  border-radius: 99px;
  border: 1.5px solid var(--ph-blue);
  background: #fff;
  color: var(--ph-blue);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}

.strip-btn:hover {
  background: var(--ph-blue-light);
}

/* Community strip — remove fade, use gold arrow instead */
.community-strip-wrapper::after { content: none; }
.community-strip-wrapper { overflow: visible; }
.community-more-arrow {
  position: absolute;
  right: -48px;
  top: 0;
  bottom: 32px; /* clear strip-controls height */
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: var(--ph-gold);
  cursor: pointer;
  z-index: 3;
  text-shadow: 0 2px 16px rgba(212,175,55,0.45);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.community-more-arrow:hover { opacity: 1; }

/* ── Outside nav arrows — shared across film strip & partners ── */
.strip-outer-wrap {
  position: relative;
  overflow: visible;
}
.strip-outer-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: var(--ph-gold, #D4AF37);
  cursor: pointer;
  z-index: 4;
  text-shadow: 0 2px 16px rgba(212,175,55,0.4);
  transition: opacity 0.2s, transform 0.15s;
  user-select: none;
  background: none;
  border: none;
  padding: 0;
}
.strip-outer-arrow:hover { opacity: 0.75; transform: translateY(-50%) scale(1.15); }
.strip-outer-arrow.soa-prev { right: calc(100% + 4px); }
.strip-outer-arrow.soa-next { left: calc(100% + 4px); }
.strip-outer-arrow.soa-hidden { opacity: 0 !important; pointer-events: none; }

/* ============================================================
   SCROLLABLE TESTIMONIAL STRIP
   ============================================================ */

.testimonial-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.testimonial-strip::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 168px;
  scroll-snap-align: start;
  border: 1px solid var(--ph-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.testimonial-photo {
  height: 91px;
  background: #2A4A66;
  border-bottom: 1px solid var(--ph-border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-photo-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.testimonial-location-tag {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-size: 8px;
  font-weight: 700;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
}

.testimonial-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.testimonial-quote {
  font-size: 11px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-avatar {
  width: 20px;
  height: 20px;
  border-radius: 99px;
  background: var(--ph-blue-light);
  border: 1px solid var(--ph-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 700;
  color: var(--ph-blue);
}

.testimonial-name {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-loc {
  font-size: 8px;
  color: var(--text-muted);
}

/* ============================================================
   COMMUNITY QUOTES — Blue-palette cards on light section bg
   ============================================================ */

/* Cards: base blue treatment — white text, no border */
.testimonial-card {
  border: none !important;
  border-radius: 12px !important;
  overflow: hidden;
}

/* Cycle through four distinct blue shades */
.testimonial-card:nth-child(4n+1) { background: #1C3F5E; } /* deep navy      */
.testimonial-card:nth-child(4n+2) { background: #2E6490; } /* ocean blue     */
.testimonial-card:nth-child(4n+3) { background: #3D77A8; } /* medium blue    */
.testimonial-card:nth-child(4n+4) { background: #4E8EBF; } /* sky steel      */

/* Photo divider line matches the card tone */
.testimonial-photo {
  border-bottom-color: rgba(255,255,255,0.12) !important;
}

/* Photo placeholder bg: slightly darker than card */
.testimonial-card:nth-child(4n+1) .testimonial-photo { background: rgba(0,0,0,0.25); }
.testimonial-card:nth-child(4n+2) .testimonial-photo { background: rgba(0,0,0,0.22); }
.testimonial-card:nth-child(4n+3) .testimonial-photo { background: rgba(0,0,0,0.18); }
.testimonial-card:nth-child(4n+4) .testimonial-photo { background: rgba(0,0,0,0.15); }

/* Quote text */
.testimonial-quote { color: rgba(255,255,255,0.92) !important; }

/* Person row */
.testimonial-name { color: #fff !important; }
.testimonial-loc  { color: rgba(255,255,255,0.55) !important; }

/* Avatar: gold initials on translucent circle */
.testimonial-avatar {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.2) !important;
  color: var(--ph-gold) !important;
}

/* Location tag */
.testimonial-location-tag {
  background: rgba(0,0,0,0.35) !important;
  color: rgba(255,255,255,0.9) !important;
}

/* Scrollbar: blue tones on light bg */
.testimonial-strip {
  scrollbar-color: var(--ph-blue) var(--ph-blue-light);
}
.testimonial-strip::-webkit-scrollbar-track { background: var(--ph-blue-light); }
.testimonial-strip::-webkit-scrollbar-thumb { background: var(--ph-blue); }

/* ============================================================
   TESTIMONIAL — unified sliding strip
   ============================================================ */
.ph-testi-wrap {
  margin: 28px auto 0;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  max-width: 90%;
}
.ph-testi-header { margin-bottom: 16px; margin-top: 48px; }
.ph-testi-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.ph-testi-track-wrap { position: relative; }
.ph-testi-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.ph-testi-track-fade {
  position: absolute;
  right: 0; top: 0; bottom: 4px;
  width: 56px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.95));
  pointer-events: none;
  z-index: 2;
}
.ph-testi-card {
  flex: 0 0 210px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f6f0;
  border: 1px solid rgba(13,37,64,.1);
  display: flex;
  flex-direction: column;
  transition: transform .2s;
  position: relative;
}
.ph-testi-card:hover { transform: translateY(-2px); }
.ph-testi-card-photo { height: 110px; overflow: hidden; flex-shrink: 0; }
.ph-testi-card-body {
  padding: 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ph-testi-card-quote {
  font-family: 'Lato', sans-serif;
  font-size: 14.5px;
  font-style: italic;
  color: rgba(13,37,64,.75);
  line-height: 1.35;
  margin: 0 0 8px;
}
.ph-testi-card-footer { display: flex; align-items: center; gap: 6px; }
.ph-testi-card-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(212,175,55,.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lato', sans-serif;
  font-size: 7px; font-weight: 700;
  color: var(--ph-gold);
  flex-shrink: 0;
}
.ph-testi-card-name {
  font-family: 'Lato', sans-serif;
  font-size: 10.5px; font-weight: 700;
  color: rgba(13,37,64,.7);
}
.ph-testi-card-loc {
  font-family: 'Lato', sans-serif;
  font-size: 9px;
  color: rgba(13,37,64,.4);
}
.ph-testi-disclaimer {
  margin-top: 14px;
  font-size: 10px;
  color: rgba(255,255,255,.35);
  font-style: italic;
  text-align: center;
}
@keyframes ph-ticket-float {
  0%   { transform: translateY(0px) rotate(-8deg); }
  30%  { transform: translateY(-10px) rotate(-4deg); }
  60%  { transform: translateY(-6px) rotate(-11deg); }
  100% { transform: translateY(0px) rotate(-8deg); }
}
@keyframes ph-badge-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Ticket float — all screen sizes */
.merge-badge-ticket-img {
  animation: ph-ticket-float 3.8s ease-in-out 1 forwards;
  transform-origin: top center;
}
/* Text — fade in once */
.merge-badge-content {
  animation: ph-badge-fade-in 0.7s ease-out 0.4s both;
}

@media (max-width: 768px) {
  /* Header is now a sibling before .ph-testi-wrap — sits naturally on
     the dark section background with a real gap to the white card */
  .ph-testi-header {
    margin-top: 40px;
    margin-bottom: 16px;
  }
  .ph-testi-heading {
    color: #fff !important;
    font-size: 26px !important;
  }
  .ph-testi-disclaimer {
    color: rgba(13,37,64,0.55) !important;
    font-size: 9px !important;
    margin-top: 8px !important;
    padding: 0 8px 4px !important;
  }
}

@media (max-width: 600px) {
  .ph-testi-wrap { max-width: 100% !important; }
  .ph-testi-card { flex: 0 0 calc(67% - 6px) !important; }
  .ph-testi-card-quote { font-size: 17px !important; }
  .ph-testi-card-name { font-size: 14px !important; }
  .ph-testi-card-loc { font-size: 14px !important; }
  .ph-testi-card-avatar { width: 32px !important; height: 32px !important; font-size: 11px !important; background: var(--ph-blue-dark) !important; color: #fff !important; }
  /* Theater badge caption — mobile: bottom-left corner, 7px from edge */
  .merge-badge-wrapper { padding: 0 0 7px 7px !important; }
  .merge-badge-eyebrow { font-size: 10px !important; }
  .merge-badge-main { font-size: 11px !important; }
  .merge-badge-theater-line { font-size: 9px !important; }
}
/* ============================================================
   FEATURED QUOTE
   ============================================================ */

.featured-quote {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--ph-surface);
  border-left: 4px solid var(--ph-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 24px 24px 28px;
}

.featured-quote-avatar {
  width: 80px;
  height: 80px;
  border-radius: 99px;
  background: var(--ph-blue-light);
  border: 2px solid var(--ph-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ph-blue);
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
}

.featured-quote-text {
  font-size: 17px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 8px;
}

.featured-quote-attr {
  font-size: 12px;
  font-weight: 700;
  color: var(--ph-gold-dark);
}

/* ============================================================
   PARTNER CARDS
   ============================================================ */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.partner-card {
  background: var(--ph-surface);
  border: 1.5px solid var(--ph-border);
  border-left: 4px solid var(--ph-border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,63,94,0.10);
}

/* Gold — Church Partners */
.partner-card--gold {
  background: #fef8ec;
  border-color: #e8d9b0;
  border-left-color: var(--ph-gold);
}
.partner-card--gold h4 { color: #7a5c10; }
.partner-card--gold .partner-link { color: #9a7318; }

/* Navy — Corporate Sponsors */
.partner-card--navy {
  background: #edf3fa;
  border-color: #c0d3e8;
  border-left-color: var(--ph-blue-dark);
}
.partner-card--navy h4 { color: var(--ph-blue-dark); }

/* Sage — Hope Cause Partners */
.partner-card--sage {
  background: #eaf4ee;
  border-color: #b8d9c4;
  border-left-color: #3d8a5e;
}
.partner-card--sage h4 { color: #2d6644; }
.partner-card--sage .partner-link { color: #3d8a5e; }

/* Warm — Ambassadors */
.partner-card--warm {
  background: #f8f0eb;
  border-color: #dfc6b6;
  border-left-color: #b5623a;
}
.partner-card--warm h4 { color: #7a3e22; }
.partner-card--warm .partner-link { color: #b5623a; }

.partner-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--ph-blue-dark);
  margin-bottom: 6px;
}

.partner-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.partner-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--ph-blue);
  transition: opacity .2s;
}

.partner-link:hover { opacity: 0.7; }

/* ============================================================
   FEATURED EVENT — Cinematic hero block
   ============================================================ */
/* Featured event — scroll-triggered animations */
@keyframes fe-fade-up {
  from { opacity: 0; transform: translateY(80px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hidden until section scrolls into view */
.fe-eyebrow, .fe-title, .fe-meta-row, .fe-desc-wrapper,
.fe-cast, .fe-director, .fe-actions, .fe-note,
.fe-poster-wrap { opacity: 0; transform: translateY(32px); }

/* When .fe-visible is added by IntersectionObserver, play staggered animations */
.fe-visible .fe-eyebrow     { animation: fe-fade-up 1s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.fe-visible .fe-title        { animation: fe-fade-up 1.1s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
.fe-visible .fe-meta-row     { animation: fe-fade-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.45s both; }
.fe-visible .fe-desc-wrapper { animation: fe-fade-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.6s both; }
.fe-visible .fe-cast,
.fe-visible .fe-director     { animation: fe-fade-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.7s both; }
.fe-visible .fe-actions      { animation: fe-fade-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.8s both; }
.fe-visible .fe-note         { animation: fe-fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 0.9s both; }
.fe-visible .fe-poster-wrap  { animation: fe-fade-up 2.4s cubic-bezier(0.22,1,0.36,1) 0s both; }

.featured-event-section {
  position: relative;
  overflow: hidden;
  background: #06080d;
  min-height: 560px;
  display: flex;
  align-items: center;
}

/* Blurred backdrop */
.fe-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fe-backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: blur(28px) saturate(0.6) brightness(0.35);
  transform: scale(1.08); /* hide blur edges */
}
.fe-backdrop-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(6,8,13,0.97) 35%, rgba(6,8,13,0.55) 70%, rgba(6,8,13,0.15) 100%),
    linear-gradient(to bottom, rgba(6,8,13,0.4) 0%, transparent 30%, transparent 70%, rgba(6,8,13,0.7) 100%);
}

/* Inner layout */
.fe-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 56px;
  padding-top: 72px;
  padding-bottom: 72px;
}

/* LEFT: content */
.fe-content {
  flex: 1;
  min-width: 0;
  max-width: 600px;
}

.fe-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.fe-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ph-gold);
}
.fe-badge-ea {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(198,160,60,0.18);
  border: 1px solid rgba(198,160,60,0.4);
  border-radius: 99px;
  padding: 3px 10px;
}

.fe-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.fe-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.fe-rating {
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: .04em;
}
.fe-dot { opacity: 0.35; }
.fe-date-tag { color: var(--ph-gold); font-weight: 700; }

.fe-desc {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin: 0 0 20px;
  max-width: 520px;
}

.fe-cast,
.fe-director {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.fe-cast-label {
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  margin-right: 6px;
}

.fe-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.fe-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ph-gold);
  color: var(--ph-blue-dark);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: 99px;
  border: none;
  text-decoration: none;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.fe-btn-primary:hover {
  background: #e0b020;
  transform: translateY(-1px);
}
.fe-btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ph-gold);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 24px;
  border-radius: 99px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.fe-btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  background: rgba(255,255,255,0.14);
}
.fe-note {
  margin-top: 16px;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.fe-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  padding: 6px 12px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  letter-spacing: .02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* RIGHT: poster */
.fe-poster-wrap {
  flex-shrink: 0;
  position: relative;
  width: clamp(220px, 22vw, 310px);
}
.fe-poster {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow:
    0 0 0 1px rgba(198,160,60,0.3),
    0 24px 80px rgba(0,0,0,0.8),
    0 8px 24px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}

.fe-poster-glow {
  position: absolute;
  inset: 20% 10% -10%;
  background: radial-gradient(ellipse, rgba(198,160,60,0.25) 0%, transparent 70%);
  z-index: 0;
  filter: blur(24px);
}

/* Gold circle behind poster — desktop */
.fe-poster-wrap::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--ph-gold);
  z-index: 0;
  transform: translate(80px, 80px) scale(0.4);
  opacity: 0;
}
.fe-visible .fe-poster-wrap::after {
  animation: fe-circle-desktop 4.8s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
@keyframes fe-circle-desktop {
  from { transform: translate(80px, 80px) scale(0.4); opacity: 0; }
  to { transform: none; opacity: 1; }
}

/* Theater marquee banner above poster — "Featured Event" */
.fe-poster-wrap::before {
  content: '★  FEATURED EVENT  ★';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 9px 28px;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 40%, #2a2a2a 50%, #1a1a1a 60%, #111 100%);
  background-size: 200% 100%;
  color: var(--ph-gold);
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 10;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.25);
  opacity: 0;
}
.fe-visible .fe-poster-wrap::before {
  animation: fe-marquee-in 1.2s cubic-bezier(0.22,1,0.36,1) 0.6s both, fe-shimmer 6s ease-in-out 2s infinite;
}
@keyframes fe-marquee-in {
  from { opacity: 0; transform: translateX(-50%) translateY(-12px) scale(0.9); }
  to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
@keyframes fe-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Responsive */
@media (max-width: 900px) {
  .fe-inner { gap: 36px; }
  .fe-poster-wrap { width: clamp(160px, 25vw, 220px); }
}
/* fe-title-row: desktop — title and inline rating stacked normally */
.fe-title-row { display: block; }
.fe-rating-inline { display: none; }

@media (max-width: 680px) {
  /* Hide blurred backdrop — use plain dark bg on mobile */
  .fe-backdrop { display: none; }
  .featured-event-section { background: #0a1628; }

  /* Force all animated elements visible — observer may not fire without backdrop */
  .fe-eyebrow, .fe-title, .fe-meta-row, .fe-desc-wrapper,
  .fe-cast, .fe-director, .fe-actions, .fe-note {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }

  /* Reorder: title → date → eyebrow → badges → desc → actions */
  .fe-title-row { order: 1 !important; }
  .fe-meta-row { order: 2 !important; margin-top: 14px !important; }
  .fe-eyebrow { order: 3 !important; margin-top: 6px !important; margin-bottom: 4px !important; }
  .fe-note { order: 4 !important; margin-top: 1px !important; }
  .fe-desc-wrapper { order: 5 !important; margin-bottom: 0 !important; }
  .fe-desc-more { display: inline !important; margin-left: 6px; background: none; border: none; padding: 0; font-family: 'Lato', sans-serif; font-size: 15px; font-weight: 700; color: var(--ph-gold); cursor: pointer; }
  .fe-actions { order: 6 !important; margin-bottom: 10px !important; }

  .fe-inner { padding: 40px 20px 40px; gap: 0; flex-direction: column; align-items: stretch; }
  .fe-title { font-size: clamp(28px, 9vw, 44px); }

  /* Show clean poster above content, pillarboxed */
  .fe-poster-wrap { display: block !important; width: 100%; margin-bottom: 24px; opacity: 1 !important; transform: none !important; animation: none !important; }
  .fe-poster { width: 100%; height: 260px; object-fit: contain; border-radius: 10px; background: rgba(255,255,255,0.04); display: block; }
  .fe-poster-glow { display: none; }

  /* Rating inline with title text on mobile */
  .fe-title-row { display: block; }
  .fe-title { display: inline !important; }
  .fe-rating-inline { display: inline-block !important; vertical-align: middle; margin-left: 8px; font-size: 7px !important; padding: 1px 3px !important; position: relative; top: -2px; }
  .fe-rating-meta { display: none; }
  .fe-dot-meta { display: none; }

  /* Studio and date each on their own line */
  .fe-meta-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .fe-meta-row .fe-dot:not(.fe-dot-meta) { display: none; }
}

/* ── Featured Event: Light variant (location pages) ─────── */
/* Complete reset + rebuild — no cinematic dark chrome whatsoever */
.featured-event-section.fe-light {
  background: #fff;
  min-height: unset;
  overflow: visible;  /* no blurred backdrop; don't clip badge */
}

/* Hide everything that only makes sense in dark/cinematic context */
.fe-light .fe-backdrop,
.fe-light .fe-poster-glow { display: none; }

/* Inner padding — balanced for a content-card feel */
.fe-light .fe-inner {
  padding-top: 72px;
  padding-bottom: 72px;
}

/* Eyebrow — label + badge both in navy */
.fe-light .fe-label {
  color: var(--ph-blue-dark);
  font-weight: 800;
}
.fe-light .fe-badge-ea {
  background: rgba(28,63,94,0.08);
  color: var(--ph-blue-dark);
  border: 1px solid rgba(28,63,94,0.2);
}

/* Title — dark navy, no cinematic text shadow */
.fe-light .fe-title {
  color: #0d2540;
  text-shadow: none;
}

/* Meta row */
.fe-light .fe-meta-row {
  color: rgba(13,37,64,0.55);
}
.fe-light .fe-rating {
  color: #0d2540;
  border-color: rgba(13,37,64,0.28);
}
.fe-light .fe-dot  { color: rgba(13,37,64,0.28); opacity: 1; }
.fe-light .fe-date-tag { color: #b8860b; } /* gold that reads on light bg */
.fe-light .fe-studio { color: rgba(13,37,64,0.6); }

/* Body copy */
.fe-light .fe-desc { color: rgba(13,37,64,0.72); }

/* Cast / director rows */
.fe-light .fe-cast,
.fe-light .fe-director {
  color: rgba(13,37,64,0.58);
  border-top-color: rgba(13,37,64,0.1);
}
.fe-light .fe-cast-label { color: rgba(13,37,64,0.38); }

/* Ghost button — navy outline instead of white */
.fe-light .fe-btn-ghost {
  color: #0d2540;
  border-color: rgba(13,37,64,0.22);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.fe-light .fe-btn-ghost:hover {
  background: rgba(13,37,64,0.05);
  border-color: rgba(13,37,64,0.38);
  color: #0d2540;
}

/* Fine print note */
.fe-light .fe-note { color: rgba(13,37,64,0.4); }

/* Poster — clean light-surface shadow, no ring, no glow */
.fe-light .fe-poster-wrap { box-shadow: none; }
.fe-light .fe-poster {
  box-shadow:
    0 12px 40px rgba(13,37,64,0.16),
    0 3px 10px  rgba(13,37,64,0.10);
}

/* ============================================================
   LEADERS SECTION — dark navy with top + bottom wave dividers
   ============================================================ */

/* ── Gradient section divider line ─────────────────────────── */
.ph-gradient-divide {
  position: relative;
  overflow: clip;
}
.ph-gradient-divide::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300%;
  height: 8px;
  background: linear-gradient(to right, #3D77A8, #c9a84c, #3D77A8, #c9a84c, #3D77A8);
  animation: gradient-slide 12s linear infinite;
  opacity: 0.75;
  will-change: transform;
  z-index: 2;
}
@keyframes gradient-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-66.666%); }
}

.leaders-section {
  background: linear-gradient(165deg, #1a3a56 0%, #0f2236 100%);
  position: relative;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}
.leaders-section .layout-wide {
  padding-top: 72px;
  padding-bottom: 96px;
}
/* Heading fade-in when section scrolls into view */
@keyframes lv-heading-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.leaders-section .section-label,
.leaders-section h2 {
  opacity: 0;
}
.leaders-section.lv-section-visible .section-label {
  animation: lv-heading-in 1s cubic-bezier(0.25,0.8,0.25,1) 0.1s forwards;
}
.leaders-section.lv-section-visible h2 {
  animation: lv-heading-in 1s cubic-bezier(0.25,0.8,0.25,1) 0.25s forwards;
}
.leaders-wave-top,
.leaders-wave-bottom {
  /* Break out of .section horizontal padding */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  display: block;
  line-height: 0;
  overflow: hidden;
}
.leaders-wave-top  { margin-bottom: -1px; }
.leaders-wave-bottom { margin-top: -1px; }
.leaders-wave-top svg,
.leaders-wave-bottom svg {
  display: block;
  width: 100%;
  height: 48px;
}
/* Lighter strip buttons for dark bg */
.strip-btn-light {
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.25) !important;
}
.strip-btn-light:hover {
  background: rgba(255,255,255,0.22) !important;
}
@media (max-width: 600px) {
  .leaders-wave-top svg,
  .leaders-wave-bottom svg { height: 44px; }
}

/* ============================================================
   LEADER VOICES STRIP
   ============================================================ */
.lv-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 0;
  scrollbar-width: none;
}
.lv-strip::-webkit-scrollbar { display: none; }

/* ── Card scroll-in animation ── */
@keyframes lv-card-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lv-card {
  flex: 0 0 min(420px, calc(85% - 8px));
  scroll-snap-align: start;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--ph-surface);
  border-left: none;
  border-radius: var(--radius-md);
  padding: 16px 18px 16px 20px;
  opacity: 0;
  transition: box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.lv-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: linear-gradient(to bottom, #3D77A8, #F2B830);
  border-radius: 4px 0 0 4px;
}
.lv-card.lv-visible {
  animation: lv-card-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.lv-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.lv-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid var(--ph-border);
  overflow: hidden;
}
.lv-avatar-initials {
  background: var(--ph-blue-light);
  color: var(--ph-blue);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lv-body { flex: 1; min-width: 0; }

.lv-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 0 0 8px;
}
.lv-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ph-gold-dark);
  margin-bottom: 2px;
}
.lv-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   SEARCH BAR
   ============================================================ */

.search-form {
  display: flex;
  gap: 8px;
  max-width: 500px;
}

.search-input {
  flex: 1;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  padding: 11px 18px;
  border: 2px solid var(--ph-blue);
  border-radius: 99px;
  outline: none;
  transition: all .2s;
  background: #fff;
}

.search-input:focus {
  border-color: var(--ph-blue-dark);
  box-shadow: 0 0 0 3px rgba(61,119,168,0.15);
}

.search-input-white {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.search-input-white::placeholder { color: rgba(255,255,255,0.55); }
.search-input-white:focus { border-color: #fff; background: rgba(255,255,255,0.15); box-shadow: none; }

/* ============================================================
   STAT ROW
   ============================================================ */

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ph-gold);
}

.stat-item .stat-dot {
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: var(--ph-gold);
  opacity: 0.5;
}

/* ============================================================
   FILTER PILLS
   ============================================================ */

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  justify-content: center;
}

.filter-pill {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 99px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all .2s;
}

.filter-pill:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.filter-pill.active {
  background: var(--ph-gold);
  color: var(--ph-blue-dark);
  border-color: var(--ph-gold);
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */

.feature-card {
  border: 1.5px solid var(--ph-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}

.feature-card-split {
  display: flex;
  gap: 0;
}

.feature-card-poster {
  width: 140px;
  flex-shrink: 0;
  background: var(--ph-blue-dark);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  min-height: 200px;
}

.feature-card-poster-sm {
  width: 90px;
  min-height: 140px;
}

.feature-card-poster-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.feature-card-body {
  flex: 1;
  padding: 22px;
}

.feature-card-body .badge,
.faded-card .badge {
  font-size: 11px;
  padding: 4px 10px;
  margin-bottom: 0;
}

.feature-card-body h3 {
  margin-bottom: 6px;
  color: var(--ph-blue-dark);
}

.feature-card-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.feature-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ph-blue);
  margin-bottom: 12px;
  display: block;
  transition: opacity .2s;
}
.feature-card-link:hover { opacity: 0.7; }

/* ============================================================
   LOCATION CHIPS
   ============================================================ */

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

.location-chip {
  background: #fff;
  border: 1.5px solid var(--ph-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .2s;
}

.location-chip:hover {
  border-color: var(--ph-blue);
}

.location-chip-city {
  font-size: 13px;
  font-weight: 700;
  color: var(--ph-blue-dark);
}

.location-chip-theater {
  font-size: 11px;
  color: var(--text-muted);
  margin: 2px 0 8px;
}

.location-chip-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--ph-blue);
  transition: opacity .2s;
}
.location-chip-link:hover { opacity: 0.7; }

/* ============================================================
   FAITH NIGHTS SCHEDULE
   ============================================================ */

.faith-nights-group {
  border: 1.5px solid var(--ph-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faith-nights-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #f5e6e9;
  border-bottom: 1px solid rgba(139,45,66,0.2);
}

.faith-nights-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.faith-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #8B2D42;
  flex-shrink: 0;
}

.faith-nights-title {
  font-size: 13px;
  font-weight: 700;
  color: #6B1F30;
}

.faith-expand-btn {
  font-size: 12px;
  font-weight: 600;
  color: #8B2D42;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all .2s;
}

.faith-expand-btn:hover {
  background: rgba(139,45,66,0.1);
}

.faith-nights-rows {
  background: #fff;
}

.faith-night-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid #f0f4f8;
  transition: background .2s;
}

.faith-night-row:last-child { border-bottom: none; }
.faith-night-row:hover { background: var(--ph-surface); }

.faith-night-date {
  flex-shrink: 0;
  text-align: center;
  min-width: 44px;
}

.faith-night-month {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.faith-night-day {
  font-size: 22px;
  font-weight: 900;
  color: var(--ph-blue-dark);
  line-height: 1;
}

.faith-night-content {
  flex: 1;
}

.faith-night-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.faith-night-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.faith-night-action {
  font-size: 12px;
  font-weight: 700;
  color: var(--ph-blue);
  white-space: nowrap;
}

/* ============================================================
   FESTIVAL CARD
   ============================================================ */

.festival-card {
  border: 2px solid var(--ph-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}

.festival-card-header {
  background: var(--ph-gold-light);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1.5px solid var(--ph-gold);
}

.festival-card-icon {
  width: 40px;
  height: 40px;
  background: var(--ph-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.festival-card-header-text h3 {
  font-size: 1.2rem;
  color: var(--ph-blue-dark);
}

.festival-card-header-text .badge-festival {
  margin-bottom: 4px;
}

.festival-card-body {
  padding: 22px 24px;
}

.festival-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.festival-desc {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.6;
}

/* ============================================================
   THREE-COL FEATURE BLOCKS
   ============================================================ */

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

.feature-block {
  text-align: center;
  padding: 8px;
}

.feature-block-icon {
  width: 48px;
  height: 48px;
  background: var(--ph-blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.feature-block h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--ph-blue-dark);
  margin-bottom: 8px;
}

.feature-block p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--ph-blue-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform .3s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-text {}

.sticky-bar-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.sticky-bar-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */

.hero {
  background: var(--ph-blue);
  color: #fff;
  padding: 28px 48px;
}

.hero-dark {
  background: var(--ph-blue-dark);
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero h1 {
  color: #fff;
  margin: 8px 0 16px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 24px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.hero-centered h1 { margin-bottom: 12px; }
.hero-centered .hero-sub { margin: 0 auto 24px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color .2s;
}

.breadcrumb a:hover { color: #fff; }

.breadcrumb-sep { opacity: 0.4; }

/* ============================================================
   FOOTER
   ============================================================ */

/* ── Shape Dividers ─────────────────────────────────────────── */
.shape-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  z-index: 2;
}
.shape-divider svg {
  display: block;
  width: 100%;
  height: 48px;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--ph-blue-dark);
  color: #fff;
  padding: 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(to right, #3D77A8, #F2B830);
  z-index: 1;
}

/* Upper: bold statement + donate */
.footer-upper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.footer-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  max-width: 560px;
}
.footer-donate-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  width: 220px;
}
.footer-donate-btn {
  display: block;
  width: 100%;
  background: var(--ph-gold);
  color: var(--ph-blue-dark);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 12px 36px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  transition: opacity .15s;
}
.footer-donate-btn:hover { opacity: .88; }
.footer-501-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.6;
}

/* Divider */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  max-width: 1140px;
  margin: 0 auto;
}

/* Middle: sign-up CTA */
.footer-middle {
  padding: 44px 48px;
  display: flex;
  justify-content: center;
}
.footer-signup-btn {
  display: inline-block;
  border: 2px solid var(--ph-gold);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 12px 36px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  transition: background .18s, color .18s;
}
.footer-signup-btn:hover {
  background: var(--ph-gold);
  color: var(--ph-blue-dark);
}

/* Lower: logo + contact + copyright */
.footer-lower {
  padding: 0 48px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 6px;
}
.footer-email-line {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer-email-line strong { color: #fff; }
.footer-contact-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  padding: 10px 24px;
  margin: 4px 0 2px;
}
.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .15s;
}
.footer-contact-item:hover { color: var(--ph-gold); }
.footer-contact-item svg { opacity: 0.7; flex-shrink: 0; }
.footer-contact-divider {
  color: rgba(255,255,255,0.3);
  font-size: 18px;
  line-height: 1;
}
.footer-copy-line {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-privacy-link {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-decoration: underline;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 6px;
  transition: color .15s;
}
.footer-privacy-link:hover { color: rgba(255,255,255,0.75); }

@media (max-width: 768px) {
  .footer-copy-line { font-size: 10px; }
  .footer-privacy-link { font-size: 9px; }
  .footer-contact-block { gap: 6px; padding: 8px 16px; }
  .footer-contact-item { font-size: 12px; }
  .footer-contact-item svg { width: 12px; height: 12px; }
}

/* ============================================================
   GOLD SECTION (Festival hero)
   ============================================================ */

.hero-festival {
  background: var(--ph-blue-dark);
  position: relative;
  overflow: hidden;
}

.hero-festival::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,201,64,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.festival-eyebrow {
  color: var(--ph-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

/* ============================================================
   EARLY ACCESS / PREMIERE FADED CARD
   ============================================================ */

.faded-card {
  border: 1px solid #c8d9e9;
  border-left: 4px solid var(--ph-gold);
  border-radius: var(--radius-lg);
  padding: 28px 28px 28px 26px;
  background: linear-gradient(145deg, #ffffff 0%, #edf3fa 100%);
  color: var(--text-muted);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.faded-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(28, 63, 94, 0.10);
}

.faded-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--ph-blue-dark);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.faded-card-hint {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 4px 0 10px;
  opacity: 0.85;
}

/* ============================================================
   EVENT LIST ROWS
   ============================================================ */

.event-list-group {
  border: 1.5px solid var(--ph-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}

.event-list-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--ph-gold-light);
  border-bottom: 1px solid rgba(184,146,10,0.2);
}

.event-list-group-header.blue {
  background: var(--ph-blue-light);
  border-bottom-color: rgba(61,119,168,0.2);
}

.event-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid #f0f4f8;
  background: #fff;
  transition: background .2s;
}

.event-row:last-child { border-bottom: none; }
.event-row:hover { background: var(--ph-surface); }

.event-row-date {
  font-size: 13px;
  font-weight: 700;
  color: var(--ph-blue-dark);
  min-width: 60px;
}

.event-row-content { flex: 1; }

.event-row-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.event-row-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.event-row-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   VENUE SECTION
   ============================================================ */

.venue-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.venue-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
  background: var(--ph-blue-light);
  color: var(--ph-blue-dark);
  border: 1px solid var(--ph-border);
}

.map-placeholder {
  height: 220px;
  background: var(--ph-surface);
  border: 1.5px dashed var(--ph-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
}

/* ============================================================
   CHURCH PARTNER PILLS
   ============================================================ */

/* Church + Sponsor two-col section responsive */
@media (max-width: 700px) {
  .loc-partners-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

.church-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.church-pill {
  background: var(--ph-blue-light);
  color: var(--ph-blue-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 99px;
  border: 1px solid var(--ph-border);
}

/* ============================================================
   CAUSES BOX (location page)
   ============================================================ */

.causes-box {
  background: var(--ph-surface);
  border: 1.5px solid var(--ph-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.causes-list-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin: 16px 0;
}

.cause-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-primary);
}

.cause-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--ph-blue);
  flex-shrink: 0;
}

/* ============================================================
   3-COL PHOTO GRID
   ============================================================ */

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

.photo-grid-3 .img-zone {
  height: 160px;
}

/* ============================================================
   SCHEDULE DAY CARDS
   ============================================================ */

.day-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.day-card {
  border: 1.5px solid var(--ph-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.day-card-header {
  background: var(--ph-blue-light);
  padding: 12px 16px;
  border-bottom: 1px solid var(--ph-border);
}

.day-card-day {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ph-blue);
}

.day-card-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--ph-blue-dark);
}

.day-card-body {
  padding: 16px;
}

.day-card-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   RESPONSIVE — COMPACT DESKTOP / TABLET (≤960px)
   Nav: drop store label + Get Involved button to protect logo.
   No min-width guard so DevTools tablet presets (768px) fire too.
   Mobile CSS re-shows Get Involved inside the hamburger dropdown.
   ============================================================ */

@media (max-width: 1024px) {
  .nav-store-text { display: none !important; }
  .nav-btn-get-involved { display: none !important; }
  .nav-link { font-size: 13px; padding: 6px 8px; }
  .nav-links { gap: 2px; }
}

/* ── iPad portrait (769–1024px): collapse location label to pin icon only ── */
@media (max-width: 1024px) and (min-width: 769px) {
  #nav-loc-label { display: none !important; }
  .nav-loc-chevron { display: none !important; }
  .nav-loc-widget { padding: 6px 8px; }
  .btn-nav-events span { display: none !important; }
  .btn-nav-events { padding: 7px 12px; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤900px)
   ============================================================ */

@media (max-width: 900px) {
  .three-col            { grid-template-columns: 1fr 1fr; gap: 16px; }
  .partners-grid        { grid-template-columns: repeat(2, 1fr); }
  .day-cards            { grid-template-columns: 1fr 1fr; }
  .location-grid        { grid-template-columns: repeat(2, 1fr); }
  .causes-list-2col     { grid-template-columns: 1fr; }

  /* Event type chips in header — smaller */
  .event-type-chip { font-size: 10px; padding: 3px 9px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */

@media (max-width: 768px) {

  /* ── Global spacing ─────────────────────────────────────── */
  .section        { padding: 40px 20px; }
  .hero           { padding: 40px 20px; }
  .footer         { padding: 40px 20px 28px; }
  .layout-wide,
  .layout-standard,
  .layout-narrow  { padding: 0 20px; }

  /* ── Typography ─────────────────────────────────────────── */
  html { font-size: 118%; }
  h1 { font-size: 30px; }
  h2 { font-size: clamp(1.05rem, 4.2vw, 1.5rem); margin-bottom: 8px; }
  .hero-scale-h2 { font-size: 20px !important; font-family: 'Playfair Display', serif !important; font-weight: 700 !important; display: block !important; width: 100% !important; max-width: 75vw !important; }
  #films-section .section-header { padding-right: 0 !important; }
  .section-intro { font-size: 18px; }
  body { font-size: 18px; }

  /* ── Navigation ─────────────────────────────────────────── */
  .nav {
    border-bottom: none;
    position: relative;
  }
  .nav::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, #3D77A8, #F2B830);
    z-index: 2;
  }
  .nav-inner {
    padding: 10px 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: auto;
    gap: 0 12px;
    position: relative;
  }
  .nav-logo { order: 0; flex: 0 0 100%; display: flex; justify-content: center; padding: 4px 0 6px; }
  .nav-logo-img { height: 58px; }
  .nav-right { order: 1; flex: 0 0 100%; display: flex; justify-content: center; padding-bottom: 20px; }
  .nav-store-icon { display: none !important; }
  .nav-hamburger { display: flex; order: 2; position: absolute; top: 29px; right: 18px; z-index: 10; }
  .nav-link-merch-mobile { display: flex !important; }
  .nav { z-index: 9000; overflow: visible; }
  .nav-right { position: relative; }
  .nav-loc-wrap {
    width: auto;
    position: static;
  }
  .nav-loc-widget {
    justify-content: center;
  }
  #ph-loc-drop {
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100vw - 36px);
    max-width: 340px;
    z-index: 9999;
    animation: none !important;
  }
  .btn-nav-cta   { display: none; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ph-blue-dark);
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: none;
    padding: 8px 0 20px;
    z-index: 200;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  }
  .nav-links.open { display: flex; }
  .nav-link {
    padding: 14px 28px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    text-align: left;
    color: rgba(255,255,255,0.85);
    letter-spacing: .01em;
  }
  .nav-link:last-of-type { border-bottom: none; }
  .nav-link-merch-mobile { border-bottom: 1px solid rgba(255,255,255,0.07) !important; }
  .nav-link:hover { background: rgba(255,255,255,0.05); color: #fff; }
  /* Get Involved button in mobile menu — override the ≤960px hide rule */
  .nav-links .nav-btn-get-involved {
    display: inline-flex !important;
    align-self: flex-start;
    margin: 16px 0 8px 28px;
    width: auto;
    text-align: center;
    font-size: 15px;
    padding-top: 13px;
    padding-bottom: 13px;
  }
  /* Gradient bottom line */
  .nav-links::after {
    display: block;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #3D77A8, #F2B830);
  }

  /* ── Hero layouts ───────────────────────────────────────── */
  .hero-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-split .hero-image { order: -1; }
  .hero-btns { flex-wrap: wrap; gap: 10px; }
  .hero-btns .btn { flex: 1 1 auto; text-align: center; justify-content: center; min-width: 140px; font-size: 16px; }

  /* ── Stat band ──────────────────────────────────────────── */
  .stat-band { padding: 12px 16px; }
  .stat-band-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-block {
    padding: 8px 6px;
    border-right: 1px solid rgba(28,63,94,0.18);
    border-bottom: none;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .stat-block:last-child { border-right: none; }
  .stat-block-num   { font-size: 20px; }
  .stat-block-label { font-size: 8px; letter-spacing: .04em; }

  /* ── Hero badges (combine and inline) ───────────────────── */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
  }
  .hero-badge:nth-child(2) { display: inline-flex; }

  /* ── Hero event types (inline) ───────────────────────────── */
  .hero-event-types {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }
  .hero-et-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 13px;
  }
  .hero-et-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  /* ── Grid layouts ───────────────────────────────────────── */
  .three-col    { grid-template-columns: 1fr; gap: 14px; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .day-cards    { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .photo-grid-3 { grid-template-columns: 1fr 1fr; }

  /* ── Feature card ───────────────────────────────────────── */
  .feature-card-split  { flex-direction: column; }
  .feature-card-poster {
    width: 100%;
    min-height: 200px;
    max-height: 240px;
  }
  .feature-card-body   { padding: 20px; }

  /* ── Faded cards (secondary early access) ───────────────── */
  .faded-card { flex-direction: column-reverse !important; gap: 14px !important; }
  .faded-card > div:last-child {
    width: 100% !important;
    height: 160px !important;
    align-self: stretch !important;
    border-radius: 8px;
  }

  /* ── Calendar / full schedule ───────────────────────────── */
  .cal-row {
    display: grid !important;
    grid-template-columns: 52px 1fr auto !important;
    grid-template-rows: auto auto !important;
    gap: 0 10px !important;
    padding: 12px 14px !important;
    align-items: start !important;
  }
  .cal-left-bar { display: none !important; }
  .cal-date-col { grid-column: 1; grid-row: 1 / 3; align-self: center; }
  .cal-date-pill { font-size: 13px; padding: 5px 7px; min-width: 44px; }
  .cal-body     { grid-column: 2; grid-row: 1; }
  .cal-title    { font-size: 15px; }
  .cal-meta     { font-size: 13px; }
  .cal-chip-col { display: none !important; }  /* type chip redundant on mobile */
  .cal-action-col { grid-column: 3; grid-row: 1 / 3; align-self: center; }
  .cal-alert-btn  { font-size: 13px; padding: 6px 10px; white-space: nowrap; }
  .cal-month-header { font-size: 13px; padding: 8px 14px; }
  #all-events-calendar { padding: 28px 16px 40px !important; }

  /* ── Faith night rows ───────────────────────────────────── */
  .faith-night-row   { padding: 10px 14px; gap: 10px; }
  .faith-night-day   { font-size: 22px; }
  .faith-night-title { font-size: 16px; }
  .faith-night-sub   { font-size: 13px; }
  .faith-night-action { font-size: 14px; }

  /* ── Event row actions (location page) ─────────────────── */
  .event-row-actions { flex-wrap: wrap; gap: 6px; }

  /* ── Venue split / photo grids ─────────────────────────── */
  .venue-split  { grid-template-columns: 1fr; }
  .photo-grid-3 { grid-template-columns: 1fr 1fr; }

  /* ── Search bar ─────────────────────────────────────────── */
  .search-form       { flex-direction: column; }
  .search-form .btn  { border-radius: 99px; width: 100%; justify-content: center; }

  /* ── Sticky bar ─────────────────────────────────────────── */
  .sticky-bar { padding: 10px 16px; }

  /* ── Perk pills ─────────────────────────────────────────── */
  .perk-pill { font-size: 13px; padding: 4px 10px; }

  /* ── Festival card ──────────────────────────────────────── */
  .festival-card { margin: 0; }
  .festival-card-body { padding: 20px; }

  /* ── Footer ─────────────────────────────────────────────── */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-bottom-links { justify-content: center; }

  /* ── Breadcrumbs ────────────────────────────────────────── */
  .breadcrumb { font-size: 15px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */

@media (max-width: 480px) {

  /* ── Typography ─────────────────────────────────────────── */
  h1 { font-size: 30px; }
  h2 { font-size: 1.2rem; }

  /* ── Buttons ────────────────────────────────────────────── */
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 60%; text-align: center; justify-content: center; }

  /* ── Grids → single column ──────────────────────────────── */
  .three-col     { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid-3  { grid-template-columns: 1fr; }
  .day-cards     { grid-template-columns: 1fr; }

  /* ── Stat band → 2×2 stays but numbers bigger ───────────── */
  .stat-row { gap: 8px 16px; }

  /* ── Footer → full single column ───────────────────────── */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  /* ── Filter bar chips ───────────────────────────────────── */
  .evt-filter-btn { font-size: 13px; padding: 7px 13px; }

  /* ── Nav CTA removed, hamburger prominent ───────────────── */
  .nav-inner { gap: 0 10px; }
  .nav-logo-img { height: 58px; }

  /* ── Calendar rows — tighter ────────────────────────────── */
  .cal-row { padding: 10px 12px !important; }
  .cal-date-col { min-width: 40px; }

  /* ── Feature card poster shorter on small screens ────────── */
  .feature-card-poster { max-height: 180px; }

  /* ── Perk pills ─────────────────────────────────────────── */
  .perk-pill { font-size: 11px; padding: 4px 9px; gap: 5px; }

  /* ── Section labels ─────────────────────────────────────── */
  .section-label { font-size: 14px; }
}

/* ============================================================
   UTILITY
   ============================================================ */

.text-muted { color: var(--text-muted); }
.text-blue  { color: var(--ph-blue); }
.text-blue-dark { color: var(--ph-blue-dark); }
.text-gold  { color: var(--ph-gold-dark); }
.text-white { color: #fff; }
.text-sm    { font-size: 13px; }
.text-xs    { font-size: 11px; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

.max-w-prose { max-width: 580px; }

.hidden { display: none; }

/* ============================================================
   HOPE CAUSES SECTION — shared styles used on all pages
   ============================================================ */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.partner-logo-cell {
  opacity: 0.6;
  transition: opacity 0.2s ease, background 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  border-radius: 8px;
}
.partner-logo-cell:hover {
  opacity: 1;
  background: rgba(255,255,255,0.06);
  transform: scale(1.04);
}

/* Cause cards */
.cause-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s ease, border-color 0.25s ease,
              transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease, padding 0.25s ease;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  min-height: 44px;
}
.cause-card:hover {
  background: rgba(212,175,55,0.13);
  border-color: rgba(212,175,55,0.5);
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,175,55,0.2);
  padding: 6px 10px;
}
.cause-card .cause-icon {
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.cause-card:hover .cause-icon,
.cause-card.lit .cause-icon {
  transform: scale(1.25);
}
.cause-card .cause-icon svg *,
.cause-card.lit .cause-icon svg * {
  stroke: #D4AF37;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cause-card.in {
  animation: cardIn 0.35s ease forwards;
}
.cause-card.lit {
  background: rgba(212,175,55,0.16) !important;
  border-color: rgba(212,175,55,0.55) !important;
  box-shadow: 0 2px 14px rgba(212,175,55,0.12), 0 2px 8px rgba(0,0,0,0.2);
}

/* Gold rule under heading */
.cause-gold-rule {
  height: 3px;
  background: var(--ph-gold);
  border-radius: 2px;
  margin-bottom: 16px;
  width: 0;
  opacity: 0.85;
  transition: width var(--rule-duration, 2.6s) cubic-bezier(0.4, 0, 0.2, 1);
}

/* Counter block */
.causes-counter-block {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 0 0 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.causes-counter-block.show { opacity: 1; }

/* Keep counter visible in Hope Causes modal */
#hcm-counter-block {
  opacity: 1 !important;
}
.causes-counter-block .cause-count-num {
  font-size: 35px;
  font-weight: 900;
  color: var(--ph-gold);
  font-family: 'Lato', sans-serif;
  min-width: 32px;
  display: inline-block;
  line-height: 1;
}

/* Hope causes section responsive grid */
@media (max-width: 768px) {
  .hope-causes-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* ============================================================
   HOPE CAUSES MODAL
   ============================================================ */

.hc-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(4, 12, 28, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  align-items: flex-start;
  justify-content: center;
  padding: clamp(16px, 3vw, 32px);
  padding-top: clamp(48px, 6vw, 90px);
  opacity: 0;
  transition: opacity 0.28s ease;
  overflow-y: auto;
}
.hc-modal-overlay.hc-modal-open {
  opacity: 1;
}
.hc-modal {
  background: #f5f3ee;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  max-width: 920px;
  width: 100%;
  max-height: fit-content;
  overflow-y: visible;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(13,37,64,0.25) transparent;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22), 0 0 0 1px rgba(0,0,0,0.06);
}
.hc-modal-overlay.hc-modal-open .hc-modal {
  transform: translateY(0) scale(1);
}

/* Close button */
.hc-modal-close-row {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 20;
  pointer-events: none;
}
.hc-modal-close-btn {
  pointer-events: all;
  background: rgba(13,37,64,0.08);
  border: 1px solid rgba(13,37,64,0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(13,37,64,0.6);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.hc-modal-close-btn:hover {
  background: rgba(13,37,64,0.14);
  border-color: rgba(13,37,64,0.28);
  color: #0d2540;
}

/* Modal inner layout — single container, no inner box */
.hc-modal-body {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 32px;
  align-items: stretch;
  padding: 32px 32px 32px;
}
/* Left column: photo top, logo section vertically centered in remaining space */
.hc-modal-body > div:first-child {
  display: flex;
  flex-direction: column;
}
.hc-modal-left-logos {
  margin-top: auto;
  margin-bottom: auto;
}
.hc-modal-photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  aspect-ratio: 4/3;
}
.hc-modal-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hc-modal-logos {
  margin-top: 4px;
  border-top: 1px solid rgba(13,37,64,0.15);
}
.hc-modal-logos-note {
  font-size: 10px;
  color: rgba(13,37,64,0.5);
  font-style: italic;
  text-align: center;
  margin: 4px 0 0;
}
.hc-modal-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ph-gold);
  margin: 0 0 6px;
  display: block;
}
.hc-modal-heading {
  color: #0d2540;
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}
.hc-modal-desc {
  font-size: 15px;
  color: rgba(13,37,64,0.75);
  line-height: 1.65;
  margin: 0 0 8px;
}
.hc-modal-tagline {
  font-size: 15px;
  color: #b8921f;
  font-style: italic;
  line-height: 1.65;
  margin: 0 0 16px;
}

/* ── Hope Causes modal: desktop (light bg) — scope dark text to desktop body only ── */

/* Force dark text only in the desktop body (light background) */
.hc-modal .hc-modal-body,
.hc-modal .hc-modal-body * {
  color: #0d2540 !important;
}
.hc-modal .hc-modal-body span,
.hc-modal .hc-modal-body p,
.hc-modal .hc-modal-body div {
  color: #0d2540 !important;
}
/* Cause cards — desktop dark text / borders on white background */
.hc-modal .hc-modal-body .cause-card {
  background: rgba(13,37,64,0.06) !important;
  border: 1px solid rgba(13,37,64,0.12) !important;
  color: #0d2540 !important;
}
.hc-modal .hc-modal-body .cause-card:hover {
  background: rgba(13,37,64,0.11) !important;
  border-color: rgba(13,37,64,0.24) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08), 0 0 0 1px rgba(212,175,55,0.3) !important;
}
.hc-modal .hc-modal-body .cause-card.lit {
  background: rgba(212,175,55,0.14) !important;
  border-color: rgba(212,175,55,0.45) !important;
}
.hc-modal .hc-modal-body .cause-card > span:not(.cause-icon) {
  color: #0d2540 !important;
}
.hc-modal .hc-modal-body .cause-card > span:not(.cause-icon) > span {
  color: rgba(13,37,64,0.75) !important;
}
.hc-modal .hc-modal-body .cause-card .cause-icon svg * {
  stroke: #0d2540 !important;
}
.hc-modal .hc-modal-body .cause-count-num {
  color: var(--ph-gold) !important;
}
.hc-modal .hc-modal-body .causes-counter-block > span:last-child {
  color: rgba(13,37,64,0.75) !important;
}

/* Desktop logos — invert white PNGs to dark on the light modal */
.hc-modal-logos img,
.hc-modal-left-logos > div img {
  filter: invert(1) opacity(0.78);
}

@media (max-width: 680px) {
  .hc-modal-body { grid-template-columns: 1fr; gap: 28px; padding: 20px 20px 32px; }
}

/* ============================================================
   FILM MODAL
   ============================================================ */

/* ── PH BADGE SYSTEM ────────────────────────────────────────
 * .film-modal-meta-badge  → film facts (rating, runtime, release) — small, tight, with title
 * .event-badge            → event perks (Early Access, Free Admission, etc.) — taller, icon+label, bottom
 * .btn / .btn-outline     → pills (border-radius:999px) for all CTAs and clickable actions
 * ─────────────────────────────────────────────────────────── */

.film-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(80, 120, 180, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.film-modal-overlay.open { display: flex; }

.film-modal {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  background: linear-gradient(160deg, #0d2540 0%, #1C3F5E 55%, #2e6090 100%);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08);
  animation: filmModalIn .22s cubic-bezier(.22,1,.36,1);
}
@keyframes filmModalIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.film-modal-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 28px 24px;
}
.film-modal-poster {
  width: 140px;
  flex-shrink: 0;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
}
.film-modal-header-info {
  flex: 1;
  min-width: 0;
  padding-top: 6px;
}
.film-modal-header-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 4vw, 28px);
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.2;
}

/* Film fact badges — rating, runtime, release */
.film-modal-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.film-modal-meta-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  white-space: nowrap;
}

.film-modal-body {
  padding: 0 28px 28px;
}

.film-modal-divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #3D77A8, #F2B830);
  margin: 0 0 4px;
}

/* PH event rows */
.film-modal-event-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}
.film-modal-event-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ph-gold);
  flex-shrink: 0;
  min-width: 200px;
  padding-top: 2px;
  line-height: 1.4;
}
.film-modal-event-value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.film-modal-synopsis {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin: 16px 0 24px;
}

/* Event perk badges */
.film-modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
  white-space: nowrap;
  line-height: 1;
}
.event-badge svg { opacity: 0.85; flex-shrink: 0; }
.event-badge--urgent {
  background: rgba(242, 184, 48, 0.15);
  border-color: rgba(242, 184, 48, 0.45);
  color: var(--ph-gold);
}

.film-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background .15s;
}
.film-modal-close:hover { background: rgba(255,255,255,0.22); }

@media (max-width: 600px) {
  .film-modal-header { padding: 24px 20px 20px; gap: 16px; }
  .film-modal-poster { width: 110px; }
  .film-modal-body { padding: 0 20px 24px; }
  .film-modal-event-label { min-width: 150px; font-size: 12px; }
  .film-modal-event-value { font-size: 16px; }
  .film-modal-synopsis { font-size: 16px; }
}

/* ── Hope Causes modal — mobile vs desktop versions ── */
.hc-modal-mobile-body { display: none; }

@media (max-width: 600px) {
  /* Cinema background — matches the Hope Causes section exactly */
  .hc-modal {
    background:
      linear-gradient(135deg, rgba(10,25,50,.88) 0%, rgba(28,63,94,.82) 100%),
      url('https://static.wixstatic.com/media/3b771c_ef578bf0a1ff4d759997a8683dc64302~mv2.jpeg') center/cover no-repeat !important;
    backdrop-filter: none !important;
    box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08) !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
  }
  /* Hide desktop body, show mobile body */
  .hc-modal-body { display: none !important; }
  .hc-modal-mobile-body { display: block !important; }
  /* Close button — inside modal on mobile */
  .hc-modal-close-row {
    position: sticky !important;
    top: 0 !important;
    right: 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
    padding: calc(env(safe-area-inset-top, 12px) + 12px) 16px 0 !important;
    z-index: 20;
  }
  .hc-modal-close-btn {
    background: rgba(255,255,255,0.2) !important;
    border-color: rgba(255,255,255,0.3) !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
  }
}

/* Past film click tooltip */
.ph-ended-tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 25, 50, 0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  padding: 7px 13px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
  z-index: 100;
  animation: tipFadeIn .15s ease;
}
.ph-ended-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(10, 25, 50, 0.92);
}
@keyframes tipFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(4px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Nav location indicator ──────────────────────────────── */
.nav-loc-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.nav-loc-city {
  color: var(--ph-gold);
}
.nav-loc-switch {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  margin-left: 2px;
  transition: color .15s;
}
.nav-loc-switch:hover {
  color: rgba(255,255,255,0.85);
}

/* ── NEW NAV RIGHT: MY EVENTS + Location Widget ─────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Store icon */
.nav-store-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  text-decoration: none;
  transition: color .2s, transform .2s;
  padding: 4px 0;
}
.nav-store-icon:hover {
  color: #fff;
}
.nav-store-icon:hover svg {
  transform: scale(1.08);
}
.nav-store-icon svg {
  display: block;
  flex-shrink: 0;
  transition: transform .2s;
}
.nav-store-text {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* MY EVENTS button */
.btn-nav-events {
  background: #fff;
  color: var(--ph-blue-dark);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, box-shadow .2s;
  letter-spacing: .02em;
}
.btn-nav-events:hover {
  background: #e8f0f8;
}

/* GET INVOLVED button */
.nav-btn-get-involved {
  background: transparent;
  color: var(--ph-gold, #c9a84c);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1.5px solid var(--ph-gold, #c9a84c);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all .2s;
  letter-spacing: .02em;
  margin-left: 28px;
}
.nav-btn-get-involved:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: #d4a84e;
  color: #d4a84e;
}
.nav-btn-get-involved:active {
  transform: translateY(0);
}

/* My Events wrapper — hidden; replaced by unified location CTA */
.nav-my-events-wrap {
  display: none !important;
}
.nav-my-events-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--ph-blue-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.nav-my-events-tip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ph-blue-dark);
}
.nav-my-events-tip.tip-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Location widget shake — triggered when My Events clicked with no location */
@keyframes ph-loc-shake {
  0%, 100% { transform: translateX(0); }
  15%      { transform: translateX(-6px); }
  35%      { transform: translateX(6px); }
  55%      { transform: translateX(-4px); }
  75%      { transform: translateX(4px); }
  90%      { transform: translateX(-2px); }
}
.nav-loc-wrap.loc-shake {
  animation: ph-loc-shake 0.5s ease;
}

/* Location selector — plain text, no button appearance */
.nav-loc-wrap {
  position: relative;
}
/* Hide default "Select a Location" btn instantly if location is already saved */
html.ph-has-loc #nav-loc-btn { visibility: hidden; }

.nav-loc-widget {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px 2px;
  color: var(--ph-gold);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: color .18s;
  border-radius: 0;
}
.nav-loc-widget:hover,
.nav-loc-widget:focus {
  color: #fff;
  background: none;
  outline: none;
}
.nav-loc-pin {
  color: var(--ph-gold);
  flex-shrink: 0;
  transition: color .18s;
}
.nav-loc-widget.has-loc .nav-loc-pin {
  color: rgba(255,255,255,0.55);
}
.nav-loc-widget:hover .nav-loc-pin {
  color: #fff;
}
#nav-loc-label {
  color: var(--ph-gold);
  transition: color .18s;
}
.nav-loc-widget.has-loc #nav-loc-label {
  color: rgba(255,255,255,0.75);
}
.nav-loc-widget:hover #nav-loc-label {
  color: #fff;
}
.nav-loc-widget.has-loc {
  color: rgba(255,255,255,0.75);
}
.nav-loc-chevron {
  color: var(--ph-gold);
  flex-shrink: 0;
  transition: color .18s;
}
.nav-loc-widget.has-loc .nav-loc-chevron {
  color: rgba(255,255,255,0.35);
}
.nav-loc-widget:hover .nav-loc-chevron {
  color: rgba(255,255,255,0.7);
}
/* Thin separator between selector and button */
/* Hide separator when location is set — CTA replaces everything */
.nav-loc-wrap::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.2);
  margin-left: 8px;
  vertical-align: middle;
}
.nav-loc-wrap.loc-set::after {
  display: none;
}

/* ── Unified location CTA (State 2: location set) ────────── */
.nav-loc-cta {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  height: 40px;
}
.nav-loc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-right: none;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 0 13px;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: .02em;
  transition: background .18s;
}
.nav-loc-cta-btn:hover {
  background: rgba(255,255,255,0.17);
}
.nav-loc-cta-city {
  font-weight: 900;
  color: var(--ph-gold, #D4AF37);
}
.nav-loc-cta-divider {
  color: rgba(255,255,255,0.3);
  font-weight: 400;
  margin: 0 2px;
}
.nav-loc-cta-label {
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.nav-loc-cta-btn svg {
  color: rgba(255,255,255,0.55);
}
.nav-loc-cta-btn:hover svg {
  color: #fff;
}
.nav-loc-clear-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-left: none;
  color: #fff;
  border-radius: 0 6px 6px 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background .18s, color .18s;
  padding: 0;
  flex-shrink: 0;
}
.nav-loc-clear-btn:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* Hero badge overlay - theater info on image */
.merge-hero-events-badge {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0;
  background: linear-gradient(180deg,
    rgba(13, 37, 64, 0.06) 0%,
    rgba(13, 37, 64, 0.09) 15%,
    rgba(13, 37, 64, 0.14) 30%,
    rgba(13, 37, 64, 0.25) 50%,
    rgba(13, 37, 64, 0.44) 70%,
    rgba(13, 37, 64, 0.63) 85%,
    rgba(13, 37, 64, 0.80) 100%);
  padding: 0;
  border-top: none;
  pointer-events: none;
}
.merge-hero-events-badge > * {
  pointer-events: auto;
}
.merge-badge-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  width: 100%;
}
.merge-badge-ticket-img {
  width: 67px !important;
  height: 67px !important;
  max-width: 67px !important;
  max-height: 67px !important;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: -10px;
}
.merge-badge-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.merge-badge-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #FFC820;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
}
.merge-badge-main {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
.merge-badge-main strong {
  font-weight: 700;
  color: var(--ph-gold, #D4AF37);
}
.merge-badge-theater-line {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}
.merge-badge-theater-line span {
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.merge-badge-map-link {
  color: #FFC820;
  text-decoration: none;
  pointer-events: auto;
}
.merge-badge-map-link:hover {
  text-decoration: underline;
}

/* Ensure home-hero-img is positioned for overlay */
.home-hero-img {
  position: relative;
  overflow: hidden;
}

/* Fix hero image artifact by cropping top line */
#merge-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(12px 0 0 0);
}

/* Location dropdown */
#ph-loc-drop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 2000;
  overflow: hidden;
  animation: ph-drop-in .18s ease;
}
@keyframes ph-drop-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hope Causes Modal Loader Animation ── */
@keyframes hcm-spin {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Fade-in animation for counter */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Pop and fade animation for completion message */
@keyframes completeMessagePop {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Badge float animation on poster hover */
@keyframes badgeFloat {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

#hcm-loader {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

#hcm-loader.hide {
  opacity: 0;
  pointer-events: none;
  display: none;
}

.ph-loc-drop-search-wrap {
  position: relative;
  padding: 12px 12px 8px;
  border-bottom: 1px solid #eef0f4;
}
.ph-loc-drop-search-wrap svg {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-60%);
  color: #9aa5b4;
  pointer-events: none;
}
.ph-loc-drop-search {
  width: 100%;
  padding: 8px 10px 8px 32px;
  border: 1px solid #dde3eb;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Lato', sans-serif;
  color: #1C3F5E;
  outline: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
.ph-loc-drop-search:focus { border-color: var(--ph-blue); }
.ph-loc-drop-list {
  max-height: 280px;
  overflow-y: auto;
  padding: 6px 8px;
  overscroll-behavior: contain;
}
.ph-loc-drop-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .12s;
}
.ph-loc-drop-row:hover { background: #f4f7fb; }
.ph-loc-drop-row.selected { background: #eef4fb; }
.ph-loc-drop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8d5e2;
  border: 1.5px solid #b0bfcc;
  flex-shrink: 0;
}
.ph-loc-drop-dot.sel {
  background: var(--ph-gold);
  border-color: #b8920a;
}
.ph-loc-drop-body { flex: 1; min-width: 0; }
.ph-loc-drop-city {
  font-size: 13px;
  font-weight: 700;
  color: #1C3F5E;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ph-loc-drop-theater {
  font-size: 11px;
  color: #6b7f93;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ph-loc-drop-state-header {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ph-blue-dark);
  padding: 6px 12px;
  margin: 0;
  position: sticky;
  top: 0;
  z-index: 1;
}
.ph-loc-drop-empty {
  padding: 20px 12px;
  text-align: center;
  font-size: 13px;
  color: #9aa5b4;
}
.ph-loc-drop-footer {
  border-top: 1px solid #eef0f4;
  padding: 10px 12px;
}
.ph-loc-drop-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ph-blue);
  text-decoration: none;
  letter-spacing: .02em;
}
.ph-loc-drop-map-link:hover { color: var(--ph-blue-dark); }

/* ── Full-Screen Map Overlay ─────────────────────────────── */
.ph-map-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ph-map-overlay.ph-map-open {
  opacity: 1;
}
.ph-map-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}
.ph-map-overlay-content {
  position: relative;
  width: 94vw;
  height: 90vh;
  max-width: 1400px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  transform: scale(0.92) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ph-map-overlay.ph-map-open .ph-map-overlay-content {
  transform: scale(1) translateY(0);
}
.ph-map-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: linear-gradient(135deg, #0d2540 0%, #1C3F5E 100%);
  flex-shrink: 0;
}
.ph-map-overlay-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ph-map-overlay-close {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.ph-map-overlay-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}
.ph-map-overlay-body {
  flex: 1;
  overflow: hidden;
}
.ph-map-overlay-body .map-section {
  height: 100% !important;
  border-top: none;
}
.ph-map-overlay-body #home-map {
  flex: 1;
}

@media (max-width: 768px) {
  .ph-map-overlay-content {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
  }
  .ph-map-overlay-brand span:last-child {
    display: none;
  }
}

/* ── Partner Logo Slots ─────────────────────────────────── */
#churches-grid .ph-logo-slot,
#sponsors-grid .ph-logo-slot {
  height: 80px;
  box-sizing: border-box;
}
.ph-logo-slot {
  border: 1px dashed rgba(28,63,94,.15);
  border-radius: 10px;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: border-color 0.2s, background 0.2s;
}
.ph-logo-slot:hover {
  border-color: rgba(28,63,94,.25);
  background: #f4f6f9;
}
.ph-logo-slot img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  opacity: 0.9;
}

/* Mobile-only sponsors gradient divider — hidden on desktop */
.ph-sponsors-divider { display: none; }

@media (max-width: 680px) {
  #ph-partner-strip {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  /* Hide the desktop vertical line */
  #ph-partner-strip > div:nth-child(2) { display: none !important; }
  /* Show the mobile gradient line */
  .ph-sponsors-divider {
    display: block !important;
    height: 2px !important;
    width: 45% !important;
    background: linear-gradient(to right, #3D77A8, #F2B830) !important;
    border-radius: 99px !important;
    margin: 14px auto !important;
  }
  /* Thank You divider — wider on mobile */
  .ph-thankyou-divider {
    width: 45% !important;
  }
  /* Sponsors grid: no internal top/bottom margin; space goes below the container */
  #sponsors-grid { margin: 0 !important; }
  .sponsors-glass { margin-bottom: 20px !important; }
}

/* ── Full-Screen Partner Overlay ────────────────────────── */
.ph-partner-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ph-partner-overlay.ph-partner-open {
  opacity: 1;
}
.ph-partner-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}
.ph-partner-overlay-content {
  position: relative;
  width: 94vw;
  height: 76vh;
  max-width: 1100px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #091728 0%, #0d2540 45%, #1C3F5E 100%);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  transform: scale(0.92) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ph-partner-overlay.ph-partner-open .ph-partner-overlay-content {
  transform: scale(1) translateY(0);
}
.ph-partner-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: linear-gradient(135deg, #0d2540 0%, #1C3F5E 100%);
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ph-partner-overlay-close {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.ph-partner-overlay-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}
.ph-partner-overlay-body {
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

@media (max-width: 768px) {
  .ph-partner-overlay-content {
    width: 100vw;
    height: 100dvh;
    border-radius: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    padding-top: env(safe-area-inset-top, 0px);
  }
  .ph-partner-overlay-body {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    flex: 1 !important;
    padding: 16px 18px 24px !important;
    justify-content: flex-start !important;
  }
  /* Compact intro */
  .ph-partner-overlay-body > div:first-child {
    margin-bottom: 12px !important;
    padding-top: 8px !important;
  }
  .ph-partner-overlay-body h2 {
    font-size: 22px !important;
    margin-bottom: 0 !important;
  }
  .ph-partner-overlay-body > div:first-child p {
    display: none !important;
  }
  /* Grid: 2×2 on mobile, no images */
  #ph-partner-cards-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    flex: none !important;
    height: auto !important;
    align-items: stretch !important;
    margin: 0 0 10px !important;
  }
  /* Cards: text-only, compact */
  #ph-partner-cards-grid > * {
    flex-direction: column !important;
    border-radius: 12px !important;
    height: auto !important;
    overflow: hidden !important;
  }
  #ph-partner-cards-grid > * > div {
    flex: 1 1 auto !important;
    padding: 14px 14px !important;
    max-width: 100% !important;
    width: auto !important;
    justify-content: flex-start !important;
  }
  #ph-partner-cards-grid h3   { font-size: 15px !important; margin-bottom: 4px !important; }
  #ph-partner-cards-grid p    { font-size: 12px !important; margin-bottom: 6px !important; line-height: 1.45 !important; }
  #ph-partner-cards-grid span[style*="font-size:10px"] { font-size: 10px !important; }
  #ph-partner-cards-grid a[style*="font-size:12px"],
  #ph-partner-cards-grid span[style*="font-size:12px"] { font-size: 12px !important; }
  /* Bottom email line */
  .ph-partner-overlay-body > p:last-child { font-size: 12px !important; margin-top: 8px !important; }
}

/* ── Sticky Side Tab for Map ─────────────────────────────── */
.ph-map-side-tab {
  position: fixed;
  right: 0;
  top: 140px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 15px 11px;
  background: linear-gradient(180deg, #0d2540 0%, #1C3F5E 100%);
  color: var(--ph-gold);
  border: none;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  box-shadow: -4px 4px 16px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.06) inset;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.ph-map-side-tab:hover {
  transform: translateX(-4px);
  box-shadow: -6px 6px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.ph-map-side-tab:hover svg {
  stroke: #fff;
}
.ph-map-side-tab svg {
  stroke: var(--ph-gold);
  transition: stroke 0.2s;
}

@media (max-width: 768px) {
  .ph-map-side-tab {
    top: 264px;
    bottom: auto;
  }
}

/* ── Our Locations section on index.html ─────────────────── */
.our-locations-section {
  background: #fff;
}
.our-locations-head {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px 28px;
}
.our-locations-head h2 { margin-top: 8px; }
.our-locations-head p  { color: var(--text-muted); margin-top: 6px; }

/* Collapsible location list below map */
.home-loc-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 0;
}
.home-loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 14px;
}
.home-loc-extra {
  display: none;
}
.home-loc-extra.expanded {
  display: contents;
}
.home-loc-expand-row {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px 0 40px;
}
.home-loc-expand-btn {
  background: none;
  border: 1.5px solid var(--ph-border);
  border-radius: 99px;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  color: var(--ph-blue);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.home-loc-expand-btn:hover {
  border-color: var(--ph-blue);
  background: var(--ph-surface);
}

/* ── Shared map section styles (index + locations pages) ──── */
.map-section {
  display: flex;
  height: 620px;
  border-top: 3px solid var(--ph-gold);
}
#map       { flex: 1; }
#home-map  { flex: 1; }

/* Sidebar shared styles */
.sidebar-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--ph-border);
  background: var(--ph-surface);
}
.sidebar-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.sidebar-close-btn {
  background: rgba(13,37,64,0.08);
  border: none;
  border-radius: 99px;
  padding: 5px 12px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #0d2540;
  cursor: pointer;
  letter-spacing: .02em;
}
.sidebar-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.sheet-handle {
  display: none;
  width: 40px;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  margin: 10px auto 6px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sheet-handle { display: block; }
  .map-section { height: 500px; }
}
@media (max-width: 480px) {
  .map-section { height: 420px; }
}

/* State filter pills */
.state-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--ph-border);
}
.state-pill {
  font-size: 11px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--ph-border);
  background: #fff;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .15s;
  letter-spacing: .03em;
}
.state-pill:hover  { border-color: var(--ph-blue); color: var(--ph-blue); }
.state-pill.active { background: var(--ph-blue-dark); color: #fff; border-color: var(--ph-blue-dark); }

/* Location list items */
#loc-list, #home-loc-list {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.loc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-bottom: 1px solid #f0f4f8;
  cursor: pointer;
  transition: background .12s;
}
.loc-item:hover  { background: var(--ph-surface); }
.loc-item.active { background: #eef4fb; border-left: 3px solid var(--ph-gold); padding-left: 11px; }
.loc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ph-gold);
  flex-shrink: 0;
  border: 1.5px solid var(--ph-gold-dark);
}
.loc-item-body { flex: 1; min-width: 0; }
.loc-item-city {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.loc-item-theater {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.loc-item-arrow {
  color: var(--ph-blue);
  opacity: 0;
  transition: opacity .12s;
  flex-shrink: 0;
}
.loc-item:hover .loc-item-arrow  { opacity: 1; }
.loc-item.active .loc-item-arrow { opacity: 1; }

/* Location cards (grid) */
.loc-card {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .18s, border-color .18s, transform .18s;
  cursor: pointer;
  user-select: none;
}
.loc-card:hover {
  box-shadow: 0 4px 20px rgba(61,119,168,0.13);
  border-color: var(--ph-blue);
  transform: translateY(-2px);
}
.loc-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ph-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ph-blue-dark);
}
.loc-card-city {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.loc-card-theater {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Mapbox popup */
.mapboxgl-popup-content {
  border-radius: 12px !important;
  padding: 0 !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18) !important;
  overflow: hidden;
  min-width: 210px;
  max-width: 240px;
}
.mapboxgl-popup-close-button {
  font-size: 18px;
  color: #fff;
  right: 6px;
  top: 6px;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}
.mapboxgl-popup-tip { display: none !important; }
.popup-img {
  height: 110px;
  background: var(--ph-blue-light);
  overflow: hidden;
}
.popup-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.popup-body    { padding: 12px 14px 14px; }
.popup-city {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.popup-theater { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.popup-addr    { font-size: 11px; color: var(--text-muted); line-height: 1.4; margin-bottom: 12px; }
.popup-actions { display: flex; gap: 8px; }
.popup-btn-primary {
  flex: 1;
  background: var(--ph-blue-dark);
  color: #fff;
  text-align: center;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  text-decoration: none;
  transition: background .15s;
  cursor: pointer;
}
.popup-btn-primary:hover { background: var(--ph-blue); }

/* Picker popup rows */
.picker-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .12s;
  margin-bottom: 2px;
}
.picker-row:hover { background: var(--ph-surface); }
.picker-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ph-gold);
  border: 1.5px solid var(--ph-gold-dark);
  flex-shrink: 0;
}
.picker-body  { flex: 1; min-width: 0; }
.picker-city  { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.picker-theater { font-size: 11px; color: var(--text-muted); }

/* Selected location card in home list */
.loc-card.home-loc-selected {
  border-color: var(--ph-gold);
  box-shadow: 0 0 0 2px rgba(198,160,60,0.35), 0 4px 20px rgba(61,119,168,0.1);
}

/* ── Map story card ─────────────────────────────────────────── */
#map-story-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  width: 240px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 6px 28px rgba(28,63,94,0.15), 0 2px 6px rgba(0,0,0,0.06);
  padding: 16px 18px 14px;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
#map-story-card.msc-hidden {
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}
/* Journey row: 1 → 28 */
.msc-journey {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(28,63,94,0.08);
}
.msc-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.msc-num-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: var(--ph-blue-dark);
}
.msc-num-val.is-gold { color: var(--ph-gold); }
.msc-num-label {
  font-family: 'Lato', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(28,63,94,0.4);
}
.msc-arrow {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
  gap: 2px;
}
.msc-arrow-line {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--ph-gold);
}
.msc-arrow-line svg { display: block; }
.msc-arrow-year {
  font-family: 'Lato', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: rgba(28,63,94,0.3);
  letter-spacing: .05em;
  white-space: nowrap;
}
.msc-title {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  color: var(--ph-blue-dark);
  text-transform: uppercase;
  margin: 0 0 7px;
}
.msc-body {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  line-height: 1.62;
  color: var(--text-secondary);
  margin: 0 0 16px;
}
.msc-body strong { color: var(--ph-blue-dark); }
.msc-btn {
  display: block;
  text-align: center;
  background: var(--ph-blue-dark);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  padding: 10px 16px;
  border-radius: 99px;
  text-decoration: none;
  transition: background .18s, transform .15s;
}
.msc-btn:hover {
  background: var(--ph-blue);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  #map-story-card { display: none; }
}

/* Home map sidebar — collapsed by default, slides in on demand */
#home-map-section { position: relative; overflow: visible; }

#home-map-sidebar {
  width: 300px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid var(--ph-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* Desktop: collapsed off-screen left */
  transform: translateX(-100%);
  margin-right: -300px;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
              margin-right 0.28s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  z-index: 10;
  height: 100%;
}
#home-map-sidebar #home-loc-list {
  min-height: 0;
}
#home-map-sidebar.open {
  transform: translateX(0);
  margin-right: 0;
}

/* Expand tab — sticks to left edge of map */
#home-sidebar-tab {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: var(--ph-blue-dark);
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 20px 8px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 3px 0 14px rgba(0,0,0,0.22);
  transition: background .15s, left .28s cubic-bezier(0.4,0,0.2,1);
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
#home-sidebar-tab:hover { background: #1e5080; }
.sidebar-tab-arrow {
  font-size: 20px;
  line-height: 1;
  display: block;
  transition: transform .28s cubic-bezier(0.4,0,0.2,1);
}
.sidebar-tab-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: .12em;
  display: block;
}
/* When sidebar is open, tab slides right and arrow flips */
#home-map-section.sidebar-open #home-sidebar-tab { left: 300px; }
#home-map-section.sidebar-open .sidebar-tab-arrow { transform: rotate(180deg); }

@media (max-width: 768px) {
  #home-map-sidebar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    width: 100%;
    height: 70vh;
    height: 70dvh;
    border-radius: 16px 16px 0 0;
    border-right: none;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
    transform: translateY(100%);
    margin-right: 0;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 160;
    padding-bottom: max(env(safe-area-inset-bottom, 0px), 12px);
  }
  #home-map-sidebar.open { transform: translateY(0); }
  #home-map { width: 100%; }
  /* Pill button: JS controls display:flex when list is closed */
  #home-map-toggle-btn { display: none; bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important; }
  #home-sidebar-tab { display: none; }
  /* Sheet handle — full-width close bar */
  .sheet-handle {
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 10px 0 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
  }
  .sheet-handle-bar {
    width: 40px;
    height: 4px;
    border-radius: 3px;
    background: rgba(0,0,0,0.18);
    flex-shrink: 0;
  }
  .sheet-close-label {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.35);
  }
}

/* Selected location highlight on home map */
.ph-selected-pin {
  width: 18px;
  height: 18px;
  background: var(--ph-gold);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--ph-gold), 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
}

/* Mobile: hide nav-right labels, stack */
@media (max-width: 768px) {
  .nav-right { gap: 6px; padding: 0 12px; }
  .btn-nav-events { padding: 10px 16px; font-size: 13px; }
  .nav-loc-widget { padding: 10px 12px; font-size: 14px; min-height: 40px; }
  .nav-loc-wrap::after { display: none; }
  #ph-loc-drop { right: -10px; width: 280px; }
  .nav-loc-cta { height: 40px; }
  .nav-loc-cta-btn { padding: 0 12px; font-size: 14px; }
  .nav-loc-clear-btn { width: 40px; height: 40px; }
}
@media (max-width: 480px) {
  .btn-nav-events span { display: none; }
  .btn-nav-events { padding: 10px 13px; }
}

/* Footer contact pill */
.footer-contact-pill {
  display: inline-block;
  background: var(--ph-gold);
  color: var(--ph-blue-dark) !important;
  font-weight: 800;
  font-size: 15px;
  padding: 11px 28px;
  border-radius: 999px;
  text-decoration: none !important;
  letter-spacing: .02em;
  transition: opacity .15s;
  margin-top: 4px;
}
.footer-contact-pill:hover { opacity: .85; }
.footer-col-contact { display: flex; flex-direction: column; }

/* ── Home map ↔ list panel toggle ─────────────────────────── */
#home-list-panel {
  flex: 1;
  display: none;
  overflow-y: auto;
  background: #fff;
  padding: 28px 44px 32px;
  overscroll-behavior: contain;
  box-sizing: border-box;
  min-width: 0;
}
.hlp-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 32px;
}
.hlp-state-block { margin-bottom: 14px; }
.hlp-state-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ph-blue-dark);
  padding: 3px 10px 3px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 5px;
}
.hlp-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-radius: 5px;
  padding: 4px 8px;
  cursor: pointer;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ph-blue-dark);
  line-height: 1.35;
  transition: background .12s, color .12s;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hlp-btn:hover { background: var(--ph-blue-light); }
.hlp-btn.hlp-selected {
  background: var(--ph-blue-dark);
  color: #fff;
  border-radius: 5px;
}
@media (max-width: 860px) {
  .hlp-columns { grid-template-columns: repeat(3, 1fr); gap: 0 24px; }
  #home-list-panel { padding: 24px 28px; }
}
@media (max-width: 580px) {
  .hlp-columns { grid-template-columns: repeat(2, 1fr); gap: 0 16px; }
  #home-list-panel { padding: 20px 18px; }
}

/* ── Global mobile overflow fix ── */
@media (max-width: 768px) {
  * { box-sizing: border-box; }

  html { overflow-x: hidden; }
  body { max-width: 100vw; }

  section, header, footer,
  .stat-band, .stat-band-inner,
  .featured-event-section,
  .why-parallax, .why-parallax-inner,
  .gi-section,
  .our-locations-section,
  .event-types-section,
  .leaders-section,
  .section,
  .home-hero {
    max-width: 100vw;
    overflow-x: hidden;
  }
  /* Film strip must scroll — exempt from overflow-x: hidden */
  #film-strip-wrap,
  .film-strip-wrapper.strip-outer-wrap,
  .film-strip {
    overflow-x: auto !important;
    max-width: none !important;
  }
}

/* ══════════════════════════════════════════════════
   MOBILE LAYOUT — max-width: 600px
   Targeted fixes for small screens only.
   Desktop styles are NEVER overridden above 600px.
   ══════════════════════════════════════════════════ */
@media (max-width: 600px) {

  /* ── FEATURED EVENT SECTION ── */
  .featured-event-section {
    flex-direction: column !important;
    min-height: auto !important;
  }
  .featured-event-section .fe-inner.layout-wide,
  .featured-event-section .fe-inner {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
    padding: 68px 20px 28px !important;
    gap: 0 !important;
  }
  .fe-backdrop {
    flex-shrink: 0 !important;
    flex-basis: 300px !important;
    width: 100% !important;
    height: 300px !important;
    position: relative !important;
  }
  .fe-backdrop-img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    object-position: center top !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    display: block !important;
    filter: blur(0) saturate(1) brightness(0.85) !important;
    transform: none !important;
  }
  .fe-backdrop-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(6,8,13,0.85) 100%) !important;
  }
  .fe-poster-wrap { display: inline-block !important; position: relative !important; width: auto !important; order: -1 !important; margin: 0 auto 30px !important; align-self: center !important; opacity: 1 !important; transform: none !important; animation: none !important; box-shadow: none !important; background: none !important; overflow: visible !important; }
  .fe-poster-wrap::before { display: block !important; position: absolute !important; top: -16px !important; left: 50% !important; transform: translateX(-50%) !important; margin: 0 !important; font-size: 9px !important; padding: 6px 18px !important; width: fit-content !important; }
  .fe-visible .fe-poster-wrap::before { animation: fe-marquee-in 1.2s cubic-bezier(0.22,1,0.36,1) 0.6s both, fe-shimmer 6s ease-in-out 2s infinite !important; }
  .fe-poster-wrap::after { content: ''; position: absolute; right: -40px; bottom: -40px; width: 170px; height: 170px; border-radius: 50%; background: var(--ph-gold); z-index: 0; transform: translate(80px, 80px) scale(0.4); opacity: 0; animation: none; }
  .fe-visible .fe-poster-wrap::after { animation: fe-circle-in 4.8s cubic-bezier(0.22,1,0.36,1) 0s both; }
  @keyframes fe-circle-in { from { transform: translate(80px, 80px) scale(0.4); opacity: 0; } to { transform: none; opacity: 1; } }
  @keyframes fe-poster-in { from { transform: translateY(80px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
  .fe-poster { position: relative !important; z-index: 1 !important; animation: none !important; opacity: 0; }
  .fe-visible .fe-poster { animation: fe-poster-in 4.8s cubic-bezier(0.22,1,0.36,1) 0s both !important; }
  .fe-poster { height: 300px !important; width: auto !important; object-fit: unset !important; border-radius: 12px !important; background: none !important; box-shadow: 0 0 0 3px rgba(255,255,255,0.18), 0 8px 24px rgba(0,0,0,0.45) !important; display: block !important; }
  .fe-content { width: 100% !important; padding: 0 !important; color: #fff !important; display: flex !important; flex-direction: column !important; }
  .fe-title { color: #fff !important; font-size: 2rem !important; line-height: 1.1 !important; }
  .fe-desc { color: rgba(255,255,255,0.85) !important; font-size: 18px !important; margin: 10px 0 20px !important; }
  .fe-meta-row { font-size: 16px !important; }
  .fe-label { font-size: 14px !important; }
  .fe-tag, .fe-eyebrow { color: rgba(255,255,255,0.7) !important; }
  .fe-director { color: rgba(255,255,255,0.6) !important; }
  .fe-actions { flex-direction: row !important; gap: 10px !important; flex-wrap: nowrap !important; margin-top: 15px !important; }
  .fe-btn-primary { flex: 2 1 0 !important; min-width: 0 !important; justify-content: center !important; text-align: center !important; white-space: nowrap !important; font-size: 16px !important; }
  .fe-btn-ghost { flex: 1 1 0 !important; min-width: 0 !important; justify-content: center !important; text-align: center !important; white-space: nowrap !important; font-size: 16px !important; }

  /* ── STAT BAND ── */
  .stat-band-inner {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .stat-block {
    width: 100% !important;
    min-width: 0 !important;
    padding: 14px 4px !important;
    flex: none !important;
    flex-shrink: unset !important;
    border: none !important;
    border-right: 1px solid rgba(28,63,94,0.15) !important;
  }
  .stat-block:last-child { border-right: none !important; }
  .stat-block-num { font-size: 1.5rem !important; }
  .stat-block-label { font-size: 8px !important; letter-spacing: 0.03em !important; }

  /* ── Hide empty featured event section ── */
  .featured-event-section:empty {
    min-height: 0 !important;
    height: 0 !important;
    padding: 0 !important;
  }

  /* ── WHY PARALLAX (two-card layout) ── */
  .why-parallax {
    background-attachment: scroll !important;
    padding: 40px 16px !important;
  }
  .why-parallax-inner { padding: 0 !important; }
  .why-parallax-label, .why-parallax-heading { padding-left: 0 !important; }
  .why-parallax-heading { font-size: 22px !important; line-height: 1.15 !important; margin-bottom: 20px !important; }
  .why-cards { grid-template-columns: 1fr !important; gap: 14px !important; }
  .why-perks-photos { height: 140px !important; }
  .why-card-impact { min-height: 260px !important; }

  /* ── HOPE CAUSES GRID (nested inside why-parallax) ── */
  .why-parallax #hope-causes .hope-causes-grid,
  .hope-causes-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .hope-causes-grid > * { min-width: 0 !important; }

  /* ── GET INVOLVED CAROUSEL — mobile tweaks ── */
  .gi-section { padding: 40px 0 !important; overflow: hidden !important; }
  .gi-section .layout-wide { padding-left: 0 !important; padding-right: 0 !important; }
  .gi-slider-outer { border-radius: 0 !important; box-shadow: none !important; }
  /* gi-track MUST keep overflow-x: auto — never apply hidden here */
  .gi-track {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-x !important;
    gap: 12px !important;
  }
  /* card-wrap: use flex shorthand, no explicit width override — CSS % handles it */
  .gi-card-wrap { scroll-snap-align: start !important; }
  /* card stays flex row on mobile, just shorter */
  .gi-card { height: 200px !important; }
  .gi-card-img { flex: 0 0 40% !important; }
  .gi-card-body { padding: 16px 14px !important; }

  /* ── EVENT TYPES — single column ── */
  .event-type-cards {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    gap: 16px !important;
    padding: 0 16px !important;
  }
  .et-card { width: 100% !important; }

  /* ── FILM STRIP — peek scroll (2.2 upcoming, then divider, then past smaller) ── */
  #films-section { overflow-x: visible !important; }
  #films-section .layout-wide { padding-left: 0 !important; padding-right: 0 !important; }
  .strip-outer-wrap { overflow: visible !important; }
  .strip-outer-arrow { display: none !important; }
  .film-strip-wrapper {
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .film-strip-wrapper::-webkit-scrollbar { display: none !important; }
  .film-strip { scrollbar-width: none !important; }
  .film-strip::-webkit-scrollbar { display: none !important; }
  .film-strip {
    width: max-content !important;
    gap: 10px !important;
    padding: 20px 20px 20px 4px !important;
    margin: 0 !important;
    scroll-snap-type: x mandatory !important;
    align-items: center !important;
  }
  /* Upcoming/featured cards — sized so ~2.2 are visible at ~375px */
  .film-card-featured,
  .film-card-primary,
  .film-card-secondary {
    flex: 0 0 138px !important;
    width: 138px !important;
    scroll-snap-align: start !important;
    padding: 0 !important;
  }
  .film-card-featured .film-poster,
  .film-card-primary .film-poster,
  .film-card-secondary .film-poster {
    width: 138px !important;
    height: 207px !important;
  }
  /* Past/smaller cards — vertically centered via align-items: center on strip */
  .film-card:not(.film-card-featured):not(.film-card-primary):not(.film-card-secondary) {
    flex: 0 0 95px !important;
    width: 95px !important;
    scroll-snap-align: start !important;
    align-self: center !important;
  }
  .film-card:not(.film-card-featured):not(.film-card-primary):not(.film-card-secondary) .film-poster {
    width: 95px !important;
    height: 142px !important;
  }
  .film-card:not(.film-card-featured):not(.film-card-primary):not(.film-card-secondary) .film-title {
    max-width: 95px !important;
    font-size: 10px !important;
  }
  .film-card:not(.film-card-featured):not(.film-card-primary):not(.film-card-secondary) .film-meta {
    max-width: 95px !important;
    font-size: 9px !important;
  }
  /* Wide (16:9) faith-night cards on mobile */
  .film-card-wide,
  .film-card-wide.film-card-featured,
  .film-card-wide.film-card-primary,
  .film-card-wide.film-card-secondary {
    flex: 0 0 240px !important;
    width: 240px !important;
  }
  .film-card-wide .film-poster,
  .film-card-wide.film-card-featured .film-poster,
  .film-card-wide.film-card-primary .film-poster,
  .film-card-wide.film-card-secondary .film-poster {
    width: 240px !important;
    height: 135px !important;
  }

  /* Divider — rotate to horizontal feel on mobile */
  .film-strip-divider {
    width: 1px !important;
    height: auto !important;
    align-self: stretch !important;
    flex-direction: column !important;
    gap: 4px !important;
    margin: 0 4px !important;
  }

  /* ── LAYOUT-WIDE padding on small screens ── */
  .layout-wide { padding-left: 16px !important; padding-right: 16px !important; }
  /* Exception: gi-section and why-parallax handle their own padding */
  .gi-section .layout-wide,
  .why-parallax .layout-wide { padding-left: 0 !important; padding-right: 0 !important; }

  /* ── FOOTER ── */
  .footer-upper {
    flex-direction: column !important;
    gap: 24px !important;
    align-items: center !important;
    text-align: center !important;
    padding-top: 12px !important;
  }
  .footer-statement, .footer-donate-col {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }
  .footer-middle { flex-direction: column !important; align-items: center !important; gap: 16px !important; }
  .footer-signup-btn { width: 100% !important; }

  /* ── HOME HERO — trim excess bottom space ── */
  .home-hero { padding-bottom: 0 !important; }
  .home-hero-inner { padding-bottom: 0 !important; min-height: 0 !important; }

  /* ── LOCATION.HTML — Faith Nights section ── */
  .lp-fn-inner {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 32px 20px 20px !important;
    gap: 8px !important;
  }
  /* Faith Nights circles — show on mobile, scaled to fit, no hover tooltips */
  .lp-fn-section .loc-reveal-right {
    display: block !important;
    height: 270px !important;
    width: 118% !important;
    margin-left: -2% !important;
    overflow: visible !important;
    opacity: 1 !important;
    transform: none !important;
    margin-top: 0 !important;
  }
  .lp-fn-section .fn-bubble {
    animation-name: fn-pop-in-sm, fn-float-sm !important;
  }
  /* Spread individual bubbles — readable, no text-covering overlaps */
  .lp-fn-section .loc-reveal-right > .fn-bubble:nth-child(1) { /* Bible Study - gold, top-left */
    top: -2% !important; left: 2% !important; right: auto !important; bottom: auto !important;
  }
  .lp-fn-section .loc-reveal-right > .fn-bubble:nth-child(2) { /* Comedians - gold, bottom-right, slightly clipped */
    bottom: -2% !important; right: -3% !important; top: auto !important; left: auto !important;
  }
  .lp-fn-section .loc-reveal-right > .fn-bubble:nth-child(3) { /* Documentaries - navy, top-right */
    top: -2% !important; right: 8% !important; bottom: auto !important; left: auto !important;
  }
  .lp-fn-section .loc-reveal-right > .fn-bubble:nth-child(4) { /* Apologetics - blue, center-right */
    top: 38% !important; left: 48% !important; right: auto !important; bottom: auto !important;
  }
  .lp-fn-section .loc-reveal-right > .fn-bubble:nth-child(5) { /* Pastor - navy, bottom-left */
    bottom: -4% !important; left: 2% !important; right: auto !important; top: auto !important;
  }
  .lp-fn-section .loc-reveal-right > .fn-bubble:nth-child(6) { /* Short Films - blue, mid-left */
    top: 46% !important; left: 16% !important; bottom: auto !important; right: auto !important;
  }
  .lp-fn-section .loc-reveal-right > .fn-bubble:nth-child(7) { /* Leadership - navy, mid-center */
    top: 28% !important; left: 24% !important; right: auto !important; bottom: auto !important;
  }
  .fn-hover-hint { display: none !important; }
  .fn-tooltip { display: none !important; }
  .loc-reveal-left { width: 100% !important; }
  .fn-view-btn { display: none !important; }
  .fn-view-btn-mobile { display: inline-flex !important; }

  /* Location hero */
  .loc-hero-inner {
    grid-template-columns: 1fr !important;
    padding: 40px 20px !important;
  }

  /* Season strip scrollable on mobile */
  .season-cols {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Partner section */
  .lp-partner-cols {
    grid-template-columns: 1fr !important;
  }

  /* ── CHURCHES.HTML — stats band ── */
  .ch-stats-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
  }
  .ch-stat {
    padding: 20px 12px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  }
  .ch-stat:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.1) !important; }
  .ch-stat-num { font-size: 2rem !important; }

  /* Churches hero — already column layout, just pad it */
  .ch-hero-inner { padding-top: 40px !important; padding-bottom: 40px !important; }

  /* ── Leaders section padding ── */
  .leaders-section .layout-wide {
    padding-top: 28px !important;
    padding-bottom: 64px !important;
  }

  /* ── lv-strip (testimonials/leaders) — ensure no overflow ── */
  .film-strip-wrapper, .community-strip-wrapper {
    overflow: hidden !important;
  }
  .lv-strip {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  /* ── Leader card: photo top-centered, text full-width below ── */
  .lv-card {
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 22px 18px 20px !important;
    text-align: left !important;
  }
  .lv-avatar {
    width: 92px !important;
    height: 92px !important;
    flex-shrink: 0 !important;
    border: 3px solid var(--ph-border) !important;
  }
  .lv-body {
    width: 100% !important;
    flex: none !important;
  }
  .lv-quote { font-size: 17px !important; line-height: 1.4 !important; }
  .lv-name  { font-size: 17px !important; }
  .lv-role  { font-size: 17px !important; }

  /* ── HOPE CAUSES — mobile cause cards ── */
  #hope-causes { padding-top: 12px !important; padding-left: 6px !important; padding-right: 6px !important; }
  .cause-card .cause-icon { display: none !important; }
  .cause-card div > div:first-child { font-size: 17px !important; }
  .cause-card { padding-right: 15px !important; padding-left: 12px !important; }
  .cause-partner { display: none !important; }

  /* ── Counter: stack vertically so digit width never shifts label ── */
  .causes-counter-block {
    flex-direction: column !important;
    align-items: center !important;
    gap: 3px !important;
    margin-bottom: 22px !important;
  }
  .causes-counter-block .cause-count-num {
    font-size: 52px !important;
    line-height: 1 !important;
    min-width: unset !important;
  }
  /* Styled "IMPACTFUL CAUSES" label below the number */
  .causes-counter-block > span:last-child {
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    color: rgba(212,175,55,0.75) !important;
    font-family: 'Lato', sans-serif !important;
    border-top: 1px solid rgba(212,175,55,0.3) !important;
    padding-top: 5px !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }

  /* Top layout: stack on mobile */
  .hc-top-layout {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  #hope-causes .layout-wide > div > p { font-size: 18px !important; }
  #hope-causes .layout-wide > p { font-size: 13px !important; }
  .fn-sched-footer, .fs-footer { font-size: 13px !important; }
  .hc-photo-col { margin: 12px 0 !important; }

  /* Crop photo on mobile — cut bucket at top, start just above her head */
  .hc-photo-col img,
  .hc-modal-mobile-body [style*="border-radius:12px"] img {
    aspect-ratio: 4/3 !important;
    object-position: center 68% !important;
  }
  /* Logo grid: 2 columns on mobile */
  .hc-logos-grid {
    grid-template-columns: 1fr 1fr !important;
  }

}

/* ── HOPE CAUSES section layout ── */
.hc-top-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 0;
}
.hc-photo-col { align-self: start; margin-top: 52px; }
.hc-content-col { align-self: start; }
.hc-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

/* ── Coming Soon script annotation ── */
/* Film strip row labels — mobile only headers */
.ph-strip-row-label {
  display: none;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ph-blue-dark);
  margin: 0 0 6px;
}
@media (max-width: 768px) {
  .ph-strip-row-label { display: block; }
}

.cs-disclaimer {
  font-size: 13px;
  color: rgba(13,37,64,0.45);
  margin: 4px 0 0 2px;
  font-style: italic;
  letter-spacing: 0.02em;
}
.cs-annotation-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  pointer-events: none;
  user-select: none;
}
.cs-text-svg {
  overflow: visible;
  display: block;
}
.cs-label {
  font-family: 'Caveat', cursive;
  font-size: 30px;
  font-weight: 700;
  fill: var(--ph-blue);
}
