:root {
  --navy: #10233f;
  --green: #244b3a;
  --gold: #b8924a;
  --light: #f7f6f1;
  --text: #1d2430;
  --muted: #5f6875;
  --white: #ffffff;
  --border: #e6e2d8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand strong { display: block; font-size: 1.15rem; letter-spacing: 0.03em; }
.brand small { display: block; color: var(--muted); font-size: 0.78rem; }

.nav-links {
  display: flex;
  gap: 22px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.nav-links a { color: var(--navy); font-weight: 600; }

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(16, 35, 63, 0.72), rgba(36, 75, 58, 0.76)),
    url('https://images.unsplash.com/photo-1526772662000-3f88f10405ff?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.page-hero {
  min-height: 38vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: var(--white);
}

.hero-content,
.page-hero-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 24px;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.04;
}

.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }

.hero-text,
.page-hero p {
  max-width: 760px;
  margin: 24px 0 32px;
  font-size: 1.22rem;
  color: #f5f0e5;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.button {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.button.primary { background: var(--gold); color: var(--navy); }
.button.secondary { border: 1px solid rgba(255, 255, 255, 0.6); color: var(--white); }

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px 24px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading h2,
.contact-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  font-size: 1.08rem;
}

.light-section {
  background: var(--light);
  max-width: none;
}

.light-section > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 20px;
}

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

.card,
.person-card,
.report-card,
.event-card,
.upload-note {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(16, 35, 63, 0.06);
}

.card h3,
.person-card h3,
.report-card h3,
.event-card h3,
.upload-note h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 1.25rem;
}

.card p,
.person-card p,
.report-card p,
.event-card p,
.upload-note p {
  margin: 0 0 10px;
  color: var(--muted);
}

.tag {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--green);
}

.download-link {
  display: inline-block;
  margin-top: 12px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
}

.contact-section { padding-top: 38px; }

.contact-card {
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: var(--white);
  border-radius: 28px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 34px;
}

.contact-card h2 { color: var(--white); }
.contact-card p { color: #f5f0e5; }

.contact-details {
  display: grid;
  gap: 8px;
  font-family: Arial, sans-serif;
}

.contact-details strong { font-size: 1.2rem; }
.contact-details span { color: #f5f0e5; }
.contact-details a { color: var(--white); font-weight: 700; }

.footer {
  background: var(--light);
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 26px 24px;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
}

.footer p {
  max-width: 1120px;
  margin: 0 auto 8px;
}

.footer p:last-child { margin-bottom: 0; }

@media (max-width: 820px) {
  .nav { align-items: center; }
  .nav-links { display: none; }
  .hero { min-height: 68vh; }

  .two-column,
  .grid-3,
  .grid-2,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section { padding: 58px 20px; }
  .contact-card { padding: 30px; }
}


.profile-full {
  margin-bottom: 24px;
}

.profile-full p {
  margin-bottom: 14px;
}


.mobile-menu {
  display: none;
  position: relative;
  font-family: Arial, sans-serif;
}

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 700;
  background: var(--white);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-links {
  position: absolute;
  right: 0;
  top: 48px;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(16, 35, 63, 0.14);
  padding: 10px;
  z-index: 50;
}

.mobile-menu-links a {
  display: block;
  padding: 12px 14px;
  color: var(--navy);
  font-weight: 700;
  border-radius: 10px;
}

.mobile-menu-links a:hover {
  background: var(--light);
}

@media (max-width: 820px) {
  .mobile-menu {
    display: block;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }
}
