:root {
	--ink: #191919;
	--paper: #f5f3ee;
	--warm: #dedbd3;
	--line: #c7c3bb;
	--muted: #65635e;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: Arial, Helvetica, sans-serif;
}
a {
	color: inherit;
}
.wrap {
	width: min(1180px, calc(100% - 48px));
	margin: auto;
}
.topbar {
	padding: 22px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--line);
	font-size: 0.77rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.brand {
	text-decoration: none;
	font-weight: 700;
}
.nav {
	display: flex;
	gap: 26px;
}
.nav a {
	text-decoration: none;
	color: var(--muted);
}
.hero {
	min-height: 680px;
	background: var(--ink);
	color: var(--paper);
	overflow: hidden;
	position: relative;
}
.hero:after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.14;
	pointer-events: none;
	background-image:
		linear-gradient(90deg, transparent 49.85%, #fff 50%, transparent 50.15%),
		linear-gradient(0deg, transparent 49.85%, #fff 50%, transparent 50.15%);
	background-size: 100px 100px;
	mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.hero-inner {
	min-height: 605px;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	position: relative;
	z-index: 1;
}
.eyebrow {
	margin: 0 0 22px;
	color: #bcb9b2;
	font-size: 0.74rem;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}
h1 {
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 400;
	font-size: clamp(3.4rem, 7vw, 6.7rem);
	line-height: 0.9;
	letter-spacing: -0.065em;
	margin: 0;
	max-width: 690px;
}
h1 em {
	font-style: italic;
	color: #d6d2ca;
}
.lead {
	max-width: 445px;
	color: #d2cfc8;
	font-size: 1.08rem;
	line-height: 1.65;
	margin: 30px 0;
}
.button {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	padding: 15px 19px;
	background: var(--paper);
	color: var(--ink);
	border: 1px solid var(--paper);
	text-decoration: none;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: 0.2s;
}
.button:hover {
	background: transparent;
	color: var(--paper);
}
.piano-art {
	width: 100%;
	height: auto;
	display: block;
	margin-left: auto;
	filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.45));
}
.price-band {
	background: #dedbd4;
}
.price-inner {
	min-height: 168px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.price-copy {
	margin: 0;
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}
.price {
	margin: 0;
	font-family: Georgia, serif;
	font-size: clamp(4rem, 9vw, 7rem);
	letter-spacing: -0.08em;
	line-height: 0.75;
}
.price span {
	font:
		700 0.74rem Arial,
		sans-serif;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-left: 12px;
}
section {
	padding: 110px 0;
}
.intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9%;
	align-items: start;
}
.section-label {
	color: var(--muted);
	font-size: 0.74rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin: 7px 0;
}
h2 {
	margin: 0;
	font:
		400 clamp(2.6rem, 5vw, 4.7rem)/0.96 Georgia,
		serif;
	letter-spacing: -0.06em;
}
.intro p {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.72;
	color: #474641;
}
.services {
	background: #e9e7e1;
}
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border-top: 1px solid var(--line);
	margin-top: 58px;
}
.service {
	padding: 28px 25px 30px 0;
	min-height: 185px;
	border-bottom: 1px solid var(--line);
}
.service:nth-child(3n + 2),
.service:nth-child(3n + 3) {
	padding-left: 25px;
}
.service:nth-child(3n + 2) {
	border-left: 1px solid var(--line);
	border-right: 1px solid var(--line);
}
.service-num {
	color: #77746e;
	font:
		italic 1rem Georgia,
		serif;
}
h3 {
	font:
		400 1.55rem Georgia,
		serif;
	margin: 32px 0 10px;
}
.service p {
	margin: 0;
	color: var(--muted);
	font-size: 0.94rem;
	line-height: 1.55;
}
.contact {
	background: var(--ink);
	color: var(--paper);
	padding: 95px 0;
}
.contact-inner {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	align-items: end;
}
.contact h2 {
	max-width: 670px;
}
.contact .section-label {
	color: #aaa69e;
}
.contact-note {
	margin: 25px 0 0;
	color: #cac7c0;
	max-width: 490px;
	line-height: 1.6;
}
.contact .button {
	white-space: nowrap;
}
.contact-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}
.contact-links .button {
	background: transparent;
	color: var(--paper);
}
.contact-links .button:hover {
	background: var(--paper);
	color: var(--ink);
}
.contact-details {
	min-width: 245px;
	padding: 18px 0;
	border-top: 1px solid #595751;
	border-bottom: 1px solid #595751;
	font-style: normal;
}
.contact-details p {
	margin: 8px 0;
	color: #d8d5ce;
	font-size: 0.95rem;
}
.contact-details a {
	text-decoration: none;
}
footer {
	padding: 26px 0;
	color: #6f6c65;
	font-size: 0.74rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}
footer .wrap {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}
@media (max-width: 720px) {
	.wrap {
		width: min(100% - 32px, 1180px);
	}
	.nav {
		display: none;
	}
	.hero-inner {
		grid-template-columns: 1fr;
		min-height: 680px;
		padding-top: 67px;
		align-content: start;
	}
	.piano-art {
		width: 87%;
		margin: 32px auto -10px;
	}
	.price-inner {
		min-height: 140px;
		align-items: start;
		flex-direction: column;
		justify-content: center;
		gap: 18px;
	}
	.intro {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	section {
		padding: 76px 0;
	}
	.service-grid {
		grid-template-columns: 1fr;
		margin-top: 42px;
	}
	.service,
	.service:nth-child(3n + 2),
	.service:nth-child(3n + 3) {
		padding: 24px 0;
		border-left: 0;
		border-right: 0;
	}
	.contact-inner {
		display: block;
	}
	.contact-details {
		margin-top: 34px;
	}
	.contact-links .button {
		margin-top: 0;
	}
	footer .wrap {
		display: block;
		line-height: 1.7;
	}
}
