@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0D2137;
  --navy-mid: #1A3A5C;
  --blue: #1E5FA8;
  --blue-light: #2E7DD1;
  --gold: #C89B3C;
  --gold-light: #E8C06A;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --gray-light: #EEF1F5;
  --gray: #8A96A3;
  --text: #1A2633;
  --text-light: #4A5568;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(13,33,55,0.10);
  --shadow-lg: 0 12px 48px rgba(13,33,55,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--text-light); line-height: 1.75; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-light); }
img { max-width: 100%; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── EYEBROW LABEL ── */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  text-align: center;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30,95,168,0.3);
}
.btn-primary:hover {
  background: var(--blue-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,95,168,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,33,55,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,155,60,0.2);
  transition: all 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  display: none;
}
.nav-logo-text span {
  display: block;
  font-size: 0.62rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-links .btn-nav-give {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 7px 16px;
  font-weight: 600;
  border-radius: var(--radius);
}
.nav-links .btn-nav-give:hover {
  background: var(--gold-light);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.65rem;
  opacity: 0.6;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(200,155,60,0.2);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 8px 16px !important;
  font-size: 0.8rem !important;
  border-radius: 0 !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D2137 0%, #1A3A5C 50%, #0D2137 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(30,95,168,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,155,60,0.1) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-content h1 span {
  color: var(--gold);
  display: block;
}
.hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-service-info {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-service-item {}
.hero-service-item .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.hero-service-item .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: var(--white); }
.page-hero .eyebrow { justify-content: center; display: flex; }

/* ── MISSION STRIP ── */
.mission-strip {
  background: var(--navy);
  padding: 64px 0;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
}
.mission-card {
  background: rgba(13,33,55,0.95);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.3s;
}
.mission-card:hover { background: rgba(30,95,168,0.15); }
.mission-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.1rem;
}
.mission-card h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: 12px; }
.mission-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }

/* ── HISTORY SECTION ── */
.history-section { background: var(--off-white); }
.history-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.history-text h2 { margin-bottom: 20px; }
.history-text p { margin-bottom: 16px; font-size: 0.95rem; }
.history-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 300;
  color: var(--blue);
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  top: -20px;
  right: 0;
}
.history-image-wrap {
  position: relative;
}
.history-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
}
.history-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.history-placeholder {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

/* ── LEADERSHIP ── */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 40px;
  margin-top: 48px;
}
.leader-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.leader-card-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.leader-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--navy-mid);
}
.leader-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
}
.leader-title-block {}
.leader-role {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.leader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}
.leader-card-body { padding: 28px 32px; }
.leader-card-body p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-light);
}

/* ── DEPARTMENTS ── */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.dept-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border-top: 3px solid transparent;
}
.dept-card:hover {
  border-top-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.dept-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.dept-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.dept-card p { font-size: 0.88rem; line-height: 1.65; }

/* ── FORMS PAGE ── */
.forms-section { background: var(--off-white); }
.forms-category { margin-bottom: 48px; }
.forms-category h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-light);
  margin-bottom: 24px;
}
.form-accordion {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13,33,55,0.05);
}
.form-accordion-header {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s;
  gap: 16px;
}
.form-accordion-header:hover { background: var(--off-white); }
.form-accordion-header h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}
.form-accordion-header p {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 2px;
}
.form-accordion-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--navy);
  transition: all 0.3s;
}
.form-accordion.open .form-accordion-toggle {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.form-accordion-body {
  display: none;
  padding: 0 24px 28px;
  border-top: 1px solid var(--gray-light);
}
.form-accordion.open .form-accordion-body { display: block; }

/* ── WEB FORMS ── */
.web-form { margin-top: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid #D1D9E0;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,95,168,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-required { color: #E02020; margin-left: 2px; }
.form-submit { margin-top: 20px; }
.form-success {
  display: none;
  background: #EAF7ED;
  border: 1px solid #4CAF50;
  color: #2E7D32;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: 12px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 8px;
  font-style: italic;
}

/* ── NEWS ── */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}
.events-feed {}
.event-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 24px 0;
  display: flex;
  gap: 20px;
}
.event-date {
  flex-shrink: 0;
  width: 56px;
  height: 64px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.event-date .month {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-date .day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
.event-info h4 { font-size: 1rem; margin-bottom: 6px; color: var(--navy); }
.event-info p { font-size: 0.85rem; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 16px; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 40px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--gray-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 0.95rem; color: var(--text); }
.map-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  margin-top: 24px;
}
.map-embed iframe { display: block; width: 100%; height: 220px; border: none; }

/* ── LIVE STREAM ── */
.livestream-wrap {
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.livestream-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── GIVE ── */
.give-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 80px 0;
  text-align: center;
}
.give-hero h2 { color: var(--white); margin-bottom: 16px; }
.give-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 32px; }
.give-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.give-option {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.give-option:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.give-option-icon { font-size: 2rem; margin-bottom: 12px; }
.give-option h3 { font-size: 1rem; margin-bottom: 8px; }
.give-option p { font-size: 0.85rem; margin-bottom: 16px; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
  opacity: 0.9;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 240px; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── MOBILE NAV MENU ── */
.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  padding: 80px 24px 32px;
  flex-direction: column;
  overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.nav-mobile-menu a:hover { color: var(--white); }
.nav-mobile-menu .mobile-section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 20px;
  margin-bottom: 4px;
}
.nav-mobile-menu a.mobile-give {
  color: var(--gold);
  font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .history-inner { grid-template-columns: 1fr; gap: 40px; }
  .leader-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-service-info { gap: 24px; }
  .give-options { grid-template-columns: 1fr; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.bg-off-white { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.divider { height: 1px; background: var(--gray-light); margin: 48px 0; }

/* ── FADE IN ANIMATION ── */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-loaded .fade-in {
  opacity: 0;
  transform: translateY(20px);
}
.js-loaded .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
