@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap");

:root {
	--ink: #0f0f0f;
	--white: #fff;
	--ground: #f6f4f3;
	--rose: #ad8b8b;
	--rose-deep: #866565;
	--muted: #5e5757;
	--line: rgba(15, 15, 15, 0.16);
	--serif: "Playfair Display", Georgia, serif;
	--sans: "Montserrat", Arial, sans-serif;
	--page: min(100% - 64px, 1360px);
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	color: var(--ink);
	background: var(--ground);
	font-family: var(--sans);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
body.menu-open {
	overflow: hidden;
}
a {
	color: inherit;
}
img {
	display: block;
	max-width: 100%;
}
button {
	font: inherit;
}
::selection {
	color: var(--white);
	background: var(--rose-deep);
}
:focus-visible {
	outline: 2px solid var(--rose);
	outline-offset: 4px;
}
.sr-only {
	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 {
	position: fixed;
	z-index: 50;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	color: var(--ink);
	background: var(--white);
	transform: translateY(-200%);
}
.skip-link:focus {
	transform: none;
}
.site-header {
	position: fixed;
	z-index: 30;
	top: 0;
	left: 0;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: 100%;
	height: 82px;
	padding-inline: max(32px, calc((100vw - 1360px) / 2));
	color: var(--white);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	transition:
		height 0.3s var(--ease),
		background 0.3s,
		color 0.3s,
		border-color 0.3s;
}
.site-header.scrolled {
	height: 68px;
	color: var(--ink);
	background: rgba(246, 244, 243, 0.96);
	border-color: var(--line);
}
.brand {
	display: block;
	width: 160px;
	height: 52px;
	overflow: hidden;
}
.brand img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(0) invert(1);
}
.site-header.scrolled .brand img {
	filter: none;
}
.desktop-nav {
	display: flex;
	gap: 38px;
}
.desktop-nav a,
.nav-cta {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-decoration: none;
	text-transform: uppercase;
}
.desktop-nav a {
	position: relative;
}
.desktop-nav a::after {
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 1px;
	content: "";
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s var(--ease);
}
.desktop-nav a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
.nav-cta {
	justify-self: end;
	padding: 12px 18px;
	color: var(--ink);
	background: var(--white);
	transition:
		color 0.25s,
		background 0.25s,
		transform 0.25s var(--ease);
}
.site-header.scrolled .nav-cta {
	color: var(--white);
	background: var(--ink);
}
.nav-cta:hover {
	color: var(--white);
	background: var(--rose-deep);
	transform: translateY(-1px);
}
.menu-button,
.mobile-menu {
	display: none;
}
.hero {
	position: relative;
	display: grid;
	min-height: 100dvh;
	place-items: center;
	overflow: hidden;
	color: var(--white);
	background: var(--ink);
	isolation: isolate;
}
.hero-photo {
	position: absolute;
	z-index: -3;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 48%;
	filter: saturate(0.42) contrast(1.02);
	animation: hero-photo 1.35s var(--ease) both;
}
.hero-shade {
	position: absolute;
	z-index: -2;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.35),
			rgba(0, 0, 0, 0.08) 35%,
			rgba(0, 0, 0, 0.62)
		),
		linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.45),
			transparent 42%,
			rgba(0, 0, 0, 0.18)
		);
}
.hero-content {
	display: flex;
	width: var(--page);
	align-items: center;
	flex-direction: column;
	padding: 150px 0 104px;
	text-align: center;
}
.hero-content > p {
	margin: 0 0 26px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	animation: reveal 0.85s 0.1s var(--ease) both;
}
.hero h1 {
	max-width: 980px;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(4.5rem, 8.6vw, 8.2rem);
	font-weight: 400;
	line-height: 0.93;
	letter-spacing: -0.04em;
	text-wrap: balance;
	animation: reveal 0.95s 0.18s var(--ease) both;
}
.hero h1 em {
	color: #d1b4b4;
	font-weight: 400;
}
.hero-bottom {
	display: flex;
	max-width: 910px;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-top: 42px;
	animation: reveal 0.95s 0.28s var(--ease) both;
}
.hero-bottom p {
	max-width: 450px;
	margin: 0;
	font-family: var(--serif);
	font-size: 18px;
	line-height: 1.55;
	text-align: left;
}
.button {
	display: inline-flex;
	width: max-content;
	min-width: 235px;
	min-height: 58px;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	padding: 0 20px 0 24px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		color 0.25s,
		background 0.25s,
		transform 0.25s var(--ease);
}
.button span:last-child {
	font-size: 18px;
}
.button:active {
	transform: translateY(1px);
}
.button-light {
	color: var(--ink);
	background: var(--white);
}
.button-light:hover {
	color: var(--white);
	background: var(--rose-deep);
	transform: translateY(-2px);
}
.hero-icon {
	position: absolute;
	z-index: -1;
	right: -5vw;
	bottom: -14vw;
	width: min(52vw, 760px);
	opacity: 0.17;
	filter: brightness(1.45);
}
.scroll-cue {
	position: absolute;
	bottom: 25px;
	left: 50%;
	display: flex;
	gap: 13px;
	align-items: center;
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-decoration: none;
	text-transform: uppercase;
	transform: translateX(-50%);
}
.essence {
	display: flex;
	width: var(--page);
	align-items: center;
	margin-inline: auto;
	flex-direction: column;
	padding: clamp(120px, 14vw, 220px) 0;
	text-align: center;
}
.essence-copy > p {
	margin: 0 0 28px;
	color: var(--rose-deep);
	font-family: var(--serif);
	font-size: 22px;
	font-style: italic;
}
.essence h2 {
	max-width: 1080px;
	margin: 0 auto;
	font-family: var(--serif);
	font-size: clamp(3.6rem, 6.4vw, 6.8rem);
	font-weight: 400;
	line-height: 1.02;
	letter-spacing: -0.04em;
	text-wrap: balance;
}
.essence-body {
	max-width: 680px;
	margin: 54px auto 0;
	padding-top: 30px;
	color: #443d3d;
	font-size: 15px;
	line-height: 1.95;
	border-top: 1px solid var(--ink);
}
.atelier {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	grid-template-rows: minmax(360px, 520px) minmax(360px, 520px);
	gap: 12px;
	padding: 12px;
	background: var(--white);
}
.atelier figure {
	position: relative;
	margin: 0;
	overflow: hidden;
}
.atelier figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.48) contrast(0.95);
	transition: transform 1s var(--ease);
}
.atelier figure:hover img {
	transform: scale(1.025);
}
.atelier-wide {
	grid-row: 1 / 3;
}
.atelier-wide img {
	object-position: 48% center;
}
.atelier-wide,
.atelier-tall,
.atelier-statement {
	transition: transform 0.7s var(--ease);
}
.atelier-wide:hover,
.atelier-tall:hover,
.atelier-statement:hover {
	transform: translateY(-5px);
}
.atelier figcaption {
	position: absolute;
	bottom: 20px;
	left: 22px;
	padding: 8px 11px;
	color: var(--ink);
	font-size: 8px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.88);
}
.atelier-statement {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 60px;
	color: var(--white);
	text-align: center;
	background: var(--rose);
}
.atelier-statement img {
	width: 140px;
	height: 140px;
	object-fit: contain;
	margin-bottom: 30px;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}
.atelier-statement p {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(2.1rem, 3.2vw, 3.6rem);
	line-height: 1.12;
}
.atelier-statement strong {
	font-weight: 400;
	font-style: italic;
}
.atelier-tall img {
	object-position: center 48%;
}
.worlds {
	width: var(--page);
	margin-inline: auto;
	padding: clamp(120px, 13vw, 200px) 0;
}
.worlds > p {
	margin: 0 0 22px;
	color: var(--rose-deep);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-align: center;
	text-transform: uppercase;
}
.worlds > h2 {
	max-width: 980px;
	margin: 0 auto 76px;
	font-family: var(--serif);
	font-size: clamp(3.2rem, 5.8vw, 6rem);
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: -0.04em;
	text-align: center;
	text-wrap: balance;
}
.worlds-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.world {
	position: relative;
	min-height: 720px;
	overflow: hidden;
	color: var(--white);
	background: var(--ink);
}
.world::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.78));
}
.world img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.5);
	transition: transform 1.2s var(--ease);
}
.world:hover img {
	transform: scale(1.035);
}
.world-home img {
	object-position: center 52%;
}
.world > div {
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 55px;
}
.world span {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.world h3 {
	margin: 14px 0;
	font-family: var(--serif);
	font-size: clamp(2.5rem, 3.8vw, 4.2rem);
	font-weight: 400;
	line-height: 1.05;
}
.world p {
	max-width: 490px;
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 13px;
	line-height: 1.8;
}
.marquee {
	overflow: hidden;
	padding: 22px 0;
	color: var(--white);
	background: var(--rose-deep);
}
.marquee-track {
	display: flex;
	width: max-content;
	animation: marquee 28s linear infinite;
	will-change: transform;
}
.marquee-group {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 42px;
	padding-right: 42px;
}
.marquee span {
	font-family: var(--serif);
	font-size: 22px;
	white-space: nowrap;
}
.marquee i {
	font-family: var(--serif);
	font-size: 20px;
	font-style: normal;
}
.process {
	width: var(--page);
	margin-inline: auto;
	padding: clamp(120px, 14vw, 210px) 0;
}
.process-heading {
	display: flex;
	max-width: 1040px;
	align-items: center;
	flex-direction: column;
	margin: 0 auto 90px;
	text-align: center;
}
.process-heading > p {
	margin: 0 0 23px;
	color: var(--rose-deep);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.process h2 {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(3.3rem, 5.7vw, 6rem);
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: -0.04em;
	text-wrap: balance;
}
.process-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--ink);
}
.process-steps li {
	display: flex;
	min-height: 300px;
	align-items: center;
	flex-direction: column;
	padding: 34px clamp(24px, 4vw, 56px);
	text-align: center;
	border-right: 1px solid var(--line);
}
.process-steps li:last-child {
	border: 0;
}
.process-steps span {
	color: var(--rose-deep);
	font-family: var(--serif);
	font-size: 15px;
}
.process-steps h3 {
	margin: 55px 0 14px;
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 400;
}
.process-steps p {
	max-width: 330px;
	margin: 0 auto;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.85;
}
.values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	color: var(--white);
	background: var(--ink);
}
.values article {
	display: flex;
	min-height: 420px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	padding: 64px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.values article:nth-child(2) {
	background: var(--rose-deep);
}
.values article:last-child {
	border: 0;
}
.values span {
	height: 65px;
	font-family: var(--serif);
	font-size: 56px;
	line-height: 1;
}
.values h3 {
	margin: 28px 0 12px;
	font-family: var(--serif);
	font-size: 31px;
	font-weight: 400;
}
.values p {
	max-width: 300px;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	line-height: 1.8;
}
.materials {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	min-height: 720px;
	color: var(--white);
	background: var(--ink);
}
.materials-mark {
	position: relative;
	display: grid;
	overflow: hidden;
	place-items: center;
	background: var(--rose-deep);
}
.materials-mark::after {
	position: absolute;
	inset: 0;
	content: "";
	background: radial-gradient(circle, transparent 20%, rgba(15, 15, 15, 0.22));
}
.materials-mark img {
	width: min(72%, 520px);
	opacity: 0.78;
	filter: brightness(0) invert(1);
	transition: transform 1.2s var(--ease);
}
.materials:hover .materials-mark img {
	transform: rotate(-3deg) scale(1.035);
}
.materials-copy {
	display: flex;
	max-width: 800px;
	flex-direction: column;
	justify-content: center;
	padding: clamp(70px, 9vw, 140px);
}
.materials-copy > p:first-child {
	margin: 0 0 24px;
	color: #d2b6b6;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.materials h2 {
	max-width: 650px;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(3.1rem, 5vw, 5.2rem);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.035em;
}
.materials-copy > p:nth-of-type(2) {
	max-width: 610px;
	margin: 34px 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 14px;
	line-height: 1.9;
}
.materials ul {
	max-width: 610px;
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.materials li {
	padding: 17px 0;
	font-size: 11px;
	letter-spacing: 0.06em;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 820px;
	background: var(--white);
}
.about-portrait {
	overflow: hidden;
}
.about-portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 53% center;
	filter: saturate(0.48) sepia(0.05);
	transition: transform 1.1s var(--ease);
}
.about:hover .about-portrait img {
	transform: scale(1.025);
}
.about-copy {
	display: flex;
	max-width: 770px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	padding: clamp(70px, 9vw, 140px);
	text-align: center;
}
.about-copy > img {
	width: 86px;
	height: 86px;
	object-fit: contain;
	margin-bottom: 22px;
	filter: brightness(0);
	opacity: 0.82;
}
.about-copy > p:first-of-type {
	margin: 0 0 26px;
	color: var(--rose-deep);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.about h2 {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(3rem, 4.8vw, 5rem);
	font-weight: 400;
	line-height: 1.06;
	letter-spacing: -0.035em;
	text-wrap: balance;
}
.about-copy > p:last-of-type {
	max-width: 610px;
	margin: 34px 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.95;
}
.about-copy > a {
	padding-bottom: 7px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-decoration: none;
	text-transform: uppercase;
	border-bottom: 1px solid var(--rose-deep);
}
.about-copy > a span {
	margin-left: 12px;
	font-size: 16px;
}
.faq {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	width: var(--page);
	margin-inline: auto;
	padding: clamp(120px, 13vw, 190px) 0;
	gap: clamp(60px, 10vw, 150px);
}
.faq-heading > p {
	margin: 0 0 22px;
	color: var(--rose-deep);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.faq h2 {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(3.2rem, 5vw, 5.2rem);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.035em;
}
.faq-list {
	border-top: 1px solid var(--ink);
}
.faq details {
	border-bottom: 1px solid var(--line);
}
.faq summary {
	display: flex;
	min-height: 76px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-family: var(--serif);
	font-size: 20px;
	cursor: pointer;
	list-style: none;
}
.faq summary::-webkit-details-marker {
	display: none;
}
.faq summary span {
	color: var(--rose-deep);
	font-family: var(--sans);
	font-size: 20px;
	transition: transform 0.3s var(--ease);
}
.faq details[open] summary span {
	transform: rotate(45deg);
}
.faq details p {
	max-width: 640px;
	margin: -4px 0 26px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.85;
}
.contact {
	position: relative;
	display: flex;
	min-height: 760px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	padding: 110px 24px;
	color: var(--white);
	text-align: center;
	background: var(--rose-deep);
}
.contact > img {
	position: absolute;
	width: min(72vw, 960px);
	opacity: 0.1;
	filter: brightness(0) invert(1);
	pointer-events: none;
}
.contact > p,
.contact h2,
.contact .button,
.contact small {
	position: relative;
}
.contact > p {
	margin: 0 0 24px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.contact h2 {
	max-width: 900px;
	margin: 0 0 46px;
	font-family: var(--serif);
	font-size: clamp(3.5rem, 6.5vw, 6.5rem);
	font-weight: 400;
	line-height: 1.02;
	letter-spacing: -0.04em;
	text-wrap: balance;
}
.contact small {
	margin-top: 24px;
	font-size: 9px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}
footer {
	display: flex;
	width: var(--page);
	min-height: 230px;
	margin-inline: auto;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 22px;
	text-align: center;
}
.footer-logo {
	display: block;
	width: 155px;
	height: 56px;
	overflow: hidden;
}
.footer-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.footer-logo,
.footer-logo img {
	filter: none;
}
footer > p {
	margin: 0;
	color: var(--muted);
	font-size: 9px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}
footer > div {
	display: flex;
	justify-content: center;
	gap: 28px;
	font-size: 9px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}
footer > div a {
	text-decoration: none;
}
.reveal,
.reveal-item {
	opacity: 1;
	transform: none;
}
.motion-ready .reveal {
	opacity: 0;
	transform: translateY(38px);
	transition:
		opacity 0.8s var(--ease),
		transform 0.8s var(--ease);
}
.motion-ready .reveal.is-visible {
	opacity: 1;
	transform: none;
}
.motion-ready .reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.65s var(--ease),
		transform 0.65s var(--ease);
}
.motion-ready .is-visible .reveal-item {
	opacity: 1;
	transform: none;
}
.motion-ready .is-visible .reveal-item:nth-child(2) {
	transition-delay: 90ms;
}
.motion-ready .is-visible .reveal-item:nth-child(3) {
	transition-delay: 180ms;
}
@keyframes reveal {
	from {
		opacity: 0;
		transform: translateY(26px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes marquee {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-50%, 0, 0);
	}
}
@keyframes hero-photo {
	from {
		opacity: 0;
		transform: scale(1.08);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
@media (max-width: 960px) {
	:root {
		--page: min(100% - 40px, 760px);
	}
	.site-header {
		height: 72px;
		grid-template-columns: 1fr auto;
		padding-inline: 20px;
	}
	.brand {
		width: 136px;
	}
	.desktop-nav,
	.nav-cta {
		display: none;
	}
	.menu-button {
		display: grid;
		width: 46px;
		height: 46px;
		padding: 12px 9px;
		border: 0;
		place-content: center;
		gap: 7px;
		color: inherit;
		background: transparent;
	}
	.menu-button span:not(.sr-only) {
		display: block;
		width: 26px;
		height: 1px;
		background: currentColor;
		transition: transform 0.3s var(--ease);
	}
	.menu-button[aria-expanded="true"] span:first-child {
		transform: translateY(4px) rotate(45deg);
	}
	.menu-button[aria-expanded="true"] span:nth-child(2) {
		transform: translateY(-4px) rotate(-45deg);
	}
	.mobile-menu {
		position: fixed;
		z-index: -1;
		inset: 0;
		display: grid;
		padding: 110px 24px 44px;
		color: var(--white);
		background: var(--ink);
		place-items: center;
	}
	.mobile-menu[hidden] {
		display: none;
	}
	.mobile-menu nav {
		display: flex;
		width: min(100%, 480px);
		flex-direction: column;
	}
	.mobile-menu a {
		padding: 18px 0;
		font-family: var(--serif);
		font-size: 28px;
		text-decoration: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}
	.mobile-menu a:last-child {
		display: flex;
		justify-content: space-between;
		color: #d5bebe;
	}
	.hero-bottom {
		flex-direction: column;
	}
	.hero-bottom p {
		text-align: center;
	}
	.essence {
		grid-template-columns: 1fr;
		gap: 45px;
	}
	.atelier {
		grid-template-columns: 1fr;
		grid-template-rows: 580px auto 420px;
	}
	.atelier-wide {
		grid-row: auto;
	}
	.worlds-grid {
		grid-template-columns: 1fr;
	}
	.world {
		min-height: 620px;
	}
	.materials {
		grid-template-columns: 1fr;
	}
	.materials-mark {
		min-height: 520px;
	}
	.faq {
		grid-template-columns: 1fr;
		gap: 58px;
	}
	.process-steps {
		grid-template-columns: 1fr;
	}
	.process-steps li {
		min-height: 250px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}
	.values {
		grid-template-columns: 1fr;
	}
	.values article {
		min-height: 300px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	}
	.about {
		grid-template-columns: 1fr;
	}
	.about-portrait {
		height: 620px;
	}
	.about-copy {
		max-width: none;
	}
	.contact {
		min-height: 650px;
	}
	footer {
		gap: 22px;
		padding: 54px 0;
	}
}
@media (max-width: 560px) {
	:root {
		--page: calc(100% - 32px);
	}
	.hero-content {
		padding: 130px 0 105px;
	}
	.hero h1 {
		font-size: clamp(4rem, 18vw, 5.4rem);
	}
	.hero-bottom {
		margin-top: 32px;
		gap: 26px;
	}
	.hero-bottom p {
		font-size: 16px;
	}
	.button {
		width: 100%;
		min-width: 0;
		min-height: 60px;
	}
	.hero-icon {
		right: -30vw;
		bottom: -9vw;
		width: 100vw;
	}
	.essence {
		padding: 100px 0;
	}
	.essence h2 {
		font-size: clamp(3.2rem, 14vw, 4.4rem);
	}
	.atelier {
		padding: 7px;
		gap: 7px;
		grid-template-rows: 420px auto 310px;
	}
	.atelier-statement {
		padding: 54px 24px;
	}
	.atelier-statement img {
		width: 100px;
		height: 100px;
	}
	.worlds {
		padding: 100px 0;
	}
	.worlds > h2 {
		margin-bottom: 52px;
	}
	.world {
		min-height: 540px;
	}
	.world > div {
		padding: 34px 25px;
	}
	.materials-mark {
		min-height: 390px;
	}
	.materials-copy {
		padding: 76px 24px;
	}
	.faq {
		padding: 100px 0;
	}
	.process {
		padding: 100px 0;
	}
	.process-heading {
		margin-bottom: 58px;
	}
	.process h2 {
		font-size: clamp(3rem, 13vw, 4rem);
	}
	.process-steps li {
		padding: 30px 10px;
	}
	.process-steps h3 {
		margin-top: 36px;
	}
	.values article {
		padding: 60px 26px;
	}
	.about-portrait {
		height: 450px;
	}
	.about-copy {
		padding: 76px 22px;
	}
	.about h2 {
		font-size: clamp(2.9rem, 12vw, 3.9rem);
	}
	.contact {
		min-height: 620px;
		padding-inline: 16px;
	}
	.contact h2 {
		font-size: clamp(3.2rem, 14vw, 4.4rem);
	}
	footer {
		align-items: center;
		text-align: center;
	}
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.marquee-track {
		animation: none !important;
	}
	.motion-ready .reveal,
	.motion-ready .reveal-item {
		opacity: 1 !important;
		transform: none !important;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
