/* ============================================================
   SENATOR SALIU MUSTAPHA — CINEMATIC GOVERNANCE PLATFORM
   Premium Design System — Deep Navy + Strategic Cyan
   ============================================================ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Design Tokens ─── */
:root {
  /* Core Foundation — Premium Light Pivot */
  --bg-page: #FDFCF9;
  --bg-subtle: #F6F4EF;
  --bg-elevated: #ffffff;
  
  --text-primary: #0E1D36;
  --text-secondary: #4A5568;
  --text-muted: #8E9AAF;
  --text-on-dark: #ffffff;

  /* Institutional Navy & Gold Palette */
  --navy-primary: #0E1D36;
  --navy-mid: #1A2B4C;
  --navy-light: #2D3E5E;
  
  --gold-accent: #C5A36A;
  --gold-light: #D4B98B;
  --gold-muted: rgba(197, 163, 106, 0.15);
  --gold-faint: rgba(197, 163, 106, 0.08);

  --white: #ffffff;
  --black-deep: #050A14;

  /* Dynamic Accents */
  --accent: var(--gold-accent);
  --accent-light: var(--gold-light);
  --accent-muted: var(--gold-muted);
  --accent-border: rgba(197, 163, 106, 0.2);

  /* Strategic Cyan Variables */
  --cyan: #00D4FF;
  --cyan-muted: rgba(0, 212, 255, 0.2);
  --cyan-deep: #0099CC;

  /* Glass System for Light Theme */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-dark: rgba(14, 29, 54, 0.95);
  --glass-border: rgba(14, 29, 54, 0.08);
  --glass-border-hover: rgba(197, 163, 106, 0.3);

  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing Scale */
  --space-2xs: 0.125rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 10rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 860px;
  --max-width-wide: 1400px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 180ms var(--ease-out);
  --transition-base: 350ms var(--ease-out);
  --transition-slow: 600ms var(--ease-out);
  --transition-hero: 800ms var(--ease-in-out);

  /* Shadows for Light Theme */
  --shadow-sm: 0 2px 4px rgba(14, 29, 54, 0.05);
  --shadow-md: 0 8px 16px rgba(14, 29, 54, 0.08);
  --shadow-lg: 0 16px 32px rgba(14, 29, 54, 0.12);
  --shadow-xl: 0 24px 64px rgba(14, 29, 54, 0.15);
  --shadow-accent: 0 4px 20px rgba(197, 163, 106, 0.15);

  /* Borders */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 24px;
  --radius-2xl: 40px;
}

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

body {
  background-color: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color var(--transition-base);
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-primary);
  line-height: 1.2;
}

.text-serif {
  font-family: var(--font-serif);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* ─── Typography System ─── */
.heading-display {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.heading-section {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.heading-subsection {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
}

.text-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.text-small {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ─── Layout Utilities ─── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--wide {
  max-width: var(--max-width-wide);
}

.section {
  padding: var(--space-5xl) 0;
  position: relative;
  overflow: hidden;
}

.section--subtle {
  background-color: var(--bg-subtle);
}

.section--elevated {
  background-color: var(--bg-elevated);
  box-shadow: inset 0 -1px 0 var(--glass-border), inset 0 1px 0 var(--glass-border);
}

.section--dark {
  background-color: var(--navy-primary);
  color: var(--white);
}

.section--dark .heading-section,
.section--dark .heading-subsection,
.section--dark .text-body,
.section--dark .text-serif {
  color: var(--white);
}

.section--dark .eyebrow-badge {
  background: rgba(197, 163, 106, 0.15);
  color: var(--white);
  font-weight: 800;
  border: 1px solid rgba(197, 163, 106, 0.3);
}

/* ─── Global Section Header Pattern ─── */
.section-header {
  margin-bottom: var(--space-4xl);
  max-width: var(--max-width-narrow);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Leadership Refinements ─── */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: center;
}

.leadership-visual {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.leadership-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leadership-visual-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
  padding: var(--space-xl);
  color: var(--text-primary);
}

.leadership-visual-badge span {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.leadership-visual-badge small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.leadership-text blockquote {
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--gold-accent);
  margin-bottom: var(--space-xl);
  padding-left: var(--space-lg);
  border-left: 2px solid var(--gold-accent);
}

.leadership-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--glass-border);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 8px;
}

.section-header .eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-muted);
  color: var(--text-primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.section-header h2.heading-section {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
  padding: var(--space-xs) 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  text-decoration: none;
  z-index: 1001;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-accent);
}

.logo-text {
  display: flex;
  flex-direction: column;
  transition: color var(--transition-fast);
}

.header.menu-open .logo-name {
  color: var(--white);
}

.header.menu-open .logo-tag {
  color: var(--gold-accent);
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.01em;
}

.logo-tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: all var(--transition-base);
  transform: translateX(-50%);
  border-radius: 1px;
}

@media (hover: hover) {
  .nav-link:hover {
    color: var(--text-primary);
  }
  .nav-link:hover::after {
    width: 60%;
  }
}

.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  width: 100%;
}

/* Mobile Toggle */
.nav-toggle {
  display: none !important;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-primary);
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Force hide on desktop */
@media (min-width: 769px) {
  .nav-toggle {
    display: none !important;
  }
}

/* ════════════════════════════════════════════════════════
   HERO SECTION — PREMIUM EDITORIAL
   ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-page);
  padding-top: 100px;
  overflow: hidden;
}

.hero-container {
  width: 100%;
}

/* Slides wrapper — CRITICAL: uses position:relative height trick */
.hero-slides {
  position: relative;
  min-height: 600px;
}

/* Non-active slides: absolutely positioned, zero size, invisible */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s var(--ease-in-out), visibility 1.2s var(--ease-in-out);
  pointer-events: none;
}

/* Active slide: in-flow, full height, visible */
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
}

.hero-slide-content {
  flex: 0 0 55%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out) 0.4s;
}

.hero-slide.active .hero-slide-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow {
  margin-bottom: var(--space-lg);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-xl);
}

.hero-headline .highlight {
  color: var(--gold-accent);
}

.hero-subtext {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: var(--space-3xl);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-visual {
  flex: 0 0 40%;
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  transition: all 1.2s var(--ease-out) 0.2s;
}

.hero-slide.active .hero-visual {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease-out;
}

.hero-slide.active .hero-image {
  transform: scale(1.1);
}

/* Indicators */
.hero-navigation {
  margin-top: var(--space-4xl);
}

.hero-indicators {
  display: flex;
  gap: var(--space-sm);
}

.hero-indicator {
  width: 40px;
  height: 2px;
  background: var(--gold-muted);
  border: none;
  cursor: pointer;
  padding: 6px 0;
  transition: all var(--transition-base);
}

.hero-indicator.active {
  background: var(--gold-accent);
  width: 64px;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0;
  animation: revealUp 900ms var(--ease-out) forwards 1100ms;
}

.hero-scroll-text {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(14, 29, 54, 0.3);
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--navy-primary), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════
   LEADERSHIP OVERVIEW
   ════════════════════════════════════════════════════════ */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: center;
}

.leadership-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--navy-primary), var(--navy-mid));
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
}

.leadership-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
}

.leadership-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 1.5s var(--ease-out);
}

@media (hover: hover) {
  .leadership-visual:hover img {
    transform: scale(1.05);
  }
}

.leadership-visual-initials {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 7rem;
  font-weight: 600;
  color: var(--cyan);
  opacity: 0.08;
  letter-spacing: 0.15em;
}

.leadership-visual-badge {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  z-index: 10;
  background: rgba(14, 29, 54, 0.9);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.leadership-visual-badge span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 2px;
}

.leadership-visual-badge small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0.9;
  letter-spacing: 0.02em;
}

.leadership-text .eyebrow {
  margin-bottom: var(--space-md);
}

.leadership-text h2 {
  margin-bottom: var(--space-xl);
}

.leadership-text blockquote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  border-left: 2px solid var(--cyan);
  padding-left: var(--space-lg);
  margin: var(--space-2xl) 0;
  line-height: 1.6;
}

.leadership-text p {
  margin-bottom: var(--space-lg);
}

/* Stats bar */
.leadership-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: var(--space-xs);
}

/* ════════════════════════════════════════════════════════
   BIOGRAPHY TIMELINE
   ════════════════════════════════════════════════════════ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: var(--space-3xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--cyan), var(--cyan-muted), rgba(0, 212, 255, 0.1));
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-3xl);
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: calc(-1 * var(--space-3xl) - 5px);
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
  transition: all var(--transition-base);
}

.timeline-item:hover .timeline-dot {
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.4);
}

.timeline-period {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: var(--space-sm);
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: var(--space-sm);
}

.timeline-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════
   LEGISLATIVE SECTION — Glass Cards
   ════════════════════════════════════════════════════════ */
.legislative-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.leg-card {
  background: var(--bg-elevated);
  padding: var(--space-3xl) var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
}

.leg-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-accent);
}

.leg-card:hover .leg-card-icon {
  background: var(--gold-accent);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
  border-color: transparent;
}

.leg-card-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-faint);
  color: var(--gold-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  border: 1px solid var(--accent-border);
}

.leg-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: var(--space-md);
}

.leg-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.leg-card-tag {
  display: inline-block;
  margin-top: var(--space-lg);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-accent);
  padding: 6px 14px;
  background: var(--gold-faint);
  border-radius: 100px;
  border: 1px solid var(--accent-border);
}

/* ════════════════════════════════════════════════════════
   GOVERNANCE PHILOSOPHY — Pillars
   ════════════════════════════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.pillar {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pillar:hover {
  transform: translateY(-8px);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-lg);
}

.pillar-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold-faint);
  line-height: 1;
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  transition: color var(--transition-base);
}

.pillar:hover .pillar-number {
  color: var(--gold-muted);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  border: 1px solid var(--accent-border);
}

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: var(--space-md);
}

.pillar p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════
   CONSTITUENCY IMPACT
   ════════════════════════════════════════════════════════ */
.impact-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-4xl);
}

.metric {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.metric:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-xl);
}

.metric:hover .metric-value {
  color: var(--gold-accent);
  transform: scale(1.05);
}

.metric-value {
  transition: all var(--transition-base);
}

.metric-value {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.metric-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-accent);
}

.impact-programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.program {
  padding: var(--space-2xl);
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.program:hover {
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.program:hover .program-category {
  background: var(--gold-accent);
  color: var(--white);
  transform: translateX(4px);
}

.program-category {
  transition: all var(--transition-base);
}

.program-category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: var(--space-md);
  padding: 4px 12px;
  background: var(--gold-faint);
  border-radius: 100px;
  border: 1px solid var(--accent-border);
}

.program h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: var(--space-md);
}

.program p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════
   VISION SECTION
   ════════════════════════════════════════════════════════ */
.vision-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-4xl);
}

.vision-intro .quote {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: var(--space-lg);
}

.vision-intro .attribution {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.vision-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.vision-card:hover {
  border-color: var(--gold-accent);
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.vision-card:hover .vision-card-icon {
  background: var(--gold-accent);
  color: var(--white);
  transform: scale(1.1);
}

.vision-card-icon {
  transition: all var(--transition-base);
}

.vision-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.vision-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  font-size: 1.35rem;
  border: 1px solid var(--accent-border);
}

.vision-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: var(--space-md);
}

.vision-card > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.vision-card ul {
  margin-top: var(--space-md);
}

.vision-card li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: var(--space-lg);
  position: relative;
}

.vision-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--gold-accent);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.vision-card:hover li::before {
  transform: scale(1.3);
  background: var(--navy-primary);
}



/* ════════════════════════════════════════════════════════
   ENGAGEMENT / CONTACT
   ════════════════════════════════════════════════════════ */
.engagement-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3xl);
  text-align: center;
}

.engagement-info {
  max-width: var(--max-width-narrow);
}

.engagement-info h3 {
  margin-bottom: var(--space-lg);
}

.engagement-info > p {
  margin-bottom: var(--space-xl);
  font-size: 0.95rem;
  color: var(--grey-400);
  line-height: 1.85;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  width: 100%;
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-channel:hover {
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.contact-channel:hover .contact-channel-icon {
  background: var(--gold-accent);
  color: var(--white);
  transform: scale(1.1);
}

.contact-channel-icon {
  transition: all var(--transition-base);
}

.contact-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  flex-shrink: 0;
  font-size: 1.15rem;
  border: 1px solid var(--accent-border);
}

.contact-channel-text strong {
  display: block;
  font-size: 1rem;
  color: var(--navy-primary);
  margin-bottom: 4px;
}

.contact-channel-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-channel-text span {
  font-size: 0.82rem;
  color: var(--grey-500);
}

/* Contact channels responsiveness */
@media (max-width: 768px) {
  .contact-channels {
    grid-template-columns: 1fr;
  }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary {
  background: var(--navy-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--navy-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.btn-outline {
  background: transparent;
  color: var(--navy-primary);
  border: 1.5px solid var(--accent-border);
}

.btn-outline:hover {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: var(--gold-faint);
  color: var(--navy-primary);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  background: var(--gold-muted);
  border-color: var(--accent-border);
}

.btn-gold {
  background: var(--gold-accent);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-primary);
  padding: var(--space-5xl) 0 var(--space-3xl);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-top: var(--space-xl);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-accent);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 0;
  text-decoration: none;
  transition: all var(--transition-fast);
  border-bottom: 1px solid transparent;
  width: fit-content;
}

.footer-col a:hover {
  color: var(--gold-accent);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--grey-600);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-500);
  font-size: 0.9rem;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-social a:hover {
  background: var(--cyan);
  color: var(--navy-deep);
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

/* ════════════════════════════════════════════════════════
   PREMIUM SCROLL REVEAL SYSTEM
   ════════════════════════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.animate-on-scroll.visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* Animation Variants */
.reveal-in {
  transform: translateY(0) scale(0.95);
}

.reveal-zoom {
  transform: translateY(20px) scale(0.9);
}

/* Stagger Delay System */
.delay-1 { transition-delay: 100ms !important; }
.delay-2 { transition-delay: 200ms !important; }
.delay-3 { transition-delay: 300ms !important; }
.delay-4 { transition-delay: 400ms !important; }
.delay-5 { transition-delay: 500ms !important; }
.delay-6 { transition-delay: 600ms !important; }
.delay-7 { transition-delay: 700ms !important; }
.delay-8 { transition-delay: 800ms !important; }

/* Desktop-only reveals for side-by-side elements */
@media (min-width: 1025px) {
  .reveal-left { transform: translateX(-40px); }
  .reveal-right { transform: translateX(40px); }
  
  .reveal-left.visible, 
  .reveal-right.visible { transform: translateX(0); }
}

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: var(--space-2xl);
  right: var(--space-2xl);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
  font-size: 1rem;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 25px rgba(0, 212, 255, 0.3);
}

/* ════════════════════════════════════════════════════════
   GALLERY SECTION
   ════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--navy-light);
  cursor: pointer;
  transition: all var(--transition-slow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 41, 0.9), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.gallery-overlay h3 {
  color: var(--gold-accent);
  font-size: 1.1rem;
  margin-bottom: 4px;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-out);
}

.gallery-overlay span {
  color: var(--grey-400);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-out) 0.1s;
}

/* Hover Effects */
@media (hover: hover) {
  .gallery-item:hover {
    border-color: var(--cyan);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
  }

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

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

  .gallery-item:hover .gallery-overlay h3,
  .gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
  }
}

/* Category Filter Tabs (Placeholder for future) */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--grey-400);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--cyan);
  color: var(--navy-deep);
  border-color: var(--cyan);
}
.lang-switcher-floating {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
}

.lang-toggle-btn {
  background: var(--navy-primary);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-base);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lang-toggle-btn:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.lang-toggle-btn i:first-child {
  color: var(--gold-accent);
  font-size: 1rem;
}

.lang-dropdown {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  background: var(--navy-primary);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.lang-switcher-floating:hover .lang-dropdown,
.lang-switcher-floating.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  background: transparent;
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
  font-size: 0.85rem;
  width: 100%;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.lang-option.active {
  background: var(--gold-faint);
  color: var(--gold-accent);
}

.lang-code {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  opacity: 0.6;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE DESIGN — COMPREHENSIVE OVERHAUL
   ════════════════════════════════════════════════════════ */

/* ─── Tablet & Below (1024px) ─── */
@media (max-width: 1024px) {

  /* Hero: stack vertically on tablet */
  .hero-slide {
    flex-direction: column-reverse;
    gap: var(--space-2xl);
    justify-content: flex-start;
    align-items: center;
  }

  .hero-slide-content {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    flex: 0 0 auto;
    width: 60%;
    max-width: 400px;
    opacity: 0;
    transform: translateY(-20px) scale(0.97);
    transition: all 1.2s var(--ease-out) 0.2s;
  }

  .hero-slide.active .hero-visual {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .hero-slides { min-height: auto; }

  .hero-ctas { justify-content: center; }

  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-indicators { justify-content: center; }

  /* Sections */
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .leadership-visual {
    max-height: 420px;
    aspect-ratio: 16 / 9;
  }

  .legislative-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-programs {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ─── Mobile (768px) ─── */
@media (max-width: 768px) {

  /* ═══ LAYOUT BASE ═══ */
  .section {
    padding: var(--space-3xl) 0;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  /* ═══ HEADER & NAVIGATION ═══ */
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 20, 40, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 80px var(--space-xl) var(--space-3xl);
    z-index: 998;
  }

  .nav-menu.open { display: flex; }

  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-lg) var(--space-xl);
    letter-spacing: 0.02em;
    text-transform: none;
    border-bottom: 1px solid rgba(197, 163, 106, 0.08);
    transition: color var(--transition-fast);
  }

  .nav-link:first-child {
    border-top: 1px solid rgba(197, 163, 106, 0.08);
  }

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

  .nav-link::after { display: none; }

  .nav-toggle {
    display: flex !important;
    z-index: 1010;
  }

  .nav-toggle.active span { background: var(--white); }

  /* Logo scaling */
  .logo-name { font-size: 1rem; }
  .logo-tag { font-size: 0.55rem; letter-spacing: 0.08em; }
  .logo-icon { width: 36px; height: 36px; }

  /* ═══ HERO & MAIN CONTENT ═══ */
  main {
    padding-top: 60px !important;
  }

  .hero {
    padding-top: 60px;
    min-height: auto;
    align-items: flex-start;
  }

  .hero-container {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-3xl);
  }

  .hero-slides {
    min-height: auto;
    position: static;
  }

  .hero-slide {
    position: static !important;
    display: none !important;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: flex-start;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    pointer-events: auto !important;
  }

  .hero-slide.active { display: flex !important; }

  .hero-slide-content {
    flex: none;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    text-align: left;
    order: 2;
  }

  .hero-visual {
    flex: none;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    order: 1;
  }

  .hero-image-frame {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
  }

  .hero-slide.active .hero-image { transform: none; }

  .hero-headline {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
  }

  .hero-subtext {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
  }

  .hero-ctas .btn {
    justify-content: center;
    width: 100%;
    padding: var(--space-md) var(--space-xl);
  }

  .hero-navigation { margin-top: var(--space-lg); }
  .hero-indicators { justify-content: flex-start; }

  /* ═══ SECTION HEADERS ═══ */
  .section-header {
    margin-bottom: var(--space-2xl);
    text-align: left;
  }

  .section-header h2.heading-section {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .section-header p { font-size: 0.95rem; }

  /* Eyebrow badge */
  .eyebrow-badge {
    flex-wrap: wrap;
    font-size: 0.68rem;
    padding: 5px 12px;
  }

  /* ═══ LEADERSHIP ═══ */
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .leadership-visual {
    max-height: 300px;
    aspect-ratio: 16 / 9;
  }

  .leadership-visual-badge {
    padding: 8px 15px;
    bottom: var(--space-md);
    left: var(--space-md);
    border-radius: var(--radius-sm);
  }

  .leadership-visual-badge span {
    font-size: 0.65rem;
    margin-bottom: 0;
  }

  .leadership-visual-badge small {
    display: none; /* Hide district details on small viewports for clarity */
  }

  .leadership-text blockquote {
    font-size: 1.1rem;
    padding-left: var(--space-md);
  }

  .leadership-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.62rem; }

  /* ═══ TIMELINE ═══ */
  .timeline { padding-left: var(--space-xl); }

  .timeline-dot {
    left: calc(-1 * var(--space-xl) - 5px);
  }

  .timeline-title { font-size: 1.1rem; }
  .timeline-text { font-size: 0.88rem; }

  /* ═══ LEGISLATIVE CARDS ═══ */
  .legislative-cards {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .leg-card {
    padding: var(--space-2xl) var(--space-xl);
  }

  .leg-card h3 { font-size: 1.05rem; }

  /* ═══ PILLARS ═══ */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .pillar {
    padding: var(--space-2xl) var(--space-xl);
  }

  .pillar h3 { font-size: 1.1rem; }
  .pillar-number { font-size: 3rem; }

  /* ═══ IMPACT METRICS ═══ */
  .impact-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
  }

  .metric {
    padding: var(--space-2xl) var(--space-md);
  }

  .metric-value { font-size: 2.2rem; }
  .metric-label { font-size: 0.68rem; letter-spacing: 0.06em; }

  /* ═══ IMPACT PROGRAMS ═══ */
  .impact-programs {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .program { padding: var(--space-xl); }
  .program h3 { font-size: 1rem; }

  /* ═══ VISION ═══ */
  .vision-intro {
    margin-bottom: var(--space-2xl);
    text-align: left;
  }

  .vision-intro .quote {
    font-size: 1.2rem;
    line-height: 1.55;
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .vision-card {
    padding: var(--space-2xl) var(--space-xl);
  }

  .vision-card h3 { font-size: 1.05rem; }
  .vision-card-header { gap: var(--space-sm); }

  /* ═══ ENGAGEMENT / CONTACT ═══ */
  .engagement-grid {
    text-align: left;
    align-items: flex-start;
  }

  .contact-channels {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .contact-channel { padding: var(--space-lg); }

  /* ═══ FOOTER ═══ */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-brand {
    grid-column: 1;
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
  }

  /* ═══ BACK TO TOP + LANG SWITCHER ═══ */
  .back-to-top {
    bottom: var(--space-xl);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
  }

  .lang-switcher-floating {
    bottom: var(--space-xl);
    left: var(--space-lg);
  }

  .lang-toggle-btn {
    padding: 8px 14px;
    font-size: 0.72rem;
  }

} /* end @media 768px */

/* ─── Ultra-small (480px) ─── */
@media (max-width: 480px) {

  .section { padding: var(--space-2xl) 0; }
  .container { padding: 0 var(--space-md); }

  .hero-headline { font-size: clamp(1.6rem, 8vw, 2.2rem); }

  /* Side-by-side metrics even on tiny screens */
  .impact-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-value { font-size: 1.8rem; }

  .leadership-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  .stat-number { font-size: 1.2rem; }

  .timeline { padding-left: var(--space-lg); }
  .timeline-dot { left: calc(-1 * var(--space-lg) - 5px); }

  .section-header h2.heading-section {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .vision-intro .quote { font-size: 1.05rem; }

  .footer-col h4 { font-size: 0.65rem; }
  .footer-col a { font-size: 0.82rem; }

  .logo-name { font-size: 0.9rem; }
  .logo-tag { display: none; }

} /* end @media 480px */

/* ─── end of stylesheet ─── */

