:root {
	--primary: #14120f;
	--secondary: #a67c42;
	--white: #ffffff;
	--primary-04: color-mix(in srgb, var(--primary) 4%, transparent);
	--primary-06: color-mix(in srgb, var(--primary) 6%, transparent);
	--primary-08: color-mix(in srgb, var(--primary) 8%, transparent);
	--primary-12: color-mix(in srgb, var(--primary) 12%, transparent);
	--primary-16: color-mix(in srgb, var(--primary) 16%, transparent);
	--primary-64: color-mix(in srgb, var(--primary) 64%, transparent);
	--primary-72: color-mix(in srgb, var(--primary) 72%, transparent);
	--secondary-10: color-mix(in srgb, var(--secondary) 10%, transparent);
	--secondary-18: color-mix(in srgb, var(--secondary) 18%, transparent);
	--secondary-28: color-mix(in srgb, var(--secondary) 28%, transparent);
	--shadow: 0 26px 70px color-mix(in srgb, var(--primary) 12%, transparent);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	color: var(--primary);
	background: linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), var(--primary-04) calc(100% - 1px)), var(--white);
	background-size: clamp(70px, 8vw, 118px) 100%;
	font-family:
		Inter,
		ui-sans-serif,
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	line-height: 1.5;
}

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

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px clamp(20px, 5vw, 72px);
	background: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid var(--primary-08);
	backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.social-links,
.store-meta,
.store-hours li,
.site-footer {
	display: flex;
	align-items: center;
}

.brand {
	gap: 12px;
	min-width: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.brand-mark {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	flex: 0 0 auto;
	color: var(--white);
	background: var(--primary);
	border: 1px solid var(--secondary);
	border-radius: 50%;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
}

.site-nav {
	gap: clamp(12px, 2vw, 26px);
	color: var(--primary-72);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.site-nav a {
	transition:
		color 180ms ease,
		border-color 180ms ease,
		background 180ms ease;
}

.site-nav a:hover {
	color: var(--secondary);
}

.nav-action {
	padding: 10px 16px;
	border: 1px solid var(--secondary);
	border-radius: 999px;
	color: var(--secondary);
}

.nav-action:hover {
	background: var(--secondary-10);
}

.profile-page {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	padding: clamp(24px, 4vw, 52px) 0;
}

.intro-section {
	position: relative;
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
	align-items: stretch;
	gap: clamp(28px, 6vw, 82px);
	width: 100%;
	padding: clamp(22px, 4vw, 42px);
	background: var(--white);
	border: 1px solid var(--primary);
	border-radius: 8px;
	box-shadow:
		var(--shadow),
		16px 16px 0 var(--secondary);
	overflow: hidden;
}

.intro-section::before {
	position: absolute;
	top: clamp(18px, 4vw, 48px);
	right: 0;
	z-index: 0;
	content: 'INTRO';
	color: var(--primary-04);
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(4rem, 13vw, 11rem);
	line-height: 0.8;
	pointer-events: none;
}

.intro-section > * {
	position: relative;
	z-index: 1;
}

.intro-media {
	position: relative;
	align-self: center;
	min-height: 460px;
	padding: 14px;
	overflow: visible;
	background: var(--white);
	border: 1px solid var(--primary);
	border-radius: 8px;
	box-shadow: 10px 10px 0 var(--secondary);
}

.intro-media img {
	width: 100%;
	height: 100%;
	min-height: 432px;
	object-fit: cover;
	border-radius: 4px;
}

.intro-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(12px, 3vw, 34px) 0 clamp(12px, 3vw, 34px) clamp(0px, 2vw, 28px);
}

.eyebrow {
	margin: 0 0 16px;
	color: var(--secondary);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	overflow-wrap: anywhere;
}

h1,
h2,
h3 {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-weight: 500;
	line-height: 0.98;
}

h1 {
	max-width: 820px;
	font-size: clamp(3.4rem, 9vw, 7.2rem);
}

h2 {
	max-width: 820px;
	font-size: clamp(1.9rem, 4vw, 3.4rem);
}

h3 {
	font-size: clamp(1.28rem, 2.5vw, 1.9rem);
	line-height: 1.08;
}

.intro-text {
	max-width: 620px;
	margin: 22px 0 0;
	color: var(--primary-72);
	font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.profile-role {
	width: fit-content;
	margin: 18px 0 0;
	padding: 8px 14px;
	color: var(--secondary);
	background: var(--secondary-10);
	border: 1px solid var(--secondary-18);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.social-links {
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.social-links a {
	position: relative;
	display: grid;
	width: 54px;
	height: 54px;
	place-items: center;
	flex: 0 0 auto;
	border: 1px solid var(--primary);
	border-radius: 50%;
	color: var(--primary);
	background: var(--white);
	box-shadow: 6px 6px 0 var(--secondary);
	transition:
		transform 180ms ease,
		color 180ms ease,
		background 180ms ease,
		box-shadow 180ms ease;
}

.social-links a:hover {
	color: var(--white);
	background: var(--primary);
	box-shadow: 3px 3px 0 var(--secondary);
	transform: translate(3px, 3px);
}

.social-links a::after {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	z-index: 3;
	content: attr(data-label);
	padding: 6px 8px;
	color: var(--white);
	background: var(--primary);
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	opacity: 0;
	pointer-events: none;
	text-transform: uppercase;
	transform: translate(-50%, -4px);
	transition:
		opacity 180ms ease,
		transform 180ms ease;
}

.social-links a:hover::after,
.social-links a:focus-visible::after {
	opacity: 1;
	transform: translate(-50%, 0);
}

.social-links svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.profile-book-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 48px;
	margin-top: 28px;
	padding: 14px 22px;
	color: var(--white);
	background: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transition:
		background 180ms ease,
		border-color 180ms ease,
		color 180ms ease;
}

.profile-book-link:hover {
	color: var(--primary);
	background: var(--secondary-10);
	border-color: var(--secondary);
}

.services-section,
.gallery-section,
.stores-section {
	margin-top: clamp(18px, 3vw, 30px);
	padding: clamp(24px, 4vw, 42px);
	background: var(--white);
	border: 1px solid var(--primary-12);
	border-radius: 8px;
	box-shadow: 0 18px 46px var(--primary-08);
}

.section-heading {
	display: grid;
	gap: 18px;
	width: 100%;
	margin: 0 auto 34px;
}

.services-section {
	color: var(--primary);
}

.services-heading {
	grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
	align-items: end;
}

.services-heading > p {
	margin: 0;
	color: var(--primary-64);
}

.section-description {
	margin: 0;
	color: var(--primary-64);
}

.services-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	width: 100%;
	margin: 0 auto;
	background: var(--primary-12);
	border: 1px solid var(--primary-12);
	border-radius: 8px;
	overflow: hidden;
}

.service-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 22px;
	align-items: start;
	min-height: 138px;
	padding: clamp(18px, 3vw, 28px);
	background: var(--white);
}

.service-card h3 {
	color: var(--primary);
}

.service-card p {
	max-width: 520px;
	margin: 14px 0 0;
	color: var(--primary-72);
}

.service-price {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 76px;
	min-height: 46px;
	padding: 10px 14px;
	color: var(--white);
	background: var(--primary);
	border: 1px solid var(--secondary);
	border-radius: 999px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.3rem;
	line-height: 1;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(12px, 2vw, 20px);
	width: 100%;
	margin: 0 auto;
}

.work-card {
	position: relative;
	aspect-ratio: 4 / 5;
	min-height: 0;
	overflow: hidden;
	border-radius: 8px;
	background: var(--primary-04);
	border: 1px solid var(--primary-12);
	box-shadow: 0 18px 42px var(--primary-08);
	isolation: isolate;
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.work-card:hover {
	border-color: var(--secondary);
	box-shadow: 10px 10px 0 var(--secondary);
	transform: translate(-4px, -4px);
}

.work-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

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

.stores-section {
	background: var(--white);
}

.stores-heading {
	grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
	align-items: end;
}

.stores-heading > p {
	margin: 0;
	color: var(--primary-64);
}

.stores-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	width: 100%;
	margin: 0 auto;
}

.stores-grid > .store-card:only-child {
	grid-column: 1 / -1;
	width: min(100%, 760px);
	justify-self: center;
}

.store-card,
.empty-state {
	border: 1px solid var(--primary-12);
	border-radius: 8px;
	background: var(--white);
	box-shadow: 0 18px 46px var(--primary-08);
}

.store-card {
	display: grid;
	gap: 24px;
	padding: clamp(22px, 4vw, 34px);
}

.store-top {
	display: grid;
	gap: 12px;
}

.store-meta {
	flex-wrap: wrap;
	gap: 8px;
}

.store-chip {
	padding: 7px 10px;
	color: var(--secondary);
	background: var(--secondary-10);
	border: 1px solid var(--secondary-18);
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.store-address {
	margin: 0;
	color: var(--primary-64);
}

.store-hours {
	display: grid;
	gap: 9px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.store-hours li {
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 9px;
	border-bottom: 1px solid var(--primary-08);
	color: var(--primary-72);
	font-size: 0.94rem;
}

.store-hours li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.store-hours span:first-child {
	font-weight: 800;
}

.store-hours li.is-closed {
	color: var(--primary-64);
}

.store-hours li.is-closed span:last-child {
	color: var(--secondary);
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.book-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 14px 20px;
	color: var(--white);
	background: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transition:
		background 180ms ease,
		border-color 180ms ease,
		color 180ms ease;
}

.book-button:hover {
	color: var(--primary);
	background: var(--secondary-10);
	border-color: var(--secondary);
}

.empty-state {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	padding: clamp(28px, 5vw, 46px);
}

.empty-state p {
	max-width: 640px;
	margin: 12px 0 0;
	color: var(--primary-64);
}

.empty-monogram {
	display: grid;
	width: clamp(78px, 12vw, 132px);
	aspect-ratio: 1;
	place-items: center;
	color: var(--secondary);
	background: var(--secondary-10);
	border: 1px solid var(--secondary-18);
	border-radius: 50%;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.4rem, 3vw, 2.5rem);
}

.site-footer {
	justify-content: space-between;
	gap: 20px;
	padding: 24px 0 0;
	color: var(--primary-64);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

@media (max-width: 900px) {
	.intro-section,
	.services-heading,
	.services-list,
	.stores-heading,
	.stores-grid {
		grid-template-columns: 1fr;
	}

	.intro-section {
		min-height: auto;
	}

	.intro-media,
	.intro-media img {
		min-height: 440px;
	}

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

@media (max-width: 640px) {
	body {
		background: var(--white);
	}

	.profile-page {
		width: min(100% - 24px, 1180px);
		padding: 14px 0 28px;
	}

	.intro-section {
		position: relative;
		gap: 22px;
		padding: 14px 0 30px;
		background: linear-gradient(180deg, var(--secondary-10), transparent 34%), transparent;
		border: 0;
		border-bottom: 1px solid var(--primary-08);
		border-radius: 0;
		box-shadow: none;
		overflow: visible;
	}

	.intro-section::after {
		position: absolute;
		top: 0;
		left: 0;
		width: 92px;
		height: 3px;
		content: '';
		background: var(--secondary);
	}

	.intro-section::before {
		top: 28px;
		right: -10px;
		color: var(--secondary-10);
		font-size: clamp(4.5rem, 28vw, 8.4rem);
	}

	.intro-copy {
		padding: 0 2px;
	}

	.intro-copy .eyebrow {
		margin-bottom: 10px;
		padding-left: 12px;
		border-left: 3px solid var(--secondary);
	}

	h1 {
		font-size: clamp(3.15rem, 18vw, 5.2rem);
	}

	.profile-role {
		margin-top: 14px;
		color: var(--primary);
		background: var(--white);
		border-color: var(--secondary-18);
		box-shadow: 5px 5px 0 var(--secondary-18);
	}

	.intro-text {
		margin-top: 18px;
		font-size: 1rem;
	}

	.intro-media,
	.intro-media img {
		min-height: 390px;
	}

	.intro-media {
		order: -1;
		position: relative;
		padding: 0;
		overflow: hidden;
		border: 0;
		border-radius: 8px;
		box-shadow:
			0 18px 44px var(--primary-16),
			7px 7px 0 var(--secondary);
	}

	.intro-media img {
		border-radius: 8px;
	}

	.social-links {
		margin-top: 26px;
	}

	.social-links a {
		width: 50px;
		height: 50px;
		border-color: var(--secondary);
		box-shadow: 4px 4px 0 var(--secondary-18);
	}

	.profile-book-link {
		width: 100%;
		box-shadow: 6px 6px 0 var(--secondary);
	}

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

	.service-card {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.service-price {
		width: fit-content;
	}

	.work-card {
		aspect-ratio: 4 / 5;
	}

	.empty-state {
		grid-template-columns: 1fr;
	}

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