:root {
  --ink: #171b1e;
  --muted: #697074;
  --paper: #f4f5f3;
  --accent: #e8651c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Golos Text", Arial, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  min-height: 82px;
  padding: 0 max(28px, calc((100vw - 1160px) / 2));
  gap: 28px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  width: 205px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-header nav:last-child {
  justify-content: flex-end;
}

.site-header a {
  font-size: 13px;
  text-decoration: none;
}

.program-hero {
  position: relative;
  min-height: 690px;
  margin-top: -82px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(232, 101, 28, 0.45), transparent 27%),
    linear-gradient(135deg, #42564e 0%, #182321 58%, #101617 100%);
}

.program-hero--altai {
  background:
    radial-gradient(circle at 20% 18%, rgba(182, 210, 225, 0.25), transparent 29%),
    linear-gradient(140deg, #405765 0%, #1d2930 56%, #0d1216 100%);
}

.program-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.1), transparent 38%),
    linear-gradient(0deg, rgba(4, 8, 10, 0.5), transparent 45%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
  padding: 205px 0 90px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #ff9a5f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.6;
}

.program-status {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
  padding: 80px 0 92px;
}

.program-status h2 {
  margin: 0 0 20px;
  max-width: 720px;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.program-status p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.status-card {
  align-self: start;
  padding: 30px;
  color: #fff;
  border-radius: 22px;
  background: #1c2527;
  box-shadow: 0 20px 50px rgba(16, 22, 24, 0.14);
}

.status-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.status-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 24px;
  padding: 0 22px;
  color: #fff;
  border-radius: 999px;
  background: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

footer {
  display: flex;
  align-items: center;
  min-height: 110px;
  padding: 30px max(28px, calc((100vw - 1160px) / 2));
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid #d8dcda;
  font-size: 13px;
}

footer a:first-child {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

footer a:last-child {
  margin-left: auto;
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding: 0 20px;
  }

  .brand {
    width: 160px;
  }

  .site-header nav:first-of-type {
    display: none;
  }

  .program-hero {
    min-height: 620px;
    margin-top: -72px;
  }

  .hero-content {
    width: calc(100% - 40px);
    padding: 180px 0 66px;
  }

  h1 {
    font-size: 52px;
  }

  .lead {
    font-size: 16px;
  }

  .program-status {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    padding: 58px 0 70px;
    gap: 34px;
  }

  .program-status h2 {
    font-size: 34px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 20px;
    gap: 12px;
  }

  footer a:last-child {
    margin-left: 0;
  }
}
