/* ==========================================================
   BY KEN SAMPSON — v0.1
   Editorial hairstylist theme
   ========================================================== */

:root {
	--ink: #111111;
	--paper: #f3f0e9;
	--white: #ffffff;
	--muted: #a6a29a;
	--line: rgba(17,17,17,.18);
	--serif: "Bodoni 72", Didot, "Times New Roman", serif;
	--sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
	--header-h: 86px;
	--page-pad: clamp(22px, 4.6vw, 76px);
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

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

button,
input,
textarea,
select { font: inherit; }

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-main { overflow: hidden; }

.section { padding: clamp(90px, 11vw, 170px) var(--page-pad); }

.eyebrow {
	margin: 0 0 24px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .22em;
	line-height: 1.2;
	text-transform: uppercase;
	color: rgba(255,255,255,.8);
}

.eyebrow--dark { color: rgba(17,17,17,.62); }

h1, h2, h3, p { margin-top: 0; }

h1, h2, blockquote {
	font-family: var(--serif);
	font-weight: 400;
}

h2 {
	margin-bottom: 28px;
	font-size: clamp(48px, 6vw, 94px);
	line-height: .96;
	letter-spacing: -.035em;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	margin-top: 26px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	border-bottom: 1px solid currentColor;
	padding-bottom: 7px;
}

.text-link::after { content: "→"; }
.text-link--light { color: var(--white); }

/* Header */
.site-header {
	position: fixed;
	z-index: 50;
	top: 0;
	left: 0;
	width: 100%;
	color: var(--white);
	transition: background .35s ease, color .35s ease, transform .35s ease;
}

.site-header.is-scrolled {
	background: rgba(243,240,233,.96);
	color: var(--ink);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	height: var(--header-h);
	padding: 0 var(--page-pad);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 30px;
}

.site-brand { justify-self: start; }

.site-brand__name {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .19em;
}

.site-brand__logo .custom-logo {
	display: block;
	width: auto;
	max-width: 220px;
	max-height: 42px;
}

.custom-logo-link { display: block; }

.primary-nav .menu,
.site-footer__nav .menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: clamp(22px, 2.6vw, 42px);
	padding: 0;
	margin: 0;
}

.primary-nav a,
.header-book {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.primary-nav a {
	position: relative;
	padding: 10px 0;
}

.primary-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 4px;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .25s ease;
}

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

.header-book {
	justify-self: end;
	border: 1px solid currentColor;
	padding: 11px 17px 10px;
}

.nav-toggle { display: none; }

/* Hero */
.hero {
	position: relative;
	min-height: 100svh;
	background:
		linear-gradient(135deg, #2b2926, #0d0d0d 70%);
	color: var(--white);
	display: flex;
	align-items: flex-end;
	padding: calc(var(--header-h) + 80px) var(--page-pad) clamp(76px, 9vw, 130px);
}

.hero.has-image {
	background-image: var(--hero-image);
	background-size: cover;
	background-position: center;
}

.hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.08) 72%);
}

.hero__content {
	position: relative;
	z-index: 2;
	max-width: 1040px;
}

.hero h1 {
	margin: 0;
	font-size: clamp(80px, 14.2vw, 230px);
	line-height: .72;
	letter-spacing: -.045em;
}

.hero__subtitle {
	margin: 36px 0 0;
	max-width: 500px;
	font-family: var(--serif);
	font-size: clamp(24px, 2.7vw, 42px);
	line-height: 1.08;
}

.hero__scroll {
	position: absolute;
	right: var(--page-pad);
	bottom: 42px;
	z-index: 2;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .18em;
	writing-mode: vertical-rl;
	display: flex;
	gap: 10px;
	align-items: center;
}

/* Intro */
.intro {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
	align-items: center;
	gap: clamp(60px, 9vw, 155px);
}

.intro__media {
	min-height: min(74vw, 820px);
}

.intro__content { max-width: 650px; }

.intro__content p:not(.eyebrow),
.experience__content p:not(.eyebrow) {
	max-width: 560px;
	font-size: clamp(16px, 1.25vw, 20px);
	color: rgba(17,17,17,.68);
}

/* Generic image placeholders */
.media-placeholder {
	position: relative;
	background:
		linear-gradient(145deg, #dad4cb, #b9b1a5);
	background-image: var(--section-image), linear-gradient(145deg, #dad4cb, #b9b1a5);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.media-placeholder::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255,255,255,.22);
	pointer-events: none;
}

.media-placeholder > span {
	position: absolute;
	left: 24px;
	bottom: 20px;
	z-index: 1;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .18em;
	color: rgba(17,17,17,.5);
}

/* Services */
.services {
	background: var(--white);
}

.section-heading {
	max-width: 920px;
	margin-bottom: clamp(54px, 7vw, 95px);
}

.section-heading--split {
	max-width: none;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
}

.section-heading--split > div { max-width: 870px; }

.service-list { border-top: 1px solid var(--line); }

.service-row {
	display: grid;
	grid-template-columns: 80px minmax(190px, 1fr) minmax(280px, 1fr) 36px;
	align-items: center;
	gap: 20px;
	min-height: 116px;
	border-bottom: 1px solid var(--line);
	transition: padding .25s ease, background .25s ease;
}

.service-row:hover {
	padding-left: 14px;
	background: #f8f6f1;
}

.service-row span {
	font-size: 10px;
	letter-spacing: .18em;
	color: rgba(17,17,17,.45);
}

.service-row strong {
	font-family: var(--serif);
	font-size: clamp(38px, 4vw, 68px);
	font-weight: 400;
	line-height: 1;
}

.service-row em {
	font-style: normal;
	font-size: 11px;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: rgba(17,17,17,.5);
}

.service-row b {
	font-size: 22px;
	font-weight: 400;
}

/* Work */
.work { background: var(--paper); }

.work-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: minmax(70px, 5.2vw);
	gap: clamp(12px, 1.5vw, 24px);
}

.work-card { margin: 0; min-height: 320px; }
.work-card--1 { grid-column: 1 / span 7; grid-row: span 9; }
.work-card--2 { grid-column: 9 / span 4; grid-row: span 7; margin-top: 70px; }
.work-card--3 { grid-column: 2 / span 4; grid-row: span 7; margin-top: 40px; }
.work-card--4 { grid-column: 7 / span 6; grid-row: span 10; margin-top: -50px; }
.work-card--5 { grid-column: 1 / span 7; grid-row: span 8; margin-top: 20px; }
.work-card--6 { grid-column: 9 / span 4; grid-row: span 6; margin-top: 100px; }

/* Manifesto */
.manifesto {
	min-height: 78svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.manifesto blockquote {
	max-width: 1230px;
	margin: 0;
	font-size: clamp(54px, 7.6vw, 126px);
	line-height: .96;
	letter-spacing: -.04em;
}

/* Experience */
.experience {
	background: var(--white);
	display: grid;
	grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
	gap: clamp(60px, 9vw, 150px);
	align-items: center;
}

.experience__content { max-width: 650px; }

.experience__media { min-height: min(75vw, 850px); }

/* Testimonials */
.testimonials {
	min-height: 72svh;
	background: var(--ink);
	color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.testimonial { max-width: 1100px; }

.testimonial blockquote {
	margin: 0;
	font-size: clamp(46px, 6.5vw, 104px);
	line-height: .98;
	letter-spacing: -.035em;
}

.testimonial p {
	margin: 42px 0 0;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .2em;
}

/* Social */
.social { background: var(--paper); padding-bottom: 0; }

.social__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 50px;
}

.social__heading .eyebrow { margin: 0; }

.social__heading > a {
	font-family: var(--serif);
	font-size: clamp(32px, 4vw, 64px);
	line-height: 1;
}

.social-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.social-strip div {
	aspect-ratio: 4/5;
	background:
		linear-gradient(145deg, #c9c2b7, #8d867d);
}
.social-strip div:nth-child(2) { background: linear-gradient(145deg, #e5dfd5, #aaa095); }
.social-strip div:nth-child(3) { background: linear-gradient(145deg, #b4afa6, #6e6964); }
.social-strip div:nth-child(4) { background: linear-gradient(145deg, #d8d0c4, #9f9689); }

/* Booking */
.booking {
	background: #272522;
	color: var(--white);
	text-align: center;
	min-height: 78svh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.booking h2 {
	font-size: clamp(70px, 11vw, 180px);
	margin-bottom: 54px;
}

.button-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 26px;
	border: 1px solid rgba(255,255,255,.7);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	transition: background .25s ease, color .25s ease;
}

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

/* Footer */
.site-footer {
	background: var(--ink);
	color: var(--white);
	padding: 80px var(--page-pad) 30px;
	border-top: 1px solid rgba(255,255,255,.12);
}

.site-footer__top {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 30px;
	align-items: start;
	padding-bottom: 80px;
}

.site-footer__brand {
	margin: 0 0 5px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .19em;
}

.site-footer__role,
.site-footer__social,
.site-footer__nav a,
.site-footer__bottom {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .17em;
	text-transform: uppercase;
}

.site-footer__role { color: rgba(255,255,255,.5); }
.site-footer__social { justify-self: end; }

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 26px;
	border-top: 1px solid rgba(255,255,255,.14);
	color: rgba(255,255,255,.52);
}

/* Generic pages */
.content-shell {
	padding-top: calc(var(--header-h) + 100px);
	min-height: 70svh;
}

.content-shell .archive-header,
.editorial-page {
	max-width: 1000px;
	margin: 0 auto;
}

.editorial-page h1,
.archive-header h1,
.not-found h1 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(64px, 8vw, 130px);
	line-height: .92;
	letter-spacing: -.04em;
}

.entry-content {
	margin-top: 60px;
	font-size: 18px;
	max-width: 760px;
}

.entry-content > * + * { margin-top: 1.5em; }

.single-featured { margin: 55px 0; }

.post-list {
	max-width: 1000px;
	margin: 60px auto 0;
	border-top: 1px solid var(--line);
}

.post-card {
	padding: 42px 0;
	border-bottom: 1px solid var(--line);
}

.post-card__meta { font-size: 10px; letter-spacing: .15em; }

.post-card h2 {
	font-size: clamp(40px, 4vw, 68px);
	margin-bottom: 10px;
}

.comments-area { max-width: 760px; margin: 80px auto 0; }
.not-found { min-height: 80svh; padding-top: calc(var(--header-h) + 100px); }

body:not(.home) .site-header {
	background: rgba(243,240,233,.96);
	color: var(--ink);
	border-bottom: 1px solid var(--line);
}

/* Responsive */
@media (max-width: 980px) {
	:root { --header-h: 72px; }

	.site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.header-book { display: none; }

	.nav-toggle {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		gap: 6px;
		width: 42px;
		height: 42px;
		padding: 8px;
		border: 0;
		background: transparent;
		color: inherit;
	}

	.nav-toggle span:not(.screen-reader-text) {
		display: block;
		width: 100%;
		height: 1px;
		background: currentColor;
	}

	.primary-nav {
		position: fixed;
		inset: var(--header-h) 0 0;
		background: var(--paper);
		color: var(--ink);
		display: flex;
		justify-content: center;
		align-items: center;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: .25s ease;
	}

	.primary-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.primary-nav .menu {
		flex-direction: column;
		gap: 18px;
	}

	.primary-nav a {
		font-family: var(--serif);
		font-size: 44px;
		font-weight: 400;
		letter-spacing: -.02em;
		text-transform: none;
	}

	.intro,
	.experience {
		grid-template-columns: 1fr;
		gap: 55px;
	}

	.intro__media,
	.experience__media {
		min-height: 115vw;
	}

	.experience__content { order: 2; }
	.experience__media { order: 1; }

	.service-row {
		grid-template-columns: 45px 1fr 30px;
		min-height: 95px;
	}
	.service-row em { display: none; }

	.work-grid {
		grid-template-columns: 1fr 1fr;
		grid-auto-rows: auto;
	}

	.work-card {
		grid-column: auto !important;
		grid-row: auto !important;
		margin-top: 0 !important;
		min-height: 0;
		aspect-ratio: 4/5;
	}
	.work-card:nth-child(3n+1) { aspect-ratio: 3/4; }

	.site-footer__top {
		grid-template-columns: 1fr;
		gap: 45px;
	}
	.site-footer__nav .menu { flex-wrap: wrap; }
	.site-footer__social { justify-self: start; }
}

@media (max-width: 640px) {
	.section { padding-top: 82px; padding-bottom: 82px; }

	.hero {
		padding-bottom: 72px;
		min-height: 92svh;
	}

	.hero h1 {
		font-size: clamp(72px, 24vw, 125px);
		line-height: .78;
	}

	.hero__subtitle { margin-top: 28px; }
	.hero__scroll { display: none; }

	h2 { font-size: clamp(46px, 15vw, 72px); }

	.section-heading--split,
	.social__heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.service-row {
		grid-template-columns: 32px 1fr 22px;
		gap: 12px;
		min-height: 82px;
	}

	.service-row strong { font-size: 36px; }

	.work-grid { gap: 8px; }

	.manifesto { min-height: 70svh; }

	.manifesto blockquote {
		font-size: clamp(48px, 15vw, 76px);
	}

	.testimonial blockquote {
		font-size: clamp(44px, 13vw, 70px);
	}

	.social-strip {
		grid-template-columns: 1fr 1fr;
	}

	.booking h2 {
		font-size: clamp(65px, 21vw, 105px);
	}

	.site-footer__nav .menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.site-footer__bottom {
		flex-direction: column;
	}
}


/* ==========================================================
   v0.2 — real photography + split editorial hero
   ========================================================== */

.hero--split {
	display: grid;
	grid-template-columns: 45% 55%;
	min-height: 100svh;
	padding: 0;
	background: #0d0d0d;
	align-items: stretch;
}

.hero--split .hero__copy {
	position: relative;
	min-width: 0;
	display: flex;
	align-items: flex-end;
	padding: calc(var(--header-h) + 70px) clamp(30px, 4.6vw, 76px) clamp(72px, 8vw, 122px);
	background: #0d0d0d;
	color: var(--white);
}

.hero--split .hero__content {
	width: 100%;
	max-width: none;
}

.hero--split h1 {
	max-width: 100%;
	font-size: clamp(72px, 8.7vw, 150px);
	line-height: .78;
	overflow-wrap: normal;
}

.hero--split .hero__subtitle {
	max-width: 390px;
	font-size: clamp(25px, 2.25vw, 38px);
}

.hero__image-wrap {
	position: relative;
	min-width: 0;
	height: 100svh;
	overflow: hidden;
	background: #1b1b1b;
}

.hero__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 38%;
}

.hero--split .hero__scroll {
	right: 22px;
	bottom: 38px;
}

.intro__media {
	background-position: center 30%;
}

.experience__media {
	background-position: center 28%;
}

.work-card {
	position: relative;
	overflow: hidden;
	background: #d7d2ca;
}

.work-card img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

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

.work-card--1 { grid-column: 1 / span 7; grid-row: span 9; }
.work-card--2 { grid-column: 9 / span 4; grid-row: span 7; margin-top: 70px; }
.work-card--3 { grid-column: 2 / span 4; grid-row: span 7; margin-top: 40px; }
.work-card--4 { grid-column: 7 / span 6; grid-row: span 10; margin-top: -50px; }
.work-card--5 { grid-column: 1 / span 5; grid-row: span 8; margin-top: 45px; }
.work-card--6 { grid-column: 7 / span 6; grid-row: span 8; margin-top: 0; }
.work-card--7 { grid-column: 2 / span 6; grid-row: span 9; margin-top: 45px; }
.work-card--8 { grid-column: 9 / span 4; grid-row: span 7; margin-top: 105px; }

.work-card--7 img { object-position: center 36%; }
.work-card--8 img { object-position: center 28%; }

.social-strip img {
	width: 100%;
	aspect-ratio: 4 / 5;
	display: block;
	object-fit: cover;
}

@media (max-width: 980px) {
	.hero--split {
		grid-template-columns: 1fr;
		grid-template-rows: 59svh auto;
		min-height: 100svh;
	}

	.hero__image-wrap {
		grid-row: 1;
		height: 59svh;
	}

	.hero--split .hero__copy {
		grid-row: 2;
		min-height: 48svh;
		padding-top: 62px;
		padding-bottom: 70px;
	}

	.hero--split h1 {
		font-size: clamp(76px, 17vw, 145px);
	}

	.hero--split .hero__scroll {
		display: none;
	}

	.hero__image {
		object-position: 50% 30%;
	}
}

@media (max-width: 640px) {
	.hero--split {
		grid-template-rows: 56svh auto;
	}

	.hero__image-wrap {
		height: 56svh;
	}

	.hero--split .hero__copy {
		min-height: auto;
		padding: 54px var(--page-pad) 66px;
	}

	.hero--split h1 {
		font-size: clamp(70px, 22vw, 108px);
	}

	.hero--split .hero__subtitle {
		font-size: 27px;
	}

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

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

	.social-strip {
		grid-template-columns: 1fr 1fr;
	}
}


/* ==========================================================
   v0.3 — Hero refinement + Miami location
   ========================================================== */

@media (min-width: 981px) {
	/* Slightly shift the primary navigation to the left for better balance
	   across the split hero. */
	.primary-nav {
		transform: translateX(-34px);
	}

	/* Move the hero copy up without changing the overall split proportions. */
	.hero--split .hero__copy {
		align-items: center;
		padding-top: calc(var(--header-h) + 28px);
		padding-bottom: 48px;
	}

	/* Reduce the oversized wordmark just enough to restore breathing room
	   before the image divide. */
	.hero--split h1 {
		font-size: clamp(68px, 7.9vw, 136px);
		line-height: .79;
		letter-spacing: -.042em;
	}

	/* Crop the provisional Instagram screenshot slightly so the carousel
	   arrow at the far right sits outside the visible frame. */
	.hero__image {
		width: 106%;
		max-width: none;
		margin-left: -3%;
		transform: scale(1.018);
		object-position: 43% 36%;
	}
}

.site-footer__address {
	margin: 24px 0 0;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .11em;
	line-height: 1.65;
	text-transform: uppercase;
	color: rgba(255,255,255,.58);
}


/* ==========================================================
   v0.4 — Selected Work rebuilt as ordered asymmetric blocks
   ========================================================== */

.work-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: minmax(46px, auto);
	gap: clamp(12px, 1.4vw, 22px);
	align-items: stretch;
}

/* Clean, block-based editorial arrangement */
.work-card {
	margin: 0 !important;
	min-height: 0;
	background: #d7d2ca;
	border-radius: 0;
	overflow: hidden;
}

.work-card img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

/* BLOCK A — anchor left + vertical pair right */
.work-card--1 {
	grid-column: 1 / span 7;
	grid-row: 1 / span 12;
	aspect-ratio: 5 / 6;
}

.work-card--2 {
	grid-column: 8 / span 5;
	grid-row: 1 / span 6;
	aspect-ratio: 4 / 5;
}

.work-card--3 {
	grid-column: 8 / span 5;
	grid-row: 7 / span 6;
	aspect-ratio: 4 / 5;
}

/* BLOCK B — portrait + wide statement */
.work-card--4 {
	grid-column: 1 / span 4;
	grid-row: 13 / span 7;
	aspect-ratio: 4 / 5;
}

.work-card--5 {
	grid-column: 5 / span 8;
	grid-row: 13 / span 7;
	aspect-ratio: 16 / 10;
}

/* BLOCK C — disciplined triptych */
.work-card--6 {
	grid-column: 1 / span 4;
	grid-row: 20 / span 7;
	aspect-ratio: 4 / 5;
}

.work-card--7 {
	grid-column: 5 / span 4;
	grid-row: 20 / span 7;
	aspect-ratio: 4 / 5;
}

.work-card--8 {
	grid-column: 9 / span 4;
	grid-row: 20 / span 7;
	aspect-ratio: 4 / 5;
}

/* Intentional cropping per image */
.work-card--1 img { object-position: center 42%; }
.work-card--2 img { object-position: center 46%; }
.work-card--3 img { object-position: center 16%; }
.work-card--4 img { object-position: center 46%; }
.work-card--5 img { object-position: center 38%; }
.work-card--6 img { object-position: center 50%; }
.work-card--7 img { object-position: center 36%; }
.work-card--8 img { object-position: center 28%; }

@media (max-width: 1100px) {
	.work-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.work-card--1,
	.work-card--2,
	.work-card--3,
	.work-card--4,
	.work-card--5,
	.work-card--6,
	.work-card--7,
	.work-card--8 {
		grid-column: auto !important;
		grid-row: auto !important;
		aspect-ratio: 4 / 5;
	}

	.work-card--1 {
		grid-column: 1 / -1 !important;
		aspect-ratio: 16 / 10;
	}

	.work-card--5 {
		grid-column: 1 / -1 !important;
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 640px) {
	.work-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.work-card--1,
	.work-card--2,
	.work-card--3,
	.work-card--4,
	.work-card--5,
	.work-card--6,
	.work-card--7,
	.work-card--8 {
		grid-column: auto !important;
		grid-row: auto !important;
		aspect-ratio: 4 / 5;
	}
}


/* ==========================================================
   v0.6 — Fix misunderstanding: restore photos, redesign only
   the FIRST THREE layout cards in Selected Work
   ========================================================== */

/* FIRST BLOCK — ordered asymmetric trio
   two cards on the first row + one centered card below
   This keeps asymmetry but removes the clumsy oversized-left feeling. */

.work-card--1 {
	grid-column: 1 / span 6;
	grid-row: 1 / span 7;
	aspect-ratio: 4 / 5;
}

.work-card--2 {
	grid-column: 7 / span 6;
	grid-row: 1 / span 7;
	aspect-ratio: 4 / 5;
}

.work-card--3 {
	grid-column: 4 / span 6;
	grid-row: 8 / span 7;
	aspect-ratio: 4 / 5;
}

/* Move the remaining blocks down to preserve spacing/order */
.work-card--4 {
	grid-column: 1 / span 4;
	grid-row: 15 / span 7;
	aspect-ratio: 4 / 5;
}

.work-card--5 {
	grid-column: 5 / span 8;
	grid-row: 15 / span 7;
	aspect-ratio: 16 / 10;
}

.work-card--6 {
	grid-column: 1 / span 4;
	grid-row: 22 / span 7;
	aspect-ratio: 4 / 5;
}

.work-card--7 {
	grid-column: 5 / span 4;
	grid-row: 22 / span 7;
	aspect-ratio: 4 / 5;
}

.work-card--8 {
	grid-column: 9 / span 4;
	grid-row: 22 / span 7;
	aspect-ratio: 4 / 5;
}

/* Intentional cropping */
.work-card--1 img { object-position: center 28%; }
.work-card--2 img { object-position: center 22%; }
.work-card--3 img { object-position: center 35%; }
.work-card--4 img { object-position: center 46%; }
.work-card--5 img { object-position: center 38%; }
.work-card--6 img { object-position: center 50%; }
.work-card--7 img { object-position: center 36%; }
.work-card--8 img { object-position: center 28%; }

@media (max-width: 1100px) {
	.work-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.work-card--1,
	.work-card--2,
	.work-card--3,
	.work-card--4,
	.work-card--5,
	.work-card--6,
	.work-card--7,
	.work-card--8 {
		grid-column: auto !important;
		grid-row: auto !important;
		aspect-ratio: 4 / 5;
	}

	.work-card--5 {
		grid-column: 1 / -1 !important;
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 640px) {
	.work-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.work-card--1,
	.work-card--2,
	.work-card--3,
	.work-card--4,
	.work-card--5,
	.work-card--6,
	.work-card--7,
	.work-card--8 {
		grid-column: auto !important;
		grid-row: auto !important;
		aspect-ratio: 4 / 5;
	}
}


/* ==========================================================
   v0.7 — Selected Work: 3 top / 2 middle / 3 bottom
   ========================================================== */

.work-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(14px, 1.5vw, 24px);
	align-items: start;
}

.work-card {
	margin: 0 !important;
	background: #d7d2ca;
	overflow: hidden;
}

.work-card img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

/* top row: 3 */
.work-card--1,
.work-card--2,
.work-card--3 {
	grid-row: auto;
	aspect-ratio: 4 / 5;
}
.work-card--1 { grid-column: 1 / span 4; }
.work-card--2 { grid-column: 5 / span 4; }
.work-card--3 { grid-column: 9 / span 4; }

/* middle row: 2 */
.work-card--4,
.work-card--5 {
	grid-row: auto;
	aspect-ratio: 4 / 5;
}
.work-card--4 { grid-column: 1 / span 6; }
.work-card--5 { grid-column: 7 / span 6; }

/* bottom row: 3 */
.work-card--6,
.work-card--7,
.work-card--8 {
	grid-row: auto;
	aspect-ratio: 4 / 5;
}
.work-card--6 { grid-column: 1 / span 4; }
.work-card--7 { grid-column: 5 / span 4; }
.work-card--8 { grid-column: 9 / span 4; }

/* crop tuning */
.work-card--1 img { object-position: center 22%; }
.work-card--2 img { object-position: center 22%; }
.work-card--3 img { object-position: center 30%; }
.work-card--4 img { object-position: center 46%; }
.work-card--5 img { object-position: center 38%; }
.work-card--6 img { object-position: center 50%; }
.work-card--7 img { object-position: center 36%; }
.work-card--8 img { object-position: center 28%; }

@media (max-width: 1100px) {
	.work-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.work-card--1,
	.work-card--2,
	.work-card--3,
	.work-card--4,
	.work-card--5,
	.work-card--6,
	.work-card--7,
	.work-card--8 {
		grid-column: auto !important;
		grid-row: auto !important;
		aspect-ratio: 4 / 5;
	}

	.work-card--4,
	.work-card--5 {
		grid-column: 1 / -1 !important;
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 640px) {
	.work-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.work-card--1,
	.work-card--2,
	.work-card--3,
	.work-card--4,
	.work-card--5,
	.work-card--6,
	.work-card--7,
	.work-card--8 {
		grid-column: auto !important;
		grid-row: auto !important;
		aspect-ratio: 4 / 5;
	}
}


/* ==========================================================
   v1.0 — Curly-inspired map + editorial footer
   ========================================================== */

.location-map {
    width: 100%;
    height: clamp(360px, 39vw, 600px);
    background: #e9e9e7;
    overflow: hidden;
}

.location-map__frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(.9) brightness(1.08);
}

.site-footer--curly {
    background: #070707;
    color: #fff;
    padding: clamp(74px, 8vw, 118px) var(--page-pad) 30px;
    border-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .95fr .95fr .9fr;
    gap: clamp(38px, 5vw, 86px);
    align-items: start;
    padding-bottom: clamp(72px, 8vw, 118px);
}

.footer-column { min-width: 0; }

.footer-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.footer-mark__box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border: 1px solid rgba(255,255,255,.85);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.footer-mark__name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .26em;
}

.footer-copy {
    max-width: 300px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.57);
    font-size: 14px;
    line-height: 1.75;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
}

.footer-socials span {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.35);
}

.footer-heading {
    margin: 2px 0 27px;
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 0;
    font-style: normal;
}

.footer-contact a,
.footer-info,
.footer-directions {
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.65;
}

.footer-contact a:hover,
.footer-info a:hover,
.footer-directions:hover,
.footer-socials a:hover {
    color: #fff;
}

.footer-info {
    margin: 0;
}

.footer-info > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    padding: 2px 0 8px;
}

.footer-info dt,
.footer-info dd { margin: 0; }
.footer-info dd { text-align: right; color: rgba(255,255,255,.78); }

.footer-mini-map {
    position: relative;
    display: flex;
    min-height: 115px;
    flex-direction: column;
    justify-content: center;
    padding: 20px 22px;
    margin-bottom: 19px;
    border: 1px solid rgba(255,255,255,.12);
    background:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 18px 18px;
    overflow: hidden;
}

.footer-mini-map::after {
    content: "";
    position: absolute;
    width: 105px;
    height: 105px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    right: -28px;
    bottom: -47px;
}

.footer-mini-map__pin {
    position: absolute;
    right: 22px;
    top: 20px;
    font-size: 25px;
    color: rgba(255,255,255,.7);
}

.footer-mini-map__city {
    font-family: var(--serif);
    font-size: 29px;
    line-height: 1;
}

.footer-mini-map__state {
    margin-top: 5px;
    color: rgba(255,255,255,.45);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
}

.footer-directions {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.footer-bottomline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.38);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .location-map { height: 420px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 58px 48px;
    }
}

@media (max-width: 640px) {
    .location-map { height: 330px; }

    .site-footer--curly {
        padding-top: 68px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 52px;
        padding-bottom: 68px;
    }

    .footer-heading { margin-bottom: 22px; }

    .footer-bottomline {
        flex-direction: column;
        gap: 9px;
    }
}


/* ==========================================================
   v1.1 — Signature Brush product story
   ========================================================== */

.signature-brush {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
    min-height: clamp(720px, 57vw, 900px);
    background: #f7f7f5;
    overflow: hidden;
}

.signature-brush__product,
.signature-brush__story {
    min-width: 0;
}

.signature-brush__product {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(70px, 7vw, 118px) clamp(34px, 6vw, 100px);
}

.signature-brush__product img {
    display: block;
    width: min(100%, 700px);
    max-height: 720px;
    object-fit: contain;
    filter: drop-shadow(0 22px 22px rgba(0,0,0,.09));
}

.signature-brush__story {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(90px, 9vw, 150px) var(--page-pad);
    text-align: center;
}

.signature-brush__script {
    position: absolute;
    z-index: -1;
    top: 26%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-7deg);
    color: #e9e0d2;
    font-family: var(--serif);
    font-size: clamp(112px, 12vw, 205px);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -.08em;
    line-height: .75;
    opacity: .75;
    pointer-events: none;
    white-space: nowrap;
}

.signature-brush__eyebrow {
    margin: 0 0 20px;
    color: rgba(17,17,17,.68);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    line-height: 1.3;
}

.signature-brush h2 {
    max-width: 680px;
    margin: 0 0 30px;
    font-family: var(--sans);
    font-size: clamp(42px, 4vw, 68px);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: .98;
}

.signature-brush__copy {
    max-width: 610px;
    margin: 0;
    color: rgba(17,17,17,.66);
    font-family: var(--sans);
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.75;
}

.signature-brush__benefits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 0;
    padding-bottom: 7px;
    border-bottom: 1px solid currentColor;
    color: #b99055;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .21em;
    line-height: 1.4;
}

.signature-brush__benefits span {
    color: rgba(17,17,17,.28);
}

@media (max-width: 980px) {
    .signature-brush {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .signature-brush__product {
        min-height: 620px;
        padding-bottom: 25px;
    }

    .signature-brush__product img {
        width: min(85vw, 650px);
        max-height: 600px;
    }

    .signature-brush__story {
        padding-top: 75px;
        padding-bottom: 115px;
    }

    .signature-brush__script {
        top: 21%;
    }
}

@media (max-width: 640px) {
    .signature-brush__product {
        min-height: 450px;
        padding: 62px 15px 15px;
    }

    .signature-brush__product img {
        width: min(94vw, 540px);
        max-height: 455px;
    }

    .signature-brush__story {
        padding: 75px var(--page-pad) 90px;
    }

    .signature-brush__script {
        top: 18%;
        font-size: 96px;
    }

    .signature-brush h2 {
        font-size: clamp(42px, 13vw, 64px);
    }

    .signature-brush__benefits {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 9px;
    }
}
