/* ==========================================================================
   Samuel Hall Scholarship — Emerald & Amber Theme
   DISTINCT from the Foundation's rustic brown/parchment/gold aesthetic.
   This uses teal-green + amber on clean white — immediately recognizable.
   ========================================================================== */

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

:root {
  --teal:         #0d9488;
  --teal-dark:    #0f766e;
  --teal-deeper:  #115e59;
  --teal-light:   #14b8a6;
  --teal-50:      #f0fdfa;
  --teal-100:     #ccfbf1;
  --amber:        #d97706;
  --amber-light:  #f59e0b;
  --amber-dark:   #b45309;
  --white:        #ffffff;
  --off-white:    #fafffe;
  --gray-50:      #f8fffe;
  --gray-100:     #e6f7f5;
  --gray-200:     #d1e8e5;
  --gray-300:     #b0d4d0;
  --neutral-50:   #f8fafc;
  --neutral-100:  #f1f5f9;
  --neutral-200:  #e2e8f0;
  --text:         #134e4a;
  --text-dark:    #0c3530;
  --text-light:   #4a7c78;
  --text-muted:   #6b9f9a;
  --success:      #16a34a;
  --error:        #dc2626;
  --radius:       8px;
  --radius-lg:    14px;
  --radius-xl:    20px;
  --transition:   .3s ease;
  --shadow-sm:    0 1px 3px rgba(13,148,136,.06), 0 1px 2px rgba(13,148,136,.04);
  --shadow:       0 4px 8px rgba(13,148,136,.06), 0 2px 4px rgba(13,148,136,.03);
  --shadow-md:    0 10px 30px rgba(13,148,136,.08), 0 4px 12px rgba(13,148,136,.04);
  --shadow-lg:    0 20px 50px rgba(13,148,136,.1), 0 8px 24px rgba(13,148,136,.06);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--amber); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }

.lead-text {
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber-light));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* ---------- Navigation ---------- */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition), box-shadow var(--transition);
}
.main-nav.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 1px 12px rgba(13,148,136,.1);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal-deeper);
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-brand:hover { color: var(--teal); }
.nav-brand-icon {
  color: var(--amber);
  font-size: 1.2rem;
}
.nav-brand-logo {
  height: 42px;
  width: 42px;
  display: block;
  object-fit: contain;
}
@media (max-width: 600px) {
  .nav-brand-logo { height: 34px; width: 34px; }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .02em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-deeper);
  background: var(--teal-50);
}
.nav-foundation {
  background: var(--amber) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}
.nav-foundation:hover {
  background: var(--amber-dark) !important;
  color: var(--white) !important;
}
.nav-donate {
  background: var(--teal) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
}
.nav-donate:hover {
  background: var(--teal-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal-deeper);
  transition: var(--transition);
  transform-origin: center;
}
.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: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background:
    linear-gradient(160deg, rgba(17,94,89,.82) 0%, rgba(13,148,136,.6) 40%, rgba(217,119,6,.25) 100%),
    url('images/looking South from the Hugh Hall House.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,94,89,.2) 0%, transparent 40%, rgba(217,119,6,.06) 100%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--amber-light);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp 10s infinite ease-in;
}

@keyframes floatUp {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.5; }
  90% { opacity: 0.1; }
  100% { opacity: 0; transform: translateY(-20px) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--amber-light);
  font-weight: 700;
  margin-bottom: 28px;
  padding: 10px 24px;
  border: 1px solid rgba(245,158,11,.35);
  border-radius: 40px;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,.1);
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: #fff;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
  line-height: 1.2;
  letter-spacing: -.02em;
}

.hero-accent {
  color: var(--amber-light);
  font-style: italic;
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 0.75em;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-rule span {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--amber-light);
  opacity: .4;
}
.hero-rule-ornament {
  color: var(--amber-light);
  font-size: 0.9rem;
  opacity: .5;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 300;
}

/* Countdown */
.countdown {
  margin-bottom: 40px;
}
.countdown-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,.75);
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}
.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}
.countdown-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  min-width: 72px;
  backdrop-filter: blur(10px);
  letter-spacing: -.02em;
}
.countdown-text {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.7);
  margin-top: 8px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.countdown-separator {
  font-size: 1.8rem;
  color: var(--amber-light);
  font-weight: 300;
  padding-bottom: 22px;
  opacity: .6;
}
.countdown-date {
  color: var(--amber-light);
  margin-top: 14px;
  font-style: italic;
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  animation: bobDown 2.5s ease-in-out infinite;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 1.5px solid rgba(255,255,255,.6);
  border-bottom: 1.5px solid rgba(255,255,255,.6);
  transform: rotate(45deg);
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--teal-dark);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-glow {
  background: var(--amber);
  color: var(--white);
  animation: btnGlow 3s ease-in-out infinite;
}
.btn-glow:hover {
  background: var(--amber-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(217,119,6,.3);
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217,119,6,0); }
  50% { box-shadow: 0 0 24px 4px rgba(217,119,6,.2); }
}
.btn-icon {
  font-size: 1.05rem;
}
.btn-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 16px 44px;
  background: var(--amber);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-donate:hover {
  background: var(--amber-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(217,119,6,.3);
}
.btn-print {
  margin-top: 20px;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: linear-gradient(135deg, var(--teal-deeper) 0%, var(--teal-dark) 100%);
  padding: 48px 0;
  position: relative;
  z-index: 10;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item {
  padding: 10px;
}
.stat-number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--amber-light);
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.8);
  font-weight: 600;
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
}
.section-alt {
  background-color: var(--teal-50);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.ornament {
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 12px;
  opacity: .5;
}
.header-rule {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.header-rule span {
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  opacity: .5;
  border-radius: 2px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.image-frame {
  position: absolute;
  top: 14px;
  left: 14px;
  right: -14px;
  bottom: -14px;
  border: 2px solid var(--teal);
  border-radius: var(--radius-lg);
  opacity: .15;
  z-index: 0;
}
.about-text p {
  margin-bottom: 1rem;
  color: var(--text-light);
}
.about-text .lead-text {
  color: var(--text);
}
.about-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.gathering-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.showcase-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
}
.showcase-item img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

/* ---------- Painted Background ---------- */
.painted-bg {
  position: relative;
  background: var(--teal-50);
  overflow: hidden;
}
.painted-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(13,148,136,.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(217,119,6,.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.painted-bg > .container {
  position: relative;
  z-index: 1;
}

/* ---------- Video Section ---------- */
.video-wrapper {
  max-width: 800px;
  margin: 0 auto 50px;
}
.video-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--teal-deeper);
  cursor: pointer;
  aspect-ratio: 16/9;
}
.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}
.video-container:hover .video-poster {
  transform: scale(1.03);
  filter: brightness(0.8);
}
.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform .3s ease, opacity .3s ease;
  opacity: 0.9;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
}
.video-container:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  opacity: 1;
}

.gathering-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
}
.gallery-item img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--teal) 10%, var(--teal) 90%, transparent);
  transform: translateX(-50%);
  opacity: .25;
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 16px 40px;
}
.timeline-item.left {
  left: 0;
  text-align: right;
  padding-right: 56px;
}
.timeline-item.right {
  left: 50%;
  text-align: left;
  padding-left: 56px;
}
.timeline-dot {
  position: absolute;
  top: 28px;
  width: 16px;
  height: 16px;
  background: var(--teal);
  border: 3px solid var(--teal-50);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(13,148,136,.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.timeline-item.left .timeline-dot {
  right: -8px;
}
.timeline-item.right .timeline-dot {
  left: -8px;
}
.timeline-item:hover .timeline-dot {
  transform: scale(1.4);
  box-shadow: 0 0 0 8px rgba(13,148,136,.15), 0 0 0 14px rgba(13,148,136,.06);
}
.timeline-content {
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.timeline-year {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--white);
  background: var(--teal);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.timeline-content h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.timeline-content p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---------- Quote Carousel ---------- */
.quote-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 60px;
}
.quote-stage {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-card {
  position: absolute;
  width: 100%;
  text-align: center;
  padding: 44px 40px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
  border-top: 4px solid var(--teal);
}
.quote-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.quote-card.exit-left {
  opacity: 0;
  transform: translateX(-40px);
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--teal);
  opacity: .15;
  line-height: 1;
  margin-bottom: -10px;
}
.quote-card blockquote {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.quote-card cite {
  display: block;
  font-size: 0.75rem;
  color: var(--amber-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--teal-dark);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.carousel-btn:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: var(--shadow);
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.carousel-dot:hover { transform: scale(1.3); background: var(--teal); }
.carousel-dot.active {
  background: var(--teal);
  transform: scale(1.2);
  width: 24px;
  border-radius: 4px;
}

/* ---------- Scholarship Section ---------- */
.scholarship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
.scholarship-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.scholarship-details h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--teal-deeper);
  font-size: 1.15rem;
}

.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  line-height: 1.65;
  color: var(--text-light);
}
.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Award Cards */
.award-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.award-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.award-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.award-card.highlight {
  border-color: var(--amber);
  background: linear-gradient(135deg, rgba(217,119,6,.03) 0%, var(--white) 100%);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(217,119,6,.15);
}
.award-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.award-card-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.award-card-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.award-card-note {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Recipients */
.recipients-section {
  margin-bottom: 56px;
}
.recipients-heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}
.recipients-slideshow {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}
.slide-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.recipients-slideshow .slide {
  opacity: 0;
  position: absolute;
  top: 0; left: 0; width: 100%;
  transition: opacity .6s ease;
  pointer-events: none;
}
.recipients-slideshow .slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.recipients-slideshow .slide img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.slide-prev, .slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--gray-100);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--teal-dark);
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.slide-prev:hover, .slide-next:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.slide-prev { left: 16px; }
.slide-next { right: 16px; }

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.slideshow-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.slideshow-dots .dot:hover { transform: scale(1.3); }
.slideshow-dots .dot.active { background: var(--teal); }

.compliance-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  opacity: .85;
  line-height: 1.7;
}

/* ---------- Steps ---------- */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 64px;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(13,148,136,.2);
}
.step-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.step-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }
.step-card a { text-decoration: underline; text-underline-offset: 3px; }
.step-connector {
  width: 40px; height: 2px;
  background: var(--gray-200);
  margin-top: 60px;
  flex-shrink: 0;
}

/* Application Form */
.application-form-section {
  max-width: 850px;
  margin: 0 auto 56px;
  text-align: center;
}
.application-form-section h3 { margin-bottom: 12px; }
.form-notice { color: var(--text-light); margin-bottom: 24px; font-size: 0.92rem; }
.form-embed {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 400px;
}
.form-embed iframe {
  display: block;
  width: 100%;
  min-height: 800px;
  border: none;
}
.form-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-style: italic;
}
.form-fallback {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 16px;
}
.form-fallback a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* Checklist */
.checklist-section {
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
}
.checklist-section h3 { margin-bottom: 8px; }
.checklist-section > p { color: var(--text-light); margin-bottom: 24px; }
.checklist { text-align: left; margin-bottom: 20px; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 20px;
  margin-bottom: 6px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.92rem;
  line-height: 1.6;
}
.checklist-item:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.checklist-item input[type="checkbox"] { display: none; }
.checkmark {
  width: 22px; height: 22px; min-width: 22px;
  border: 2px solid var(--gray-200);
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
  margin-top: 2px;
}
.checklist-item input:checked ~ .checkmark {
  background: var(--teal);
  border-color: var(--teal);
}
.checklist-item input:checked ~ .checkmark::after {
  content: '\2713';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.checklist-item input:checked ~ span:last-child {
  text-decoration: line-through;
  color: var(--text-muted);
  opacity: .6;
}

/* Status Section */
.status-section {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 44px 40px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.status-section h3 { margin-bottom: 12px; }
.status-section p { color: var(--text-light); margin-bottom: 16px; font-size: 0.92rem; }
.status-section .btn { margin-top: 8px; }

/* ---------- Resources ---------- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.resource-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--teal);
}
.resource-icon { font-size: 2rem; margin-bottom: 16px; }
.resource-card h3 { margin-bottom: 10px; font-size: 1rem; }
.resource-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; flex: 1; }
.resource-link { font-weight: 700; color: var(--teal-dark); font-size: 0.82rem; letter-spacing: .5px; font-family: 'Inter', sans-serif; }

/* ---------- FAQ ---------- */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  margin-bottom: 8px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item.open { border-color: var(--teal); border-left: 4px solid var(--teal); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: none; border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  line-height: 1.5;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  font-size: 1.3rem; font-weight: 300;
  color: var(--teal);
  transition: transform var(--transition);
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-light); line-height: 1.7; font-size: 0.92rem; }
.faq-answer a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Donate ---------- */
.donate-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px; align-items: start;
}
.donate-text p { margin-bottom: 1rem; color: var(--text-light); }
.donate-text .lead-text { color: var(--text); }

.donate-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 24px;
}
.donate-info-card {
  padding: 20px;
  background: var(--teal-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}
.donate-info-card h4 {
  font-size: 0.9rem; margin-bottom: 8px;
  color: var(--teal-deeper);
  font-family: 'Inter', sans-serif; font-weight: 700;
}
.donate-info-card p { font-size: 0.83rem; line-height: 1.6; margin-bottom: 0; }

.donate-action { position: sticky; top: 100px; }
.donate-card {
  text-align: center;
  padding: 48px 36px;
  background: linear-gradient(135deg, var(--teal-deeper) 0%, var(--teal-dark) 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  color: rgba(255,255,255,.8);
}
.donate-card-ornament { color: var(--amber-light); font-size: 1.2rem; opacity: .6; margin-bottom: 16px; }
.donate-card h3 { color: var(--white); margin-bottom: 12px; }
.donate-card > p { color: rgba(255,255,255,.85); margin-bottom: 8px; font-size: 0.92rem; }
.donate-card-note { font-size: 0.85rem; color: rgba(255,255,255,.65); margin-top: 12px; font-style: italic; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px; align-items: start;
}
.contact-form-section h3 { margin-bottom: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-dark); font-family: 'Inter', sans-serif;
}
.required { color: var(--error); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { align-self: flex-start; }

.contact-info-section { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 { margin-bottom: 18px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 18px; }
.contact-detail:last-child { margin-bottom: 0; }
.contact-icon { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.contact-detail a { text-decoration: underline; text-underline-offset: 3px; }
.contact-detail p { font-size: 0.92rem; color: var(--text-light); margin: 0; }
.contact-book-links { display: flex; gap: 20px; margin-top: 12px; }
.contact-book-links a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; font-size: 0.92rem; }

/* ---------- Quiz ---------- */
.quiz-card {
  position: relative;
  max-width: 700px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 44px 40px;
  overflow: hidden;
}
.quiz-card .paper-card-texture {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,148,136,.02) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}
.quiz-card > *:not(.paper-card-texture) { position: relative; z-index: 1; }
.quiz-progress {
  height: 4px; background: var(--gray-100);
  border-radius: 2px; overflow: hidden; margin-bottom: 8px;
}
.quiz-progress-bar {
  height: 100%; width: 14.28%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  border-radius: 2px; transition: width .4s ease;
}
.quiz-progress-text {
  font-size: 0.8rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 2px;
  font-weight: 700; text-align: center;
  margin-bottom: 28px; font-family: 'Inter', sans-serif;
}
.quiz-question {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  text-align: center; margin-bottom: 28px; line-height: 1.45;
}
.quiz-answers { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.quiz-answer-btn {
  display: block; width: 100%;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem; color: var(--text);
  background: var(--teal-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer; text-align: left;
  line-height: 1.5; transition: all var(--transition);
}
.quiz-answer-btn:hover:not(:disabled) {
  border-color: var(--teal);
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.quiz-answer-btn:disabled { cursor: default; }
.quiz-answer-btn.correct {
  background: rgba(22, 163, 74, .08);
  border-color: var(--success); color: #166534;
}
.quiz-answer-btn.incorrect {
  background: rgba(220, 38, 38, .06);
  border-color: var(--error); color: #991b1b;
}
.quiz-explanation {
  text-align: center; font-size: 0.88rem; font-style: italic;
  color: var(--text-muted); margin-bottom: 20px;
  min-height: 0; max-height: 0; overflow: hidden; opacity: 0;
  transition: all .35s ease;
}
.quiz-explanation.show { min-height: 1em; max-height: 80px; opacity: 1; margin-bottom: 20px; }
.quiz-next { display: none; margin: 0 auto; }
.quiz-next.show { display: block; }
.quiz-results { text-align: center; }
.quiz-results-title { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 12px; }
.quiz-score { font-size: 1.05rem; color: var(--text-light); margin-bottom: 30px; }
.quiz-badge { margin-bottom: 30px; }
.badge-circle {
  width: 120px; height: 120px; margin: 0 auto 24px;
  border: 3px solid var(--amber);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(217,119,6,.08), rgba(217,119,6,.02));
  box-shadow: 0 0 0 6px rgba(217,119,6,.1);
}
.badge-icon { font-size: 1.8rem; color: var(--amber); line-height: 1; margin-bottom: 4px; }
.badge-label {
  font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-dark); line-height: 1.4; text-align: center;
}
.badge-quote-card {
  max-width: 500px; margin: 0 auto 24px;
  padding: 28px 32px; background: var(--teal-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.badge-quote-card blockquote {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.15rem; font-style: italic;
  line-height: 1.75; color: var(--text-dark); margin-bottom: 12px;
}
.badge-quote-card cite { display: block; font-size: 0.82rem; color: var(--text-light); font-style: normal; font-weight: 600; }
.quiz-share { margin-bottom: 14px; }
.quiz-replay { margin: 0 auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(135deg, var(--teal-deeper) 0%, #0a3a36 100%);
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}
.footer-content { text-align: center; }
.footer-brand h3 { color: var(--amber-light); margin-bottom: 6px; font-size: 1.3rem; }
.footer-tagline { font-style: italic; font-family: 'EB Garamond', serif; font-size: 1rem; color: rgba(255,255,255,.65); }
.footer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin: 44px auto; text-align: left; max-width: 600px;
}
.footer-col h4 {
  color: var(--amber-light); font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 14px; font-family: 'Inter', sans-serif; font-weight: 700;
}
.footer-col a {
  display: block; color: rgba(255,255,255,.7);
  font-size: 0.9rem; padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--amber-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; margin-top: 20px; }
.footer-bottom p { font-size: 0.82rem; opacity: .65; margin-bottom: 4px; }
.footer-foundation-link a { color: var(--amber-light); opacity: .5; font-size: 0.8rem; }
.footer-foundation-link a:hover { opacity: 1; }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--teal);
  color: var(--white);
  border: none; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(17,94,89,.95);
  z-index: 10000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px; opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  cursor: pointer; backdrop-filter: blur(8px);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  background: none; border: none;
  color: rgba(255,255,255,.7);
  font-size: 2.2rem; cursor: pointer;
  padding: 10px; line-height: 1;
  transition: color var(--transition); z-index: 10001;
}
.lightbox-close:hover { color: var(--amber-light); }
.lightbox-image {
  max-width: 90%; max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 80px rgba(0, 0, 0, .5);
}
.lightbox-caption {
  color: rgba(255,255,255,.6);
  font-size: 0.92rem; font-style: italic;
  margin-top: 16px; text-align: center;
}

/* ---------- Animations ---------- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-in-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }
.slide-in-right { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s ease; }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 280px 1fr; gap: 36px; }
  .award-cards { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-content { grid-template-columns: 1fr; }
  .donate-action { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-image { max-width: 280px; margin: 0 auto; }
  .scholarship-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gathering-showcase, .gathering-gallery { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 24px; margin-top: 0; }
  .step-card { max-width: 400px; width: 100%; }
  .quiz-answers { grid-template-columns: 1fr; }
  .timeline-line { left: 20px; }
  .timeline-item { width: 100%; padding: 10px 20px 10px 56px; text-align: left; }
  .timeline-item.left { padding-right: 20px; padding-left: 56px; text-align: left; }
  .timeline-item.right { left: 0; padding-left: 56px; }
  .timeline-item.left .timeline-dot, .timeline-item.right .timeline-dot { left: 13px; right: auto; }
  .donate-info-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
}

@media (max-width: 700px) {
  body { font-size: 15px; }
  .section { padding: 64px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(16px);
    flex-direction: column; padding: 16px 24px; gap: 2px;
    border-bottom: 1px solid var(--gray-100);
    transform: translateY(-120%); opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    box-shadow: 0 8px 30px rgba(13,148,136,.08);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { padding: 12px 16px; font-size: 0.92rem; }
  .hero { min-height: 100vh; padding: 100px 20px 60px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-scroll-indicator { display: none; }
  .countdown-number { min-width: 54px; font-size: 1.5rem; padding: 10px 12px; }
  .countdown-separator { font-size: 1.4rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .award-cards { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .quiz-card { padding: 28px 20px; }
  .quote-carousel { padding: 0 48px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1rem; }
  .quote-card { padding: 28px 20px; }
  .quote-card blockquote { font-size: 1.05rem; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .countdown-timer { gap: 4px; }
  .countdown-number { min-width: 46px; font-size: 1.2rem; padding: 8px 8px; }
  .countdown-unit { min-width: auto; }
}

/* ---------- Print ---------- */
@media print {
  /* Hide everything except the checklist */
  body > *:not(#apply):not(section) { display: none !important; }
  section:not(#apply) { display: none !important; }
  header, footer, nav,
  .main-nav, .scroll-progress, .hero, .stats-bar,
  .back-to-top, .lightbox, .hero-scroll-indicator,
  .site-footer { display: none !important; }

  /* Inside the apply section, only show checklist */
  #apply .section-header,
  #apply .steps-grid,
  #apply .application-form-section,
  #apply .status-section { display: none !important; }

  /* Make the checklist section visible and well-positioned */
  #apply { display: block !important; padding: 0 !important; margin: 0 !important; }
  .checklist-section {
    display: block !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px;
  }

  /* Print header */
  .checklist-section h3 {
    font-size: 18pt;
    margin-bottom: 4px;
    text-align: center;
  }
  .checklist-section > p {
    text-align: center;
    margin-bottom: 16px;
    color: #333;
  }

  /* Clean checklist items */
  .checklist-item {
    display: flex !important;
    align-items: center;
    border: 1px solid #ccc;
    padding: 8px 14px;
    margin-bottom: 4px;
    page-break-inside: avoid;
    background: #fff;
    box-shadow: none !important;
  }

  /* Visible checkbox squares for print */
  .checkmark {
    border: 2px solid #000 !important;
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    border-radius: 2px !important;
    background: #fff !important;
  }
  .checkmark::after { display: none !important; }
  .checklist-item input:checked ~ .checkmark::after { display: none !important; }

  /* Keep checked items readable */
  .checklist-item input:checked ~ span:last-child {
    text-decoration: none;
    color: #000;
    opacity: 1;
  }

  /* Hide print button */
  .btn-print { display: none !important; }

  body {
    font-size: 12pt;
    background: #fff;
    color: #000;
    margin: 0;
    padding: 0;
  }
  .container { max-width: 100% !important; padding: 0 !important; }
}
