@font-face {
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/cormorant-garamond-regular.ttf') format('truetype');
}

@font-face {
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/cormorant-garamond-bold.ttf') format('truetype');
}

@font-face {
	font-family: 'Playfair Display';
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url('../fonts/playfair-display-extrabold.ttf') format('truetype');
}

@font-face {
	font-family: 'Instrument Serif';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/instrument-serif-regular.ttf') format('truetype');
}

:root {
	--color-page: #fff;
	--color-text: #171717;
	--color-accent: #171717;
	--color-accent-hover: #444;
	--color-border: rgba(23, 23, 23, .16);
	--container-width: 1200px;
	--page-gutter: 16px;
	--transition-base: 220ms ease;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	background: var(--color-page);
	color: var(--color-text);
	font-family: 'Times New Roman', Times, serif;
	font-size: 16px;
	line-height: 1.5;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base);
}

button,
input,
textarea,
select {
	font: inherit;
}

.container {
	width: min(100%, var(--container-width));
	margin-inline: auto;
	padding-inline: var(--page-gutter);
}

.site {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

.site-main {
	flex: 1;
	background: #000;
}

.thank-you {
	display: grid;
	min-height: min(720px, calc(100svh - 180px));
	place-items: center;
	padding-block: clamp(80px, 14vw, 180px);
	background: #000;
	color: #fff;
	text-align: center;
}

.thank-you__inner {
	max-width: 760px;
}

.thank-you__eyebrow {
	margin: 0 0 20px;
	color: #f21d10;
	font-family: 'Playfair Display', serif;
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 800;
	text-transform: uppercase;
}

.thank-you__title {
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(48px, 7vw, 90px);
	font-weight: 400;
	line-height: .96;
	text-transform: uppercase;
}

.thank-you__text {
	max-width: 540px;
	margin: 30px auto 0;
	color: #d4d4d8;
	font-size: clamp(19px, 2vw, 25px);
}

.thank-you__text p {
	margin: 0;
}

.thank-you__button {
	display: inline-flex;
	margin-top: 38px;
	padding: 14px 25px;
	border: 1px solid #fff;
	color: #fff;
	font-family: 'Cormorant Garamond', serif;
	font-size: 19px;
	font-weight: 700;
	text-transform: uppercase;
}

.thank-you__button:hover,
.thank-you__button:focus-visible {
	border-color: #fff;
	background: #fff;
	color: #000;
}

.not-found {
	display: grid;
	min-height: min(720px, calc(100svh - 180px));
	place-items: center;
	padding-block: clamp(80px, 14vw, 180px);
	background: #000;
	color: #fff;
	text-align: center;
}

.not-found__inner {
	max-width: 760px;
}

.not-found__code {
	margin: 0;
	color: #f21d10;
	font-family: 'Playfair Display', serif;
	font-size: clamp(84px, 14vw, 180px);
	font-weight: 800;
	line-height: .8;
}

.not-found__title {
	margin: 30px 0 0;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(42px, 6vw, 76px);
	font-weight: 400;
	line-height: .96;
	text-transform: uppercase;
}

.not-found__text {
	max-width: 500px;
	margin: 24px auto 0;
	color: #d4d4d8;
	font-size: clamp(18px, 2vw, 23px);
}

.not-found__button {
	display: inline-flex;
	margin-top: 36px;
	padding: 14px 25px;
	border: 1px solid #fff;
	color: #fff;
	font-family: 'Cormorant Garamond', serif;
	font-size: 19px;
	font-weight: 700;
	text-transform: uppercase;
}

.not-found__button:hover,
.not-found__button:focus-visible {
	border-color: #fff;
	background: #fff;
	color: #000;
}

.site-header,
.site-footer {
	border-color: var(--color-border);
	border-style: solid;
}

.site-header {
	position: relative;
	z-index: 2;
	border-width: 0 0 1px;
	background: #fff;
	color: #000;
}

.site-footer {
	margin-top: auto;
	border-width: 1px 0 0;
}

.site-header__inner,
.site-footer__inner {
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-block: 18px;
}

.site-header__inner {
	position: relative;
	min-height: 82px;
	justify-content: center;
}

.site-header__nav {
	display: grid;
	width: 100%;
	grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr);
	align-items: center;
	column-gap: 48px;
}

.site-header__logo {
	position: absolute;
	z-index: 1;
	left: 50%;
	width: 150px;
	transform: translateX(-50%);
}

.site-header__logo .custom-logo-link,
.site-header__logo .custom-logo {
	width: 100%;
	max-height: 46px;
	object-fit: contain;
}

.lascala-front-page .site-header {
	position: absolute;
	z-index: 2;
	width: 100%;
	border: 0;
	background: linear-gradient(180deg, rgba(217, 217, 217, .22) 3.47%, rgba(115, 115, 115, 0) 106.52%);
	color: #fff;
}

.lascala-front-page .site-header__inner {
	position: relative;
	min-height: 102px;
	padding-block: 22px;
	justify-content: center;
}

.custom-logo-link,
.site-header__logo,
.site-footer__logo {
	display: block;
	flex: 0 1 auto;
}

.custom-logo-link img {
	width: auto;
	max-height: 56px;
}

.lascala-front-page .site-header__logo {
	position: absolute;
	z-index: 1;
	top: 30px;
	left: 50%;
	width: 200px;
	transform: translateX(-50%);
}

.lascala-front-page .site-header__logo .custom-logo-link,
.lascala-front-page .site-header__logo .custom-logo {
	width: 100%;
	height: 58px;
}

.lascala-front-page .site-header__logo .custom-logo-link {
	position: relative;
	overflow: hidden;
}

.lascala-front-page .site-header__logo .custom-logo {
	position: absolute;
	max-height: none;
	max-width: none;
	width: 136.1%;
	height: 395.74%;
	left: -18.05%;
	top: -130.85%;
}

.site-menu {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px 24px;
}

.site-menu a {
	display: inline-flex;
	padding-block: 4px;
}

.site-menu--header {
	display: flex;
	gap: 36px;
	align-items: center;
	font-family: 'Cormorant Garamond', serif;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.4;
	text-transform: uppercase;
}

.site-header__menu-column--left .site-menu--header {
	justify-content: flex-end;
}

.site-header__menu-column--right {
	grid-column: 3;
}

.site-header__menu-column--right .site-menu--header {
	justify-content: flex-start;
}

.site-menu--header a {
	position: relative;
	color: #000;
}

.site-menu--header a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: currentColor;
	content: '';
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 280ms cubic-bezier(.22, 1, .36, 1);
}

.site-menu--header a:hover::after,
.site-menu--header a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.lascala-front-page .site-header__nav {
	display: grid;
	width: 100%;
	grid-template-columns: minmax(0, 1fr) 200px minmax(0, 1fr);
	align-items: center;
	column-gap: 64px;
}

.lascala-front-page .site-menu--header {
	display: flex;
	gap: 54px;
	align-items: center;
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.4;
	text-transform: uppercase;
}

.lascala-front-page .site-header__menu-column--left .site-menu--header {
	justify-content: flex-end;
}

.lascala-front-page .site-header__menu-column--right {
	grid-column: 3;
}

.lascala-front-page .site-header__menu-column--right .site-menu--header {
	justify-content: flex-start;
}

.lascala-front-page .site-menu--header a {
	position: relative;
	color: #fff;
	transition: none;
}

.lascala-front-page .site-menu--header a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: currentColor;
	content: '';
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 280ms cubic-bezier(.22, 1, .36, 1);
}

.lascala-front-page .site-menu--header a:hover,
.lascala-front-page .site-menu--header a:focus-visible {
	color: #fff;
}

.lascala-front-page .site-menu--header a:hover::after,
.lascala-front-page .site-menu--header a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.site-header__menu-toggle {
	display: none;
}

#about,
#partners,
#cases,
#news,
#contacts {
	scroll-margin-top: 102px;
}

.hero {
	position: relative;
	display: grid;
	min-height: min(900px, 100svh);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}

.hero__media,
.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	animation: hero-image-reveal 1.2s ease both;
}

.hero__overlay {
	z-index: -1;
	background: rgba(0, 0, 0, .47);
}

.hero__inner {
	display: flex;
	width: min(100%, var(--container-width));
	align-items: flex-end;
	padding-top: 180px;
	padding-bottom: 137px;
}

.hero__content {
	width: min(100%, 711px);
}

.hero__eyebrow,
.hero__title {
	margin: 0;
}

.hero__eyebrow {
	font-family: 'Times New Roman', Times, serif;
	font-size: 27px;
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.4;
}

.hero__title {
	margin-top: 20px;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(44px, 4.865vw, 70px);
	font-weight: 400;
	letter-spacing: -.04em;
	line-height: 1.18;
	text-transform: uppercase;
}

.hero__button {
	display: inline-flex;
	min-height: 66px;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	padding: 10px 17px;
	border: 1px solid #fff;
	background: rgba(255, 255, 255, .19);
	color: #fff;
	font-family: 'Cormorant Garamond', serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -.06em;
	line-height: 1.4;
	text-align: center;
	text-transform: uppercase;
}

.hero__button:hover,
.hero__button:focus-visible {
	border-color: #fff;
	background: #fff;
	color: #171717;
}

.about {
	background: #000;
	color: #fff;
	padding-block: clamp(80px, 8.35vw, 120px);
}

.about__inner {
	padding-inline: 0;
}

.about__label,
.about__heading,
.about__heading p,
.about__text p,
.about__detail p {
	margin: 0;
}

.about__label {
	font-family: 'Playfair Display', 'Times New Roman', serif;
	font-size: 49px;
	font-weight: 800;
	letter-spacing: -.04em;
	line-height: 1.08;
	text-transform: uppercase;
	color: #ff0e00;
}

.about__content {
	margin-top: 43px;
	padding-left: 37px;
	border-left: 1px solid rgba(255, 255, 255, .14);
}

.about__intro,
.about__details {
	display: grid;
	grid-template-columns: minmax(0, 1.14fr) minmax(0, 1fr);
	gap: 37px;
	align-items: start;
}

.about__heading {
	font-family: 'Times New Roman', Times, serif;
	font-size: 35px;
	font-weight: 400;
	letter-spacing: -.025em;
	line-height: 1.4;
	text-transform: uppercase;
}

.about__heading strong {
	font-weight: 700;
}

.about__text,
.about__detail {
	font-family: 'Times New Roman', Times, serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: -.025em;
	line-height: 1.4;
}

.about__details {
	margin-top: 17px;
}

.about__detail strong {
	font-size: 26px;
	font-weight: 700;
}

.stats {
	--stats-film-color: #09090b;
	--stats-border-color: rgba(255, 255, 255, .38);
	--stats-hole-color: #b3b3b3;
	background: #201e1d;
	color: #fff;
}

.stats__film-strip {
	position: relative;
	height: 24px;
	border-top: 1px solid var(--stats-border-color);
	border-bottom: 1px solid var(--stats-border-color);
	background-color: var(--stats-film-color);
}

.stats__film-strip::before {
	position: absolute;
	inset: 0 16px;
	background-image: linear-gradient(to right, var(--stats-hole-color) 0 10px, transparent 10px 116px);
	background-position: 0 center;
	background-repeat: repeat-x;
	background-size: 116px 12px;
	content: '';
}

.stats__inner {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	width: min(100%, 1280px);
	min-height: 165px;
	margin-inline: auto;
}

.stats__item {
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	gap: 16px;
	padding: 9px 16px;
	text-align: center;
}

.stats__item + .stats__item {
	border-left: 1px solid #666668;
}

.stats__value,
.stats__label {
	margin: 0;
}

.stats__value {
	font-family: 'Instrument Serif', 'Times New Roman', serif;
	font-size: 64px;
	font-weight: 400;
	line-height: 1;
	white-space: nowrap;
}

.stats__label {
	font-family: 'Cormorant Garamond', serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.2;
	text-transform: uppercase;
}

.partners {
	position: relative;
	isolation: isolate;
	min-height: 900px;
	overflow: hidden;
	background: #050402;
	color: #fff;
}

.partners__background,
.partners__overlay {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.partners__background-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 54%;
}

.partners__overlay {
	z-index: -1;
	background: rgba(0, 0, 0, .8);
}

.partners__inner {
	width: min(100% - (var(--page-gutter) * 2), var(--container-width));
	margin-inline: auto;
	padding-block: 65px 70px;
}

.partners__title {
	margin: 0;
	color: #ff0e00;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.partners__logos {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-template-rows: repeat(6, 120px);
	width: 100%;
	align-items: center;
	column-gap: 20px;
	row-gap: 12px;
	margin: 62px 0 0;
	padding: 0;
	list-style: none;
}

.partners__logo {
	display: flex;
	min-width: 0;
	min-height: 0;
	align-items: center;
	justify-content: center;
}

.partners__logo:nth-child(1) { grid-column: 1 / span 2; grid-row: 1; }
.partners__logo:nth-child(2) { grid-column: 3 / span 2; grid-row: 1; }
.partners__logo:nth-child(3) { grid-column: 5 / span 2; grid-row: 1; }
.partners__logo:nth-child(4) { grid-column: 7 / span 2; grid-row: 1; }
.partners__logo:nth-child(5) { grid-column: 9 / span 2; grid-row: 1; }
.partners__logo:nth-child(6) { grid-column: 11 / span 2; grid-row: 1; }

.partners__logo:nth-child(7) { grid-column: 2 / span 2; grid-row: 2; }
.partners__logo:nth-child(8) { grid-column: 4 / span 2; grid-row: 2; }
.partners__logo:nth-child(9) { grid-column: 6 / span 2; grid-row: 2; }
.partners__logo:nth-child(10) { grid-column: 8 / span 2; grid-row: 2; }
.partners__logo:nth-child(11) { grid-column: 10 / span 2; grid-row: 2; }

.partners__logo:nth-child(12) { grid-column: 3 / span 2; grid-row: 3; }
.partners__logo:nth-child(13) { grid-column: 5 / span 2; grid-row: 3; }
.partners__logo:nth-child(14) { grid-column: 7 / span 2; grid-row: 3; }
.partners__logo:nth-child(15) { grid-column: 9 / span 2; grid-row: 3; }

.partners__logo:nth-child(16) { grid-column: 4 / span 2; grid-row: 4; }
.partners__logo:nth-child(17) { grid-column: 6 / span 2; grid-row: 4; }
.partners__logo:nth-child(18) { grid-column: 8 / span 2; grid-row: 4; }

.partners__logo:nth-child(19) { grid-column: 5 / span 2; grid-row: 5; }
.partners__logo:nth-child(20) { grid-column: 7 / span 2; grid-row: 5; }

.partners__logo:nth-child(21) { grid-column: 6 / span 2; grid-row: 6; }

.partners__logo-image {
	display: block;
	width: min(100%, 180px);
	height: 68px;
	max-width: none;
	max-height: none;
	object-fit: contain;
	filter: drop-shadow(0 4px 13px rgba(0, 0, 0, .18));
}

.partners__logo--320 .partners__logo-image {
	width: 150px;
	height: 86px;
	max-width: none;
	object-fit: contain;
}

.partners__logo--321 .partners__logo-image {
	width: 124px;
	height: 92px;
	max-width: none;
	object-fit: contain;
}

.partners__logo--324 .partners__logo-image {
	width: 220px;
	height: 94px;
	max-width: none;
	object-fit: contain;
}

.partners__logo-icon,
.partners__logo-icon svg {
	display: block;
	max-width: 100%;
	max-height: 54px;
}

.partners__logo-icon svg {
	width: auto;
	height: 54px;
}

.partners__logo--partner-disney .partners__logo-icon svg {
	width: 108px;
	height: 54px;
}

.partners__logo--partner-amazon .partners__logo-icon svg {
	width: 79px;
}

.partners__logo--partner-apple-tv .partners__logo-icon svg {
	width: 94px;
}

.partners__logo--partner-yandex .partners__logo-icon svg {
	width: 120px;
	height: 47px;
}

.partners__logo-text {
	font-family: Arial, sans-serif;
	font-size: 21px;
	font-weight: 700;
	letter-spacing: -.04em;
	line-height: .82;
	text-align: center;
	text-transform: uppercase;
}

.dubbing {
	background: #000;
	color: #fff;
}

.dubbing__inner {
	padding-bottom: 80px;
}

.dubbing__heading {
	max-width: 619px;
	margin: 0;
	font-family: 'Times New Roman', Times, serif;
	font-size: 35px;
	font-weight: 400;
	letter-spacing: -.01em;
	line-height: 1.6;
	text-transform: uppercase;
}

.dubbing__heading strong {
	font-weight: 700;
}

.dubbing__rows {
	display: grid;
	gap: 47px;
	margin-top: 41px;
}

.dubbing__row {
	display: grid;
	grid-template-columns: minmax(0, 576fr) minmax(0, 647fr);
	align-items: center;
	gap: 19px;
}

.dubbing__info {
	position: relative;
	min-height: 142px;
}

.dubbing__info-frame {
	position: absolute;
	inset: -4px -4px;
	color: #fff;
}

.dubbing__info-frame svg {
	display: block;
	width: 100%;
	height: 100%;
}

.dubbing__info-content {
	position: relative;
	display: flex;
	height: 142px;
	min-height: 0;
	flex-direction: column;
	justify-content: center;
	padding: 20px 25px 22px;
}

.dubbing__language,
.dubbing__studio p,
.dubbing__examples p,
.dubbing__film-title {
	margin: 0;
}

.dubbing__language {
	font-family: 'Cormorant Garamond', serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.dubbing__studio {
	margin-top: 13px;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	font-family: 'Times New Roman', Times, serif;
	font-size: 28px;
	line-height: 1.1;
}

.dubbing__studio strong {
	font-weight: 700;
}

.dubbing__examples {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
	color: #b7b7b7;
	font-family: 'Times New Roman', Times, serif;
	font-size: 13px;
	letter-spacing: 1px;
	line-height: 1.2;
}

.dubbing__arrow {
	display: grid;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	color: #fff;
	place-items: center;
}

.dubbing__arrow svg {
	width: 100%;
	height: 100%;
}

.dubbing__films {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 7px;
}

.dubbing__film {
	position: relative;
	display: grid;
	min-width: 0;
	aspect-ratio: 211 / 142;
	overflow: hidden;
	border: 1px solid #706f6f;
	place-items: center;
}

.dubbing__film-image,
.dubbing__film-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.dubbing__film-image {
	object-fit: cover;
	transition: transform 600ms ease;
}

.dubbing__film-overlay {
	background: rgba(0, 0, 0, .71);
	transition: background-color var(--transition-base);
}

.dubbing__film-title {
	position: relative;
	z-index: 1;
	max-width: 84%;
	font-family: 'Cormorant Garamond', serif;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
	text-transform: uppercase;
}

.dubbing__film:hover .dubbing__film-image {
	transform: scale(1.05);
}

.dubbing__film:hover .dubbing__film-overlay {
	background: rgba(0, 0, 0, .58);
}

.innovations {
	background: #000;
	color: #fff;
}

.innovations__inner {
	padding-inline: 0;
	padding-block: 104px 136px;
}

.innovations__label {
	margin: 0;
	color: #ff0e00;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 39px;
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1.4;
	text-transform: uppercase;
}

.innovations__content {
	display: grid;
	grid-template-columns: minmax(0, 441px) minmax(0, 595px);
	align-items: start;
	gap: min(9.1vw, 109px);
	min-height: 230px;
	margin-top: 36px;
	padding: 18px 0 0 24px;
	border-left: 1px solid rgba(217, 217, 217, .16);
}

.innovations__heading,
.innovations__description,
.innovations__heading p,
.innovations__description p {
	margin: 0;
}

.innovations__heading {
	font-family: 'Times New Roman', Times, serif;
	font-size: 35px;
	font-weight: 400;
	letter-spacing: -.01em;
	line-height: 1.15;
	text-transform: uppercase;
}

.innovations__heading strong {
	font-weight: 700;
}

.innovations__description {
	color: #e9e9e9;
	font-family: 'Times New Roman', Times, serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: -.02em;
	line-height: 1.6;
}

.events {
	background: #000;
	color: #f3f4f6;
}

.events__inner {
	padding-block: 128px 116px;
}

.events__track {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.events__card {
	min-width: 0;
}

.events__media {
	position: relative;
	display: grid;
	aspect-ratio: 400 / 390;
	overflow: hidden;
	border: 1px solid #706f6f;
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(109, 7, 2, .35)),
		linear-gradient(90deg, rgba(0, 0, 0, .36), rgba(0, 0, 0, .36));
	place-items: center;
}

.events__card--photo .events__media {
	border-color: rgba(253, 195, 82, .56);
	background: #0b0909;
}

.events__image-wrap,
.events__overlay {
	position: absolute;
}

.events__image-wrap {
	top: 50%;
	left: 50%;
	width: min(var(--event-image-width), 100%);
	transform: translate(-50%, -50%);
	transition: transform 600ms ease;
}

.events__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.events__card--photo .events__image-wrap,
.events__overlay {
	inset: 0;
	width: 100%;
	height: 100%;
	transform: none;
}

.events__card--photo .events__image {
	height: 100%;
	object-fit: cover;
}

.events__overlay {
	background: rgba(0, 0, 0, .26);
	transition: background-color var(--transition-base);
}

.events__card--photo .events__overlay {
	background: rgba(0, 0, 0, .52);
}

.events__card:hover .events__image-wrap {
	transform: translate(-50%, -50%) scale(1.04);
}

.events__card--photo:hover .events__image-wrap {
	transform: scale(1.04);
}

.events__card:hover .events__overlay {
	background: rgba(0, 0, 0, .14);
}

.events__card--photo:hover .events__overlay {
	background: rgba(0, 0, 0, .38);
}

.events__description {
	margin: 11px auto 0;
	width: min(100%, 386px);
	font-family: 'Times New Roman', Times, serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
}

.events__next {
	display: grid;
	width: 40px;
	height: 40px;
	margin: 22px 0 0 auto;
	padding: 8px;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	place-items: center;
}

.events__next svg {
	width: 24px;
	height: 24px;
	transition: transform var(--transition-base);
}

.events__next:hover svg,
.events__next:focus-visible svg {
	transform: translateX(5px);
}

.team {
	background: #000;
	color: #f3f4f6;
}

.team__inner {
	padding-inline: 0;
	padding-block: 104px;
}

.team__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.team__card {
	display: flex;
	min-width: 0;
	min-height: 338px;
	padding: 40px;
	border: 1px solid rgba(255, 255, 255, .07);
	border-radius: 12px;
	background: #0b0b0c;
	align-items: center;
	flex-direction: column;
	gap: 24px;
	justify-content: flex-start;
	text-align: center;
}

.team__photo {
	display: block;
	flex: 0 0 120px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
}

.team__name,
.team__role {
	margin: 0;
	font-family: 'Times New Roman', Times, serif;
	font-weight: 400;
}

.team__name {
	color: #f3f4f6;
	font-size: 22px;
	line-height: 1.2;
}

.team__role {
	max-width: 294px;
	color: #fff;
	font-size: 17px;
	line-height: 1.5;
}

.contacts {
	background: #000;
	color: #fff;
	padding-block: clamp(40px, 4.9vw, 70px);
}

.contacts__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 551.5px);
	gap: 64px;
	min-height: 829px;
	padding: 120px 58px;
	align-items: start;
	background: #121214;
}

.contacts__info {
	min-width: 0;
}

.contacts__title {
	margin: 0;
	color: rgba(255, 255, 255, .96);
	font-family: 'Times New Roman', Times, serif;
	font-size: 44px;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
}

.contacts__details {
	display: grid;
	gap: 24px;
	margin-top: 72px;
}

.contacts__detail {
	display: grid;
	gap: 4px;
}

.contacts__label,
.contacts__value {
	margin: 0;
}

.contacts__label {
	color: #aaa;
	font-family: 'Times New Roman', Times, serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: normal;
	text-transform: uppercase;
}

.contacts__value {
	width: fit-content;
	color: #fff;
	font-family: Geist, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
}

.contacts__value:hover,
.contacts__value:focus-visible {
	color: var(--accent);
}

.contacts__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 63px 0 0;
	padding: 0;
	list-style: none;
}

.contacts__social-link {
	display: grid;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 50%;
	background: #09090b;
	color: #fff;
	place-items: center;
	transition: background-color var(--transition-base), border-color var(--transition-base);
}

.contacts__social-link svg {
	width: 20px;
	height: 20px;
}

.contacts__social-link:hover,
.contacts__social-link:focus-visible {
	border-color: #fff;
	background: #29292c;
}

.contacts__form {
	min-width: 0;
	padding: 40px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 6px;
	background: #09090b;
}

.contacts__form .wpcf7,
.contacts__form .wpcf7-form {
	width: 100%;
}

.contacts__form .wpcf7-form {
	display: grid;
	gap: 24px;
}

.contacts__form .wpcf7-form > p {
	margin: 0;
}

.contacts__form .wpcf7-form > label,
.contacts__form .wpcf7-form > p > label {
	display: grid;
	gap: 8px;
	color: #fff;
	font-family: 'Times New Roman', Times, serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: normal;
	text-transform: uppercase;
}

.contacts__form .wpcf7-form > p > label br {
	display: none;
}

.contacts__form .wpcf7-form-control-wrap {
	display: block;
}

.contacts__form input:not([type='submit']):not([type='hidden']),
.contacts__form select,
.contacts__form textarea {
	display: block;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 4px;
	outline: none;
	background: transparent;
	box-shadow: none;
	color: #fff;
	font-family: Geist, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.45;
	transition: border-color var(--transition-base), background-color var(--transition-base);
}

.contacts__form input:not([type='submit']):not([type='hidden']),
.contacts__form select {
	height: 52px;
	min-height: 52px;
	padding: 16px 20px;
}

.contacts__form textarea {
	height: 100px;
	min-height: 100px;
	padding: 16px 20px;
	resize: vertical;
}

.contacts__form select {
	padding-right: 48px;
	appearance: none;
	background-image: url('../icons/chevron-down.svg');
	background-repeat: no-repeat;
	background-position: right 20px center;
}

.contacts__form input::placeholder,
.contacts__form textarea::placeholder {
	color: #52525b;
	opacity: 1;
}

.contacts__form input:not([type='submit']):not([type='hidden']):focus,
.contacts__form select:focus,
.contacts__form textarea:focus {
	border-color: rgba(255, 255, 255, .65);
	background: rgba(255, 255, 255, .025);
}

.contacts__form input[type='submit'] {
	display: block;
	width: 100%;
	height: 49px;
	min-height: 49px;
	padding: 16px 32px;
	border: 1px solid #fff;
	border-radius: 4px;
	background: #fff;
	color: #09090b;
	cursor: pointer;
	font-family: 'Times New Roman', Times, serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: normal;
	text-transform: uppercase;
	transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.contacts__form input[type='submit']:hover,
.contacts__form input[type='submit']:focus-visible {
	border-color: var(--accent);
	background: var(--accent);
	color: #fff;
}

.contacts__form .iti {
	--iti-border-color: rgba(255, 255, 255, .1);
	--iti-dropdown-bg: #171719;
	--iti-hover-color: rgba(255, 255, 255, .08);
	--iti-icon-color: rgba(255, 255, 255, .75);
	display: block;
	width: 100%;
}

.contacts__form .iti__selected-country {
	border-radius: 3px 0 0 3px;
	color: #fff;
	transition: background-color var(--transition-base);
}

.contacts__form .iti__selected-country:hover,
.contacts__form .iti__selected-country:focus-visible {
	background: rgba(255, 255, 255, .08);
}

.contacts__form .iti__country-list {
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 4px;
	box-shadow: 0 16px 32px rgba(0, 0, 0, .35);
	color: #fff;
	font-family: Geist, Arial, sans-serif;
	font-size: 14px;
}

.contacts__form .iti__search-input {
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 3px;
	background: #09090b;
	color: #fff;
}

.contacts__form .iti__search-input:focus {
	border-color: rgba(255, 255, 255, .65);
	outline: none;
}

.contacts__form .wpcf7-not-valid-tip {
	margin-top: 6px;
	color: #ff8a82;
	font-family: Geist, Arial, sans-serif;
	font-size: 13px;
	line-height: 1.3;
}

.contacts__form .wpcf7-spinner {
	position: absolute;
	top: 50%;
	left: calc(100% + 12px);
	margin: 0;
	transform: translateY(-50%);
}

.contacts__form .wpcf7-form > p:has(input[type='submit']) {
	position: relative;
}

.contacts__form .wpcf7-response-output {
	margin: 0;
	border: 0;
	color: #fff;
	font-family: Geist, Arial, sans-serif;
	font-size: 14px;
}

.site-footer {
	margin-top: auto;
	border: 0;
	background: #09090b;
	color: #fff;
}

.site-footer__inner {
	display: flex;
	min-height: 480px;
	padding: 80px 64px 48px;
	align-items: stretch;
	flex-direction: column;
	gap: 64px;
	justify-content: flex-start;
}

.site-footer__divider {
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, .1);
}

.site-footer__main {
	display: grid;
	grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) auto;
	gap: clamp(32px, 5vw, 64px);
	min-width: 0;
	align-items: start;
}

.site-footer__brand {
	min-width: 0;
}

.site-footer__brand-name {
	margin: 0;
	color: #fff;
	font-family: 'Instrument Serif', 'Times New Roman', serif;
	font-size: 32px;
	font-weight: 400;
	letter-spacing: -.5px;
	line-height: normal;
}

.site-footer__description {
	margin: 24px 0 0;
	color: #a1a1aa;
	font-family: 'Times New Roman', Times, serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}

.site-footer__navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(110px, 150px)) minmax(92px, 112px);
	gap: clamp(24px, 3vw, 48px);
	min-width: 0;
}

.site-footer__nav,
.site-footer__socials {
	min-width: 0;
}

.site-footer__socials .site-footer__nav-title {
	max-width: 105px;
	line-height: 1.25;
	white-space: normal;
}

.site-footer__nav-title {
	margin: 0;
	color: #fff;
	font-family: 'Times New Roman', Times, serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 2px;
	line-height: normal;
	white-space: nowrap;
}

.site-menu--footer {
	display: grid;
	justify-content: start;
	gap: 12px;
	margin-top: 22px;
}

.site-menu--footer a {
	padding: 0;
	color: #a1a1aa;
	font-family: 'Times New Roman', Times, serif;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
}

.site-menu--footer a:hover,
.site-menu--footer a:focus-visible {
	color: #fff;
}

.site-footer__social-list {
	display: grid;
	gap: 7px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.site-footer__social-list a {
	display: grid;
	width: 24px;
	height: 24px;
	color: #fff;
	place-items: center;
}

.site-footer__social-list svg {
	width: 24px;
	height: 24px;
}

.site-footer__social-list a:hover,
.site-footer__social-list a:focus-visible {
	color: var(--accent);
}

.site-footer__languages {
	display: block;
	min-width: 0;
	justify-self: end;
}

.site-menu--languages {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	color: #a1a1aa;
	font-family: Geist, Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: normal;
	white-space: nowrap;
}

.site-menu--languages li {
	display: flex;
	align-items: center;
}

.site-menu--languages li + li::before {
	margin-inline: 8px;
	color: #52525b;
	content: '/';
}

.site-menu--languages a {
	padding: 0;
	color: inherit;
	text-decoration: none;
}

.site-menu--languages .current-menu-item > a,
.site-menu--languages .current_page_item > a,
.site-menu--languages .current-language-menu-item > a,
.site-menu--languages a:hover,
.site-menu--languages a:focus-visible {
	color: #fff;
	font-weight: 600;
}

.site-footer__bottom {
	display: flex;
	gap: 24px;
	margin-top: auto;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	align-items: center;
	justify-content: space-between;
	color: #52525b;
	font-family: Geist, Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: normal;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__credit {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.news {
	background: #000;
	color: #fff;
}

.news__inner {
	padding-inline: 0;
	padding-block: 104px 96px;
}

.news__title {
	margin: 0;
	font-family: 'Times New Roman', Times, serif;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.15;
	text-transform: uppercase;
}

.news__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 50px;
}

.news__card,
.news__card-link {
	min-width: 0;
}

.news__card-link {
	display: block;
}

.news__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 387 / 372;
	border-radius: 6px;
	background: #151515;
}

.news__image,
.news__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.news__image {
	object-fit: cover;
	transition: transform 600ms ease;
}

.news__overlay {
	background: rgba(0, 0, 0, var(--news-overlay-opacity));
	transition: background-color var(--transition-base);
}

.news__card-link:hover .news__image,
.news__card-link:focus-visible .news__image {
	transform: scale(1.045);
}

.news__card-link:hover .news__overlay,
.news__card-link:focus-visible .news__overlay {
	background: rgba(0, 0, 0, calc(var(--news-overlay-opacity) * .65));
}

.news__card-title {
	margin: 20px 0 0;
	color: #f3f4f6;
	font-family: 'Times New Roman', Times, serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
}

.news__button {
	display: flex;
	width: fit-content;
	min-height: 57px;
	align-items: center;
	justify-content: center;
	margin: 29px auto 0;
	padding: 10px 28px;
	border: 1px solid #706f6f;
	background: rgba(217, 217, 217, .13);
	color: #fff;
	font-family: 'Times New Roman', Times, serif;
	font-size: 20px;
	line-height: 1.2;
	text-transform: uppercase;
}

.news__button:hover,
.news__button:focus-visible {
	background: #fff;
	color: #000;
}

.posts-list {
	padding-block: clamp(48px, 8vw, 120px);
}

.posts-list__item + .posts-list__item {
	margin-top: 24px;
}

.posts-list__title {
	margin: 0;
	font-size: clamp(24px, 3vw, 48px);
}

[data-animate] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 600ms ease, transform 600ms ease;
}

[data-animate].is-visible {
	opacity: 1;
	transform: none;
}

[data-accordion-panel] {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 340ms ease;
}

[data-accordion-panel] > * {
	min-height: 0;
	overflow: hidden;
}

[data-accordion].is-open [data-accordion-panel] {
	grid-template-rows: 1fr;
}

@keyframes hero-image-reveal {
	from { transform: scale(1.035); }
	to { transform: scale(1); }
}

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

	.lascala-front-page .site-header__inner {
		min-height: 76px;
		padding-block: 12px;
	}

	.lascala-front-page .site-header__logo {
		top: 15px;
		width: 170px;
	}

	.lascala-front-page .site-header__logo .custom-logo-link {
		height: 46px;
	}

	.lascala-front-page .site-header__logo .custom-logo {
		height: 395.74%;
	}

	.lascala-front-page .site-header__menu-toggle {
		position: relative;
		display: grid;
		width: 42px;
		height: 42px;
		margin-left: auto;
		padding: 10px;
		border: 1px solid rgba(255, 255, 255, .6);
		background: transparent;
		color: #fff;
		cursor: pointer;
		place-content: center;
	}

	.site-header__inner {
		min-height: 76px;
		padding-block: 12px;
	}

	.site-header__logo {
		width: 150px;
	}

	.site-header__menu-toggle {
		position: relative;
		display: grid;
		width: 42px;
		height: 42px;
		margin-left: auto;
		padding: 10px;
		border: 1px solid rgba(0, 0, 0, .5);
		background: transparent;
		color: #000;
		cursor: pointer;
		place-content: center;
	}

	.site-header__menu-toggle span:not(.screen-reader-text) {
		position: absolute;
		inset: 0;
		margin: auto;
		display: block;
		width: 20px;
		height: 1px;
		background: currentColor;
		transform: translateY(-4px);
		transition: transform var(--transition-base), opacity var(--transition-base);
	}

	.site-header__menu-toggle span:not(.screen-reader-text):last-of-type {
		transform: translateY(4px);
	}

	.site-header__nav {
		position: absolute;
		display: block;
		top: 100%;
		left: 0;
		width: 100%;
		padding: 20px var(--page-gutter) 26px;
		background: #fff;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
	}

	.site-header.is-menu-open .site-header__nav {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.site-header.is-menu-open .site-header__menu-toggle span:nth-of-type(2) {
		transform: rotate(45deg);
	}

	.site-header.is-menu-open .site-header__menu-toggle span:nth-of-type(3) {
		transform: rotate(-45deg);
	}

	.site-header.is-menu-open .site-header__nav {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		align-items: start;
	}

	.site-menu--header {
		display: grid;
		justify-content: center;
		gap: 0;
		font-size: 22px;
		text-align: center;
	}

	.site-header__menu-column + .site-header__menu-column {
		margin-top: 0;
	}

	.site-header__menu-column--left .site-menu--header,
	.site-header__menu-column--right .site-menu--header {
		justify-content: center;
		text-align: center;
	}

	.site-header__menu-column--right {
		grid-column: auto;
	}

	.site-menu--header li {
		margin: 0;
	}

	.site-menu--header a {
		display: block;
		padding-block: 8px;
	}

	.lascala-front-page .site-header__menu-toggle span:not(.screen-reader-text) {
		position: absolute;
		inset: 0;
		margin: auto;
		display: block;
		width: 20px;
		height: 1px;
		background: currentColor;
		transform: translateY(-4px);
		transition: transform var(--transition-base), opacity var(--transition-base);
	}

	.lascala-front-page .site-header__menu-toggle span:not(.screen-reader-text):last-of-type {
		transform: translateY(4px);
	}

	.lascala-front-page .site-header__nav {
		position: absolute;
		display: block;
		top: 100%;
		left: 0;
		width: 100%;
		padding: 20px var(--page-gutter) 26px;
		background: rgba(13, 13, 13, .95);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
	}

	.lascala-front-page .site-header.is-menu-open .site-header__nav {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.lascala-front-page .site-header.is-menu-open .site-header__menu-toggle span:nth-of-type(2) {
		transform: rotate(45deg);
	}

	.lascala-front-page .site-header.is-menu-open .site-header__menu-toggle span:nth-of-type(3) {
		transform: rotate(-45deg);
	}

	.lascala-front-page .site-header.is-menu-open .site-header__nav {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		align-items: start;
	}

	.lascala-front-page .site-menu--header {
		display: grid;
		justify-content: center;
		gap: 0;
		font-size: 22px;
		text-align: center;
	}

	.lascala-front-page .site-header__menu-column + .site-header__menu-column {
		margin-top: 0;
	}

	.lascala-front-page .site-header__menu-column--left .site-menu--header {
		justify-content: center;
	}

	.lascala-front-page .site-header__menu-column--right {
		grid-column: auto;
	}

	.lascala-front-page .site-header__menu-column--right .site-menu--header {
		justify-content: center;
		text-align: center;
	}

	.lascala-front-page .site-menu--header li {
		margin: 0;
	}

	.lascala-front-page .site-menu--header a {
		display: block;
		padding-block: 8px;
	}

	.hero {
		min-height: clamp(560px, 92svh, 680px);
	}

	.hero__inner {
		padding-top: 110px;
		padding-bottom: 72px;
	}

	.hero__eyebrow {
		font-size: 16px;
	}

	.hero__title {
		margin-top: 12px;
		font-size: clamp(32px, 9.5vw, 40px);
		line-height: .98;
	}

	.hero__button {
		min-height: 48px;
		margin-top: 18px;
		padding: 8px 14px;
		font-size: 15px;
	}

	.about {
		padding-block: 48px;
	}

	.about__inner {
		padding-inline: var(--page-gutter);
	}

	.about__label {
		font-size: clamp(34px, 9vw, 38px);
	}

	.about__content {
		margin-top: 32px;
		padding-left: 24px;
	}

	.about__intro,
	.about__details {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}

	.stats__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
	}

	.stats__item {
		min-height: 150px;
	}

	.stats__item + .stats__item {
		border-left: 0;
	}

	.stats__item:nth-child(even) {
		border-left: 1px solid #666668;
	}

	.stats__item:nth-child(n + 3) {
		border-top: 1px solid #666668;
	}

	.stats__item:last-child {
		grid-column: 1 / -1;
	}

	.stats__value {
		font-size: 48px;
	}

	.stats__label {
		font-size: 16px;
	}

	.partners {
		min-height: 0;
	}

	.partners__background-image {
		object-position: 62% center;
	}

	.partners__inner {
		width: min(100% - (var(--page-gutter) * 2), 600px);
		padding-block: 48px;
	}

	.partners__title {
		font-size: clamp(28px, 7.5vw, 34px);
	}

	.partners__logos {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-template-rows: none;
		grid-auto-rows: 64px;
		width: 100%;
		gap: 12px 18px;
		margin-top: 42px;
	}

	.partners__logo {
		grid-column: auto !important;
		grid-row: auto !important;
		justify-content: center;
	}

	.partners__logo-image {
		width: min(100%, 144px);
		height: 58px;
	}

	.partners__logo--320 .partners__logo-image,
	.partners__logo--321 .partners__logo-image {
		width: min(100%, 128px);
		height: 58px;
		object-fit: contain;
	}

	.partners__logo--324 .partners__logo-image {
		width: min(100%, 164px);
		height: 64px;
		object-fit: contain;
	}

	.partners__logo-text {
		font-size: 15px;
	}

	.dubbing__inner {
		padding-block: 48px;
	}

	.dubbing__heading {
		max-width: 620px;
		font-size: clamp(25px, 6vw, 30px);
		line-height: 1.3;
	}

	.dubbing__rows {
		gap: 38px;
		margin-top: 34px;
	}

	.dubbing__row {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}

	.dubbing__info,
	.dubbing__info-content {
		min-height: 138px;
	}

	.dubbing__info-content {
		padding: 24px;
	}

	.dubbing__language {
		font-size: 17px;
	}

	.dubbing__studio {
		font-size: clamp(22px, 5.5vw, 25px);
	}

	.dubbing__film-title {
		font-size: 12px;
	}

	.innovations__inner {
		padding-inline: var(--page-gutter);
		padding-block: 48px;
	}

	.innovations__label {
		font-size: clamp(30px, 8vw, 34px);
	}

	.innovations__content {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
		min-height: 0;
		margin-top: 26px;
		padding: 0 0 0 20px;
	}

	.innovations__heading {
		font-size: clamp(26px, 6.5vw, 30px);
	}

	.innovations__description {
		font-size: clamp(18px, 5vw, 20px);
		line-height: 1.45;
	}

	.events__inner {
		padding-block: 48px;
	}

	.events__track {
		display: grid;
		grid-auto-columns: min(82vw, 340px);
		grid-auto-flow: column;
		grid-template-columns: none;
		overflow-x: auto;
		padding-bottom: 8px;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

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

	.events__card {
		scroll-snap-align: start;
	}

	.events__description {
		font-size: 16px;
	}

	.events__next {
		margin-top: 16px;
		margin-right: -8px;
	}

	.team__inner {
		padding-inline: var(--page-gutter);
		padding-block: 48px;
	}

	.team__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
	}

	.team__card {
		min-height: 0;
		padding: 32px 24px;
	}

	.team__photo {
		flex-basis: 108px;
		width: 108px;
		height: 108px;
	}

	.team__name {
		font-size: 20px;
	}

	.team__role {
		font-size: 15px;
	}

	.contacts__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 36px;
		min-height: 0;
		padding: 48px var(--page-gutter);
	}

	.contacts__title {
		font-size: clamp(30px, 8vw, 34px);
	}

	.contacts__details {
		margin-top: 44px;
	}

	.contacts__socials {
		margin-top: 42px;
	}

	.contacts__form {
		padding: 24px;
	}

	.contacts__form input:not([type='submit']):not([type='hidden']),
	.contacts__form select {
		min-height: 58px;
		padding-inline: 16px;
	}

	.contacts__form textarea {
		min-height: 120px;
		padding-inline: 16px;
	}

	.contacts__form input[type='submit'] {
		min-height: 58px;
		font-size: 14px;
	}

	.news__inner {
		padding-inline: var(--page-gutter);
		padding-block: 48px;
	}

	.news__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 34px;
		margin-top: 34px;
	}

	.news__card-title {
		font-size: 17px;
	}

	.news__button {
		margin-top: 34px;
		font-size: 17px;
	}

	.about__heading {
		font-size: clamp(26px, 7vw, 30px);
	}

	.about__text,
	.about__detail {
		font-size: 18px;
	}

	.about__detail strong {
		font-size: 21px;
	}

	.about__details {
		margin-top: 28px;
	}


	.site-footer__inner {
		min-height: 0;
		padding: 56px var(--page-gutter) 32px;
		gap: 42px;
	}

	.site-footer__main {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.site-footer__navigation {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px 24px;
	}

	.site-footer__socials {
		grid-column: 1 / -1;
	}

	.site-footer__social-list {
		display: flex;
		gap: 14px;
		margin-top: 16px;
	}

	.site-footer__languages {
		justify-self: start;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.site-header__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-menu {
		justify-content: flex-start;
		gap: 8px 18px;
	}
}

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

	.hero__inner {
		padding-top: 96px;
		padding-bottom: 64px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
