/* ============================================================
   Jaez Foundation - Main Stylesheet
   Modern, production-quality CSS with mobile-first approach
   ============================================================ */

/* ──────────────────────────────────────────────
   CSS Custom Properties (Design Tokens)
   ────────────────────────────────────────────── */
:root {
  /* Primary Teal Palette */
  --teal-500: #0d9488;
  --teal-600: #0f766e;
  --teal-800: #134e4a;
  --teal-900: #0c3c38;

  /* Accent Amber Palette */
  --amber-500: #d97706;
  --amber-600: #b45309;
  --amber-100: #fef3c7;
  --amber-50: #fffbeb;

  /* Dark Palette */
  --dark-900: #0f172a;
  --dark-800: #1e293b;
  --dark-700: #334155;

  /* Light Palette */
  --light-50: #f8fafc;
  --light-100: #f0fdfa;
  --light-200: #e2e8f0;

  /* Text Colors */
  --text-primary: #334155;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --text-teal: #0f766e;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #134e4a 50%, #0f766e 100%);
  --gradient-teal: linear-gradient(135deg, #0d9488, #0f766e);
  --gradient-amber: linear-gradient(135deg, #d97706, #b45309);
  --gradient-overlay: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(19, 78, 74, 0.75));

  /* Typography */
  --font-serif: 'Georgia', 'Palatino Linotype', 'Book Antiqua', 'PingFang SC', 'Microsoft YaHei', 'SimHei', serif;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', 'SimHei', sans-serif;

  /* Spacing Scale */
  --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;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}


/* ──────────────────────────────────────────────
   Accessibility: Skip Link
   ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 1.5rem;
  background: var(--teal-500);
  color: var(--text-white);
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
  color: var(--text-white);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--text-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--teal-600);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

/* Utility: Section container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Utility: Section padding */
.section {
  padding: var(--space-4xl) 0;
}

/* Utility: Section heading group */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
  color: var(--dark-900);
}

.section-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Decorative accent line under headings */
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-amber);
  margin: var(--space-md) auto 0;
  border-radius: var(--radius-full);
}

/* ──────────────────────────────────────────────
   Scroll-triggered animation classes
   ────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ──────────────────────────────────────────────
   Navigation
   ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1001;
}

.nav-logo svg {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.08em;
  transition: color var(--transition-base);
}

.navbar.scrolled .nav-logo-text {
  color: var(--dark-900);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber-500);
  transition: width var(--transition-base);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--text-white);
}

.navbar.scrolled .nav-links a {
  color: var(--text-secondary);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--teal-600);
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.4rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.navbar.scrolled .lang-toggle {
  border-color: var(--teal-500);
  color: var(--teal-600);
}

.navbar.scrolled .lang-toggle:hover {
  background: var(--light-100);
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.navbar.scrolled .hamburger span {
  background-color: var(--dark-900);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Scholarship page: keep navbar dark when scrolled */
.scholarship-page .navbar.scrolled {
  background-color: rgba(19, 78, 74, 0.95);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.scholarship-page .navbar.scrolled .nav-logo-text { color: var(--text-white); }
.scholarship-page .navbar.scrolled .nav-links a { color: rgba(255,255,255,0.85); }
.scholarship-page .navbar.scrolled .nav-links a:hover { color: var(--text-white); }
.scholarship-page .navbar.scrolled .lang-toggle {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
}
.scholarship-page .navbar.scrolled .lang-toggle:hover { background: rgba(255,255,255,0.1); }
.scholarship-page .navbar.scrolled .hamburger span { background-color: var(--text-white); }

/* Mobile nav */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}


/* ──────────────────────────────────────────────
   Hero Section
   ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

/* Decorative background pattern */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero pattern overlay */
.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--space-3xl) var(--space-lg);
}

.hero-content h1 {
  color: var(--text-white);
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

.hero-content h1 span {
  display: inline-block;
  background: var(--gradient-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-amber);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
  color: var(--text-white);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--text-white);
}

.btn-teal {
  background: var(--gradient-teal);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}

.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
  color: var(--text-white);
}

.btn-outline {
  background: transparent;
  color: var(--teal-600);
  border: 2px solid var(--teal-500);
}

.btn-outline:hover {
  background: var(--teal-500);
  color: var(--text-white);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator .arrow {
  display: block;
  width: 20px;
  height: 20px;
  margin: var(--space-sm) auto 0;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes bounce-arrow {
  0%, 100% { opacity: 0.4; transform: rotate(45deg) translateY(0); }
  50% { opacity: 1; transform: rotate(45deg) translateY(5px); }
}


/* ──────────────────────────────────────────────
   Impact Numbers Section
   ────────────────────────────────────────────── */
.impact {
  background: var(--light-100);
  padding: var(--space-3xl) 0;
}

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

.impact-item {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.impact-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--teal-600);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  white-space: nowrap;
}

.impact-number.amber {
  color: var(--amber-500);
}

.impact-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.03em;
}


/* ──────────────────────────────────────────────
   Mission Section
   ────────────────────────────────────────────── */
.mission {
  background: var(--text-white);
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
}

.mission-text h2 {
  margin-bottom: var(--space-lg);
}

.mission-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-amber);
  margin-top: var(--space-md);
  border-radius: var(--radius-full);
}

.mission-text p {
  font-size: 1.1rem;
  line-height: 1.9;
}

/* Icon grid (decorative) */
.mission-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.mission-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
  background: var(--light-100);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.mission-icon-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mission-icon-item svg {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--teal-500);
}

.mission-icon-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Values cards */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.value-card {
  background: var(--light-50);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--light-200);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-500);
}

.value-card .value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  background: var(--light-100);
}

.value-card .value-icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal-500);
}

.value-card h4 {
  margin-bottom: var(--space-sm);
  color: var(--dark-900);
}

.value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}


/* ──────────────────────────────────────────────
   Founder's Story Section
   ────────────────────────────────────────────── */
.story {
  background: var(--light-50);
}

.story-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

/* Vertical timeline line */
.story-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--teal-500), var(--amber-500));
  border-radius: var(--radius-full);
}

.story-chapter {
  position: relative;
  padding-left: 72px;
  margin-bottom: var(--space-3xl);
}

.story-chapter:last-child {
  margin-bottom: 0;
}

/* Timeline dot */
.story-dot {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--text-white);
  border: 3px solid var(--teal-500);
  z-index: 1;
  transition: all var(--transition-base);
}

.story-chapter:hover .story-dot {
  background: var(--teal-500);
  box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.15);
}

.story-chapter:last-child .story-dot {
  border-color: var(--amber-500);
}

.story-chapter:last-child:hover .story-dot {
  background: var(--amber-500);
  box-shadow: 0 0 0 6px rgba(217, 119, 6, 0.15);
}

/* Chapter icon */
.story-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-lg);
  background: var(--light-100);
  margin-bottom: var(--space-md);
}

.story-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal-500);
}

.story-chapter:last-child .story-icon {
  background: var(--amber-50);
}

.story-chapter:last-child .story-icon svg {
  color: var(--amber-500);
}

.story-chapter-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal-500);
  margin-bottom: var(--space-xs);
}

.story-chapter:last-child .story-chapter-label {
  color: var(--amber-500);
}

.story-chapter h3 {
  margin-bottom: var(--space-md);
  color: var(--dark-900);
}

.story-chapter p {
  font-size: 1.05rem;
  line-height: 1.85;
}

/* Journey map illustration */
.story-journey {
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}

.journey-map {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  background: var(--text-white);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-200);
}

/* Scene illustration images in story chapters */
.story-scene-img {
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-200);
}

.story-scene-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* Final chapter icon styling */
.story-icon-final {
  background: var(--amber-50);
}

.story-icon-final svg {
  color: var(--amber-500);
}


/* ──────────────────────────────────────────────
   Scholarship Program Section
   ────────────────────────────────────────────── */
.programs {
  background: var(--text-white);
}

.program-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.program-tab {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--light-200);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-sans);
}

.program-tab:hover {
  border-color: var(--teal-500);
  color: var(--teal-600);
}

.program-tab.active {
  background: var(--teal-500);
  border-color: var(--teal-500);
  color: var(--text-white);
}

.program-panel {
  display: none;
  max-width: 800px;
  margin: 0 auto;
}

.program-panel.active {
  display: block;
}

.program-card {
  background: var(--light-50);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  border: 1px solid var(--light-200);
}

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

.program-card h3 svg {
  width: 28px;
  height: 28px;
  color: var(--teal-500);
  flex-shrink: 0;
}

.program-card p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.eligibility-list {
  padding-left: 0;
}

.eligibility-list li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-xl);
  position: relative;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.eligibility-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
}

.program-ctas {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  justify-content: center;
  flex-wrap: wrap;
}

.program-notice {
  text-align: center;
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  background: var(--amber-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--amber-100);
}

.program-notice p {
  color: var(--amber-600);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Program teaser highlights (index.html simplified view) */
.program-highlights {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin: var(--space-xl) 0;
}

.program-highlight {
  text-align: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--teal-50);
  border-radius: var(--radius-lg);
  min-width: 140px;
}

.program-highlight strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--teal-600);
  margin-bottom: 0.25rem;
}

.program-highlight span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}


/* ──────────────────────────────────────────────
   Scholarship Page
   ────────────────────────────────────────────── */

/* Stat cards */
.stat-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.stat-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--text-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--light-200);
}

.stat-card .stat-number {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--teal-600);
  line-height: 1.2;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin: var(--space-xs) 0;
}

.stat-card .stat-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Materials checklist */
.materials-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.materials-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: var(--space-md);
  line-height: 1.6;
  color: var(--text-secondary);
}

.materials-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  border: 2px solid var(--teal-500);
  border-radius: 2px;
}

/* Steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.step-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--text-white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.step-downloads {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.step-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.85rem;
  border: 1.5px solid var(--teal-500);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-600);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.step-dl-btn:hover {
  background: var(--teal-500);
  color: var(--text-white);
}

/* FAQ section */
.faq-list {
  max-width: 720px;
  margin: var(--space-xl) auto 0;
}

.faq-item {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--light-200);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.faq-item p,
.faq-item .faq-answer {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

.faq-item .faq-answer ol {
  margin: 0.6rem 0 0.6rem 1.4rem;
  line-height: 1.85;
}

/* Scholarship contact block */
.scholarship-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 720px;
  margin: var(--space-xl) auto 0;
}

.contact-item {
  padding: var(--space-lg);
  background: var(--text-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-200);
}

.contact-item .contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: var(--space-xs);
}

.contact-item a {
  color: var(--teal-600);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--teal-600);
}

/* IRS approval badge */
.irs-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
  padding: var(--space-xs) var(--space-md);
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: 999px;
  color: var(--teal-600);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Scholarship CTA banner */
.scholarship-cta {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  background: linear-gradient(135deg, var(--dark-900) 0%, var(--teal-800) 100%);
  color: var(--text-white);
}

.scholarship-cta h2 {
  font-family: var(--font-serif);
  color: var(--text-white);
}

.scholarship-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: var(--space-md) auto var(--space-xl);
}


/* ──────────────────────────────────────────────
   Transparency Section
   ────────────────────────────────────────────── */
.transparency {
  background: var(--light-50);
}

.transparency-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
}

.transparency-card {
  background: var(--text-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--light-200);
  transition: all var(--transition-base);
}

.transparency-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.transparency-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  background: var(--light-100);
}

.transparency-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--teal-500);
}

.transparency-card h4 {
  margin-bottom: var(--space-sm);
}

.transparency-card p {
  font-size: 0.95rem;
  line-height: 1.75;
}

.transparency-download {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  background: var(--light-100);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: default;
}

.transparency-download svg {
  width: 16px;
  height: 16px;
}

.transparency-download:hover {
  color: var(--text-secondary);
}


/* ──────────────────────────────────────────────
   Donate Section
   ────────────────────────────────────────────── */
.donate {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.donate::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(217, 119, 6, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.donate .section-header h2 {
  color: var(--text-white);
}

.donate .section-header h2::after {
  background: var(--gradient-amber);
}

.donate .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.donate-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.donate-amounts {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.donate-amount {
  padding: 0.55rem 1.4rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-sans);
}

.donate-amount:hover,
.donate-amount.active {
  border-color: var(--amber-500);
  background: rgba(217, 119, 6, 0.2);
  color: var(--text-white);
}

.donate-amount.active {
  background: var(--amber-500);
  border-color: var(--amber-500);
}

.donate-btn-wrapper {
  margin-bottom: var(--space-xl);
  display: flex;
  justify-content: center;
}

#paypal-donate-sdk {
  min-height: 48px;
}

.donate-note {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.donate-note a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.donate-note a:hover {
  color: var(--text-white);
}


/* ──────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────── */
.footer {
  background: var(--dark-900);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-col h4 {
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-logo svg {
  height: 40px;
  width: auto;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.06em;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--amber-500);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--teal-500);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
  color: var(--amber-500);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-lg) 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}


/* ──────────────────────────────────────────────
   Responsive Breakpoints
   ────────────────────────────────────────────── */

/* Small phones (480px+) */
@media (min-width: 480px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Tablets (768px+) */
@media (min-width: 768px) {
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mission-content {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .story-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .story-chapter {
    width: 50%;
    padding-left: 0;
    padding-right: var(--space-2xl);
    margin-left: 0;
  }

  .story-chapter:nth-child(even) {
    margin-left: 50%;
    padding-left: var(--space-2xl);
    padding-right: 0;
  }

  .story-dot {
    left: auto;
    right: -11px;
  }

  .story-chapter:nth-child(even) .story-dot {
    left: -11px;
    right: auto;
  }

  .story-chapter {
    text-align: right;
  }

  .story-chapter:nth-child(even) {
    text-align: left;
  }

  .story-icon {
    display: inline-flex;
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .hamburger {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
  :root {
    --max-width: 1200px;
  }

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

/* Mobile nav behavior (below 1024px) */
@media (max-width: 1023px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    z-index: 999;
  }

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

  .nav-links a {
    font-size: 1.3rem;
    color: var(--text-white);
  }

  .navbar.scrolled .nav-links a {
    color: var(--text-white);
  }

  /* Timeline adjustments for mobile */
  .story-timeline::before {
    left: 24px;
    transform: none;
  }

  .story-chapter {
    width: 100%;
    padding-left: 72px;
    padding-right: 0;
    text-align: left;
    margin-left: 0 !important;
  }

  .story-chapter:nth-child(even) {
    margin-left: 0;
    padding-left: 72px;
    padding-right: 0;
  }

  .story-dot {
    left: 14px !important;
    right: auto !important;
  }

  .story-chapter:nth-child(even) .story-dot {
    left: 14px;
  }

  .story-chapter:nth-child(even) {
    text-align: left;
  }
}

/* Small screen adjustments */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .donate-amounts {
    gap: var(--space-sm);
  }

  .donate-amount {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
  }

  .program-tabs {
    gap: var(--space-xs);
  }

  .program-tab {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}


/* ──────────────────────────────────────────────
   Performance: content-visibility for below-fold
   ────────────────────────────────────────────── */
.mission,
.story,
.programs,
.transparency,
.donate {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

/* ──────────────────────────────────────────────
   Accessibility: Focus-visible styles
   ────────────────────────────────────────────── */
*:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 2px;
}

.btn:focus-visible,
.program-tab:focus-visible,
.donate-amount:focus-visible {
  outline: 2px solid var(--amber-500);
  outline-offset: 2px;
}

.lang-toggle:focus-visible {
  outline: 2px solid var(--amber-500);
  outline-offset: 2px;
}

/* Remove default outlines when using mouse */
:focus:not(:focus-visible) {
  outline: none;
}

/* ──────────────────────────────────────────────
   Accessibility: Reduced motion preference
   ────────────────────────────────────────────── */
@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;
  }

  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
  }
}

/* ──────────────────────────────────────────────
   Scholars Page
   ────────────────────────────────────────────── */

/* Navbar overrides for scholars page (same treatment as scholarship page) */
.scholars-page .navbar {
  background: transparent;
}
.scholars-page .navbar.scrolled {
  background-color: rgba(19, 78, 74, 0.95) !important;
  backdrop-filter: blur(10px);
}
.scholars-page .navbar.scrolled .nav-logo-text,
.scholars-page .navbar.scrolled .nav-links a,
.scholars-page .navbar.scrolled .lang-toggle {
  color: var(--text-white) !important;
}
.scholars-page .navbar.scrolled .nav-links a:hover {
  color: rgba(255, 255, 255, 0.75) !important;
}
.scholars-page .navbar.scrolled .hamburger span {
  background: var(--text-white) !important;
}

/* ── Scholars Hero ── */
.scholars-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  text-align: center;
}
.scholars-hero .hero-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
  pointer-events: none;
}
.scholars-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.scholars-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}
.scholars-hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}
.scholars-hero-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-bottom: var(--space-lg);
}
.scholars-hero-back:hover {
  color: var(--text-white);
}
.scholars-hero-back svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── Cohort Header ── */
.scholars-cohort-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--light-200);
}
.scholars-cohort-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark-800);
  margin: 0;
}
.scholars-count-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  background: var(--light-100);
  border: 1px solid #c7f5ef;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-600);
}

/* ── Scholar Grid ── */
.scholars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 600px) {
  .scholars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .scholars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Scholar Card ── */
.scholar-card {
  background: var(--text-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-200);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.scholar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* ── Scholar Photo ── */
.scholar-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--space-lg);
  flex-shrink: 0;
  border: 3px solid var(--light-200);
}
.scholar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* CSS-only placeholder when no photo is available */
.scholar-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-teal);
  border-color: rgba(13, 148, 136, 0.25);
}
.scholar-photo--placeholder.amber {
  background: var(--gradient-amber);
  border-color: rgba(217, 119, 6, 0.25);
}
.scholar-photo--placeholder span {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.02em;
  user-select: none;
}

/* ── Scholar Info ── */
.scholar-cohort-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--amber-50);
  border: 1px solid #fcd34d;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber-600);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
}
.scholar-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-800);
  margin: 0 0 var(--space-xs);
  line-height: 1.3;
}
.scholar-school {
  font-size: 0.9rem;
  color: var(--teal-600);
  font-weight: 500;
  margin: 0 0 var(--space-xs);
}
.scholar-major {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0 0 var(--space-lg);
}
.scholar-quote {
  margin: 0;
  padding: var(--space-md) var(--space-md);
  background: var(--light-100);
  border-left: 3px solid var(--teal-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  text-align: left;
  width: 100%;
  margin-top: auto;
}

/* ── Empty State ── */
.scholars-empty {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  background: var(--light-100);
  border-radius: var(--radius-xl);
  border: 2px dashed #a7f3d0;
}
.scholars-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  color: var(--teal-500);
  opacity: 0.6;
}
.scholars-empty h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-800);
  margin-bottom: var(--space-md);
}
.scholars-empty p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Scholars CTA ── */
.scholars-cta {
  background: var(--gradient-hero);
  text-align: center;
}
.scholars-cta .section-header h2 {
  color: var(--text-white);
}
.scholars-cta .section-header p {
  color: rgba(255, 255, 255, 0.8);
}
.scholars-cta .btn-primary {
  background: var(--amber-500);
  border-color: var(--amber-500);
}
.scholars-cta .btn-primary:hover {
  background: var(--amber-600);
  border-color: var(--amber-600);
}
.scholars-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--text-white);
}
.scholars-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ──────────────────────────────────────────────
   Print Styles
   ────────────────────────────────────────────── */
@media print {
  .navbar,
  .hamburger,
  .scroll-indicator,
  .donate-amounts,
  .donate-btn-wrapper {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .section {
    padding: 1.5rem 0;
    page-break-inside: avoid;
  }
}
