/* ============================================================
   styles.css — ZPMOM Page-Specific Styles
   Loaded globally via layouts/main.blade.php after brand.css.
   Hero image paths are relative to public/css/ → ../assets/images/
   ============================================================ */

/* ----------------------------------------------------------
   TOPBAR
---------------------------------------------------------- */
.site-topbar {
  background-color: #0b0b18;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 36px;
}
.topbar-info {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55%;
}
.topbar-icon { font-size: 0.75rem; flex-shrink: 0; }
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.topbar-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: var(--font-size-xs);
  font-weight: var(--fw-medium);
  white-space: nowrap;
  transition: var(--transition-base);
}
.topbar-whatsapp i  {  font-size: 0.95rem; }
.topbar-whatsapp:hover { color: #fff; }
.topbar-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.topbar-socials a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition-base);
}
.topbar-socials a:hover { color: #fff; }

/* ----------------------------------------------------------
   NAVBAR — CART ICON
---------------------------------------------------------- */

.navbar-cart-icon {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  transition: var(--transition-base);
}
.navbar-cart-icon:hover { color: #fff; }
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-accent-red);
  color: #fff;
  font-size: 0.6rem;
  font-weight: var(--fw-bold);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ----------------------------------------------------------
   STORE — SHARED
---------------------------------------------------------- */

.store-section { background: var(--color-bg-light); }
.store-page-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
}
.store-page-count {
  font-size: var(--font-size-2xl);
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
}
.store-breadcrumb {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.store-breadcrumb a { color: var(--color-accent-blue); text-decoration: none; }
.store-breadcrumb a:hover { text-decoration: underline; }
.store-breadcrumb span { color: var(--color-text-muted); }

/* ----------------------------------------------------------
   STORE — FILTER BAR
---------------------------------------------------------- */

.store-filter-bar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.store-search-form { display: flex; align-items: center; gap: 0.5rem; }
.store-search-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}
.store-search-input {
  border: none;
  outline: none;
  padding: 0.55rem 0.9rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-dark);
  background: transparent;
  min-width: 220px;
}
.store-search-btn {
  background: transparent;
  border: none;
  padding: 0.55rem 0.75rem;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition-base);
}
.store-search-btn:hover { color: var(--color-text-dark); }
.store-clear-link {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.store-clear-link:hover { color: var(--color-accent-red); }
.store-cats { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.store-cat-pill {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition-base);
}
.store-cat-pill:hover { border-color: var(--color-accent-red); color: var(--color-accent-red); }
.store-cat-pill.active { background: var(--color-accent-red); border-color: var(--color-accent-red); color: #fff; }

/* ----------------------------------------------------------
   STORE — PRODUCT CARD
---------------------------------------------------------- */

.product-card {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  transition: var(--transition-base);
}
.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.product-card-img-link {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--color-bg-section);
}
.product-card-img-link img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card-img-link img { transform: scale(1.05); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-section);
  color: var(--color-text-muted);
  font-size: 2.5rem;
}
.product-img-placeholder.large { font-size: 4rem; border-radius: var(--radius-xl); }
.product-sale-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--color-accent-red); color: #fff;
  font-size: var(--font-size-xs); font-weight: var(--fw-bold);
  padding: 0.2rem 0.6rem; border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.product-out-of-stock-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: var(--fw-semibold);
  font-size: var(--font-size-sm); text-transform: uppercase;
}
.product-card-body { padding: 1rem; }
.product-cat-label {
  font-size: var(--font-size-xs); font-weight: var(--fw-semibold);
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--color-accent-blue); display: block; margin-bottom: 0.35rem;
}
.product-name {
  font-size: var(--font-size-base); font-weight: var(--fw-semibold);
  color: var(--color-text-dark); margin-bottom: 0.5rem; line-height: 1.4;
}
.product-name a { color: inherit; text-decoration: none; }
.product-name a:hover { color: var(--color-accent-red); }
.product-price-row { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.product-price { font-size: var(--font-size-lg); font-weight: var(--fw-bold); color: var(--color-text-dark); }
.product-price-original { font-size: var(--font-size-sm); color: var(--color-text-muted); text-decoration: line-through; }
.product-discount-pct { font-size: var(--font-size-xs); color: var(--color-accent-red); font-weight: var(--fw-semibold); }

/* ----------------------------------------------------------
   STORE — PRODUCT DETAIL
---------------------------------------------------------- */

.product-gallery { display: flex; flex-direction: column; gap: 0.75rem; }
.product-main-img {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; aspect-ratio: 1/1; background: var(--color-bg-section);
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.product-thumb {
  width: 72px; height: 72px; border-radius: var(--radius-lg);
  overflow: hidden; border: 2px solid transparent;
  cursor: pointer; padding: 0; background: var(--color-bg-section);
  transition: var(--transition-base);
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-thumb.active, .product-thumb:hover { border-color: var(--color-accent-red); }
.product-detail-name { font-size: var(--font-size-4xl); font-weight: var(--fw-bold); color: var(--color-text-dark); line-height: var(--lh-tight); }
.product-detail-price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.5rem; }
.product-detail-price { font-size: var(--font-size-3xl); font-weight: var(--fw-bold); color: var(--color-text-dark); }
.product-stock-ok { color: #16a34a; font-size: var(--font-size-sm); font-weight: var(--fw-medium); }
.product-stock-out { color: var(--color-accent-red); font-size: var(--font-size-sm); font-weight: var(--fw-medium); }
.product-description { border-top: 1px solid var(--color-border-light); padding-top: 1.5rem; }
.product-desc-heading { font-size: var(--font-size-base); font-weight: var(--fw-semibold); text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-dark); margin-bottom: 0.75rem; }
.product-desc-body { font-size: var(--font-size-sm); color: var(--color-text-muted); line-height: 1.8; }

/* Qty control */
.qty-row { display: flex; align-items: center; gap: 1rem; }
.qty-label { font-size: var(--font-size-sm); font-weight: var(--fw-medium); color: var(--color-text-muted); }
.qty-control { display: inline-flex; align-items: center; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn { background: #f9fafb; border: none; width: 36px; height: 38px; font-size: 1.1rem; cursor: pointer; color: var(--color-text-dark); transition: var(--transition-base); }
.qty-btn:hover { background: #f1f3f5; }
.qty-input { width: 52px; height: 38px; border: none; border-left: 1.5px solid var(--color-border-light); border-right: 1.5px solid var(--color-border-light); text-align: center; font-size: var(--font-size-sm); font-weight: var(--fw-semibold); color: var(--color-text-dark); appearance: textfield; -moz-appearance: textfield; }
.qty-input::-webkit-inner-spin-button, .qty-input::-webkit-outer-spin-button { display: none; }

/* ----------------------------------------------------------
   STORE — CART PAGE
---------------------------------------------------------- */

.cart-empty { color: var(--color-text-muted); }
.cart-empty-icon { font-size: 4rem; color: var(--color-border-light); }
.cart-table { display: flex; flex-direction: column; gap: 0; }
.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border-light);
}
@media (max-width: 575.98px) {
  .cart-row {
    grid-template-columns: 64px 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.5rem;
  }
  .cart-item-img { width: 64px; height: 64px; grid-row: span 2; }
  .cart-row > .cart-item-info { grid-column: 2; grid-row: 1; }
  .cart-row > .cart-qty-control { grid-column: 2; grid-row: 2; }
  .cart-row > .cart-item-subtotal { display: none; }
  .cart-row > .cart-remove-btn { grid-column: 3; grid-row: 1; align-self: start; }
  .cart-row > .cart-item-price { display: none; }
}
.cart-item-img { width: 80px; height: 80px; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-bg-section); flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); }
.cart-img-placeholder.sm { width: 48px; height: 48px; border-radius: var(--radius-md); }
.cart-item-name { font-weight: var(--fw-semibold); color: var(--color-text-dark); text-decoration: none; font-size: var(--font-size-sm); }
.cart-item-name:hover { color: var(--color-accent-red); }
.cart-item-price { font-size: var(--font-size-xs); color: var(--color-text-muted); margin-top: 0.25rem; }
.cart-item-subtotal { font-weight: var(--fw-bold); color: var(--color-text-dark); white-space: nowrap; }
.cart-remove-btn { background: none; border: none; color: var(--color-text-muted); cursor: pointer; padding: 0.4rem; font-size: 1rem; transition: var(--transition-base); }
.cart-remove-btn:hover { color: var(--color-accent-red); }
.cart-summary { background: var(--color-bg-section); border: 1px solid var(--color-border-light); border-radius: var(--radius-xl); padding: 1.75rem; }
.cart-summary-title { font-size: var(--font-size-xl); font-weight: var(--fw-bold); color: var(--color-text-dark); margin-bottom: 1.25rem; }
.cart-summary-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; font-size: var(--font-size-sm); color: var(--color-text-muted); }
.cart-summary-total { font-size: var(--font-size-lg); font-weight: var(--fw-bold); color: var(--color-text-dark); margin-top: 0.25rem; }
.cart-summary-divider { border: none; border-top: 1px solid var(--color-border-light); margin: 0.75rem 0; }

/* ----------------------------------------------------------
   STORE — CHECKOUT
---------------------------------------------------------- */

.checkout-section { margin-bottom: 2rem; }
.checkout-section-title { font-size: var(--font-size-lg); font-weight: var(--fw-semibold); color: var(--color-text-dark); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--color-border-light); }
.checkout-items-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.checkout-item-row { display: flex; align-items: center; gap: 0.75rem; }
.checkout-item-img { position: relative; flex-shrink: 0; }
.checkout-item-img img { width: 48px; height: 48px; border-radius: var(--radius-md); object-fit: cover; }
.checkout-item-qty { position: absolute; top: -6px; right: -6px; background: var(--color-text-muted); color: #fff; font-size: 0.6rem; font-weight: bold; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.checkout-item-name { flex: 1; font-size: var(--font-size-sm); color: var(--color-text-dark); font-weight: var(--fw-medium); }
.checkout-item-price { font-size: var(--font-size-sm); font-weight: var(--fw-bold); color: var(--color-text-dark); white-space: nowrap; }
.discount-applied { background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius-sm); padding: 0.5rem 0.75rem; }
.discount-code-tag { font-size: var(--font-size-sm); font-weight: var(--fw-semibold); color: #15803d; }
.discount-remove-btn { background: none; border: none; color: var(--color-text-muted); font-size: var(--font-size-xs); cursor: pointer; text-decoration: underline; }
.checkout-secure-badges { display: flex; align-items: center; gap: 0.5rem; justify-content: center; font-size: var(--font-size-xs); color: var(--color-text-muted); }

/* ----------------------------------------------------------
   ORDERS — TRACK FORM
---------------------------------------------------------- */

.order-track-card { background: #fff; border: 1px solid var(--color-border-light); border-radius: var(--radius-2xl); padding: 2.5rem; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

/* ----------------------------------------------------------
   ORDERS — DETAIL PAGE
---------------------------------------------------------- */

.order-detail-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--color-border-light); }
.order-detail-label { font-size: var(--font-size-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); margin-bottom: 0.25rem; }
.order-detail-number { font-size: var(--font-size-3xl); font-weight: var(--fw-bold); color: var(--color-text-dark); }
.order-detail-card { background: #fff; border: 1px solid var(--color-border-light); border-radius: var(--radius-xl); padding: 1.5rem; }
.order-detail-card-title { font-size: var(--font-size-base); font-weight: var(--fw-semibold); color: var(--color-text-dark); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--color-border-light); }
.order-item-row { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--color-bg-section); }
.order-item-img { width: 56px; height: 56px; border-radius: var(--radius-md); overflow: hidden; background: var(--color-bg-section); flex-shrink: 0; }
.order-item-img img { width: 100%; height: 100%; object-fit: cover; }
.order-item-name { font-weight: var(--fw-semibold); font-size: var(--font-size-sm); color: var(--color-text-dark); }
.order-item-meta { font-size: var(--font-size-xs); color: var(--color-text-muted); margin-top: 0.2rem; }
.order-item-subtotal { font-weight: var(--fw-bold); white-space: nowrap; font-size: var(--font-size-sm); }
.order-totals .order-total-row { display: flex; justify-content: space-between; align-items: center; font-size: var(--font-size-sm); color: var(--color-text-muted); margin-bottom: 0.5rem; }
.order-grand-total { font-size: var(--font-size-base); font-weight: var(--fw-bold); color: var(--color-text-dark); }
.order-info-label { font-size: var(--font-size-xs); color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.order-info-value { font-size: var(--font-size-sm); color: var(--color-text-dark); font-weight: var(--fw-medium); }

/* Status / payment badges */
.order-status-badge, .order-payment-badge {
  display: inline-block; padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs); font-weight: var(--fw-semibold);
  text-transform: capitalize; letter-spacing: 0.04em;
}
.order-status-pending    { background: #fef9c3; color: #854d0e; }
.order-status-processing { background: #dbeafe; color: #1e40af; }
.order-status-shipped    { background: #e0e7ff; color: #3730a3; }
.order-status-delivered  { background: #dcfce7; color: #15803d; }
.order-status-cancelled,
.order-status-refunded   { background: #fee2e2; color: #991b1b; }
.payment-pending  { background: #fef9c3; color: #854d0e; }
.payment-paid     { background: #dcfce7; color: #15803d; }
.payment-failed,
.payment-refunded { background: #fee2e2; color: #991b1b; }

/* Timeline */
.order-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 1rem; padding-bottom: 1.25rem; position: relative; }
.timeline-item:not(:last-child)::before { content: ''; position: absolute; left: 7px; top: 18px; bottom: 0; width: 1px; background: var(--color-border-light); }
.timeline-dot { width: 15px; height: 15px; border-radius: 50%; background: var(--color-border-light); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--color-border-light); flex-shrink: 0; margin-top: 2px; }
.timeline-dot-processing { background: #3b82f6; box-shadow: 0 0 0 2px #bfdbfe; }
.timeline-dot-shipped    { background: #6366f1; box-shadow: 0 0 0 2px #e0e7ff; }
.timeline-dot-delivered  { background: #22c55e; box-shadow: 0 0 0 2px #bbf7d0; }
.timeline-dot-cancelled,
.timeline-dot-refunded   { background: #ef4444; box-shadow: 0 0 0 2px #fee2e2; }
.timeline-dot-pending    { background: #eab308; box-shadow: 0 0 0 2px #fef9c3; }
.timeline-content { flex: 1; }
.timeline-status { font-size: var(--font-size-sm); font-weight: var(--fw-semibold); color: var(--color-text-dark); text-transform: capitalize; }
.timeline-note { font-size: var(--font-size-xs); color: var(--color-text-muted); margin-top: 0.2rem; }
.timeline-time { font-size: var(--font-size-xs); color: var(--color-text-muted); margin-top: 0.25rem; }

/* Orders list table */
.orders-table { border: 1px solid var(--color-border-light); border-radius: var(--radius-xl); overflow: hidden; }
.orders-table-head { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 80px; gap: 1rem; padding: 0.75rem 1.25rem; background: var(--color-bg-section); font-size: var(--font-size-xs); font-weight: var(--fw-semibold); text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); }
.orders-table-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 80px; gap: 1rem; padding: 1rem 1.25rem; border-top: 1px solid var(--color-border-light); align-items: center; font-size: var(--font-size-sm); }
.orders-table-row:hover { background: var(--color-bg-section); }
.orders-order-num { font-weight: var(--fw-semibold); color: var(--color-text-dark); }

@media (max-width: 767.98px) {
  .orders-table-head { display: none; }
  .orders-table-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 0.35rem 0.75rem;
    padding: 1rem;
  }
  .orders-table-row > .orders-order-num { grid-column: 1; grid-row: 1; }
  .orders-table-row > span:nth-child(2) { grid-column: 2; grid-row: 1; font-size: var(--font-size-xs); color: var(--color-text-muted); }
  .orders-table-row > span:nth-child(3) { grid-column: 1; grid-row: 2; }
  .orders-table-row > span:nth-child(4) { grid-column: 2; grid-row: 2; }
  .orders-table-row > span:nth-child(5) { grid-column: 1; grid-row: 3; font-weight: var(--fw-bold); }
  .orders-table-row > span:last-child   { grid-column: 2; grid-row: 3; }
}

/* ----------------------------------------------------------
   GSAP ANIMATION UTILITY
   GSAP sets initial opacity via JS — this prevents any flash
   before the script runs on slower connections.
---------------------------------------------------------- */
.anim-fade-up { will-change: transform, opacity; }

/* ----------------------------------------------------------
   HERO BACKGROUNDS
   Each page has a distinct hero image.
---------------------------------------------------------- */

/* Background images live on .hero-bg-parallax, not the section itself */
.home-hero  { min-height: 580px; }
.page-hero  { min-height: 400px; }

/* Parallax background layer — extends beyond hero top/bottom so it
   has room to travel without showing gaps at the edges */
.hero-bg-parallax {
  position: absolute;
  top: -30%;
  left: 0;
  right: 0;
  bottom: -30%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}
.home-hero .hero-bg-parallax { background-image: url('../assets/images/hero-home.jpg'); }
.page-hero .hero-bg-parallax { background-image: url('../assets/images/hero-giving.jpg'); }

/* Overlay and content must be above the parallax layer */
.hero-section .overlay-darker,
.hero-section .overlay-dark { z-index: 1; }
.hero-section .hero-content  { position: relative; z-index: 2; }

/* Livestream uses a solid black hero (no image) */
.livestream-hero {
  background-color: var(--color-bg-black);
  padding: 5rem 1rem 3rem;
  text-align: center;
}
.livestream-hero h1 {
  font-size: var(--font-size-5xl);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
}

/* ----------------------------------------------------------
   LIVESTREAM — LIVE PLAYERS AREA
---------------------------------------------------------- */

.live-area {
  background-color: var(--color-bg-black);
  padding: 2rem 0 4rem;
}

/* No-stream placeholder */
.live-placeholder {
  text-align: center;
  padding: 5rem 1rem;
  color: rgba(255, 255, 255, 0.35);
}
.live-placeholder .bi {
  font-size: 3.5rem;
}

/* YouTube embed wrapper */
/* TV-bezel wrap */
.live-embed-wrap {
  background: #080808;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #1c1c1c;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 40px 100px rgba(0, 0, 0, 0.95),
    0 0 80px rgba(0, 0, 0, 0.6);
}
.live-embed-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: #111;
  border-bottom: 1px solid #1e1e1e;
}
.live-embed-header::after {
  content: '';
  flex: 1;
}
.live-platform-label {
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
}
.live-embed-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.live-embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Social redirect cards (Facebook, X, Instagram) */
.live-stream-card {
  display: block;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-base);
  height: 100%;
}
.live-stream-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

/* Thumbnail area */
.live-stream-thumb {
  position: relative;
  height: 140px;
  background: #111;
  overflow: hidden;
}
.live-stream-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}
.live-stream-card:hover .live-stream-thumb img {
  transform: scale(1.04);
}

/* Platform icon placeholder (for non-YouTube) */
.live-stream-thumb-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.15);
}

/* Play overlay */
.live-stream-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: var(--transition-base);
}
.live-stream-card:hover .live-stream-play-overlay {
  opacity: 1;
}
.live-stream-play-overlay .bi {
  font-size: 4rem;
  color: #fff;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.7));
}

/* Footer strip */
.live-stream-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.live-platform-label {
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.7);
}
.live-stream-watch {
  font-size: var(--font-size-xs);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  transition: var(--transition-base);
}
.live-stream-card:hover .live-stream-watch {
  color: #fff;
}

/* "Also streaming on" label */
.live-also-label {
  font-size: var(--font-size-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-bottom: 1rem;
}

/* ----------------------------------------------------------
   HERO TYPOGRAPHY (shared h1 sizing per page)
---------------------------------------------------------- */

.home-hero h1 {
  font-size: var(--font-size-6xl);
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
  max-width: 1040px;
}
.page-hero h1 {
  font-size: var(--font-size-5xl);
  font-weight: var(--fw-medium);
}

/* ----------------------------------------------------------
   HOME PAGE
---------------------------------------------------------- */

/* About section — framed portrait */
.about-section-frame {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-section-img {
  width: 100%;
  height: auto;
  display: block;
}


/* Legacy about-img (used on About page bio section) */
.about-img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
}
.about-img-placeholder {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 420px;
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
}

/* Membership cards */
.membership-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
}
.membership-card img { width: 100%; height: 100%; object-fit: cover; }
.membership-card .mc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 30%, rgba(0,0,0,0.15) 100%);
}
.membership-card .mc-title {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  font-size: var(--font-size-xl);
  font-weight: var(--fw-medium);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  line-height: 1.3;
}

/* Other expressions cards */
.expression-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  height: 400px;
  box-shadow: var(--shadow-card);
}
.expression-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.expression-card:hover img { transform: scale(1.04); }
.expression-card .ec-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 40%, transparent 100%);
}
.expression-card .ec-text { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; }
.expression-card .ec-text h6 {
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: var(--font-size-sm);
  margin-bottom: 0.1rem;
}
.expression-card .ec-text small {
  color: rgba(255,255,255,0.65);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

/* Media CTA card (gradient section) */
.media-cta-card {
  background-color: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(4px);
}

/* Blog preview section */
.blog-section { background-color: #1a0a0a; }
.blog-featured-img { border-radius: var(--radius-lg); width: 100%; height: 320px; object-fit: cover; }
.blog-thumb         { border-radius: var(--radius-md); width: 100%; height: 140px; object-fit: cover; }
.blog-category {
  font-size: var(--font-size-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-accent-red);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}
.blog-title {
  font-size: var(--font-size-lg);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: 1.35;
}
.blog-title-sm {
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  line-height: 1.4;
}
.blog-excerpt {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
}

/* ----------------------------------------------------------
   WATCH LIVE / MEDIA CTA SECTION (home page)
---------------------------------------------------------- */

.watch-live-section {
  padding: var(--section-py) 0;
  background: var(--gradient-blue);
}
.watch-live-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.watch-live-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.2) 100%
  );
}
.watch-live-content {
  position: relative;
  z-index: 2;
  padding: 3rem 3.5rem;
  max-width: 680px;
}
.watch-live-heading {
  font-size: var(--font-size-5xl);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: var(--lh-tight);
  margin: 0;
}

@media (max-width: 767.98px) {
  .watch-live-card    { min-height: 320px; }
  .watch-live-content { padding: 2rem 1.5rem; }
  .watch-live-heading { font-size: var(--font-size-3xl); }
}

/* ----------------------------------------------------------
   VISION & MISSION / COMMUNITY SECTION (home page)
---------------------------------------------------------- */

.vision-section {
  background: linear-gradient(180deg, #5a0e0e 0%, #1c0000 55%, #0d0000 100%);
}
.vision-top {
  padding-top: var(--section-py);
  padding-bottom: 3rem;
}
.vision-heading {
  font-size: var(--font-size-4xl);
  font-weight: var(--fw-bold);
  color: #fff;
  margin-bottom: 1rem;
}
.vision-subtext {
  color: rgba(255,255,255,0.72);
  font-size: var(--font-size-sm);
  max-width: 640px;
  margin: 0 auto;
  line-height: var(--lh-normal);
}

/* Staggered image trio */
.vision-images-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 4rem;
  perspective: 1400px;
}
.vision-img-side {
  flex: 0 0 354px;
  transform-style: preserve-3d;
}
.vision-img-side img {
  width: 100%;
  height: 403px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.vision-img-side img:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.vision-img-center {
  flex: 0 0 419px;
}
.vision-img-center img {
  width: 100%;
  height: 683px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.vision-img-center img:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.4);
}

/* Community subsection */
.vision-bottom {
  padding-bottom: var(--section-py);
}
.vision-label {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}
.celebrate-heading {
  font-size: var(--font-size-5xl);
  font-weight: var(--fw-extrabold);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: var(--lh-tight);
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .vision-img-side    { display: none; }
  .vision-img-center  { flex: 0 0 100%; max-width: 300px; }
  .vision-img-center img { height: 320px; }
  .celebrate-heading  { font-size: var(--font-size-4xl); }
}

/* ----------------------------------------------------------
   ABOUT PAGE
---------------------------------------------------------- */

/* Editorial photos (both blocks) */
.about-editorial-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
}

/* Page heading (replaces hero h1) */
.about-page-heading {
  font-size: var(--font-size-5xl);
  font-weight: var(--fw-medium);
  color: var(--color-text-dark);
  line-height: var(--lh-tight);
  margin-bottom: 0.6rem;
}

/* Blue subtitle line */
.about-subtitle {
  font-size: var(--font-size-lg);
  font-weight: var(--fw-medium);
  color: var(--color-accent-blue);
  margin-bottom: 1.75rem;
}

/* Body paragraphs */
.about-body {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: var(--lh-normal);
  margin-bottom: 1.25rem;
}

/* Inline links */
.about-link {
  color: var(--color-accent-blue);
  text-decoration: none;
  font-weight: var(--fw-medium);
  transition: var(--transition-base);
}
.about-link:hover { text-decoration: underline; }

/* Founder signature */
.founder-sig {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.founder-sig-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}
.founder-sig-name {
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-dark);
}
.founder-sig-title {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

@media (max-width: 767.98px) {
  .about-page-heading { font-size: var(--font-size-4xl); }
}

/* Mission / Vision cards */
.mv-card {
  border-left: 4px solid var(--color-accent-red);
  padding: 1.5rem 1.75rem;
  background: var(--color-bg-section);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  height: 100%;
}
.mv-card h4 { font-weight: var(--fw-bold); color: var(--color-text-dark); margin-bottom: 0.75rem; }
.mv-card p  { color: var(--color-text-muted); font-size: var(--font-size-sm); line-height: var(--lh-normal); margin: 0; }

/* Leadership bio portrait */
.bio-img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}
.bio-img-placeholder {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 480px;
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
}

/* Ministry values section */
.values-section { background-color: var(--color-bg-dark); }
.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-dark);
  height: 100%;
  transition: var(--transition-base);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.value-card .value-icon {
  width: 64px;
  height: 64px;
  background: rgba(224,49,49,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--color-accent-red);
}
.value-card h5 { font-weight: var(--fw-bold); color: var(--color-text-primary); margin-bottom: 0.75rem; }
.value-card p  { font-size: var(--font-size-sm); color: var(--color-text-secondary); line-height: var(--lh-normal); margin: 0; }

/* Stats strip */
.stat-item   { text-align: center; padding: 1.5rem 1rem; }
.stat-number { font-size: var(--font-size-4xl); font-weight: var(--fw-extrabold); color: var(--color-accent-red); line-height: 1; margin-bottom: 0.4rem; }
.stat-label  { font-size: var(--font-size-sm); color: var(--color-text-secondary); text-transform: uppercase; letter-spacing: var(--ls-wide); }

/* ----------------------------------------------------------
   CONTACT PAGE
---------------------------------------------------------- */

.contact-info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--color-accent-blue);
  font-size: 1.2rem;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}
.contact-social a { color: var(--color-text-muted); font-size: 1.1rem; margin-right: 0.75rem; transition: var(--transition-base); }
.contact-social a:hover { color: var(--color-accent-blue); }

/* ----------------------------------------------------------
   LIVESTREAM PAGE
---------------------------------------------------------- */

.video-area { background-color: var(--color-bg-black); padding: 0 0 4rem; }
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #0d0d0d;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
}
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  gap: 1rem;
}
.video-placeholder i { font-size: 3.5rem; opacity: 0.4; }
.platforms-section { background-color: var(--color-bg-black); padding: var(--section-py) 0; }
.platform-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--color-bg-card);
  cursor: pointer;
  transition: var(--transition-base);
}
.platform-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.platform-card img { width: 100%; height: 200px; object-fit: cover; display: block; transition: var(--transition-slow); }
.platform-card:hover img { transform: scale(1.04); }
.platform-card .pc-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.platform-card .pc-info { padding: 0.85rem 1rem; background: var(--color-bg-card); }
.platform-card .pc-title { font-size: var(--font-size-sm); font-weight: var(--fw-medium); color: var(--color-text-primary); line-height: 1.4; }

/* ----------------------------------------------------------
   MEDIA LIBRARY — SEARCH BAR
---------------------------------------------------------- */

.media-search-wrap {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  max-width: 560px;
}
.media-search-inner {
  flex: 1;
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0 0.5rem 0 1rem;
}
.media-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  padding: 0.7rem 0;
}
.media-search-input::placeholder { color: rgba(255,255,255,0.35); }
.media-search-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-base);
}
.media-search-btn:hover { color: var(--color-text-primary); }
.media-filter-toggle {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.6);
  padding: 0.7rem 0.9rem;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-base);
  line-height: 1;
}
.media-filter-toggle:hover { color: var(--color-text-primary); border-color: rgba(255,255,255,0.3); }
.media-filter-dropdown {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.1);
}
.media-filter-dropdown .dropdown-item { color: var(--color-text-secondary); font-size: var(--font-size-sm); }
.media-filter-dropdown .dropdown-item:hover,
.media-filter-dropdown .dropdown-item.active { background: rgba(255,255,255,0.06); color: var(--color-text-primary); }

/* ----------------------------------------------------------
   MEDIA LIBRARY — VIDEO CARDS (v2)
---------------------------------------------------------- */

.media-card-link { text-decoration: none; display: block; }
.media-card-v2 { background: transparent; }
.media-card-thumb {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
}
.media-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.media-card-link:hover .media-card-thumb img { transform: scale(1.04); }
.media-play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(0,0,0,0.4);
  transition: var(--transition-base);
}
.media-play-badge i { font-size: 2.5rem; color: #fff; }
.media-card-link:hover .media-play-badge { opacity: 1; }
.media-card-info-v2 { padding: 0.85rem 0 0; }
.media-card-date {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.35rem;
}
.media-card-title-v2 {
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  line-height: 1.45;
}

/* ----------------------------------------------------------
   VIDEO DETAIL PAGE
---------------------------------------------------------- */

.video-detail-section {
  background-color: var(--color-bg-dark);
  padding: 2.5rem 0 4rem;
}
.video-detail-back { margin-bottom: 1.75rem; }
.video-back-link {
  color: rgba(255,255,255,0.5);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: var(--transition-base);
}
.video-back-link:hover { color: var(--color-text-primary); }
.video-embed-outer { margin-bottom: 2rem; }
.video-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-embed-thumb { cursor: pointer; }
.video-embed-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.video-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 5rem;
  text-decoration: none;
  background: rgba(0,0,0,0.3);
  transition: var(--transition-base);
}
.video-thumb-play:hover { background: rgba(0,0,0,0.5); color: #fff; }
.video-detail-meta {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.video-detail-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin-bottom: 1.5rem;
  max-width: 820px;
}
.video-detail-body {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  max-width: 820px;
}
.related-videos-section {
  background-color: var(--color-bg-dark);
  padding: 3rem 0 5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.related-videos-heading {
  font-size: var(--font-size-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}
.related-videos-sub {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.5);
}

/* ----------------------------------------------------------
   BLOG LISTING PAGE
---------------------------------------------------------- */

.blog-editorial-section {
  background: #fff;
  padding: 4rem 0 2rem;
}
.blog-editorial-row { padding: 2.5rem 0; }
.blog-editorial-img-wrap {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  background: #f0f0f0;
}
.blog-editorial-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.blog-editorial-img-wrap:hover img { transform: scale(1.04); }
.blog-editorial-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e8e8;
  font-size: 3rem;
  color: #aaa;
}
.blog-editorial-content {
  padding-left: 2.5rem;
}
.blog-cat-label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-blue);
  margin-bottom: 0.5rem;
}
.blog-editorial-date {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.blog-editorial-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  line-height: var(--lh-tight);
  margin-bottom: 1rem;
}
.blog-editorial-title a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}
.blog-editorial-title a:hover { color: var(--color-accent-blue); }
.blog-editorial-excerpt {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.blog-editorial-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 0;
}

/* ----------------------------------------------------------
   BLOG — MORE STORIES GRID
---------------------------------------------------------- */

.blog-stories-section { background: #fff; padding: 3rem 0 5rem; }
.blog-stories-heading {
  font-size: var(--font-size-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  margin-bottom: 0.4rem;
}
.blog-stories-sub {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.blog-small-card-link { text-decoration: none; display: block; }
.blog-small-card {
  padding: 1.25rem 0;
  border-bottom: 1px solid #e5e7eb;
  height: 100%;
}
.blog-small-cat {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-blue);
  margin-bottom: 0.5rem;
}
.blog-small-title {
  font-size: var(--font-size-base);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  line-height: 1.4;
  margin-bottom: 0.6rem;
  transition: var(--transition-base);
}
.blog-small-card-link:hover .blog-small-title { color: var(--color-accent-blue); }
.blog-small-author {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}
.blog-small-date {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: 0;
}

/* ----------------------------------------------------------
   PAGINATION
---------------------------------------------------------- */
.pagination {
  gap: 0.25rem;
  flex-wrap: wrap;
}
.page-item .page-link {
  background: transparent;
  border: 1.5px solid var(--color-border-light);
  color: var(--color-text-dark);
  font-size: var(--font-size-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md) !important;
  padding: 0 0.85rem;
  transition: var(--transition-base);
}
.page-item .page-link:hover {
  background: var(--color-bg-section);
  border-color: var(--color-text-dark);
  color: var(--color-text-dark);
}
.page-item.active .page-link {
  background: var(--color-accent-red);
  border-color: var(--color-accent-red);
  color: #fff;
  box-shadow: 0 2px 10px rgba(224, 49, 49, 0.35);
}
.page-item.active .page-link:hover {
  background: #c02828;
  border-color: #c02828;
}
.page-item.disabled .page-link {
  background: transparent;
  border-color: var(--color-border-light);
  color: var(--color-text-muted);
  cursor: not-allowed;
  opacity: 0.5;
}

/* ----------------------------------------------------------
   BLOG SINGLE PAGE
---------------------------------------------------------- */

.blog-single-section { background: #fff; padding: 4rem 0 5rem; }
.blog-single-header { text-align: center; max-width: 780px; margin: 0 auto 2.5rem; }
.blog-single-cat {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-blue);
  margin-bottom: 1rem;
}
.blog-single-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  line-height: var(--lh-tight);
  margin-bottom: 1rem;
}
.blog-single-meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.blog-single-meta-sep { opacity: 0.4; }
.blog-single-img-wrap {
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.blog-single-img { width: 100%; height: auto; display: block; }
.blog-article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: var(--font-size-base);
  line-height: 1.85;
  color: #374151;
}
.blog-article-body h2,
.blog-article-body h3 {
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin: 2rem 0 1rem;
  font-size: var(--font-size-lg);
  letter-spacing: 0.04em;
}
.blog-article-body p { margin-bottom: 1.25rem; }
.blog-article-body img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
}
.blog-article-body blockquote {
  border-left: 4px solid var(--color-accent-blue);
  background: #eff6ff;
  padding: 1rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.75rem 0;
  color: #374151;
  font-style: italic;
}
.blog-article-body a {
  color: var(--color-accent-blue);
  text-decoration: underline;
}
.blog-article-body a:has(img) {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  color: transparent !important;
  text-decoration: none;
  pointer-events: none;
}
.blog-single-tags {
  max-width: 720px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1.5px solid #d1d5db;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition-base);
}
.blog-tag:hover { border-color: var(--color-accent-blue); color: var(--color-accent-blue); }

/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */

/* ----------------------------------------------------------
   FOUNDER PAGE
---------------------------------------------------------- */

.founder-page-section {
  background-color: #0a0a0a;
  padding: 5rem 0 6rem;
}

.founder-photo-col {
  padding-right: 3rem;
}

.founder-photo-wrap {
  position: sticky;
  top: 6rem;
}

.founder-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-2xl);
  object-fit: cover;
}

.founder-bio-col {
  padding-left: 1rem;
}

.founder-label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.15em;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.founder-name {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin-bottom: 2rem;
}

.founder-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.founder-body p {
  font-size: var(--font-size-sm);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.founder-link {
  color: var(--color-accent-blue);
  text-decoration: none;
  font-weight: var(--fw-medium);
  transition: var(--transition-base);
}

.founder-link:hover {
  color: #74b4ff;
  text-decoration: underline;
}

.founder-sig-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-sig-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent-gold);
}

.founder-sig-name {
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-dark);
}

.founder-sig-role {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.2rem;
}

/* ----------------------------------------------------------
   NAVBAR — DROPDOWNS
---------------------------------------------------------- */
.navbar-dropdown-menu {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 0.4rem 0;
  min-width: 190px;
  margin-top: 0.35rem !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.navbar-dropdown-menu .dropdown-item {
  color: rgba(255,255,255,0.72);
  font-size: var(--font-size-sm);
  padding: 0.6rem 1.25rem;
  transition: var(--transition-base);
  background: transparent;
}
.navbar-dropdown-menu .dropdown-item:hover,
.navbar-dropdown-menu .dropdown-item:focus {
  background: rgba(255,255,255,0.07);
  color: #fff;
}
.navbar-dropdown-menu .dropdown-item.active {
  background: rgba(224,49,49,0.15);
  color: var(--color-accent-red);
}
/* Hover-open on desktop */
@media (min-width: 992px) {
  .navbar-brand-zpmom .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
  /* Bridge the gap so the menu doesn't vanish when the cursor crosses it */
  .navbar-brand-zpmom .navbar-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
  }
}

/* ----------------------------------------------------------
   NAVBAR — ACCOUNT / ICON BUTTONS
---------------------------------------------------------- */
.navbar-icon-btn {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  transition: var(--transition-base);
}
.navbar-icon-btn:hover { color: #fff; }

/* ----------------------------------------------------------
   AUTH PAGES
---------------------------------------------------------- */
.auth-section { min-height: 40vh; }
.auth-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.auth-field { margin-bottom: 1.25rem; }
.auth-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-dark);
  margin-bottom: 0.45rem;
}
.auth-input {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-dark);
  background: #f9fafb;
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition-base);
}
.auth-input:focus { border-color: var(--color-accent-red); background: #fff; }
.auth-input.is-invalid { border-color: #dc2626; }
.auth-error {
  display: block;
  font-size: var(--font-size-xs);
  color: #dc2626;
  margin-top: 0.3rem;
}
.auth-check-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  user-select: none;
}
.auth-notice {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: var(--radius-md);
  color: #1d4ed8;
  font-size: var(--font-size-sm);
  padding: 0.75rem 1rem;
}
.auth-switch {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 0;
}
.auth-switch-link {
  color: var(--color-accent-red);
  font-weight: var(--fw-semibold);
  text-decoration: none;
}
.auth-switch-link:hover { text-decoration: underline; }

/* ----------------------------------------------------------
   COMMENTS SECTION
---------------------------------------------------------- */
.comments-section { padding: 3.5rem 0; }
.comments-light   { background: var(--color-bg-light); }
.comments-dark    { background: var(--color-bg-dark); border-top: 1px solid rgba(255,255,255,0.07); }

.comments-heading {
  font-size: var(--font-size-xl);
  font-weight: var(--fw-semibold);
  margin-bottom: 2rem;
}
.comments-light .comments-heading { color: var(--color-text-dark); }
.comments-dark  .comments-heading { color: #fff; }

.comment-form { display: flex; flex-direction: column; gap: 0.75rem; }
.comment-form-row { display: flex; gap: 0.85rem; align-items: flex-start; }

.comment-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-accent-red); color: #fff;
  font-size: var(--font-size-sm); font-weight: var(--fw-bold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.comment-input-wrap { flex: 1; }
.comment-textarea {
  width: 100%; border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem; font-size: var(--font-size-sm);
  resize: vertical; outline: none; transition: border-color 0.2s;
}
.comments-light .comment-textarea { background: #fff; border: 1px solid var(--color-border-light); color: var(--color-text-dark); }
.comments-dark  .comment-textarea { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: #fff; }
.comment-textarea:focus { border-color: var(--color-accent-red); }
.comment-textarea.is-invalid { border-color: #dc3545; }
.comment-error { color: #dc3545; font-size: var(--font-size-xs); margin-top: 0.25rem; }

.comment-form-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-left: calc(38px + 0.85rem);
}
.comment-hint { font-size: var(--font-size-xs); }
.comments-light .comment-hint { color: var(--color-text-muted); }
.comments-dark  .comment-hint { color: rgba(255,255,255,0.4); }

.comment-sign-in-prompt {
  padding: 1rem 1.25rem; border-radius: var(--radius-md);
  font-size: var(--font-size-sm); margin-bottom: 2rem;
}
.comments-light .comment-sign-in-prompt { background: #f0f0f0; color: var(--color-text-muted); }
.comments-dark  .comment-sign-in-prompt { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.55); }
.comment-sign-in-prompt a { color: var(--color-accent-red); text-decoration: none; font-weight: var(--fw-medium); }

.comment-item { display: flex; gap: 0.85rem; padding: 1.25rem 0; }
.comments-light .comment-item { border-bottom: 1px solid var(--color-border-light); }
.comments-dark  .comment-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.comment-item:last-child { border-bottom: none; }

.comment-body-wrap { flex: 1; }
.comment-meta { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 0.4rem; }
.comment-author { font-size: var(--font-size-sm); font-weight: var(--fw-semibold); }
.comment-date   { font-size: var(--font-size-xs); }
.comments-light .comment-author { color: var(--color-text-dark); }
.comments-light .comment-date   { color: var(--color-text-muted); }
.comments-dark  .comment-author { color: #fff; }
.comments-dark  .comment-date   { color: rgba(255,255,255,0.4); }

.comment-text { font-size: var(--font-size-sm); line-height: var(--lh-normal); margin: 0; }
.comments-light .comment-text { color: var(--color-text-muted); }
.comments-dark  .comment-text { color: rgba(255,255,255,0.7); }

.comments-empty { font-size: var(--font-size-sm); padding: 1.5rem 0; }
.comments-light .comments-empty { color: var(--color-text-muted); }
.comments-dark  .comments-empty { color: rgba(255,255,255,0.4); }

.comments-alert-success {
  padding: 0.65rem 1rem; border-radius: var(--radius-md);
  font-size: var(--font-size-sm); margin-bottom: 1.25rem;
  background: rgba(34,197,94,0.12); color: #16a34a;
  border: 1px solid rgba(34,197,94,0.25);
}
.comments-dark .comments-alert-success { color: #4ade80; }

/* ----------------------------------------------------------
   ACCOUNT MESSAGES INBOX
---------------------------------------------------------- */
.account-messages-list { display: flex; flex-direction: column; gap: 1rem; }

.account-message-card {
  background: #fff;
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.account-message-card.is-unread {
  border-color: var(--color-accent-red);
  box-shadow: 0 0 0 4px rgba(220,38,38,0.06);
}

.account-message-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.account-message-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-red);
  flex-shrink: 0;
  margin-top: 4px;
}
.account-message-subject {
  font-size: var(--font-size-base);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
}
.account-message-meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  white-space: nowrap;
}

.account-message-body {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}
.account-message-body p { margin-bottom: 0.5rem; }
.account-message-body p:last-child { margin-bottom: 0; }

.account-message-preview {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.account-message-read-form { margin-top: 1rem; }
.account-message-read-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: var(--font-size-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-accent-red);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.account-message-read-btn:hover { opacity: 0.75; }
.account-message-read-at {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* ----------------------------------------------------------
   GALLERY SECTION (home page)
---------------------------------------------------------- */
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-size: var(--font-size-xs);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

@media (max-width: 991.98px) { .gallery-grid { columns: 2; } }
@media (max-width: 767.98px) { .gallery-grid { columns: 2; } }
@media (max-width: 479.98px) { .gallery-grid { columns: 2; column-gap: 0.5rem; } .gallery-item { margin-bottom: 0.5rem; } }

/* ----------------------------------------------------------
   PRELOADER
---------------------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--color-bg-black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-logo {
  width: 72px;
  height: auto;
  opacity: 0;
}

/* ----------------------------------------------------------
   PAGE TRANSITION OVERLAY
---------------------------------------------------------- */
#page-transition {
  position: fixed;
  inset: 0;
  background: var(--color-bg-black);
  z-index: 99998;
  transform: translateY(-100%);
  pointer-events: none;
}

/* ----------------------------------------------------------
   SCROLL PROGRESS BAR
---------------------------------------------------------- */
#scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: var(--color-accent-red);
  transform: scaleY(0);
  transform-origin: top;
  z-index: 9998;
  pointer-events: none;
}

/* ----------------------------------------------------------
   CUSTOM CURSOR  (pointer:fine only — hides on touch screens)
---------------------------------------------------------- */
@media (pointer: fine) {
  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99997;
    border-radius: 50%;
    will-change: transform;
  }
  .cursor-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    transform: translate(-50%, -50%);
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.12s ease;
  }
  .cursor-ring.is-hovering {
    border-color: var(--color-accent-red);
    background: rgba(224, 49, 49, 0.08);
    transform: translate(-50%, -50%) scale(1.55);
  }
}

/* ----------------------------------------------------------
   TEXT SPLIT — word stagger
   .sw  = outer clip wrapper  |  .swi = animated inner word
---------------------------------------------------------- */
.sw  { display: inline-block; overflow: hidden; vertical-align: bottom; line-height: inherit; }
.swi { display: inline-block; }

/* ----------------------------------------------------------
   IMAGE REVEAL (clip-path wipe on scroll)
---------------------------------------------------------- */
.img-reveal { overflow: hidden; }

/* ----------------------------------------------------------
   MOBILE HORIZONTAL SCROLL CARDS
---------------------------------------------------------- */
@media (max-width: 767.98px) {
  .cards-scroll-row {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }
  .cards-scroll-row::-webkit-scrollbar { display: none; }
  .cards-scroll-row > [class*="col-"] {
    min-width: 72vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */

@media (max-width: 767.98px) {
  .home-hero h1    { font-size: var(--font-size-3xl); }
  .about-hero h1,
  .contact-hero h1,
  .media-hero h1,
  .giving-hero h1  { font-size: var(--font-size-3xl); }
  .livestream-hero h1 { font-size: var(--font-size-3xl); }
  .about-img,
  .about-img-placeholder { height: 300px; }
  .bio-img,
  .bio-img-placeholder   { height: 320px; }
  .membership-card       { height: 270px; }

  /* Founder */
  .founder-page-section      { padding: 3rem 0 4rem; }
  .founder-photo-col         { padding-right: 0; margin-bottom: 2.5rem; }
  .founder-photo-wrap        { position: static; }
  .founder-bio-col           { padding-left: 0; }
  .founder-name              { font-size: var(--font-size-3xl); }

  /* Blog */
  .blog-editorial-content    { padding-left: 0; padding-top: 1.5rem; }
  .blog-editorial-title      { font-size: var(--font-size-xl); }
  .blog-single-title         { font-size: var(--font-size-2xl); }
  .blog-stories-heading      { font-size: var(--font-size-2xl); }

  /* Video */
  .video-detail-title        { font-size: var(--font-size-2xl); }
  .related-videos-heading    { font-size: var(--font-size-2xl); }

  /* Media search */
  .media-search-wrap         { max-width: 100%; }
}

@media (max-width: 575.98px) {
  /* Vision images: stack vertically on small phones */
  .vision-images-wrap        { flex-direction: column; gap: 1rem; align-items: center; }
  .vision-img-side           { width: 100%; height: 200px; }
  .vision-img-center         { width: 100%; height: 240px; margin: 0; }
  .vision-img-side img,
  .vision-img-center img     { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl); }

  /* Membership cards: square-ish on phones */
  .membership-card           { height: 244px; }

  /* Expression cards */
  .expression-card           { height: 300px; }

  /* Watch Live */
  .watch-live-card           { padding: 2rem 1.25rem; }
  .watch-live-heading        { font-size: var(--font-size-2xl); }

  /* Blog editorial: stack image above content */
  .blog-editorial-img-wrap   { aspect-ratio: 16/9; }
  .blog-editorial-content    { padding-left: 0; padding-top: 1.25rem; }
  .blog-editorial-title      { font-size: var(--font-size-lg); }

  /* Blog single */
  .blog-single-title         { font-size: var(--font-size-xl); }
  .blog-article-body         { font-size: var(--font-size-sm); }

  /* Founder */
  .founder-name              { font-size: var(--font-size-2xl); }
  .founder-body p            { font-size: var(--font-size-xs); }
}

/* ----------------------------------------------------------
   GALLERY LIGHTBOX
---------------------------------------------------------- */
.gallery-item { cursor: pointer; }

.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.gallery-lightbox.active { display: flex; }

.gallery-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.gallery-lightbox-inner img {
  max-width: 90vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.gallery-lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-size: var(--font-size-sm);
  text-align: center;
  margin: 0;
}
.gallery-lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10000;
}
.gallery-lightbox-close:hover { opacity: 1; }

/* ----------------------------------------------------------
   PROGRAMS PAGE
---------------------------------------------------------- */
.program-flyer-wrap {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.program-flyer-img {
  width: 100%;
  display: block;
  border-radius: var(--radius-2xl);
}
.program-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  margin: 0.75rem 0 1.25rem;
  line-height: var(--lh-tight);
}
.program-description {
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
  font-size: var(--font-size-base);
}
