@charset "UTF-8";

:root {
  --navy: #0d1f3c;
  --navy-mid: #162d52;
  --navy-light: #1e3a5f;
  --gold: #c8902e;
  --gold-light: #e8b86d;
  --gold-pale: #fdf5e6;
  --white: #ffffff;
  --bg: #f2f3f5;
  --surface: #ffffff;
  --surface-alt: #f7f8fa;
  --border: #d5d8dd;
  --border-light: #e8eaed;
  --text: #222222;
  --text-muted: #555555;
  --red: #c0392b;
  --green: #27864a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.10);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', Tahoma, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a { color: var(--navy-light); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--gold); }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.3;
  margin: 0 0 0.65rem;
  color: var(--navy);
}

h1 { font-size: 28px; }
h2 { font-size: 22px; }
h3 { font-size: 17px; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SKIP LINK */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 14px;
  font-weight: 700;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  gap: 12px;
}

.top-bar p { margin: 0; }

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-contact a {
  color: rgba(255,255,255,0.8);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-bar-contact a:hover { color: var(--gold-light); text-decoration: none; }

.social-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  transition: background 0.2s;
}

.social-icons a:hover {
  background: var(--gold);
  color: #fff;
  text-decoration: none;
}

.social-icons svg { width: 14px; height: 14px; fill: currentColor; }

/* ========== HEADER ========== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-md);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.brand:hover { text-decoration: none; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  border: 2px solid var(--gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--navy);
  line-height: 1.2;
}

.brand-text small {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ========== NAV BAR ========== */
.nav-bar {
  background: linear-gradient(180deg, var(--navy-mid), var(--navy));
  border-top: 3px solid var(--gold);
}

.nav-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.menu {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu > li { position: relative; }

.menu > li > a {
  display: block;
  padding: 14px 18px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 3px solid transparent;
  transition: all 0.15s;
}

.menu > li > a:hover,
.menu > li > a:focus-visible {
  background: rgba(255,255,255,0.06);
  color: var(--gold-light);
  text-decoration: none;
  border-bottom-color: var(--gold);
}

.menu > li > a.active {
  background: rgba(255,255,255,0.08);
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* ========== TICKER ========== */
.ticker-bar {
  background: var(--gold-pale);
  border-bottom: 1px solid #e8d5a8;
  overflow: hidden;
  padding: 8px 0;
}

.ticker-bar .container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticker-label {
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-content {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: tickerScroll 28s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.ticker-track span::before {
  content: "\25CF";
  color: var(--gold);
  margin-right: 8px;
  font-size: 10px;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, var(--navy-light) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.015) 30px,
    rgba(255,255,255,0.015) 60px
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  padding: 60px 0 50px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 16px;
}

.hero .eyebrow { color: var(--gold-light); }

.hero .lead {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  max-width: 550px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-panel {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px;
  color: #fff;
  align-self: center;
}

.hero-panel h2 {
  color: var(--gold-light);
  font-size: 18px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(200,144,46,0.3);
}

.hero-panel ul {
  padding-left: 18px;
  margin: 0 0 14px;
}

.hero-panel li {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.link-arrow {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 14px;
}

.link-arrow:hover { color: var(--gold); }

/* ========== SUBPAGE HERO ========== */
.subpage-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  position: relative;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.015) 30px,
    rgba(255,255,255,0.015) 60px
  );
}

.subpage-hero .container {
  padding: 40px 20px 36px;
  position: relative;
  z-index: 1;
}

.subpage-hero h1 {
  color: #fff;
  font-size: 28px;
}

.subpage-hero p { color: rgba(255,255,255,0.7); margin-bottom: 0; }
.subpage-hero .eyebrow { color: var(--gold-light); margin-bottom: 6px; }

/* ========== EYEBROW / SECTION HEADS ========== */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.section-head {
  margin-bottom: 24px;
  text-align: center;
}

.section-head h2 {
  font-size: 24px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-head h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.section-head p {
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== SECTIONS ========== */
.section { padding: 48px 0; }

.alt-bg {
  background: var(--surface-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* ========== CARDS ========== */
.card-grid { display: grid; gap: 20px; }
.card-grid.two   { grid-template-columns: repeat(2, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four  { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy-mid);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; }

/* Person Card */
.person-card {
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  padding: 24px 16px;
  box-shadow: var(--shadow-sm);
}

.person-card::before {
  content: '';
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  background: var(--navy);
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.15;
}

.person-card h3 { font-size: 16px; margin-bottom: 4px; }
.person-card p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* News Card */
.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.news-card:hover { box-shadow: var(--shadow-md); }
.news-card h2 { font-size: 17px; }
.news-card p:last-of-type { margin-bottom: 8px; }

/* Stat Card */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--gold);
}

.stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--navy);
  line-height: 1.1;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ========== SPLIT LAYOUT ========== */
.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}

/* ========== PANEL ========== */
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.panel h2, .panel h3 {
  font-size: 18px;
  color: var(--navy);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 16px;
}

/* ========== TIMELINE ========== */
.timeline { display: grid; gap: 14px; }

.timeline article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy-mid);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}

.timeline time {
  display: inline-block;
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.timeline h3 { font-size: 16px; margin-bottom: 4px; }
.timeline p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ========== LISTS ========== */
.quick-links { list-style: none; padding: 0; }

.quick-links li {
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}

.quick-links li:last-child { border-bottom: 0; }

.quick-links a {
  display: block;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  padding-left: 14px;
  position: relative;
}

.quick-links a::before {
  content: '\203A';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
  font-size: 16px;
}

.quick-links a:hover { color: var(--gold); text-decoration: none; }

.check-list { padding-left: 0; list-style: none; }

.check-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 14px;
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.step-list { padding-left: 20px; }
.step-list li { padding: 6px 0; font-size: 14px; }

/* ========== BADGE ========== */
.badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-light);
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.meta { font-size: 13px; color: var(--text-muted); }

/* ========== NEWS LAYOUT ========== */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
}

.news-list { display: grid; gap: 16px; }

/* ========== TABLE ========== */
.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 14px;
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

tbody tr:hover { background: var(--surface-alt); }

/* ========== FORMS ========== */
label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  margin-bottom: 4px;
  background: #fff;
  transition: border-color 0.2s;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--navy-mid);
  outline: 2px solid rgba(22,45,82,0.12);
}

.checkbox-line {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-weight: 500;
  font-size: 14px;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.error-msg {
  display: block;
  min-height: 18px;
  color: var(--red);
  font-size: 13px;
  margin-bottom: 6px;
}

.form-status {
  font-weight: 700;
  margin-top: 10px;
  font-size: 14px;
  min-height: 20px;
}

.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all 0.15s;
}

.btn:hover { text-decoration: none; }

.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: #b07e28; color: #fff; }

.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-mid); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-donate { background: var(--red); color: #fff; }
.btn-donate:hover { background: #a93226; color: #fff; }

.full { width: 100%; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  margin-top: 0;
  border-top: 4px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 30px;
  padding: 40px 0;
}

.site-footer h2 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}

.site-footer h3 {
  color: var(--gold-light);
  font-size: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 14px;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; font-size: 14px; }
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--gold-light); text-decoration: none; }

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  text-align: center;
}

.footer-bottom p { margin: 0; padding: 14px 0; }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .card-grid.three, .card-grid.four, .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .news-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .top-bar-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  .top-bar-contact { flex-wrap: wrap; }
  .header-main { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }

  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .menu.open { display: flex; }

  .menu > li > a {
    padding: 12px 20px;
    border-bottom-color: transparent;
    border-left: 3px solid transparent;
  }

  .menu > li > a:hover,
  .menu > li > a.active {
    border-left-color: var(--gold);
    border-bottom-color: transparent;
  }

  .card-grid.two, .card-grid.three, .card-grid.four,
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .brand-mark { width: 44px; height: 44px; font-size: 18px; }
  .brand-text strong { font-size: 17px; }
  .section { padding: 32px 0; }
  .hero-grid { padding: 36px 0 32px; }
  .hero h1 { font-size: 24px; }
  .ticker-track { animation-duration: 18s; }
}
