:root {
  --ink: #151719;
  --paper: #f6f3ed;
  --muted: #65625c;
  --line: #ded7cb;
  --charcoal: #202326;
  --steel: #3e5359;
  --gold: #c49a4a;
  --green: #415f4e;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(21, 23, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(21, 23, 25, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 6px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 23, 25, 0.88), rgba(21, 23, 25, 0.42) 46%, rgba(21, 23, 25, 0.04)),
    linear-gradient(0deg, rgba(21, 23, 25, 0.58), transparent 42%);
}

.hero-content {
  position: relative;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 72px 0 132px;
  color: var(--white);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
  line-height: 1.25;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.9rem;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

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

.section-heading.wide {
  max-width: 980px;
}

.intro-grid,
.mission-grid,
.strategy-grid,
.org-layout {
  display: grid;
  gap: 18px;
}

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

.intro-grid article,
.mission-card,
.org-layout article,
.strategy-grid article,
.leader-card,
.background,
.rules,
.timeline article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.intro-grid article {
  padding: 26px;
}

.band {
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--charcoal);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.stats div {
  min-height: 132px;
  padding: 24px;
  background: #292d30;
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 2.1rem;
}

.stats span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

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

.leader-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  padding: 28px;
}

.initial {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.05rem;
}

.role,
.phase {
  margin-bottom: 6px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.background {
  margin-top: 18px;
  padding: 30px;
  background: #ece5d7;
}

.missions {
  background: #ebeef0;
}

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

.mission-card {
  min-height: 255px;
  padding: 26px;
  background: var(--white);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--ink);
  background: #ead7a6;
  border-radius: 6px;
  font-weight: 900;
}

.operations {
  color: var(--white);
  background: var(--steel);
}

.operations h2,
.operations h3 {
  color: var(--white);
}

.operations p {
  color: rgba(255, 255, 255, 0.76);
}

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

.timeline article {
  min-height: 245px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.org-layout {
  grid-template-columns: repeat(4, 1fr);
}

.org-layout article {
  padding: 24px;
}

.rules {
  margin-top: 18px;
  padding: 30px;
  background: #ffffff;
}

.rules ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  margin: 0;
  padding-left: 20px;
}

.strategy {
  background: #f1eee7;
}

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

.strategy-grid article {
  padding: 28px;
  background: #ffffff;
}

.closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
  background: var(--charcoal);
}

.closing h2 {
  max-width: 760px;
}

.closing p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #111315;
}

footer p {
  margin: 0;
  color: inherit;
  font-size: 0.9rem;
}

@media (max-width: 1040px) {
  .intro-grid,
  .mission-grid,
  .strategy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats,
  .timeline,
  .org-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .leaders {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 68px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(21, 23, 25, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 720px;
  }

  .hero img {
    object-position: 28% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(21, 23, 25, 0.9), rgba(21, 23, 25, 0.36)),
      linear-gradient(90deg, rgba(21, 23, 25, 0.72), rgba(21, 23, 25, 0.1));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 220px;
    padding-bottom: 80px;
  }

  h1 {
    font-size: 3.35rem;
  }

  .intro-grid,
  .mission-grid,
  .strategy-grid,
  .stats,
  .timeline,
  .org-layout,
  .rules ul {
    grid-template-columns: 1fr;
  }

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

  .closing,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .closing .button,
  .nav-toggle {
    display: none;
  }

  .hero,
  .operations,
  .closing,
  .band {
    color: var(--ink);
    background: var(--white);
  }

  .hero {
    min-height: auto;
    padding: 50px 32px;
  }

  .hero img,
  .hero-shade {
    display: none;
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 0;
    color: var(--ink);
  }
}
