:root {
	--bg: #050505;
	--surface: #0b0b0b;
	--surface-2: #111;
	--line: #292929;
	--line-soft: #191919;
	--text: #e8e6e1;
	--muted: #888783;
	--serif: "Cormorant Garamond", Georgia, serif;
	--heading: "Oswald", "Arial Narrow", sans-serif;
	--sans: "Manrope", Arial, sans-serif;
	--container: 1180px;
	--header-height: 66px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--text);
	background: var(--bg);
	font-family: var(--sans);
	font-size: 17px;
	font-weight: 300;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

button,
input,
textarea {
	font: inherit;
}

.container {
	width: min(calc(100% - 48px), var(--container));
	margin-inline: auto;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	z-index: 9999;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 10px 15px;
	clip: auto;
	background: #fff;
	color: #000;
}

.site-header {
	height: var(--header-height);
	border-bottom: 1px solid var(--line-soft);
	background: rgba(5, 5, 5, .98);
}

.site-header__inner {
	height: 100%;
	display: grid;
	grid-template-columns: minmax(270px, 1fr) auto;
	align-items: center;
	gap: 28px;
}

.site-header__brand {
	justify-self: start;
	line-height: 1;
}

.site-header__identity {
	display: flex;
	flex-direction: column;
	gap: 4px;
	color: #f4f2ed;
	font-family: var(--sans);
	line-height: 1.15;
}

.site-header__identity > span {
	color: #8d8c88;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.site-header__identity strong {
	display: inline-flex;
	align-items: baseline;
	gap: .35em;
	font-family: var(--sans);
	font-size: 10px;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.site-header__identity strong .site-logo__prefix,
.site-header__identity strong .site-logo__name,
.site-header__identity strong .site-logo__quote {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
}

.site-footer__logo {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	color: #f4f2ed;
	font-family: var(--heading);
	font-weight: 600;
	line-height: .82;
	letter-spacing: -.035em;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-logo__prefix {
	font-size: 18px;
	letter-spacing: .01em;
}

.site-logo__name {
	font-size: 31px;
}

.site-logo__quote {
	font-family: var(--sans);
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.site-logo__quote:first-child {
	margin-right: -2px;
}

.site-logo__quote:last-child {
	margin-left: -2px;
}

.custom-logo {
	width: auto;
	max-height: 42px;
}

.site-nav__list,
.site-nav .sub-menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-nav__list > li {
	position: relative;
}

.site-nav a {
	display: inline-flex;
	padding: 8px 0;
	color: #a5a4a0;
	font-size: 14px;
	transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus,
.current-menu-item > a {
	color: #fff;
}

.site-nav .sub-menu {
	position: absolute;
	z-index: 110;
	top: calc(100% + 10px);
	right: 0;
	min-width: 245px;
	display: none;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	padding: 10px 16px;
	border: 1px solid var(--line);
	background: rgba(8, 8, 8, .98);
	box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

.site-nav .sub-menu::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 100%;
	left: 0;
	height: 11px;
}

.site-nav .sub-menu a {
	width: 100%;
	padding: 9px 0;
	border-bottom: 1px solid var(--line-soft);
	font-size: 13px;
	white-space: nowrap;
}

.site-nav .sub-menu li:last-child a {
	border-bottom: 0;
}

.site-nav__list > .menu-item-has-children:hover > .sub-menu,
.site-nav__list > .menu-item-has-children:focus-within > .sub-menu,
.site-nav__list > .menu-item-has-children.is-submenu-open > .sub-menu {
	display: flex;
}

.submenu-toggle {
	width: 20px;
	height: 28px;
	display: inline-grid;
	place-items: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: #777;
	cursor: pointer;
}

.submenu-toggle::before {
	content: "";
	width: 5px;
	height: 5px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform .2s ease;
}

.menu-item-has-children {
	display: flex;
	align-items: center;
}

.button {
	min-width: 140px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 25px;
	border: 1px solid #555;
	border-radius: 0;
	background: transparent;
	color: #f4f3f0;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .01em;
	transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.button:hover,
.button:focus {
	border-color: #fff;
	background: #fff;
	color: #080808;
}

.button--small {
	min-width: 125px;
	height: 36px;
}

.button--filled {
	border-color: #aaa;
	background: rgba(220, 220, 220, .68);
	color: #0b0b0b;
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 10px;
	border: 0;
	background: none;
	color: #fff;
	cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 22px;
	height: 1px;
	margin: 5px 0;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease;
}

.hero {
	position: relative;
	min-height: clamp(290px, 28vw, 410px);
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--line);
	background-color: #080808;
	background-image:
		radial-gradient(circle at 77% 46%, rgba(130, 130, 130, .28), transparent 10%),
		linear-gradient(90deg, #090909 0%, #090909 28%, rgba(10, 10, 10, .55) 52%, #060606 100%),
		repeating-linear-gradient(90deg, transparent 0 45px, rgba(255,255,255,.025) 46px 49px);
	background-position: center 68%;
	background-size: cover;
}

.hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(0,0,0,.88) 0%,
		rgba(0,0,0,.72) 30%,
		rgba(0,0,0,.34) 55%,
		rgba(0,0,0,.08) 78%
	);
}

.hero__inner {
	position: relative;
	z-index: 1;
}

.hero__content {
	width: min(600px, 55%);
}

.hero h1 {
	max-width: 570px;
	margin: 0 0 14px;
	font-family: var(--serif);
	font-size: clamp(47px, 5.1vw, 75px);
	font-weight: 400;
	line-height: .91;
	letter-spacing: -.025em;
}

.hero p {
	max-width: 430px;
	margin: 0 0 25px;
	color: #aaa9a5;
	font-size: 15px;
	line-height: 1.8;
}

.hero__actions {
	display: flex;
	gap: 13px;
}

.section-line {
	border-bottom: 1px solid var(--line);
}

.section-heading {
	height: 51px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.eyebrow {
	margin: 0;
	color: #d1d0cc;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.section-heading__note,
.text-link {
	margin: 0;
	color: #7c7b78;
	font-size: 13px;
	transition: color .2s ease;
}

.text-link:hover,
.text-link:focus {
	color: #fff;
}

.slider-controls {
	display: flex;
	gap: 6px;
}

.slider-button {
	width: 32px;
	height: 28px;
	border: 1px solid var(--line);
	background: transparent;
	color: #aaa;
	cursor: pointer;
}

.slider-button:hover,
.slider-button:focus {
	border-color: #777;
	color: #fff;
}

.showcase-slider {
	position: relative;
	overflow: hidden;
	padding-bottom: 25px;
	outline: none;
}

.showcase-slider__track {
	display: flex;
	gap: 12px;
	transition: transform .45s cubic-bezier(.22,.61,.36,1);
	will-change: transform;
}

.showcase-slide {
	position: relative;
	flex: 0 0 calc((100% - 24px) / 3);
	aspect-ratio: 16 / 8.7;
	margin: 0;
	overflow: hidden;
	border: 1px solid #282828;
	background: #0a0a0a;
}

.showcase-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1) brightness(.64) contrast(1.08);
	transition: filter .35s ease, transform .6s ease;
}

.showcase-slide:hover img {
	filter: grayscale(.75) brightness(.82);
	transform: scale(1.02);
}

.showcase-slide figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 20px 18px 12px;
	background: linear-gradient(transparent, rgba(0,0,0,.85));
	font-family: var(--serif);
	font-size: 20px;
}

.showcase-slide--placeholder {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 17px;
	background:
		linear-gradient(125deg, rgba(255,255,255,.06), transparent 40%),
		radial-gradient(circle at 70% 35%, #292929 0, #111 17%, #080808 48%);
}

.showcase-slide--placeholder::after {
	content: "";
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(255,255,255,.06);
}

.showcase-slide--placeholder span {
	position: absolute;
	top: 13px;
	left: 16px;
	color: #777;
	font-family: var(--serif);
	font-size: 25px;
}

.showcase-slide--placeholder p {
	position: relative;
	z-index: 1;
	margin: 0;
	font-family: var(--serif);
	font-size: 20px;
}

.slider-dots {
	display: none;
	justify-content: center;
	gap: 7px;
	margin-top: 15px;
}

.slider-dots span {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #454545;
}

.slider-dots span.is-active {
	background: #ddd;
}

.about {
	padding-bottom: 28px;
}

.about__intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	padding: 6px 0 25px;
}

.about__intro h2 {
	max-width: 475px;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(34px, 3.3vw, 48px);
	font-weight: 400;
	line-height: .92;
}

.about__intro > p {
	max-width: 500px;
	margin: 2px 0 0;
	color: #8b8a86;
	font-size: 14px;
	line-height: 1.8;
}

.about__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.about-card {
	min-height: 117px;
	display: grid;
	grid-template-columns: 64px 1fr auto;
	align-items: center;
	gap: 20px;
	padding: 20px 22px;
	border: 1px solid var(--line);
	background: linear-gradient(120deg, #0b0b0b, #080808);
	transition: border-color .25s ease, background .25s ease;
}

.about-card:hover,
.about-card:focus {
	border-color: #555;
	background: #101010;
}

.about-card__icon {
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	border: 1px solid #303030;
}

.about-card__icon svg {
	width: 31px;
	fill: none;
	stroke: #b2b1ad;
	stroke-width: 1.2;
}

.about-card__body {
	display: flex;
	flex-direction: column;
}

.about-card strong {
	margin-bottom: 6px;
	font-family: var(--serif);
	font-size: 27px;
	font-weight: 400;
	line-height: 1;
}

.about-card small {
	max-width: 310px;
	color: #777672;
	font-size: 13px;
	line-height: 1.55;
}

.about-card__arrow {
	align-self: start;
	color: #777;
}

.news {
	padding-bottom: 25px;
}

.news__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--line-soft);
}

.news-card {
	min-width: 0;
	display: grid;
	grid-template-columns: 42% 1fr;
	gap: 13px;
	padding: 14px 14px 14px 0;
	border-right: 1px solid var(--line);
}

.news-card + .news-card {
	padding-left: 14px;
}

.news-card:last-child {
	border-right: 0;
}

.news-card__image {
	min-height: 76px;
	background:
		radial-gradient(circle at 65% 45%, #313131, transparent 26%),
		linear-gradient(130deg, #0e0e0e, #1a1a1a);
}

.news-card__image img,
.news-card__image span {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	filter: grayscale(1) brightness(.62);
}

.news-card__content {
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.news-card time {
	color: #61615e;
	font-size: 11px;
	text-transform: uppercase;
}

.news-card h3 {
	margin: 4px 0 6px;
	font-family: var(--serif);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.1;
}

.news-card .text-link {
	margin-top: auto;
}

.site-footer {
	padding: 46px 0 0;
	border-top: 1px solid var(--line);
	background: #0a0c0d;
}

.site-footer__main {
	display: grid;
	grid-template-columns: 1.45fr 1fr .8fr;
	gap: 70px;
	padding-bottom: 34px;
}

.site-footer__brand > p {
	max-width: 360px;
	margin: 12px 0 0;
	color: #777672;
	font-size: 13px;
	line-height: 1.6;
}

.site-footer h2 {
	margin: 0 0 14px;
	color: #d5d3ce;
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.site-footer__contacts {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	color: #777672;
	font-size: 13px;
	line-height: 1.55;
}

.site-footer__contacts address {
	max-width: 320px;
	margin: 0;
	font-style: normal;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.contact-item__icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-top: 2px;
	opacity: .85;
}

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

.socials {
	display: flex;
	gap: 9px;
}

.socials a {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border: 1px solid #3b3b3b;
	border-radius: 50%;
	transition: border-color .2s ease, background .2s ease;
}

.socials a:hover,
.socials a:focus {
	border-color: #777;
	background: #181a1b;
}

.socials img {
	width: 19px;
	height: 19px;
	object-fit: contain;
	filter: none;
}

.site-footer__partners {
	display: grid;
	grid-template-columns: 130px 1fr;
	align-items: center;
	gap: 30px;
	padding: 25px 0;
	border-top: 1px solid var(--line-soft);
}

.site-footer__partners h2 {
	margin: 0;
}

.partner-placeholders {
	display: flex;
	align-items: center;
	gap: 14px;
}

.partner-placeholders .partner-logo {
	width: 130px;
	height: 44px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line-soft);
}

.partner-placeholders .partner-logo img {
	display: block;
	width: auto;
	height: auto;
	max-width: 96px;
	max-height: 32px;
	object-fit: contain;
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	padding: 15px 0;
	border-top: 1px solid var(--line-soft);
	color: #5f605f;
	font-size: 11px;
}

.site-footer__bottom > :last-child {
	justify-self: end;
}

.site-footer__policy {
	color: #777876;
}

.content-area {
	min-height: 70vh;
	padding: 70px 0;
}

.content-area__inner {
	max-width: 820px;
}

.entry-header h1,
.archive-title {
	margin: 0 0 30px;
	font-family: var(--serif);
	font-size: clamp(44px, 6vw, 76px);
	font-weight: 400;
	line-height: .95;
}

.entry-content {
	color: #aaa9a5;
	font-size: 16px;
	line-height: 1.75;
}

.entry-content p {
	margin: 0 0 22px;
}

.entry-content h2,
.entry-content h3 {
	margin: 44px 0 18px;
	color: var(--text);
	font-family: var(--serif);
	font-weight: 400;
}

.entry-content h2 {
	font-size: 28px;
}

.entry-content h3 {
	font-size: 22px;
}

.entry-content strong {
	color: var(--text);
	font-weight: 600;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 22px;
	padding-left: 22px;
}

.entry-content ul li,
.entry-content ol li {
	margin-bottom: 14px;
	padding-left: 4px;
}

.entry-content ul li::marker,
.entry-content ol li::marker {
	color: #55534d;
}

.archive-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.archive-list .news-card {
	min-height: 230px;
	display: grid;
	grid-template-columns: minmax(260px, 38%) 1fr;
	gap: 0;
	padding: 0;
	border: 1px solid var(--line);
	background: var(--surface);
}

.archive-list .news-card__image {
	min-height: 230px;
	border-right: 1px solid var(--line);
}

.archive-list .news-card__content {
	justify-content: center;
	padding: 30px 34px;
}

.archive-list .news-card h3 {
	margin: 8px 0 12px;
	font-size: 30px;
}

.archive-list .news-card p {
	max-width: 620px;
	margin: 0 0 20px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
}

.directory-page__header {
	max-width: 760px;
	margin-bottom: 46px;
}

.directory-page__header .eyebrow {
	margin-bottom: 12px;
}

.directory-page__intro {
	max-width: 650px;
	margin-top: -8px;
}

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

.directory-card {
	min-width: 0;
	border: 1px solid var(--line);
	background: var(--surface);
}

.directory-card__media {
	aspect-ratio: 16 / 10;
	display: grid;
	place-items: center;
	overflow: hidden;
	border-bottom: 1px solid var(--line);
	background:
		linear-gradient(135deg, rgba(255,255,255,.045), transparent 45%),
		#090909;
}

.directory-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
	transition: filter .3s ease, transform .3s ease;
}

.directory-card:hover .directory-card__media img {
	filter: grayscale(.2);
	transform: scale(1.025);
}

.directory-card__media > span {
	color: #343432;
	font-family: var(--serif);
	font-size: 54px;
}

.directory-card__body {
	padding: 22px;
}

.spectacle-page .content-area__inner {
	margin-bottom: 46px;
}

.spectacle-gallery {
	padding-top: 44px;
	border-top: 1px solid var(--line-soft);
}

.spectacle-gallery .eyebrow {
	margin-bottom: 22px;
}

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

.spectacle-gallery__item {
	min-width: 0;
}

.spectacle-gallery__link {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid var(--line);
	background: #090909;
}

.spectacle-gallery__link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
	transition: filter .3s ease, transform .3s ease;
}

.spectacle-gallery__link:hover img {
	filter: grayscale(.15);
	transform: scale(1.03);
}

.spectacle-gallery__item figcaption {
	margin-top: 10px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.6;
}

@media (max-width: 900px) {
	.spectacle-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.spectacle-gallery__grid {
		grid-template-columns: 1fr;
	}
}

.directory-card h2 {
	margin: 0 0 10px;
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 400;
	line-height: 1;
}

.directory-card p {
	min-height: 42px;
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.7;
}

@media (min-width: 768px) {
	.hero {
		background-position: right 68%;
		background-repeat: no-repeat;
		background-size: 70% auto;
	}
}

@media (max-width: 899px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
		gap: 15px;
	}

	.site-nav {
		position: fixed;
		z-index: 100;
		inset: var(--header-height) 0 0;
		display: none;
		padding: 45px 24px;
		background: rgba(5, 5, 5, .99);
	}

	.menu-open .site-nav {
		display: block;
	}

	.site-nav__list {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.site-nav__list > li {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
	}

	.site-nav a {
		padding: 12px 0;
		font-family: var(--serif);
		font-size: 32px;
	}

	.site-nav .sub-menu {
		position: static;
		grid-column: 1 / -1;
		width: 100%;
		min-width: 0;
		display: none;
		padding: 0 0 10px 18px;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.site-nav .sub-menu a {
		padding: 7px 0;
		border: 0;
		color: #858481;
		font-family: var(--sans);
		font-size: 16px;
		white-space: normal;
	}

	.site-nav .menu-item-has-children.is-submenu-open > .sub-menu {
		display: flex;
	}

	.submenu-toggle {
		width: 44px;
		height: 44px;
	}

	.menu-item-has-children.is-submenu-open > .submenu-toggle::before {
		transform: translateY(2px) rotate(225deg);
	}

	.menu-toggle {
		display: block;
		position: relative;
		z-index: 101;
	}

	.menu-open .menu-toggle span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.menu-open .menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	.menu-open .menu-toggle span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

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

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

	.news-card:nth-child(2) {
		border-right: 0;
	}

	.site-footer__main {
		gap: 30px;
	}
}

@media (max-width: 767px) {
	:root {
		--header-height: 60px;
	}

	.container {
		width: min(calc(100% - 32px), var(--container));
	}

	.site-footer__logo {
		gap: 5px;
	}

	.site-header__identity {
		gap: 3px;
	}

	.site-header__identity > span {
		max-width: 210px;
		font-size: 8px;
		line-height: 1.25;
	}

	.site-header__identity strong {
		gap: .35em;
		font-size: 8px;
	}

	.site-logo__prefix {
		font-size: 15px;
	}

	.site-logo__name {
		font-size: 26px;
	}

	.site-logo__quote {
		font-size: 17px;
	}

	.site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.hero {
		min-height: 545px;
		align-items: flex-end;
		background-position: 64% 68%;
	}

	.hero::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(0deg, #060606 5%, transparent 68%);
	}

	.hero__content {
		width: 100%;
		padding-bottom: 46px;
	}

	.hero h1 {
		max-width: 350px;
		font-size: 49px;
		line-height: .9;
	}

	.hero p {
		max-width: 340px;
		font-size: 14px;
	}

	.hero__actions {
		display: flex;
	}

	.hero .button {
		min-width: 140px;
		padding-inline: 12px;
	}

	.section-heading {
		height: 58px;
	}

	.showcase-slider {
		margin-right: -16px;
		padding-bottom: 20px;
	}

	.showcase-slide {
		flex-basis: 82%;
		aspect-ratio: 4 / 3;
	}

	.slider-controls {
		display: none;
	}

	.slider-dots {
		display: flex;
	}

	.about {
		padding-bottom: 20px;
	}

	.about__intro {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 2px 0 25px;
	}

	.about__intro h2 {
		font-size: 38px;
	}

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

	.about-card {
		min-height: 108px;
		grid-template-columns: 48px 1fr auto;
		gap: 14px;
		padding: 17px;
	}

	.about-card__icon {
		width: 48px;
		height: 48px;
	}

	.about-card strong {
		font-size: 24px;
	}

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

	.news-card,
	.news-card + .news-card {
		grid-template-columns: 40% 1fr;
		padding: 14px 0;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.archive-list .news-card,
	.archive-list .news-card + .news-card {
		min-height: 0;
		grid-template-columns: 1fr;
		padding: 0;
	}

	.archive-list .news-card__image {
		min-height: 0;
		aspect-ratio: 16 / 9;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.archive-list .news-card__content {
		padding: 22px;
	}

	.archive-list .news-card h3 {
		font-size: 26px;
	}

	.site-footer {
		padding-top: 35px;
	}

	.site-footer__main {
		grid-template-columns: 1fr;
		gap: 30px 20px;
	}

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

	.partner-placeholders {
		flex-wrap: wrap;
	}

	.site-footer__bottom {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.site-footer__bottom > :last-child {
		justify-self: start;
	}

	.archive-list {
		grid-template-columns: 1fr;
	}

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

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

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