﻿:root {
  --green: #0b7a3b;
  --gold: #f2b705;
  --red: #c9202f;
  --navy: #10233f;
  --ink: #172033;
  --muted: #637083;
  --line: #dfe5ee;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --shadow: 0 22px 55px rgba(16, 35, 63, 0.14);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.official-bar {
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
  color: #081323;
  font-weight: 800;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.9rem;
}

.official-bar p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 229, 238, 0.9);
  backdrop-filter: blur(14px);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: var(--radius);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: #edf5ef;
  color: var(--green);
}

.nav-cta {
  background: var(--navy) !important;
  color: white !important;
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  list-style: none;
  padding: 8px;
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.submenu.regions {
  left: auto;
  right: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  min-width: 310px;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu a {
  width: 100%;
  justify-content: flex-start;
  min-height: 36px;
  font-weight: 650;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--navy);
  cursor: pointer;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 116px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 20, 39, 0.88) 0%, rgba(7, 20, 39, 0.64) 48%, rgba(7, 20, 39, 0.18) 100%);
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 112px;
  color: white;
  max-width: 1180px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 900;
  font-size: 0.82rem;
}

.hero-content h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 850;
}

.btn.primary {
  background: var(--gold);
  color: #111827;
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: white;
}

.intro-band {
  width: min(1180px, calc(100% - 32px));
  margin: -54px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--line);
}

.intro-card {
  background: white;
  padding: 26px;
}

.intro-card span,
.priority-card span {
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 900;
}

.intro-card strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.35rem;
}

.intro-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.president-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.image-panel {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.stats-section,
.documents-section {
  width: 100%;
  max-width: none;
  background: var(--soft);
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card,
.document-card,
.right-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat-card {
  padding: 28px;
  min-height: 210px;
}

.stat-card i {
  color: var(--red);
  font-size: 1.75rem;
}

.stat-card strong {
  display: block;
  margin-top: 24px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.priorities-section {
  padding-bottom: 62px;
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.priority-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(16, 35, 63, 0.08);
}

.priority-card img {
  width: 100%;
  height: 100%;
  min-height: 235px;
  object-fit: cover;
}

.priority-card div {
  padding: 24px;
}

.priority-card h3 {
  margin: 6px 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
}

.priority-card p {
  margin: 0;
  color: var(--muted);
}

.president-section {
  background: var(--navy);
  padding: 80px 16px;
}

.president-card {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  align-items: center;
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.president-card img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
}

blockquote {
  margin: 20px 0;
  color: #354257;
  font-size: 1.18rem;
  border-left: 5px solid var(--gold);
  padding-left: 18px;
}

.signature {
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.right-item {
  padding: 24px;
}

.right-item span {
  display: block;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.1rem;
}

.right-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  gap: 20px;
}

.document-card {
  padding: 28px;
}

.document-card i {
  color: var(--red);
  font-size: 2rem;
}

.document-card h3 {
  color: var(--navy);
  margin: 16px 0 10px;
}

.document-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.document-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  background: var(--green);
  color: white;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
}

.partners-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
}

.partners-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}

.partners-row img {
  width: 100%;
  height: 128px;
  object-fit: contain;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.site-footer {
  background: #071427;
  color: white;
  padding: 56px 16px 24px;
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: white;
  border-radius: var(--radius);
  padding: 6px;
}

.site-footer h2,
.site-footer h3 {
  margin: 16px 0 10px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.back-top {
  text-decoration: none;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1000px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    justify-content: space-between;
  }

  .submenu,
  .submenu.regions {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    min-width: auto;
    box-shadow: none;
    border: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding: 0 0 8px 16px;
  }

  .intro-band,
  .two-column,
  .stats-grid,
  .priority-grid,
  .rights-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .priority-card {
    grid-template-columns: 1fr;
  }

  .priority-card img {
    height: 240px;
  }

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

@media (max-width: 700px) {
  .brand span {
    font-size: 0.9rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero-section {
    min-height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(7, 20, 39, 0.76), rgba(7, 20, 39, 0.9));
  }

  .hero-content {
    padding: 78px 0 96px;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

  .section,
  .stats-section,
  .documents-section,
  .partners-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .two-column,
  .stats-grid,
  .priority-grid,
  .rights-grid,
  .documents-grid,
  .partners-row,
  .footer-grid,
  .president-card {
    grid-template-columns: 1fr;
  }

  .president-card {
    padding: 22px;
  }

  .president-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

