/* ==================================================================
   «Сделано на Золотом кольце» — основная страница
   Макет: Figma, фрейм 1470_px_index (node 226:270)
   Брейкпоинты макета: 1470 / 768 / 375
   ================================================================== */

/* ------------------------------------------------------------------
   1. Шрифты (локальные, без Google Fonts)
   ------------------------------------------------------------------ */
@font-face {
	font-family: 'Literata';
	src: url('fonts/literata-cyrillic.woff2') format('woff2');
	font-weight: 200 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Literata';
	src: url('fonts/literata-latin.woff2') format('woff2');
	font-weight: 200 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122,
		U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Manrope';
	src: url('fonts/manrope-cyrillic.woff2') format('woff2');
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Manrope';
	src: url('fonts/manrope-latin.woff2') format('woff2');
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122,
		U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ------------------------------------------------------------------
   2. Токены
   ------------------------------------------------------------------ */
:root {
	--gold: #e1b55a;
	--dark: #230045;
	--plum: #55095e;
	--pink: #d4439f;
	--paper: #f2edf1;

	--serif: 'Literata', Georgia, 'Times New Roman', serif;
	--sans: 'Manrope', 'Helvetica Neue', Arial, sans-serif;

	--container: 1368px;
	--gutter: 51px;
}

/* ------------------------------------------------------------------
   3. База
   ------------------------------------------------------------------ */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--dark);
	font-family: var(--sans);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

/* правила с display: flex/grid перебивают атрибут hidden — закрываем дыру */
[hidden] {
	display: none !important;
}

.sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.container {
	width: 100%;
	max-width: calc(var(--container) + var(--gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.ico {
	flex: 0 0 auto;
	width: 20px;
	height: 21px;
}

/* ------------------------------------------------------------------
   4. Кнопки
   ------------------------------------------------------------------ */
.btn {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	padding: 17px 21px 20px 31px;
	border: 1px solid transparent;
	border-radius: 10px;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .2s, border-color .2s, color .2s;
}

.btn--pink {
	background: var(--pink);
}

.btn--pink:hover {
	background-image: linear-gradient(rgba(85, 9, 94, .28), rgba(85, 9, 94, .28));
}

.btn--ghost {
	border-color: #fff;
}

.btn--ghost:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.btn--sm {
	padding: 13px 19px 14px 24px;
	font-size: 14px;
	line-height: normal;
}

/* ------------------------------------------------------------------
   5. Шапка
   ------------------------------------------------------------------ */
.hdr {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding-top: 14px;
}

.hdr__logo img {
	width: 276px;
	height: auto;
}

.hdr__nav {
	display: flex;
	gap: 37px;
	align-items: center;
	margin-left: auto;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
}

.hdr__nav a:not(.btn) {
	position: relative;
	padding-bottom: 2px;
}

.hdr__nav a:not(.btn)::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s;
}

.hdr__nav a:not(.btn):hover::after {
	transform: scaleX(1);
}

.hdr__cta {
	margin-left: 22px;
}

.hdr__burger {
	display: none;
}

.hero__rule {
	height: 1px;
	margin-top: 12px;
	background: rgba(255, 255, 255, .18);
}

/* ------------------------------------------------------------------
   6. Hero
   ------------------------------------------------------------------ */
.hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: #fff;
	text-align: center;
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: linear-gradient(-50.476deg, var(--dark) 35.293%, var(--plum) 100%);
	opacity: .6;
	pointer-events: none;
}

.hero__body {
	position: relative;
	padding-top: 46px;
	padding-bottom: 86px;
}

/* логотипы партнёров — слева, поверх центральной колонки */
.hero__partners {
	position: absolute;
	top: 28px;
	left: var(--gutter);
	display: flex;
	gap: 26px;
	align-items: center;
}

.hero__partners img {
	width: auto;
}

.hero__partners picture:first-child img {
	height: 65px;
}

.hero__partners picture:last-child img {
	height: 55px;
}

/* плашка «прием заявок до» — справа */
.hero__date {
	position: absolute;
	top: 41px;
	right: var(--gutter);
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 185px;
	padding: 26px 27px;
	border: 1px solid rgba(212, 67, 159, .21);
	border-radius: 15px;
	background-image:
		linear-gradient(180deg, var(--plum) 19.672%, rgba(35, 0, 69, .05) 77.596%),
		linear-gradient(90deg, rgba(35, 0, 69, .89) 0%, rgba(35, 0, 69, .89) 100%);
}

.hero__date-ico {
	width: 37px;
	height: 35px;
	margin-bottom: 14px;
}

.hero__date-label {
	margin: 0;
	font-size: 18px;
	line-height: 24px;
}

.hero__date-value {
	margin: 0;
	font-family: var(--serif);
}

.hero__date-d {
	display: block;
	color: var(--gold);
	font-size: 50px;
	line-height: 60px;
}

.hero__date-y {
	display: block;
	font-size: 24px;
	line-height: 33px;
}

/* центральная колонка */
.hero__kicker {
	max-width: 528px;
	margin: 0 auto;
	color: var(--gold);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.43;
	letter-spacing: .3em;
	text-transform: uppercase;
}

.hero__title {
	margin: 36px 0 0;
	font-family: var(--serif);
	font-weight: 300;
	font-size: 120px;
	line-height: .68;
	letter-spacing: -.005em;
}

.hero__title span {
	display: block;
}

.hero__title .is-gold {
	color: var(--gold);
}

.hero__lead {
	max-width: 759px;
	margin: 24px auto 0;
	font-weight: 300;
	font-size: 18px;
	line-height: 30px;
}

.hero__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 38px;
}

.hero__actions .btn--pink {
	width: 225px;
}

/* ------------------------------------------------------------------
   7. Заголовок секции (общий паттерн)
   ------------------------------------------------------------------ */
.sec-head {
	max-width: 682px;
}

.sec-kicker {
	margin: 0;
	color: var(--gold);
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: .3em;
	text-transform: uppercase;
}

.sec-title {
	margin: 8px 0 0;
	font-family: var(--serif);
	font-weight: 400;
	font-size: 50px;
	line-height: 60px;
	color: var(--dark);
}

/* ------------------------------------------------------------------
   8. Этапы конкурса
   ------------------------------------------------------------------ */
.stages {
	padding-top: 91px;
	padding-bottom: 107px;
}

.stages__list {
	margin: 64px 0 0;
	padding: 0;
	list-style: none;
}

.stage {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	position: relative;
	padding: 49px 16px;
	margin-inline: -16px;
	border-radius: 15px;
	transition: background-color .25s;
}

/* разделитель — отдельная линия, иначе радиус скругляет её концы */
.stage::before {
	content: '';
	position: absolute;
	top: 0;
	right: 16px;
	left: 16px;
	height: 1px;
	background: rgba(85, 9, 94, .28);
	transition: opacity .2s;
}

@media (hover: hover) {
	.stage:hover {
		background: var(--gold);
	}

	.stage:hover::before,
	.stage:hover + .stage::before {
		opacity: 0;
	}

	.stage:hover .stage__num {
		color: var(--dark);
	}
}

.stage__group {
	display: flex;
	gap: 145px;
	align-items: center;
}

.stage__num {
	flex: 0 0 92px;
	color: var(--gold);
	font-family: var(--serif);
	font-size: 50px;
	line-height: 60px;
	transition: color .25s;
}

.stage__date {
	flex: 0 0 318px;
	margin: 0;
	color: var(--pink);
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
}

.stage__text {
	flex: 0 0 552px;
	margin: 0;
	font-family: var(--serif);
	font-size: 32px;
	line-height: 38px;
	color: var(--dark);
}

.stage__marker {
	flex: 0 0 auto;
	width: 20px;
	height: 19px;
}

/* ------------------------------------------------------------------
   9. Номинации
   ------------------------------------------------------------------ */
.noms {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 54px 0 74px;
	background-image: linear-gradient(-52.916deg, var(--dark) 35.293%, var(--plum) 100%);
	color: #fff;
}

/* узор проявляется книзу — маска повторяет градиентную маску из макета */
.noms::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	height: 624px;
	background: url('images/pattern.webp') left bottom / cover no-repeat;
	opacity: .41;
	-webkit-mask-image: linear-gradient(to bottom, transparent, #000);
	mask-image: linear-gradient(to bottom, transparent, #000);
	pointer-events: none;
}

.sec-title--light {
	color: #fff;
	line-height: 65px;
}

.noms__list {
	display: flex;
	gap: 24px;
	align-items: stretch;
	margin: 64px 0 0;
	padding: 0;
	list-style: none;
}

.nom {
	display: flex;
	flex: 1 1 440px;
	flex-direction: column;
	min-height: 526px;
	padding: 32px 42px 49px;
	border: 1px solid rgba(212, 67, 159, .21);
	border-radius: 15px;
	background-image: linear-gradient(180deg, var(--plum) 19.672%, rgba(85, 9, 94, .28) 77.596%);
}

.nom__num {
	margin: 0 0 48px;
	color: var(--gold);
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: .3em;
	text-transform: uppercase;
}

.nom__body {
	flex: 1 1 auto;
}

.nom__title {
	margin: 0;
	font-family: var(--serif);
	font-weight: 400;
	font-size: 32px;
	line-height: 38px;
}

.nom__text {
	margin: 24px 0 0;
	color: #bc90c2;
	font-weight: 300;
	font-size: 16px;
	line-height: 28px;
}

.nom__more {
	align-self: flex-start;
	margin-top: 24px;
	font-size: 14px;
	line-height: 1.4;
	transition: color .2s;
}

.nom__more:hover {
	color: var(--pink);
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* ------------------------------------------------------------------
   10. Критерии конкурсных изделий
   ------------------------------------------------------------------ */
.crits {
	padding-top: 91px;
}

.sec-title--narrow {
	max-width: 608px;
}

.crits__list {
	display: flex;
	gap: 24px;
	align-items: stretch;
	margin: 42px 0 0;
	padding: 0;
	list-style: none;
}

.crit {
	position: relative;
	display: flex;
	flex: 1 1 324px;
	flex-direction: column;
	min-height: 345px;
	padding: 32px 42px 49px;
	border: 1px solid rgba(212, 67, 159, .21);
	border-radius: 15px;
	background: #fefbfd;
	transition: transform .25s, border-color .25s, background-color .25s;
}

/* подложка ховера: в макете это заливка #55095E с линейным альфа-градиентом
   сверху вниз поверх тёмной основы — воспроизводим градиентом, картинка не нужна */
.crit::before {
	content: '';
	position: absolute;
	inset: -1px;
	z-index: 0;
	border-radius: 15px;
	background:
		linear-gradient(180deg, var(--plum) 0%, rgba(85, 9, 94, 0) 100%),
		var(--dark);
	opacity: 0;
	transition: opacity .25s;
	pointer-events: none;
}

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

@media (hover: hover) {
	.crit:hover {
		transform: translateY(-10px);
		border-color: rgba(212, 67, 159, .2);
	}

	.crit:hover::before {
		opacity: 1;
	}

	.crit:hover .crit__title {
		color: #fff;
	}

	.crit:hover .crit__text {
		color: #bc90c2;
	}
}

.crit__num {
	height: 39px;
	margin: 0 0 48px;
	color: var(--gold);
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: .3em;
	text-transform: uppercase;
}

.crit__title {
	margin: 0;
	font-family: var(--serif);
	font-weight: 400;
	font-size: 32px;
	line-height: 38px;
	color: var(--dark);
	transition: color .25s;
}

.crit__text {
	margin: 24px 0 0;
	font-size: 18px;
	line-height: 28px;
	color: var(--dark);
	transition: color .25s;
}

/* ------------------------------------------------------------------
   11. Документы
   ------------------------------------------------------------------ */
.docs {
	padding-top: 100px;
	padding-bottom: 145px;
}

.docs__inner {
	display: flex;
	gap: 116px;
	align-items: flex-start;
}

.docs__intro {
	flex: 0 0 440px;
}

.docs__note {
	margin: 32px 0 0;
	font-size: 18px;
	line-height: 30px;
	color: var(--dark);
}

.docs__list {
	flex: 1 1 788px;
	min-width: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.doc {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	position: relative;
	padding: 32px 24px;
	margin-inline: -24px;
	border-radius: 15px;
	transition: background-color .25s;
}

.doc::before {
	content: '';
	position: absolute;
	top: 0;
	right: 24px;
	left: 24px;
	height: 1px;
	background: rgba(85, 9, 94, .28);
	transition: opacity .2s;
}

/* по ховеру строка становится белой карточкой — состояние из UI-кита */
@media (hover: hover) {
	.doc:hover {
		background: #fefbfd;
	}

	.doc:hover::before,
	.doc:hover + .doc::before {
		opacity: 0;
	}
}

.doc__info {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	min-width: 0;
	min-height: 74px;
}

.doc__type {
	margin: 0;
	font-weight: 600;
	font-size: 11px;
	line-height: 20px;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--dark);
}

.doc__name {
	margin: 0;
	font-family: var(--serif);
	font-size: 32px;
	line-height: 38px;
	color: var(--dark);
}

.doc__get {
	display: inline-flex;
	flex: 0 0 auto;
	gap: 12px;
	align-items: center;
	color: var(--dark);
	font-weight: 600;
	font-size: 14px;
	transition: color .2s;
}

a.doc__get:hover {
	color: var(--pink);
}

.doc__get.is-empty {
	opacity: .38;
	cursor: default;
}

.ico--sm {
	width: 16px;
	height: 16px;
}

/* ------------------------------------------------------------------
   12. Жюри (карусель)
   ------------------------------------------------------------------ */
.jury {
	padding-top: 114px;
}

.jury__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.jury__nav {
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}

.jury__btn {
	padding: 0;
	border: 0;
	background: none;
	color: var(--dark);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.jury__btn:disabled {
	cursor: default;
	opacity: .2;
}

.jury__btn:not(:disabled):hover .ico-nav {
	--nav-fill: #fefbfd;
}

.jury__btn:focus-visible {
	outline: 2px solid var(--pink);
	outline-offset: 4px;
	border-radius: 50%;
}

.ico-nav {
	width: 60px;
	height: 60px;
}

.ico-nav--prev {
	transform: rotate(-90deg);
}

.ico-nav--next {
	transform: rotate(90deg);
}

/* трек выходит за правый край контейнера до края экрана — как в макете */
.jury__viewport {
	margin-top: 64px;
	margin-right: calc(50% - 50vw);
	padding-right: var(--gutter);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.jury__viewport::-webkit-scrollbar {
	display: none;
}

.jury__viewport:focus-visible {
	outline: 2px solid var(--pink);
	outline-offset: 4px;
}

.jury__track {
	display: flex;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jury__item {
	flex: 0 0 324px;
	scroll-snap-align: start;
}

.jury__photo {
	width: 188px;
	height: 188px;
	margin-bottom: 32px;
	overflow: hidden;
	border-radius: 50%;
}

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

.jury__name {
	margin: 0;
	font-family: var(--serif);
	font-size: 32px;
	line-height: 38px;
	color: var(--dark);
}

.jury__role {
	margin: 12px 0 0;
	font-size: 16px;
	line-height: 28px;
	color: var(--dark);
}

/* ------------------------------------------------------------------
   13. Партнёры (бегущая строка)
   ------------------------------------------------------------------ */
.partners {
	padding-top: 137px;
}

.partners__rule {
	height: 1px;
	background: rgba(85, 9, 94, .28);
}

.container + .partners__rule {
	margin-top: 48px;
}

.partners__rule + .marquee {
	margin-top: 15px;
}

.marquee + .partners__rule {
	margin-top: 16px;
}

.marquee {
	display: flex;
	width: 100%;
	overflow: hidden;
	user-select: none;
}

.marquee__track {
	display: flex;
	flex: 0 0 auto;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	animation: marquee-scroll 46s linear infinite;
}

.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track {
	animation-play-state: paused;
}

@keyframes marquee-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-100%); }
}

.marquee__item {
	display: flex;
	flex: 0 0 392px;
	align-items: center;
	justify-content: center;
	height: 103px;
}

/* логотипы бывают и широкие, и квадратные — ограничиваем по высоте */
.marquee__item img {
	width: auto;
	height: auto;
	max-width: 308px;
	max-height: 70px;
}

@media (prefers-reduced-motion: reduce) {
	.marquee {
		overflow-x: auto;
	}

	.marquee__track {
		animation: none;
	}
}

/* ------------------------------------------------------------------
   14. Форма заявки
   ------------------------------------------------------------------ */
.apply {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 86px 0 91px;
	background-image:
		linear-gradient(-57.271deg, rgba(85, 9, 94, .2) 43.001%, rgba(212, 67, 159, .2) 100%),
		linear-gradient(90deg, var(--plum) 0%, var(--plum) 100%);
	color: #fff;
}

.apply::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	height: 100%;
	background: url('images/pattern.webp') left bottom / cover no-repeat;
	opacity: .41;
	-webkit-mask-image: linear-gradient(to bottom, transparent, #000);
	mask-image: linear-gradient(to bottom, transparent, #000);
	pointer-events: none;
}

.apply__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
}

.apply__intro {
	flex: 0 1 595px;
	max-width: 595px;
}

/* --- карточка формы --- */
.aform {
	display: flex;
	flex: 0 0 672px;
	flex-direction: column;
	gap: 32px;
	min-height: 593px;
	padding: 48px 32px 47px;
	border-radius: 34px;
	background: var(--paper);
	color: var(--dark);
}

.aform__group {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* ловушка для ботов — человеку не видна, но не hidden, иначе бот её распознает */
.aform__trap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.aform__fields {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.field {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(35, 0, 69, .5);
	transition: border-color .2s;
}

.field:focus-within {
	border-color: var(--pink);
}

.field.is-invalid {
	border-color: #c2185b;
}

.field__label {
	font-weight: 600;
	font-size: 11px;
	line-height: 20px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.field__input {
	width: 100%;
	padding: 0;
	border: 0;
	background: none;
	color: var(--dark);
	font-family: inherit;
	font-size: 16px;
	line-height: 20px;
}

.field__input:focus {
	outline: none;
}

.field__input::placeholder {
	color: var(--dark);
	opacity: .5;
}

.field__error {
	display: none;
	color: #c2185b;
	font-size: 11px;
	line-height: 16px;
}

.field.is-invalid .field__error,
.field__error.is-shown {
	display: block;
}

.field-row {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

/* --- зона загрузки --- */
.drop {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 142px;
	padding: 19px 28px 18px;
	border: 1px dashed rgba(45, 0, 71, .5);
	border-radius: 15px;
	transition: border-color .2s, background-color .2s;
}

.drop.is-dragover {
	border-color: var(--pink);
	background: rgba(212, 67, 159, .06);
}

.drop__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.drop__title {
	margin: 0;
	font-weight: 600;
	font-size: 11px;
	line-height: 20px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.drop__empty {
	display: flex;
	gap: 20px;
	align-items: center;
	font-size: 16px;
	line-height: 20px;
}

.drop__hint {
	margin: 0;
	font-weight: 600;
	font-size: 11px;
	line-height: 20px;
	opacity: .5;
}

.drop__hint.is-error {
	color: #c2185b;
	opacity: 1;
}

.pill {
	flex: 0 0 auto;
	padding: 7px 22px;
	border: 1px solid rgba(35, 0, 69, .5);
	border-radius: 55px;
	background: none;
	color: var(--dark);
	font-family: inherit;
	font-weight: 600;
	font-size: 11px;
	line-height: 20px;
	letter-spacing: .15em;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color .2s, color .2s;
}

.pill:hover {
	background: #fefbfd;
}

/* --- список файлов --- */
.drop__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.chip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 7px;
	border-radius: 10px;
	background: #fefbfd;
}

.chip__main {
	display: flex;
	gap: 15px;
	align-items: center;
	min-width: 0;
}

.chip__badge {
	display: flex;
	flex: 0 0 44px;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 7px;
	background: #f1d8e9;
	color: var(--pink);
	font-weight: 600;
	font-size: 11px;
	line-height: 20px;
	letter-spacing: .15em;
}

.chip__info {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
}

.chip__name {
	margin: 0;
	overflow: hidden;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.chip__meta {
	margin: 0;
	font-weight: 600;
	font-size: 11px;
	line-height: 20px;
	opacity: .5;
}

.chip__remove {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 31px;
	height: 24px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--dark);
	cursor: pointer;
	transition: color .2s;
}

.chip__remove:hover {
	color: var(--pink);
}

.ico-close {
	width: 31px;
	height: 16px;
}

/* --- чекбоксы --- */
.agree {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.check {
	display: flex;
	gap: 15px;
	align-items: center;
	cursor: pointer;
}

.check input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.check__box {
	position: relative;
	flex: 0 0 21px;
	width: 21px;
	height: 21px;
	border: .84px solid rgba(35, 0, 69, .5);
	border-radius: 4.2px;
	background: #fff;
	transition: border-color .2s, background-color .2s;
}

.check__box::after {
	content: '';
	position: absolute;
	top: 4px;
	left: 7px;
	width: 5px;
	height: 10px;
	border: solid var(--dark);
	border-width: 0 2px 2px 0;
	opacity: 0;
	transform: rotate(45deg);
	transition: opacity .15s;
}

.check input:checked + .check__box {
	background: var(--gold);
}

.check input:checked + .check__box::after {
	opacity: 1;
}

.check input:focus-visible + .check__box {
	outline: 2px solid var(--pink);
	outline-offset: 2px;
}

.check__text {
	font-size: 14px;
	line-height: 20px;
}

/* ссылки в согласиях: клик по ним не должен переключать галочку —
   за это отвечает stopPropagation в разметке */
.check__text a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-color: rgba(46, 18, 70, .35);
}

@media (hover: hover) {
	.check__text a:hover { text-decoration-color: currentColor; }
}

.agree.is-invalid .check__box {
	border-color: #c2185b;
}

/* --- кнопка отправки --- */
.btn--gold {
	width: 100%;
	background: var(--gold);
	color: var(--dark);
}

.btn--gold:hover {
	background-image: linear-gradient(rgba(85, 9, 94, .18), rgba(85, 9, 94, .18));
}

.btn--gold:disabled {
	opacity: .6;
	cursor: default;
}

.ico--bold {
	stroke-width: 2;
}

.aform__submit {
	margin-top: auto;
}

/* --- модалка «спасибо» --- */
.modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal[hidden] {
	display: none;
}

.modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(35, 0, 69, .55);
}

.modal__card {
	position: relative;
	width: 100%;
	max-width: 633px;
	padding: 64px 56px;
	border-radius: 24px;
	background: var(--paper);
	text-align: center;
}

.modal__close {
	position: absolute;
	top: 24px;
	right: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--dark);
	cursor: pointer;
}

.modal__close:hover {
	color: var(--pink);
}

.modal__text {
	margin: 0;
	color: var(--dark);
	font-family: var(--serif);
	font-size: 26px;
	line-height: 36px;
}

.modal__text a {
	color: var(--pink);
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* ------------------------------------------------------------------
   15. Футер
   ------------------------------------------------------------------ */
.foot {
	position: relative;
	margin-top: 63px;
	padding-top: 30px;
}

/* кнопка «наверх»: закреплена в углу, появляется после прокрутки */
.foot__top {
	position: fixed;
	right: clamp(16px, 2.6vw, 40px);
	bottom: clamp(16px, 2.6vw, 40px);
	z-index: 50;
	--nav-fill: var(--pink);
	--nav-ring: var(--pink);
	--nav-arrow: #fff;
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	transition: opacity .25s, transform .25s, visibility .25s;
}

.foot__top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.foot__top.is-visible:hover {
	transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
	.foot__top {
		transition: opacity .25s, visibility .25s;
		transform: none;
	}
}

.foot__bar {
	display: flex;
	align-items: center;
	min-height: 153px;
	background: var(--dark);
	color: #fff;
}

.foot__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.foot__logo-wide {
	width: 395px;
	height: auto;
}

.foot__logo-stacked {
	display: none;
}

.foot__about {
	margin: 0;
	font-weight: 300;
	font-size: 14px;
	line-height: 24px;
}

.foot__contact {
	text-align: right;
}

.foot__contact-label {
	margin: 0;
	font-weight: 300;
	font-size: 14px;
	line-height: 24px;
}

.foot__mail {
	font-size: 14px;
	line-height: 24px;
	transition: color .2s;
}

.foot__mail:hover {
	color: var(--gold);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ------------------------------------------------------------------
   16. Адаптив
   ------------------------------------------------------------------ */
@media (max-width: 1279px) {
	:root {
		--gutter: 40px;
	}

	.hero__title {
		font-size: clamp(48px, 8.2vw, 96px);
	}

	.sec-title {
		font-size: clamp(32px, 3.9vw, 50px);
		line-height: 1.2;
	}

	.stages {
		padding-top: 64px;
		padding-bottom: 72px;
	}

	.noms {
		padding: 48px 0 64px;
	}

	.noms__list {
		flex-wrap: wrap;
		margin-top: 48px;
	}

	.nom {
		flex: 1 1 300px;
		min-height: 0;
		padding: 28px 28px 36px;
	}

	/* в макете 768 карточки идут в одну колонку */
	@media (max-width: 900px) {
		.noms__list {
			flex-direction: column;
		}

		.nom {
			flex: 1 1 auto;
		}
	}

	.sec-title--light {
		line-height: 1.25;
	}

	.crits {
		padding-top: 64px;
	}

	.docs {
		padding-top: 72px;
	}

	.jury {
		padding-top: 72px;
	}

	.apply {
		padding: 64px 0;
	}

	.apply__inner {
		flex-direction: column;
		gap: 32px;
	}

	.apply__intro {
		flex: 1 1 auto;
		max-width: none;
	}

	.aform {
		flex: 1 1 auto;
		width: 100%;
		min-height: 0;
	}

	.docs {
		padding-bottom: 88px;
	}

	.partners {
		padding-top: 88px;
	}

	.foot__logo-wide {
		width: 280px;
	}

	.foot__inner {
		flex-wrap: wrap;
		gap: 20px 32px;
	}

	.foot__bar {
		padding-block: 28px;
	}

	.container + .partners__rule {
		margin-top: 32px;
	}

	.jury__viewport {
		margin-top: 40px;
	}

	.ico-nav {
		width: 48px;
		height: 48px;
	}

	.jury__name {
		font-size: 24px;
		line-height: 30px;
	}

	.docs__inner {
		flex-direction: column;
		gap: 40px;
	}

	.docs__intro,
	.docs__list {
		flex: 1 1 auto;
		width: 100%;
	}

	.doc__name {
		font-size: clamp(20px, 2.6vw, 32px);
		line-height: 1.2;
	}

	.crits__list {
		flex-wrap: wrap;
		margin-top: 36px;
	}

	.crit {
		flex: 1 1 calc(50% - 12px);
		min-height: 0;
		padding: 28px 28px 36px;
	}

	@media (max-width: 900px) {
		.crits__list {
			flex-direction: column;
		}

		.crit {
			flex: 1 1 auto;
		}
	}

	.crit__num {
		height: auto;
		margin-bottom: 32px;
	}

	.stage__group {
		gap: clamp(20px, 6vw, 145px);
	}

	.stage__num {
		flex: 0 0 auto;
		min-width: 64px;
	}

	.stage__date {
		flex: 0 0 auto;
		min-width: 200px;
	}

	.stage__text {
		flex: 1 1 auto;
		font-size: clamp(20px, 2.6vw, 32px);
		line-height: 1.2;
	}

	/* плашка даты уходит под кнопки и становится широкой — как в макете 375 */
	.hero__body {
		display: flex;
		flex-direction: column;
	}

	.hero__partners,
	.hero__date {
		position: static;
	}

	.hero__partners { order: 1; justify-content: center; margin-bottom: 24px; }
	.hero__kicker   { order: 2; }
	.hero__title    { order: 3; }
	.hero__lead     { order: 4; }
	.hero__actions  { order: 5; }
	.hero__date     { order: 6; }

	.hero__date {
		width: 100%;
		margin-top: 32px;
		padding: 14px 24px 18px;
	}

	.hero__date-ico {
		display: none;
	}

	/* на широкой плашке перенос не нужен */
	.hero__date-br {
		display: none;
	}

	.hero__date-label {
		font-size: 14px;
		line-height: 24px;
	}

	.hero__date-d,
	.hero__date-y {
		display: inline;
		color: var(--gold);
		font-size: clamp(32px, 6vw, 42px);
		line-height: 1.15;
	}

	.hero__date-y::before {
		content: '.';
	}

	.hero__body {
		padding-top: 32px;
		padding-bottom: 56px;
	}
}

@media (max-width: 900px) {
	/* меню по макету: полноэкранная панель с узором, пункты с разделителями */
	.hdr__nav {
		position: fixed;
		top: 63px;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 30;
		flex-direction: column;
		gap: 37px;
		align-items: center;
		padding: 83px 0 40px;
		overflow-y: auto;
		/* в макете узор растянут по высоте панели и виден левым краем */
		background:
			linear-gradient(rgba(45, 0, 71, .63), rgba(45, 0, 71, .63)),
			url('images/pattern.webp') left top / auto 100% no-repeat,
			var(--dark);
		font-size: 24px;
		text-align: center;
	}

	.hdr__nav a:not(.btn) {
		width: 100%;
		padding: 0 0 37px;
		border-bottom: 1px solid rgba(255, 255, 255, .5);
		font-size: 24px;
	}

	.hdr__nav a:not(.btn)::after {
		display: none;
	}

	.hdr__nav a:not(.btn):hover {
		color: var(--gold);
	}

	.hdr__cta {
		display: none;
	}

	.hdr__burger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 4px;
		width: 39px;
		height: 39px;
		padding: 0 11px;
		border: 0;
		border-radius: 50%;
		background: var(--pink);
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}

	.hdr__burger:focus-visible {
		outline: 2px solid var(--gold);
		outline-offset: 3px;
	}

	.hdr__burger span {
		display: block;
		height: 2px;
		border-radius: 2px;
		background: #fff;
		transition: transform .25s, opacity .2s;
	}

	.hdr__burger[aria-expanded="true"] span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.hdr__burger[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}

	.hdr__burger[aria-expanded="true"] span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.hdr {
		position: relative;
	}

	.hero__rule {
		margin-top: 0;
		background: rgba(255, 255, 255, .5);
	}

	.hdr__logo img {
		width: 220px;
	}

	/* этапы: номер слева, дата и текст колонкой справа — как в макете 375 */
	.stage {
		align-items: flex-start;
		margin-inline: 0;
		padding: 28px 0;
	}

	.stage::before {
		right: 0;
		left: 0;
	}

	/* метрики из макета 375: номер 32/40 в колонке 49, зазор 12, текст 20/28 */
	.stage__group {
		display: grid;
		grid-template-columns: 49px 1fr;
		column-gap: 12px;
		row-gap: 8px;
		align-items: start;
		width: 100%;
	}

	.stage__num {
		grid-row: 1 / span 2;
		flex: none;
		min-width: 0;
		font-size: 32px;
		line-height: 40px;
	}

	.stage__date,
	.stage__text {
		grid-column: 2;
		min-width: 0;
	}

	.stage__date {
		font-size: 12px;
		line-height: 18px;
	}

	.stage__text {
		font-size: 20px;
		line-height: 28px;
	}

	.stage__marker {
		display: none;
	}

	.noms__list {
		flex-direction: column;
		gap: 16px;
	}

	.nom {
		flex: 1 1 auto;
	}

	.nom__num {
		margin-bottom: 28px;
	}

	.nom__title {
		font-size: 24px;
		line-height: 30px;
	}

	.nom__text {
		margin-top: 16px;
		font-size: 15px;
		line-height: 26px;
	}

	.crits__list {
		flex-direction: column;
		gap: 16px;
	}

	.docs {
		padding-top: 56px;
	}

	.jury {
		padding-top: 56px;
	}

	.partners {
		padding-top: 64px;
	}

	.apply {
		padding: 48px 0;
	}

	.aform {
		gap: 24px;
		padding: 28px 20px 26px;
		border-radius: 24px;
	}

	.aform__group {
		gap: 20px;
	}

	.field-row {
		flex-direction: column;
		gap: 20px;
	}

	.drop {
		gap: 12px;
		padding: 16px 16px 14px;
	}

	.drop__head {
		flex-wrap: wrap;
		gap: 10px;
	}

	.drop__empty {
		flex-wrap: wrap;
		gap: 12px;
		font-size: 14px;
	}

	.chip__badge {
		flex-basis: 38px;
		width: 38px;
		height: 38px;
	}

	.chip__name {
		font-size: 13px;
	}

	.check__text {
		font-size: 13px;
		line-height: 18px;
	}

	.modal__card {
		padding: 44px 24px 32px;
	}

	.modal__text {
		font-size: 19px;
		line-height: 27px;
	}

	.modal__close {
		top: 12px;
		right: 12px;
	}

	.docs {
		padding-bottom: 64px;
	}

	/* отступы по координатам макета 375: 68 сверху, 37 после лого, 87 до контактов, 76 снизу */
	.foot__bar {
		padding-block: 68px 76px;
	}

	.foot__inner {
		flex-direction: column;
		align-items: center;
		gap: 37px;
		text-align: center;
	}

	.foot__contact {
		display: flex;
		flex-direction: column;
		gap: 18px;
		max-width: 238px;
		margin-top: 50px;
		text-align: center;
	}

	.foot__logo-wide {
		display: none;
	}

	.foot__logo-stacked {
		display: block;
		width: 121px;
		height: auto;
	}

	.foot__about,
	.foot__contact-label,
	.foot__mail {
		font-size: 12px;
		line-height: 18px;
	}

	.container + .partners__rule {
		margin-top: 24px;
	}

	.marquee__item {
		flex: 0 0 240px;
		height: 76px;
	}

	.marquee__item img {
		max-width: 200px;
		max-height: 52px;
	}

	.jury__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.jury__item {
		flex: 0 0 280px;
	}

	.ico-nav {
		width: 44px;
		height: 44px;
	}

	.doc {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		margin-inline: 0;
		padding: 24px 0;
	}

	.doc::before {
		right: 0;
		left: 0;
	}

	.doc__info {
		min-height: 0;
		gap: 10px;
	}

	.doc__name {
		font-size: 20px;
	}

	.docs__note {
		margin-top: 20px;
		font-size: 16px;
		line-height: 26px;
	}

	.crit {
		flex: 1 1 auto;
	}

	.crit__title {
		font-size: 24px;
		line-height: 30px;
	}

	.crit__text {
		margin-top: 16px;
		font-size: 16px;
		line-height: 26px;
	}
}

@media (max-width: 600px) {
	:root {
		--gutter: 16px;
	}

	.hero__bg {
		object-position: 35% center;
	}

	.hdr__logo img {
		width: 190px;
	}

	.hero__kicker {
		max-width: 320px;
		font-size: 11px;
		letter-spacing: .22em;
	}

	.hero__title {
		margin-top: 28px;
		font-size: clamp(34px, 11.4vw, 46px);
		line-height: .82;
	}

	.hero__lead {
		margin-top: 22px;
		font-size: 14px;
		line-height: 1.6;
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
		margin-top: 28px;
	}

	.hero__actions .btn {
		width: 100%;
		padding: 15px 20px 17px;
	}

	.stages {
		padding-top: 48px;
	}

	.stages__list {
		margin-top: 40px;
	}

	.stage__text {
		font-size: 18px;
		line-height: 24px;
	}

	.hero__partners picture:first-child img {
		height: 46px;
	}

	.hero__partners picture:last-child img {
		height: 38px;
	}

	/* в макете 375 номер стоит в строку с заголовком */
	.crit {
		display: grid;
		grid-template-columns: auto 1fr;
		column-gap: 14px;
		row-gap: 18px;
		align-items: baseline;
		padding: 24px 20px 28px;
	}

	.crit__num {
		grid-column: 1;
		height: auto;
		margin: 0;
	}

	.crit__title,
	.crit__text {
		grid-column: 2;
		margin: 0;
	}

	/* в макете 375 у чипа нет бейджа формата, а «Прикрепить ещё» стоит под списком */
	.drop__head {
		display: contents;
	}

	.drop__title { order: 1; }
	.drop__empty { order: 2; }
	.drop__list  { order: 3; }
	.drop__head [data-pick] { order: 4; align-self: flex-start; }
	.drop__hint  { order: 5; }

	.chip__badge {
		display: none;
	}

	.chip {
		padding: 10px 12px;
	}

	.chip__main {
		gap: 0;
	}
}

