﻿: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;
}

.page-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-media, .page-hero-overlay { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(7,20,39,0.9), rgba(7,20,39,0.68), rgba(7,20,39,0.22));
}
.page-hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
  color: white;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 900;
  font-size: 0.82rem;
}
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}
.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.18rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.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; }

.summary-strip {
  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);
}
.summary-card { background: white; padding: 26px; }
.summary-card i { color: var(--red); font-size: 1.65rem; }
.summary-card h2 { margin: 12px 0 6px; color: var(--navy); font-size: 1.35rem; }
.summary-card p { margin: 0; color: var(--muted); }

.section, .structure-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
}
.structure-section { width: 100%; max-width: none; padding-left: max(16px, calc((100% - 1180px) / 2)); padding-right: max(16px, calc((100% - 1180px) / 2)); }
.roles-section { background: var(--soft); }
.groups-section { background: white; }
.section-heading { max-width: 780px; margin-bottom: 36px; }
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }

.structure-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.structure-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(16,35,63,0.08);
}
.structure-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 26px;
  background: var(--navy);
  color: white;
}
.structure-card-header span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--gold);
  color: #111827;
  font-weight: 900;
}
.structure-card-header h3 { margin: 0; font-size: 1.45rem; line-height: 1.2; }
.structure-card-body { padding: 26px; }
.structure-card-body p { margin: 0 0 18px; color: var(--muted); }
.structure-card-body ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
}
.structure-card-body li { color: var(--muted); }
.structure-card-body strong { color: var(--navy); }

.structure-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}
.role-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(16,35,63,0.08);
}
.role-card::before {
  content: "";
  width: 8px;
  height: 42px;
  flex: 0 0 auto;
  margin-right: 14px;
  border-radius: 999px;
  background: linear-gradient(var(--green), var(--gold), var(--red));
}
.role-card span { color: var(--navy); font-weight: 850; line-height: 1.25; }
.group-note {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.group-note strong { color: var(--navy); }

.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: 1100px) {
  .structure-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@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;
  }
  .summary-strip { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .brand span { font-size: 0.9rem; }
  .brand img { width: 48px; height: 48px; }
  .page-hero { min-height: 660px; }
  .page-hero-overlay { background: linear-gradient(180deg, rgba(7,20,39,0.72), rgba(7,20,39,0.92)); }
  .page-hero-content { padding: 74px 0 90px; }
  .hero-actions, .footer-bottom { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .section, .structure-section { padding-top: 62px; padding-bottom: 62px; }
  .footer-grid { grid-template-columns: 1fr; }
  .structure-card-header { align-items: flex-start; padding: 22px; }
  .structure-card-body { padding: 22px; }
  .structure-container { grid-template-columns: 1fr; }
  .role-card { min-height: 78px; }
}
