:root {
	--light: #f5f3ee;
	--dark: #151515;
	--side-space: clamp(26px, 7.8vw, 150px);
}

.back-to-top { position: fixed; right: max(26px, env(safe-area-inset-right)); bottom: max(26px, env(safe-area-inset-bottom)); z-index: 1000; display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 1px solid #b8aa95; border-radius: 50%; background: #e8e1d6; color: #2c251f; box-shadow: 0 5px 20px #0002; font-size: 17px; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #2c2d28; color: #f7f4ef; transform: translateY(-3px); }
.back-to-top:focus-visible { outline: 2px solid #9b8c74; outline-offset: 4px; }
@media (max-width: 600px) { .back-to-top { right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); width: 44px; height: 44px; } }
@media (prefers-reduced-motion: reduce) { .back-to-top { transition: none; } }

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--dark);
	color: var(--light);
	font-family: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body.page-loading {
	overflow: hidden;
}

.page-loader {
	position: fixed;
	z-index: 99999;
	inset: 0;
	display: grid;
	place-items: center;
	background: #080808;
	transform: translate3d(0, 0, 0);
	visibility: visible;
	transition: transform .72s cubic-bezier(.76, 0, .24, 1), visibility .72s;
	will-change: transform;
}

.page-loader.is-hidden {
	transform: translate3d(0, -100%, 0);
	visibility: hidden;
}

.loader-logo {
	display: flex;
	align-items: center;
	gap: 11px;
	color: var(--light);
	opacity: 0;
	transform: translateY(8px);
	animation: loader-logo .7s ease forwards;
}

.loader-logo .logo-mark {
	width: 64px;
	height: 56px;
	font-size: 42px;
}

.loader-logo .logo-text {
	font-size: 15px;
}

.hero {
	position: relative;
	min-height: 100svh;
	overflow: hidden;
	background: var(--dark);
}

.hero-background {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	will-change: transform;
}

.hero-slider,
.hero-slide,
.hero-video,
.hero-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-slider {
	overflow: hidden;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
}

.hero-slider.is-dragging,
.project-window.is-dragging {
	cursor: grabbing;
}

.hero-slide {
	overflow: hidden;
	transform: translate3d(100%, 0, 0);
	transition: transform 1.1s cubic-bezier(.76, 0, .24, 1);
}

.hero-slide.is-active {
	z-index: 2;
	transform: translate3d(0, 0, 0);
}

.hero-slide.is-before {
	z-index: 1;
	transform: translate3d(-100%, 0, 0);
}

.hero-slide.is-after {
	z-index: 1;
	transform: translate3d(100%, 0, 0);
}

.hero-video {
	object-fit: cover;
	object-position: center;
	opacity: 0;
	transform: translate3d(-10%, 0, 0) scale(1.18);
	transition: opacity .45s ease, transform 1.1s cubic-bezier(.76, 0, .24, 1);
}

.hero-slide.is-active .hero-video {
	transform: translate3d(0, 0, 0) scale(1);
}

.hero-slide.is-before .hero-video {
	transform: translate3d(10%, 0, 0) scale(1.18);
}

.hero-video.is-ready {
	opacity: 1;
}

.hero-overlay {
	background: linear-gradient(180deg, rgba(5, 7, 8, .56) 0%, rgba(5, 7, 8, .12) 46%, rgba(5, 7, 8, .47) 100%);
	pointer-events: none;
}

.site-header {
	position: absolute;
	z-index: 20;
	top: clamp(28px, 3.6vw, 66px);
	left: var(--side-space);
	right: var(--side-space);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--light);
	text-decoration: none;
}

.logo-mark {
	display: grid;
	place-items: center;
	width: 58px;
	height: 50px;
	padding-right: 6px;
	border: 1px solid rgba(255, 255, 255, .72);
	font-size: 38px;
	font-weight: 300;
	line-height: 1;
	letter-spacing: -7px;
}

.logo-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 6px;
}

.logo-text small {
	font-size: 8px;
	font-weight: 400;
	letter-spacing: 4px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: clamp(25px, 3vw, 58px);
}

.site-nav a,
.nav-dropdown summary {
	position: relative;
	color: rgba(255, 255, 255, .84);
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
}

.nav-dropdown { position: relative; }
.nav-dropdown summary { display: flex; align-items: center; gap: 8px; list-style: none; cursor: pointer; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary i { font-size: 8px; transition: transform .2s ease; }
.nav-dropdown[open] summary i { transform: rotate(180deg); }
.nav-dropdown summary:focus-visible { outline: 1px solid currentColor; outline-offset: 6px; }
.nav-submenu { position: absolute; top: 100%; left: -20px; min-width: 190px; padding-top: 18px; }
.nav-submenu > div { padding: 8px; background: #e8e1d6; border: 1px solid rgba(44, 37, 31, .12); box-shadow: 0 12px 30px rgba(0, 0, 0, .18); }
.site-nav .nav-submenu a { display: block; padding: 13px 16px; color: #2c251f; font-size: 12px; font-weight: 500; white-space: nowrap; transition: background .2s ease; }
.site-nav .nav-submenu a::after { content: none; }
.site-nav .nav-submenu a:hover,
.site-nav .nav-submenu a:focus-visible { background: #d8cebf; outline-offset: -2px; }

.site-nav > a:not(.search-link)::after {
	content: '';
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -8px;
	height: 1px;
	background: #fff;
	transition: right .25s ease;
}

.site-nav > a:hover::after {
	right: 0;
}

.search-link {
	margin-left: 14px;
	font-size: 22px !important;
	font-weight: 400 !important;
}

.hero-slogan {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: var(--side-space);
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 620px;
	text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.slide-text {
	position: absolute;
	left: 0;
	top: 50%;
	width: max-content;
	max-width: 620px;
	opacity: 0;
	transform: translateY(calc(-50% + 16px));
	pointer-events: none;
	transition: opacity .45s ease, transform .45s ease;
}

.slide-text.is-active {
	opacity: 1;
	transform: translateY(-50%);
}

.hero-slogan h1,
.hero-slogan h2 {
	margin: 0;
	color: rgba(255, 255, 255, .96);
	font-size: clamp(38px, 3.25vw, 62px);
	font-weight: 400;
	line-height: .98;
	letter-spacing: -.035em;
}

.slider-controls {
	position: absolute;
	z-index: 3;
	left: var(--side-space);
	bottom: 38px;
	display: flex;
	align-items: center;
	gap: 13px;
	color: rgba(255, 255, 255, .75);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .08em;
}

.slider-button {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
}

.slide-progress {
	position: relative;
	display: block;
	width: clamp(70px, 7vw, 130px);
	height: 1px;
	background: rgba(255, 255, 255, .32);
	overflow: hidden;
}

.slide-progress i {
	position: absolute;
	inset: 0;
	background: #fff;
	transform: scaleX(0);
	transform-origin: left;
}

.slide-progress.is-running i {
	animation: slide-progress 7s linear forwards;
}

.hero-slogan p {
	margin: 0;
	color: rgba(255, 255, 255, .6);
	font-size: clamp(17px, 1.35vw, 24px);
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -.01em;
}

.scroll-link {
	position: absolute;
	z-index: 2;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-decoration: none;
}

.scroll-line {
	display: block;
	width: 1px;
	height: 52px;
	background: rgba(255, 255, 255, .9);
	animation: scroll-line 1.8s ease-in-out infinite;
	transform-origin: bottom;
}

.why-section {
	display: grid;
	grid-template-columns: minmax(300px, .78fr) minmax(0, 1.32fr);
	gap: clamp(48px, 6vw, 120px);
	padding: clamp(90px, 11vw, 180px) 0 clamp(90px, 10vw, 160px) var(--side-space);
	background: #ded5c7;
	color: #2c251f;
	overflow: hidden;
}

.why-content {
	align-self: center;
	max-width: 540px;
	padding-right: 20px;
}

.section-label {
	display: block;
	margin-bottom: 44px;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .17em;
}

.why-content h2,
.approach-heading h2 {
	margin: 0;
	font-weight: 300;
	line-height: .95;
	letter-spacing: -.055em;
}

.why-content h2 {
	font-size: clamp(42px, 4.4vw, 76px);
}

.approach-heading h2 {
	font-size: clamp(52px, 6vw, 106px);
}

.why-content p {
	max-width: 520px;
	margin: 30px 0;
	color: rgba(44, 37, 31, .68);
	font-size: clamp(14px, 1vw, 17px);
	line-height: 1.65;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 7px;
	border-bottom: 1px solid currentColor;
	color: #2c251f;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .1em;
	text-decoration: none;
}

.project-carousel {
	min-width: 0;
}

.project-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 var(--side-space) 18px 0;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .14em;
}

.project-navigation {
	display: flex;
	align-items: center;
	gap: 13px;
}

.project-button {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 1px solid rgba(44, 37, 31, .45);
	border-radius: 50%;
	background: transparent;
	color: #2c251f;
	cursor: pointer;
}

.project-number {
	min-width: 48px;
	text-align: center;
}

.project-window {
	overflow: visible;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
}

.project-window img {
	pointer-events: none;
	user-select: none;
	-webkit-user-drag: none;
}

.project-track {
	display: flex;
	gap: 18px;
	transition: transform .9s cubic-bezier(.76, 0, .24, 1);
	will-change: transform;
}

.project-card {
	position: relative;
	flex: 0 0 min(74%, 760px);
	aspect-ratio: 1.42;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
	-webkit-user-drag: none;
}

.project-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(18, 15, 12, .72) 100%);
}

.project-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s cubic-bezier(.2, .65, .3, 1);
}

.project-card:hover img {
	transform: scale(1.035);
}

.project-status {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	padding: 10px 14px;
	background: #332a23;
	font-size: 10px;
	letter-spacing: .08em;
}

.project-info {
	position: absolute;
	z-index: 2;
	left: clamp(22px, 2.2vw, 38px);
	bottom: clamp(20px, 2vw, 34px);
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.project-info strong {
	font-size: clamp(27px, 2.4vw, 43px);
	font-weight: 300;
	line-height: 1;
	letter-spacing: -.04em;
}

.project-info small {
	font-size: 13px;
	font-weight: 400;
}

.approach-section {
	padding: clamp(90px, 10vw, 150px) var(--side-space);
	background: #181715;
	color: #f2eee8;
}

.approach-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: clamp(55px, 7vw, 100px);
}

.approach-heading .section-label {
	margin: 0 0 8px;
}

.approach-heading h2 {
	font-size: clamp(48px, 5.2vw, 90px);
	text-align: right;
}

.approach-stack {
	position: relative;
}

.approach-card {
	position: sticky;
	top: calc(72px + var(--stack) * 7px);
	display: grid;
	grid-template-columns: auto 1fr;
	align-content: end;
	gap: 0 clamp(30px, 5vw, 80px);
	min-height: clamp(280px, 32vh, 350px);
	margin-bottom: 3.5vh;
	padding: clamp(26px, 3.2vw, 48px);
	overflow: hidden;
	isolation: isolate;
}

.approach-card:last-child {
	margin-bottom: 0;
}

.approach-card img,
.approach-overlay {
	position: absolute;
	z-index: -2;
	inset: 0;
	width: 100%;
	height: 100%;
}

.approach-card img {
	object-fit: cover;
}

.approach-overlay {
	z-index: -1;
	background: linear-gradient(90deg, rgba(12, 12, 11, .82), rgba(12, 12, 11, .15));
}

.approach-card > span {
	align-self: end;
	padding-bottom: 8px;
	font-size: 11px;
	letter-spacing: .12em;
}

.approach-card > div:last-child {
	max-width: 720px;
}

.approach-card h3 {
	margin: 0;
	font-size: clamp(34px, 4vw, 68px);
	font-weight: 300;
	line-height: .88;
	letter-spacing: -.055em;
}

.approach-card p {
	max-width: 540px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, .7);
	font-size: clamp(13px, 1vw, 16px);
	line-height: 1.55;
}

.approach-detail-link { display: inline-flex; align-items: center; gap: 18px; margin-top: 24px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.75); color: #fff; font-size: 10px; letter-spacing: .14em; text-decoration: none; }
.approach-detail-link:hover { gap: 24px; }
.approach-detail-link:focus-visible { outline: 2px solid #fff; outline-offset: 5px; }

.latest-section {
	--latest-gap: 18px;
	--latest-card: calc((100vw - var(--latest-gap) * 4) / 4);
	padding: clamp(75px, 7vw, 110px) 0;
	background: #e8e1d6;
	color: #2c251f;
	overflow: hidden;
}

.latest-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin: 0 var(--side-space) clamp(34px, 3.5vw, 50px);
}

.latest-heading .section-label {
	margin-bottom: 22px;
}

.latest-heading h2 {
	margin: 0;
	font-size: clamp(42px, 4.7vw, 82px);
	font-weight: 300;
	line-height: .95;
	letter-spacing: -.055em;
}

.latest-track {
	display: flex;
	gap: var(--latest-gap);
	width: max-content;
	transform: translateX(calc(var(--latest-card) / -2));
	transition: transform .9s cubic-bezier(.76, 0, .24, 1);
	will-change: transform;
}

.latest-window {
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
}

.latest-window.is-dragging {
	cursor: grabbing;
}

.latest-card {
	position: relative;
	flex: 0 0 var(--latest-card);
	aspect-ratio: .82;
	overflow: hidden;
	border-radius: 12px;
	color: #fff;
	text-decoration: none;
}

.latest-card img,
.latest-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.latest-card img {
	object-fit: cover;
	pointer-events: none;
	user-select: none;
	-webkit-user-drag: none;
	transition: transform .9s cubic-bezier(.2, .65, .3, 1);
}

.latest-card:hover img {
	transform: scale(1.045);
}

.latest-overlay {
	background: linear-gradient(180deg, transparent 45%, rgba(16, 13, 11, .76) 100%);
}

.latest-info {
	position: absolute;
	z-index: 1;
	left: clamp(20px, 2vw, 34px);
	right: clamp(20px, 2vw, 34px);
	bottom: clamp(20px, 2vw, 32px);
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.latest-info strong {
	font-size: clamp(23px, 2.1vw, 38px);
	font-weight: 300;
	line-height: 1;
	letter-spacing: -.04em;
}

.latest-info small {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .05em;
}

.site-footer {
	padding: clamp(70px, 8vw, 125px) var(--side-space) 28px;
	background: #0d0d0c;
	color: #f2eee8;
}

.footer-main {
	display: grid;
	grid-template-columns: minmax(240px, .7fr) minmax(0, 2.3fr);
	gap: clamp(40px, 5vw, 90px);
	padding-bottom: clamp(70px, 8vw, 120px);
}

.contact-list {
	margin-top: 38px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	font-style: normal;
}

.contact-list a {
	display: flex;
	align-items: center;
	gap: 14px;
	color: rgba(255, 255, 255, .75);
	font-size: 13px;
	text-decoration: none;
	transition: color .25s ease;
}

.contact-list a:hover,
.footer-column a:hover {
	color: #fff;
}

.contact-list i {
	width: 16px;
	color: rgba(255, 255, 255, .42);
	text-align: center;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(0, 1.35fr);
	gap: clamp(20px, 2.5vw, 45px);
}

.footer-blog { min-width: 0; }
.footer-blog > a { display: block; width: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

.footer-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
}

.footer-column h2 {
	margin: 0 0 17px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.footer-column a {
	color: rgba(255, 255, 255, .52);
	font-size: 13px;
	line-height: 1.4;
	text-decoration: none;
	transition: color .25s ease;
}

.footer-bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 30px;
	padding-top: 27px;
	border-top: 1px solid rgba(255, 255, 255, .13);
	color: rgba(255, 255, 255, .4);
	font-size: 10px;
	letter-spacing: .05em;
}

.social-links {
	display: flex;
	align-items: center;
	gap: 24px;
}

.social-links {
	justify-content: flex-end;
	gap: 12px;
}

.footer-credit {
	display: block;
	opacity: .72;
	transition: opacity .25s ease;
}

.footer-credit:hover {
	opacity: 1;
}

.footer-credit img {
	display: block;
	width: 105px;
	height: auto;
}

.social-links a {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 50%;
	color: rgba(255, 255, 255, .7);
	font-size: 13px;
	text-decoration: none;
	transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.social-links a:hover {
	border-color: #fff;
	background: #fff;
	color: #111;
}

.contact-page .page-banner { isolation: isolate; }

.page-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(360px, 38vh, 430px);
	padding: 95px var(--side-space) 34px;
	overflow: hidden;
	color: #fff;
}

.page-banner > img,
.banner-overlay {
	position: absolute;
	z-index: -2;
	inset: 0;
	width: 100%;
	height: 100%;
}

.page-banner > img {
	object-fit: cover;
	object-position: center 54%;
}

.banner-overlay {
	z-index: -1;
	background: rgba(14, 14, 13, .52);
}

.banner-title {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	padding: 0 var(--side-space);
	transform: translate(-50%, -56%);
	text-align: center;
}

.banner-title h1 {
	margin: 0;
	font-size: clamp(52px, 7vw, 120px);
	font-weight: 400;
	line-height: .9;
	letter-spacing: -.04em;
}

.banner-title p {
	margin: 22px 0 0;
	color: rgba(255, 255, 255, .62);
	font-size: clamp(14px, 1.35vw, 22px);
	letter-spacing: -.02em;
}

.banner-title p span {
	margin: 0 8px;
	color: rgba(255, 255, 255, .35);
}

.banner-details {
	position: absolute;
	left: var(--side-space);
	right: var(--side-space);
	bottom: 28px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0;
}

.banner-details > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.banner-details > div:nth-child(2) {
	align-items: center;
}

.banner-details > div:last-child {
	align-items: flex-end;
}

.banner-details dt {
	color: rgba(255, 255, 255, .56);
	font-size: 11px;
}

.banner-details dd {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
}

.about-intro {
	display: grid;
	grid-template-columns: minmax(160px, .45fr) minmax(0, 1.55fr);
	gap: clamp(50px, 8vw, 150px);
	padding: clamp(85px, 10vw, 155px) var(--side-space);
	background: #e8e1d6;
	color: #2c251f;
}

.about-intro .section-label {
	margin: 8px 0 0;
}

.about-intro > div {
	max-width: 950px;
}

.about-intro h2 {
	margin: 0 0 42px;
	font-size: clamp(30px, 3.3vw, 56px);
	font-weight: 300;
	line-height: 1.02;
	letter-spacing: -.05em;
}

.about-intro p {
	max-width: 720px;
	margin: 0 0 16px;
	color: rgba(44, 37, 31, .68);
	font-size: clamp(14px, 1.05vw, 17px);
	line-height: 1.7;
}

.about-rhythm {
	padding: 0 clamp(22px, 3.125vw, 60px) clamp(40px, 3.125vw, 60px);
	background: #e8e1d6;
	color: var(--light);
}

.about-rhythm-stage {
	display: flex;
	gap: 16px;
	min-height: clamp(620px, calc(100svh - 120px), 960px);
}

.about-rhythm-panel {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: flex-end;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	background: #302e29;
	transition: flex .85s cubic-bezier(.22, .61, .36, 1);
}

.about-rhythm-stage.is-interactive .about-rhythm-panel {
	flex: .9;
}

.about-rhythm-stage.is-interactive .about-rhythm-panel.is-active {
	flex: 2.4;
}

.about-rhythm-image,
.about-rhythm-panel::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	width: 100%;
	height: 100%;
}

.about-rhythm-image {
	object-fit: cover;
	filter: grayscale(1) brightness(.7);
	transform: scale(1.04);
	transition: filter .85s ease, transform 1.2s ease;
}

.about-rhythm-panel.is-active .about-rhythm-image {
	filter: grayscale(0) brightness(.9);
	transform: scale(1);
}

.about-rhythm-panel::after {
	content: '';
	background: linear-gradient(180deg, rgba(14, 13, 11, .15) 0%, rgba(14, 13, 11, .08) 30%, rgba(14, 13, 11, .55) 65%, rgba(14, 13, 11, .88) 100%);
}

.about-rhythm-index {
	position: absolute;
	top: 28px;
	left: 28px;
	color: rgba(245, 243, 238, .65);
	font-size: clamp(36px, 2.6vw, 50px);
	font-weight: 300;
	line-height: 1;
	letter-spacing: -.07em;
}

.about-rhythm-content {
	width: 100%;
	padding: 100px 28px 28px;
}

.about-rhythm-label,
.about-rhythm-meta,
.about-rhythm-hint {
	display: block;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: .15em;
}

.about-rhythm-label {
	margin-bottom: 18px;
	color: rgba(245, 243, 238, .75);
}

.about-rhythm-content h2 {
	margin: 0;
	font-size: clamp(25px, 2.6vw, 50px);
	font-weight: 300;
	line-height: 1.12;
	letter-spacing: -.05em;
}

.about-rhythm-content button {
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-align: left;
	cursor: pointer;
}

.about-rhythm-content button::after {
	content: '';
	position: absolute;
	z-index: 1;
	inset: 0;
}

.about-rhythm-content button:focus-visible {
	outline: none;
}

.about-rhythm-content button:focus-visible::after {
	outline: 2px solid var(--light);
	outline-offset: -6px;
}

.about-rhythm-subtitle {
	margin: 12px 0 0;
	color: #e0d2bc;
	font-size: clamp(15px, 1.2vw, 21px);
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: -.025em;
}

.about-rhythm-detail > p {
	max-width: 460px;
	margin: 22px 0;
	color: rgba(245, 243, 238, .85);
	font-size: 14px;
	line-height: 1.8;
}

.about-rhythm-detail[hidden] {
	display: none;
}

.about-rhythm-panel.is-active .about-rhythm-detail {
	animation: rhythm-detail .65s ease both;
}

.about-rhythm-meta {
	padding-top: 18px;
	border-top: 1px solid rgba(245, 243, 238, .2);
	color: rgba(245, 243, 238, .7);
}

.about-rhythm-hint {
	display: none;
	margin-top: 24px;
	color: rgba(245, 243, 238, .65);
}

.about-rhythm-hint i {
	margin-left: 8px;
	font-size: 9px;
}

.is-interactive .about-rhythm-panel:not(.is-active) .about-rhythm-hint {
	display: block;
}

@keyframes rhythm-detail {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1000px) {
	.about-rhythm-stage {
		flex-direction: column;
		min-height: 0;
		gap: 12px;
	}

	.about-rhythm-stage.is-interactive .about-rhythm-panel {
		flex: none;
		min-height: 230px;
	}

	.about-rhythm-stage.is-interactive .about-rhythm-panel.is-active {
		flex: none;
		min-height: 520px;
	}

	.about-rhythm-panel {
		flex: none;
		transition: min-height .65s cubic-bezier(.22, .61, .36, 1);
	}

	.about-rhythm-content {
		padding: 90px 24px 26px;
	}

	.about-rhythm-index {
		top: 22px;
		left: 24px;
		font-size: 32px;
	}

	.about-rhythm-content h2 {
		font-size: 36px;
	}

	.about-rhythm-label {
		font-size: 9px;
		margin-bottom: 12px;
	}

	.about-rhythm-detail > p {
		font-size: 13px;
	}

	.about-rhythm-hint {
		margin-top: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.about-rhythm-panel,
	.about-rhythm-image {
		transition: none;
	}

	.about-rhythm-panel.is-active .about-rhythm-detail {
		animation: none;
	}
}

.content {
	min-height: 100vh;
}

@keyframes scroll-line {
	0%, 100% {
		transform: scaleY(.38);
		opacity: .5;
	}
	50% {
		transform: scaleY(1);
		opacity: 1;
	}
}

@keyframes loader-logo {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slide-progress {
	to {
		transform: scaleX(1);
	}
}

@media (max-width: 850px) {
	.about-intro {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 70px;
	}

	.latest-section {
		--latest-card: 68vw;
	}

	.latest-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.latest-window {
		overflow-x: auto;
		scrollbar-width: none;
	}

	.latest-window::-webkit-scrollbar {
		display: none;
	}

	.latest-track {
		padding: 0;
		transform: none;
	}

	.why-section {
		grid-template-columns: 1fr;
		padding-right: 0;
	}

	.why-content {
		padding-right: var(--side-space);
	}

	.project-card {
		flex-basis: 82%;
	}

	.approach-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.approach-heading h2 {
		text-align: left;
	}

	.site-header {
		align-items: flex-start;
	}

	.site-nav {
		flex-direction: column;
		align-items: flex-end;
		gap: 12px;
	}

	.site-nav a,
	.nav-dropdown summary {
		font-size: 10px;
	}

	.nav-submenu { left: auto; right: 0; }

	.search-link {
		margin: 0;
	}

	.hero-slogan {
		top: auto;
		bottom: 17%;
		transform: none;
	}

	.slider-controls {
		bottom: 34px;
	}
}

@media (max-width: 520px) {
	:root {
		--side-space: 22px;
	}

	.logo-mark {
		width: 47px;
		height: 42px;
		font-size: 31px;
	}

	.logo-text {
		font-size: 11px;
		letter-spacing: 4px;
	}

	.logo-text small {
		font-size: 6px;
		letter-spacing: 2.6px;
	}

	.site-nav > .nav-mobile-secondary {
		display: none;
	}

	.why-section {
		padding-top: 78px;
		padding-bottom: 80px;
	}

	.section-label {
		margin-bottom: 28px;
	}

	.project-card {
		flex-basis: 88%;
		aspect-ratio: .82;
	}

	.project-toolbar {
		margin-right: 22px;
	}

	.approach-section {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.approach-card {
		grid-template-columns: 1fr;
		gap: 16px;
		min-height: 330px;
		padding: 26px;
	}

	.latest-section {
		--latest-card: 76vw;
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.latest-heading {
		margin-right: 22px;
		margin-left: 22px;
	}

	.site-footer {
		padding-right: 22px;
		padding-left: 22px;
	}

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 50px;
	}

	.page-banner {
		min-height: 430px;
		padding: 105px 22px 30px;
	}

	.banner-title h1 {
		font-size: clamp(44px, 14vw, 64px);
	}

	.banner-details {
		left: 22px;
		right: 22px;
		grid-template-columns: 1fr;
		gap: 9px;
	}

	.banner-details > div,
	.banner-details > div:nth-child(2),
	.banner-details > div:last-child {
		align-items: flex-start;
		flex-direction: row;
		justify-content: space-between;
	}

	.about-intro {
		padding-right: 22px;
		padding-left: 22px;
	}

	.footer-bottom {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-credit {
		order: 2;
	}

	.social-links {
		order: 3;
	}
}

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

	.hero-video {
		transition: none;
	}

	.loader-logo {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.scroll-line {
		animation: none;
	}

	.hero-slide,
	.hero-video,
	.slide-text {
		transition-duration: .01ms;
	}

	.slide-progress.is-running i {
		animation: none;
		transform: scaleX(1);
	}
}
