:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #eef3ff;
  --text: #0e1b4d;
  --muted: #44527f;
  --primary: #2146c7;
  --primary-dark: #132d8e;
  --primary-soft: linear-gradient(135deg, #6f96ff 0%, #1d39b9 60%, #0b1f73 100%);
  --gold: #e8be58;
  --border: rgba(33, 70, 199, 0.14);
  --shadow: 0 24px 60px rgba(20, 43, 129, 0.12);
  --radius-xl: 38px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

.intro .section-title,
.history .section-title,
.about .section-title,
.level .section-title,
.nominations .section-title,
.gallery .section-title,
.reviews .section-title {
  margin-bottom: 0 !important;
}

.intro .intro__content,
.history .history__layout,
.about .about__mission,
.level .steps,
.nominations .nominations__list,
.gallery .gallery__video,
.reviews .reviews__grid {
  margin-top: 60px !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.shell {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
}

.hero,
.section--blue,
.footer {
  border-radius: var(--radius-xl);
}

.hero,
.section,
.footer,
.intro,
.about,
.nominations,
.gallery {
  margin-top: 24px;
}

.hero {
  width: min(1580px, calc(100% - 4px));
  margin: 24px auto 0;
  min-height: 980px;
  height: 980px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  background-color: transparent;
  background-image: url("img/bg_header.svg");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  color: #fff;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  transition: width 0.45s ease, min-height 0.45s ease, height 0.45s ease, border-radius 0.45s ease;
}

.hero__inner {
  position: relative;
  height: 100%;
  padding: 98px 98px 196px;
  transition: padding 0.45s ease;
}

.hero__logo {
  position: absolute;
  top: 98px;
  right: 112px;
  width: 294px;
  height: auto;
  transition: top 0.45s ease, right 0.45s ease, width 0.45s ease;
}

.hero__bird {
  position: absolute;
  left: 44px;
  top: 268px;
  width: 332px;
  height: auto;
  transition: left 0.45s ease, top 0.45s ease, width 0.45s ease;
}

.hero__map {
  position: absolute;
  left: 50%;
  bottom: 112px;
  width: 1020px;
  height: auto;
  transform: translateX(-50%);
  transition: bottom 0.45s ease, width 0.45s ease;
}

.hero__content {
  max-width: 980px;
  margin-top: 18px;
  margin-left: -44px;
  transition: margin-left 0.45s ease;
}

.eyebrow,
.section-subtitle {
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow {
  display: none;
}

.hero h1,
.section-title h2 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  margin-top: 0;
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
  font-weight: 800;
  text-transform: uppercase;
}

.hero__title-main,
.hero__title-sub {
  display: block;
}

.hero__title-main {
  background: linear-gradient(90deg, #e2bd77 0%, #ae7224 100%);
  -webkit-text-fill-color:
  transparent;
  -webkit-background-clip: text;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.03;
}

.hero__title-sub {
  margin-top: 8px;
  color: #fff;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.06;
  white-space: nowrap;
}

.hero__text {
  display: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 0;
  position: absolute;
  left: 50%;
  bottom: 172px;
  transform: translateX(-50%);
  transition: bottom 0.45s ease;
}

body.is-scrolled .hero {
  width: min(1440px, calc(100% - 32px));
  min-height: 820px;
  height: 820px;
}

body.is-scrolled .hero__inner {
  padding: 72px 72px 164px;
}

body.is-scrolled .hero__logo {
  top: 72px;
  right: 84px;
  width: 270px;
}

body.is-scrolled .hero__bird {
  left: 72px;
  top: 252px;
  width: 300px;
}

body.is-scrolled .hero__content {
  margin-left: 0;
}

body.is-scrolled .hero__map {
  bottom: 26px;
  width: 900px;
}

body.is-scrolled .hero__actions {
  bottom: 78px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 286px;
  padding: 0 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  font-weight: 500;
  transition: transform 0.22s ease;
}

.hero .button:hover,
.hero .button:focus-visible {
  transform: scale(1.06);
}

.button--gold {
  background: linear-gradient(90deg, #e2bd77 0%, #ae7224 100%);
  color: #fdf7ec;
  box-shadow: 0 4px 10px rgba(13, 35, 109, 0.28);
}

.button--ghost {
  border-color: transparent;
  background: linear-gradient(90deg, #e2bd77 0%, #ae7224 100%);
  color: #fdf7ec;
  box-shadow: 0 4px 10px rgba(13, 35, 109, 0.28);
}

.section,
.intro,
.about,
.nominations,
.gallery,
.footer {
  padding: 52px;
}

.section--blue {
  background: var(--primary-soft);
  width: min(1440px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 74px;
  padding: 66px 0 58px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.section-title__line {
  width: 64px;
  height: 2px;
  background: currentColor;
  opacity: 0.25;
}

.section-title--light,
.section-subtitle--light {
  color: #fff;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.78);
}

.intro,
.about,
.nominations,
.gallery,
.footer {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.intro {
  position: relative;
  overflow: hidden;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}


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

.stats-card,
.card {
  border-radius: var(--radius-lg);
}

.stats-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.stats-card strong {
  display: block;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--primary);
}

.stats-card span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.stats-card--dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.stats-card--dark strong,
.stats-card--dark span {
  color: #fff;
}

.intro__content,
.history__layout,
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.section-title--plain .section-title__line {
  display: none;
}

.section-title--plain h2 {
  color: #29429a;
}

.intro .section-title,
.intro__content,
.intro__gallery {
  position: relative;
  z-index: 1;
}

.intro__content {
  grid-template-columns: 405px minmax(0, 900px);
  justify-content: start;
  align-items: start;
  gap: 30px;
  margin-top: 64px;
}

.intro__stats {
  display: grid;
  gap: 20px;
}

.stats-card--intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 146px;
  padding: 18px 40px;
  text-align: left;
  border-color: rgba(34, 43, 70, 0.08);
  box-shadow: 0 6px 14px rgba(44, 49, 70, 0.12);
  border-radius: 36px;
}

.stats-card--intro strong {
  margin: 0;
  color: #04060f;
  font-size: clamp(2.1rem, 2.45vw, 3rem);
  line-height: 0.95;
}

.stats-card--intro span {
  display: block;
  margin-top: 12px;
  color: #1c1d20;
  font-size: clamp(0.8rem, 1.02vw, 1.2rem);
  letter-spacing: 0.045em;
  line-height: 1;
}

.intro__text.card {
  width: min(820px, 100%);
  max-width: 820px;
  justify-self: end;
  min-height: 0;
  padding: 48px 56px 44px;
  border-color: rgba(34, 43, 70, 0.08);
  box-shadow: 0 6px 14px rgba(44, 49, 70, 0.12);
  border-radius: 40px;
}

.intro__text p {
  margin: 0;
  color: #202227;
  font-size: clamp(1.08rem, 1.14vw, 1.34rem);
  line-height: 1.25;
}

.intro__text p + p {
  margin-top: 28px;
}

.card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.card--dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.intro__gallery,
.history__thumbs,
.encyclopedia__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.encyclopedia {
  position: relative;
  overflow: hidden;
  width: min(1440px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
  border-radius: 82px;
  background-color: transparent;
  background-image: url("img/bg_header.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 56px 0 46px;
}

.encyclopedia .shell {
  width: min(1260px, calc(100% - 112px));
}

.encyclopedia::before {
  content: "";
  position: absolute;
  inset: 58px 116px 110px;
  background: url("img/map_history.svg") center / 82% no-repeat;
  opacity: 1;
  pointer-events: none;
}

.encyclopedia .section-title {
  margin-top: 34px;
  margin-bottom: 12px;
}

.encyclopedia .section-title h2 {
  text-transform: uppercase;
  font-size: clamp(1.4rem, 1.85vw, 2.05rem);
  line-height: 1.02;
  font-weight: 800;
}

.encyclopedia__subtitle {
  position: relative;
  z-index: 1;
  margin: 126px 0 0;
  width: 100%;
  color: rgba(255, 255, 255, 0.92);
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(1.18rem, 2.05vw, 2.2rem);
  line-height: 1.08;
  font-family: "Segoe Script", "Comic Sans MS", cursive;
}

.encyclopedia__subtitle img {
  display: block;
  width: min(820px, 78%);
  margin: -92px 0 0 auto;
  height: auto;
}

.encyclopedia__line {
  display: block;
  width: 240%;
  max-width: none;
  height: 160px;
  margin: -92px 0 0;
  object-fit: contain;
  object-position: left center;
  transform: scaleY(-1);
  transform-origin: center;
}

.encyclopedia__stats,
.encyclopedia__gallery {
  position: relative;
  z-index: 1;
}

.encyclopedia__stats {
  margin-top: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
}

.encyclopedia__stats .stats-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  text-align: left;
}

.encyclopedia__stats .stats-card strong {
  color: #fff;
  font-size: clamp(2.6rem, 3.8vw, 4rem);
  line-height: 0.95;
  font-weight: 800;
}

.encyclopedia__stats .stats-card span {
  margin-top: 8px;
  display: block;
  color: #e8be77;
  font-size: clamp(0.84rem, 1.05vw, 1.22rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.03;
  text-transform: uppercase;
}

.encyclopedia__gallery {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 80px;
}

.encyclopedia__pair {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.encyclopedia__gallery .placeholder {
  min-height: 286px;
  border-radius: 16px;
  border: 0;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  color: rgba(255, 255, 255, 0.9);
}

.encyclopedia__gallery img {
  width: 206px;
  height: 240px;
  object-fit: contain;
  border-radius: 16px;
  display: block;
}

.intro__gallery {
  margin-top: 64px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.intro__gallery .placeholder {
  min-height: 220px;
  border-radius: 26px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(34, 43, 70, 0.14);
  background: linear-gradient(165deg, rgba(66, 98, 188, 0.22), rgba(255, 255, 255, 0.75));
  color: rgba(14, 27, 77, 0.65);
}

.intro__photo {
  width: 100%;
  height: 220px;
  border-radius: 26px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.28s ease;
}

.intro__photo:hover,
.intro__photo:focus-visible {
  transform: scale(1.03);
}

.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px dashed rgba(33, 70, 199, 0.25);
  background: linear-gradient(135deg, rgba(111, 150, 255, 0.16), rgba(255, 255, 255, 0.92));
}

.placeholder--hero,
.placeholder--wide,
.placeholder--photo {
  min-height: 220px;
}

.placeholder--avatar {
  min-height: 88px;
  width: 88px;
  border-radius: 50%;
  flex: 0 0 88px;
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline details {
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline details[open] {
  padding-bottom: 0;
}

.timeline__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.timeline__panel-inner {
  padding: 0 0 34px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.timeline details.is-open .timeline__panel-inner {
  opacity: 1;
  transform: translateY(0);
}

.timeline > details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6px;
  font-size: 1.55rem;
  line-height: 1;
  color: #fff;
}

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

.timeline summary::after {
  content: "\2304";
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.5rem;
  transform: rotate(-90deg);
  transition: transform 0.2s ease;
}

.timeline details[open] summary::after {
  transform: rotate(180deg);
  color: #e3ba69;
}

.timeline details[open] > summary {
  background: linear-gradient(90deg, #e2bd77 0%, #ae7224 100%);
  -webkit-text-fill-color:
  transparent;
  -webkit-background-clip: text;
  font-size: 2.35rem;
}

.timeline p {
  margin: 0;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.96rem, 1.08vw, 1.26rem);
  line-height: 1.35;
}

.history {
  width: min(1440px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 74px;
  padding: 66px 0 58px;
}

.history .shell {
  width: min(1260px, calc(100% - 128px));
}

.history .section-title {
  margin-bottom: 10px;
}

.history .section-title h2 {
  background: linear-gradient(90deg, #e2bd77 0%, #ae7224 100%);
  -webkit-text-fill-color:
  transparent;
  -webkit-background-clip: text;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.history .section-subtitle {
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(0.92rem, 1.05vw, 1.2rem);
  letter-spacing: 0;
  text-transform: none;
}

.history__layout {
  margin-top: 44px;
  display: block;
}

.timeline > details:not(:first-child) p {
  padding: 0 6px 22px;
}

.history__photos {
  margin-top: 26px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.history__photo {
  min-height: 0;
  width: 60%;
  aspect-ratio: 4 / 3;
  justify-self: center;
  border-radius: 34px;
  border: 0;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(25, 53, 163, 0.48));
  box-shadow: 0 16px 30px rgba(8, 20, 66, 0.28);
  transform-origin: center;
  transition: transform 0.28s ease;
}

img.history__photo {
  display: block;
  object-fit: cover;
}

.history__photo:hover,
.history__photo:focus-visible {
  transform: scale(1.03);
}

.history__photo--1:hover,
.history__photo--1:focus-visible {
  transform: rotate(0deg) scale(1.03);
}

.history__photo--2:hover,
.history__photo--2:focus-visible {
  transform: rotate(0deg) scale(1.03);
}

.history__photo--2 {
  margin-left: -34px;
}

.history__photo--1 {
  justify-self: end;
  margin-right: 30px;
  transform: rotate(-3deg);
}

.timeline > details:first-child .history__photo--1 {
  justify-self: center;
  margin-right: 0;
}

.timeline > details:first-child .history__photo--1 {
  grid-column: 1 / -1;
  justify-self: center;
  width: 30%;
}

.history__photo--2 {
  justify-self: start;
  margin-left: 20px;
  transform: rotate(5deg);
}

.history__photo--3 {
  transform: rotate(-5deg);
}

.history__photo--4 {
  transform: rotate(6deg);
}

.history-symbol {
  margin-top: 52px;
  padding: 28px 30px 18px;
  border-radius: 36px;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("img/map_history.svg") center / 88% no-repeat;
  border: 0;
}

.history-symbol__top {
  display: grid;
  grid-template-columns: 540px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.history-symbol__title {
  margin: 16px 0 0;
  display: inline-block;
  flex: none;
  width: 470px;
  max-width: 470px;
  padding: 12px 24px 10px;
  background: #fff;
  color: #244ab6;
  border-radius: 16px;
  font-size: clamp(1rem, 1.32vw, 1.7rem);
  font-weight: 700;
  line-height: 1.05;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  transform: rotate(-3.2deg);
}

.history-symbol__title span {
  display: block;
  width: auto;
  white-space: normal;
}

.history-symbol__quote {
  margin: 0;
  flex: none;
  width: 620px;
  max-width: 620px;
  justify-self: start;
  padding: 20px 22px;
  border: 3px solid #d3a75d;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.84rem, 0.95vw, 1.08rem);
  line-height: 1.35;
  font-style: italic;
}

.history-symbol__body {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.history-symbol__visual {
  position: relative;
  min-height: 380px;
}

.history-symbol__bird {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2;
}

.history-symbol__line {
  position: absolute;
  left: 260px;
  bottom: 74px;
  width: 700px;
  max-width: none;
  z-index: 1;
  pointer-events: none;
}

.history-symbol__text p {
  margin: 0;
  font-size: clamp(0.9rem, 1.05vw, 1.2rem);
  line-height: 1.3;
  color: #fff;
}

.history-symbol__text {
  max-width: 820px;
  justify-self: start;
  padding-top: 18px;
}

.history-symbol__text p + p {
  margin-top: 20px;
}

.history-note {
  margin-top: 20px;
}

.about {
  position: relative;
  overflow: hidden;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.about::before,
.about::after {
  content: none;
}

.about > * {
  position: relative;
  z-index: 1;
}

.about__mission {
  margin: 36px 0 30px;
  width: min(1060px, 100%);
  border-radius: 32px;
  border-color: rgba(34, 43, 70, 0.08);
  box-shadow: 0 6px 14px rgba(44, 49, 70, 0.12);
}

.about__mission p {
  margin: 0;
  font-size: clamp(0.92rem, 1.02vw, 1.25rem);
  line-height: 1.28;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.about__label,
.about__group-title {
  color: #2a4298;
  font-weight: 800;
  text-transform: uppercase;
}

.about__mission-text {
  color: #111317;
}

.about__group-title {
  margin: 8px 0 18px;
  font-size: clamp(1.25rem, 1.7vw, 1.85rem);
}

.about__row,
.nominations__list,
.reviews__grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.5fr) repeat(3, minmax(220px, 0.86fr));
  gap: 18px;
}

.about__row {
  margin-bottom: 34px;
}

.about__lead {
  position: relative;
  padding: 34px 34px;
  border-radius: 28px;
  background: linear-gradient(145deg, #203993 0%, #6f88d7 100%);
  color: #fff;
  min-height: 186px;
  min-width: 50px;
  max-width: 450px;
}

.about__lead::after {
  content: "";
  position: absolute;
  right: -32px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 32px solid transparent;
  border-bottom: 32px solid transparent;
  border-left: 32px solid #6f88d7;
  transform: translateY(-50%);
}

.about__lead p {
  margin: 0;
  font-size: clamp(0.9rem, 1.02vw, 1.22rem);
  line-height: 1.24;
}

.about__item {
  position: relative;
  padding: 24px 34px;
  min-height: 160px;
  border-radius: 28px;
  border-color: rgba(34, 43, 70, 0.08);
  box-shadow: 0 6px 14px rgba(44, 49, 70, 0.12);
}

.about__item p {
  margin: 0;
  font-size: clamp(0.88rem, 0.98vw, 1.12rem);
  line-height: 1.24;
}

.about__num {
  position: absolute;
  left: -18px;
  top: -16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, #5f7fd8 0%, #2e4eb5 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.55rem;
}

.level .shell {
  width: min(1260px, calc(100% - 128px));
}

.level {
  border-radius: 88px;
  padding: 74px 0 52px;
}

.level .section-title {
  margin-bottom: 20px;
}

.level .section-title h2 {
  background: linear-gradient(90deg, #e2bd77 0%, #ae7224 100%);
  -webkit-text-fill-color:
  transparent;
  -webkit-background-clip: text;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.steps {
  display: grid;
  gap: 0;
}

.step.card.card--dark {
  padding: 58px 16px 56px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.step + .step {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.step {
  position: relative;
}

.step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.step:last-child::after {
  display: none;
}

.step__index {
  display: block;
  margin-bottom: 18px;
  padding: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: #e2bd77;
  font-size: clamp(1.95rem, 2.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1;
}

.step h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.28rem, 1.7vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
}

.step p {
  margin: 14px 0 0;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 1.05vw, 1.28rem);
  line-height: 1.35;
}

.step p + p {
  margin-top: 8px;
}

.feature-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(33, 70, 199, 0.1);
  color: var(--primary);
  font-weight: 800;
}

.nomination h3,
.review h3,
.step h3,
.feature-card h3,
.history-note h3 {
  margin-top: 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 168px;
  gap: 4px;
  margin-top: 22px;
  margin-left: -52px;
  margin-right: -52px;
}

.gallery__photo {
  display: block;
  min-height: 136px;
  border-radius: 34px;
  border: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  cursor: zoom-in;
}

.placeholder--photo {
  cursor: zoom-in;
}

.gallery__photo,
.placeholder--photo:not(.review__photo),
.encyclopedia__gallery img {
  transition: transform 0.28s ease;
}

.gallery__photo:hover,
.gallery__photo:focus-visible,
.placeholder--photo:not(.review__photo):hover,
.placeholder--photo:not(.review__photo):focus-visible,
.encyclopedia__gallery img:hover,
.encyclopedia__gallery img:focus-visible {
  transform: scale(1.03);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 11, 34, 0.74);
  z-index: 120;
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox__content {
  width: min(980px, calc(100vw - 48px));
  max-height: calc(100vh - 80px);
}

.gallery-lightbox__photo {
  width: 100%;
  min-height: min(72vh, 700px);
  border-radius: 38px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  cursor: default;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
}

img.gallery-lightbox__photo {
  min-height: 0;
  max-height: min(72vh, 700px);
  height: auto;
  object-fit: contain;
}

.gallery-lightbox__close {
  position: absolute;
  top: 16px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(90deg, #e2bd77 0%, #ae7224 100%);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(11, 29, 97, 0.35);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 140;
  cursor: pointer;
}

.scroll-top span {
  transform: translateY(-2px);
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  transform: translateY(-2px) scale(1.04);
}

.gallery__photo--xl {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__photo--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__video {
  position: relative;
  margin-top: 20px;
  margin-left: -52px;
  margin-right: -52px;
  border-radius: 74px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 10px 24px rgba(18, 34, 102, 0.18);
}

.gallery__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 24, 84, 0);
  transition: background 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery__video-media {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  background: #0f2a84;
}

.gallery__duration {
  position: absolute;
  top: 26px;
  right: 26px;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(149, 181, 255, 0.52);
  color: #f7fbff;
  font-size: 1.1rem;
  line-height: 1;
  z-index: 4;
}

.gallery__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 116px;
  height: 116px;
  border-radius: 50%;
  border: 0;
  background: rgba(145, 176, 255, 0.54);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.gallery__play-triangle {
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid #fff;
  margin-left: 6px;
}

.gallery__pause-icon {
  display: none;
  gap: 8px;
  align-items: center;
}

.gallery__pause-icon span {
  display: block;
  width: 8px;
  height: 28px;
  border-radius: 4px;
  background: #fff;
}

.gallery__play.is-pause .gallery__play-triangle {
  display: none;
}

.gallery__play.is-pause .gallery__pause-icon {
  display: inline-flex;
}

.gallery__video.is-playing .gallery__play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
}

.gallery__video.is-playing:hover .gallery__play {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.gallery__video.is-playing:hover::after {
  background: rgba(9, 24, 84, 0.5);
}

.gallery__video:not(.is-playing)::after {
  background: rgba(9, 24, 84, 0.58);
}

.reviews {
  border-radius: 74px;
}

.reviews .section-title {
  margin-bottom: 28px;
}

.reviews .section-title h2 {
  color: #e2bd77;
  text-shadow: 0 3px 8px rgba(10, 24, 81, 0.24);
}

.reviews__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px 0;
}

.review {
  position: relative;
  min-height: 360px;
  padding: 0 22px;
}

.reviews__grid > .review:nth-child(odd) {
  margin-left: 44px;
}

.review__photo {
  width: 220px;
  height: 230px;
  margin: 0 0 0 20px;
  border-radius: 34px;
  display: block;
  object-fit: cover;
}

.review__card {
  position: relative;
  margin-top: -36px;
  margin-left: 52px;
  background: #fff;
  color: #111317;
  border-radius: 24px;
  padding: 18px 20px 20px;
  box-shadow: 0 10px 22px rgba(10, 24, 81, 0.22);
  width: 500px;
  min-height: 206px;
  display: flex;
  flex-direction: column;
}

.review__card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.1;
}

.review__role {
  margin: 10px 0 20px;
  font-size: 0.9rem;
  line-height: 1.25;
  font-weight: 600;
}

.review__card p {
  margin: 0;
  line-height: 1.32;
}

.nominations {
  position: relative;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
  padding: 12px 0 0;
}

.gallery {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.intro,
.history,
.about,
.level,
.nominations,
.encyclopedia,
.gallery,
.reviews {
  margin-top: 60px;
}

.encyclopedia {
  margin-top: 86px;
}

.intro {
  margin-top: 20px;
}

.intro .section-title h2,
.history .section-title h2,
.about .section-title h2,
.level .section-title h2,
.nominations .section-title h2,
.gallery .section-title h2,
.reviews .section-title h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.intro .section-title,
.history .section-title,
.about .section-title,
.level .section-title,
.nominations .section-title,
.gallery .section-title,
.reviews .section-title {
  margin-bottom: 0;
}

.nominations .section-title__line {
  display: none;
}

.nominations .section-title h2 {
  color: #2a4298;
  font-size: clamp(1.95rem, 3vw, 3rem);
}

.nominations .section-subtitle {
  margin: 0;
  color: #2a4298;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(0.96rem, 1.25vw, 1.35rem);
  line-height: 1.1;
  font-weight: 700;
}

.intro .intro__content,
.history .history__layout,
.about .about__mission,
.level .steps,
.nominations .nominations__list,
.gallery .gallery__video,
.reviews .reviews__grid {
  margin-top: 40px;
}

.nominations .nominations__list {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.nomination {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.nomination__meta {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-left: 88px;
}

.nomination__icon {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nomination__icon svg {
  width: 78px;
  height: 78px;
  fill: none;
  stroke: #c2893a;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nomination__icon img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.nomination h3 {
  margin: 0;
  color: #0f1323;
  font-size: clamp(1.06rem, 1.25vw, 1.35rem);
  line-height: 1.12;
  font-weight: 700;
}

.nomination p.card {
  margin: 0;
  padding: 18px 26px;
  width: min(100%, 840px);
  justify-self: end;
  border-radius: 30px;
  border: 1px solid rgba(34, 43, 70, 0.12);
  background: #fff;
  box-shadow: 0 3px 8px rgba(19, 31, 80, 0.1);
  color: #1a1f2f;
  font-size: clamp(0.92rem, 1vw, 1.08rem);
  line-height: 1.22;
}

.footer {
  display: block;
  width: 100%;
  align-items: start;
  margin-top: 24px;
  margin-bottom: 0;
  border-radius: 108px 108px 0 0;
  background: linear-gradient(145deg, #5a83db 0%, #2e49a9 52%, #123f9f 100%);
  box-shadow: none;
  backdrop-filter: none;
  color: #f4f8ff;
}

.footer__inner {
  padding: 42px 58px 72px;
}

.footer__contacts {
  display: grid;
  gap: 6px;
  justify-items: end;
  text-align: right;
}

.footer__partners {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  margin-top: 24px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 8px;
}

.footer__logo {
  min-height: 76px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
}

.footer__partners > .footer__logo:nth-child(1),
.footer__partners > .footer__logo:nth-child(2),
.footer__partners > .footer__logo:nth-child(3),
.footer__partners > .footer__logo:nth-child(4) {
  grid-column: span 3;
}

.footer__partners > .footer__logo:nth-child(5) {
  grid-column: 3 / span 3;
}

.footer__partners > .footer__logo:nth-child(6) {
  grid-column: 6 / span 3;
}

.footer__partners > .footer__logo:nth-child(7) {
  grid-column: 9 / span 3;
}

.footer__logo-img {
  width: 268px;
  height: 78px;
  object-fit: contain;
  display: block;
  transition: transform 0.24s ease;
}

.footer__logo-img--rsv {
  width: 236px;
}

.footer__logo-img--msmr,
.footer__logo-img--rggu,
.footer__logo-img--smolgu {
  height: 118px;
}

.footer__logo:hover .footer__logo-img,
.footer__logo:focus-within .footer__logo-img {
  transform: scale(1.06);
}

.footer__partners > .footer__logo:nth-child(1),
.footer__partners > .footer__logo:nth-child(2),
.footer__partners > .footer__logo:nth-child(3),
.footer__partners > .footer__logo:nth-child(4) {
  transform: translateX(24px);
}

.footer__meta {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  transform: translateY(70px);
}

.footer__legal p {
  margin: 0;
  max-width: 420px;
  line-height: 1.3;
}

.footer__legal p + p {
  margin-top: 6px;
}

.footer a,
.footer span,
.footer p {
  color: #f4f8ff;
}

@media (max-width: 1080px) {
  .hero,
  .intro__content,
  .history__layout,
  .footer,
  .about__row,
  .steps,
  .nominations__list,
  .reviews__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about::before,
  .about::after {
    width: 520px;
    height: 520px;
    border-width: 34px;
  }

  .about__mission {
    margin-top: 24px;
  }

  .about__lead {
    grid-column: span 2;
  }

  .hero {
    min-height: 610px;
    height: 610px;
  }

  .hero__inner {
    padding: 44px 42px 130px;
  }

  .hero__logo {
    top: 44px;
    right: 42px;
    width: 220px;
  }

  .hero__bird {
    left: 40px;
    top: 214px;
    width: 238px;
  }

  .hero__map {
    left: 50%;
    bottom: 30px;
    width: 730px;
    transform: translateX(-50%);
  }

  .hero h1 {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
  }

  .hero__title-sub {
    font-size: clamp(1.5rem, 3.6vw, 2.3rem);
    white-space: normal;
  }

  .hero__actions {
    gap: 16px;
    bottom: 58px;
  }

  .button {
    min-height: 52px;
    min-width: 230px;
    font-size: clamp(1rem, 1.9vw, 1.2rem);
  }

  .gallery__grid,
  .encyclopedia__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery__grid {
    grid-auto-rows: 172px;
  }

  .gallery__photo--xl,
  .gallery__photo--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery__video,
  .gallery__video-media {
    min-height: 320px;
    border-radius: 56px;
  }

  .footer {
    border-radius: 72px 72px 0 0;
  }

  .footer__inner {
    padding: 32px 34px 62px;
  }

  .footer__partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 12px;
  }

  .footer__partners > .footer__logo:nth-child(1),
  .footer__partners > .footer__logo:nth-child(2),
  .footer__partners > .footer__logo:nth-child(3),
  .footer__partners > .footer__logo:nth-child(4),
  .footer__partners > .footer__logo:nth-child(5),
  .footer__partners > .footer__logo:nth-child(6),
  .footer__partners > .footer__logo:nth-child(7) {
    grid-column: auto;
  }

  .footer__meta {
    transform: none;
  }

  .reviews__grid {
    gap: 46px 24px;
  }

  .review {
    min-height: 330px;
    padding: 0 10px;
  }

  .reviews__grid > .review:nth-child(odd) {
    margin-left: 22px;
  }

  .review__photo {
    width: 190px;
    height: 200px;
    margin-left: 14px;
  }

  .review__card {
    margin-left: 28px;
    width: 100%;
    min-height: 220px;
  }

  .gallery__duration {
    top: 18px;
    right: 18px;
    font-size: 0.95rem;
    padding: 8px 14px;
  }

  .gallery__play {
    width: 90px;
    height: 90px;
  }

  .gallery__play-triangle {
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 22px;
  }

  .gallery__pause-icon span {
    width: 7px;
    height: 22px;
  }

  .encyclopedia {
    border-radius: 56px;
    padding: 56px 0 44px;
  }

  .encyclopedia .shell {
    width: min(1260px, calc(100% - 72px));
  }

  .encyclopedia::before {
    inset: 200px 40px 220px;
  }

  .encyclopedia__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .encyclopedia .section-title h2 {
    font-size: clamp(1.55rem, 3.3vw, 2.45rem);
  }

  .encyclopedia__subtitle {
    font-size: clamp(0.92rem, 1.8vw, 1.35rem);
  }

  .encyclopedia__stats .stats-card strong {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  }

  .encyclopedia__stats .stats-card span {
    font-size: clamp(0.86rem, 1.5vw, 1.1rem);
  }

  .encyclopedia__gallery {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .encyclopedia__gallery .placeholder {
    min-height: 320px;
  }

  .encyclopedia__gallery img {
    width: 180px;
    height: 260px;
  }

  .encyclopedia__pair {
    gap: 12px;
  }

  .nominations {
    padding: 8px 0 0;
  }

  .nominations .nominations__list {
    margin-top: 34px;
    gap: 20px;
  }

  .nomination {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 18px;
  }

  .nomination__icon {
    width: 80px;
    height: 80px;
    flex-basis: 80px;
  }

  .nomination__icon svg {
    width: 64px;
    height: 64px;
  }

  .nomination__icon img {
    width: 64px;
    height: 64px;
  }

  .nomination p.card {
    padding: 16px 18px;
    width: min(100%, 680px);
    justify-self: end;
    border-radius: 24px;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
  }

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

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

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

  .timeline summary {
    font-size: 2.2rem;
  }

  .timeline p {
    font-size: 1.35rem;
  }

  .history .section-subtitle {
    font-size: 1.2rem;
  }

  .history {
    border-radius: 56px;
    padding: 52px 0 44px;
  }

  .history .shell {
    width: min(1260px, calc(100% - 72px));
  }

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

  .history-symbol__top,
  .history-symbol__body {
    grid-template-columns: 1fr;
  }

  .history-symbol__top {
    display: grid;
  }

  .history-symbol__bird {
    max-width: 380px;
  }

  .history-symbol__line {
    left: 180px;
    bottom: 86px;
    width: 620px;
  }

  .history-symbol__visual {
    min-height: 360px;
  }

  .level {
    border-radius: 56px;
    padding: 56px 0 40px;
  }

  .level .shell {
    width: min(1260px, calc(100% - 72px));
  }

  .step.card.card--dark {
    padding: 40px 8px 40px;
  }

  .step__index {
    margin-bottom: 12px;
    font-size: clamp(1.65rem, 4.2vw, 2.3rem);
  }

  .step h3 {
    font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  }

  .step p {
    margin-top: 10px;
    font-size: clamp(0.9rem, 1.8vw, 1.08rem);
  }
}

@media (max-width: 920px) {
  .hero {
    min-height: 560px;
    height: auto;
  }

  .hero__inner {
    padding: 34px 26px 34px;
  }

  .hero__content {
    margin-left: 0;
    max-width: 100%;
  }

  .hero__logo {
    top: 28px;
    right: 26px;
    width: 170px;
  }

  .hero__bird {
    top: 188px;
    left: 22px;
    width: 164px;
  }

  .hero__map {
    width: min(560px, 88vw);
    bottom: 108px;
  }

  .hero__actions {
    bottom: 34px;
    gap: 12px;
  }

  .button {
    min-width: 190px;
    min-height: 46px;
    font-size: 0.92rem;
  }

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

  .about__lead {
    grid-column: auto;
  }

  .encyclopedia__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .encyclopedia__stats .stats-card strong {
    font-size: 2.1rem;
  }

  .encyclopedia__stats .stats-card span {
    font-size: 0.74rem;
    line-height: 1.12;
  }

  .encyclopedia__gallery {
    gap: 14px;
  }

  .encyclopedia__gallery img {
    width: 138px;
    height: 184px;
  }

  .footer__logo-img {
    width: min(240px, 100%);
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .shell {
    width: min(1440px, calc(100% - 40px));
  }

  .hero,
  .hero__inner,
  .hero__logo,
  .hero__bird,
  .hero__map,
  .hero__content,
  .hero__actions {
    transition: none !important;
  }

  .hero {
    min-height: 640px;
    height: auto;
    background-size: cover !important;
    background-position: top center;
  }

  .hero__inner {
    min-height: 640px;
    padding: 38px 28px 22px;
  }

  .hero__logo {
    display: none;
  }

  .hero__content {
    position: static;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }

  .hero__title-main {
    font-size: clamp(2.1rem, 6.2vw, 3.1rem);
    line-height: 0.94;
  }

  .hero__title-sub {
    margin-top: 4px;
    font-size: clamp(1.2rem, 3vw, 1.65rem);
    line-height: 1.05;
    white-space: normal;
  }

  .hero__bird {
    z-index: 2;
    left: 24px;
    top: 220px;
    width: 170px;
  }

  .hero__map {
    left: 50%;
    bottom: 96px;
    width: min(480px, 72vw);
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.48;
  }

  .hero__actions {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: calc(100% - 56px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
    z-index: 3;
  }

  .button {
    width: 74%;
    min-height: 48px;
    font-size: 1rem;
    margin: 0 auto;
  }

  .intro__content,
  .history__layout,
  .about__row,
  .steps,
  .nominations__list,
  .reviews__grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .encyclopedia {
    padding: 34px 0 24px;
    background-image: none;
    background: linear-gradient(180deg, #6f9ae8 0%, #0f6fcc 40%, #113f95 100%);
  }

  .encyclopedia .shell {
    width: min(1260px, calc(100% - 40px));
  }

  .encyclopedia__line {
    display: none;
  }

  .encyclopedia__stats {
    margin-top: 14px;
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
  }

  .encyclopedia__stats .stats-card:nth-child(odd) {
    padding-left: 20px;
  }

  .encyclopedia__stats .stats-card strong {
    font-size: 2.2rem;
  }

  .encyclopedia__stats .stats-card span {
    font-size: 0.82rem;
  }

  .encyclopedia__gallery {
    margin-top: 18px;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
  }

  .encyclopedia__pair {
    gap: 10px;
  }

  .encyclopedia__gallery img {
    width: 154px;
    height: 210px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 430px;
  }

  .hero__inner {
    padding: 18px 14px 14px;
  }

  .hero__title-main {
    font-size: clamp(1.22rem, 7.4vw, 1.6rem);
    line-height: 0.94;
  }

  .hero__title-sub {
    font-size: clamp(0.78rem, 4.2vw, 0.98rem);
  }

  .hero__map {
    width: min(240px, 72vw);
    bottom: 58px;
    opacity: 0.34;
  }

  .hero__bird {
    width: 74px;
    top: 198px;
    left: 8px;
  }

  .hero__actions {
    gap: 8px;
    margin-top: 10px;
  }

  .button {
    width: 90%;
    min-height: 38px;
    font-size: 0.82rem;
    border-radius: 999px;
  }

  .encyclopedia {
    padding: 24px 0 20px;
  }

  .encyclopedia__stats {
    margin-top: 18px;
    gap: 18px 8px;
  }

  .encyclopedia__stats .stats-card strong {
    font-size: 1.72rem;
  }

  .encyclopedia__stats .stats-card span {
    margin-top: 4px;
    font-size: 0.56rem;
  }

  .encyclopedia__stats .stats-card {
    min-height: 64px;
  }

  .encyclopedia__gallery {
    margin-top: 14px;
    gap: 10px;
  }

  .encyclopedia__pair {
    gap: 6px;
  }

  .encyclopedia__gallery img {
    width: 116px;
    height: 152px;
    border-radius: 12px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(1440px, calc(100% - 20px));
  }

  .hero,
  .hero__inner,
  .hero__logo,
  .hero__bird,
  .hero__map,
  .hero__content,
  .hero__actions {
    transition: none !important;
  }

  .hero .button:hover,
  .hero .button:focus-visible {
    transform: none;
  }

  .hero,
  .section,
  .intro,
  .about,
  .nominations,
  .gallery {
    border-radius: 30px;
  }

  .footer {
    border-radius: 44px 44px 0 0;
  }

  .footer__inner {
    padding: 24px 20px 46px;
  }

  .gallery__video {
    margin-left: 0;
    margin-right: 0;
  }

  .gallery__grid {
    margin-left: 0;
    margin-right: 0;
  }

  .hero {
    min-height: 430px;
    height: auto;
    margin-top: 0;
    border-radius: 30px;
    background-size: calc(100% + 120px) 100% !important;
    background-position: center -18px;
  }

  .hero__inner {
    padding: 28px 16px 12px;
    min-height: 430px;
  }

  .hero__content {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }

  .hero__logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 132px;
  }

  .hero__bird {
    left: 20px;
    top: 190px;
    width: 150px;
  }

  .hero__map {
    left: 50%;
    bottom: 88px;
    width: min(372px, 90vw);
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.42;
  }

  .eyebrow,
  .hero__text {
    display: none;
  }

  .hero h1 {
    font-size: clamp(1.2rem, 7vw, 1.8rem);
  }

  .hero__title-main {
    font-size: clamp(1.3rem, 6.9vw, 1.74rem);
    line-height: 0.94;
  }

  .hero__title-sub {
    margin-top: 2px;
    font-size: clamp(0.74rem, 3.7vw, 0.9rem);
    line-height: 1.04;
    white-space: normal;
  }

  .hero__logo {
    display: none;
  }

  .hero__bird {
    z-index: 2;
    top: 146px;
    width: 146px;
    left: 8px;
  }

  .hero__content {
    position: static;
    z-index: auto;
    padding-right: 0;
    margin-top: 18px;
  }

  .hero,
  .intro__grid,
  .intro__content,
  .history__layout,
  .history__thumbs,
  .intro__gallery,
  .about__row,
  .steps,
  .nominations__list,
  .encyclopedia__stats,
  .encyclopedia__gallery,
  .gallery__grid,
  .reviews__grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-auto-rows: 196px;
    gap: 10px;
  }

  .gallery__video,
  .gallery__video-media {
    min-height: 210px;
    border-radius: 34px;
  }

  .footer {
    padding: 28px 20px;
  }

  .footer__partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 8px;
    justify-items: center;
  }

  .footer__partners > .footer__logo:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

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

  .footer__meta {
    margin-top: 28px;
    gap: 14px;
    transform: none;
  }

  .footer__logo {
    min-height: 56px;
    padding: 4px 8px;
  }

  .footer__logo-img,
  .footer__logo-img--rsv,
  .footer__logo-img--msmr,
  .footer__logo-img--rggu,
  .footer__logo-img--smolgu {
    width: min(170px, 100%);
    height: auto;
    max-height: 62px;
  }

  .footer__logo-img--rsv {
    width: min(148px, 100%);
  }

  .footer__contacts {
    justify-items: start;
    text-align: left;
  }

  .reviews {
    border-radius: 34px;
  }

  .reviews .section-title {
    margin-bottom: 16px;
  }

  .review {
    min-height: 0;
    padding: 0;
  }

  .reviews__grid > .review:nth-child(odd) {
    margin-left: 0;
  }

  .review__photo {
    width: 100%;
    height: 340px;
    margin: 0;
    object-position: center 16%;
  }

  .review__card {
    margin-top: -24px;
    margin-left: 0;
    width: 100%;
    border-radius: 20px;
    padding: 16px;
  }

  .gallery-lightbox__photo {
    border-radius: 24px;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    font-size: 1.35rem;
  }

  .gallery__duration {
    top: 10px;
    right: 10px;
    font-size: 0.82rem;
    padding: 7px 12px;
  }

  .gallery__play {
    width: 72px;
    height: 72px;
  }

  .gallery__play-triangle {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 18px;
  }

  .gallery__pause-icon {
    gap: 5px;
  }

  .gallery__pause-icon span {
    width: 6px;
    height: 18px;
  }

  .about::before,
  .about::after {
    width: 300px;
    height: 300px;
    border-width: 20px;
    left: -170px;
  }

  .about::before {
    top: -120px;
  }

  .about::after {
    bottom: -170px;
  }

  .about__mission {
    border-radius: 24px;
  }

  .about__mission p {
    font-size: 1rem;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about__group-title {
    margin: 6px 0 12px;
    font-size: 1.5rem;
  }

  .nominations {
    border-radius: 0;
    padding: 6px 0 0;
  }

  .nominations .section-subtitle {
    font-size: 0.94rem;
    line-height: 1.2;
  }

  .nominations .nominations__list {
    margin-top: 24px;
    gap: 14px;
  }

  .nomination {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .nomination__meta {
    gap: 18px;
    padding-left: 0;
  }

  .nomination__icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .nomination__icon svg {
    width: 46px;
    height: 46px;
  }

  .nomination__icon img {
    width: 46px;
    height: 46px;
  }

  .nomination h3 {
    font-size: 1.1rem;
  }

  .nomination p.card {
    border-radius: 18px;
    padding: 14px 14px;
    width: 100%;
    font-size: 0.92rem;
  }

  .about__lead,
  .about__item {
    min-height: auto;
  }

  .about__lead {
    border-radius: 22px;
    padding: 16px 18px;
  }

  .about__lead::after {
    display: none;
  }

  .about__item {
    border-radius: 22px;
  }

  .about__item p {
    font-size: 1rem;
  }

  .about__row {
    margin-bottom: 24px;
  }

  .section-title {
    gap: 10px;
  }

  .section-title__line {
    width: 36px;
  }

  .intro {
    padding-bottom: 24px;
  }

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

  .stats-card--intro span {
    font-size: 1.05rem;
  }

  .intro__text p {
    font-size: 1.08rem;
    line-height: 1.35;
  }

  .timeline summary,
  .timeline > details:not(:first-child) summary {
    font-size: 1.7rem;
    padding: 16px 2px;
  }

  .timeline summary::after {
    font-size: 1.2rem;
  }

  .timeline p,
  .timeline > details:not(:first-child) p {
    font-size: 1rem;
    padding: 0 2px 16px;
  }

  .history .section-subtitle {
    font-size: 0.98rem;
  }

  .history {
    border-radius: 34px;
    padding: 34px 0 30px;
    width: min(1440px, calc(100% - 20px));
  }

  .encyclopedia {
    border-radius: 34px;
    padding: 28px 0 18px;
    width: min(1440px, calc(100% - 20px));
    background-image: none;
    background: linear-gradient(180deg, #6f9ae8 0%, #0f6fcc 40%, #113f95 100%);
  }

  .encyclopedia .shell {
    width: min(1260px, calc(100% - 28px));
  }

  .encyclopedia::before {
    inset: 230px 16px 260px;
    opacity: 0.1;
  }

  .encyclopedia .section-title {
    margin-bottom: 10px;
  }

  .encyclopedia__subtitle {
    font-size: 0.88rem;
    line-height: 1.12;
    margin-top: 8px;
  }

  .encyclopedia__subtitle img {
    width: min(360px, 92%);
    margin: 0 auto;
  }

  .encyclopedia__subtitle::after {
    display: none;
  }

  .encyclopedia__line {
    display: none;
  }

  .encyclopedia__stats {
    margin-top: 10px;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }

  .encyclopedia__stats .stats-card strong {
    color: #e2bd77;
    font-size: 2.05rem;
    line-height: 1;
  }

  .encyclopedia__stats .stats-card span {
    margin-top: 4px;
    font-size: 0.72rem;
    line-height: 1.12;
  }

  .encyclopedia__stats .stats-card {
    min-height: 72px;
  }

  .encyclopedia__stats .stats-card:nth-child(odd) {
    padding-left: 26px;
  }

  .encyclopedia__gallery {
    margin-top: 14px;
    gap: 8px;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
  }

  .encyclopedia__gallery .placeholder {
    min-height: 220px;
  }

  .encyclopedia__gallery img {
    width: 124px;
    height: 176px;
  }

  .encyclopedia__pair {
    gap: 6px;
    justify-content: center;
  }

  .level {
    border-radius: 34px;
    padding: 34px 0 26px;
    width: min(1440px, calc(100% - 20px));
  }

  .level .shell {
    width: min(1260px, calc(100% - 28px));
  }

  .level .section-title {
    margin-bottom: 8px;
  }

  .step.card.card--dark {
    padding: 30px 2px 30px;
  }

  .step__index {
    margin-bottom: 10px;
    font-size: 2rem;
  }

  .step h3 {
    font-size: 1.45rem;
  }

  .step p {
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.32;
  }

  .history .shell {
    width: min(1260px, calc(100% - 28px));
  }

  .history__photos {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .history-symbol {
    margin-top: 32px;
    padding: 24px 16px;
    border-radius: 22px;
    background-size: 130%;
  }

  .history-symbol__title {
    font-size: 1.55rem;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .history-symbol__quote {
    width: 100%;
    max-width: none;
    font-size: 0.96rem;
    padding: 14px;
  }

  .history-symbol__body {
    margin-top: 20px;
    gap: 12px;
  }

  .history-symbol__bird {
    max-width: 220px;
  }

  .history-symbol__line {
    left: 50%;
    bottom: 8px;
    width: min(360px, 94%);
    transform: translateX(-38%);
  }

  .history-symbol__visual {
    min-height: 220px;
    overflow: hidden;
  }

  .history-symbol__text p {
    font-size: 1rem;
  }

  .history__photo,
  .history__photo--1,
  .history__photo--2,
  .history__photo--3,
  .history__photo--4 {
    min-height: 190px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    justify-self: center;
    transform: none;
  }

  .timeline > details:first-child .history__photo--1 {
    width: min(320px, 100%);
    grid-column: auto;
  }

  .hero__actions {
    position: absolute;
    left: 50%;
    bottom: 98px;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
    z-index: 3;
    width: calc(100% - 24px);
  }

  .button {
    width: 62%;
    min-width: 0;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.86rem;
    margin: 0 auto;
  }

.footer__contacts {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 400px;
  }

  .hero__inner {
    padding: 24px 12px 10px;
    min-height: 400px;
  }

  .hero__content {
    margin-top: 24px;
  }

  .hero__title-main {
    font-size: clamp(1.18rem, 6.3vw, 1.5rem);
  }

  .hero__title-sub {
    font-size: clamp(0.68rem, 3.3vw, 0.82rem);
  }

  .hero__map {
    width: min(318px, 86vw);
    bottom: 72px;
    opacity: 0.36;
  }

  .hero__bird {
    width: 124px;
    top: 134px;
    left: 8px;
  }

  .hero__actions {
    bottom: 84px;
    margin-top: 0;
    gap: 8px;
  }

  .button {
    width: 60%;
    min-height: 36px;
    font-size: 0.78rem;
    padding: 0 10px;
  }

  .review__photo {
    height: 310px;
    object-position: center 14%;
  }

  .encyclopedia__stats {
    margin-top: 10px;
    gap: 14px 10px;
  }

  .encyclopedia__stats .stats-card strong {
    font-size: 1.74rem;
  }

  .encyclopedia__stats .stats-card span {
    font-size: 0.62rem;
    margin-top: 4px;
  }

  .encyclopedia__stats .stats-card {
    min-height: 62px;
  }

  .encyclopedia__stats .stats-card:nth-child(odd) {
    padding-left: 20px;
  }

  .encyclopedia__gallery {
    margin-top: 10px;
  }

  .encyclopedia__gallery img {
    width: 110px;
    height: 156px;
  }
}

@media (max-width: 430px) {
  .shell {
    width: min(1440px, calc(100% - 16px));
  }

  .hero {
    min-height: 392px;
    margin-top: 0;
    background-size: calc(100% + 120px) 100% !important;
    background-position: center -14px;
  }

  .hero__inner {
    padding: 22px 10px 8px;
    min-height: 392px;
  }

  .hero__content {
    margin-top: 0 !important;
    transform: none;
    position: relative;
    z-index: 3;
  }

  .hero h1 {
    margin-top: 26px !important;
    transform: none;
  }

  .hero__title-main {
    font-size: clamp(1.08rem, 6vw, 1.34rem);
    line-height: 0.94;
  }

  .hero__title-sub {
    font-size: clamp(0.64rem, 3vw, 0.76rem);
  }

  .hero__bird {
    width: 116px;
    top: 138px;
    left: 6px;
  }

  .hero__map {
    width: min(298px, 84vw);
    bottom: 68px;
    opacity: 0.34;
  }

  .hero__actions {
    bottom: 74px;
    width: calc(100% - 20px);
    gap: 7px;
  }

  .button {
    width: 58%;
    min-height: 34px;
    font-size: 0.76rem;
    padding: 0 10px;
  }
}
