@font-face {
	font-family: "Hiragino Kaku Gothic Std";
	src: url("../fonts/hiragino-kaku-gothic-std-w8.otf") format("opentype");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

:root {
	--pq-black: #171717;
	--pq-white: #ffffff;
	--pq-red: #ff210f;
	--pq-art-min-width: 1000px;
	--pq-art-max-width: 1920px;
	--pq-art-min-height: 720px;
	--pq-art-max-height: 1400px;
	--pq-nav-top: clamp(16px, 2.4vh, 30px);
	--pq-nav-side: clamp(24px, calc((100vw - min(max(100vw, var(--pq-art-min-width)), var(--pq-art-max-width))) / 2 + 24px), 999px);
	--pq-nav-size: 40px;
	--pq-logo-top: clamp(16px, 2.4vh, 30px);
	--pq-action-size: clamp(68px, 6.6vw, 126px);
	--pq-font-display: "Hiragino Kaku Gothic Std", "Hiragino Kaku Gothic StdN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic UI", "Arial Black", Arial, Helvetica, sans-serif;
}

html {
	background: var(--pq-black);
	scroll-behavior: smooth;
	overscroll-behavior-y: none;
}

body.pq-page {
	margin: 0;
	background: var(--pq-black);
	color: var(--pq-white);
	font-family: var(--pq-font-display);
	overflow-x: hidden;
}

body.pq-page.admin-bar .pq-header {
	top: 32px;
}

body.pq-page.admin-bar .pq-logo {
	top: calc(var(--pq-logo-top) + 32px);
}

.pq-logo {
	position: fixed;
	top: var(--pq-logo-top);
	left: 50%;
	z-index: 25;
	display: block;
	width: clamp(44px, 4vw, 68px);
	line-height: 0;
	transform: translateX(-50%);
	filter: drop-shadow(0 0 0 rgba(255, 33, 15, 0));
	transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.pq-logo:hover,
.pq-logo:focus-visible {
	filter: drop-shadow(0 0 11px rgba(255, 33, 15, 0.78));
	opacity: 0.94;
	transform: translateX(-50%) scale(1.08);
}

.pq-logo:active {
	filter: drop-shadow(0 0 18px rgba(255, 33, 15, 0.95));
	transform: translateX(-50%) scale(0.92);
}

.pq-logo__image {
	display: block;
	width: 100%;
	height: auto;
}

.pq-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	pointer-events: none;
}

.pq-nav {
	position: absolute;
	top: var(--pq-nav-top);
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: auto;
}

.pq-nav--left {
	left: var(--pq-nav-side);
	align-items: flex-start;
}

.pq-nav--right {
	right: var(--pq-nav-side);
	align-items: flex-end;
}

.pq-nav__link {
	display: block;
	color: var(--pq-white);
	font-family: var(--pq-font-display);
	font-size: var(--pq-nav-size);
	font-weight: 800;
	line-height: 0.74;
	letter-spacing: 0;
	text-decoration: none;
	text-transform: lowercase;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
	transition: color 160ms ease, filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.pq-nav__link:hover,
.pq-nav__link:focus-visible {
	color: var(--pq-red);
	filter: drop-shadow(0 0 13px rgba(255, 33, 15, 0.88));
	opacity: 1;
	transform: translateX(7px);
}

.pq-nav--right .pq-nav__link:hover,
.pq-nav--right .pq-nav__link:focus-visible {
	transform: translateX(-7px);
}

.pq-nav__link:active {
	color: var(--pq-red);
	filter: drop-shadow(0 0 20px rgba(255, 33, 15, 1));
	transform: translateX(7px) scale(0.92);
}

.pq-nav--right .pq-nav__link:active {
	transform: translateX(-7px) scale(0.92);
}

.pq-main {
	background: var(--pq-black);
}

.pq-section {
	height: 100dvh;
	min-height: 100dvh;
	background: var(--pq-black);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.pq-artboard {
	width: min(max(100vw, var(--pq-art-min-width)), var(--pq-art-max-width));
	height: min(max(100dvh, var(--pq-art-min-height)), var(--pq-art-max-height));
	background-image: var(--pq-desktop-bg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	flex: 0 0 auto;
	position: relative;
	overflow: hidden;
}

.pq-block-action {
	position: absolute;
	z-index: 5;
	color: var(--pq-white);
	font-family: var(--pq-font-display);
	font-size: var(--pq-action-size);
	font-weight: 800;
	line-height: 0.74;
	letter-spacing: 0;
	text-decoration: none;
	text-transform: lowercase;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.24);
	transition: color 160ms ease, filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.pq-block-action--season {
	left: 34px;
	top: 559px;
}

.pq-block-action:hover,
.pq-block-action:focus-visible {
	color: var(--pq-red);
	filter: drop-shadow(0 0 14px rgba(255, 33, 15, 0.9));
	opacity: 1;
	transform: translateX(9px);
}

.pq-block-action:active {
	color: var(--pq-red);
	filter: drop-shadow(0 0 22px rgba(255, 33, 15, 1));
	transform: translateX(9px) scale(0.94);
}

.pq-view-section {
	height: 100dvh;
	min-height: 100dvh;
	background:
		radial-gradient(circle at 50% 12%, rgba(210, 214, 214, 0.62) 0%, rgba(159, 164, 164, 0.92) 34%, rgba(92, 96, 96, 0.98) 72%, #242424 100%),
		#9fa4a4;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.pq-view-section__link {
	display: block;
	width: min(max(100vw, var(--pq-art-min-width)), var(--pq-art-max-width));
	line-height: 0;
	filter: drop-shadow(0 0 0 rgba(255, 33, 15, 0));
	transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.pq-view-section__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pq-view-section__link:hover,
.pq-view-section__link:focus-visible {
	filter: drop-shadow(0 0 18px rgba(255, 33, 15, 0.86));
	opacity: 1;
	transform: translateX(12px);
}

.pq-view-section__link:active {
	filter: drop-shadow(0 0 28px rgba(255, 33, 15, 1));
	transform: translateX(12px) scale(0.985);
}

.pq-footer {
	background:
		linear-gradient(90deg, rgba(255, 33, 15, 0.24), rgba(255, 33, 15, 0) 38%),
		#111111;
	color: var(--pq-white);
	padding: clamp(18px, 2.4vw, 38px) clamp(20px, 4.5vw, 72px);
	text-transform: uppercase;
	overflow: hidden;
	display: grid;
	gap: 10px;
}

.pq-footer__tagline {
	width: 100%;
	max-width: none;
	margin: 0;
	color: var(--pq-red);
	font-size: clamp(12px, 3.55vw, 72px);
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: 0;
	word-spacing: 0.02em;
	filter: drop-shadow(0 0 18px rgba(255, 33, 15, 0.36));
	white-space: nowrap;
	text-align: center;
}

.pq-footer__links {
	max-width: 1500px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.pq-footer__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.34em;
	color: #111111;
	background: var(--pq-red);
	border: 3px solid var(--pq-red);
	padding: 0.34em 0.58em 0.28em;
	font-size: clamp(18px, 1.65vw, 32px);
	font-weight: 800;
	line-height: 0.92;
	letter-spacing: 0.02em;
	text-decoration: none;
	align-self: center;
	width: max-content;
	min-height: 0;
	box-shadow: 0 0 22px rgba(255, 33, 15, 0.28);
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, filter 160ms ease, transform 160ms ease;
}

.pq-footer__link:hover,
.pq-footer__link:focus-visible {
	color: var(--pq-red);
	background: #111111;
	border-color: var(--pq-red);
	filter: drop-shadow(0 0 14px rgba(255, 33, 15, 0.82));
	transform: translateY(-3px);
}

.pq-footer__link:active {
	transform: translateY(1px) scale(0.97);
}

.pq-soon {
	min-height: 100vh;
	display: grid;
	place-items: center;
	background: var(--pq-black);
	position: relative;
	overflow: hidden;
}

.pq-soon__title {
	margin: 0;
	color: var(--pq-white);
	font-size: clamp(72px, 16vw, 230px);
	font-weight: 900;
	line-height: 0.82;
	letter-spacing: 0;
	text-transform: uppercase;
}

.pq-about {
	min-height: 100vh;
	background:
		radial-gradient(circle at 74% 12%, rgba(255, 33, 15, 0.34) 0%, rgba(255, 33, 15, 0.08) 24%, rgba(23, 23, 23, 0) 46%),
		linear-gradient(135deg, #171717 0%, #242424 48%, #9fa4a4 100%);
	color: var(--pq-white);
	overflow: hidden;
	padding: clamp(96px, 12vh, 154px) clamp(20px, 4.5vw, 72px) clamp(44px, 8vh, 92px);
}

.pq-about__hero {
	max-width: 1500px;
	margin: 0 auto clamp(38px, 7vw, 96px);
}

.pq-about__eyebrow {
	margin: 0 0 12px;
	color: var(--pq-red);
	font-size: clamp(14px, 1.2vw, 22px);
	font-weight: 800;
	line-height: 0.96;
	text-transform: uppercase;
}

.pq-about__title {
	margin: 0 0 clamp(22px, 4vw, 54px);
	color: #000000;
	font-size: clamp(96px, 20vw, 360px);
	font-weight: 800;
	line-height: 0.68;
	letter-spacing: 0;
	text-transform: uppercase;
	white-space: nowrap;
	filter: drop-shadow(0 0 20px rgba(255, 33, 15, 0.34));
}

.pq-about__lead {
	max-width: 1120px;
	margin: 0;
	font-size: clamp(28px, 4.2vw, 72px);
	font-weight: 800;
	line-height: 0.92;
	text-transform: uppercase;
}

.pq-about__grid {
	max-width: 1500px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: clamp(14px, 1.6vw, 24px);
}

.pq-about__item {
	grid-column: span 4;
	min-height: 180px;
	border-top: 4px solid var(--pq-red);
	background: rgba(0, 0, 0, 0.22);
	padding: clamp(14px, 1.6vw, 24px);
}

.pq-about__item--wide {
	grid-column: span 8;
}

.pq-about__number {
	display: block;
	margin: 0 0 16px;
	color: var(--pq-red);
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
}

.pq-about__item p,
.pq-about__people p {
	margin: 0;
	font-size: clamp(18px, 2vw, 34px);
	font-weight: 800;
	line-height: 0.98;
	text-transform: uppercase;
}

.pq-about__people {
	max-width: 1500px;
	margin: clamp(28px, 5vw, 74px) auto 0;
	display: grid;
	gap: 14px;
}

.pq-about__people p {
	color: #000000;
	font-size: clamp(26px, 4vw, 70px);
	filter: drop-shadow(0 0 12px rgba(255, 33, 15, 0.26));
}

@media (max-width: 1200px) {
	.pq-footer {
		padding-inline: clamp(24px, 3vw, 44px);
	}

	.pq-footer__link {
		font-size: clamp(18px, 1.9vw, 26px);
	}
}

@media (max-width: 1000px) and (min-width: 801px) {
	.pq-artboard,
	.pq-view-section__link {
		width: 100vw;
	}
}

@media (max-width: 782px) {
	body.pq-page.admin-bar .pq-header {
		top: 46px;
	}

	body.pq-page.admin-bar .pq-logo {
		top: calc(var(--pq-logo-top) + 46px);
	}
}

@media (max-width: 800px) {
	:root {
		--pq-nav-top: 26px;
		--pq-nav-side: 24px;
		--pq-nav-size: 22px;
		--pq-action-size: 52px;
	}

	.pq-section {
		height: 100svh;
		min-height: 100svh;
	}

	.pq-artboard {
		width: 100vw;
		height: 100svh;
		background-image: var(--pq-mobile-bg);
	}

	.pq-view-section {
		display: none;
	}

	.pq-block-action {
		display: none;
	}

	.pq-about {
		padding: 96px 18px 46px;
	}

	.pq-about__title {
		font-size: clamp(72px, 21vw, 96px);
	}

	.pq-about__grid {
		display: block;
	}

	.pq-about__item,
	.pq-about__item--wide {
		min-height: 0;
		margin-bottom: 14px;
	}

	.pq-about__item p,
	.pq-about__people p {
		font-size: 22px;
	}

	.pq-footer {
		padding: 30px 24px 34px;
	}

}

@media (max-width: 560px) {
	.pq-footer {
		padding: 28px 20px 32px;
	}

	.pq-footer__links {
		justify-content: flex-end;
	}

	.pq-footer__link {
		border-width: 2px;
		font-size: clamp(17px, 5vw, 24px);
	}
}

@media (max-width: 400px) {
	.pq-footer {
		padding-inline: 16px;
	}

}

@media (max-width: 500px) {
	.pq-footer__links {
		justify-content: flex-end;
	}
}
