/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0f1a2e;
  --charcoal: #1c2a3a;
  --dark-slate: #243447;
  --ivory: #f5f0e8;
  --off-white: #faf7f2;
  --cream: #ede8dd;
  --gold: #b8964e;
  --gold-light: #d4b878;
  --gold-muted: #9a7d42;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #8a8a8a;
  --border-light: rgba(184,150,78,0.2);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }

/* ===== LOGIN PAGE ===== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.login-page::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,78,0.08) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.login-page::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,78,0.05) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.login-container {
  text-align: center;
  z-index: 2;
  padding: 2rem;
  animation: fadeInUp 1s ease;
}
.login-container .logo-mark {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 0 auto 2rem;
}
.login-container h1 {
  color: var(--ivory);
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.login-container .subtitle {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  font-family: var(--font-body);
  font-weight: 300;
}
.login-input-group {
  position: relative;
  max-width: 340px;
  margin: 0 auto 1.5rem;
}
.login-input-group input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,150,78,0.3);
  color: var(--ivory);
  font-size: 1rem;
  font-family: var(--font-body);
  letter-spacing: 0.15em;
  outline: none;
  transition: var(--transition);
}
.login-input-group input::placeholder {
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.15em;
}
.login-input-group input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.login-btn {
  display: inline-block;
  padding: 0.9rem 3rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.login-btn:hover {
  background: var(--gold);
  color: var(--navy);
}
.login-error {
  color: #e8625c;
  font-size: 0.85rem;
  margin-top: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}
.login-error.visible { opacity: 1; }

/* ===== NAVIGATION ===== */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}
.nav-bar.scrolled {
  background: rgba(15,26,46,0.97);
  padding: 0.8rem 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.15);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--ivory);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(245,240,232,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--ivory);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,26,46,0.98);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-nav.active { opacity: 1; pointer-events: all; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.mobile-nav-links a {
  color: var(--ivory);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}
.mobile-nav-links a:hover { color: var(--gold); }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 4rem 5rem;
  position: relative;
  z-index: 2;
}
.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-title {
  font-size: 3.8rem;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-title span {
  display: block;
  color: var(--gold-light);
  font-size: 1.4rem;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-top: 1rem;
}
.hero-desc {
  color: rgba(245,240,232,0.6);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  width: fit-content;
}
.hero-cta:hover {
  background: var(--gold);
  color: var(--navy);
}
.hero-cta svg { width: 16px; height: 16px; transition: var(--transition); }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--navy) 0%, transparent 30%);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(245,240,232,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-muted), transparent);
  animation: scrollPulse 2s infinite;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 7rem 5rem;
}
.section--dark {
  background: var(--navy);
  color: var(--ivory);
}
.section--cream {
  background: var(--cream);
}
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.section--dark .section-subtitle {
  color: rgba(245,240,232,0.6);
}
.gold-line {
  width: 50px; height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

/* ===== ASYMMETRIC GRID LAYOUT ===== */
.asym-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.asym-grid--reverse {
  grid-template-columns: 1fr 1.2fr;
}
.asym-grid--reverse .asym-image { order: -1; }
.asym-image {
  position: relative;
  overflow: hidden;
}
.asym-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.asym-image::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 2;
}
.asym-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.asym-content p {
  color: var(--text-medium);
  margin-bottom: 1rem;
  line-height: 1.85;
}
.section--dark .asym-content p {
  color: rgba(245,240,232,0.65);
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 4rem 5rem;
  background: var(--charcoal);
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border-light);
}
.timeline-item {
  padding-left: 3rem;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0.5rem;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
}
.timeline-year {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.timeline-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.timeline-desc {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.8;
}
.section--dark .timeline-desc {
  color: rgba(245,240,232,0.6);
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.card {
  background: white;
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 40px; height: 40px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.card p {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* Dark card variant */
.section--dark .card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
}
.section--dark .card p {
  color: rgba(245,240,232,0.6);
}
.section--dark .card h4 {
  color: var(--ivory);
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,26,46,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  color: var(--ivory);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

/* ===== NEWS CARDS ===== */
.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}
.news-featured {
  position: relative;
  overflow: hidden;
}
.news-featured img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  min-height: 400px;
}
.news-featured .news-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem;
  background: linear-gradient(to top, rgba(15,26,46,0.95) 0%, transparent 100%);
}
.news-featured .news-content h3 {
  color: var(--ivory);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.news-featured .news-content p {
  color: rgba(245,240,232,0.6);
  font-size: 0.9rem;
}
.news-list { display: flex; flex-direction: column; gap: 1.5rem; }
.news-item {
  padding: 1.5rem;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.news-item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-color: var(--border-light);
}
.news-date {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.news-item h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.news-item p { font-size: 0.88rem; color: var(--text-medium); line-height: 1.7; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info-block {
  margin-bottom: 2.5rem;
}
.contact-info-block h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.contact-info-block p,
.contact-info-block a {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.8;
}
.contact-info-block a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(0,0,0,0.1);
  background: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.submit-btn {
  padding: 1rem 3rem;
  background: var(--navy);
  color: var(--ivory);
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  width: fit-content;
}
.submit-btn:hover { background: var(--gold); color: var(--navy); }

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  padding: 6rem 5rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(184,150,78,0.03) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero .section-tag { margin-bottom: 1rem; }
.page-hero h1 {
  font-size: 3.2rem;
  color: var(--ivory);
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(245,240,232,0.55);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.8;
}

/* Page hero with background image */
.page-hero--image {
  min-height: 55vh;
  position: relative;
}
.page-hero--image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.page-hero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy) 10%, rgba(15,26,46,0.7) 50%, rgba(15,26,46,0.4) 100%);
  z-index: 1;
}
.page-hero--image .page-hero-content { z-index: 2; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  padding: 4rem 5rem 2rem;
  border-top: 1px solid rgba(184,150,78,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-size: 1.4rem;
  color: var(--ivory);
  margin-bottom: 1rem;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand p {
  color: rgba(245,240,232,0.4);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: rgba(245,240,232,0.5);
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(184,150,78,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: var(--transition);
  margin-bottom: 0;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: rgba(245,240,232,0.3);
  font-size: 0.8rem;
}
.footer-bottom a {
  color: var(--gold-muted);
  font-size: 0.8rem;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ===== INITIATIVE / CONTRIBUTION LIST ===== */
.initiative-list { display: flex; flex-direction: column; gap: 0; }
.initiative-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: start;
}
.section--dark .initiative-item {
  border-color: rgba(255,255,255,0.06);
}
.initiative-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.initiative-content h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.initiative-content p {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.8;
}
.section--dark .initiative-content p {
  color: rgba(245,240,232,0.6);
}

/* ===== PULL QUOTE ===== */
.pull-quote {
  padding: 5rem;
  background: var(--charcoal);
  text-align: center;
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.pull-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--ivory);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
  font-style: italic;
}
.pull-quote cite {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
}

/* ===== LEADERSHIP GRID ===== */
.role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.role-card {
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  background: white;
  transition: var(--transition);
}
.role-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.role-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}
.role-card .role-org {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}
.role-card p {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ===== ANIMATED ELEMENTS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 1rem 5rem;
  background: rgba(15,26,46,0.95);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.3);
}
.breadcrumb a { color: var(--gold-muted); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { margin: 0 0.5rem; }

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section { padding: 5rem 3rem; }
  .hero-content { padding: 6rem 3rem 4rem; }
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2.2rem; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-bar { padding: 3rem; grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .role-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 6rem 3rem 3rem; }
  .page-hero h1 { font-size: 2.4rem; }
  .nav-bar { padding: 1rem 2rem; }
  .breadcrumb { padding: 1rem 3rem; }
  .site-footer { padding: 4rem 3rem 2rem; }
  .pull-quote { padding: 4rem 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { height: 50vh; }
  .hero-image::after { background: linear-gradient(to top, var(--navy) 10%, transparent 60%); }
  .hero-content { padding: 2rem 2rem 4rem; position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; }
  .hero-title { font-size: 2.2rem; }
  .hero-desc { font-size: 0.95rem; }
  .section { padding: 4rem 1.5rem; }
  .section-title { font-size: 1.8rem; }
  .asym-grid, .asym-grid--reverse { grid-template-columns: 1fr; gap: 2rem; }
  .asym-grid--reverse .asym-image { order: 0; }
  .card-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 4/3; }
  .gallery-item.wide { grid-column: auto; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 2rem 1.5rem; gap: 1rem; }
  .stat-number { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 5rem 1.5rem 2.5rem; min-height: 40vh; }
  .page-hero h1 { font-size: 2rem; }
  .login-container h1 { font-size: 1.8rem; }
  .pull-quote { padding: 3rem 1.5rem; }
  .pull-quote blockquote { font-size: 1.3rem; }
  .breadcrumb { padding: 0.8rem 1.5rem; }
  .site-footer { padding: 3rem 1.5rem 1.5rem; }
  .initiative-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .initiative-num { font-size: 2rem; }
  .nav-bar { padding: 1rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-title span { font-size: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .hero-content { padding: 2rem 1.2rem 3rem; }
}
