/* ==========================================================================
   Michael Harvey - personal site v6 (rebuild per brief)
   Cream + charcoal + orange. Fraunces + Inter Tight + IBM Plex Mono.
   Hero: 100vh, portrait right with orange gradient treatment, type lockup left.
   Motion: GSAP/ScrollTrigger via site-v6.js + CSS gradient drift.
   ========================================================================== */

/* ---------- Self-hosted fonts (Cormorant Garamond display + Inter Tight body, no mono) ---------- */
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400 700; font-display: swap; src: url('../fonts/cormorant-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400 500; font-display: swap; src: url('../fonts/cormorant-italic-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Inter Tight'; font-style: normal; font-weight: 400 900; font-display: swap; src: url('../fonts/intertight-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Inter Tight'; font-style: normal; font-weight: 400 900; font-display: swap; src: url('../fonts/intertight-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

/* ---------- Tokens ---------- */
:root {
	--paper: #F5F0E8;
	--paper-warm: #EFE7D8;
	--paper-deep: #E8DEC8;
	--ink: #1A1A1A;
	--ink-soft: #3A3A3A;
	--ink-mute: #6B6B6B;
	--orange: #E8743C;
	--orange-deep: #C45A24;
	--peach: #F4A57A;
	--gold: #D4A574;
	--line: rgba(26, 26, 26, 0.10);
	--line-strong: rgba(26, 26, 26, 0.20);

	--serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	--sans:  'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--mono:  'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

	--max: 1440px;
	--gutter: clamp(20px, 4vw, 64px);
	--section-y: clamp(80px, 12vh, 160px);

	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.55;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, svg, picture { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, textarea { font: inherit; color: inherit; }
::selection { background: var(--orange); color: var(--paper); }

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

/* ==========================================================================
   CURSOR (cursor-reactive accent dot - desktop only)
   ========================================================================== */
.mh-cursor {
	position: fixed;
	top: 0; left: 0;
	width: 12px; height: 12px;
	margin: -6px 0 0 -6px;
	pointer-events: none;
	z-index: 9999;
	display: none;
	will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
	.mh-js .mh-cursor { display: block; }
}
.mh-cursor__dot {
	width: 100%; height: 100%;
	background: var(--orange);
	border-radius: 50%;
	transform: scale(var(--rs, 1));
	transition: transform 0.25s var(--ease-out);
	box-shadow: 0 0 16px rgba(232, 116, 60, 0.5);
}
.mh-cursor.is-hover { --rs: 1.8; }

/* ==========================================================================
   SCROLL PROGRESS
   ========================================================================== */
.mh-progress {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: 2px;
	z-index: 100;
	pointer-events: none;
}
.mh-progress__bar {
	display: block;
	height: 100%;
	width: var(--mh-progress, 0%);
	background: linear-gradient(90deg, var(--orange), var(--peach));
}

/* ==========================================================================
   NAV
   ========================================================================== */
.mh-nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px var(--gutter);
	transition: padding 0.4s var(--ease-out), background-color 0.3s ease, border-bottom-color 0.3s ease;
}
.mh-nav.is-stuck {
	padding: 12px var(--gutter);
	background: rgba(245, 240, 232, 0.82);
	backdrop-filter: saturate(150%) blur(14px);
	-webkit-backdrop-filter: saturate(150%) blur(14px);
	border-bottom: 1px solid var(--line);
}
.mh-nav__mark {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--mono);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.04em;
	color: var(--ink);
}
.mh-nav__mark-dot {
	width: 7px; height: 7px;
	background: var(--orange);
	border-radius: 50%;
	display: inline-block;
}
.mh-nav__links {
	display: flex;
	gap: 32px;
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: var(--ink-soft);
}
.mh-nav__links a { position: relative; padding: 4px 0; transition: color 0.2s ease; }
.mh-nav__links a:hover { color: var(--ink); }
.mh-nav__links a::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 1px;
	background: var(--orange);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s var(--ease-out);
}
.mh-nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.mh-nav__cta {
	display: inline-flex;
	align-items: center;
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding: 11px 22px;
	border: 1px solid var(--ink);
	border-radius: 999px;
	color: var(--ink);
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.4s var(--ease-out);
}
.mh-nav__cta:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 880px) { .mh-nav__links { display: none; } }

/* ==========================================================================
   HERO - 100vh, type left / portrait right (desktop). Stack on mobile.
   ========================================================================== */
.mh-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	padding: clamp(110px, 14vh, 150px) var(--gutter) clamp(40px, 6vh, 80px);
	max-width: var(--max);
	margin: 0 auto;
	overflow: hidden;
}

/* --- Decorative scaffolding (z-index 0-1) --- */
.mh-hero__art { position: absolute; pointer-events: none; }

.mh-hero__art--blob {
	right: -8%; top: 8%;
	width: 70%; height: 80%;
	z-index: 0;
	background:
		radial-gradient(circle at 55% 45%, rgba(232, 116, 60, 0.32) 0%, rgba(232, 116, 60, 0.08) 35%, transparent 65%),
		radial-gradient(circle at 30% 75%, rgba(212, 165, 116, 0.20) 0%, transparent 55%);
	filter: blur(42px);
	animation: mh-blob-drift 18s var(--ease-in-out) infinite alternate;
}
@keyframes mh-blob-drift {
	0%   { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
	100% { transform: translate3d(-3%, 4%, 0) scale(1.08) rotate(6deg); }
}

.mh-hero__art--arc {
	right: -8%; top: 12%;
	width: clamp(420px, 50vw, 720px);
	height: clamp(420px, 50vw, 720px);
	z-index: 1;
	opacity: 0.85;
	animation: mh-spin 90s linear infinite;
}
@keyframes mh-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.mh-hero__art--dots {
	top: 18%; right: 5%;
	width: 180px; height: 180px;
	z-index: 1;
	background-image: radial-gradient(circle, rgba(26, 26, 26, 0.22) 1px, transparent 1.5px);
	background-size: 16px 16px;
	mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
	opacity: 0.6;
}

.mh-hero__art--wordmark {
	top: clamp(140px, 18vh, 200px); right: -3%;
	z-index: 1;
	font-family: var(--serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(280px, 40vw, 540px);
	line-height: 0.78;
	letter-spacing: -0.06em;
	color: transparent;
	-webkit-text-stroke: 1px rgba(232, 116, 60, 0.18);
	user-select: none;
}

.mh-hero__art--vmark {
	left: calc(var(--gutter) - 14px);
	top: 50%;
	transform: rotate(-90deg) translateX(50%);
	transform-origin: left top;
	z-index: 1;
	display: inline-flex;
	gap: 10px;
	font-family: var(--mono);
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--ink-mute);
	white-space: nowrap;
}
.mh-hero__art-dot { color: var(--orange); opacity: 0.7; }

.mh-hero__art--plus {
	width: 18px; height: 18px;
	z-index: 1;
}
.mh-hero__art--plus-1 { top: 22%; left: 8%; animation: mh-float 6s ease-in-out infinite; }
.mh-hero__art--plus-2 { top: 78%; left: 38%; animation: mh-float 8s ease-in-out infinite reverse; opacity: 0.6; }
.mh-hero__art--plus-3 { top: 14%; right: 28%; animation: mh-float 7s ease-in-out infinite; }
@keyframes mh-float {
	0%, 100% { transform: translateY(0) rotate(0); }
	50%      { transform: translateY(-8px) rotate(45deg); }
}

/* Floating chips */
.mh-hero__chips {
	position: absolute; inset: 0;
	pointer-events: none;
	z-index: 4;
}
.mh-chip {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	border: 1px solid var(--line);
	border-radius: 999px;
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--ink);
	box-shadow: 0 14px 30px -16px rgba(26, 26, 26, 0.18);
	pointer-events: auto;
	white-space: nowrap;
}
.mh-chip--top {
	top: 22%; right: 6%;
	animation: mh-chip-float 5s ease-in-out infinite;
}
.mh-chip--bot {
	bottom: 18%; right: 38%;
	background: var(--ink);
	color: var(--paper);
	border-color: transparent;
	animation: mh-chip-float 6s ease-in-out infinite reverse;
}
.mh-chip__dot {
	width: 7px; height: 7px;
	background: #4ADE80;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
}
.mh-chip__num {
	font-family: var(--serif);
	font-style: italic;
	font-size: 18px;
	font-weight: 500;
	color: var(--orange);
	margin-right: 4px;
}
.mh-chip__lbl { letter-spacing: 0.04em; }
@keyframes mh-chip-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-6px); }
}

.mh-hero__inner {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 80px);
	align-items: end;
	min-height: calc(100vh - clamp(150px, 20vh, 230px));
	min-height: calc(100dvh - clamp(150px, 20vh, 230px));
}

/* Scroll cue */
.mh-hero__scroll {
	position: absolute;
	bottom: clamp(20px, 4vh, 40px);
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	z-index: 5;
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--ink-mute);
	opacity: 0.8;
	transition: opacity 0.3s ease;
}
.mh-hero__scroll:hover { opacity: 1; }
.mh-hero__scroll-line {
	width: 1px; height: 36px;
	background: linear-gradient(180deg, transparent, var(--ink));
	animation: mh-scroll-cue 2s ease-in-out infinite;
}
@keyframes mh-scroll-cue {
	0%   { transform: scaleY(0); transform-origin: top; }
	49%  { transform: scaleY(1); transform-origin: top; }
	50%  { transform: scaleY(1); transform-origin: bottom; }
	100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Hero copy (left) --- */
.mh-hero__copy { padding-bottom: 0; max-width: 720px; position: relative; z-index: 5; }

.mh-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 28px;
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-soft);
}
.mh-hero__eyebrow-bar {
	width: 28px; height: 1px;
	background: var(--orange);
}

.mh-hero__name {
	margin: 0 0 32px;
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(72px, 13vw, 192px);
	line-height: 1.0;
	letter-spacing: -0.035em;
	color: var(--ink);
	padding-bottom: 0.12em; /* room for italic 'y' descender in Harvey */
}
.mh-hero__name-first {
	display: block;
	overflow: hidden;
	padding-bottom: 0.04em;
	font-weight: 400;
}
.mh-hero__name-last {
	display: block;
	overflow: hidden;
	padding-bottom: 0.18em; /* deeper descender clearance for italic 'y' */
	font-weight: 400;
	background: linear-gradient(135deg, var(--ink) 0%, var(--orange-deep) 50%, var(--orange) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.mh-hero__name-last em {
	font-style: italic;
	font-weight: 400;
}

[data-mh-reveal-line] {
	display: block;
	transform: translateY(20%);
	opacity: 0;
}
.mh-js [data-mh-reveal-line] { /* GSAP will handle this */ }

.mh-hero__lead {
	margin: 0 0 36px;
	max-width: 36ch;
	font-size: clamp(18px, 1.4vw, 22px);
	line-height: 1.5;
	color: var(--ink-soft);
	font-weight: 400;
}

.mh-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.mh-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 16px 28px;
	border-radius: 999px;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.4s var(--ease-out);
	will-change: transform;
}
.mh-btn--primary {
	background: var(--ink);
	color: var(--paper);
	border: 1px solid var(--ink);
}
.mh-btn--primary:hover { background: var(--orange); border-color: var(--orange); }
.mh-btn--ghost {
	color: var(--ink);
	border: 1px solid var(--ink);
}
.mh-btn--ghost:hover { background: var(--ink); color: var(--paper); }

/* --- Hero portrait (clean rectangular photo, no chroma-key, scaffolding around) --- */
.mh-hero__portrait {
	position: relative;
	margin: 0;
	z-index: 3;
	width: 100%;
	max-width: 480px;
	justify-self: center;
	align-self: center;
	will-change: transform;
}
/* Orange offset card behind photo - peeks out LEFT only, never below (avoids overlap with content) */
.mh-hero__portrait::before {
	content: '';
	position: absolute;
	top: 24px; left: -28px; right: 28px; bottom: 24px;
	background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
	border-radius: 24px;
	z-index: -1;
	box-shadow: 0 30px 60px -30px rgba(196, 90, 36, 0.4);
}
.mh-hero__portrait-frame {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--paper-deep);
	box-shadow:
		0 50px 90px -50px rgba(26, 26, 26, 0.32),
		0 18px 36px -18px rgba(26, 26, 26, 0.18);
}
.mh-hero__portrait-frame::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(135deg, rgba(232, 116, 60, 0) 40%, rgba(232, 116, 60, 0.18) 100%),
		linear-gradient(180deg, rgba(196, 90, 36, 0) 65%, rgba(196, 90, 36, 0.16) 100%);
	mix-blend-mode: overlay;
}
.mh-hero__portrait-frame img {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center 22%;
	filter: contrast(1.02) saturate(1.05);
}

@media (max-width: 1000px) {
	.mh-hero { min-height: auto; padding-top: clamp(96px, 12vh, 130px); padding-bottom: clamp(40px, 6vh, 60px); }
	.mh-hero__inner { grid-template-columns: 1fr; min-height: 0; gap: clamp(20px, 5vw, 40px); align-items: center; }
	.mh-hero__portrait { order: -1; max-width: 340px; }
	.mh-hero__portrait-frame { border-radius: 20px; }
	/* Mobile offset card: NEVER extend below photo (eliminates overlap with eyebrow text) */
	.mh-hero__portrait::before { top: 14px; left: -14px; right: 14px; bottom: 14px; border-radius: 20px; }
	.mh-hero__copy { text-align: center; max-width: none; }
	/* Hide the eyebrow leading bar on mobile - center-aligned text doesn't need a left-side counter */
	.mh-hero__eyebrow { justify-content: center; }
	.mh-hero__eyebrow-bar { display: none; }
	.mh-hero__name { font-size: clamp(56px, 13vw, 96px); text-align: center; }
	.mh-hero__lead { font-size: 17px; max-width: none; margin-left: auto; margin-right: auto; }
	.mh-hero__ctas { justify-content: center; }
	.mh-hero__art--vmark, .mh-hero__art--wordmark { display: none; }
	.mh-hero__art--arc { right: -30%; top: 8%; opacity: 0.5; }
	.mh-hero__art--dots { top: 6%; right: 4%; width: 110px; height: 110px; }
	.mh-hero__chips { display: none; }
	.mh-hero__art--plus-1 { top: 8%; left: 8%; }
	.mh-hero__art--plus-3 { top: 4%; right: 38%; }
	.mh-hero__scroll { display: none; }
}

/* ==========================================================================
   COUNTER STRIP
   ========================================================================== */
.mh-counter {
	max-width: var(--max);
	margin: 0 auto;
	padding: clamp(40px, 6vh, 80px) var(--gutter);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.mh-counter__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(24px, 4vw, 64px);
}
.mh-stat { display: flex; flex-direction: column; gap: 6px; }
.mh-stat__num {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(48px, 6.5vw, 88px);
	line-height: 1;
	letter-spacing: -0.025em;
	color: var(--ink);
	display: inline-flex;
	align-items: baseline;
}
.mh-stat__num--text {
	font-style: italic;
	font-weight: 400;
	background: linear-gradient(135deg, var(--ink) 0%, var(--orange) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.mh-stat__plus { color: var(--orange); font-weight: 400; }
.mh-stat__label {
	font-family: var(--sans);
	font-weight: 600;
	font-size: 15px;
	color: var(--ink);
	letter-spacing: 0.005em;
	margin-top: 4px;
}
.mh-stat__detail {
	font-family: var(--mono);
	font-weight: 400;
	font-size: 12px;
	color: var(--ink-mute);
	letter-spacing: 0.02em;
	line-height: 1.4;
}

@media (max-width: 800px) {
	.mh-counter__inner { grid-template-columns: 1fr; gap: 24px; }
	.mh-stat { padding: 14px 0; border-bottom: 1px solid var(--line); }
	.mh-stat:first-child { padding-top: 0; }
	.mh-stat:last-child { border-bottom: 0; padding-bottom: 0; }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.mh-section {
	max-width: var(--max);
	margin: 0 auto;
	padding: var(--section-y) var(--gutter);
}
.mh-section + .mh-section { border-top: 1px solid var(--line); }

.mh-section__head {
	display: flex;
	align-items: baseline;
	gap: 18px;
	margin-bottom: clamp(36px, 6vh, 64px);
}
.mh-section__num {
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: var(--orange);
	text-transform: uppercase;
}
.mh-section__title {
	margin: 0;
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(40px, 5.5vw, 72px);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--ink);
}
.mh-section__title em { color: var(--orange); font-style: italic; font-weight: 400; }

/* ==========================================================================
   ABOUT (full restructure: intro + credibility card + context + work grid + values + personal)
   ========================================================================== */

/* Block 1: Hero intro */
.mh-about__intro { max-width: 880px; margin-bottom: clamp(48px, 7vh, 80px); }
.mh-about__lede {
	margin: 0 0 24px;
	font-family: var(--serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(28px, 3.4vw, 44px);
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--ink);
}
.mh-about__paragraph {
	margin: 0;
	font-size: clamp(17px, 1.3vw, 19px);
	line-height: 1.65;
	color: var(--ink-soft);
}

/* Block 2: Credibility card (dark, highlighted) */
.mh-credibility {
	position: relative;
	padding: clamp(36px, 5vw, 64px);
	border-radius: 20px;
	background: linear-gradient(135deg, var(--ink) 0%, #1F2A3D 100%);
	color: var(--paper);
	margin-bottom: clamp(48px, 7vh, 80px);
	overflow: hidden;
	box-shadow: 0 40px 80px -40px rgba(26, 26, 26, 0.4);
}
.mh-credibility::before {
	content: '';
	position: absolute;
	top: 0; right: 0;
	width: 60%; height: 100%;
	background:
		radial-gradient(ellipse at 80% 30%, rgba(232, 116, 60, 0.32) 0%, transparent 60%),
		radial-gradient(ellipse at 60% 100%, rgba(212, 165, 116, 0.18) 0%, transparent 60%);
	pointer-events: none;
}
.mh-credibility__lede {
	position: relative;
	margin: 0 0 18px;
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(26px, 3vw, 40px);
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: var(--paper);
	max-width: 18ch;
}
.mh-credibility__lede em { color: var(--orange); font-style: italic; }
.mh-credibility__body {
	position: relative;
	margin: 0;
	max-width: 60ch;
	font-size: clamp(16px, 1.3vw, 18px);
	line-height: 1.6;
	color: rgba(245, 240, 232, 0.78);
}

/* Block 3: Context bridge */
.mh-about__context {
	max-width: 880px;
	margin-bottom: clamp(56px, 8vh, 96px);
}
.mh-about__context p {
	margin: 0;
	font-size: clamp(17px, 1.3vw, 19px);
	line-height: 1.7;
	color: var(--ink-soft);
}

/* Block 4: Five-card work grid - "What I tend to work on" */
.mh-tendsto { margin-bottom: clamp(56px, 8vh, 96px); }
.mh-tendsto__head { margin-bottom: clamp(28px, 4vh, 40px); }
.mh-tendsto__head .mh-section__num {
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: 0.18em;
	color: var(--orange);
	text-transform: uppercase;
}
.mh-tendsto__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: clamp(16px, 1.8vw, 24px);
}
.mh-tendsto__card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: clamp(20px, 2vw, 28px);
	border: 1px solid var(--line);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.45);
	transition: transform 0.4s var(--ease-out), border-color 0.3s ease, box-shadow 0.4s ease;
}
.mh-tendsto__card:hover {
	transform: translateY(-3px);
	border-color: var(--orange);
	box-shadow: 0 24px 36px -22px rgba(26, 26, 26, 0.18);
}
.mh-tendsto__title {
	margin: 0;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(20px, 1.8vw, 26px);
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--ink);
}
.mh-tendsto__body {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--ink-soft);
}

/* Block 5: Values strip */
.mh-values {
	padding: clamp(40px, 6vh, 72px) clamp(28px, 4vw, 56px);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	margin-bottom: clamp(48px, 7vh, 80px);
	background: linear-gradient(135deg, var(--paper-warm) 0%, var(--paper) 100%);
	border-radius: 4px;
}
.mh-values__line {
	margin: 0;
	font-family: var(--serif);
	font-weight: 400;
	font-style: italic;
	font-size: clamp(22px, 2.6vw, 36px);
	line-height: 1.3;
	letter-spacing: -0.015em;
	color: var(--ink);
	max-width: 56ch;
}

/* Block 6: Personal footer */
.mh-personal {
	max-width: 880px;
}
.mh-personal p {
	margin: 0;
	font-size: clamp(16px, 1.2vw, 18px);
	line-height: 1.7;
	color: var(--ink-soft);
}

/* Mobile adjustments for About blocks */
@media (max-width: 900px) {
	.mh-tendsto__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.mh-tendsto__grid { grid-template-columns: 1fr; }
	.mh-credibility { padding: 28px; }
}

/* ==========================================================================
   WORK
   ========================================================================== */
.mh-work__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(20px, 2.5vw, 32px);
}
.mh-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: clamp(28px, 3vw, 44px);
	border: 1px solid var(--line);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.45);
	transition: transform 0.5s var(--ease-out), border-color 0.3s ease, box-shadow 0.4s ease;
}
.mh-card:hover {
	transform: translateY(-3px);
	border-color: var(--orange);
	box-shadow: 0 30px 50px -28px rgba(26, 26, 26, 0.18);
}
.mh-card__label {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--orange);
}
.mh-card__title {
	margin: 4px 0 0;
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(26px, 2.6vw, 34px);
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--ink);
}
.mh-card__body {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--ink-soft);
}

@media (max-width: 800px) { .mh-work__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   MIND
   ========================================================================== */
.mh-mind__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 2.5vw, 28px);
}
.mh-mind__card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: clamp(24px, 2.5vw, 36px);
	border: 1px solid var(--line);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.45);
	transition: transform 0.5s var(--ease-out), border-color 0.3s ease, box-shadow 0.4s ease;
}
.mh-mind__card:hover { border-color: var(--orange); box-shadow: 0 20px 36px -22px rgba(26, 26, 26, 0.18); }
.mh-mind__card-tag {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--orange);
}
.mh-mind__card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--ink-soft);
}
.mh-mind__list {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.mh-mind__list li {
	font-size: 15px;
	line-height: 1.55;
	color: var(--ink-soft);
	padding-left: 16px;
	position: relative;
}
.mh-mind__list li::before {
	content: '';
	position: absolute;
	left: 0; top: 11px;
	width: 7px; height: 1px;
	background: var(--orange);
}

@media (max-width: 900px) { .mh-mind__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.mh-contact__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: clamp(32px, 5vw, 80px);
	align-items: start;
}
.mh-contact__intro .mh-section__head { margin-bottom: 24px; }
.mh-contact__lede {
	margin: 0;
	font-family: var(--serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(22px, 2.2vw, 30px);
	line-height: 1.35;
	color: var(--ink);
	max-width: 28ch;
}

.mh-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: clamp(28px, 3vw, 40px);
	border: 1px solid var(--line);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.55);
}
.mh-form__hp { position: absolute; left: -9999px; }
.mh-form__field { position: relative; display: flex; flex-direction: column; }
.mh-form__field--full { }
.mh-form__label {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-mute);
	margin-bottom: 6px;
	transition: color 0.25s ease;
}
.mh-form__field input,
.mh-form__field textarea {
	width: 100%;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--line-strong);
	padding: 10px 0;
	font-size: 17px;
	color: var(--ink);
	resize: vertical;
	outline: none;
	font-family: inherit;
	transition: border-color 0.25s ease;
}
.mh-form__field textarea { min-height: 120px; line-height: 1.5; padding: 12px 0; }
.mh-form__field input:focus, .mh-form__field textarea:focus { border-bottom-color: var(--orange); }
.mh-form__field:focus-within .mh-form__label { color: var(--orange); }
.mh-form__line {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 2px;
	background: var(--orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s var(--ease-out);
	pointer-events: none;
}
.mh-form__field:focus-within .mh-form__line { transform: scaleX(1); }
.mh-form__footer { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.mh-form__submit { padding: 16px 32px; }
.mh-form__status { margin: 0; font-family: var(--mono); font-size: 12px; color: var(--ink-mute); letter-spacing: 0.04em; }
.mh-form__status.is-success { color: #2C7A4B; }
.mh-form__status.is-error   { color: #B8431F; }
.mh-form.is-sent .mh-form__submit-label::after { content: ' ✓'; }

@media (max-width: 900px) {
	.mh-contact__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.mh-footer {
	border-top: 1px solid var(--line);
	padding: 36px var(--gutter);
	max-width: var(--max);
	margin: 0 auto;
}
.mh-footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.mh-footer__sig { display: inline-flex; align-items: baseline; gap: 12px; }
.mh-footer__sig-mh { font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--ink); letter-spacing: 0.04em; }
.mh-footer__sig-name { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-mute); }
.mh-footer__meta { font-family: var(--mono); font-size: 12px; color: var(--ink-mute); letter-spacing: 0.04em; }

/* ==========================================================================
   404
   ========================================================================== */
.mh-404 { min-height: 80vh; display: grid; place-items: center; padding: var(--section-y) var(--gutter); }
.mh-404__inner { text-align: center; max-width: 480px; }
.mh-404__eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; color: var(--orange); font-weight: 500; text-transform: uppercase; margin: 0 0 16px; }
.mh-404__title { margin: 0 0 16px; font-family: var(--serif); font-size: clamp(48px, 7vw, 80px); color: var(--ink); line-height: 1.05; font-weight: 400; }
.mh-404__title em { color: var(--orange); font-style: italic; }
.mh-404__body { color: var(--ink-soft); }
.mh-404__body a { color: var(--ink); border-bottom: 1px solid var(--orange); padding-bottom: 1px; }

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
	}
	.mh-hero__bg-grad { animation: none !important; }
	html { scroll-behavior: auto; }
	.mh-cursor { display: none !important; }
	[data-mh-reveal-line], [data-mh-reveal] { opacity: 1 !important; transform: none !important; }
}
