:root {
	--color-white: #fbfaf7;
	--color-bg: #f5f3ef;
	--color-bg-soft: #efebe4;
	--color-ink: #1f1f1d;
	--color-text: #3e3b36;
	--color-muted: #7a756d;
	--color-line: #dcd6cc;
	--color-line-strong: #bdb5aa;
	--color-sand: #d7c6ad;
	--color-sand-soft: #ebe0d2;
	--font-sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--font-serif: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
	--container: 1180px;
	--narrow: 860px;
	--header-height: 78px;
	--space-section: 9rem;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-white);
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.9;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.is-menu-open {
	overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
	outline: 1px solid var(--color-ink);
	outline-offset: 5px;
}

button {
	font: inherit;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

p,
h1,
h2,
h3,
figure {
	margin: 0;
}

::selection {
	background: var(--color-sand);
	color: var(--color-ink);
}

.skip-link {
	position: fixed;
	z-index: 1000;
	top: 1rem;
	left: 1rem;
	transform: translateY(-160%);
	background: var(--color-ink);
	color: var(--color-white);
	padding: 0.7rem 1rem;
	font-size: 0.875rem;
	transition: transform 180ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(251, 250, 247, 0.86);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(220, 214, 204, 0.6);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	width: min(calc(100% - 3rem), 1320px);
	height: var(--header-height);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.site-brand {
	display: inline-grid;
	gap: 0.1rem;
	line-height: 1;
	color: var(--color-ink);
}

.site-brand__main {
	font-family: var(--font-serif);
	font-size: 1.05rem;
	text-transform: uppercase;
}

.site-brand__sub {
	font-size: 0.66rem;
	color: var(--color-muted);
}

.custom-logo-link {
	display: inline-block;
	max-width: 190px;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
}

.site-nav a,
.site-nav__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--color-muted);
	font-size: 0.78rem;
	line-height: 1;
}

.site-nav a::after,
.site-nav__link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0.6rem;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 260ms var(--ease);
}

.site-nav a:hover,
.site-nav__link:hover {
	color: var(--color-ink);
}

.site-nav a:hover::after,
.site-nav__link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-nav-toggle {
	display: none;
	border: 0;
	background: transparent;
	color: var(--color-ink);
	cursor: pointer;
	min-width: 44px;
	min-height: 44px;
	padding: 0;
}

.site-nav-toggle__text {
	font-size: 0.78rem;
}

.site-nav-toggle__line {
	display: block;
	width: 1.75rem;
	height: 1px;
	margin-left: 0.7rem;
	background: currentColor;
}

.site-main {
	overflow: hidden;
}

.hero {
	position: relative;
	min-height: 100svh;
	display: grid;
	align-items: center;
	padding: calc(var(--header-height) + 4.8rem) 1.5rem 4.4rem;
	background:
		linear-gradient(90deg, rgba(251, 250, 247, 0.82), rgba(251, 250, 247, 0.52)),
		url("../images/hero-bg.webp"),
		linear-gradient(180deg, var(--color-white), var(--color-bg));
	background-position: center;
	background-size: cover;
}

.hero::before {
	content: "";
	position: absolute;
	left: max(1.5rem, calc((100% - var(--container)) / 2));
	bottom: 9%;
	width: 16rem;
	height: 16rem;
	border-radius: 999px 999px 999px 45%;
	background: rgba(235, 224, 210, 0.42);
	filter: blur(8px);
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	right: max(1.5rem, calc((100% - var(--container)) / 2));
	bottom: 7rem;
	width: 1px;
	height: 5.8rem;
	background: rgba(119, 153, 169, 0.22);
	pointer-events: none;
}

.hero__ornament {
	position: absolute;
	z-index: 0;
	pointer-events: none;
}

.hero__ornament--line {
	left: max(1.5rem, calc((100% - var(--container)) / 2));
	top: calc(var(--header-height) + 3rem);
	width: 7.2rem;
	height: 1px;
	background: rgba(119, 153, 169, 0.22);
}

.hero__ornament--dots {
	left: max(1.5rem, calc((100% - var(--container)) / 2));
	bottom: 6.1rem;
	width: 6.7rem;
	height: 2.9rem;
	background-image: radial-gradient(circle, rgba(119, 153, 169, 0.32) 1px, transparent 1.1px);
	background-size: 1.24rem 1.24rem;
}

.hero__inner {
	position: relative;
	z-index: 1;
	width: min(calc(100% - 3rem), var(--container));
	min-height: calc(100svh - var(--header-height) - 9.2rem);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.78fr);
	gap: 5.6rem;
	align-items: center;
}

.hero__content {
	max-width: 50rem;
}

.hero__eyebrow,
.section__label {
	color: var(--color-muted);
	font-size: 0.78rem;
	line-height: 1.4;
	text-transform: uppercase;
}

.hero__eyebrow {
	color: #7899a8;
	margin-bottom: 1.65rem;
}

.hero__title {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.18em;
	color: var(--color-ink);
	font-family: var(--font-sans);
	font-size: 6.35rem;
	font-weight: 300;
	line-height: 1;
	text-transform: none;
}

.hero__lead {
	max-width: 36rem;
	margin-top: 2rem;
	color: var(--color-ink);
	font-size: 1.18rem;
	line-height: 2;
}

.hero__meta {
	max-width: 36rem;
	margin-top: 1.05rem;
	color: var(--color-muted);
	font-size: 0.94rem;
	line-height: 2;
}

.hero__visual {
	position: relative;
	justify-self: end;
	width: min(100%, 36rem);
}

.hero__visual::before {
	content: "";
	position: absolute;
	left: -1.35rem;
	bottom: -1.35rem;
	width: 52%;
	height: 38%;
	background: rgba(235, 224, 210, 0.46);
	filter: blur(2px);
	pointer-events: none;
}

.hero__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: rgba(243, 240, 233, 0.86);
	box-shadow: 0 2rem 5.2rem rgba(31, 31, 29, 0.08);
}

.hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(251, 250, 247, 0.04), rgba(251, 250, 247, 0.14));
	pointer-events: none;
}

.hero__image,
.hero__placeholder {
	width: 100%;
	height: 100%;
}

.hero__image {
	object-fit: cover;
	object-position: center;
	filter: saturate(0.92) brightness(1.02);
}

.hero__placeholder {
	position: relative;
	isolation: isolate;
	background:
		linear-gradient(115deg, rgba(255, 255, 255, 0.84) 0 34%, transparent 34%),
		linear-gradient(180deg, #faf9f5 0%, #ece8df 100%);
}

.hero__placeholder-light,
.hero__placeholder-vase,
.hero__placeholder-flower,
.hero__placeholder-laptop {
	position: absolute;
	display: block;
}

.hero__placeholder-light {
	inset: 0;
	z-index: 0;
	background: linear-gradient(118deg, transparent 0 36%, rgba(255, 255, 255, 0.72) 36% 58%, transparent 58%);
}

.hero__placeholder-vase {
	z-index: 2;
	left: 16%;
	top: 43%;
	width: 4rem;
	height: 7rem;
	border-radius: 2rem 2rem 1.1rem 1.1rem;
	background: #e5ded2;
}

.hero__placeholder-flower {
	z-index: 1;
	left: 22%;
	top: 20%;
	width: 1px;
	height: 15rem;
	background: rgba(122, 117, 109, 0.32);
	transform: rotate(-15deg);
	transform-origin: bottom;
}

.hero__placeholder-laptop {
	z-index: 2;
	right: 10%;
	bottom: 22%;
	width: 56%;
	height: 34%;
	border-radius: 0.5rem 0.5rem 0 0;
	background: #c8c9c6;
	box-shadow: inset 1rem -1rem 2rem rgba(31, 31, 29, 0.12);
}

.hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 2rem;
	display: grid;
	justify-items: center;
	gap: 0.75rem;
	transform: translateX(-50%);
	color: var(--color-muted);
	font-size: 0.76rem;
}

.hero__scroll::after {
	content: "";
	display: block;
	width: 1px;
	height: 3rem;
	background: rgba(189, 181, 170, 0.82);
}

.section {
	width: min(calc(100% - 3rem), var(--container));
	margin: 0 auto;
	padding: var(--space-section) 0;
}

.section__head {
	display: grid;
	grid-template-columns: minmax(7rem, 0.34fr) minmax(0, 1fr);
	gap: 2.5rem;
	align-items: start;
	margin-bottom: 4rem;
}

.section__title {
	color: var(--color-ink);
	font-family: var(--font-serif);
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.35;
}

.section__description {
	max-width: 34rem;
	color: var(--color-muted);
	font-size: 0.94rem;
}

.intro {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1fr);
	gap: 6rem;
	align-items: start;
}

.intro .section__head {
	display: block;
	margin-bottom: 0;
}

.intro .section__label {
	margin-bottom: 1.5rem;
}

.intro__body {
	display: grid;
	gap: 1.7rem;
	max-width: 42rem;
	padding-top: 0.7rem;
	font-size: 1.02rem;
}

.works {
	width: 100%;
	padding-left: max(1.5rem, calc((100% - var(--container)) / 2));
	padding-right: max(1.5rem, calc((100% - var(--container)) / 2));
	background: var(--color-bg);
}

.works__head {
	width: min(100%, var(--container));
	margin-left: auto;
	margin-right: auto;
}

.works__head .section__title {
	grid-column: 2;
}

.works__head .section__description {
	grid-column: 2;
}

.works__grid {
	width: min(100%, var(--container));
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 5.5rem 2rem;
}

.work-card {
	min-width: 0;
}

.work-card:nth-child(3n+2) {
	margin-top: 4.8rem;
}

.work-card:nth-child(3n) {
	margin-top: 1.8rem;
}

.work-card__link {
	display: grid;
	gap: 1.35rem;
}

.work-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--color-white);
	border: 1px solid rgba(220, 214, 204, 0.8);
}

.work-card__image,
.work-card__visual {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms var(--ease);
}

.work-card__link:hover .work-card__image,
.work-card__link:hover .work-card__visual {
	transform: scale(1.035);
}

.work-card__visual {
	position: relative;
	overflow: hidden;
	background: var(--color-white);
}

.work-card__visual::before,
.work-card__visual::after,
.work-card__visual-line {
	content: "";
	position: absolute;
	display: block;
}

.work-card__visual--restaurant {
	background:
		linear-gradient(90deg, rgba(31, 31, 29, 0.72) 0 28%, transparent 28%),
		linear-gradient(135deg, #ede5d8, #f7f3ed);
}

.work-card__visual--restaurant::before {
	inset: 15% 10% auto auto;
	width: 48%;
	height: 58%;
	background: #2b2a27;
}

.work-card__visual--restaurant::after {
	left: 12%;
	bottom: 17%;
	width: 58%;
	height: 1px;
	background: rgba(255, 255, 255, 0.76);
}

.work-card__visual--salon {
	background:
		linear-gradient(180deg, transparent 0 54%, rgba(215, 198, 173, 0.34) 54%),
		#f8f6f1;
}

.work-card__visual--salon::before {
	left: 16%;
	top: 17%;
	width: 45%;
	height: 56%;
	border: 1px solid var(--color-line-strong);
	background: rgba(255, 255, 255, 0.66);
}

.work-card__visual--salon::after {
	right: 16%;
	top: 25%;
	width: 22%;
	height: 22%;
	border-radius: 50%;
	background: var(--color-sand-soft);
}

.work-card__visual--shop {
	background:
		linear-gradient(90deg, transparent 0 62%, rgba(31, 31, 29, 0.08) 62%),
		#f4f1eb;
}

.work-card__visual--shop::before {
	left: 12%;
	top: 18%;
	width: 22%;
	height: 48%;
	background: #dfd2bf;
}

.work-card__visual--shop::after {
	left: 40%;
	top: 31%;
	width: 28%;
	height: 28%;
	border: 1px solid var(--color-line-strong);
}

.work-card__visual--clinic {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0 50%, transparent 50%),
		#ece8df;
}

.work-card__visual--clinic::before {
	left: 14%;
	top: 18%;
	width: 70%;
	height: 1px;
	background: var(--color-line-strong);
	box-shadow: 0 54px 0 var(--color-line), 0 108px 0 var(--color-line);
}

.work-card__visual--clinic::after {
	right: 15%;
	bottom: 15%;
	width: 3.7rem;
	height: 3.7rem;
	border-radius: 50%;
	border: 1px solid var(--color-sand);
}

.work-card__visual--portfolio {
	background:
		linear-gradient(90deg, rgba(31, 31, 29, 0.08) 1px, transparent 1px) 0 0 / 25% 100%,
		linear-gradient(180deg, rgba(31, 31, 29, 0.08) 1px, transparent 1px) 0 0 / 100% 33.333%,
		#f9f7f3;
}

.work-card__visual--portfolio::before {
	left: 10%;
	top: 15%;
	width: 36%;
	height: 34%;
	background: #d7c6ad;
}

.work-card__visual--portfolio::after {
	right: 12%;
	bottom: 12%;
	width: 40%;
	height: 38%;
	background: #2a2925;
	opacity: 0.9;
}

.work-card__visual--support {
	background:
		linear-gradient(135deg, rgba(215, 198, 173, 0.5), transparent 48%),
		#f8f6f2;
}

.work-card__visual--support::before {
	left: 12%;
	top: 22%;
	width: 76%;
	height: 1px;
	background: var(--color-line-strong);
	box-shadow: 0 32px 0 var(--color-line), 0 64px 0 var(--color-line), 0 96px 0 var(--color-line);
}

.work-card__visual--support::after {
	right: 16%;
	bottom: 14%;
	width: 28%;
	height: 24%;
	border: 1px solid var(--color-line-strong);
}

.work-card__body {
	display: grid;
	gap: 0.5rem;
}

.work-card__category,
.work-card__tools {
	color: var(--color-muted);
	font-size: 0.75rem;
	line-height: 1.6;
}

.work-card__title {
	color: var(--color-ink);
	font-family: var(--font-serif);
	font-size: 1.45rem;
	font-weight: 400;
	line-height: 1.35;
}

.work-card__description {
	font-size: 0.9rem;
	line-height: 1.85;
}

.service__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	list-style: none;
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
}

.service__item {
	min-height: 22rem;
	padding: 2rem 1.6rem 2.2rem;
	border-right: 1px solid var(--color-line);
	display: flex;
	flex-direction: column;
}

.service__item:first-child {
	border-left: 1px solid var(--color-line);
}

.service__number {
	color: var(--color-line-strong);
	font-family: var(--font-serif);
	font-size: 2.4rem;
	line-height: 1;
}

.service__title {
	margin-top: 3.2rem;
	color: var(--color-ink);
	font-family: var(--font-serif);
	font-size: 1.35rem;
	font-weight: 400;
	line-height: 1.45;
}

.service__en {
	margin-top: 0.5rem;
	color: var(--color-muted);
	font-size: 0.72rem;
	text-transform: uppercase;
}

.service__description {
	margin-top: auto;
	font-size: 0.9rem;
	line-height: 1.9;
}

.concept {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
	gap: 5rem;
	align-items: center;
	padding-left: max(1.5rem, calc((100% - var(--container)) / 2));
	padding-right: max(1.5rem, calc((100% - var(--container)) / 2));
	background: linear-gradient(180deg, var(--color-white), var(--color-bg));
}

.concept__visual {
	position: relative;
	min-height: 35rem;
	border-left: 1px solid var(--color-line);
	border-right: 1px solid var(--color-line);
}

.concept__visual::before {
	content: "QUIET DESIGN";
	position: absolute;
	left: 50%;
	top: 50%;
	color: rgba(31, 31, 29, 0.06);
	font-family: var(--font-serif);
	font-size: 5.2rem;
	line-height: 1;
	text-align: center;
	transform: translate(-50%, -50%);
}

.concept__paper {
	position: absolute;
	display: block;
	background: rgba(251, 250, 247, 0.78);
	border: 1px solid rgba(220, 214, 204, 0.94);
	box-shadow: 0 24px 70px rgba(31, 31, 29, 0.06);
}

.concept__paper--large {
	left: 17%;
	top: 18%;
	width: 42%;
	height: 55%;
}

.concept__paper--small {
	right: 16%;
	bottom: 16%;
	width: 29%;
	height: 34%;
	background: rgba(235, 224, 210, 0.52);
}

.concept__content {
	max-width: 42rem;
}

.concept__content .section__label {
	margin-bottom: 1.4rem;
}

.concept__lead {
	margin-top: 2rem;
	font-size: 1rem;
}

.concept__list {
	display: grid;
	gap: 1.2rem;
	margin-top: 3.2rem;
	list-style: none;
}

.concept__item {
	display: grid;
	grid-template-columns: 10rem minmax(0, 1fr);
	gap: 2rem;
	padding-top: 1.2rem;
	border-top: 1px solid var(--color-line);
}

.concept__item h3 {
	color: var(--color-ink);
	font-family: var(--font-serif);
	font-size: 1.15rem;
	font-weight: 400;
	line-height: 1.5;
}

.concept__item p {
	font-size: 0.92rem;
}

.profile {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.72fr);
	gap: 6rem;
	align-items: center;
}

.profile__content {
	max-width: 44rem;
}

.profile__content .section__label {
	margin-bottom: 1.4rem;
}

.profile__content p + p {
	margin-top: 1.6rem;
}

.profile__meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 3rem 0 0;
	border-top: 1px solid var(--color-line);
}

.profile__meta div {
	padding-top: 1rem;
}

.profile__meta dt {
	color: var(--color-muted);
	font-size: 0.72rem;
	text-transform: uppercase;
}

.profile__meta dd {
	margin: 0.3rem 0 0;
	color: var(--color-ink);
	font-family: var(--font-serif);
	font-size: 1.15rem;
	line-height: 1.4;
}

.profile__visual {
	position: relative;
	aspect-ratio: 4 / 5;
	background:
		linear-gradient(90deg, rgba(220, 214, 204, 0.5) 1px, transparent 1px) 0 0 / 33.333% 100%,
		linear-gradient(180deg, rgba(220, 214, 204, 0.5) 1px, transparent 1px) 0 0 / 100% 25%,
		var(--color-bg);
	border: 1px solid var(--color-line);
}

.profile__sheet {
	position: absolute;
	display: block;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	box-shadow: 0 18px 54px rgba(31, 31, 29, 0.07);
}

.profile__sheet--one {
	left: 16%;
	top: 17%;
	width: 54%;
	height: 46%;
}

.profile__sheet--two {
	right: 12%;
	bottom: 14%;
	width: 48%;
	height: 37%;
	background: var(--color-sand-soft);
}

.profile__dot {
	position: absolute;
	right: 22%;
	top: 24%;
	width: 4.8rem;
	height: 4.8rem;
	border-radius: 50%;
	background: var(--color-sand);
	opacity: 0.5;
}

.contact {
	position: relative;
	padding: 10rem 1.5rem;
	background:
		linear-gradient(90deg, rgba(220, 214, 204, 0.46) 1px, transparent 1px) 50% 0 / 24% 100%,
		var(--color-ink);
	color: var(--color-white);
	text-align: center;
}

.contact::before {
	content: "";
	position: absolute;
	inset: 2rem 2rem;
	border: 1px solid rgba(251, 250, 247, 0.14);
	pointer-events: none;
}

.contact__inner {
	position: relative;
	z-index: 1;
	width: min(100%, var(--narrow));
	margin: 0 auto;
	display: grid;
	justify-items: center;
	gap: 1.8rem;
}

.contact .section__label {
	color: rgba(251, 250, 247, 0.72);
}

.contact__title {
	font-family: var(--font-serif);
	font-size: 6rem;
	font-weight: 400;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1px rgba(251, 250, 247, 0.66);
	text-stroke: 1px rgba(251, 250, 247, 0.66);
}

.contact__lead {
	max-width: 39rem;
	color: rgba(251, 250, 247, 0.78);
}

.contact__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.4rem;
	min-width: 12rem;
	padding: 0.8rem 1.6rem;
	border: 1px solid rgba(251, 250, 247, 0.5);
	color: var(--color-white);
	font-size: 0.94rem;
	transition: background-color 220ms ease, color 220ms ease;
}

.contact__button:hover {
	background: var(--color-white);
	color: var(--color-ink);
}

.site-footer {
	padding: 2rem 1.5rem;
	background: var(--color-ink);
	color: rgba(251, 250, 247, 0.68);
	border-top: 1px solid rgba(251, 250, 247, 0.16);
}

.site-footer__inner {
	width: min(100%, var(--container));
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.site-footer__brand {
	color: var(--color-white);
	font-family: var(--font-serif);
	font-size: 1rem;
	text-transform: uppercase;
}

.site-footer__list {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	list-style: none;
}

.site-footer__list a {
	font-size: 0.78rem;
}

.site-footer__copy {
	font-size: 0.78rem;
}

.archive-layout,
.entry-content-layout {
	padding-top: calc(var(--header-height) + 5rem);
}

.archive-layout__list {
	display: grid;
	gap: 1rem;
}

.archive-card {
	border-top: 1px solid var(--color-line);
}

.archive-card__link {
	display: grid;
	grid-template-columns: 10rem minmax(0, 0.8fr) minmax(0, 1fr);
	gap: 2rem;
	padding: 1.8rem 0;
}

.archive-card__date,
.archive-card__excerpt {
	color: var(--color-muted);
	font-size: 0.86rem;
}

.archive-card__title {
	color: var(--color-ink);
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.4;
}

.entry-content-layout {
	width: min(calc(100% - 3rem), var(--narrow));
}

.entry-content-layout__header {
	margin-bottom: 3rem;
}

.entry-content-layout__body > * + * {
	margin-top: 1.4rem;
}

.entry-content-layout__body a {
	border-bottom: 1px solid currentColor;
}

.reveal {
	opacity: 0;
	transform: translateY(1.4rem);
	transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1100px) {
	:root {
		--space-section: 7rem;
	}

	.hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.78fr);
		gap: 3.8rem;
	}

	.hero__title {
		font-size: 5.15rem;
	}

	.section__title {
		font-size: 2.45rem;
	}

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

	.work-card:nth-child(n) {
		margin-top: 0;
	}

	.work-card:nth-child(even) {
		margin-top: 3rem;
	}

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

	.service__item:nth-child(3) {
		border-left: 1px solid var(--color-line);
	}

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

	.concept__visual {
		min-height: 22rem;
	}
}

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

@media (max-width: 760px) {
	:root {
		--header-height: 68px;
		--space-section: 5.8rem;
	}

	body {
		font-size: 0.95rem;
		line-height: 1.85;
	}

	.site-header__inner {
		width: min(calc(100% - 2rem), 1320px);
	}

	.site-nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: flex-end;
	}

	.site-nav {
		position: fixed;
		inset: var(--header-height) 0 auto 0;
		background: rgba(251, 250, 247, 0.98);
		border-bottom: 1px solid var(--color-line);
		transform: translateY(-120%);
		transition: transform 320ms var(--ease);
	}

	.admin-bar .site-nav {
		inset: calc(var(--header-height) + 46px) 0 auto 0;
	}

	.site-nav.is-open {
		transform: translateY(0);
	}

	.site-nav__list {
		width: min(calc(100% - 2rem), 1320px);
		margin: 0 auto;
		padding: 1.3rem 0 1.8rem;
		display: grid;
		gap: 0.3rem;
	}

	.site-nav a,
	.site-nav__link {
		width: 100%;
		font-size: 1rem;
	}

	.hero {
		min-height: auto;
		padding: calc(var(--header-height) + 4.2rem) 1rem 5rem;
		background:
			linear-gradient(180deg, rgba(251, 250, 247, 0.82), rgba(251, 250, 247, 0.64)),
			url("../images/hero-bg.webp"),
			linear-gradient(180deg, var(--color-white), var(--color-bg));
		background-position: center;
		background-size: cover;
	}

	.hero::before {
		left: -4rem;
		bottom: 8rem;
		width: 13rem;
		height: 13rem;
	}

	.hero::after {
		right: 1rem;
		bottom: 4.4rem;
		height: 4.2rem;
	}

	.hero__ornament--line {
		left: 1rem;
		top: calc(var(--header-height) + 2rem);
		width: 5rem;
	}

	.hero__ornament--dots {
		left: 1rem;
		bottom: 3.2rem;
		width: 5.2rem;
		height: 2.4rem;
		background-size: 1.12rem 1.12rem;
	}

	.hero__inner {
		width: min(100%, 34rem);
		min-height: auto;
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.hero__content {
		max-width: none;
	}

	.hero__eyebrow {
		margin-bottom: 1.2rem;
	}

	.hero__title {
		font-size: 3.35rem;
		line-height: 1.06;
		gap: 0.16em;
	}

	.hero__lead {
		margin-top: 1.5rem;
		font-size: 1rem;
		line-height: 1.9;
	}

	.hero__meta {
		font-size: 0.88rem;
		line-height: 1.9;
	}

	.hero__visual {
		justify-self: center;
		width: min(100%, 26rem);
	}

	.hero__visual::before {
		left: -0.65rem;
		bottom: -0.65rem;
	}

	.hero__media {
		aspect-ratio: 4 / 3.4;
	}

	.hero__scroll {
		bottom: 1.2rem;
	}

	.section,
	.entry-content-layout {
		width: min(calc(100% - 2rem), var(--container));
	}

	.section__head {
		display: grid;
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 2.6rem;
	}

	.section__title {
		font-size: 2rem;
	}

	.intro {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.works {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.works__head .section__title,
	.works__head .section__description {
		grid-column: auto;
	}

	.works__grid {
		grid-template-columns: 1fr;
		gap: 3.4rem;
	}

	.work-card:nth-child(even) {
		margin-top: 0;
	}

	.work-card__title {
		font-size: 1.35rem;
	}

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

	.service__item,
	.service__item:first-child,
	.service__item:nth-child(3) {
		min-height: auto;
		border-left: 1px solid var(--color-line);
	}

	.service__item + .service__item {
		border-top: 1px solid var(--color-line);
	}

	.service__title {
		margin-top: 2.3rem;
	}

	.service__description {
		margin-top: 2rem;
	}

	.concept {
		padding-left: 1rem;
		padding-right: 1rem;
		gap: 3rem;
	}

	.concept__visual {
		min-height: 18rem;
		order: 2;
	}

	.concept__visual::before {
		font-size: 3rem;
	}

	.concept__item {
		grid-template-columns: 1fr;
		gap: 0.4rem;
	}

	.profile {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.profile__visual {
		aspect-ratio: 5 / 4;
	}

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

	.contact {
		padding: 7rem 1rem;
		background:
			linear-gradient(90deg, rgba(220, 214, 204, 0.28) 1px, transparent 1px) 50% 0 / 50% 100%,
			var(--color-ink);
	}

	.contact::before {
		inset: 1rem;
	}

	.contact__title {
		font-size: 3.45rem;
	}

	.site-footer__inner {
		display: grid;
		gap: 1rem;
	}

	.archive-card__link {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 1ms !important;
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

