/* updated: 20260402233719 */
/* ==========================================================================
   AstroSankofa Arts Initiatives — HoloSpace Design System
   Futuristic holographic dark theme with glassmorphism
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Holographic palette */
  --holo-blue: rgba(191, 8, 8, 0.7);
  --holo-blue-solid: #BF0808;
  --holo-pink: rgba(255, 0, 231, 0.7);
  --holo-pink-solid: #FF00E7;
  --holo-purple: rgba(148, 0, 255, 0.7);
  --holo-purple-solid: #9400FF;
  --holo-gold: #F0C040;
  --holo-gold-light: #F5D060;

  /* Theme colors (overridden by Handlebars inline vars) */
  --color-primary: #0a0a0a;
  --color-bg: #FFFFFF;
  --color-accent: #BF0808;
  --color-accent-light: #E52020;
  --color-gold: #F0C040;
  --color-text: #FFFFFF;
  --color-text-secondary: rgba(255, 255, 255, 0.7);
  --color-text-muted: rgba(255, 255, 255, 0.4);
  --color-card-bg: rgba(255, 255, 255, 0.05);
  --color-card-border: rgba(255, 255, 255, 0.1);
  --color-footer-bg: #0a0a0a;
  --color-footer-text: #FFFFFF;
  --color-success: #10B981;
  --color-error: #EF4444;

  /* Glass — dark/black cards on white background */
  --glass-bg: rgba(10, 10, 20, 0.92);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --glass-blur: blur(10px);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Typography */
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-family: var(--font-body);
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3.5rem;

  /* Layout */
  --max-width: 1440px;
  --content-width: 1200px;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.4);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.5);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 90px;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.6;
  color: #111111;
  background: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { 
  max-width: 100%; 
  height: auto !important; 
  display: block; 
  min-height: auto !important;
  max-height: none !important;
  aspect-ratio: unset !important;
}
/* Exception: footer funder logos need fixed height */
.footer__funder-logo {
  height: 36px !important;
  max-height: 36px !important;
  width: auto !important;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s;
  display: inline-block !important;
}
.footer__funder-logo:hover { opacity: 1; }
a { color: var(--holo-blue-solid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--holo-pink-solid); }
a:focus-visible { outline: 2px solid var(--holo-blue-solid); outline-offset: 2px; }
ul, ol { list-style: none; }
address { font-style: normal; }
button {
  cursor: pointer; font-family: inherit; font-size: inherit;
  border: none; background: none; color: inherit;
}
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--holo-blue-solid); outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   3. Holographic Utility Classes
   -------------------------------------------------------------------------- */

/* Holographic Card — glassmorphism */
.holographic-card {
  position: relative;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.holographic-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}
.holographic-card:hover::before {
  left: 100%;
}
.holographic-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 20px rgba(0, 231, 255, 0.15),
    0 0 40px rgba(255, 0, 231, 0.1),
    var(--glass-shadow);
}

/* Holographic Button */
.holographic-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #BF0808, #E52020);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.holographic-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}
.holographic-btn:hover::before { left: 100%; }
.holographic-btn:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(191, 8, 8, 0.4),
    0 0 40px rgba(229, 32, 32, 0.2);
}

/* Holographic Button — outline variant */
.holographic-btn--outline {
  background: transparent;
  border: 2px solid #BF0808;
  color: #BF0808;
}
.holographic-btn--outline:hover {
  background: #BF0808;
  border-color: #BF0808;
  color: #FFFFFF;
}

/* Holographic Button — gold variant */
.holographic-btn--gold {
  background: linear-gradient(135deg, var(--holo-gold), var(--holo-gold-light));
  color: #000428;
}
.holographic-btn--gold:hover {
  color: #000428;
  box-shadow:
    0 0 20px rgba(240, 192, 64, 0.4),
    0 0 40px rgba(240, 192, 64, 0.2);
}

/* Holographic Text — neon glow */
.holographic-text {
  color: #FFFFFF;
  text-shadow:
    0 0 10px rgba(0, 231, 255, 0.5),
    0 0 20px rgba(0, 231, 255, 0.3),
    0 0 40px rgba(0, 231, 255, 0.1);
}

.holographic-text--gold {
  color: var(--holo-gold);
  text-shadow:
    0 0 10px rgba(240, 192, 64, 0.5),
    0 0 20px rgba(240, 192, 64, 0.3),
    0 0 40px rgba(240, 192, 64, 0.1);
}

.holographic-text--pink {
  color: var(--holo-pink-solid);
  text-shadow:
    0 0 10px rgba(255, 0, 231, 0.5),
    0 0 20px rgba(255, 0, 231, 0.3);
}

/* Holographic Nav */
.holographic-nav {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Nav scrolled — glass blur effect */
.nav--scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Holographic Input */
.holographic-input {
  display: block;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.holographic-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.holographic-input:focus {
  border-color: var(--holo-blue-solid);
  box-shadow: 0 0 0 3px rgba(0, 231, 255, 0.15), 0 0 20px rgba(0, 231, 255, 0.1);
  outline: none;
}

/* Glow Effect */
.glow-effect {
  position: relative;
}
.glow-effect::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--holo-blue), var(--holo-pink), var(--holo-purple));
  z-index: -1;
  opacity: 0;
  filter: blur(15px);
  transition: opacity var(--transition);
}
.glow-effect:hover::after {
  opacity: 0.6;
}

/* Scanline */
.scanline {
  position: relative;
  overflow: hidden;
}
.scanline::after {
  display: none; /* Scanline animation disabled */
}

/* --------------------------------------------------------------------------
   4. Site Layout
   -------------------------------------------------------------------------- */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site__header { position: fixed; top: 0; left: 0; right: 0; z-index: 9998; }
.site__main { flex: 1; padding-top: var(--nav-height); }
.site__footer { margin-top: auto; }

/* ── Top Banner ─────────────────────────────────────────────────────────── */
#top-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  min-height: 36px;
  transition: transform 0.3s ease;
}
#top-banner.banner--hidden {
  transform: translateY(-100%);
  pointer-events: none;
}
.top-banner__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.top-banner__text { opacity: 0.95; }
.top-banner__link {
  text-decoration: underline;
  font-weight: 700;
  opacity: 1;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.top-banner__link:hover { opacity: 0.8; }
.top-banner__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
  flex-shrink: 0;
}
.top-banner__close:hover { opacity: 1; background: rgba(255,255,255,0.15); }
/* When banner is visible, push header down */
body.has-banner .site__header { top: 36px; }
body.has-banner .site__main { padding-top: calc(var(--nav-height) + 36px); }
@media (max-width: 768px) {
  #top-banner { font-size: 0.72rem; padding: 5px 12px; min-height: 32px; }
  body.has-banner .site__header { top: 32px; }
  body.has-banner .site__main { padding-top: calc(var(--nav-height) + 32px); }
}

/* --------------------------------------------------------------------------
   5. Navigation
   -------------------------------------------------------------------------- */
.nav {
  background: var(--nav-bg, #0a0a0a);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: var(--nav-height);
}
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px var(--space-lg);
  min-height: var(--nav-height);
}
.nav__brand { flex-shrink: 0; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; margin-right: auto; }
.nav__logo { height: 40px; width: auto; }
.nav__brand-logo { height: 70px; width: var(--nav-logo-width, auto); max-width: 200px; display: block; transform: var(--nav-logo-transform, none); }
.nav__brand-icon {
  color: var(--holo-blue-solid);
  font-size: 1.25rem;
}
.nav__brand-name {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(0, 231, 255, 0.3);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
  z-index: 1001;
}
.nav__hamburger-line {
  display: block; width: 100%; height: 2px;
  background-color: var(--holo-blue-solid);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu */
.nav__menu { display: flex; align-items: center; gap: var(--space-sm); }
.nav__list { display: flex; align-items: center; gap: 0; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: var(--space-sm) var(--space-md);
  color: var(--nav-link-color, rgba(255,255,255,0.85));
  font-family: var(--font-body);
  font-size: var(--nav-link-size, var(--font-size-sm));
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition), text-shadow var(--transition);
  border-radius: var(--radius-sm);
}
.nav__link:hover {
  color: var(--holo-blue-solid);
  text-shadow: 0 0 10px rgba(0, 231, 255, 0.3);
  background: rgba(0, 231, 255, 0.05);
}
/* Active page indicator — red underline on current page nav link */
.nav__link--active {
  color: #BF0808;
  position: relative;
}
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: var(--space-md);
  right: var(--space-md);
  height: 2px;
  background: #BF0808;
  border-radius: 2px;
}

/* Donate Button in Nav */
.nav__donate-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #BF0808, #E52020);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.nav__donate-btn:hover {
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(191, 8, 8, 0.4), 0 0 40px rgba(229, 32, 32, 0.2);
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background: #0a0a0a;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-image { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero__overlay {
  display: none;
}
.hero__content {
  position: relative; z-index: 1;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  max-width: var(--content-width);
}
.hero__tagline-container {
  display: inline-block;
  position: relative;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: #111111;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  transition: all 0.3s ease;
  display: inline-block;
  text-shadow: none;
}

/* Hero tagline on white background — override holographic-text */
.hero__tagline.holographic-text {
  color: #111111;
  text-shadow: none;
}
.hero__tagline.scramble-text:hover {
  text-shadow: none;
  color: #BF0808;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--font-size-xl);
  color: #444444;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto var(--space-md);
  letter-spacing: 0.02em;
  text-shadow: none;
}
.hero__actions {
  margin-top: var(--space-xl);
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   7. Page Headers (shared)
   -------------------------------------------------------------------------- */
.about__header, .team__header, .projects__header, .programs__header,
.workshops__header, .scholarship__header, .jobs__header, .contact__header,
.artists__header, .faq__header, .policies__header {
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
  text-align: center;
  background: #ffffff;
}
.about__header-inner, .team__header-inner, .projects__header-inner,
.programs__header-inner, .workshops__header-inner, .scholarship__header-inner,
.jobs__header-inner, .contact__header-inner, .artists__header-inner,
.faq__header-inner, .policies__header-inner {
  max-width: var(--content-width); margin: 0 auto;
}
.about__title, .team__title, .projects__title, .programs__title,
.workshops__title, .scholarship__title, .jobs__title, .contact__title,
.artists__title, .faq__title, .policies__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: #111111;
  letter-spacing: 0.05em;
  text-shadow: none;
  display: block;
  width: 100%;
  text-align: center;
}
/* Red underline under all page main headings */
.about__title::after, .team__title::after, .projects__title::after,
.programs__title::after, .workshops__title::after, .scholarship__title::after,
.jobs__title::after, .contact__title::after, .artists__title::after,
.faq__title::after, .policies__title::after, .events__title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #BF0808;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.about__subtitle, .team__subtitle, .projects__subtitle, .programs__subtitle,
.artists__subtitle, .faq__subtitle, .policies__subtitle {
  font-size: var(--font-size-lg);
  color: #444444;
  margin-top: var(--space-sm);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   8. Sub-navigation
   -------------------------------------------------------------------------- */
.about__subnav, .team__subnav, .projects__subnav {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.04);
}
.about__subnav-list, .team__subnav-list, .projects__subnav-list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--space-md);
  max-width: var(--content-width); margin: 0 auto;
}
.about__subnav-link, .team__subnav-link, .projects__subnav-link {
  color: #444444;
  font-size: var(--font-size-sm);
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.about__subnav-link:hover, .team__subnav-link:hover, .projects__subnav-link:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.team__subnav-link--active {
  color: var(--holo-blue-solid);
  border-bottom-color: var(--holo-blue-solid);
}

/* --------------------------------------------------------------------------
   9. Home Page Sections
   -------------------------------------------------------------------------- */
.home__section {
  padding: var(--space-3xl) var(--space-lg);
}
.home__section-inner {
  max-width: var(--content-width); margin: 0 auto;
}
.home__section-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: #111111;
  margin-bottom: var(--space-lg);
  text-align: center;
  letter-spacing: 0.05em;
  text-shadow: none;
  display: block;
  width: 100%;
}
.home__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #BF0808;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.home__section-content {
  color: #333333;
  font-size: var(--font-size-lg);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.home__section-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  align-items: start;
}
.home__section-figure {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  width: 100%;
  display: block;
}
.home__section-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.home__section-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.home__section-figure:hover .home__section-image { transform: scale(1.05); }
.home__section-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #FFFFFF;
  padding: var(--space-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-align: center;
  transition: opacity var(--transition);
}
.home__section-figure:hover .home__section-caption {
  opacity: 0.9;
}

/* Stats Bar */
.home__stats {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: var(--space-xl) var(--space-lg);
}
.home__stats-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}
.home__stat { display: flex; flex-direction: column; align-items: center; gap: var(--space-xs); }
.home__stat-number {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 900;
  color: #BF0808;
  letter-spacing: 0.02em;
  line-height: 1;
}
.home__stat-label {
  font-family: var(--font-body);
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: #444444;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ============================================================
   Uiverse 3D Tilt Card — Four Pillars
   ============================================================ */

@keyframes pillarLineGrow {
  0%   { transform: scaleX(0); opacity: 0; }
  50%  { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0); opacity: 0; }
}
@keyframes pillarScanMove {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.home__pillars {
  padding: var(--space-3xl) var(--space-lg);
  background: #ffffff;
}
.home__pillars-inner { max-width: var(--content-width); margin: 0 auto; }
.home__pillars-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-xl);
  color: #111111;
  text-shadow: none;
}
.home__pillars-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* Outer wrapper */
.home__pillar {
  position: relative;
  list-style: none;
  transition: 200ms;
  -webkit-user-select: none; user-select: none;
  min-height: 300px;
  background: none; border: none; padding: 0;
  overflow: visible; clip-path: none;
  perspective: 800px;
}
.home__pillar:active { transform: scale(0.97); }

/* 25 tracker divs */
.pillar-tr {
  cursor: pointer; pointer-events: all;
  position: absolute; z-index: 200;
}
.pillar-tr:nth-child(1)  { top:0%;  left:0%;  width:20%; height:20%; }
.pillar-tr:nth-child(2)  { top:0%;  left:20%; width:20%; height:20%; }
.pillar-tr:nth-child(3)  { top:0%;  left:40%; width:20%; height:20%; }
.pillar-tr:nth-child(4)  { top:0%;  left:60%; width:20%; height:20%; }
.pillar-tr:nth-child(5)  { top:0%;  left:80%; width:20%; height:20%; }
.pillar-tr:nth-child(6)  { top:20%; left:0%;  width:20%; height:20%; }
.pillar-tr:nth-child(7)  { top:20%; left:20%; width:20%; height:20%; }
.pillar-tr:nth-child(8)  { top:20%; left:40%; width:20%; height:20%; }
.pillar-tr:nth-child(9)  { top:20%; left:60%; width:20%; height:20%; }
.pillar-tr:nth-child(10) { top:20%; left:80%; width:20%; height:20%; }
.pillar-tr:nth-child(11) { top:40%; left:0%;  width:20%; height:20%; }
.pillar-tr:nth-child(12) { top:40%; left:20%; width:20%; height:20%; }
.pillar-tr:nth-child(13) { top:40%; left:40%; width:20%; height:20%; }
.pillar-tr:nth-child(14) { top:40%; left:60%; width:20%; height:20%; }
.pillar-tr:nth-child(15) { top:40%; left:80%; width:20%; height:20%; }
.pillar-tr:nth-child(16) { top:60%; left:0%;  width:20%; height:20%; }
.pillar-tr:nth-child(17) { top:60%; left:20%; width:20%; height:20%; }
.pillar-tr:nth-child(18) { top:60%; left:40%; width:20%; height:20%; }
.pillar-tr:nth-child(19) { top:60%; left:60%; width:20%; height:20%; }
.pillar-tr:nth-child(20) { top:60%; left:80%; width:20%; height:20%; }
.pillar-tr:nth-child(21) { top:80%; left:0%;  width:20%; height:20%; }
.pillar-tr:nth-child(22) { top:80%; left:20%; width:20%; height:20%; }
.pillar-tr:nth-child(23) { top:80%; left:40%; width:20%; height:20%; }
.pillar-tr:nth-child(24) { top:80%; left:60%; width:20%; height:20%; }
.pillar-tr:nth-child(25) { top:80%; left:80%; width:20%; height:20%; }

/* Tilt */
.pillar-tr:nth-child(1):hover  ~ .pillar-card { transform: rotateX(20deg) rotateY(-10deg); }
.pillar-tr:nth-child(2):hover  ~ .pillar-card { transform: rotateX(20deg) rotateY(-5deg);  }
.pillar-tr:nth-child(3):hover  ~ .pillar-card { transform: rotateX(20deg) rotateY(0deg);   }
.pillar-tr:nth-child(4):hover  ~ .pillar-card { transform: rotateX(20deg) rotateY(5deg);   }
.pillar-tr:nth-child(5):hover  ~ .pillar-card { transform: rotateX(20deg) rotateY(10deg);  }
.pillar-tr:nth-child(6):hover  ~ .pillar-card { transform: rotateX(10deg) rotateY(-10deg); }
.pillar-tr:nth-child(7):hover  ~ .pillar-card { transform: rotateX(10deg) rotateY(-5deg);  }
.pillar-tr:nth-child(8):hover  ~ .pillar-card { transform: rotateX(10deg) rotateY(0deg);   }
.pillar-tr:nth-child(9):hover  ~ .pillar-card { transform: rotateX(10deg) rotateY(5deg);   }
.pillar-tr:nth-child(10):hover ~ .pillar-card { transform: rotateX(10deg) rotateY(10deg);  }
.pillar-tr:nth-child(11):hover ~ .pillar-card { transform: rotateX(0deg)  rotateY(-10deg); }
.pillar-tr:nth-child(12):hover ~ .pillar-card { transform: rotateX(0deg)  rotateY(-5deg);  }
.pillar-tr:nth-child(13):hover ~ .pillar-card { transform: rotateX(0deg)  rotateY(0deg);   }
.pillar-tr:nth-child(14):hover ~ .pillar-card { transform: rotateX(0deg)  rotateY(5deg);   }
.pillar-tr:nth-child(15):hover ~ .pillar-card { transform: rotateX(0deg)  rotateY(10deg);  }
.pillar-tr:nth-child(16):hover ~ .pillar-card { transform: rotateX(-10deg) rotateY(-10deg);}
.pillar-tr:nth-child(17):hover ~ .pillar-card { transform: rotateX(-10deg) rotateY(-5deg); }
.pillar-tr:nth-child(18):hover ~ .pillar-card { transform: rotateX(-10deg) rotateY(0deg);  }
.pillar-tr:nth-child(19):hover ~ .pillar-card { transform: rotateX(-10deg) rotateY(5deg);  }
.pillar-tr:nth-child(20):hover ~ .pillar-card { transform: rotateX(-10deg) rotateY(10deg); }
.pillar-tr:nth-child(21):hover ~ .pillar-card { transform: rotateX(-20deg) rotateY(-10deg);}
.pillar-tr:nth-child(22):hover ~ .pillar-card { transform: rotateX(-20deg) rotateY(-5deg); }
.pillar-tr:nth-child(23):hover ~ .pillar-card { transform: rotateX(-20deg) rotateY(0deg);  }
.pillar-tr:nth-child(24):hover ~ .pillar-card { transform: rotateX(-20deg) rotateY(5deg);  }
.pillar-tr:nth-child(25):hover ~ .pillar-card { transform: rotateX(-20deg) rotateY(10deg); }

/* Hover effects */
.pillar-tr:hover ~ .pillar-card .pillar-glow-1,
.pillar-tr:hover ~ .pillar-card .pillar-glow-2,
.pillar-tr:hover ~ .pillar-card .pillar-glow-3 { opacity: 1; }
.pillar-tr:hover ~ .pillar-card .pillar-glare  { opacity: 1; }
.pillar-tr:hover ~ .pillar-card .pillar-card-before { opacity: 1; }
.pillar-tr:hover ~ .pillar-card .pillar-particle { animation: pillarParticleFloat 2s infinite; }
.pillar-tr:hover ~ .pillar-card .pillar-corner-span {
  border-color: rgba(180,220,255,1);
  box-shadow: 0 0 10px rgba(180,220,255,0.6);
}

/* Card face */
.pillar-card {
  position: absolute; inset: 0; z-index: 0;
  display: flex; justify-content: center; align-items: center;
  border-radius: 20px; transition: 700ms;
  background: linear-gradient(145deg, #0d1117 0%, #111820 40%, #0d1117 100%);
  border: 1.5px solid rgba(180,220,255,0.2);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.5), inset 0 0 30px rgba(0,0,0,0.3);
}
.pillar-card::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(191,8,8,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(180,220,255,0.10) 0%, transparent 55%);
  pointer-events: none; z-index: 0; border-radius: 20px;
}
.pillar-card-before {
  background: radial-gradient(circle at center, rgba(180,220,255,0.12) 0%, rgba(191,8,8,0.06) 50%, transparent 100%);
  filter: blur(20px); opacity: 0.35;
  width: 150%; height: 150%;
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  transition: opacity 0.3s ease; pointer-events: none; z-index: 1;
}
.pillar-glowing-elements { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.pillar-glow-1, .pillar-glow-2, .pillar-glow-3 {
  position: absolute; width: 120px; height: 120px;
  border-radius: 50%; filter: blur(20px); opacity: 0.45; transition: opacity 0.3s ease;
}
.pillar-glow-1 { top:-30px; left:-30px; background: radial-gradient(circle, rgba(191,8,8,0.6) 0%, transparent 70%); }
.pillar-glow-2 { top:50%; right:-40px; transform:translateY(-50%); background: radial-gradient(circle, rgba(180,220,255,0.5) 0%, transparent 70%); }
.pillar-glow-3 { bottom:-30px; left:25%; background: radial-gradient(circle, rgba(191,8,8,0.4) 0%, transparent 70%); }
.pillar-glare {
  position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(125deg, transparent 0%, rgba(255,255,255,0.05) 45%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.05) 55%, transparent 100%);
  opacity: 0; transition: opacity 300ms; pointer-events: none; z-index: 2;
}
.pillar-particles { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.pillar-particle {
  position: absolute; width: 3px; height: 3px;
  background: #b4dcff; border-radius: 50%; opacity: 0;
  box-shadow: 0 0 6px rgba(180,220,255,0.8);
}
@keyframes pillarParticleFloat {
  0%   { transform: translate(0,0); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: translate(calc(var(--px,0)*40px), calc(var(--py,0)*40px)); opacity: 0; }
}
.pillar-particle:nth-child(1) { --px:1;   --py:-1; top:40%; left:20%; }
.pillar-particle:nth-child(2) { --px:-1;  --py:-1; top:60%; right:20%; }
.pillar-particle:nth-child(3) { --px:.5;  --py:1;  top:20%; left:40%; }
.pillar-particle:nth-child(4) { --px:-.5; --py:1;  top:80%; right:40%; }
.pillar-particle:nth-child(5) { --px:1;   --py:.5; top:30%; left:60%; }
.pillar-particle:nth-child(6) { --px:-1;  --py:.5; top:70%; right:60%; }
.pillar-cyber-lines { position: absolute; inset: 0; pointer-events: none; overflow: hidden; border-radius: 20px; z-index: 2; }
.pillar-cyber-lines span {
  position: absolute; height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(180,220,255,0.4), transparent);
}
.pillar-cyber-lines span:nth-child(1) { top:20%; transform:scaleX(0); transform-origin:left;  animation: pillarLineGrow 3s linear infinite; }
.pillar-cyber-lines span:nth-child(2) { top:40%; transform:scaleX(0); transform-origin:right; animation: pillarLineGrow 3s linear infinite 1s; }
.pillar-cyber-lines span:nth-child(3) { top:60%; transform:scaleX(0); transform-origin:left;  animation: pillarLineGrow 3s linear infinite 2s; }
.pillar-cyber-lines span:nth-child(4) { top:80%; transform:scaleX(0); transform-origin:right; animation: pillarLineGrow 3s linear infinite 1.5s; }
.pillar-corners { position: absolute; inset: 0; pointer-events: none; z-index: 4; }
.pillar-corner-span {
  position: absolute; width: 18px; height: 18px;
  border: 2px solid rgba(180,220,255,0.5); transition: all 0.3s ease;
}
.pillar-corner-span:nth-child(1) { top:12px;    left:12px;  border-right:0; border-bottom:0; }
.pillar-corner-span:nth-child(2) { top:12px;    right:12px; border-left:0;  border-bottom:0; }
.pillar-corner-span:nth-child(3) { bottom:12px; left:12px;  border-right:0; border-top:0;    }
.pillar-corner-span:nth-child(4) { bottom:12px; right:12px; border-left:0;  border-top:0;    }
.pillar-scan {
  position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(to bottom, transparent, rgba(180,220,255,0.08), transparent);
  transform: translateY(-100%); animation: pillarScanMove 2.5s linear infinite;
  pointer-events: none; z-index: 3;
}
.pillar-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 36px 24px 28px; width: 100%; text-align: center;
}
.home__pillar-inner { display: contents; }
.home__pillar-icon {
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 0 8px rgba(180,220,255,0.5));
  transition: filter 0.4s ease, transform 0.4s ease;
  position: relative; z-index: 10;
}
.pillar-tr:hover ~ .pillar-card .home__pillar-icon {
  filter: drop-shadow(0 0 20px rgba(180,220,255,0.9));
  transform: scale(1.1) translateY(-3px);
}
.home__pillar-icon img { width: 56px !important; height: 56px !important; object-fit: contain !important; border-radius: 0 !important; }
.home__pillar-icon-symbol { font-size: 2.5rem; }
.home__pillar-title {
  font-family: var(--font-heading); font-size: var(--font-size-sm); font-weight: 700;
  color: #BF0808; margin-bottom: var(--space-sm); letter-spacing: 0.14em;
  text-transform: uppercase; text-shadow: 0 0 12px rgba(191,8,8,0.5);
  transition: text-shadow 0.4s ease; position: relative; z-index: 10;
}
.pillar-tr:hover ~ .pillar-card .home__pillar-title {
  text-shadow: 0 0 24px rgba(191,8,8,0.9), 0 0 48px rgba(191,8,8,0.3);
}
.home__pillar-description {
  font-size: var(--font-size-sm); color: rgba(255,255,255,0.7);
  line-height: 1.65; transition: color 0.4s ease; position: relative; z-index: 10;
}
.pillar-tr:hover ~ .pillar-card .home__pillar-description { color: rgba(255,255,255,0.92); }
/* Hide legacy decorations */
.home__pillar-corner-tr, .home__pillar-corner-bl, .home__pillar-accent-top,
.home__pillar-accent-bottom, .home__pillar-accent-left, .home__pillar-accent-right,
.home__pillar-corner, .home__pillar-frame, .home__pillar-hud,
.home__pillar-svg-frame, .hud-scan-wrap { display: none; }

/* Mobile — stack to 2 columns, disable 3D tilt */
@media (max-width: 768px) {
  .home__pillars-list { grid-template-columns: repeat(2, 1fr); }
  .home__pillar { perspective: none; min-height: unset; height: auto; }
  .pillar-tr { display: none; }
  .pillar-card { position: relative; inset: auto; border-radius: 16px; width: 100%; height: auto; }
  .pillar-content { padding: 24px 16px 20px; }
}
@media (max-width: 480px) {
  .home__pillars-list { grid-template-columns: 1fr; }
}

/* Instagram */
.home__instagram {
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
  background: #ffffff;
}
.home__instagram-inner { max-width: var(--content-width); margin: 0 auto; }
.home__instagram-text {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  color: #111111;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
}
.home__instagram-link {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, #BF0808, #E52020);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-sm);
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.home__instagram-link:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(191, 8, 8, 0.4), 0 0 40px rgba(229, 32, 32, 0.2);
}

/* --------------------------------------------------------------------------
   10. About Page
   -------------------------------------------------------------------------- */

/* ==========================================================================
   Milestones Section
   ========================================================================== */

.milestones__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-bottom: var(--space-md);
  width: 100%;
}

.milestone-card {
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  width: 100%;
}

.milestone-card:hover {
  border-color: var(--holo-blue);
  box-shadow: 0 10px 30px rgba(0, 231, 255, 0.2);
}

.milestone-card__image-container {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.milestone-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  transition: transform 0.3s ease;
}

.milestone-card:hover .milestone-card__image {
  transform: scale(1.05);
}

.milestone-card__content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.milestone-card__year {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--holo-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.milestone-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.milestone-card__description {
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .milestones__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .milestone-card__content {
    padding: var(--space-md);
  }
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.about__section {
  padding: var(--space-3xl) var(--space-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.about__section-inner { max-width: var(--content-width); margin: 0 auto; position: relative; z-index: 2; }
.about__section-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: #111111;
  margin-bottom: var(--space-lg);
  text-shadow: none;
  text-align: center;
  display: block;
  width: 100%;
}
.about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #BF0808;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.about__section-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.about__section-image {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--glass-border);
}

/* --------------------------------------------------------------------------
   11. Team Page & Cards
   -------------------------------------------------------------------------- */
.team__category {
  padding: var(--space-3xl) var(--space-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}
.team__category-inner { max-width: var(--content-width); margin: 0 auto; }
.team__category-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: #111111;
  margin-bottom: var(--space-xl);
  text-align: center;
  text-shadow: none;
}
.team__category-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #BF0808;
  margin: 0.4rem auto 0;
  border-radius: 2px;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.team-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 20px rgba(0, 231, 255, 0.15), var(--glass-shadow);
}
.team-card__photo-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  width: 120px; height: 120px;
  margin: var(--space-lg) auto var(--space-md);
  background: linear-gradient(135deg, rgba(0, 231, 255, 0.1), rgba(255, 0, 231, 0.1));
  border: 2px solid rgba(0, 231, 255, 0.2);
}
.team-card__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card__photo { transform: scale(1.08); }
.team-card__photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0, 231, 255, 0.1), rgba(255, 0, 231, 0.1));
}
.team-card__info { padding: 0 var(--space-md) var(--space-lg); text-align: center; }
.team-card__name {
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.03em;
}
.team-card__role {
  font-size: var(--font-size-sm);
  color: var(--holo-blue-solid);
}
.team-card__bio {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   12. Project / Program / Workshop Cards
   -------------------------------------------------------------------------- */
.projects__filters, .programs__filters, .workshops__filters {
  padding: var(--space-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #f5f5f5;
}
.projects__filters-inner, .programs__filters-inner, .workshops__filters-inner {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  gap: var(--space-md);
  max-width: var(--content-width); margin: 0 auto;
}
.programs__filters-title, .workshops__filters-title {
  width: 100%;
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: #111111;
  margin-bottom: var(--space-sm);
}
.projects__filter-group, .programs__filter-group, .workshops__filter-group {
  display: flex; flex-direction: column; gap: var(--space-xs);
  flex: 1; min-width: 180px;
}
.projects__filter-label, .programs__filter-label, .workshops__filter-label {
  font-size: var(--font-size-sm);
  color: #444444;
  font-weight: 500;
}
.projects__filter-select, .projects__filter-input,
.programs__filter-select, .programs__filter-input,
.workshops__filter-select, .workshops__filter-input {
  padding: var(--space-sm) var(--space-md);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  color: #111111;
  font-size: var(--font-size-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.projects__filter-select:focus, .projects__filter-input:focus,
.programs__filter-select:focus, .programs__filter-input:focus,
.workshops__filter-select:focus, .workshops__filter-input:focus {
  border-color: var(--holo-blue-solid);
  box-shadow: 0 0 0 3px rgba(0, 231, 255, 0.15);
}

.projects__gallery { padding: var(--space-xl) var(--space-lg); }
.projects__gallery-grid, .programs__listings-grid, .workshops__listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
  max-width: var(--content-width); margin: 0 auto;
}
.programs__listings, .workshops__listings { padding: var(--space-xl) var(--space-lg); background: #ffffff; }

.project-card, .program-card, .workshop-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.project-card::before, .program-card::before, .workshop-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}
.project-card:hover::before, .program-card:hover::before, .workshop-card:hover::before {
  left: 100%;
}
.project-card:hover, .program-card:hover, .workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 231, 255, 0.15), var(--glass-shadow);
}
.project-card__image-wrapper, .program-card__image-wrapper, .workshop-card__image-wrapper {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 231, 255, 0.05), rgba(255, 0, 231, 0.05));
  width: 100%;
  position: relative;
}
/* Workshop cards without images: smaller placeholder */
.workshop-card__image-placeholder {
  min-height: 60px;
  max-height: 60px;
}
/* When workshop card has no image, collapse the wrapper */
.workshop-card__image-wrapper:has(.workshop-card__image-placeholder) {
  aspect-ratio: unset;
  max-height: 80px;
}
/* Submission status badge — top right of image */
.workshop-card__submission-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
  pointer-events: none;
}
.workshop-card__submission-badge--open {
  background: rgba(240, 192, 64, 0.15);
  color: #F0C040;
  border: 1.5px solid #F0C040;
}
.workshop-card__submission-badge--closed {
  background: rgba(191, 8, 8, 0.15);
  color: #BF0808;
  border: 1.5px solid #BF0808;
}
.project-card__image, .program-card__image, .workshop-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.project-card:hover .project-card__image,
.program-card:hover .program-card__image,
.workshop-card:hover .workshop-card__image { transform: scale(1.05); }
.project-card__image-placeholder, .program-card__image-placeholder, .workshop-card__image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0, 231, 255, 0.08), rgba(255, 0, 231, 0.08));
}
.project-card__body, .program-card__body, .workshop-card__body { padding: var(--space-lg); }
/* project-card__link — makes the entire card clickable */
.project-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.project-card__link:hover { color: inherit; }
/* project-card__content — alias for project-card__body */
.project-card__content { padding: var(--space-lg); }
.project-card__title, .program-card__title, .workshop-card__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}
.project-card__description, .program-card__description, .workshop-card__description {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.project-card__date, .program-card__date, .workshop-card__date {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}
.project-card__category, .program-card__category, .workshop-card__category {
  display: inline-block;
  font-size: var(--font-size-xs);
  color: var(--holo-blue-solid);
  background: rgba(0, 231, 255, 0.1);
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.project-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
  font-weight: 600;
}
.project-card__view-more {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: var(--font-size-xs);
  padding: 6px 16px;
  border: 1px solid var(--holo-blue-solid);
  border-radius: 50px;
  color: var(--holo-blue-solid);
  background: rgba(0, 231, 255, 0.08);
  transition: background var(--transition), color var(--transition);
}
.project-card__view-more:hover { background: var(--holo-blue-solid); color: #000; }

/* --------------------------------------------------------------------------
   Project Detail Page
   -------------------------------------------------------------------------- */
.project-detail { max-width: var(--content-width); margin: 0 auto; padding: var(--space-xl) var(--space-lg); }
.project-detail__hero { width: 100%; overflow: hidden; border-radius: var(--radius); margin-bottom: var(--space-xl); }
.project-detail__hero-img { width: 100%; height: auto !important; object-fit: cover; }
.project-detail__header { margin-bottom: var(--space-xl); }
.project-detail__title { font-size: var(--font-size-3xl); margin-bottom: var(--space-sm); }
.project-detail__category { display: inline-block; font-size: var(--font-size-xs); color: var(--holo-blue-solid); background: rgba(0,231,255,0.1); padding: 2px 12px; border-radius: 50px; font-weight: 600; text-transform: uppercase; margin-right: var(--space-sm); }
.project-detail__location { display: inline-flex; align-items: center; gap: 5px; font-size: var(--font-size-sm); color: #555555; font-weight: 600; margin-right: var(--space-sm); }
.project-detail__location i { color: var(--holo-blue-solid); }
.project-detail__date { font-size: var(--font-size-sm); color: #444444; }
.project-detail__description { font-size: var(--font-size-lg); color: #333333; margin-bottom: var(--space-xl); line-height: 1.7; }
.project-detail__content { font-size: var(--font-size-base); line-height: 1.8; margin-bottom: var(--space-xl); color: #333333; }
.project-detail__section { margin-bottom: var(--space-2xl); padding-bottom: var(--space-xl); border-bottom: 1px solid rgba(0,0,0,0.1); }
.project-detail__section-heading { font-size: var(--font-size-xl); color: #111111; margin-bottom: var(--space-md); }
.project-detail__section-text { line-height: 1.8; margin-bottom: var(--space-md); color: #333333; }
.project-detail__section-image img { width: 100%; border-radius: var(--radius); margin-bottom: var(--space-md); }
.project-detail__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-bottom: var(--space-2xl); }
@media (max-width: 768px) { .project-detail__gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .project-detail__gallery { grid-template-columns: 1fr; } }
.project-detail__gallery-item { overflow: hidden; border-radius: var(--radius-sm); }
.project-detail__gallery-item img { width: 100%; height: auto !important; object-fit: cover; transition: transform 0.4s ease; display: block; }
.project-detail__gallery-item:hover img { transform: scale(1.05); }
.project-detail__videos { display: flex; flex-direction: column; gap: var(--space-lg); margin-bottom: var(--space-2xl); }
.project-detail__video { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-sm); }
.project-detail__iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.project-detail__links { margin-bottom: var(--space-2xl); }
.project-detail__links-heading { font-size: var(--font-size-lg); color: #111111; font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.05em; margin-bottom: var(--space-md); }
.project-detail__links-list { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.project-detail__link {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #BF0808, #E52020);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.project-detail__link:hover {
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(191, 8, 8, 0.4), 0 0 40px rgba(229, 32, 32, 0.2);
}
.project-detail__back { margin-top: var(--space-2xl); padding-top: var(--space-xl); border-top: 1px solid rgba(0,0,0,0.1); }
.project-detail__back-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: transparent;
  border: 2px solid #BF0808;
  color: #BF0808 !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
}
.project-detail__back-btn:hover {
  background: #BF0808;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(191, 8, 8, 0.4);
}
.program-card__location, .workshop-card__location {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xs);
}

/* Workshop Card — subtitle */
.workshop-card__subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  font-style: italic;
}

/* Workshop Card — metadata badges */
.workshop-card__duration,
.workshop-card__age-range {
  display: inline-block;
  font-size: var(--font-size-xs);
  color: var(--holo-blue-solid);
  background: rgba(0, 231, 255, 0.1);
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: var(--space-sm);
  margin-bottom: var(--space-sm);
}

/* Workshop Card — outcomes list */
.workshop-card__outcomes {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.workshop-card__outcomes-item {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

/* Workshop — Program Overview section */
.workshops__program-overview {
  padding: var(--space-3xl) var(--space-lg);
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.workshops__program-overview-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}
.workshops__program-overview-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: #111111;
  margin-bottom: var(--space-sm);
  text-shadow: none;
}
.workshops__program-overview-subtitle {
  font-size: var(--font-size-lg);
  color: #444444;
  margin-bottom: var(--space-md);
}
.workshops__program-overview-description {
  color: #333333;
  line-height: 1.8;
  max-width: 800px;
}

/* Workshop — Find a Program cross-link */
.workshops__programs-link {
  padding: var(--space-lg) var(--space-lg);
}
.workshops__programs-link-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: center;
}
.workshops__programs-link-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: var(--space-sm);
}
.workshops__programs-link-text {
  color: #333333;
  font-size: var(--font-size-base);
  font-weight: 500;
}
.workshops__programs-link-anchor {
  color: #BF0808;
  font-weight: 700;
  text-decoration: underline;
  transition: color var(--transition);
}
.workshops__programs-link-anchor:hover {
  color: #E52020;
}

/* Workshop — Booking section */
.workshops__booking {
  padding: var(--space-3xl) var(--space-lg);
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.workshops__booking-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: center;
}
.workshops__booking-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: #111111;
  margin-bottom: var(--space-md);
  text-shadow: none;
}
.workshops__booking-description {
  color: #333333;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}
.workshops__booking-email {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #BF0808, #E52020);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.workshops__booking-email:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(191, 8, 8, 0.4), 0 0 40px rgba(229, 32, 32, 0.2);
}

/* Workshop — Advanced Programs section */
.workshops__advanced-programs {
  padding: var(--space-3xl) var(--space-lg);
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.workshops__advanced-programs-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: center;
}
.workshops__advanced-programs-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: #111111;
  margin-bottom: var(--space-md);
  text-shadow: none;
}
.workshops__advanced-programs-description {
  color: #333333;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}
.workshops__advanced-programs-link {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  margin: var(--space-xs) var(--space-sm);
  border: 1px solid var(--holo-gold);
  border-radius: 50px;
  color: var(--holo-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-sm);
  letter-spacing: 0.05em;
  transition: border-color var(--transition), background-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.workshops__advanced-programs-link:hover {
  border-color: var(--holo-gold);
  background: rgba(240, 192, 64, 0.15);
  color: var(--holo-gold);
  box-shadow: 0 0 15px rgba(240, 192, 64, 0.25);
  transform: translateY(-2px);
}

/* Workshop — AfriXin Symbols section */
.workshops__symbols {
  padding: var(--space-3xl) var(--space-lg);
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.workshops__symbols-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}
.workshops__symbols-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: #111111;
  text-align: center;
  margin-bottom: var(--space-sm);
  text-shadow: none;
}
.workshops__symbols-description {
  color: #333333;
  text-align: center;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}
.workshops__symbols-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-xl);
}
.symbol-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.symbol-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 231, 255, 0.15);
}
.symbol-card__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
  background: rgba(0, 0, 0, 0.2);
  min-height: 80px;
}
.symbol-card__image {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}
.symbol-card__image-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 231, 255, 0.1), rgba(191, 8, 8, 0.1));
  border: 2px dashed var(--glass-border);
}
.symbol-card__body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}
.symbol-card__name {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: var(--space-xs);
}
.symbol-card__asset {
  font-size: var(--font-size-sm);
  color: var(--holo-blue-solid);
  font-weight: 600;
  font-style: italic;
  margin-bottom: var(--space-sm);
}
.symbol-card__depiction {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}
.symbol-card__meaning {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.symbol-card__source {
  font-size: var(--font-size-xs);
  color: var(--holo-blue-solid);
  text-decoration: underline;
  transition: color var(--transition);
}
.symbol-card__source:hover {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .workshops__symbols-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--space-md);
  }
  .symbol-card__image-wrapper {
    padding: var(--space-sm);
  }
  .symbol-card__image {
    max-width: 80px;
    max-height: 80px;
  }
}

/* --------------------------------------------------------------------------
   13. Scholarship Page
   -------------------------------------------------------------------------- */
.scholarship__details {
  padding: var(--space-xl) var(--space-lg);
  background: #ffffff;
}
.scholarship__details-inner {
  max-width: var(--content-width); margin: 0 auto;
  display: grid; gap: var(--space-xl);
}
.scholarship__award {
  text-align: center;
  padding: var(--space-xl);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}
.scholarship__award-label {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}
.scholarship__award-value {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--holo-blue-solid);
  text-shadow: 0 0 20px rgba(0, 231, 255, 0.4);
}
.scholarship__eligibility-title, .scholarship__deadline-title,
.scholarship__download-title, .scholarship__form-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: #111111;
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
}
.scholarship__eligibility-text, .scholarship__description-text {
  color: #333333;
  line-height: 1.8;
}
.scholarship__deadline-date {
  font-size: var(--font-size-lg);
  color: var(--holo-blue-solid);
  font-weight: 600;
}
.scholarship__download { padding: var(--space-xl) var(--space-lg); background: #ffffff; }
.scholarship__download-inner { max-width: var(--content-width); margin: 0 auto; }
.scholarship__download-link {
  display: inline-flex; align-items: center; gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: #FFFFFF;
  background: var(--glass-bg);
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}
.scholarship__download-link:hover {
  border-color: var(--holo-blue-solid);
  background: rgba(0, 231, 255, 0.05);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 231, 255, 0.15);
}
.scholarship__download-icon { font-size: 1.5rem; }
.scholarship__download-info { display: flex; flex-direction: column; }
.scholarship__download-filename { font-weight: 600; }
.scholarship__download-meta { font-size: var(--font-size-xs); color: var(--color-text-muted); }

/* --------------------------------------------------------------------------
   14. Forms (Contact + Scholarship)
   -------------------------------------------------------------------------- */
.contact__form-section, .scholarship__form-section { padding: var(--space-3xl) var(--space-lg); background: #ffffff; }
.contact__form-inner, .scholarship__form-inner {
  max-width: 640px; margin: 0 auto;
}
.contact__form-title, .scholarship__form-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: #111111;
  margin-bottom: var(--space-xl);
  text-align: center;
  text-shadow: none;
}
.contact__address-section {
  background: #ffffff;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}
.contact__address-inner { max-width: var(--content-width); margin: 0 auto; }
.contact__address-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: #111111;
  margin-bottom: var(--space-md);
}
.contact__address {
  color: #333333;
  line-height: 1.6;
}
.contact__field, .scholarship__field {
  margin-bottom: var(--space-lg);
}
.contact__field-label, .scholarship__field-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #111111;
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
}
.contact__field-required, .scholarship__field-required {
  color: #BF0808;
}
.contact__field-input, .scholarship__field-input {
  display: block; width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: #f9f9f9;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  color: #111111;
  font-size: var(--font-size-base);
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact__field-input::placeholder, .scholarship__field-input::placeholder {
  color: #888888;
}
.contact__field-input:focus, .scholarship__field-input:focus {
  border-color: #BF0808;
  box-shadow: 0 0 0 3px rgba(191,8,8,0.1);
  outline: none;
}
.contact__field-input--textarea, .scholarship__field-input--textarea {
  resize: vertical; min-height: 120px;
}
.contact__field-input--invalid, .scholarship__field-input--invalid {
  border-color: #BF0808;
}
.contact__field-error, .scholarship__field-error {
  display: block;
  font-size: var(--font-size-xs);
  color: #BF0808;
  margin-top: var(--space-xs);
  min-height: 1em;
}
.contact__form-actions, .scholarship__form-actions {
  text-align: center;
  margin-top: var(--space-xl);
}
.contact__submit-btn, .scholarship__submit-btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background: linear-gradient(135deg, #BF0808, #E52020);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-sm);
  letter-spacing: 0.1em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.contact__submit-btn:hover, .scholarship__submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(191, 8, 8, 0.4), 0 0 40px rgba(229, 32, 32, 0.2);
}
.contact__submit-btn:disabled, .scholarship__submit-btn:disabled {
  opacity: 0.4; cursor: not-allowed; transform: none;
}
.contact__form-message, .scholarship__form-message {
  text-align: center;
  margin-top: var(--space-md);
  font-size: var(--font-size-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
}
.contact__form-message--success, .scholarship__form-message--success {
  color: var(--color-success);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.contact__form-message--error, .scholarship__form-message--error {
  color: var(--holo-pink-solid);
  background: rgba(255, 0, 231, 0.1);
  border: 1px solid rgba(255, 0, 231, 0.2);
}

/* --------------------------------------------------------------------------
   15. Artists Page
   -------------------------------------------------------------------------- */
.artists__intro {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}
.artists__intro-inner { max-width: var(--content-width); margin: 0 auto; }
.artists__description {
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}
.artists__grid-section { padding: var(--space-xl) var(--space-lg); }
.artists__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: var(--content-width); margin: 0 auto;
}
@media (max-width: 900px) {
  .artists__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .artists__grid { grid-template-columns: 1fr; }
}
.artist-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.artist-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.artist-card:hover::before { left: 100%; }
.artist-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 20px rgba(0, 231, 255, 0.15), var(--glass-shadow);
}
.artist-card__photo-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  margin: var(--space-md) var(--space-md) var(--space-sm);
  background: linear-gradient(135deg, rgba(0, 231, 255, 0.1), rgba(255, 0, 231, 0.1));
  border: 2px solid rgba(0, 231, 255, 0.2);
}
.artist-card__photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.artist-card:hover .artist-card__photo { transform: scale(1.08); }
.artist-card__photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0, 231, 255, 0.1), rgba(255, 0, 231, 0.1));
}
.artist-card__info { padding: 0 var(--space-md) var(--space-lg); }
.artist-card__name {
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.03em;
}
.artist-card__medium {
  font-size: var(--font-size-sm);
  color: var(--holo-blue-solid);
  margin-top: var(--space-xs);
}
.artist-card__bio {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: var(--space-sm);
  line-height: 1.5;
}
.artists__empty {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  color: var(--color-text-secondary);
}
.artists__empty-text { font-size: var(--font-size-lg); }

/* Artist category sections */
.artists__category-section {
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
}
.artists__category-section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}
.artists__category-heading {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: #111111;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 3px solid #BF0808;
  display: inline-block;
  text-shadow: none;
}

/* --------------------------------------------------------------------------
   16. FAQ Page
   -------------------------------------------------------------------------- */
.faq__list { padding: var(--space-xl) var(--space-lg); max-width: var(--content-width); margin: 0 auto; background: #ffffff; } .faq__item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq__question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: var(--space-lg) 0; color: #111111;
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--holo-blue-solid); }
.faq__question-icon {
  font-size: var(--font-size-xl);
  color: var(--holo-blue-solid);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: var(--space-md);
}
.faq__item--open .faq__question-icon { transform: rotate(45deg); }
.faq__answer { display: none; padding: 0 0 var(--space-lg); color: #333333;
  line-height: 1.8;
}
.faq__item--open .faq__answer { display: block; }

/* --------------------------------------------------------------------------
   17. Policies Page
   -------------------------------------------------------------------------- */
.policies__content { padding: var(--space-xl) var(--space-lg); max-width: var(--content-width); margin: 0 auto; background: #ffffff; }
.policies__section {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}
.policies__section-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: var(--space-md);
  letter-spacing: 0.03em;
}
.policies__section-content {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  padding: var(--space-3xl) var(--space-lg) var(--space-lg);
}
.footer__container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.8fr;
  gap: var(--space-xl);
  max-width: var(--content-width);
  margin: 0 auto;
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(0, 231, 255, 0.3);
  margin-bottom: var(--space-sm);
}
.footer__brand-link { display: inline-block; text-decoration: none; margin-bottom: var(--space-sm); }
.footer__brand-logo { height: 52px; width: auto; display: block; object-fit: contain; }
.footer__tagline {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}
/* Donate card — constrained to logo column width */
.footer__donate-card {
  margin-top: var(--space-md);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.75rem;
  padding: 0.75rem;
  text-align: center;
  max-width: 180px;
}
.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--holo-blue-solid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer__nav-link {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  transition: color var(--transition), text-shadow var(--transition);
}
.footer__nav-link:hover {
  color: var(--holo-blue-solid);
  text-shadow: 0 0 10px rgba(0, 231, 255, 0.3);
}
/* footer__social-list-old-placeholder removed */
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  transition: color var(--transition);
}
.footer__social-link:hover { color: var(--holo-pink-solid); }
.footer__social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.footer__social-icon-btn:hover {
  background: rgba(0, 231, 255, 0.1);
  border-color: var(--holo-blue-solid);
  color: var(--holo-blue-solid);
  box-shadow: 0 0 15px rgba(0, 231, 255, 0.2);
}
.footer__donate-btn {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #BF0808, #E52020);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.footer__donate-btn:hover {
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(191, 8, 8, 0.4);
}
.footer__bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}
.footer__copyright {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.footer__credit {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

/* --------------------------------------------------------------------------
   19. Loader / Spinner
   -------------------------------------------------------------------------- */
.holo-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}
.holo-loader__spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(0, 231, 255, 0.1);
  border-top-color: var(--holo-blue-solid);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* --------------------------------------------------------------------------
   20. Dropdown Option Fix (white-on-white)
   -------------------------------------------------------------------------- */
.projects__filter-select option,
.programs__filter-select option,
.workshops__filter-select option {
  background: #0a1628;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   21. Lightbox
   -------------------------------------------------------------------------- */
.lightbox-overlay { position:fixed; inset:0; z-index:9999; background:rgba(0,0,0,0.9); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity 0.3s; cursor:pointer; }
.lightbox-overlay.active { opacity:1; }
.lightbox-overlay img { max-width:90vw; max-height:90vh; object-fit:contain; border-radius:8px; box-shadow:0 0 40px rgba(0,231,255,0.3); cursor:default; }
.lightbox-close { position:absolute; top:20px; right:20px; color:#fff; font-size:2rem; cursor:pointer; z-index:10000; background:rgba(0,0,0,0.5); width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; }

/* Gallery images clickable */
.home__section-images img,
.projects__gallery-grid img,
.programs__listings-grid img {
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   22. Word Scatter
   -------------------------------------------------------------------------- */
.scatter-word { display:inline-block; transition:transform 0.5s cubic-bezier(0.34,1.56,0.64,1); }

/* --------------------------------------------------------------------------
   22b. Events Page
   -------------------------------------------------------------------------- */
.events__header {
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
  text-align: center;
  background: #ffffff;
}
.events__header-inner { max-width: var(--content-width); margin: 0 auto; }
.events__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: #111111;
  letter-spacing: 0.05em;
  text-shadow: none;
}
.events__subtitle {
  font-size: var(--font-size-lg);
  color: #444444;
  margin-top: var(--space-sm);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.events__section { padding: var(--space-xl) var(--space-lg); }
.events__calendar-section { padding: var(--space-xl) var(--space-lg); background: #ffffff; border-bottom: 1px solid rgba(0,0,0,0.08); }
.events__calendar-inner { max-width: var(--content-width); margin: 0 auto; }
.events__section-inner { max-width: var(--content-width); margin: 0 auto; }
.events__section-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: #111111;
  text-shadow: none;
  margin-bottom: var(--space-lg);
  text-align: center;
}
.events__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #BF0808;
  margin: 0.4rem auto 0;
  border-radius: 2px;
}
.events__section--past { opacity: 0.7; }
.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}
.event-card { overflow: hidden; background: rgba(10, 10, 20, 0.92); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); box-shadow: var(--glass-shadow); }
.event-card__title { color: #FFFFFF; }
.event-card__meta { color: rgba(255,255,255,0.75); }
.event-card__description { color: rgba(255,255,255,0.75); }
.event-card__image-wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(191, 8, 8, 0.05), rgba(229, 32, 32, 0.05));
}
.event-card__image { width: 100%; height: 100%; object-fit: cover; }
.event-card__body { padding: var(--space-lg); }
.event-card__badge {
  display: inline-block;
  background: #BF0808;
  color: #fff;
  font-size: var(--font-size-xs);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}
.event-card__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: var(--space-sm);
}
.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}
.event-card__meta i { color: #BF0808; margin-right: 4px; }
.event-card__description {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.event-card__link { font-size: var(--font-size-xs); padding: 0.5rem 1.5rem; }
.event-card--past { opacity: 0.6; }

/* --------------------------------------------------------------------------
   22c. Calendar Widget
   -------------------------------------------------------------------------- */
.home__calendar { padding: var(--space-3xl) var(--space-lg); }
.home__calendar-inner { max-width: var(--content-width); margin: 0 auto; }
.calendar-widget {
  max-width: 900px;
  margin: 0 auto var(--space-xl);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: var(--space-lg);
}
.calendar-widget__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}
.calendar-widget__arrow {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #FFFFFF;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background var(--transition);
}
.calendar-widget__arrow:hover { background: rgba(191, 8, 8, 0.3); }
.calendar-widget__month {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: #FFFFFF;
}

/* Calendar table */
.cal-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.cal-th {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  padding: 6px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cal-td {
  vertical-align: top;
  padding: 4px;
  min-height: 90px;
  height: 90px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 4px;
}
.cal-td--empty { background: transparent; border-color: transparent; }
.cal-td__num {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 3px;
  display: block;
}
.cal-td__num--today {
  background: #BF0808;
  color: #fff;
  font-weight: 700;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}

/* Event label button on calendar cell */
.cal-event-label {
  display: block;
  width: 100%;
  margin-top: 2px;
  padding: 2px 4px;
  background: rgba(191, 8, 8, 0.3);
  border: 1px solid rgba(191, 8, 8, 0.5);
  border-radius: 3px;
  color: #ff8080;
  font-size: 0.6rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.15s;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.cal-event-label:hover {
  background: rgba(191, 8, 8, 0.5);
  color: #fff;
}
.cal-event-label--active {
  background: #BF0808 !important;
  color: #fff !important;
  border-color: #BF0808 !important;
}

/* Event detail card below calendar */
.calendar-event-details {
  margin-top: var(--space-lg);
}
.cal-detail-card {
  display: flex;
  gap: var(--space-md);
  background: rgba(191, 8, 8, 0.06);
  border: 1px solid rgba(191, 8, 8, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  cursor: pointer;
}
.cal-detail-card:hover {
  background: rgba(191, 8, 8, 0.12);
  border-color: rgba(191, 8, 8, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(191, 8, 8, 0.2);
}
.cal-detail-card__img { width: 160px; min-height: 120px; flex-shrink: 0; }
.cal-detail-card__img img { width: 100%; height: 100%; object-fit: cover; }
.cal-detail-card__body { padding: var(--space-md); flex: 1; }
.cal-detail-card__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  color: #FFFFFF;
  margin-bottom: var(--space-xs);
}
.cal-detail-card__meta {
  display: flex; flex-wrap: wrap; gap: var(--space-sm);
  font-size: var(--font-size-xs); color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}
.cal-detail-card__meta i { color: #BF0808; margin-right: 4px; }
.cal-detail-card__desc {
  font-size: var(--font-size-sm); color: var(--color-text-secondary);
  line-height: 1.6; margin-bottom: var(--space-sm);
}
.cal-detail-card__cta { font-size: var(--font-size-sm); color: #BF0808; font-weight: 700; }

@media (max-width: 600px) {
  .cal-td { height: 60px; min-height: 60px; }
  .cal-event-label { font-size: 0.55rem; }
  .cal-detail-card { flex-direction: column; }
  .cal-detail-card__img { width: 100%; min-height: 160px; }
  .cal-detail-card { flex-direction: column; }
  .cal-detail-card__image { width: 100%; min-height: 160px; }
  .calendar-widget__month {
    font-size: var(--font-size-sm);
  }
}

/* Calendar Popup */
.cal-popup {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(191, 8, 8, 0.3);
  border-radius: var(--radius);
  padding: var(--space-lg);
  min-width: 280px;
  max-width: 360px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.cal-popup__close {
  position: absolute;
  top: 8px; right: 12px;
  font-size: 1.5rem;
  color: var(--color-text-secondary);
  cursor: pointer;
}
.cal-popup__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  color: #FFFFFF;
  margin-bottom: var(--space-sm);
}
.cal-popup__time, .cal-popup__location {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xs);
}
.cal-popup__time i, .cal-popup__location i { color: #BF0808; margin-right: 4px; }
.cal-popup__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-top: var(--space-sm);
}
.cal-popup__link { margin-top: var(--space-sm); font-size: var(--font-size-xs); padding: 0.4rem 1rem; }

.home__upcoming-events {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.home__calendar-cta { text-align: center; }

/* --------------------------------------------------------------------------
   22d. Instagram Gallery Grid
   -------------------------------------------------------------------------- */
.home__instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}
.home__instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.home__instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.home__instagram-item:hover img { transform: scale(1.08); }
.home__instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(191, 8, 8, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #FFFFFF;
  font-size: 2rem;
}
.home__instagram-item:hover .home__instagram-overlay { opacity: 1; }

/* Instagram placeholder — shown when API not configured */
.home__instagram-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}
.home__instagram-placeholder i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.2);
}
.home__instagram-placeholder p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

/* Instagram Feed — dynamic grid (replaces static images) */
.ig-feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  display: block;
}
.ig-feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ig-feed-item:hover img { transform: scale(1.08); }
.ig-feed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(191, 8, 8, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #FFFFFF;
  font-size: 2rem;
}
.ig-feed-item:hover .ig-feed-overlay { opacity: 1; }

/* home__stats and home__videos handled individually above */

/* Instagram section title override */
.home__instagram .home__section-title {
  color: #111111;
  text-shadow: none;
}

/* Page-level headings on white background — override holographic-text */
.events__title.holographic-text,
.team__title.holographic-text,
.home__pillars-title.holographic-text,
.home__section-title.holographic-text,
.home__calendar-inner .home__section-title.holographic-text {
  color: #111111;
  text-shadow: none;
}

/* Project detail title on white background */
.project-detail__title.holographic-text {
  color: #111111;
  text-shadow: none;
}

/* ============================================================
   WHITE-BACKGROUND TEXT FIXES — all text directly on white page
   ============================================================ */

/* Contact page — address section sits on white */
.contact__address-title { color: #111111; }
.contact__address { color: #333333; }

/* Contact & Scholarship form labels sit on dark section (glass) — keep white */
/* .contact__field-label, .scholarship__field-label already #FFFFFF — correct */

/* Artists page — intro description on white */
.artists__description { color: #333333; }
.artists__empty { color: #444444; }

/* FAQ page — questions and answers sit on white background */
.faq__item { border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
.faq__question { color: #111111; }
.faq__question:hover { color: var(--color-accent); }
.faq__answer { color: #333333; }

/* Home section content text on white */
.home__section-content { color: #333333; }

/* Home pillars title on white */
.home__pillars-title { color: #111111; text-shadow: none; }

/* Events page — section titles on white */
.events__section-title { color: #111111; text-shadow: none; }
.events__subtitle { color: #444444; }

/* Workshops listings area on white */
.workshops__listings { background: #ffffff; }

/* Scholarship details on white */
.scholarship__eligibility-title,
.scholarship__deadline-title,
.scholarship__download-title { color: #111111; }
.scholarship__eligibility-text,
.scholarship__description-text { color: #333333; }

/* Jobs page listings on white */
.jobs__listings { background: #ffffff; }

/* Projects gallery on white */
.projects__gallery { background: #ffffff; }

/* --------------------------------------------------------------------------
   22e. Newsletter Footer — Subscribe Now card style
   -------------------------------------------------------------------------- */
.footer__subscribe-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
}
.footer__subscribe-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.footer__subscribe-subtitle {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}
.footer__newsletter-form { margin-top: 0; }
.footer__newsletter-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-size: var(--font-size-base);
  font-family: var(--font-body);
  margin-bottom: 0.6rem;
  min-height: 52px;
}
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.footer__newsletter-input:focus { outline: none; border-color: #BF0808; }
.footer__newsletter-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-sm);
  min-height: 44px;
}
.footer__newsletter-msg {
  font-size: var(--font-size-xs);
  margin-top: var(--space-xs);
  min-height: 1.2em;
}
.footer__newsletter-msg--success { color: var(--color-success); }
.footer__newsletter-msg--error { color: #ff6b6b; }

/* Donate card — removed, donate button stays in social section */

/* Funded By bar */
.footer__funded-by {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.6rem var(--space-lg);
  margin-top: var(--space-lg);
}
.footer__funded-by-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer__funded-by-label {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer__funded-by-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}
/* footer funder logos — handled above near img reset */

/* Home Videos Section */
.home__videos {
  padding: var(--space-3xl) var(--space-lg);
  background: #ffffff;
}
.home__videos-inner { max-width: var(--content-width); margin: 0 auto; }
.home__videos-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: #111111;
  margin-bottom: var(--space-lg);
  text-align: center;
  letter-spacing: 0.05em;
  text-shadow: none;
}
.home__videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
  gap: var(--space-lg);
}
.home__video-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}
.home__video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.home__video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.home__video-caption {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.7);
  text-align: center;
}

/* Footer social icons row */
.footer__social-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

/* --------------------------------------------------------------------------
   23. Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
  .home__pillars-list { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__container { grid-template-columns: 1fr 1fr; }
  .home__section-images { grid-template-columns: repeat(2, 1fr); }
  .home__instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .events__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --font-size-4xl: 2.25rem;
    --font-size-3xl: 1.75rem;
    --font-size-2xl: 1.5rem;
    --nav-height: 80px;
  }

  /* Mobile Nav — always black background, white text regardless of Header Editor */
  .nav {
    background: #0a0a0a !important;
  }
  .nav__hamburger { display: flex; }
  .nav__hamburger {
    transition: transform 0.2s ease;
  }
  .nav__hamburger:hover {
    transform: scale(1.1);
  }
  .nav__hamburger:active {
    transform: scale(0.95);
  }
  .nav__hamburger-line {
    box-shadow: 0 0 8px rgba(191, 8, 8, 0.4);
    transition: 
      transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
      box-shadow 0.2s ease;
  }
  .nav__hamburger:hover .nav__hamburger-line {
    box-shadow: 0 0 12px rgba(191, 8, 8, 0.6);
  }
  .nav__menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background-image: linear-gradient(
      180deg,
      rgba(191, 8, 8, 0.15) 0%,
      rgba(10, 10, 10, 0.98) 20%,
      rgba(10, 10, 10, 0.98) 80%,
      rgba(191, 8, 8, 0.15) 100%
    ) !important;
    box-shadow: 
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 0 40px rgba(191, 8, 8, 0.3) !important;
    border-right: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 99999;
    padding: calc(var(--nav-height) + 16px) 16px 40px;
    gap: 0;
    margin: 0;
    inset: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
  }
  .nav__menu--open {
    display: flex !important;
    animation: menuSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  @keyframes menuSlideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Fallback for browsers without backdrop-filter support */
  @supports not (backdrop-filter: blur(20px)) {
    .nav__menu {
      background: rgba(10, 10, 10, 1);
    }
  }
  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .nav__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav__item:last-child {
    border-bottom: none;
  }
  .nav__link {
    font-size: 0.95rem !important;
    padding: 16px 20px;
    display: block;
    width: 100%;
    text-align: center;
    letter-spacing: 0.12em;
    line-height: 1.4;
    color: #ffffff !important;
    transition: 
      color 0.25s ease,
      background-color 0.25s ease,
      transform 0.2s ease;
  }
  .nav__link:hover, .nav__link:active {
    color: #BF0808 !important;
    background: linear-gradient(
      90deg,
      rgba(191, 8, 8, 0.15) 0%,
      rgba(191, 8, 8, 0.25) 50%,
      rgba(191, 8, 8, 0.15) 100%
    ) !important;
    transform: translateX(8px) !important;
  }
  .nav__link:active {
    transform: translateX(8px) scale(0.98) !important;
  }
  .nav__donate-btn {
    font-size: 0.85rem;
    padding: 12px 32px;
    margin-top: 24px;
    margin-bottom: 8px;
    transform: none !important;
    box-shadow: 
      0 4px 12px rgba(191, 8, 8, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: 
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }
  .nav__donate-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 
      0 6px 16px rgba(191, 8, 8, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  .nav__donate-btn:active {
    transform: translateY(0) !important;
  }

  /* Mobile Layout */
  .hero { min-height: 60vh; }
  .hero__tagline { font-size: var(--font-size-3xl); }
  .hero__actions { flex-direction: column; align-items: center; }

  /* Landscape orientation adjustments */
  @media (max-width: 768px) and (orientation: landscape) {
    .nav__menu {
      padding-top: calc(var(--nav-height) + 8px);
      padding-bottom: 24px;
    }
    .nav__link {
      padding: 12px 20px;
    }
    .nav__donate-btn {
      margin-top: 16px;
    }
  }

  .home__pillars-list { grid-template-columns: 1fr; }
  .home__stats-inner { grid-template-columns: repeat(2, 1fr); }
  .home__section-images { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .footer__container { grid-template-columns: 1fr; gap: var(--space-lg); }

  .projects__gallery-grid, .programs__listings-grid, .workshops__listings-grid {
    grid-template-columns: 1fr;
  }

  /* Videos grid — single column on mobile */
  .home__videos-grid { grid-template-columns: 1fr; }
  .projects__filters-inner, .programs__filters-inner, .workshops__filters-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .projects__filter-group, .programs__filter-group, .workshops__filter-group {
    width: 100%;
    min-width: unset;
  }
  .projects__filter-select, .projects__filter-input,
  .programs__filter-select, .programs__filter-input,
  .workshops__filter-select, .workshops__filter-input {
    width: 100%;
  }
  .projects__subnav-list, .workshops__subnav-list {
    justify-content: flex-start;
    gap: var(--space-sm);
  }
  .projects__subnav-link, .workshops__subnav-link {
    font-size: 0.8rem;
    padding: 6px 10px;
    white-space: nowrap;
  }
  .home__instagram-grid { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .events__grid { grid-template-columns: 1fr; }
  .home__upcoming-events { grid-template-columns: 1fr; }
  .footer__newsletter-group { flex-direction: column; }

  /* Page builder content — force responsive on mobile */
  #page-builder-content,
  #page-builder-content * {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  #page-builder-content img {
    max-width: 100% !important;
    height: auto !important;
  }
  #page-builder-content [style*="position: absolute"],
  #page-builder-content [style*="position:absolute"] {
    position: relative !important;
    left: 0 !important;
    top: auto !important;
  }
  #page-builder-content [style*="display: flex"],
  #page-builder-content [style*="display:flex"] {
    flex-wrap: wrap !important;
  }
  #page-builder-content [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Prevent horizontal scroll */
  body, html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  .site__main {
    overflow-x: hidden !important;
    max-width: 100vw;
  }
  *, *::before, *::after {
    box-sizing: border-box;
  }

  /* Global overflow-wrap protection */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th, label, blockquote {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* Section title letter-spacing reduction */
  .home__section-title, .about__section-title, .team__category-title,
  .events__section-title, .home__pillars-title {
    letter-spacing: 0.02em;
  }

  /* Page header title sizing */
  .about__title, .team__title, .projects__title, .programs__title,
  .workshops__title, .scholarship__title, .jobs__title, .contact__title,
  .artists__title, .faq__title, .policies__title, .events__title {
    font-size: var(--font-size-2xl);
    letter-spacing: 0.02em;
  }

  /* Pillar title letter-spacing */
  .home__pillar-title {
    letter-spacing: 0.02em;
  }

  /* Event card location wrapping */
  .event-card__location {
    word-break: break-word;
  }

  /* FAQ flex fix */
  .faq__question {
    min-width: 0;
    gap: var(--space-sm);
  }
  .faq__question-text {
    min-width: 0;
  }

  /* About page text overflow fix */
  .about__section-content,
  .about__mission-text,
  .about__mandate-text {
    max-width: 100%;
    box-sizing: border-box;
  }
  .about__section {
    padding: var(--space-xl) var(--space-md);
    box-sizing: border-box;
    max-width: 100vw;
  }
  .about__section-inner {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Page header padding fix for mobile */
  .about__header, .team__header, .projects__header, .programs__header,
  .workshops__header, .scholarship__header, .jobs__header, .contact__header,
  .artists__header, .faq__header, .policies__header {
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    box-sizing: border-box;
    max-width: 100vw;
  }
  .about__header-inner, .team__header-inner, .projects__header-inner,
  .programs__header-inner, .workshops__header-inner, .scholarship__header-inner,
  .jobs__header-inner, .contact__header-inner, .artists__header-inner,
  .faq__header-inner, .policies__header-inner {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Home section spacing fix */
  .home__section {
    padding: var(--space-xl) var(--space-md);
    box-sizing: border-box;
    max-width: 100vw;
  }
  .home__section-inner {
    max-width: 100%;
    box-sizing: border-box;
  }
  .home__section-content {
    max-width: 100%;
  }

  /* Home section images — remove max-height on mobile so images display properly */
  .home__section-image {
    max-height: none;
    width: 100%;
    height: auto;
  }
  .home__section-figure {
    width: 100%;
  }

  /* Nav hamburger z-index */
  .nav__hamburger {
    z-index: 100000;
    position: relative;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  :root {
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.5rem;
    --space-3xl: 3rem;
  }
  .hero__content { padding: var(--space-xl) var(--space-md); }
  .home__instagram-grid { grid-template-columns: repeat(2, 1fr); }

  .nav__brand-name {
    font-size: 0.85rem;
    letter-spacing: 0.03em;
  }

  .hero__tagline {
    font-size: 1.25rem;
    letter-spacing: 0.01em;
  }

  .hero__subtitle {
    max-width: 100%;
    font-size: var(--font-size-base);
  }

  .events__grid,
  .home__upcoming-events {
    grid-template-columns: 1fr;
  }

  .scholarship__award-value {
    font-size: var(--font-size-xl);
  }

  .calendar-widget__month {
    font-size: var(--font-size-base);
    letter-spacing: 0;
    text-align: center;
  }

  .footer__section {
    text-align: center;
  }
  .footer__brand-name {
    font-size: var(--font-size-base);
    letter-spacing: 0.03em;
  }
  .footer__heading {
    font-size: var(--font-size-xs);
  }
  .footer__newsletter-group {
    flex-direction: column;
  }
  .footer__newsletter-input,
  .footer__newsletter-btn {
    width: 100%;
  }
  .footer__nav {
    align-items: center;
  }
  .footer__social-list {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }
  /* Center donate card on mobile */
  .footer__donate-card {
    margin-left: auto;
    margin-right: auto;
  }

  /* About page title sizing for small mobile */
  .about__title, .team__title, .projects__title, .programs__title,
  .workshops__title, .scholarship__title, .jobs__title, .contact__title,
  .artists__title, .faq__title, .policies__title, .events__title {
    font-size: 1.5rem;
    letter-spacing: 0.01em;
  }

  /* Reduce section spacing on small mobile */
  .home__section {
    padding: var(--space-lg) var(--space-sm);
  }
  .about__section {
    padding: var(--space-lg) var(--space-sm);
  }
  .about__header, .team__header, .projects__header, .programs__header,
  .workshops__header, .scholarship__header, .jobs__header, .contact__header,
  .artists__header, .faq__header, .policies__header {
    padding: var(--space-lg) var(--space-sm) var(--space-md);
  }
}

/* ==========================================================================
   Impact Stats Section
   ========================================================================== */

.impact-stats {
  padding: var(--space-xl) 0;
  background: transparent;
  position: relative;
}

.impact-stats__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
  text-align: center;
}

.impact-stats__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.impact-stats__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
}

.impact-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  background: rgba(10, 10, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: var(--holo-blue);
  box-shadow: 0 10px 20px rgba(0, 231, 255, 0.2);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--holo-gold);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .impact-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .impact-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  
  .stat-item {
    padding: var(--space-sm);
  }
  
  .impact-stats__container {
    padding: 0 var(--space-sm);
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .impact-stats__grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

/* ==========================================================================
   Services Grid Section
   ========================================================================== */

.services-grid {
  padding: var(--space-xl) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.services-grid::before {
  display: none;
}

.services-grid__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

.services-grid__title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: var(--space-md);
  color: #111111;
}

.services-grid__subtitle {
  font-size: 1.125rem;
  color: #444444;
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
}

.services-grid__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background: rgba(10, 10, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: var(--space-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 231, 255, 0.1), rgba(255, 0, 231, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--holo-blue);
  box-shadow: 0 20px 40px rgba(0, 231, 255, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--holo-blue), var(--holo-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.service-card__icon i {
  font-size: 2rem;
  color: white;
}

.service-card__icon-emoji {
  font-size: 2.5rem;
  line-height: 1;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

.service-card__description {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--holo-blue);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card__link:hover {
  color: var(--holo-gold);
  transform: translateX(4px);
}

.service-card__link i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.service-card__link:hover i {
  transform: translateX(2px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .services-grid__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
  }
  
  .service-card {
    padding: var(--space-md);
  }
  
  .service-card__icon {
    width: 60px;
    height: 60px;
  }
  
  .service-card__icon i {
    font-size: 1.5rem;
  }
  
  .service-card__icon-emoji {
    font-size: 2rem;
  }
  
  .services-grid__container {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .services-grid__grid {
    grid-template-columns: 1fr;
  }
}
/* Force cache refresh - 04/01/2026 22:46:09 */


/* ==========================================================================
   GLOBAL: Red underline + center alignment for ALL section headings
   ========================================================================== */

/* All section/category headings — centered with red underline */
.workshops__booking-title,
.workshops__advanced-programs-title,
.workshops__symbols-title,
.workshops__program-overview-title,
.workshops__filters-title,
.programs__section-title,
.scholarship__section-title,
.jobs__section-title,
.contact__address-title,
.contact__form-title,
.artists__category-heading,
.home__calendar-inner h2,
.home__upcoming-events h2,
.project-detail__links-heading {
  text-align: center;
}

.workshops__booking-title::after,
.workshops__advanced-programs-title::after,
.workshops__symbols-title::after,
.workshops__program-overview-title::after,
.events__section-title::after,
.artists__category-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #BF0808;
  margin: 0.4rem auto 0;
  border-radius: 2px;
}

/* Ensure about section titles are centered — no text-align on container */
.about__section-content,
.about__mission-text,
.about__mandate-text {
  color: #333333;
  line-height: 1.8;
  max-width: 800px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
