/* ============================================================
   HON. ISAAC ADONGO — OFFICIAL WEBSITE
   Refined elegant palette · Living motion · Ladylike sophistication
   ============================================================ */

:root {
  /* Deep statesman foundation */
  --navy-900: #0a1f44;
  --navy-800: #12285a;
  --navy-700: #1c3570;
  --navy-600: #254080;

  /* Rose gold + warm gold (refined, feminine, elegant) */
  --gold-500: #c9a43a;
  --gold-400: #d4b755;
  --gold-300: #e8d088;
  --rose-gold: #e0b4a0;
  --rose-soft: #f5d8c8;

  /* Blush & ivory (soft, ladylike accents) */
  --blush-100: #fdf2ee;
  --blush-200: #fbe5dc;
  --blush-300: #f5cdbe;
  --ivory: #faf6ec;
  --cream: #fdfaf3;
  --pearl: #fbf9f5;

  --white: #ffffff;
  --gray-100: #f4f5f9;
  --gray-200: #e7e9f0;
  --gray-300: #cdd2dc;
  --gray-500: #7a8294;
  --gray-700: #3d4456;
  --gray-900: #1a1d27;
  --danger: #c53030;
  --success: #2f855a;

  --shadow-sm: 0 1px 3px rgba(10,31,68,0.08);
  --shadow-md: 0 6px 20px rgba(10,31,68,0.10);
  --shadow-lg: 0 20px 50px rgba(10,31,68,0.18);
  --shadow-rose: 0 10px 30px rgba(224,180,160,0.35);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Cormorant Garamond', Georgia, serif;

  --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.6em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1em; }

a { color: var(--navy-700); text-decoration: none; transition: color 0.3s var(--ease-elegant); }
a:hover { color: var(--gold-500); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--rose-gold); color: var(--navy-900); }

/* ======================================================
   ANIMATIONS — keyframes
   ====================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -2%); }
}
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes drift {
  0% { transform: translate(0, 0); opacity: 0; }
  15% { opacity: 0.35; }
  100% { transform: translate(var(--dx, 60px), var(--dy, -200px)); opacity: 0; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,164,58,0.5); }
  50% { box-shadow: 0 0 0 14px rgba(201,164,58,0); }
}
@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes drawLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes ribbonFloat {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(1.15); opacity: 0.85; }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes underlineGrow {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}
@keyframes softGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,164,58,0); }
  50% { box-shadow: 0 0 24px 0 rgba(201,164,58,0.18); }
}
@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blink {
  50% { border-right-color: transparent; }
}
@keyframes wave {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-3px); }
  75% { transform: translateY(3px); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Reveal-on-scroll utility classes — gentle, purposeful */
.reveal {
  opacity: 0;
  transition: opacity 1.1s var(--ease-elegant), transform 1.1s var(--ease-elegant);
  will-change: opacity, transform;
}
.reveal-up { transform: translateY(28px); }
.reveal-left { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.reveal-scale { transform: scale(0.97); }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0,0) scale(1);
}

/* Honor reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ======================================================
   LAYOUT
   ====================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 5.5rem 0; position: relative; }
@media (max-width: 768px) { section { padding: 4rem 0; } }

.section-dark { background: var(--navy-900); color: var(--ivory); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.85); }

.section-ivory { background: var(--ivory); }
.section-blush {
  background: linear-gradient(135deg, var(--blush-100) 0%, var(--cream) 100%);
}

/* Decorative section divider */
.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 2.5rem;
}
.section-divider::before,
.section-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.section-divider-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  position: relative;
}
.section-divider-dot::before, .section-divider-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--gold-300);
  border-radius: 50%;
  transform: translateY(-50%);
}
.section-divider-dot::before { left: -14px; }
.section-divider-dot::after { right: -14px; }

/* ======================================================
   EYEBROW & HEADINGS
   ====================================================== */
.eyebrow {
  display: inline-block;
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 2.8rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2.2rem;
  height: 1px;
  background: var(--gold-500);
  transform-origin: left center;
  animation: ribbonFloat 4.5s ease-in-out infinite;
}

.section-title { margin-bottom: 1rem; }
.section-subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 660px;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.75;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.78); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.script-accent {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-500);
  font-size: 1.4em;
}

/* ======================================================
   HEADER / NAV
   ====================================================== */
.site-header {
  background: var(--navy-900);
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(201,164,58,0.5);
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease-elegant);
}
.site-header.scrolled {
  background: rgba(10,31,68,0.96);
  border-bottom-color: var(--gold-500);
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), var(--rose-gold), var(--gold-500), transparent);
  background-size: 200% 100%;
  animation: goldShimmer 6s linear infinite;
}

.nav-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: white;
  transition: transform 0.3s var(--ease-elegant);
}
.brand:hover { transform: translateY(-1px); }

.brand-mark {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-500), var(--rose-gold) 60%, var(--gold-300));
  background-size: 150% 150%;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201,164,58,0.4);
  position: relative;
  animation: goldShimmer 8s ease infinite;
  transition: transform 0.4s var(--ease-bounce);
}
.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.05);
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(201,164,58,0.4);
  animation: pulseGlow 3s infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}
.brand-sub {
  font-size: 0.7rem;
  color: var(--gold-300);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav ul {
  display: flex;
  gap: 0.15rem;
  list-style: none;
  align-items: center;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  position: relative;
  transition: color 0.3s var(--ease-elegant);
}
.main-nav a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: all 0.3s var(--ease-elegant);
  transform: translateX(-50%);
}
.main-nav a:hover { color: var(--gold-300); }
.main-nav a:hover::before { width: 65%; }
.main-nav a.active { color: var(--gold-300); }
.main-nav a.active::before { width: 65%; }

.main-nav .network-cta {
  background: linear-gradient(135deg, var(--gold-500), var(--rose-gold));
  background-size: 200% 200%;
  color: var(--navy-900) !important;
  font-weight: 600;
  margin-left: 0.5rem;
  box-shadow: 0 4px 12px rgba(201,164,58,0.3);
  animation: goldShimmer 5s ease infinite;
}
.main-nav .network-cta::before { display: none; }
.main-nav .network-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,180,160,0.5);
  color: var(--navy-900) !important;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.3s;
}
.mobile-toggle:hover { background: rgba(255,255,255,0.1); border-color: var(--gold-400); }

@media (max-width: 980px) {
  .mobile-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--navy-800);
    display: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .main-nav.open { display: block; animation: fadeUp 0.4s var(--ease-elegant); }
  .main-nav ul { flex-direction: column; padding: 1rem; gap: 0; }
  .main-nav a { display: block; padding: 0.85rem 1rem; }
  .main-nav .network-cta { margin: 0.5rem 0 0 0; text-align: center; }
}

/* ======================================================
   BUTTONS
   ====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-elegant);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.7s var(--ease-elegant);
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--rose-gold));
  color: var(--navy-900);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(201,164,58,0.35);
}
.btn-primary:hover {
  color: var(--navy-900);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(224,180,160,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: white;
  color: var(--navy-900);
  border-color: white;
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy-900);
  color: white;
  border-color: var(--navy-900);
}
.btn-navy:hover {
  background: var(--navy-700);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(10,31,68,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-ghost:hover {
  background: var(--navy-900);
  color: white;
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; border-radius: 100px; }
.btn-block { width: 100%; }

/* ======================================================
   HERO — animated, alive
   ====================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  color: white;
  padding: 7rem 0 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  background-image: url('https://sspark.genspark.ai/cfimages?u1=eki4u4WrIpUaAypdI5WBTHykqB2tOCb68BJ%2BRMnaijT4QiaZecg6%2F9BYlVgK1FiaQG6dnJ2CLmwo8kvp37NDCQapzP%2BtFa2GMU0eLm4wHLQ6B9Bu&u2=p3lZ0V%2B096aG7mpQ&width=2560');
  background-size: cover;
  background-position: center top;
  opacity: 0.32;
  animation: kenBurns 20s ease-in-out infinite alternate;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 65%;
  background: linear-gradient(90deg, var(--navy-900) 0%, rgba(10,31,68,0.85) 35%, transparent 100%);
  z-index: 1;
}

/* Decorative floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  opacity: 0;
  animation: drift 10s ease-out infinite;
}
/* Particles refined: slower, subtler, fewer visible at once. Suggest light, never distract. */
.particle { opacity: 0; }
.particle:nth-child(1) { left: 14%; bottom: 0; --dx: 30px; --dy: -380px; animation-delay: 0s;  animation-duration: 18s; }
.particle:nth-child(2) { left: 32%; bottom: 0; --dx: -20px; --dy: -440px; width: 3px; height: 3px; animation-delay: 4s;  animation-duration: 20s; background: var(--rose-gold); }
.particle:nth-child(3) { left: 58%; bottom: 0; --dx: 40px; --dy: -400px; animation-delay: 8s;  animation-duration: 19s; }
.particle:nth-child(4) { left: 78%; bottom: 0; --dx: -25px; --dy: -420px; width: 3px; height: 3px; animation-delay: 12s; animation-duration: 21s; background: var(--rose-soft); }
.particle:nth-child(5), .particle:nth-child(6) { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,164,58,0.15);
  border: 1px solid var(--gold-500);
  color: var(--gold-300);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  animation: fadeUp 0.8s var(--ease-elegant) 0.1s both;
}
.hero-badge::before {
  content: '✦';
  color: var(--gold-400);
  animation: spinSlow 8s linear infinite;
  display: inline-block;
}

.hero h1 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  animation: fadeUp 1s var(--ease-elegant) 0.3s both;
  font-weight: 700;
}
.hero h1 .first-name {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-300) 50%, var(--rose-gold) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 4s ease infinite;
}

.hero .tagline {
  color: var(--gold-300);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--font-script);
  font-weight: 500;
  animation: fadeUp 1s var(--ease-elegant) 0.5s both;
  position: relative;
  display: inline-block;
}
.hero .tagline::before, .hero .tagline::after {
  content: '✦';
  color: var(--rose-gold);
  margin: 0 0.5rem;
  font-size: 0.75em;
  opacity: 0.7;
}

.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 560px;
  font-weight: 300;
  line-height: 1.75;
  animation: fadeUp 1s var(--ease-elegant) 0.7s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-elegant) 0.9s both;
}

/* Scroll indicator at bottom of hero */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--gold-300);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.55;
  animation: float 3.5s ease-in-out infinite;
}
.scroll-indicator span { display: block; }
.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
  margin: 0.5rem auto 0;
}

.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: white;
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(224,180,160,0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201,164,58,0.12), transparent 50%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: white;
  animation: fadeUp 0.8s var(--ease-elegant) both;
}
.page-hero p {
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: 300;
  animation: fadeUp 0.8s var(--ease-elegant) 0.2s both;
}
.page-hero .hero-badge { animation: fadeUp 0.6s var(--ease-elegant) both; }

/* ======================================================
   STAT STRIP
   ====================================================== */
.stat-strip {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  padding: 2.5rem 0;
  color: white;
  border-top: 1px solid rgba(201,164,58,0.3);
  border-bottom: 1px solid rgba(201,164,58,0.2);
  position: relative;
}
.stat-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), var(--rose-gold), var(--gold-500), transparent);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item {
  position: relative;
  padding: 0 0.5rem;
  transition: transform 0.4s var(--ease-elegant);
}
.stat-item:hover { transform: translateY(-3px); }
.stat-item { transition: transform 0.6s var(--ease-elegant); }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,164,58,0.4), transparent);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  background: linear-gradient(135deg, var(--gold-300), var(--rose-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
@media (max-width: 780px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-number { font-size: 2.1rem; }
}

/* ======================================================
   GRIDS & CARDS
   ====================================================== */
.grid { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.5s var(--ease-elegant);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--rose-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-elegant);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-gold);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.5s var(--ease-bounce);
  position: relative;
}
.card-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 16px;
  border: 1px solid var(--gold-400);
  opacity: 0;
  transition: all 0.4s var(--ease-elegant);
}
.card:hover .card-icon {
  transform: scale(1.06);
  background: linear-gradient(135deg, var(--gold-500), var(--rose-gold));
  color: var(--navy-900);
}
.card:hover .card-icon::after {
  opacity: 1;
  inset: -5px;
}

.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--gray-700); margin-bottom: 0; line-height: 1.7; }

.pillar-card {
  background: white;
  padding: 2.25rem 2rem;
  border-radius: var(--radius-md);
  border-top: 4px solid var(--gold-500);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease-elegant);
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(224,180,160,0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--rose-gold);
}
.pillar-card:hover::after { opacity: 1; }

/* ======================================================
   IMPACT NETWORK MAJOR PILLAR BLOCK
   ====================================================== */
.network-hero {
  background:
    linear-gradient(135deg, #0a1f44 0%, #12285a 50%, #1c3570 100%);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.network-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224,180,160,0.18), transparent 70%);
  pointer-events: none;
  animation: float 12s ease-in-out infinite;
}
.network-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,164,58,0.12), transparent 70%);
  pointer-events: none;
  animation: float 15s ease-in-out infinite reverse;
}
.network-hero > .container { position: relative; z-index: 1; }
.network-hero h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, #fff, var(--rose-gold) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.network-hero .gold-line {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--rose-gold));
  margin-bottom: 1.5rem;
  border-radius: 2px;
  transform-origin: left;
  animation: drawLine 1.2s var(--ease-elegant) both;
}
.network-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .network-actions { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .network-actions { grid-template-columns: 1fr; }
}
.network-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(224,180,160,0.4);
  color: white;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.5s var(--ease-elegant);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.network-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-500), var(--rose-gold));
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}
.network-btn > * { position: relative; z-index: 1; }
.network-btn:hover {
  color: var(--navy-900);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 40px rgba(224,180,160,0.4);
  border-color: transparent;
}
.network-btn:hover::before { opacity: 1; }
.network-btn-icon {
  font-size: 1.8rem;
  transition: transform 0.5s var(--ease-bounce);
  display: inline-block;
}
.network-btn:hover .network-btn-icon {
  transform: scale(1.2) rotate(-6deg);
}
.network-btn-label { font-size: 0.95rem; }

/* ======================================================
   FORMS
   ====================================================== */
.form-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--gray-200);
  flex-wrap: wrap;
}
.form-tab {
  padding: 0.85rem 1.4rem;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s var(--ease-elegant);
  position: relative;
}
.form-tab:hover { color: var(--navy-900); transform: translateY(-1px); }
.form-tab.active {
  color: var(--navy-900);
  border-bottom-color: var(--gold-500);
}
.form-tab.active::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 8px;
  height: 8px;
  background: var(--rose-gold);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: pulseGlow 2s infinite;
}

.form-panel { display: none; }
.form-panel.active { display: block; animation: fadeUp 0.6s var(--ease-elegant); }

.form-card {
  background: white;
  padding: 2.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--rose-gold), var(--gold-500));
  background-size: 200% 100%;
  animation: goldShimmer 4s linear infinite;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}
.form-field label .req { color: var(--danger); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: white;
  transition: all 0.3s var(--ease-elegant);
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--rose-gold);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(224,180,160,0.2);
  transform: translateY(-1px);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-help { font-size: 0.82rem; color: var(--gray-500); margin-top: 0.3rem; }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
@media (max-width: 600px) { .checkbox-grid { grid-template-columns: 1fr; } }
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.95rem;
  background: var(--blush-100);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease-elegant);
  font-size: 0.9rem;
}
.checkbox-item:hover {
  background: var(--blush-200);
  border-color: var(--rose-gold);
  transform: translateX(2px);
}
.checkbox-item input { width: auto; margin: 0; accent-color: var(--gold-500); }
.checkbox-item input:checked + span { color: var(--navy-900); font-weight: 600; }

.radio-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.radio-group label {
  background: var(--blush-100);
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease-elegant);
}
.radio-group label:hover { transform: translateY(-2px); border-color: var(--rose-gold); }
.radio-group input { display: none; }
.radio-group label:has(input:checked) {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: white;
  border-color: var(--navy-900);
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: white;
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold-500);
  max-width: 380px;
  z-index: 10000;
  animation: slideInRight 0.5s var(--ease-bounce);
  font-size: 0.92rem;
  line-height: 1.5;
}
.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }

/* ======================================================
   STORY CARDS
   ====================================================== */
.story-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.5s var(--ease-elegant);
  display: flex;
  flex-direction: column;
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.story-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: white;
  padding: 1.4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.story-header::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(224,180,160,0.2), transparent 70%);
}
.story-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  position: relative;
}
.story-meta {
  font-size: 0.82rem;
  color: var(--gold-300);
  margin-top: 0.2rem;
  position: relative;
}
.story-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-500), var(--rose-gold));
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.6rem;
  position: relative;
}
.story-body {
  padding: 1.6rem;
  color: var(--gray-700);
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  position: relative;
}
.story-body::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--rose-gold);
  opacity: 0.2;
  line-height: 1;
}
.story-body p { margin-bottom: 0; position: relative; }
.story-footer {
  padding: 0.85rem 1.5rem;
  background: var(--blush-100);
  border-top: 1px solid var(--gray-200);
  font-size: 0.78rem;
  color: var(--gray-500);
  display: flex;
  justify-content: space-between;
}

/* ======================================================
   TIMELINE
   ====================================================== */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-500), var(--rose-gold), var(--gold-500));
}
.timeline-item {
  position: relative;
  padding-bottom: 2.25rem;
  transition: transform 0.4s var(--ease-elegant);
}
.timeline-item:hover { transform: translateX(6px); }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 5px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--gold-500), var(--rose-gold));
  border: 3px solid var(--navy-900);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201,164,58,0.2);
  transition: all 0.4s var(--ease-elegant);
}
.timeline-item:hover::before {
  transform: scale(1.2);
  box-shadow: 0 0 0 8px rgba(224,180,160,0.25);
}
.timeline-year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold-500);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}
.timeline-title {
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}
.timeline-desc {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.65;
}

/* ======================================================
   ADMIN
   ====================================================== */
.admin-body { background: var(--gray-100); min-height: 100vh; }
.admin-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: white;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--gold-500);
  position: relative;
}
.admin-header::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--rose-gold), var(--gold-500));
  background-size: 200% 100%;
  animation: goldShimmer 5s linear infinite;
}
.admin-header h1 { color: white; font-size: 1.35rem; margin-bottom: 0; }
.admin-container { max-width: 1400px; margin: 2rem auto; padding: 0 1.5rem; }
.metrics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 1000px) { .metrics { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .metrics { grid-template-columns: repeat(2, 1fr); } }
.metric-card {
  background: white;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold-500);
  transition: all 0.4s var(--ease-elegant);
}
.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--rose-gold);
}
.metric-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.metric-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}
.admin-tabs {
  display: flex;
  gap: 0.25rem;
  background: white;
  padding: 0.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.admin-tab {
  padding: 0.7rem 1.2rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.3s var(--ease-elegant);
}
.admin-tab:hover { color: var(--navy-900); background: var(--blush-100); }
.admin-tab.active {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: white;
  box-shadow: var(--shadow-sm);
}
.admin-panel {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: none;
}
.admin-panel.active { display: block; animation: fadeUp 0.4s var(--ease-elegant); }
.admin-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.admin-panel-header h2 { margin-bottom: 0; font-size: 1.3rem; }

.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th {
  background: var(--blush-100);
  color: var(--navy-900);
  text-align: left;
  padding: 0.85rem;
  font-weight: 600;
  border-bottom: 2px solid var(--gold-500);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.data-table td {
  padding: 0.85rem;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}
.data-table tr {
  transition: background 0.2s;
}
.data-table tr:hover { background: var(--blush-100); }
.data-table .empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-500);
  font-style: italic;
}

.status-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-pending { background: #fef3c7; color: #92400e; }
.status-approved { background: #d1fae5; color: #065f46; }
.status-declined { background: #fee2e2; color: #991b1b; }
.status-completed { background: #dbeafe; color: #1e40af; }
.status-review { background: #e0e7ff; color: #3730a3; }

.group-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.group-bar:last-child { border-bottom: none; }
.group-name { font-weight: 600; width: 260px; font-size: 0.92rem; }
.group-progress {
  flex: 1;
  background: var(--gray-200);
  border-radius: 100px;
  height: 22px;
  overflow: hidden;
  position: relative;
}
.group-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy-900), var(--gold-500), var(--rose-gold));
  background-size: 200% 100%;
  animation: goldShimmer 4s linear infinite;
  transition: width 1s var(--ease-elegant);
}
.group-count {
  font-weight: 700;
  font-family: var(--font-heading);
  width: 60px;
  text-align: right;
  font-size: 1.1rem;
  color: var(--navy-900);
}

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
  background: linear-gradient(135deg, var(--navy-900), #08193a);
  color: rgba(255,255,255,0.8);
  padding: 5rem 0 1.5rem;
  border-top: 3px solid var(--gold-500);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), var(--rose-gold), var(--gold-500), transparent);
  background-size: 200% 100%;
  animation: goldShimmer 6s linear infinite;
}
.site-footer::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224,180,160,0.06), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: var(--rose-gold);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.6rem; }
.footer-grid a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all 0.3s;
  position: relative;
  padding-left: 0;
}
.footer-grid a::before {
  content: '→';
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: all 0.3s var(--ease-elegant);
  color: var(--gold-400);
}
.footer-grid a:hover {
  color: var(--gold-300);
  padding-left: 4px;
}
.footer-grid a:hover::before {
  opacity: 1;
  left: -10px;
}
.footer-brand p { font-size: 0.9rem; margin: 0.5rem 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  position: relative;
}

/* ======================================================
   BACK TO TOP
   ====================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-500);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-elegant);
  z-index: 90;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--gold-500), var(--rose-gold));
  color: var(--navy-900);
}

/* ======================================================
   UTILITY
   ====================================================== */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.py-6 { padding-top: 4rem; padding-bottom: 4rem; }

.gold-accent {
  background: linear-gradient(135deg, var(--gold-500), var(--rose-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hidden { display: none !important; }

.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  display: inline-block;
  background: var(--blush-100);
  border: 1px solid var(--rose-gold);
  color: var(--navy-900);
  padding: 0.35rem 0.95rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s var(--ease-elegant);
  cursor: default;
}
.tag:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--rose-gold));
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-rose);
}

.quote-block {
  border-left: 4px solid var(--gold-500);
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, var(--blush-100), var(--ivory));
  font-style: italic;
  margin: 1.75rem 0;
  font-size: 1.05rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
  font-family: var(--font-script);
  color: var(--navy-800);
  line-height: 1.7;
  font-size: 1.2rem;
  font-weight: 500;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 1rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold-500);
  opacity: 0.4;
  line-height: 1;
}

.content-image {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 1.75rem 0;
  transition: all 0.6s var(--ease-elegant);
}
.content-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 820px) { .split-media { grid-template-columns: 1fr; gap: 2.5rem; } }
.split-media img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.6s var(--ease-elegant);
}
.split-media img:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: var(--shadow-lg);
}

.image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(224,180,160,0.2));
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
}
.image-frame:hover::before { opacity: 1; }
.image-frame img {
  transition: transform 0.8s var(--ease-elegant);
}
.image-frame:hover img { transform: scale(1.06); }

.image-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(224,180,160,0.5);
  border-radius: calc(var(--radius-md) - 8px);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
}
.image-frame:hover::after { opacity: 1; }

.cta-band {
  background: linear-gradient(135deg, var(--gold-500), var(--rose-gold));
  color: var(--navy-900);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: goldShimmer 6s linear infinite;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--navy-900); }
.cta-band p { color: var(--navy-800); font-size: 1.05rem; }

.list-check {
  list-style: none;
  padding: 0;
}
.list-check li {
  padding: 0.7rem 0 0.7rem 2.2rem;
  position: relative;
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease-elegant);
}
.list-check li:hover {
  padding-left: 2.5rem;
  color: var(--navy-900);
}
.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--gold-500), var(--rose-gold));
  color: var(--navy-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  transform: translateY(-50%);
  box-shadow: 0 2px 6px rgba(201,164,58,0.3);
  transition: all 0.3s var(--ease-bounce);
}
.list-check li:hover::before {
  transform: translateY(-50%) scale(1.15) rotate(360deg);
}

/* ======================================================
   VIDEO CENTRE
   ====================================================== */
.featured-video {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.featured-video::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--rose-gold), var(--gold-500));
  background-size: 200% 100%;
  animation: goldShimmer 4s linear infinite;
}
@media (max-width: 900px) {
  .featured-video { grid-template-columns: 1fr; }
}
.featured-video-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy-900);
}
.featured-video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.featured-video-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  margin-top: 0.6rem;
}
.featured-video-info p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.featured-video-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--gray-500);
  border-top: 1px dashed var(--gray-300);
  padding-top: 1rem;
}

/* Filter bar */
.video-filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2.5rem auto 1rem;
}
.video-filter-btn {
  padding: 0.6rem 1.3rem;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.3s var(--ease-elegant);
}
.video-filter-btn:hover {
  background: var(--blush-100);
  color: var(--navy-900);
  border-color: var(--rose-gold);
  transform: translateY(-2px);
}
.video-filter-btn.active {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: white;
  border-color: var(--navy-900);
  box-shadow: var(--shadow-md);
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .video-grid { grid-template-columns: 1fr; } }

.video-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.5s var(--ease-elegant);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  animation: fadeUp 0.6s var(--ease-elegant) both;
}
.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-gold);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-900);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-elegant);
}
.video-card:hover .video-thumb img {
  transform: scale(1.08);
}
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,31,68,0.4));
  pointer-events: none;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold-500), var(--rose-gold));
  color: var(--navy-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transform: translate(-50%, -50%) scale(0.85);
  box-shadow: 0 6px 20px rgba(10,31,68,0.5);
  transition: all 0.4s var(--ease-bounce);
  z-index: 2;
  padding-left: 4px;
}
.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 10px 30px rgba(224,180,160,0.6);
  animation: pulseGlow 1.5s infinite;
}
.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(10,31,68,0.85);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.video-card-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.video-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.video-card-body h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  color: var(--navy-900);
}
.video-card-body p {
  font-size: 0.86rem;
  color: var(--gray-700);
  margin-bottom: 0.85rem;
  flex: 1;
  line-height: 1.55;
}
.video-card-meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
  border-top: 1px dashed var(--gray-200);
  padding-top: 0.75rem;
  margin-bottom: 0.85rem;
}
.video-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}
.video-card-btn {
  flex: 1;
  padding: 0.5rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1.5px solid var(--gray-300);
  background: white;
  color: var(--gray-700);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-elegant);
  text-decoration: none;
  font-family: var(--font-body);
}
.video-card-btn:hover {
  background: var(--blush-100);
  border-color: var(--rose-gold);
  color: var(--navy-900);
  transform: translateY(-1px);
}
.video-card-btn.primary {
  background: linear-gradient(135deg, var(--gold-500), var(--rose-gold));
  border-color: transparent;
  color: var(--navy-900);
}
.video-card-btn.primary:hover {
  background: linear-gradient(135deg, var(--rose-gold), var(--gold-500));
  color: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-rose);
}

/* Category pills */
.video-cat-pill {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
}
.cat-parliament { background: linear-gradient(135deg, #1c3570, #254080); }
.cat-interview { background: linear-gradient(135deg, #c9a43a, #d4b755); color: var(--navy-900); }
.cat-radio { background: linear-gradient(135deg, #b7791f, #d4b755); }
.cat-tv { background: linear-gradient(135deg, #c53030, #e0b4a0); }
.cat-economic { background: linear-gradient(135deg, #2f855a, #38a169); }
.cat-constituency { background: linear-gradient(135deg, #e0b4a0, #f5cdbe); color: var(--navy-900); }

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.video-modal.open { display: flex; animation: fadeIn 0.3s; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,31,68,0.85);
  backdrop-filter: blur(8px);
}
.video-modal-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  width: 100%;
  max-height: 92vh;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: scaleIn 0.4s var(--ease-elegant);
  display: flex;
  flex-direction: column;
}
.video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(10,31,68,0.85);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s var(--ease-bounce);
  backdrop-filter: blur(4px);
}
.video-modal-close:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: rotate(90deg) scale(1.1);
}
.video-modal-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--navy-900);
  flex-shrink: 0;
}
.video-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal-info {
  padding: 1.5rem 2rem 2rem;
  overflow-y: auto;
}
.video-modal-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.video-modal-info p {
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* Homepage video card — embedded player, plays on the homepage */
.homepage-video-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: stretch;
  border: 1px solid var(--gray-200);
  position: relative;
}
.homepage-video-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--rose-gold), var(--gold-500));
  background-size: 200% 100%;
  animation: goldShimmer 4s linear infinite;
  z-index: 1;
}
@media (max-width: 900px) {
  .homepage-video-card { grid-template-columns: 1fr; }
}
.homepage-video-player-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-900);
}
.homepage-video-player-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.homepage-video-info {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.homepage-video-info h3 {
  font-size: 1.4rem;
  margin: 0.6rem 0 0.6rem;
  line-height: 1.3;
}
.homepage-video-info p {
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* ============== Smart YouTube player + fallback ============== */
.smart-player-target {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.smart-player-target iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
.smart-player-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--navy-900);
}
.smart-player-loading .loader-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold-500);
  animation: loaderBounce 1.2s ease-in-out infinite;
}
.smart-player-loading .loader-dot:nth-child(2) { animation-delay: 0.15s; }
.smart-player-loading .loader-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes loaderBounce {
  0%, 80%, 100% { transform: scale(0.4); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

/* Beautiful fallback card shown when a video can't be embedded */
.yt-fallback-card {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none;
  color: white;
  overflow: hidden;
  background: var(--navy-900);
  cursor: pointer;
}
.yt-fallback-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
  transition: transform 0.6s var(--ease-elegant), filter 0.4s ease;
}
.yt-fallback-card:hover .yt-fallback-thumb {
  transform: scale(1.04);
  filter: brightness(0.7) saturate(1.2);
}
.yt-fallback-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0) 0%, rgba(10,31,68,0.55) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(10,31,68,0.7) 100%);
}
.yt-fallback-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  gap: 1rem;
}
.yt-fallback-play {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
  transition: transform 0.3s var(--ease-bounce);
}
.yt-fallback-card:hover .yt-fallback-play {
  transform: scale(1.12);
}
.yt-fallback-text { max-width: 460px; }
.yt-fallback-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: white;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.yt-fallback-reason {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .yt-fallback-label { font-size: 1.1rem; }
  .yt-fallback-reason { font-size: 0.8rem; }
}

/* Info banner above featured video */
.video-info-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 1.25rem auto 0;
  max-width: 920px;
  padding: 0.9rem 1.2rem;
  background: linear-gradient(135deg, rgba(201,164,58,0.10), rgba(224,180,160,0.12));
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--navy-800);
  line-height: 1.55;
}
.video-info-banner .info-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Decorative ornament — golden flourish */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
  color: var(--gold-500);
  font-size: 1.5rem;
  opacity: 0.7;
}
.ornament::before, .ornament::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}
.ornament::after {
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

/* ============================================================
   ELECTION RESULTS CARDS — bolgatanga.html
   ============================================================ */
.election-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 1000px) { .election-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px)  { .election-grid { grid-template-columns: 1fr; } }

.election-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-elegant), box-shadow 0.4s var(--ease-elegant);
  position: relative;
  overflow: hidden;
}
.election-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.election-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-300), var(--rose-gold));
  opacity: 0.7;
}
.election-card--featured {
  background: linear-gradient(160deg, #fff 0%, #fef9ec 100%);
  border: 1px solid var(--gold-300);
  box-shadow: 0 12px 30px rgba(201,164,58,0.18);
}
.election-card--featured::before {
  height: 5px;
  background: linear-gradient(90deg, var(--gold-500), var(--rose-gold), var(--gold-500));
  background-size: 200% 100%;
  animation: goldShimmer 4s linear infinite;
  opacity: 1;
}
.election-year {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gray-500);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.election-year strong {
  font-style: normal;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 1.6rem;
  letter-spacing: 0;
}
.election-result-tag {
  display: inline-block;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.election-result-tag--alt {
  background: var(--navy-900);
  color: var(--gold-300);
}
.election-card h3 {
  font-size: 1.05rem;
  color: var(--navy-900);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}
.election-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.election-stats li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--gray-200);
  font-size: 0.88rem;
}
.election-stats li:last-child { border-bottom: none; }
.election-stats li span {
  color: var(--gray-500);
  font-weight: 500;
}
.election-stats li strong {
  color: var(--navy-900);
  font-weight: 600;
  text-align: right;
}
.election-note {
  font-size: 0.86rem;
  color: var(--gray-700);
  line-height: 1.55;
  font-style: italic;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-200);
  margin-top: 0.5rem;
}
.election-source-note {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  background: var(--blush-100);
  border-left: 3px solid var(--rose-gold);
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  color: var(--gray-700);
  line-height: 1.65;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.election-source-note > span:first-child { font-size: 1.1rem; flex-shrink: 0; }
.election-source-note em { display: block; margin-top: 0.4rem; color: var(--gray-500); font-size: 0.78rem; }
.election-source-note a { color: var(--navy-700); font-weight: 600; }

/* ============================================================
   ARTICLES LIBRARY — articles.html
   ============================================================ */
.articles-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0 1.5rem;
  padding: 1rem 1.2rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.articles-search {
  flex: 1 1 280px;
  position: relative;
}
.articles-search input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.6rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fafafa;
  transition: all 0.3s ease;
}
.articles-search input:focus {
  outline: none;
  border-color: var(--gold-500);
  background: white;
  box-shadow: 0 0 0 3px rgba(201,164,58,0.15);
}
.articles-search::before {
  content: '🔍';
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  opacity: 0.6;
  pointer-events: none;
}
.articles-count {
  color: var(--gray-500);
  font-size: 0.88rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.articles-count strong {
  color: var(--navy-900);
  font-weight: 600;
  font-style: normal;
}

.articles-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
}
.article-filter-btn {
  background: white;
  color: var(--navy-700);
  border: 1px solid var(--gray-200);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease-elegant);
  font-family: inherit;
}
.article-filter-btn:hover {
  border-color: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-1px);
}
.article-filter-btn.active {
  background: var(--navy-900);
  color: var(--gold-300);
  border-color: var(--navy-900);
  box-shadow: 0 4px 12px rgba(10,31,68,0.25);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 800px) { .articles-grid { grid-template-columns: 1fr; } }

.article-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: all 0.4s var(--ease-elegant);
  position: relative;
  overflow: hidden;
}
.article-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gold-500), var(--rose-gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease-elegant);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.article-card:hover::before { transform: scaleY(1); }

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.article-source {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--navy-900);
  color: var(--gold-300);
  padding: 0.22rem 0.65rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.article-date {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.article-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: var(--blush-100);
  color: #b7791f;
  border: 1px solid rgba(224,180,160,0.4);
}
.article-cat.cat-economy   { background: #e6f4ec; color: #2f855a; border-color: #c5e7d2; }
.article-cat.cat-parliament{ background: #fef5e6; color: #b7791f; border-color: #fae5b8; }
.article-cat.cat-bog       { background: #eaf0fb; color: #1c3570; border-color: #c9d6ee; }
.article-cat.cat-press     { background: #f5e8e2; color: #c53030; border-color: #e0b4a0; }
.article-cat.cat-constituency { background: #fff4ec; color: #d97706; border-color: #fcd9b6; }
.article-cat.cat-opinion   { background: #f4ecfa; color: #6b21a8; border-color: #d8c3eb; }

.article-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  line-height: 1.4;
  color: var(--navy-900);
  margin: 0;
}
.article-card p {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.article-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.7rem;
  border-top: 1px dashed var(--gray-200);
}
.article-read-link {
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s var(--ease-elegant), color 0.3s ease;
}
.article-read-link:hover {
  color: var(--gold-500);
  gap: 0.55rem;
}
.article-read-link::after {
  content: '↗';
  transition: transform 0.3s var(--ease-elegant);
}
.article-read-link:hover::after { transform: translate(2px, -2px); }
.article-tag {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-style: italic;
}

.articles-empty {
  text-align: center;
  padding: 3rem 1rem;
  background: white;
  border: 1px dashed var(--rose-gold);
  border-radius: var(--radius-md);
  color: var(--gray-500);
}
.articles-empty h3 { color: var(--gray-700); margin-bottom: 0.5rem; }

/* Featured / Op-Ed strip on articles page */
.featured-article {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.featured-article::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--rose-gold), var(--gold-500));
  background-size: 200% 100%;
  animation: goldShimmer 4s linear infinite;
}
.featured-article-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-300);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.featured-article h2 {
  color: white;
  margin-bottom: 0.7rem;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}
.featured-article p {
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 1rem;
}
.featured-article .btn { margin-top: 0.5rem; }

/* ============================================================
   TIKTOK PAGE — tiktok.html
   Black + cyan + magenta accents, but kept refined
   ============================================================ */

/* Hero variant */
.tiktok-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 244, 238, 0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(254, 44, 85, 0.12), transparent 55%),
    linear-gradient(140deg, var(--navy-900), #0a1228 100%);
  position: relative;
  overflow: hidden;
}
.tiktok-hero h1, .tiktok-hero p { color: white; }
.tiktok-hero p { color: rgba(255,255,255,0.85); }
.tiktok-hero-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,244,238,0.15), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: tiktokGlow 8s ease-in-out infinite alternate;
}
@keyframes tiktokGlow {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(-60px, 40px) scale(1.15); opacity: 0.9; }
}
.tiktok-badge {
  background: linear-gradient(90deg, #25f4ee 0%, #fe2c55 100%);
  color: #0a1228 !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.95rem !important;
  font-weight: 700 !important;
}

/* Topic grid */
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (max-width: 1000px) { .tiktok-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .tiktok-grid { grid-template-columns: 1fr; } }

.tiktok-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.6rem 1.5rem 1.4rem;
  background: linear-gradient(160deg, #11142c 0%, #0a1228 100%);
  border: 1px solid rgba(37,244,238,0.18);
  border-radius: var(--radius-md);
  color: white;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-elegant);
}
.tiktok-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,244,238,0.06), rgba(254,44,85,0.06));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.tiktok-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-elegant);
}
.tiktok-card:hover {
  transform: translateY(-5px);
  border-color: rgba(254,44,85,0.45);
  box-shadow: 0 14px 36px rgba(254,44,85,0.18), 0 6px 20px rgba(37,244,238,0.12);
}
.tiktok-card:hover::before { opacity: 1; }
.tiktok-card:hover::after  { transform: scaleX(1); }
.tiktok-card-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37,244,238,0.15), rgba(254,44,85,0.15));
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}
.tiktok-card h3 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin: 0.2rem 0;
  position: relative;
  z-index: 1;
}
.tiktok-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 0.8rem;
  flex: 1;
  position: relative;
  z-index: 1;
}
.tiktok-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #25f4ee;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(255,255,255,0.12);
  position: relative;
  z-index: 1;
  transition: gap 0.3s ease, color 0.3s ease;
}
.tiktok-card:hover .tiktok-card-cta {
  gap: 0.55rem;
  color: #fe2c55;
}

/* Hashtag pills */
.tiktok-hashtag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.tiktok-hashtag {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  background: white;
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-elegant);
  position: relative;
  overflow: hidden;
}
.tiktok-hashtag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tiktok-hashtag:hover {
  color: white;
  transform: translateY(-2px) scale(1.03);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(254,44,85,0.25);
}
.tiktok-hashtag:hover::before { opacity: 1; }
.tiktok-hashtag span, .tiktok-hashtag {
  position: relative;
}
.tiktok-hashtag:hover { z-index: 1; }
.tiktok-hashtag::after {
  content: attr(data-text);
}

/* Custom search card */
.tiktok-search-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff 0%, #f9f7ff 100%);
  border: 1px solid rgba(254,44,85,0.15);
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
}
.tiktok-search-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
}
.tiktok-search-form {
  display: flex;
  gap: 0.6rem;
  margin: 0 auto;
  max-width: 560px;
  flex-wrap: wrap;
}
.tiktok-search-form input {
  flex: 1 1 240px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: white;
  transition: all 0.3s ease;
}
.tiktok-search-form input:focus {
  outline: none;
  border-color: #fe2c55;
  box-shadow: 0 0 0 3px rgba(254,44,85,0.12);
}
.tiktok-search-form .btn {
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  color: #0a1228;
  border: none;
  font-weight: 700;
}
.tiktok-search-form .btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(254,44,85,0.3);
}
.tiktok-search-hint {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gray-500);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.tiktok-search-hint em { color: var(--navy-700); font-weight: 600; }

/* Submission card */
.tiktok-submit-card {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.tiktok-submit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
}
.tiktok-submit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1228, #11142c);
  color: white;
  border-radius: 20px;
  position: relative;
}
.tiktok-submit-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.tiktok-submit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--navy-900);
}
.tiktok-submit-card p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.tiktok-submit-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}
.tiktok-submit-form input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--gray-50, #fafafa);
  transition: all 0.3s ease;
}
.tiktok-submit-form input:focus {
  outline: none;
  border-color: var(--gold-500);
  background: white;
  box-shadow: 0 0 0 3px rgba(201,164,58,0.15);
}
.tiktok-submit-form .btn { margin-top: 0.4rem; }
.tiktok-submit-success {
  margin-top: 1.2rem;
  padding: 0.95rem 1.2rem;
  background: #e6f4ec;
  border-left: 3px solid #2f855a;
  border-radius: var(--radius-sm);
  color: #2f5a3f;
  font-size: 0.92rem;
  text-align: left;
  animation: fadeIn 0.4s ease;
}

/* Homepage TikTok teaser strip */
.tiktok-teaser-section {
  padding: 4rem 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(37,244,238,0.08), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(254,44,85,0.08), transparent 55%),
    linear-gradient(135deg, #0a1228, #11142c 60%, #1a1140);
  position: relative;
  overflow: hidden;
}
.tiktok-teaser-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #25f4ee, #fe2c55, transparent);
}
.tiktok-teaser-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .tiktok-teaser-card { grid-template-columns: 1fr; gap: 2rem; }
}
.tiktok-teaser-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.5rem 0 0.7rem;
}
.tiktok-teaser-content p {
  line-height: 1.7;
  font-size: 1rem;
  max-width: 580px;
}

/* Decorative phone mock */
.tiktok-teaser-visual {
  display: flex;
  justify-content: center;
}
.tiktok-phone {
  width: 220px;
  height: 380px;
  background: linear-gradient(160deg, #1a1f3a, #0a1228);
  border-radius: 32px;
  padding: 12px;
  box-shadow:
    0 30px 60px rgba(254,44,85,0.18),
    0 10px 30px rgba(37,244,238,0.12),
    inset 0 0 0 2px rgba(255,255,255,0.06);
  position: relative;
  animation: tiktokFloat 5s ease-in-out infinite;
}
.tiktok-phone::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 6px;
  background: rgba(0,0,0,0.5);
  border-radius: 3px;
}
.tiktok-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(37,244,238,0.15), transparent 60%),
    linear-gradient(180deg, #11142c, #1a1140);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.tiktok-phone-icon {
  width: 96px; height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(37,244,238,0.2), rgba(254,44,85,0.2));
  color: white;
  position: relative;
  animation: tiktokPulse 2.5s ease-in-out infinite;
}
.tiktok-phone-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 27px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  z-index: -1;
  filter: blur(8px);
  opacity: 0.6;
}
.tiktok-phone-tags {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}
.tiktok-phone-tags span {
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(37,244,238,0.3);
  font-weight: 500;
  letter-spacing: 0.02em;
}
@keyframes tiktokFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-10px) rotate(1deg); }
}
@keyframes tiktokPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(254,44,85,0.4); }
  50%      { transform: scale(1.05); box-shadow: 0 0 0 14px rgba(254,44,85,0); }
}

/* ============================================================
   FACEBOOK PAGE — facebook.html
   Facebook brand blue (#1877F2) blended with site palette
   ============================================================ */

/* Hero */
.fb-hero {
  background:
    radial-gradient(circle at 25% 30%, rgba(24,119,242,0.18), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(66,103,178,0.12), transparent 55%),
    linear-gradient(140deg, var(--navy-900), #0a1740 100%);
  position: relative;
  overflow: hidden;
}
.fb-hero h1, .fb-hero p { color: white; }
.fb-hero p { color: rgba(255,255,255,0.85); }
.fb-hero-glow {
  position: absolute;
  top: -100px; left: -100px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(24,119,242,0.22), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  animation: fbGlow 8s ease-in-out infinite alternate;
}
@keyframes fbGlow {
  0%   { transform: translate(0,0) scale(1); opacity: 0.6; }
  100% { transform: translate(70px,40px) scale(1.15); opacity: 0.95; }
}
.fb-badge {
  background: linear-gradient(90deg, #1877F2, #4267B2);
  color: white !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.95rem !important;
  font-weight: 700 !important;
}

/* Topic grid */
.fb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (max-width: 1000px) { .fb-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .fb-grid { grid-template-columns: 1fr; } }

.fb-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.6rem 1.5rem 1.4rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  color: var(--navy-900);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-elegant);
  box-shadow: var(--shadow-sm);
}
.fb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1877F2, #4267B2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-elegant);
}
.fb-card:hover {
  transform: translateY(-5px);
  border-color: #1877F2;
  box-shadow: 0 14px 36px rgba(24,119,242,0.18);
}
.fb-card:hover::before { transform: scaleX(1); }
.fb-card-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(24,119,242,0.10), rgba(66,103,178,0.10));
  border: 1px solid rgba(24,119,242,0.2);
  margin-bottom: 0.4rem;
  color: #1877F2;
}
.fb-card h3 {
  color: var(--navy-900);
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  margin: 0.2rem 0;
}
.fb-card p {
  color: var(--gray-700);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 0.8rem;
  flex: 1;
}
.fb-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #1877F2;
  font-weight: 600;
  font-size: 0.86rem;
  padding-top: 0.6rem;
  border-top: 1px dashed var(--gray-200);
  transition: gap 0.3s ease, color 0.3s ease;
}
.fb-card:hover .fb-card-cta {
  gap: 0.55rem;
  color: var(--navy-900);
}

/* Live feed placeholder */
.fb-feed-placeholder {
  background: white;
  border: 2px dashed rgba(24,119,242,0.3);
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}
.fb-feed-placeholder-inner {
  max-width: 560px;
  margin: 0 auto;
}
.fb-feed-placeholder h3 {
  margin: 1rem 0 0.5rem;
  color: var(--navy-900);
}
.fb-feed-placeholder p {
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.fb-page-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  max-width: 560px;
}
.fb-page-form input {
  flex: 1 1 280px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fafafa;
  transition: all 0.3s ease;
}
.fb-page-form input:focus {
  outline: none;
  border-color: #1877F2;
  background: white;
  box-shadow: 0 0 0 3px rgba(24,119,242,0.15);
}
.fb-page-form .btn {
  background: linear-gradient(90deg, #1877F2, #4267B2);
  color: white;
  border: none;
}
.fb-page-form .btn:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(24,119,242,0.3);
}
.fb-page-form-hint {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 1rem;
}
.fb-live-frame {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin: 0 auto;
  max-width: 560px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.fb-live-frame .fb-page {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}
.fb-live-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Search card */
.fb-search-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff 0%, #f4f8ff 100%);
  border: 1px solid rgba(24,119,242,0.18);
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
}
.fb-search-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1877F2, #4267B2);
}
.fb-search-form {
  display: flex;
  gap: 0.6rem;
  margin: 0 auto;
  max-width: 560px;
  flex-wrap: wrap;
}
.fb-search-form input {
  flex: 1 1 240px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: white;
  transition: all 0.3s ease;
}
.fb-search-form input:focus {
  outline: none;
  border-color: #1877F2;
  box-shadow: 0 0 0 3px rgba(24,119,242,0.15);
}
.fb-search-form .btn {
  background: linear-gradient(90deg, #1877F2, #4267B2);
  color: white;
  border: none;
  font-weight: 700;
}
.fb-search-form .btn:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(24,119,242,0.3);
}
.fb-search-hint {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gray-500);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.fb-search-hint em { color: var(--navy-700); font-weight: 600; }

/* Featured wall */
.fb-featured-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) { .fb-featured-wall { grid-template-columns: 1fr; } }
.fb-featured-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.fb-featured-badge {
  display: inline-block;
  background: linear-gradient(90deg, #1877F2, #4267B2);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  align-self: flex-start;
}
.fb-featured-note {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.55;
  font-style: italic;
}
.fb-featured-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  background: white;
  border: 1px dashed rgba(24,119,242,0.3);
  border-radius: var(--radius-md);
  color: var(--gray-700);
}
.fb-featured-empty h3 { color: var(--navy-900); margin-bottom: 0.4rem; }

/* Submission card */
.fb-submit-card {
  max-width: 720px;
  margin: 2rem auto;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.fb-submit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1877F2, #4267B2);
}
.fb-submit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1877F2, #4267B2);
  color: white;
  border-radius: 20px;
}
.fb-submit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--navy-900);
}
.fb-submit-card p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.fb-submit-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}
.fb-submit-form input,
.fb-submit-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fafafa;
  transition: all 0.3s ease;
}
.fb-submit-form input:focus,
.fb-submit-form select:focus {
  outline: none;
  border-color: #1877F2;
  background: white;
  box-shadow: 0 0 0 3px rgba(24,119,242,0.15);
}
.fb-submit-form .btn { margin-top: 0.4rem; }
.fb-submit-success {
  margin-top: 1.2rem;
  padding: 0.95rem 1.2rem;
  background: #e6f4ec;
  border-left: 3px solid #2f855a;
  border-radius: var(--radius-sm);
  color: #2f5a3f;
  font-size: 0.92rem;
  text-align: left;
  animation: fadeIn 0.4s ease;
}

/* Homepage Facebook teaser */
.fb-teaser-section {
  padding: 4rem 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(24,119,242,0.12), transparent 55%),
    radial-gradient(circle at 15% 70%, rgba(66,103,178,0.10), transparent 55%),
    linear-gradient(135deg, #0a1f44, #0a1740 60%, #112a5e);
  position: relative;
  overflow: hidden;
}
.fb-teaser-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #1877F2, #4267B2, transparent);
}
.fb-teaser-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .fb-teaser-card { grid-template-columns: 1fr; gap: 2rem; }
}
.fb-teaser-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.5rem 0 0.7rem;
}
.fb-teaser-content p {
  line-height: 1.7;
  font-size: 1rem;
  max-width: 580px;
}
.fb-teaser-visual {
  display: flex;
  justify-content: center;
}
.fb-mock-card {
  width: 280px;
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow:
    0 30px 60px rgba(24,119,242,0.25),
    0 10px 30px rgba(0,0,0,0.2);
  animation: fbFloat 5s ease-in-out infinite;
  position: relative;
}
.fb-mock-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, #1877F2, #4267B2);
  border-radius: 14px;
  z-index: -1;
  filter: blur(12px);
  opacity: 0.4;
}
.fb-mock-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--gray-200);
}
.fb-mock-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.fb-mock-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-900);
}
.fb-mock-meta {
  font-size: 0.72rem;
  color: var(--gray-500);
}
.fb-mock-body {
  padding: 0.7rem 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gray-700);
}
.fb-mock-photo {
  height: 100px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1877F2 0%, #4267B2 50%, var(--navy-900) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin: 0.5rem 0 0.7rem;
}
.fb-mock-actions {
  display: flex;
  gap: 0.7rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.75rem;
  color: var(--gray-500);
}
.fb-mock-actions span { display: inline-flex; align-items: center; gap: 0.25rem; }
@keyframes fbFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(1deg); }
}

/* ============================================================
   FOOTER SOCIAL ICONS
   ============================================================ */
.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  padding: 1.2rem 0;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-social-label {
  color: var(--gold-300);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  margin-right: 0.4rem;
  letter-spacing: 0.02em;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(201,164,58,0.25);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.82rem;
  transition: all 0.3s var(--ease-elegant);
  background: rgba(255,255,255,0.03);
}
.footer-social-icon svg { flex-shrink: 0; transition: transform 0.3s var(--ease-bounce); }
.footer-social-icon:hover {
  border-color: var(--gold-500);
  color: var(--gold-300);
  background: rgba(201,164,58,0.1);
  transform: translateY(-2px);
}
.footer-social-icon:hover svg { transform: scale(1.1); }
.footer-social-icon--tiktok {
  /* Subtle gradient hint that this is the TikTok link */
  border-color: rgba(255,77,127,0.35);
}
.footer-social-icon--tiktok:hover {
  border-color: #ff0050;
  color: #ff4d7f;
  background: rgba(255,77,127,0.08);
}
.footer-social-icon--wa {
  border-color: rgba(37,211,102,0.4);
}
.footer-social-icon--wa:hover {
  border-color: #25d366;
  color: #25d366;
  background: rgba(37,211,102,0.10);
}

/* ============================================================
   TIKTOK SECTION — videos.html
   ============================================================ */
.tiktok-section {
  background: linear-gradient(135deg, #0a1f44 0%, #1a0a2e 50%, #2d1b3d 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}
.tiktok-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #25f4ee 0%, #ff0050 100%);
  background-size: 200% 100%;
  animation: tiktokShimmer 4s linear infinite;
}
@keyframes tiktokShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.tiktok-section::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,244,238,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.tiktok-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.tiktok-icon-bg {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #25f4ee, #ff0050);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(255,0,80,0.3);
}
.tiktok-header h2 {
  color: white;
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
}
.tiktok-header em {
  color: #25f4ee;
  font-family: 'Cormorant Garamond', serif;
}
.tiktok-message {
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.tiktok-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.tiktok-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s var(--ease-elegant);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.tiktok-btn--primary {
  background: linear-gradient(135deg, #25f4ee, #ff0050);
  color: white;
  box-shadow: 0 6px 20px rgba(255,0,80,0.4);
}
.tiktok-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,0,80,0.5);
}
.tiktok-btn--ghost {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.tiktok-btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

/* TikTok video grid (when populated) */
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.tiktok-placeholder-card {
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.tiktok-placeholder-card .tiktok-placeholder-icon {
  font-size: 2.5rem;
  margin-bottom: 0.6rem;
  display: block;
}
