/* =============================================================
   MARK7 — app.css  (single source: tokens + components + sections)
   Palette ~76% sheet / 19% ink / 5% red. Motion rides --ease.
   ============================================================= */

@font-face {
	font-family: "Archivo";
	src: url("../fonts/archivo-var.woff2") format("woff2-variations"),
	     url("../fonts/archivo-var.woff2") format("woff2");
	font-weight: 400 800;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("../fonts/inter-var.woff2") format("woff2-variations"),
	     url("../fonts/inter-var.woff2") format("woff2");
	font-weight: 400 600;
	font-style: normal;
	font-display: swap;
}

:root {
	--ink: #0A0A0A;
	--ink-true: #000;
	--concrete: #6B6864;
	--line: #D9D5D0;
	--line-soft: #E7E3DE;
	--sheet: #F6F4F1;
	--sheet-2: #EFEBE6;
	--sheet-raised: #FFF;
	--red: #FF0000;
	--red-ink: #D10000;
	--red-wash: rgba(255, 0, 0, .07);

	--f-display: "Archivo", system-ui, sans-serif;
	--f-text: "Inter", system-ui, -apple-system, sans-serif;

	--s1: .5rem; --s2: 1rem; --s3: 1.5rem; --s4: 2rem;
	--s5: 3rem; --s6: 4rem; --s7: 6rem;
	--section: clamp(5rem, 12vw, 11rem);
	--gutter: clamp(16px, 2vw, 28px);
	--page-margin: clamp(20px, 5vw, 72px);
	--maxw: 1560px;
	--maxw-content: 1180px;
	--measure: 66ch;

	--ease: cubic-bezier(.6, .01, .05, .95);
	--header-h: 76px;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html { overflow-x: clip; }
body {
	margin: 0;
	background: var(--sheet);
	color: var(--ink);
	font-family: var(--f-text);
	font-size: 1.0625rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	/* clip (not hidden) so it never becomes a scroll container that
	   would break `position: sticky` on the pinned film hero */
	overflow-x: clip;
	max-width: 100%;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--red-ink); text-decoration: none; }
a:where(:not(.m7-btn)):hover { color: var(--ink); }

h1, h2, h3, h4 {
	font-family: var(--f-display);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -.02em;
	margin: 0 0 .6em;
	text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; max-width: var(--measure); }

:focus-visible {
	outline: 2px solid var(--red);
	outline-offset: 3px;
	border-radius: 1px;
}

.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 999;
	background: var(--ink); color: var(--sheet); padding: 12px 18px;
	font-family: var(--f-display); font-weight: 600;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- layout primitives ---------- */
.m7-wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--page-margin); }
.m7-content { max-width: var(--maxw-content); margin-inline: auto; padding-inline: var(--page-margin); }
.m7-section { padding-block: var(--section); border-top: 1px solid var(--line); }
.m7-section:first-of-type { border-top: 0; }

.m7-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); }

.m7-eyebrow {
	font-family: var(--f-display);
	text-transform: uppercase;
	letter-spacing: .16em;
	font-size: .72rem;
	font-weight: 600;
	color: var(--concrete);
	margin: 0 0 var(--s3);
	display: flex; align-items: center; gap: .8em;
}
.m7-eyebrow .n { color: var(--red); font-variant-numeric: tabular-nums; }

/* ---------- signature devices ---------- */
.m7-datum {
	display: block;
	height: 2px;
	width: min(520px, 60%);
	background: var(--red);
}
.m7-datum.is-progress {
	position: fixed; inset: 0 auto auto 0;
	width: 0; height: 2px; z-index: 90;
	transform-origin: 0 50%;
}
.m7-contour { display: grid; gap: 3px; width: 100%; }
.m7-contour i { height: 1px; background: var(--line); display: block; }
.m7-contour i:nth-child(3) { background: var(--red); }

/* ---------- image on a mat, blended ---------- */
.m7-img-mat {
	display: block;
	background: var(--sheet-raised);
	overflow: hidden;
}
.m7-img {
	width: 100%;
	object-fit: cover;
	-webkit-mask-image: radial-gradient(120% 120% at 50% 50%, #000 62%, transparent 100%);
	        mask-image: radial-gradient(120% 120% at 50% 50%, #000 62%, transparent 100%);
}
.is-project-context .m7-img { mask-image: none; -webkit-mask-image: none; }

/* ---------- buttons ---------- */
.m7-btn {
	display: inline-flex; align-items: center; gap: .6em;
	font-family: var(--f-display); font-weight: 600; font-size: .9rem;
	letter-spacing: .02em;
	padding: 14px 26px;
	border: 1px solid var(--ink);
	background: var(--red); color: #fff;
	border-radius: 1px;
	cursor: pointer;
	transition: background .25s var(--ease), color .25s var(--ease);
}
.m7-btn:hover { background: var(--ink); color: var(--sheet); }
.m7-btn--ghost { background: transparent; color: var(--ink); }
.m7-btn--ghost:hover { background: var(--ink); color: var(--sheet); }
.m7-btn--on-dark { border-color: #fff; }
.m7-btn--on-dark.m7-btn--ghost { color: #fff; }

.m7-textlink {
	color: var(--red-ink);
	background-image: linear-gradient(var(--red), var(--red));
	background-size: 100% 1px; background-position: 0 100%; background-repeat: no-repeat;
	padding-bottom: 2px;
	transition: background-size .3s var(--ease);
}
.m7-textlink:hover { background-size: 0 1px; background-position: 100% 100%; color: var(--red-ink); }

/* ---------- header ---------- */
.m7-header {
	position: fixed; inset: 0 0 auto 0; z-index: 80;
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--s4);
	padding: 0 var(--page-margin);
	height: var(--header-h);
	color: var(--sheet);
	transition: background .35s var(--ease), color .35s var(--ease), height .35s var(--ease), border-color .35s var(--ease);
	border-bottom: 1px solid transparent;
}
.m7-header.is-solid {
	background: var(--sheet);
	color: var(--ink);
	height: 62px;
	border-bottom-color: var(--line);
}
.m7-brand { display: flex; align-items: center; }
.m7-brand svg, .m7-brand img { height: 24px; width: auto; display: block; transition: filter .35s var(--ease); }
/* black+red logo → white over the dark hero, full colour once the header solidifies */
.m7-header:not(.is-solid) .m7-brand img { filter: brightness(0) invert(1); }
.m7-header.is-solid .m7-brand img { filter: none; }
.m7-brand .word { font-family: var(--f-display); font-weight: 800; font-size: 1.35rem; letter-spacing: -.03em; text-transform: lowercase; }
.m7-brand .word b { color: var(--red); font-weight: 800; }

.m7-nav { display: flex; align-items: center; gap: var(--s3); }
.m7-nav ul { display: flex; gap: var(--s3); list-style: none; margin: 0; padding: 0; }
.m7-nav a {
	font-family: var(--f-display); font-weight: 600; font-size: .82rem;
	letter-spacing: .04em; color: inherit; position: relative; padding-block: 6px;
}
.m7-nav a:hover, .m7-nav .current-menu-item > a { color: var(--red); }
.m7-nav .current-menu-item > a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0;
	height: 2px; background: var(--red);
}
.m7-nav-cta { display: inline-flex; }

.m7-burger {
	display: none;
	width: 44px; height: 44px; border: 0; background: none; cursor: pointer;
	color: inherit;
}
.m7-burger span { display: block; height: 2px; background: currentColor; margin: 5px auto; width: 24px; transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* mobile drawer */
.m7-drawer {
	position: fixed; inset: 0; z-index: 85;
	background: var(--ink); color: var(--sheet);
	display: flex; flex-direction: column; justify-content: center;
	padding: var(--page-margin);
	transform: translateY(-100%);
	transition: transform .5s var(--ease);
}
.m7-drawer.is-open { transform: translateY(0); }
.m7-drawer ul { list-style: none; margin: 0; padding: 0; }
.m7-drawer a {
	font-family: var(--f-display); font-weight: 700;
	font-size: clamp(1.8rem, 8vw, 3rem); letter-spacing: -.02em;
	color: var(--sheet); display: block; padding: .25em 0;
}
.m7-drawer a:hover { color: var(--red); }
.m7-drawer .m7-drawer-foot { margin-top: var(--s5); font-family: var(--f-text); font-size: .95rem; color: #C9C4BC; }

/* ---------- hero ---------- */
.m7-hero {
	position: relative;
	min-height: min(92vh, 900px);
	display: flex; flex-direction: column; justify-content: flex-end;
	padding: calc(var(--header-h) + var(--s4)) var(--page-margin) var(--s7);
	background: var(--ink); color: var(--sheet);
	overflow: hidden;
}
.m7-hero__media { position: absolute; inset: 0; }
.m7-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.m7-hero__inner { position: relative; max-width: var(--maxw); margin-inline: auto; width: 100%; }
.m7-hero__tag { font-family: var(--f-display); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: #C9C4BC; margin-bottom: var(--s3); }
.m7-hero h1 {
	font-family: var(--f-display);
	font-weight: 800;
	font-size: clamp(2.6rem, 7vw, 5.6rem);
	letter-spacing: -.035em;
	line-height: .95;
	max-width: 16ch;
	margin: 0;
}
.m7-hero__lede { margin-top: var(--s3); max-width: 46ch; color: #E6E2DC; font-size: 1.0625rem; }
.m7-hero__actions { display: flex; gap: var(--s2); margin-top: var(--s4); flex-wrap: wrap; }
.m7-hero__cue {
	position: absolute; left: var(--page-margin); bottom: var(--s3);
	display: flex; align-items: center; gap: .6em;
	font-family: var(--f-display); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: #C9C4BC;
}
.m7-hero__cue svg { width: 22px; height: 22px; }

/* strata reveal — resting state is visible; JS adds .m7-strata for animation */
.m7-strata > * { will-change: transform; }

/* ---------- cinematic hero (scroll-scrubbed film) ---------- */
.m7-film-track { position: relative; background: var(--ink); }
.m7-film-stage {
	position: sticky; top: 0; height: 100vh; width: 100%;
	overflow: hidden; background: var(--ink);
}
#m7-film { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.m7-film-vignette {
	position: absolute; inset: 0; z-index: 4; pointer-events: none;
	background:
		radial-gradient(ellipse 74% 78% at 50% 46%, transparent 46%, rgba(10,10,10,.72) 100%),
		linear-gradient(to bottom, rgba(10,10,10,.55), transparent 24%, transparent 62%, rgba(10,10,10,.92));
}
.m7-film-loader {
	position: absolute; inset: 0; z-index: 20; background: var(--ink);
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
	transition: opacity .7s var(--ease);
}
.m7-film-loader.is-done { opacity: 0; pointer-events: none; }
.m7-film-loader .word { font-family: var(--f-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -.03em; text-transform: lowercase; color: var(--sheet); }
.m7-film-loader .word b { color: var(--red); }
.m7-film-loader .bar { width: 160px; height: 2px; background: rgba(255,255,255,.16); overflow: hidden; }
.m7-film-loader .bar i { display: block; height: 100%; width: 0; background: var(--red); transition: width .2s linear; }

.m7-cap {
	position: absolute; z-index: 10; opacity: 0; pointer-events: none;
	color: var(--sheet); max-width: min(560px, 84vw);
	transform: translateY(-50%) translateY(var(--drift, 0px));
	will-change: opacity, transform;
}
.m7-cap.pos-center { left: 50%; top: 50%; transform: translate(-50%,-50%) translateY(var(--drift,0px)); text-align: center; }
.m7-cap.pos-left   { left: clamp(20px,7vw,90px);  top: 50%; }
.m7-cap.pos-right  { right: clamp(20px,7vw,90px); top: 50%; text-align: right; margin-left: auto; }
.m7-cap.pos-bottom { left: clamp(20px,7vw,90px); bottom: 12vh; top: auto; transform: translateY(var(--drift,0px)); }
.m7-cap h2 {
	font-family: var(--f-display); font-weight: 800;
	font-size: clamp(2rem, 5.4vw, 4.4rem); letter-spacing: -.035em; line-height: .98; margin: 0;
	color: var(--sheet);
}
.m7-cap p { margin: .6em 0 0; color: #C9C4BC; font-size: clamp(.95rem, 1.4vw, 1.15rem); max-width: 34ch; }
.m7-cap.pos-right p { margin-left: auto; }
.m7-cap .accent { color: var(--red); }
.m7-cap .m7-btn { margin-top: var(--s3); pointer-events: auto; }

.m7-film-cue {
	position: absolute; left: 50%; bottom: 4.5vh; transform: translateX(-50%); z-index: 10;
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	font-family: var(--f-display); font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
	color: #C9C4BC; transition: opacity .5s var(--ease);
}
.m7-film-cue::after {
	content: ""; width: 1px; height: 30px;
	background: linear-gradient(to bottom, var(--red), transparent);
	animation: m7cue 1.8s var(--ease) infinite;
}
@keyframes m7cue { 0%,100%{ transform: translateY(0); opacity:1 } 50%{ transform: translateY(8px); opacity:.35 } }

@media (max-width: 700px) {
	.m7-film-track { height: 400vh; }
	.m7-cap, .m7-cap.pos-left, .m7-cap.pos-right {
		left: clamp(20px, 6vw, 40px); right: clamp(20px, 6vw, 40px);
		top: auto; bottom: 16vh; text-align: left; max-width: none;
		transform: translateY(var(--drift, 0px));
	}
	.m7-cap.pos-right p { margin-left: 0; }
	.m7-cap.pos-bottom { bottom: 12vh; }
	.m7-cap h2 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
}

@media (prefers-reduced-motion: reduce) {
	.m7-film-track { height: auto !important; }
	.m7-film-stage { position: relative; height: 78vh; }
	.m7-film-cue { display: none; }
	.m7-cap { position: static; opacity: 1 !important; transform: none !important; margin: var(--s4) auto 0; text-align: left; }
	.m7-cap.pos-right { text-align: left; }
}

/* ---------- intro / editorial ---------- */
.m7-intro h2 {
	font-family: var(--f-display); font-weight: 700;
	font-size: clamp(1.9rem, 4.6vw, 3.6rem); letter-spacing: -.03em; line-height: 1.02;
	max-width: 20ch;
}
.m7-intro p { font-size: 1.1875rem; max-width: 54ch; color: var(--ink); }

/* ==========================================================================
   EDITORIAL LAYOUT + LOGO LANGUAGE
   Asymmetric 12-col field, margin numerals, and the logo-derived devices:
   the red datum rule, the contour set, and the "7" hook.
   ========================================================================== */

/* --- drawing-sheet crop marks (desktop) --- */
@media (min-width: 1000px) {
	.m7-crop { position: fixed; z-index: 70; width: 14px; height: 14px; pointer-events: none; opacity: .6; }
	.m7-crop::before, .m7-crop::after { content: ""; position: absolute; background: var(--concrete); }
	.m7-crop::before { width: 100%; height: 1px; top: 6px; }
	.m7-crop::after { height: 100%; width: 1px; left: 6px; }
	.m7-crop.tl { top: 16px; left: 16px; }
	.m7-crop.tr { top: 16px; right: 16px; }
	.m7-crop.bl { bottom: 16px; left: 16px; }
	.m7-crop.br { bottom: 16px; right: 16px; }
}
@media (max-width: 999px) { .m7-crop { display: none; } }

/* --- motifs --- */
.m7-rule { display: block; height: 2px; background: var(--red); width: clamp(64px, 12vw, 240px); }
.m7-hook { display: inline-block; width: 1.1em; height: 1.1em; vertical-align: -.15em; }
.m7-hook path { stroke: var(--red); stroke-width: 2.4; fill: none; }
.m7-contourset { display: grid; gap: 4px; }
.m7-contourset i { height: 1px; background: var(--line); display: block; }
.m7-contourset i:nth-child(3) { background: var(--red); }

/* --- asymmetric section shell --- */
.m7-ed {
	max-width: var(--maxw); margin-inline: auto; padding-inline: var(--page-margin);
	display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--s4) var(--gutter);
	align-items: start;
}
.m7-ed__num {
	grid-column: 1 / -1;
	font-family: var(--f-display); font-weight: 800;
	font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1;
	color: transparent; -webkit-text-stroke: 1px var(--line); letter-spacing: -.04em;
	font-variant-numeric: tabular-nums;
}
.m7-ed__label {
	grid-column: 1 / -1;
	font-family: var(--f-display); text-transform: uppercase; letter-spacing: .18em;
	font-size: .72rem; font-weight: 600; color: var(--concrete);
	display: flex; align-items: center; gap: .8em;
}
.m7-ed__label .m7-rule { width: 40px; }
.m7-ed__head {
	grid-column: 1 / span 8;
	font-family: var(--f-display); font-weight: 700;
	font-size: clamp(2rem, 5.2vw, 4.2rem); letter-spacing: -.032em; line-height: 1.0;
	margin: var(--s2) 0 0; text-wrap: balance;
}
.m7-ed__head .accent { color: var(--red); }
.m7-ed__aside {
	grid-column: 9 / span 4; align-self: end;
	font-size: 1.0625rem; color: var(--concrete); margin-top: var(--s3);
}
.m7-ed__aside p { max-width: 42ch; }
.m7-ed__wide { grid-column: 1 / span 10; }
.m7-ed__full { grid-column: 1 / -1; }

@media (max-width: 860px) {
	.m7-ed { grid-template-columns: repeat(6, 1fr); }
	.m7-ed__head, .m7-ed__aside, .m7-ed__wide { grid-column: 1 / -1; }
	.m7-ed__aside { align-self: start; }
}

/* --- section rhythm --- */
.m7-section--tight { padding-block: clamp(3rem, 7vw, 6rem); }
.m7-section--vast  { padding-block: clamp(7rem, 16vw, 15rem); }
.m7-section--dark  { background: var(--ink); color: var(--sheet); border-top: 0; }
.m7-section--dark .m7-ed__head { color: var(--sheet); }
.m7-section--dark .m7-ed__aside { color: #B7B2AA; }
.m7-section--dark .m7-ed__num { -webkit-text-stroke-color: rgba(255,255,255,.22); }
.m7-section--raised { background: var(--sheet-2); }

/* --- philosophy themes as a contour list --- */
.m7-themes { grid-column: 1 / -1; list-style: none; margin: var(--s5) 0 0; padding: 0;
	display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0 var(--gutter); }
.m7-themes li {
	font-family: var(--f-display); font-weight: 600; font-size: 1.05rem;
	padding: var(--s3) 0; border-top: 1px solid var(--line);
	display: flex; align-items: baseline; gap: .7em;
}
.m7-themes li::before { content: ""; width: 14px; height: 2px; background: var(--red); flex: none; }

/* --- experience: oversized year --- */
.m7-year {
	grid-column: 1 / span 5;
	font-family: var(--f-display); font-weight: 800;
	font-size: clamp(4rem, 14vw, 11rem); line-height: .86; letter-spacing: -.05em;
	color: var(--ink); margin: 0;
}
.m7-section--dark .m7-year { color: var(--sheet); }
.m7-year small { display: block; font-size: .18em; letter-spacing: .16em; text-transform: uppercase; color: var(--concrete); margin-top: .6em; font-weight: 600; }
.m7-exp-body { grid-column: 7 / span 6; align-self: center; font-size: 1.1rem; }
@media (max-width: 860px) { .m7-year, .m7-exp-body { grid-column: 1 / -1; } }

/* --- process: big numerals --- */
.m7-proc { grid-column: 1 / -1; margin-top: var(--s5); }
.m7-proc__row {
	display: grid; grid-template-columns: 5rem 1fr; gap: var(--s4);
	padding: var(--s4) 0; border-top: 1px solid var(--line); align-items: baseline;
}
.m7-proc__row:last-child { border-bottom: 1px solid var(--line); }
.m7-proc__row .n { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--red); font-variant-numeric: tabular-nums; letter-spacing: -.03em; }
.m7-proc__row h3 { font-size: 1.2rem; margin: 0 0 .2em; }
.m7-proc__row p { margin: 0; color: var(--concrete); font-size: .98rem; max-width: 52ch; }
@media (max-width: 560px) { .m7-proc__row { grid-template-columns: 3rem 1fr; gap: var(--s3); } }

/* --- services index (archive) --- */
.m7-svc-index { border-top: 1px solid var(--line); }
.m7-svc-index__row { border-bottom: 1px solid var(--line); }
.m7-svc-index__link {
	display: grid; grid-template-columns: 4rem 1fr; gap: var(--s2) var(--s5);
	max-width: var(--maxw); margin-inline: auto; padding: var(--s6) var(--page-margin);
	color: var(--ink); align-items: start;
	transition: background .3s var(--ease), padding-left .3s var(--ease);
}
.m7-svc-index__link:hover { background: var(--sheet-2); }
.m7-svc-index__n { font-family: var(--f-display); font-weight: 800; color: var(--red); font-variant-numeric: tabular-nums; font-size: 1rem; padding-top: .5rem; }
.m7-svc-index__body h2 {
	font-family: var(--f-display); font-weight: 700; letter-spacing: -.02em;
	font-size: clamp(1.6rem, 3.6vw, 2.8rem); margin: 0 0 .25em; display: flex; align-items: center; gap: .35em;
}
.m7-svc-index__body h2 .m7-hook { width: .8em; height: .8em; opacity: 0; transform: translateX(-6px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.m7-svc-index__link:hover .m7-hook { opacity: 1; transform: translateX(0); }
.m7-svc-index__body p { color: var(--concrete); max-width: 52ch; margin: 0; }
.m7-svc-index__media { display: none; }
@media (min-width: 900px) {
	.m7-svc-index__link { grid-template-columns: 4rem 1fr 300px; align-items: center; }
	.m7-svc-index__media { display: block; overflow: hidden; }
	.m7-svc-index__media img { width: 100%; height: 190px; object-fit: cover; transform: scale(1.02); transition: transform .5s var(--ease); }
	.m7-svc-index__link:hover .m7-svc-index__media img { transform: scale(1.08); }
}

/* --- about: leadership --- */
.m7-lead-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s6) var(--gutter); margin-top: var(--s5); }
.m7-lead .m7-img-mat { aspect-ratio: 4/5; margin-bottom: var(--s3); }
.m7-lead h3 { font-size: 1.35rem; margin: 0 0 .1em; }
.m7-lead .role { color: var(--red-ink); font-family: var(--f-display); font-weight: 600; font-size: .82rem; letter-spacing: .03em; margin: 0 0 var(--s2); }
.m7-lead .bio { color: var(--concrete); font-size: .96rem; }
.m7-lead__edu { list-style: none; margin: var(--s2) 0 0; padding: 0; }
.m7-lead__edu li { font-size: .85rem; color: var(--concrete); padding: 4px 0; border-top: 1px solid var(--line); }

/* --- big statement (intro) --- */
.m7-bigstatement {
	grid-column: 1 / span 9;
	font-family: var(--f-display); font-weight: 700;
	font-size: clamp(1.9rem, 4.8vw, 3.8rem); letter-spacing: -.03em; line-height: 1.05;
	margin: var(--s2) 0 0; text-wrap: balance;
}
@media (max-width: 860px) { .m7-bigstatement { grid-column: 1 / -1; } }

/* ==========================================================================
   HOME SECTION TREATMENTS — one bold idea per section
   ========================================================================== */

/* 02 · INTRODUCTION — typographic old/new contrast */
.m7-split { grid-column: 1 / -1; margin: var(--s4) 0 0; }
.m7-split__l1, .m7-split__l2 {
	display: block; font-family: var(--f-display); font-weight: 800;
	font-size: clamp(2.4rem, 8.5vw, 7rem); line-height: .96; letter-spacing: -.04em;
	text-wrap: balance;
}
.m7-split__l1 { color: var(--ink); }
.m7-split__l2 { color: transparent; -webkit-text-stroke: 1.4px var(--ink); margin-left: clamp(0px, 6vw, 120px); }
.m7-split__rule { display: block; height: 2px; width: clamp(80px, 20vw, 320px); background: var(--red); margin: var(--s4) 0; }
.m7-split__body { max-width: 46ch; color: var(--concrete); font-size: 1.0625rem; margin-left: auto; }
@media (min-width: 900px) { .m7-split__body { margin-right: 8%; } }

/* 04 · PHILOSOPHY — giant stacked manifesto words */
.m7-manifesto { grid-column: 1 / -1; margin-top: var(--s6); position: relative; }
.m7-manifesto__line { position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--line); }
.m7-manifesto__line i { position: absolute; left: -1px; top: 0; width: 3px; background: var(--red); transform: scaleY(0); transform-origin: 0 0; }
.m7-manifesto ol { list-style: none; margin: 0; padding: 0 0 0 var(--s5); counter-reset: m; }
.m7-manifesto li {
	counter-increment: m;
	font-family: var(--f-display); font-weight: 700; letter-spacing: -.03em;
	font-size: clamp(1.8rem, 6vw, 4.6rem); line-height: 1.08;
	padding: clamp(.2rem, 1.4vw, .7rem) 0;
	color: var(--ink);
	display: flex; align-items: baseline; gap: .5em;
	transition: color .3s var(--ease), transform .3s var(--ease);
}
.m7-manifesto li::before {
	content: counter(m, decimal-leading-zero);
	font-size: .3em; font-weight: 700; color: var(--red); flex: none;
	font-variant-numeric: tabular-nums;
}
.m7-manifesto li:nth-child(even) { color: transparent; -webkit-text-stroke: 1px var(--ink); }
.m7-manifesto li:hover { color: var(--red); -webkit-text-stroke-color: var(--red); }

/* 05 · SERVICES — big list, hover reveals the project/photo */
.m7-svc { grid-column: 1 / -1; border-top: 1px solid var(--line); margin-top: var(--s5); position: relative; }
.m7-svc__row {
	display: grid; grid-template-columns: 3.5rem 1fr auto; gap: var(--s3);
	align-items: center; padding: clamp(1rem, 2.4vw, 1.8rem) 0;
	border-bottom: 1px solid var(--line);
	position: relative; transition: padding-left .35s var(--ease);
}
.m7-svc__row .n { font-family: var(--f-display); font-weight: 700; color: var(--red); font-variant-numeric: tabular-nums; font-size: .9rem; }
.m7-svc__row h3 {
	margin: 0; font-family: var(--f-display); font-weight: 700; letter-spacing: -.02em;
	font-size: clamp(1.4rem, 3.4vw, 2.6rem); color: var(--ink);
	transition: color .3s var(--ease);
}
.m7-svc__row .go { color: var(--concrete); transition: transform .35s var(--ease), color .3s var(--ease); }
.m7-svc__row:hover { padding-left: var(--s3); }
.m7-svc__row:hover h3 { color: var(--red); }
.m7-svc__row:hover .go { transform: translateX(8px); color: var(--red); }
.m7-svc__peek {
	position: fixed; z-index: 40; width: min(30vw, 380px); aspect-ratio: 4/3;
	pointer-events: none; overflow: hidden; opacity: 0;
	transform: translate(-50%, -50%) scale(.94);
	transition: opacity .3s var(--ease), transform .4s var(--ease);
	box-shadow: 0 30px 80px -20px rgba(0,0,0,.5);
}
.m7-svc__peek.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.m7-svc__peek img { width: 100%; height: 100%; object-fit: cover; }
@media (hover: none), (max-width: 900px) { .m7-svc__peek { display: none; } }

/* 06 · EXPERIENCE — two huge numerals bridged by the datum */
.m7-bridge { grid-column: 1 / -1; display: grid; gap: var(--s5); align-items: center; margin-top: var(--s5); }
@media (min-width: 900px) { .m7-bridge { grid-template-columns: 1fr auto 1fr; } }
.m7-bridge__fig { text-align: center; }
.m7-bridge__fig b {
	display: block; font-family: var(--f-display); font-weight: 800;
	font-size: clamp(3.5rem, 13vw, 10rem); line-height: .85; letter-spacing: -.05em;
	color: var(--sheet);
}
.m7-bridge__fig span { display: block; margin-top: var(--s2); font-family: var(--f-display); font-weight: 600; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #9A948C; }
.m7-bridge__link { height: 2px; background: var(--red); min-width: 60px; }
@media (min-width: 900px) { .m7-bridge__link { width: clamp(60px, 12vw, 200px); } }
@media (max-width: 899px) { .m7-bridge__link { width: 60px; margin: 0 auto; } }
.m7-bridge__note { grid-column: 1 / -1; text-align: center; color: #B7B2AA; max-width: 60ch; margin: var(--s5) auto 0; }

/* 07 · TEAM — editorial portraits, oversized names */
.m7-people { grid-column: 1 / -1; margin-top: var(--s6); display: grid; gap: var(--s6) var(--gutter); grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.m7-people__card { position: relative; }
.m7-people__card--lead { grid-column: span 2; }
@media (max-width: 700px) { .m7-people__card--lead { grid-column: span 1; } }
.m7-people__media { overflow: hidden; aspect-ratio: 4/5; background: var(--sheet-2); position: relative; }
.m7-people__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.03); transition: filter .5s var(--ease), transform .7s var(--ease); }
.m7-people__card:hover .m7-people__media img { filter: none; transform: scale(1.04); }
.m7-people__name {
	font-family: var(--f-display); font-weight: 700; letter-spacing: -.02em;
	font-size: clamp(1.3rem, 2.6vw, 2rem); margin: var(--s3) 0 0; color: var(--ink);
}
.m7-people__card--lead .m7-people__name { font-size: clamp(1.6rem, 3.4vw, 2.6rem); }
.m7-people__role { color: var(--red-ink); font-family: var(--f-display); font-weight: 600; font-size: .8rem; letter-spacing: .04em; margin: 4px 0 0; }
.m7-people__bio { color: var(--concrete); font-size: .92rem; margin-top: var(--s2); max-width: 42ch; }

/* 08 · PROCESS — giant ghost numerals, connecting line */
.m7-flow { grid-column: 1 / -1; margin-top: var(--s6); position: relative; }
.m7-flow__step {
	display: grid; grid-template-columns: minmax(4.5rem, 22vw) 1fr; align-items: center;
	gap: var(--s4); padding: clamp(1rem, 3vw, 2.4rem) 0; border-top: 1px solid var(--line);
}
.m7-flow__step:last-child { border-bottom: 1px solid var(--line); }
.m7-flow__step .n {
	font-family: var(--f-display); font-weight: 800; letter-spacing: -.05em;
	font-size: clamp(3rem, 11vw, 8rem); line-height: .8;
	color: transparent; -webkit-text-stroke: 1px var(--line);
	font-variant-numeric: tabular-nums; transition: -webkit-text-stroke-color .35s var(--ease), color .35s var(--ease);
}
.m7-flow__step:hover .n { -webkit-text-stroke-color: var(--red); }
.m7-flow__step h3 { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.15rem, 2.4vw, 1.7rem); letter-spacing: -.01em; margin: 0 0 .25em; }
.m7-flow__step p { margin: 0; color: var(--concrete); font-size: .98rem; max-width: 54ch; }
@media (max-width: 560px) { .m7-flow__step { grid-template-columns: 1fr; gap: var(--s2); } .m7-flow__step .n { font-size: 3rem; } }

/* 09 · INSIGHTS — one feature + supporting */
.m7-journal { grid-column: 1 / -1; margin-top: var(--s6); display: grid; gap: var(--s6) var(--gutter); }
@media (min-width: 900px) { .m7-journal { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.m7-journal__feat { position: relative; }
.m7-journal__feat .m7-journal__media { overflow: hidden; aspect-ratio: 16/10; background: var(--sheet-2); }
.m7-journal__feat img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.m7-journal__feat:hover img { transform: scale(1.04); }
.m7-journal__feat h3 { font-family: var(--f-display); font-weight: 700; letter-spacing: -.02em; font-size: clamp(1.6rem, 3.4vw, 2.6rem); margin: var(--s3) 0 .2em; color: var(--ink); transition: color .25s var(--ease); }
.m7-journal__feat:hover h3 { color: var(--red); }
.m7-journal__list { list-style: none; margin: 0; padding: 0; }
.m7-journal__list li { border-top: 1px solid var(--line); padding: var(--s4) 0; position: relative; }
.m7-journal__list li:last-child { border-bottom: 1px solid var(--line); }
.m7-journal__list h4 { font-family: var(--f-display); font-weight: 600; font-size: 1.15rem; margin: .2em 0 0; color: var(--ink); transition: color .25s var(--ease); }
.m7-journal__list li:hover h4 { color: var(--red); }
.m7-journal__list .m7-eyebrow { margin: 0; }
.m7-journal__link { position: absolute; inset: 0; }

/* 10 · LOCATION — oversized place name + spec + map frame */
.m7-place { grid-column: 1 / -1; margin-top: var(--s4); }
.m7-place__name {
	font-family: var(--f-display); font-weight: 800; letter-spacing: -.045em; line-height: .9;
	font-size: clamp(3rem, 13vw, 10rem); color: var(--ink); margin: 0;
}
.m7-place__name span { color: transparent; -webkit-text-stroke: 1.4px var(--ink); }
.m7-place__grid { display: grid; gap: var(--s5) var(--gutter); margin-top: var(--s6); }
@media (min-width: 900px) { .m7-place__grid { grid-template-columns: 1fr 1fr; } }
.m7-place address { font-style: normal; line-height: 1.8; font-size: 1rem; }
.m7-place__map {
	border: 1px solid var(--line); background:
		repeating-linear-gradient(45deg, transparent 0 14px, rgba(0,0,0,.02) 14px 15px),
		var(--sheet-2);
	aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
	font-family: var(--f-display); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: var(--concrete);
	position: relative;
}
.m7-place__map::after { content: ""; position: absolute; width: 12px; height: 12px; border: 2px solid var(--red); border-radius: 50%; }

/* ---------- ABOUT PAGE ---------- */
.m7-about-hero {
	position: relative; min-height: clamp(76vh, 88vh, 920px);
	display: flex; align-items: flex-end; background: var(--ink); overflow: hidden;
}
.m7-about-hero__media { position: absolute; inset: 0; }
.m7-about-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; transform: scale(1.08); }
.m7-about-hero::after {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(to top, rgba(10,10,10,.92), rgba(10,10,10,.18) 58%, transparent);
}
.m7-about-hero__inner { position: relative; z-index: 2; width: 100%; color: var(--sheet); padding-block: var(--s7); }
.m7-about-hero__inner .m7-ed__label { color: #C9C4BC; }
.m7-about-hero h1 {
	font-family: var(--f-display); font-weight: 800; letter-spacing: -.045em; line-height: .9;
	font-size: clamp(2.6rem, 9vw, 7.5rem); color: var(--sheet); margin: var(--s3) 0 0; max-width: 16ch;
}
.m7-about-hero h1 .ghost { color: transparent; -webkit-text-stroke: 1.4px var(--sheet); display: block; }
.m7-about-hero__sub { margin-top: var(--s4); color: #D8D3CC; max-width: 44ch; font-size: 1.0625rem; }

.m7-facts {
	grid-column: 1 / -1; margin-top: var(--s5);
	display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: var(--s5) var(--gutter);
	border-block: 1px solid var(--line); padding-block: var(--s6);
}
.m7-facts div b {
	display: block; font-family: var(--f-display); font-weight: 800; letter-spacing: -.04em; line-height: 1;
	font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--ink);
}
.m7-facts div b small { font-size: .32em; -webkit-text-stroke: 0; color: var(--concrete); font-weight: 600; }
.m7-facts div span { display: block; margin-top: var(--s2); font-size: .84rem; color: var(--concrete); }

.m7-lead-feature { grid-column: 1 / -1; display: grid; gap: var(--s5) var(--gutter); align-items: center; margin-top: var(--s7); }
@media (min-width: 900px) {
	.m7-lead-feature { grid-template-columns: 5fr 7fr; }
	.m7-lead-feature:nth-of-type(even) .m7-lead-feature__media { order: 2; }
}
.m7-lead-feature__media { overflow: hidden; aspect-ratio: 4/5; background: var(--sheet-2); }
.m7-lead-feature__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.3) contrast(1.03); transition: filter .6s var(--ease); }
.m7-lead-feature:hover .m7-lead-feature__media img { filter: none; }
.m7-lead-feature h3 { font-family: var(--f-display); font-weight: 800; letter-spacing: -.03em; font-size: clamp(2rem, 5vw, 3.6rem); margin: 0; line-height: 1; }
.m7-lead-feature .role { color: var(--red-ink); font-family: var(--f-display); font-weight: 600; letter-spacing: .04em; font-size: .88rem; margin: .5em 0 var(--s3); }
.m7-lead-feature .bio { max-width: 52ch; color: var(--concrete); }
.m7-lead-feature .spec { list-style: none; margin: var(--s4) 0 0; padding: 0; }
.m7-lead-feature .spec li { font-size: .88rem; color: var(--concrete); padding: 7px 0; border-top: 1px solid var(--line); }

/* 11 · CONTACT — max-scale closing statement */
.m7-close { grid-column: 1 / -1; }
.m7-close h2 {
	font-family: var(--f-display); font-weight: 800; letter-spacing: -.045em; line-height: .92;
	font-size: clamp(2.6rem, 11vw, 8.5rem); color: var(--sheet); margin: var(--s3) 0 0;
	max-width: 14ch;
}
.m7-close h2 .accent { color: var(--red); }
.m7-close .m7-hero__actions { margin-top: var(--s6); }
.m7-close__datum { display: block; height: 2px; width: clamp(100px, 30vw, 460px); background: var(--red); }

/* ---------- selected projects (pinned set-piece) ---------- */
.m7-selected { background: var(--ink); color: var(--sheet); border-top: 0; position: relative; overflow: hidden; }
.m7-selected .m7-eyebrow { color: #9A948C; }
.m7-selected__ghost {
	position: absolute; top: -.18em; right: -.04em; z-index: 0;
	font-family: var(--f-display); font-weight: 800; letter-spacing: -.06em;
	font-size: clamp(9rem, 34vw, 30rem); line-height: 1;
	color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.07);
	pointer-events: none; user-select: none;
}
.m7-selected .m7-wrap { position: relative; z-index: 1; }
.m7-selected__stage { position: relative; }
@media (min-width: 900px) {
	.m7-selected__stage { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); align-items: start; }
	.m7-selected__media {
		position: sticky; top: var(--header-h);
		height: calc(100vh - var(--header-h) - var(--s5));
	}
	.m7-selected__media figure { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .5s var(--ease); }
	.m7-selected__media figure.is-active { opacity: 1; }
	.m7-selected__media img { width: 100%; height: 100%; object-fit: cover; }
	.m7-selected__list { padding-block: 20vh; }
}
.m7-selected__item { padding-block: var(--s5); border-bottom: 1px solid rgba(255,255,255,.14); }
.m7-selected__item .n { font-family: var(--f-display); font-weight: 700; color: var(--red); font-variant-numeric: tabular-nums; font-size: .9rem; }
.m7-selected__item h3 { font-size: clamp(1.6rem, 3.4vw, 2.6rem); letter-spacing: -.02em; margin: .2em 0 .3em; }
.m7-selected__item h3 a { color: inherit; }
.m7-selected__item h3 a:hover { color: var(--red); }
.m7-selected__item .m { color: #9A948C; font-size: .9rem; }
.m7-selected__media--mobile { margin-top: var(--s3); }
@media (min-width: 900px) { .m7-selected__media--mobile { display: none; } }

/* ---------- selected projects — horizontal scroll ---------- */
.m7-work {
	position: relative; background: var(--ink); color: var(--sheet);
	border-top: 0; overflow: hidden;
	padding-block: var(--section) 0;
}
.m7-work__ghost {
	position: absolute; top: -.14em; right: -.03em; z-index: 0;
	font-family: var(--f-display); font-weight: 800; letter-spacing: -.06em;
	font-size: clamp(9rem, 32vw, 27rem); line-height: 1;
	color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.07);
	pointer-events: none; user-select: none;
}
.m7-work__head {
	position: relative; z-index: 1;
	display: flex; align-items: baseline; justify-content: space-between; gap: var(--s4);
	margin-bottom: var(--s6);
}
.m7-work__count {
	font-family: var(--f-display); font-weight: 600; color: #9A948C;
	font-variant-numeric: tabular-nums; letter-spacing: .12em; font-size: .78rem;
}

.m7-work__viewport {
	position: relative; z-index: 1;
	overflow-x: auto; overflow-y: hidden;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: var(--section);
}
.m7-work__viewport::-webkit-scrollbar { display: none; }
.m7-work--js .m7-work__viewport { overflow: hidden; scroll-snap-type: none; }

.m7-work__track {
	display: flex; align-items: stretch; gap: clamp(18px, 4vw, 60px);
	padding-inline: var(--page-margin); width: max-content;
}

.m7-work__card {
	position: relative; flex: 0 0 clamp(280px, 82vw, 680px);
	scroll-snap-align: center;
}
@media (min-width: 900px) { .m7-work__card { flex-basis: clamp(440px, 54vw, 720px); } }
.m7-work__link { position: absolute; inset: 0; z-index: 3; }
.m7-work__n {
	position: absolute; top: -.55em; left: -.12em; z-index: 2;
	font-family: var(--f-display); font-weight: 800; letter-spacing: -.04em;
	font-size: clamp(3rem, 7vw, 6rem); font-variant-numeric: tabular-nums;
	color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.28);
	pointer-events: none;
}
.m7-work__media {
	margin: 0; overflow: hidden; background: #141210;
	aspect-ratio: 4 / 3;
}
.m7-work__media img {
	width: 100%; height: 100%; object-fit: cover;
	transform: scale(1.05); transition: transform .8s var(--ease); will-change: transform;
}
.m7-work__card:hover .m7-work__media img { transform: scale(1.1); }
.m7-work__meta { padding-top: var(--s3); }
.m7-work__meta h3 {
	font-family: var(--f-display); font-weight: 700; letter-spacing: -.02em;
	font-size: clamp(1.6rem, 3.2vw, 2.6rem); margin: 0 0 .2em;
	color: var(--sheet); transition: color .25s var(--ease);
}
.m7-work__card:hover .m7-work__meta h3 { color: var(--red); }
.m7-work__meta p { color: #9A948C; font-size: .92rem; margin: 0 0 var(--s2); }
.m7-work__go {
	display: inline-flex; align-items: center; gap: .5em;
	font-family: var(--f-display); font-weight: 600; font-size: .74rem;
	letter-spacing: .1em; text-transform: uppercase; color: #C9C4BC;
}
.m7-work__go .m7-hook { width: 1em; height: 1em; }

.m7-work__all {
	flex: 0 0 auto; align-self: center;
	display: flex; flex-direction: column; align-items: center; gap: var(--s3);
	padding-inline: clamp(36px, 8vw, 130px); color: var(--sheet);
	font-family: var(--f-display); font-weight: 700; letter-spacing: -.01em;
	font-size: clamp(1.4rem, 3vw, 2.2rem); text-align: center;
	transition: color .25s var(--ease);
}
.m7-work__all .m7-hook { width: 1.5em; height: 1.5em; }
.m7-work__all:hover { color: var(--red); }

.m7-work__progress {
	position: relative; z-index: 1; height: 2px;
	background: rgba(255,255,255,.12);
	margin: 0 var(--page-margin) var(--section);
}
.m7-work--js .m7-work__progress { margin-top: calc(var(--section) * -0.55); }
.m7-work__progress i {
	display: block; height: 100%; width: 100%;
	background: var(--red); transform: scaleX(.04); transform-origin: 0 50%;
}

@media (prefers-reduced-motion: reduce) {
	.m7-work__media img { transform: none; }
	.m7-work--js .m7-work__viewport { overflow-x: auto; scroll-snap-type: x proximity; }
}

/* ---------- services index ---------- */
.m7-services__list { border-top: 1px solid var(--line); }
.m7-service-row {
	display: grid; grid-template-columns: 3rem 1fr auto; gap: var(--s3);
	align-items: baseline;
	padding-block: var(--s4);
	border-bottom: 1px solid var(--line);
	transition: padding-left .3s var(--ease);
}
.m7-service-row:hover { padding-left: var(--s2); }
.m7-service-row .n { font-family: var(--f-display); font-weight: 700; color: var(--red); font-variant-numeric: tabular-nums; }
.m7-service-row h3 { font-size: clamp(1.3rem, 2.6vw, 2rem); letter-spacing: -.01em; margin: 0; }
.m7-service-row h3 a { color: inherit; }
.m7-service-row:hover h3 a { color: var(--red); }
.m7-service-row .arrow { color: var(--concrete); transition: transform .3s var(--ease); }
.m7-service-row:hover .arrow { transform: translateX(6px); color: var(--red); }

/* ---------- project archive grid ---------- */
.m7-projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--s6) var(--gutter); }
.m7-project-card { position: relative; }
.m7-project-card__link { position: absolute; inset: 0; z-index: 2; }
.m7-project-card .m7-img-mat { aspect-ratio: 4/5; overflow: hidden; }
.m7-project-card .m7-img { transition: transform .6s var(--ease); }
.m7-project-card:hover .m7-img { transform: scale(1.035); }
.m7-project-card__n { font-family: var(--f-display); font-weight: 700; color: var(--red); font-variant-numeric: tabular-nums; font-size: .8rem; margin: var(--s2) 0 0; }
.m7-project-card h3 { font-size: 1.35rem; margin: 4px 0 .1em; letter-spacing: -.01em; color: var(--ink); transition: color .25s var(--ease); }
.m7-project-card h3 a { color: inherit; }
.m7-project-card:hover h3, .m7-project-card:hover h3 a { color: var(--red); }
.m7-project-card .m { color: var(--concrete); font-size: .88rem; }
.m7-project-card:nth-child(3n+2) { transform: translateY(var(--s5)); }
@media (max-width: 780px) { .m7-project-card:nth-child(3n+2) { transform: none; } }

.m7-filters { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s5); }
.m7-filters a {
	font-family: var(--f-display); font-weight: 600; font-size: .8rem; letter-spacing: .04em;
	color: var(--concrete); padding: 6px 0; border-bottom: 2px solid transparent;
}
.m7-filters a[aria-current="page"], .m7-filters a:hover { color: var(--ink); border-bottom-color: var(--red); }

/* ---------- single project ---------- */
.m7-project-hero { padding: calc(var(--header-h) + var(--s5)) 0 var(--s5); }
.m7-project-hero h1 { font-size: clamp(2.2rem, 5.5vw, 4.4rem); letter-spacing: -.03em; max-width: 18ch; }
.m7-project-hero .lede { font-size: 1.25rem; max-width: 52ch; color: var(--concrete); }
.m7-project-figure { margin: 0 0 var(--s5); }
.m7-project-figure--bleed { width: 100vw; margin-inline: calc(50% - 50vw); }
.m7-project-figure figcaption { font-size: .85rem; color: var(--concrete); margin-top: var(--s1); }
.m7-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--s3) var(--s4); border-top: 1px solid var(--ink); padding-top: var(--s4); margin-block: var(--s5); }
.m7-meta dt { font-family: var(--f-display); text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; color: var(--concrete); margin-bottom: 4px; }
.m7-meta dd { margin: 0; font-size: .98rem; }

/* ---------- single project (editorial feature) ---------- */
.m7-project__hero {
	position: relative;
	min-height: clamp(62vh, 74vh, 780px);
	display: flex; align-items: flex-end;
	background: var(--ink); overflow: hidden;
}
.m7-project__hero-media { position: absolute; inset: 0; }
.m7-project__hero-media img { width: 100%; height: 100%; object-fit: cover; }
.m7-project__hero::after {
	content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background: linear-gradient(to top, rgba(10,10,10,.86) 0%, rgba(10,10,10,.28) 42%, rgba(10,10,10,.05) 70%);
}
.m7-project__hero-inner { position: relative; z-index: 2; width: 100%; color: var(--sheet); padding-block: var(--s6); }
.m7-project__eyebrow {
	font-family: var(--f-display); text-transform: uppercase; letter-spacing: .16em;
	font-size: .72rem; font-weight: 600; color: #C9C4BC; margin: 0 0 var(--s3);
	display: flex; align-items: center; gap: .9em;
}
.m7-project__eyebrow .n { color: var(--red); font-variant-numeric: tabular-nums; }
.m7-project__hero-inner h1 {
	font-family: var(--f-display); font-weight: 800; color: var(--sheet);
	font-size: clamp(2.4rem, 6.4vw, 5.4rem); letter-spacing: -.035em; line-height: .98;
	max-width: 20ch; margin: 0;
}
.m7-project__facts { margin: var(--s3) 0 0; color: #D8D3CC; font-size: 1rem; letter-spacing: .01em; }

.m7-project__lead { align-items: start; gap: var(--s6) var(--gutter); }
.m7-statement {
	grid-column: span 7;
	font-family: var(--f-display); font-weight: 500;
	font-size: clamp(1.4rem, 2.8vw, 2.2rem); line-height: 1.22; letter-spacing: -.02em;
	max-width: 24ch; margin: 0; text-wrap: balance;
}
.m7-spec {
	grid-column: span 5; margin: 0;
	border-top: 1px solid var(--ink);
}
.m7-spec > div {
	display: grid; grid-template-columns: 9rem 1fr; gap: var(--s3);
	padding: var(--s2) 0; border-bottom: 1px solid var(--line);
}
.m7-spec dt { font-family: var(--f-display); text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; color: var(--concrete); margin: 0; }
.m7-spec dd { margin: 0; font-size: .95rem; }

.m7-project__gallery { display: flex; flex-direction: column; gap: var(--gutter); margin-block: var(--s6); }
.m7-project__gallery figure { margin: 0; }
.m7-project__gallery .is-bleed { width: 100vw; margin-inline: calc(50% - 50vw); }
.m7-project__gallery .is-bleed img { width: 100%; height: clamp(50vh, 64vh, 720px); object-fit: cover; }
.m7-project__gallery .is-half {
	width: min(var(--maxw-content), 100% - (2 * var(--page-margin)));
	margin-inline: auto;
}
.m7-project__gallery .is-half img { width: 100%; height: auto; }
@media (min-width: 900px) {
	.m7-project__gallery { display: grid; grid-template-columns: 1fr 1fr; align-items: start; }
	.m7-project__gallery .is-bleed { grid-column: 1 / -1; }
	.m7-project__gallery .is-half { width: auto; margin: 0; }
	.m7-project__gallery .is-half:nth-of-type(3n+2) { margin-top: var(--s6); }
}

.m7-material-list {
	list-style: none; margin: var(--s4) 0 0; padding: 0;
	display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0 var(--gutter);
}
.m7-material-list li {
	font-family: var(--f-display); font-weight: 500; font-size: .98rem;
	border-top: 1px solid var(--line); padding: var(--s2) 0;
}

.m7-project__nav {
	display: grid; grid-template-columns: 1fr; gap: var(--s4);
	max-width: var(--maxw); margin: var(--s7) auto 0; padding: var(--s6) var(--page-margin) 0;
	border-top: 1px solid var(--line);
}
@media (min-width: 760px) { .m7-project__nav { grid-template-columns: 1fr 1.4fr; align-items: center; } }
.m7-project__nav a { color: var(--ink); }
.m7-project__nav-prev .lbl, .m7-project__nav-next .lbl {
	display: flex; align-items: center; gap: .5em;
	font-family: var(--f-display); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; color: var(--concrete);
}
.m7-project__nav-next .lbl svg { width: 20px; height: 20px; color: var(--red); }
.m7-project__nav-prev .ttl, .m7-project__nav-next .ttl {
	display: block; font-family: var(--f-display); font-weight: 700; letter-spacing: -.01em; margin-top: 4px;
}
.m7-project__nav-prev .ttl { font-size: 1.15rem; }
.m7-project__nav-next { position: relative; }
.m7-project__nav-next .ttl { font-size: clamp(1.4rem, 3vw, 2.2rem); }
.m7-project__nav-next:hover .ttl { color: var(--red); }
.m7-project__nav-thumb { width: 100%; height: 180px; object-fit: cover; margin-top: var(--s3); border: 1px solid var(--line); }

@media (max-width: 780px) {
	.m7-statement, .m7-spec { grid-column: 1 / -1; }
	.m7-spec { margin-top: var(--s4); }
	.m7-spec > div { grid-template-columns: 7rem 1fr; }
}

/* ---------- team ---------- */
.m7-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--s5) var(--gutter); }
.m7-team-card .m7-img-mat { aspect-ratio: 4/5; }
.m7-team-card h3 { font-size: 1.2rem; margin: var(--s2) 0 .1em; }
.m7-team-card .role { color: var(--red-ink); font-family: var(--f-display); font-weight: 600; font-size: .82rem; letter-spacing: .03em; }
.m7-team-card .bio { color: var(--concrete); font-size: .92rem; margin-top: var(--s1); }

/* ---------- process ---------- */
.m7-process { counter-reset: step; }
.m7-process__row { display: grid; grid-template-columns: 4rem 1fr; gap: var(--s3); padding-block: var(--s3); border-bottom: 1px solid var(--line); }
.m7-process__row .n { font-family: var(--f-display); font-weight: 700; color: var(--red); font-variant-numeric: tabular-nums; }
.m7-process__row h3 { font-size: 1.15rem; margin: 0 0 .2em; }
.m7-process__row p { margin: 0; color: var(--concrete); font-size: .95rem; }

/* ---------- location / contact CTA ---------- */
.m7-cta-band { background: var(--ink); color: var(--sheet); text-align: left; }
.m7-cta-band h2 { font-family: var(--f-display); font-weight: 800; font-size: clamp(2rem, 6vw, 4rem); letter-spacing: -.03em; max-width: 18ch; }
.m7-cta-band .m7-hero__actions { margin-top: var(--s4); }

/* ---------- forms ---------- */
.m7-form { display: grid; gap: var(--s3); max-width: 640px; }
.m7-field { display: flex; flex-direction: column; gap: 6px; }
.m7-field label { font-family: var(--f-display); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--concrete); }
.m7-field .req { color: var(--red); }
.m7-field input, .m7-field select, .m7-field textarea {
	font: inherit; padding: 12px 14px;
	border: 1px solid var(--line); background: var(--sheet-raised); color: var(--ink);
	border-radius: 1px;
}
.m7-field input:focus, .m7-field select:focus, .m7-field textarea:focus { border-color: var(--red); outline: 2px solid var(--red); outline-offset: 1px; }
.m7-field .err { color: var(--red-ink); font-size: .85rem; }

/* ---------- footer ---------- */
.m7-footer { background: var(--sheet-2); border-top: 2px solid var(--red); padding-block: var(--s7) var(--s6); }
.m7-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--s5); }
.m7-footer h4 { font-family: var(--f-display); text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; color: var(--concrete); margin: 0 0 var(--s2); }
.m7-footer address { font-style: normal; line-height: 1.7; font-size: .92rem; }
.m7-footer nav a { display: block; padding: 4px 0; color: var(--ink); font-size: .92rem; }
.m7-footer nav a:hover { color: var(--red); }
.m7-social { display: flex; gap: var(--s2); }
.m7-social a { font-family: var(--f-display); font-weight: 600; font-size: .8rem; color: var(--ink); }
.m7-social a:hover { color: var(--red); }
.m7-colophon { margin-top: var(--s6); padding-top: var(--s3); border-top: 1px solid var(--line); font-size: .82rem; color: var(--concrete); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s2); }

/* ---------- breadcrumbs ---------- */
.m7-crumbs { font-family: var(--f-display); font-size: .75rem; letter-spacing: .04em; color: var(--concrete); margin-bottom: var(--s3); }
.m7-crumbs a { color: var(--concrete); }
.m7-crumbs a:hover { color: var(--red); }
.m7-crumbs .sep { margin: 0 .5em; opacity: .5; }

/* ---------- placeholder flag ---------- */
.m7-flag { color: var(--red-ink); font-family: var(--f-display); font-weight: 600; font-size: .8rem; letter-spacing: .02em; }

/* ---------- insight cards (list + related) ---------- */
.m7-morecard { position: relative; }
.m7-morecard__link { position: absolute; inset: 0; z-index: 1; }
.m7-morecard h3, .m7-morecard p { position: relative; z-index: 0; transition: color .25s var(--ease); }
.m7-morecard:hover h3 { color: var(--red); }
.m7-postcard h2 a, .m7-postcard .m7-textlink { transition: color .25s var(--ease); }
.m7-postcard:hover h2 a { color: var(--red); }
.m7-postcard__media { display: block; overflow: hidden; }
.m7-postcard__media img { transition: transform .5s var(--ease); }
.m7-postcard:hover .m7-postcard__media img { transform: scale(1.03); }

/* ---------- WP block content ---------- */
.m7-prose { max-width: var(--measure); }
.m7-prose > * { margin-block: 0 1.1em; }
.m7-prose h2 { margin-top: 1.6em; }
.m7-prose h3 { margin-top: 1.4em; }
.m7-prose img { border-radius: 1px; }
.m7-prose figcaption { font-size: .85rem; color: var(--concrete); }
.m7-prose blockquote { border-left: 2px solid var(--red); margin: 1.5em 0; padding-left: var(--s3); font-family: var(--f-display); font-size: 1.2rem; }
.m7-prose :where(ul, ol) { padding-left: 1.3em; }

/* ---------- reveal ----------
   Visible at rest. scroll.js adds .m7-armed ONLY to elements below the fold;
   the IntersectionObserver (or a safety timeout) then removes it. No JS, no
   observer, reduced motion, or a stalled transition => content still shows. */
.m7-reveal { opacity: 1; transition: opacity .55s var(--ease), transform .55s var(--ease); }
.m7-reveal.m7-armed { opacity: 0; transform: translateY(24px); }
.m7-reveal.is-in { opacity: 1; transform: none; }
.m7-reveal[data-stagger] > * { transition: opacity .5s var(--ease), transform .5s var(--ease); }
.m7-reveal.m7-armed[data-stagger] > * { opacity: 0; transform: translateY(18px); }
.m7-reveal.is-in[data-stagger] > * { opacity: 1; transform: none; }
/* safety net: instant, no transition to stall */
.m7-reveal.m7-shown, .m7-reveal.m7-shown > * { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
	.m7-nav ul, .m7-nav-cta { display: none; }
	.m7-burger { display: block; }
	.m7-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 560px) {
	body { font-size: 16px; }
	.m7-hero { min-height: 82vh; }
	.m7-service-row { grid-template-columns: 2.2rem 1fr; }
	.m7-service-row .arrow { display: none; }
	.m7-meta { grid-template-columns: 1fr 1fr; }
}

/* ---------- page transition ---------- */
body { transition: opacity .26s var(--ease); }
html.m7-leaving body { opacity: 0; }

/* ---------- custom cursor (desktop pointer only) ---------- */
@media (hover: hover) and (pointer: fine) {
	html.has-m7-cursor,
	html.has-m7-cursor a,
	html.has-m7-cursor button,
	html.has-m7-cursor [role="button"],
	html.has-m7-cursor summary,
	html.has-m7-cursor label { cursor: none; }
	html.has-m7-cursor input,
	html.has-m7-cursor textarea,
	html.has-m7-cursor [contenteditable] { cursor: text; } /* keep text caret usable */

	.m7-cursor {
		position: fixed; top: 0; left: 0; z-index: 999; pointer-events: none;
		width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px; border-radius: 50%;
		background: var(--red); mix-blend-mode: difference;
		opacity: 0;
		transition: width .28s var(--ease), height .28s var(--ease), margin .28s var(--ease),
			background .28s var(--ease), opacity .25s var(--ease), border-color .28s var(--ease);
	}
	.m7-cursor.is-on { opacity: 1; }
	.m7-cursor.is-link {
		width: 34px; height: 34px; margin: -17px 0 0 -17px;
		background: transparent; border: 1px solid var(--red); mix-blend-mode: normal;
	}
	.m7-cursor.is-view {
		width: 76px; height: 76px; margin: -38px 0 0 -38px;
		background: var(--red); mix-blend-mode: normal;
	}
	.m7-cursor__lbl {
		position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
		font-family: var(--f-display); font-weight: 600; font-size: .62rem; letter-spacing: .14em;
		text-transform: uppercase; color: #fff; opacity: 0; transition: opacity .18s var(--ease);
	}
	.m7-cursor.is-view .m7-cursor__lbl { opacity: 1; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	body { transition: none; }
	html.m7-leaving body { opacity: 1; }
	.m7-cursor { display: none; }
	html.has-m7-cursor, html.has-m7-cursor * { cursor: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
	.js .m7-reveal, .js .m7-reveal[data-stagger] > * { opacity: 1 !important; transform: none !important; }
	.m7-selected__media figure { position: relative; opacity: 1; }
	.m7-selected__media { position: static; height: auto; }
	.m7-datum.is-progress { display: none; }
}
