/* ==========================================================================
   OPL International
   Ivory ground, charcoal type, espresso for weight, brass only as a hairline.
   The recurring device is the rule: hairlines separate data the way a spec
   sheet does, and they are the only ornament on the page.
   ========================================================================== */

:root {
	--ivory: #f4f0e8;
	--paper: #fbf9f5;
	--warm-grey: #e7e3dc;
	--charcoal: #191919;
	--espresso: #2a211c;
	--dark-brown: #3b2a20;
	--tan: #b89b7a;
	--brass: #9a7a4a;

	--ink: var(--charcoal);
	--ink-soft: #5a544e;
	--rule: rgba(25, 25, 25, 0.14);
	--rule-strong: rgba(25, 25, 25, 0.3);

	--display: "Barlow Condensed", "Archivo", Arial, sans-serif;
	--body: "Barlow", "Instrument Sans", Arial, sans-serif;
	--editorial: "Instrument Serif", Georgia, "Times New Roman", serif;
	--mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;

	--shell: 1320px;
	--type-scale: 1;
	--radius: 0px;
	--gutter: clamp(1.25rem, 4vw, 3.5rem);
	--section-y: clamp(4.5rem, 9vw, 8.5rem);

	--header-h: 73px;
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--ivory);
	color: var(--ink);
	font-family: var(--body);
	font-size: 1.0625rem;
	line-height: 1.65;
	font-feature-settings: "kern" 1;
	-webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }

h1, h2, h3, h4 {
	font-family: var(--display);
	font-weight: 600;
	letter-spacing: -0.028em;
	line-height: 1.06;
	margin: 0;
	text-wrap: balance;
}

p { margin: 0 0 1.1em; }

::selection { background: var(--brass); color: var(--paper); }

:focus-visible {
	outline: 2px solid var(--brass);
	outline-offset: 3px;
}

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

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--charcoal);
	color: var(--paper);
	padding: 0.85rem 1.25rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* --------------------------------------------------------- layout shells */

.shell {
	width: 100%;
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.shell--prose { max-width: 46rem; }
.shell--form { max-width: 62rem; margin-top: clamp(2.5rem, 5vw, 4rem); }

.shell--split {
	display: grid;
	gap: clamp(1rem, 3vw, 3rem);
	grid-template-columns: 1fr;
}

@media (min-width: 62rem) {
	.shell--split { grid-template-columns: 14rem minmax(0, 1fr); }
}

.section { padding-block: var(--section-y); }

/* Consecutive light sections share one gap; a change of background gets its
   own full measure of air on both sides. */
.section + .section { padding-top: 0; }
.section--dark + .section,
.section + .section--dark { padding-top: var(--section-y); }

.section--dark {
	background: var(--espresso);
	color: var(--ivory);
	--ink: var(--ivory);
	--ink-soft: rgba(244, 240, 232, 0.66);
	--rule: rgba(244, 240, 232, 0.18);
	--rule-strong: rgba(244, 240, 232, 0.4);
}

/* ------------------------------------------------------------- typography */

.eyebrow {
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin: 0 0 1.25rem;
	padding-top: 0.85rem;
	border-top: 1px solid var(--rule);
}

.eyebrow--light { color: rgba(251, 249, 245, 0.75); border-top-color: rgba(251, 249, 245, 0.35); }

.section__title {
	font-size: calc(clamp(2rem, 4.4vw, 3.4rem) * var(--type-scale));
}

.section__title--wide {
	max-width: 18ch;
	margin-bottom: 1.5rem;
}

.section__standfirst {
	font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
	line-height: 1.55;
	max-width: 52ch;
	color: var(--ink-soft);
	margin-top: 1.25rem;
}

.section__note {
	font-family: var(--mono);
	font-size: 0.8125rem;
	letter-spacing: 0.01em;
	color: var(--ink-soft);
	margin-top: 2rem;
}

.prose { font-size: 1.0625rem; }
.prose--lead { font-size: clamp(1.125rem, 1.8vw, 1.3125rem); line-height: 1.6; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 2.5rem 0 1rem; }
.prose h3 { font-size: 1.4rem; margin: 2rem 0 0.75rem; }
.prose ul, .prose ol { padding-left: 1.1rem; }
.prose li { margin-bottom: 0.4rem; }

.link-underline { text-decoration: underline; }

/* ------------------------------------------------------------------- cta */

.cta {
	border-radius: var(--radius);
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--display);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	padding: 0.95rem 1.65rem;
	border: 1px solid transparent;
	background: none;
	cursor: pointer;
	transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.cta--solid { background: var(--charcoal); color: var(--paper); }
.cta--solid:hover { background: var(--brass); }

.cta--line { border-color: currentColor; color: inherit; }
.cta--line:hover { background: var(--charcoal); color: var(--paper); border-color: var(--charcoal); }

.section--dark .cta--line:hover,
.hero .cta--line:hover { background: var(--paper); color: var(--charcoal); border-color: var(--paper); }

.cta--quiet {
	padding-inline: 0;
	color: inherit;
	border-bottom: 1px solid var(--rule-strong);
	padding-bottom: 0.4rem;
	margin-top: 2rem;
}
.cta--quiet:hover { border-bottom-color: var(--brass); color: var(--brass); }

.cta--sm { padding: 0.6rem 1.1rem; font-size: 0.8125rem; }

/* ---------------------------------------------------------------- header */

.masthead {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(244, 240, 232, 0.92);
	backdrop-filter: saturate(140%) blur(8px);
	border-bottom: 1px solid var(--rule);
	transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}

.masthead__inner {
	max-width: var(--shell);
	margin-inline: auto;
	padding: 0.9rem var(--gutter);
	display: flex;
	align-items: center;
	gap: clamp(1rem, 4vw, 3rem);
}

/*
 * Over a dark hero the bar is transparent so the image runs to the top of
 * the page. The mark is navy and metallic on cream and would vanish there,
 * so a reversed variant is swapped in for that state only — legible on the
 * hero, without a plate behind it.
 */
.has-dark-hero .masthead:not(.is-stuck) {
	background: transparent;
	border-bottom-color: transparent;
	color: var(--paper);
}

.masthead.is-stuck { background: rgba(244, 240, 232, 0.96); }

.wordmark { text-decoration: none; display: flex; align-items: baseline; gap: 0.55rem; }
.wordmark__mark { font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: 0.02em; }
.wordmark__sub { font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }

.custom-logo { max-height: 44px; width: auto; display: block; }

/*
 * Optional reversed/light logo variant. Shown only while the header sits
 * transparent over a dark hero (has-dark-hero, before scroll); the default
 * logo covers every other state. If no light variant has been set in OPL
 * Settings, .masthead__logo--dark is never rendered and this rule is inert.
 */
/*
 * Optional reversed/light logo variant. Shown only while the header sits
 * transparent over a dark hero (has-dark-hero, before scroll); the default
 * logo covers every other state. The default logo is hidden in that state
 * ONLY when .masthead__logo--swappable is present — a class header.php adds
 * only once a valid light-variant attachment exists — so with no variant
 * configured the default logo stays visible everywhere, including over a
 * dark hero. Never hide the only logo the site has.
 */
.masthead__logo--dark { display: none; }

.masthead__nav { margin-left: auto; }

.nav {
	list-style: none;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: clamp(0.7rem, 1.5vw, 1.4rem);
	margin: 0;
	padding: 0;
}

/* A navigation label that wraps to a second line turns the header into a
   paragraph. Items never break; when they stop fitting, the whole menu
   collapses to the toggle instead. */
.nav a {
	font-size: 0.8125rem;
	text-decoration: none;
	padding-block: 0.35rem;
	border-bottom: 1px solid transparent;
	white-space: nowrap;
}
.nav a:hover, .nav .current-menu-item > a { border-bottom-color: currentColor; }

.nav > .menu-item { position: relative; }

.nav .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
	position: absolute;
	top: 100%;
	left: -1rem;
	z-index: 5;
	box-shadow: 0 12px 28px rgba(25, 20, 16, 0.1);
	background: var(--paper);
	color: var(--charcoal);
	border: 1px solid var(--rule);
	min-width: 13rem;
	display: none;
}
.nav li:hover > .sub-menu, .nav li:focus-within > .sub-menu { display: block; }
.nav .sub-menu a { display: block; padding: 0.5rem 1rem; border: 0; }
.nav .sub-menu a:hover { background: var(--warm-grey); }

/* A parent that only opens a submenu still needs to look interactive. */
.nav .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 0.3rem;
	height: 0.3rem;
	margin-left: 0.45rem;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateY(-0.15em) rotate(45deg);
	opacity: 0.6;
}

.masthead__actions { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 0.6rem;
	cursor: pointer;
	color: inherit;
}
.nav-toggle__bars { display: block; width: 22px; }
.nav-toggle__bars i { display: block; height: 1px; background: currentColor; margin: 5px 0; transition: transform 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:first-child { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:last-child { transform: translateY(-3px) rotate(-45deg); }

@media (max-width: 74.99rem) {
	.nav-toggle { display: block; }

	.masthead__nav {
		position: fixed;
		inset: 0 0 auto;
		top: var(--header-h);
		background: var(--ivory);
		color: var(--charcoal);
		border-bottom: 1px solid var(--rule);
		padding: 1.5rem var(--gutter) 2.5rem;
		display: none;
	}
	.masthead__nav.is-open { display: block; }
	.nav { flex-direction: column; gap: 0.25rem; }
	.nav a { font-size: 1.125rem; padding-block: 0.6rem; display: block; }
	.nav .sub-menu { position: static; display: block; border: 0; padding-left: 1rem; background: none; }
	.masthead__actions .cta { display: none; }
}

/* ------------------------------------------------------------------ hero */

.hero {
	position: relative;
	min-height: min(94vh, 900px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: var(--paper);
	margin-top: calc(var(--header-h) * -1);
	padding-top: var(--header-h);
	overflow: hidden;
}

.hero--page { min-height: min(70vh, 700px); }

.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__image, .hero__video { width: 100%; height: 100%; object-fit: cover; }

.hero__placeholder {
	width: 100%; height: 100%;
	background:
		radial-gradient(120% 90% at 20% 0%, var(--dark-brown) 0%, transparent 60%),
		var(--espresso);
}

.hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 16, 14, 0.55) 0%, rgba(20, 16, 14, 0.2) 38%, rgba(20, 16, 14, 0.82) 100%);
}

.hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--shell);
	width: 100%;
	margin-inline: auto;
	padding: 0 var(--gutter) clamp(2.5rem, 5vw, 4rem);
}

.hero__heading {
	font-size: calc(clamp(2.75rem, 7.4vw, 6rem) * var(--type-scale));
	letter-spacing: -0.015em;
	line-height: 0.98;
	max-width: 14ch;
	margin-bottom: 1.5rem;
}

.hero__support {
	max-width: 46ch;
	font-size: clamp(1rem, 1.5vw, 1.1875rem);
	color: rgba(251, 249, 245, 0.82);
	margin-bottom: 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__actions .cta--solid { background: var(--paper); color: var(--charcoal); }
.hero__actions .cta--solid:hover { background: var(--brass); color: var(--paper); }

/* The ledger is the signature: hero figures set as a ruled data band rather
   than four floating cards. */
.hero__ledger {
	position: relative;
	z-index: 1;
	max-width: var(--shell);
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--gutter);
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid rgba(251, 249, 245, 0.28);
}

@media (min-width: 48rem) {
	.hero__ledger { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.ledger__item {
	padding: 1.35rem 1rem 1.5rem 0;
	border-right: 1px solid rgba(251, 249, 245, 0.16);
}
.ledger__item:last-child { border-right: 0; }

@media (max-width: 47.99rem) {
	.ledger__item:nth-child(2n) { border-right: 0; }
	.ledger__item:nth-child(n + 3) { border-top: 1px solid rgba(251, 249, 245, 0.16); }
}

.ledger__value {
	display: block;
	font-family: var(--display);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
}

.ledger__label {
	display: block;
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(251, 249, 245, 0.66);
	margin-top: 0.4rem;
}

/* ------------------------------------------------------------ capability strip */

.strip {
	border-bottom: 1px solid var(--rule);
	background: var(--paper);
}

.strip__inner {
	max-width: var(--shell);
	margin-inline: auto;
	padding: 1.1rem var(--gutter);
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 2.25rem;
}

.strip__item {
	margin: 0;
	font-family: var(--mono);
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	color: var(--ink-soft);
}

/* --------------------------------------------------------------- chains */

.chain, .journey {
	list-style: none;
	margin: clamp(2.5rem, 5vw, 4rem) 0 0;
	padding: 0;
	display: grid;
	gap: 1px;
	background: var(--rule);
	border-block: 1px solid var(--rule);
	grid-template-columns: 1fr;
}

@media (min-width: 40rem) { .chain, .journey { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .chain, .journey { grid-template-columns: repeat(4, 1fr); } }

.chain__item, .journey__step {
	background: var(--espresso);
	padding: 1.75rem 1.5rem 2rem;
}

.section:not(.section--dark) .chain__item,
.section:not(.section--dark) .journey__step { background: var(--ivory); }

.chain__index, .journey__index {
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.14em;
	color: var(--brass);
	display: block;
	margin-bottom: 1.25rem;
}

.chain__title, .journey__title { font-size: 1.125rem; margin-bottom: 0.5rem; }
.chain__copy, .journey__copy { font-size: 0.9375rem; color: var(--ink-soft); margin: 0; }

/* ----------------------------------------------------------------- line */

.line {
	margin-top: clamp(2.5rem, 5vw, 4rem);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.line__track {
	display: flex;
	gap: 1.5rem;
	padding-inline: var(--gutter);
	padding-bottom: 1.5rem;
	min-width: min-content;
}

.stage {
	flex: 0 0 clamp(15rem, 60vw, 21rem);
	scroll-snap-align: start;
}

.stage__media { position: relative; margin-bottom: 1.1rem; }
.stage__image { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.stage__placeholder {
	display: block;
	aspect-ratio: 4 / 5;
	background: var(--warm-grey);
}

.stage__index {
	position: absolute;
	left: 0;
	bottom: 0;
	background: var(--ivory);
	color: var(--charcoal);
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	padding: 0.45rem 0.7rem;
}

.stage__title { font-size: 1.0625rem; margin-bottom: 0.35rem; }
.stage__copy { font-size: 0.9375rem; color: var(--ink-soft); margin: 0; }
.stage__metric { font-family: var(--mono); font-size: 0.75rem; color: var(--brass); margin-top: 0.6rem; }

.line__hint {
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

@media (min-width: 64rem) { .line__hint { display: none; } }

/* ---------------------------------------------------------------- grids */

.grid { display: grid; gap: clamp(1rem, 2vw, 1.75rem); margin-top: clamp(2rem, 4vw, 3rem); }
.grid--collections { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--designs { grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr)); }

.collection-card { text-decoration: none; display: block; }
.collection-card__media { display: block; overflow: hidden; background: var(--warm-grey); }
.collection-card__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.7s var(--ease); }
.collection-card:hover .collection-card__media img { transform: scale(1.03); }
.collection-card__placeholder { display: block; aspect-ratio: 4 / 5; }

.collection-card__meta {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding-top: 0.85rem;
	margin-top: 0.85rem;
	border-top: 1px solid var(--rule);
}

.collection-card__title { font-family: var(--display); font-weight: 600; font-size: 1.0625rem; }
.collection-card__count { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.1em; color: var(--ink-soft); }

/* ---------------------------------------------------------- design cards */

.design-card__link { text-decoration: none; display: block; }
.design-card__media { display: block; background: var(--warm-grey); overflow: hidden; }
.design-card__image { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.7s var(--ease); }
.design-card__link:hover .design-card__image { transform: scale(1.03); }
.design-card__placeholder { display: block; aspect-ratio: 4 / 5; }

.design-card__body { display: block; padding-top: 0.9rem; }

.design-card__style {
	display: block;
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brass);
}

.design-card__title {
	display: block;
	font-family: var(--display);
	font-weight: 600;
	font-size: 1.125rem;
	margin: 0.25rem 0 0.85rem;
}

.design-card__specs { display: block; border-top: 1px solid var(--rule); }

.design-card__spec {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.4rem 0;
	border-bottom: 1px solid var(--rule);
	font-size: 0.8125rem;
}

.design-card__spec-label { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.design-card__spec-value { text-align: right; }

/* --------------------------------------------------------- material list */

.material-list {
	list-style: none;
	margin: clamp(2rem, 4vw, 3rem) 0 0;
	padding: 0;
	border-top: 1px solid var(--rule);
}

.material-list__item { border-bottom: 1px solid var(--rule); }

.material-list__item a {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.25rem 2rem;
	padding: 1.15rem 0;
	text-decoration: none;
	transition: padding-left 0.4s var(--ease), color 0.4s var(--ease);
}

@media (min-width: 48rem) {
	.material-list__item a { grid-template-columns: 14rem minmax(0, 1fr); align-items: baseline; }
}

.material-list__item a:hover { padding-left: 0.75rem; color: var(--brass); }
.material-list__name { font-family: var(--display); font-weight: 600; font-size: 1.25rem; }
.material-list__note { color: var(--ink-soft); font-size: 0.9375rem; }

/* ---------------------------------------------------------- checkpoints */

.checkpoints {
	list-style: none;
	counter-reset: check;
	margin: clamp(2rem, 4vw, 3rem) 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.checkpoints__item {
	counter-increment: check;
	position: relative;
	padding: 0.65rem 1.1rem 0.65rem 2.6rem;
	border: 1px solid var(--rule);
	font-size: 0.9375rem;
}

.checkpoints__item::before {
	content: counter(check, decimal-leading-zero);
	position: absolute;
	left: 1rem;
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.1em;
	color: var(--brass);
}

/* --------------------------------------------------------------- route */

.route {
	list-style: none;
	margin: clamp(2rem, 4vw, 3rem) 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem 0.85rem;
}

.route__step {
	font-family: var(--mono);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.route__step + .route__step::before {
	content: "→";
	margin-right: 0.85rem;
	color: var(--brass);
}

.own-labels { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); }
.own-labels__intro { font-size: 0.9375rem; color: var(--ink-soft); margin-bottom: 0.75rem; }
.own-labels__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.5rem; }
.own-labels__list li { font-family: var(--editorial); font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

/* ------------------------------------------------------------- figures */

.wide-figure { margin: 0 0 clamp(2.5rem, 5vw, 4rem); }
.wide-figure__image { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }

.figures {
	margin: clamp(2rem, 4vw, 3rem) 0 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: var(--rule);
	border: 1px solid var(--rule);
}

@media (min-width: 56rem) { .figures { grid-template-columns: repeat(5, 1fr); } }

.figures__item { background: var(--ivory); padding: 1.5rem 1.25rem; }
.figures__value { font-family: var(--display); font-weight: 500; font-size: clamp(1.35rem, 2.6vw, 2rem); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.figures__label { margin: 0.4rem 0 0; font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }

/* -------------------------------------------------------------- markets */

.markets {
	list-style: none;
	margin: clamp(2rem, 4vw, 3rem) 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
	border-top: 1px solid var(--rule);
}

.markets__item {
	padding: 1.5rem 1rem 1.5rem 0;
	border-bottom: 1px solid var(--rule);
	font-family: var(--display);
	font-weight: 500;
	font-size: clamp(1.125rem, 2vw, 1.5rem);
}

/* --------------------------------------------------------------- record */

.record {
	margin: clamp(2rem, 4vw, 3rem) 0 0;
	border-top: 1px solid var(--rule);
}

.record__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.15rem 2rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--rule);
}

@media (min-width: 48rem) { .record__row { grid-template-columns: 12rem minmax(0, 1fr); } }

.record__label { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); padding-top: 0.2rem; }
.record__value { margin: 0; }
.record__note { display: block; color: var(--ink-soft); font-size: 0.875rem; }

.certs { margin-top: 3rem; }
.certs__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.certs__item { border: 1px solid var(--rule); padding: 1rem 1.25rem; }
.certs__name { display: block; font-family: var(--display); font-weight: 600; }
.certs__meta { display: block; font-family: var(--mono); font-size: 0.75rem; color: var(--ink-soft); margin-top: 0.25rem; }
.certs__link { display: inline-block; margin-top: 0.5rem; font-size: 0.8125rem; }

/* ------------------------------------------------------------- clients */

.section--clients .eyebrow { text-align: center; }
.clients__list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(2rem, 5vw, 3.5rem);
}
.clients__item { display: flex; align-items: center; justify-content: center; }
.clients__logo { max-height: 34px; width: auto; max-width: 140px; object-fit: contain; opacity: 0.72; filter: grayscale(1); transition: opacity 0.3s var(--ease), filter 0.3s var(--ease); }
.clients__item:hover .clients__logo { opacity: 1; filter: grayscale(0); }
@media (prefers-reduced-motion: reduce) { .clients__logo { transition: none; } }

/* -------------------------------------------------------------- founder */

.shell--founder {
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: var(--gutter);
	display: grid;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: end;
	grid-template-columns: 1fr;
}

@media (min-width: 56rem) { .shell--founder { grid-template-columns: 22rem minmax(0, 1fr); } }

.founder__portrait { margin: 0; }
.founder__portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: grayscale(0.15); }

.founder__quote { margin: 0; }
.founder__quote p {
	font-family: var(--editorial);
	font-size: clamp(1.5rem, 3.4vw, 2.5rem);
	line-height: 1.22;
	letter-spacing: -0.01em;
	text-wrap: balance;
}
.founder__quote p::before { content: "\201C"; }
.founder__quote p::after { content: "\201D"; }

.founder__by { border-top: 1px solid var(--rule); padding-top: 1rem; margin-top: 1.5rem; display: grid; gap: 0.15rem; }
.founder__name { font-family: var(--display); font-weight: 600; }
.founder__role, .founder__company { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.08em; color: var(--ink-soft); }

/* ------------------------------------------------------------------ faq */

.faq { margin-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--rule); }

.faq__item { border-bottom: 1px solid var(--rule); }

.faq__question {
	cursor: pointer;
	list-style: none;
	padding: 1.15rem 2.5rem 1.15rem 0;
	position: relative;
	font-family: var(--display);
	font-weight: 600;
	font-size: clamp(1rem, 1.8vw, 1.1875rem);
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
	content: "+";
	position: absolute;
	right: 0.25rem;
	top: 1rem;
	font-family: var(--mono);
	color: var(--brass);
	transition: transform 0.3s var(--ease);
}

.faq__item[open] .faq__question::after { content: "–"; }

.faq__answer { padding-bottom: 1.25rem; max-width: 62ch; color: var(--ink-soft); }
.faq__answer p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------------- form */

.enquiry__hp { position: absolute; left: -9999px; }

.enquiry__grid {
	display: grid;
	gap: 1.25rem 1.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 44rem) { .enquiry__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.field { margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.field--wide { grid-column: 1 / -1; }

.field label {
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.field__optional { text-transform: none; letter-spacing: 0; opacity: 0.6; }

.field input,
.field select,
.field textarea {
	font: inherit;
	font-size: 1rem;
	color: inherit;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--rule-strong);
	padding: 0.6rem 0;
	border-radius: 0;
	appearance: none;
	transition: border-color 0.3s var(--ease);
}

.field select { background-image: none; }
.field select option { color: var(--charcoal); }

.field input:focus,
.field select:focus,
.field textarea:focus { outline: 0; border-bottom-color: var(--brass); }

.field textarea { resize: vertical; min-height: 7rem; }

.field input[type="file"] { border-bottom: 0; padding-left: 0; font-size: 0.875rem; }

.field__help { font-size: 0.8125rem; color: var(--ink-soft); }

.field__error { font-size: 0.8125rem; color: #c1502e; min-height: 0; }
.section--dark .field__error { color: #e79a7c; }

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-bottom-color: #c1502e; }

.enquiry__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 2rem;
	margin-top: 2.25rem;
}

.section--dark .enquiry__foot .cta--solid { background: var(--paper); color: var(--charcoal); }
.section--dark .enquiry__foot .cta--solid:hover { background: var(--brass); color: var(--paper); }

.enquiry__note { margin: 0; font-size: 0.875rem; color: var(--ink-soft); }

.enquiry__status { margin-top: 1.25rem; font-size: 0.9375rem; }
.enquiry__status.is-ok { color: var(--brass); }
.enquiry__status.is-error { color: #c1502e; }
.section--dark .enquiry__status.is-error { color: #e79a7c; }

.is-sending { opacity: 0.55; pointer-events: none; }

/* ------------------------------------------------------------ page heads */

.page-head { padding-block: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 3vw, 2.5rem); }
.page-head__title { font-size: calc(clamp(2rem, 5vw, 3.75rem) * var(--type-scale)); max-width: 20ch; }
.page-head__intro { max-width: 54ch; margin-top: 1.25rem; color: var(--ink-soft); font-size: clamp(1rem, 1.6vw, 1.1875rem); }

.crumbs { margin-bottom: 1.5rem; }
.crumbs__list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.crumbs__list li + li::before { content: "/"; margin-right: 0.5rem; color: var(--rule-strong); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--brass); }

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--rule); }
.filters__item { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.08em; text-decoration: none; padding: 0.45rem 0.9rem; border: 1px solid var(--rule); }
.filters__item.is-active, .filters__item:hover { border-color: var(--charcoal); }

/* ------------------------------------------------------------ spec sheet */

.design__top {
	display: grid;
	gap: clamp(1.75rem, 4vw, 3.5rem);
	grid-template-columns: 1fr;
	padding-block: clamp(1.5rem, 3vw, 2.5rem) var(--section-y);
}

@media (min-width: 60rem) { .design__top { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: start; } }

.design__gallery { display: grid; gap: 0.75rem; grid-template-columns: repeat(2, 1fr); }
.design__gallery .design__frame:first-child { grid-column: 1 / -1; }
.design__frame { margin: 0; background: var(--warm-grey); }
.design__frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.design__frame--empty { aspect-ratio: 4 / 5; }

.design__info { position: sticky; top: 6rem; }
.design__style { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.5rem; }
.design__title { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
.design__standfirst { margin-top: 1rem; color: var(--ink-soft); max-width: 44ch; }

.sheet { margin: 2rem 0 0; border-top: 1px solid var(--rule); }
.sheet__row { display: grid; grid-template-columns: 10rem minmax(0, 1fr); gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--rule); }
.sheet__label { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.sheet__value { margin: 0; font-size: 0.9375rem; }

.design__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

@media (max-width: 59.99rem) { .design__info { position: static; } }

/* -------------------------------------------------------------- contact */

.contact { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; padding-bottom: var(--section-y); }

@media (min-width: 56rem) { .contact { grid-template-columns: 20rem minmax(0, 1fr); } }

.contact__block { margin-bottom: 2.5rem; }
.contact__address, .site-footer__address { font-style: normal; display: grid; gap: 0.1rem; }
.contact__list, .site-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; }
.contact__list a, .site-footer__list a { text-decoration: none; }
.contact__list a:hover, .site-footer__list a:hover { color: var(--brass); }

.callout { border-left: 2px solid var(--brass); padding-left: 1.25rem; margin: 2rem 0; }

/* ------------------------------------------------------------ entry list */

.entry-list { display: grid; gap: 0; border-top: 1px solid var(--rule); margin-bottom: 3rem; }
.entry-list__item { padding: 1.5rem 0; border-bottom: 1px solid var(--rule); }
.entry-list__title { font-size: 1.375rem; margin-bottom: 0.4rem; }
.entry-list__title a { text-decoration: none; }
.entry-list__excerpt { color: var(--ink-soft); margin: 0; }

.empty { color: var(--ink-soft); }

.notfound { padding-block: clamp(4rem, 10vw, 8rem); }
.notfound__copy { color: var(--ink-soft); max-width: 46ch; margin-top: 1.25rem; }
.notfound__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.pagination { padding-block: 2rem 4rem; }
.pagination .nav-links { display: flex; gap: 0.75rem; font-family: var(--mono); font-size: 0.8125rem; }
.pagination .page-numbers { text-decoration: none; padding: 0.35rem 0.7rem; border: 1px solid var(--rule); }
.pagination .page-numbers.current { border-color: var(--charcoal); }

.searchform { display: flex; gap: 0.5rem; }
.searchform input { flex: 1; font: inherit; padding: 0.6rem 0; background: transparent; border: 0; border-bottom: 1px solid var(--rule-strong); }
.searchform button { font: inherit; font-size: 0.875rem; background: var(--charcoal); color: var(--paper); border: 0; padding: 0.6rem 1.1rem; cursor: pointer; }

/* --------------------------------------------------------------- footer */

.site-footer {
	background: var(--charcoal);
	color: var(--ivory);
	--ink-soft: rgba(244, 240, 232, 0.62);
	--rule: rgba(244, 240, 232, 0.16);
	padding-block: clamp(3.5rem, 7vw, 6rem) 2rem;
	margin-top: var(--section-y);
}

.site-footer__inner { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }

.site-footer__brand { padding-top: clamp(2rem, 4vw, 3rem); }
.site-footer__brand .custom-logo { max-height: 36px; width: auto; }

.site-footer__lead { padding-bottom: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--rule); }
.site-footer__statement { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 3.4vw, 2.5rem); letter-spacing: -0.01em; line-height: 1.1; max-width: 22ch; margin-bottom: 2rem; }
.site-footer__lead .cta--solid { background: var(--paper); color: var(--charcoal); }
.site-footer__lead .cta--solid:hover { background: var(--brass); color: var(--paper); }

.site-footer__cols {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
	padding-block: clamp(2.5rem, 5vw, 4rem);
}

.site-footer__units { color: var(--ink-soft); font-size: 0.875rem; margin-top: 0.75rem; }

.site-footer__base {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--rule);
	font-size: 0.8125rem;
	color: var(--ink-soft);
}

.site-footer__base p { margin: 0; }
.site-footer__legal { list-style: none; display: flex; gap: 1.25rem; margin: 0; padding: 0; }
.site-footer__legal a { text-decoration: none; }

.whatsapp-dock {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 30;
	background: var(--charcoal);
	color: var(--paper);
	text-decoration: none;
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.85rem 1.1rem;
	transition: background-color 0.3s var(--ease);
}
.whatsapp-dock:hover { background: var(--brass); }

/* ------------------------------------------------------------- reveals */

[data-reveal] {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
	[data-reveal] { opacity: 1; transform: none; }
	.hero__video { display: none; }
}

@media print {
	.masthead, .site-footer, .whatsapp-dock, .enquiry { display: none; }
	body { background: #fff; }
}

/* =====================================================================
   1.4.0 — development-partner sections
   The theme's device is the ruled record: hairlines, mono labels and
   tabular figures, the way a development sheet is set. Everything below
   extends that rather than introducing a second visual language.
   ===================================================================== */

/* ---------------------------------------------------- what we do */

.section--disciplines { padding-bottom: calc(var(--section-y) * 0.7); }

.disciplines__statement {
	font-family: var(--display);
	font-size: calc(clamp(2.25rem, 6.4vw, 5rem) * var(--type-scale));
	line-height: 0.98;
	letter-spacing: -0.015em;
	margin: 0 0 1.8rem;
	display: grid;
}

.disciplines__line--accent {
	font-family: var(--editorial);
	font-weight: 400;
	font-style: italic;
	letter-spacing: -0.02em;
	color: var(--brass);
}

.disciplines__standfirst { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }

.disciplines {
	display: grid;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--rule-strong);
}

@media (min-width: 48rem) { .disciplines { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68rem) { .disciplines { grid-template-columns: repeat(4, 1fr); } }

.discipline {
	position: relative;
	padding: clamp(1.5rem, 2.4vw, 2.25rem) clamp(1.25rem, 2vw, 2rem) clamp(1.75rem, 2.6vw, 2.5rem) 0;
	border-bottom: 1px solid var(--rule);
}

@media (min-width: 48rem) {
	.discipline { border-right: 1px solid var(--rule); }
	.discipline:nth-child(2n) { border-right: 0; padding-right: 0; }
}

@media (min-width: 68rem) {
	.discipline { border-right: 1px solid var(--rule); padding-right: clamp(1.25rem, 2vw, 2rem); }
	.discipline:nth-child(2n) { border-right: 1px solid var(--rule); padding-right: clamp(1.25rem, 2vw, 2rem); }
	.discipline:last-child { border-right: 0; }
}

/* A brass hairline draws in on hover — the only motion in the section. */
.discipline::before {
	content: "";
	position: absolute;
	top: -1px; left: 0;
	width: 0; height: 1px;
	background: var(--brass);
	transition: width 0.6s var(--ease);
}
.discipline:hover::before { width: 100%; }

.discipline__index {
	display: block;
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.16em;
	color: var(--brass);
	margin-bottom: 2.4rem;
}

.discipline__title {
	font-family: var(--editorial);
	font-weight: 400;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	letter-spacing: -0.015em;
	line-height: 1.05;
	margin-bottom: 0.6rem;
}

.discipline__copy { margin: 0; font-size: 0.9375rem; line-height: 1.6; color: var(--ink-soft); }

/* --------------------------------------------------- who we work with */

.audiences {
	display: grid;
	gap: 1px;
	list-style: none;
	background: var(--rule);
	border: 1px solid var(--rule);
	margin-top: clamp(2rem, 4vw, 3.5rem);
}

@media (min-width: 44rem) { .audiences { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 72rem) { .audiences { grid-template-columns: repeat(4, 1fr); } }

.audience {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	background: var(--ivory);
	padding: clamp(1.75rem, 2.6vw, 2.5rem);
	text-decoration: none;
	min-height: clamp(15rem, 22vw, 19rem);
	transition: background-color 0.45s var(--ease), color 0.45s var(--ease);
}

.audience__rule {
	display: block;
	width: 2.25rem;
	height: 1px;
	background: var(--brass);
	margin-bottom: 1.5rem;
	transition: width 0.5s var(--ease);
}
.audience:hover .audience__rule { width: 4.5rem; }

.audience__title {
	font-family: var(--display);
	font-weight: 600;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	letter-spacing: -0.02em;
}

.audience__copy { font-size: 0.9375rem; line-height: 1.6; color: var(--ink-soft); }

.audience__action {
	margin-top: auto;
	padding-top: 1.5rem;
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--brass);
	display: flex;
	align-items: center;
	gap: 0.6rem;
}
.audience__action::after {
	content: "";
	width: 0.875rem; height: 1px;
	background: currentColor;
	transition: width 0.4s var(--ease);
}
.audience:hover .audience__action::after { width: 1.5rem; }

.audience:hover { background: var(--espresso); color: var(--paper); }
.audience:hover .audience__copy { color: rgba(244, 240, 232, 0.7); }
.audience:hover .audience__action { color: var(--tan); }

/* ------------------------------------------------------- case studies */

.case { padding-block: clamp(2.5rem, 5vw, 4.5rem); border-top: 1px solid var(--rule); }
.case:first-of-type { border-top: 1px solid var(--rule-strong); }

.case__head { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

.case__index {
	display: block;
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--brass);
	margin-bottom: 0.9rem;
}

.case__title {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	letter-spacing: -0.01em;
	margin-bottom: 0.5rem;
}
.case__title a { text-decoration: none; }
.case__title a:hover { color: var(--brass); }

.case__meta {
	font-family: var(--mono);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	color: var(--ink-soft);
	margin: 0;
}

/* The progression is the argument: four frames, one rule running through. */
.progression {
	display: grid;
	list-style: none;
	margin: 0;
	padding: 0;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(0.75rem, 1.5vw, 1.25rem);
	margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

@media (min-width: 48rem) { .progression { grid-template-columns: repeat(4, 1fr); } }

.progression__frame { position: relative; }

.progression__media { display: block; overflow: hidden; background: var(--warm-grey); }
.progression__media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}
.progression__frame:hover .progression__media img { transform: scale(1.03); }

.progression__caption {
	display: flex;
	align-items: baseline;
	gap: 0.6rem;
	padding-top: 0.75rem;
	margin-top: 0.75rem;
	border-top: 1px solid var(--rule);
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--ink-soft);
}
.progression__step { color: var(--brass); }

/* An arrow between frames, drawn from the rule rather than an icon. */
@media (min-width: 48rem) {
	.progression__frame:not(:last-child) .progression__caption::after {
		content: "";
		position: absolute;
		right: calc(clamp(0.75rem, 1.5vw, 1.25rem) * -1);
		bottom: 0.45rem;
		width: clamp(0.75rem, 1.5vw, 1.25rem);
		height: 1px;
		background: var(--rule-strong);
	}
}

.case__record {
	display: grid;
	gap: 1px;
	margin: 0;
	background: var(--rule);
	border: 1px solid var(--rule);
}
@media (min-width: 48rem) { .case__record { grid-template-columns: repeat(2, 1fr); } }

.case__row { background: var(--ivory); padding: clamp(1.25rem, 2vw, 1.75rem); }

.case__label {
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin-bottom: 0.7rem;
}

.case__copy { font-size: 0.9375rem; line-height: 1.65; margin: 0; }

.case__metric { margin: 1.75rem 0 0; }
.case__metric-value {
	display: block;
	font-family: var(--display);
	font-weight: 500;
	font-size: calc(clamp(2rem, 4vw, 3rem) * var(--type-scale));
	letter-spacing: -0.012em;
	font-variant-numeric: tabular-nums;
}
.case__metric-label {
	display: block;
	margin-top: 0.5rem;
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.case-single__body { margin-top: clamp(2rem, 4vw, 3.5rem); }

.case-list { border-top: 1px solid var(--rule); list-style: none; margin: 0; padding: 0; }
.case-list__item { border-bottom: 1px solid var(--rule); }
.case-list__item a {
	display: grid;
	gap: 0.25rem 2rem;
	padding: clamp(1.1rem, 2vw, 1.6rem) 0;
	text-decoration: none;
	transition: padding-inline-start 0.4s var(--ease);
}
@media (min-width: 48rem) { .case-list__item a { grid-template-columns: minmax(11rem, 1fr) 2fr; align-items: baseline; } }
.case-list__item a:hover { padding-inline-start: 0.75rem; }
.case-list__name { font-family: var(--display); font-weight: 500; font-size: clamp(1.125rem, 2vw, 1.375rem); letter-spacing: -0.02em; }
.case-list__note { font-size: 0.9375rem; color: var(--ink-soft); }

/* -------------------------------------------------------------- film */

.film { position: relative; margin: clamp(2rem, 4vw, 3.5rem) 0 0; }
.film__video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--espresso); display: block; }

.film__play {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	background: rgba(26, 20, 16, 0.32);
	border: 0;
	cursor: pointer;
	color: var(--paper);
	transition: background-color 0.4s var(--ease), opacity 0.3s var(--ease);
}
.film__play:hover { background: rgba(26, 20, 16, 0.18); }
.film.is-playing .film__play { opacity: 0; pointer-events: none; }

.film__play-mark {
	width: clamp(3.5rem, 6vw, 5rem);
	height: clamp(3.5rem, 6vw, 5rem);
	border: 1px solid rgba(244, 240, 232, 0.7);
	border-radius: 50%;
	display: grid;
	place-items: center;
	transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.film__play-mark::after {
	content: "";
	width: 0; height: 0;
	margin-left: 0.25rem;
	border-left: 0.85rem solid currentColor;
	border-top: 0.55rem solid transparent;
	border-bottom: 0.55rem solid transparent;
}
.film__play:hover .film__play-mark { background: var(--brass); border-color: var(--brass); }

.film__play-label {
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.film__caption {
	max-width: var(--shell);
	margin: 1rem auto 0;
	padding-inline: var(--gutter);
	font-family: var(--mono);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	color: var(--ink-soft);
}

/* ------------------------------------------------- upload your design */

.accepted {
	display: grid;
	gap: 1px;
	margin: 0;
	background: var(--rule);
	border: 1px solid var(--rule);
	margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
}
@media (min-width: 44rem) { .accepted { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68rem) { .accepted { grid-template-columns: repeat(3, 1fr); } }

.accepted__item { background: var(--ivory); padding: clamp(1.25rem, 2vw, 1.75rem); }
.accepted__term {
	font-family: var(--display);
	font-weight: 600;
	font-size: 1.0625rem;
	letter-spacing: -0.015em;
	margin-bottom: 0.5rem;
}
.accepted__copy { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* -------------------------------------------------------- stepped form */

.stepper {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	gap: 0.5rem 1.75rem;
	padding-bottom: 1.25rem;
	margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
	border-bottom: 1px solid var(--rule-dark, rgba(244, 240, 232, 0.18));
}

.stepper__item {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	opacity: 0.4;
	transition: opacity 0.4s var(--ease);
}
.stepper__item.is-current,
.stepper__item.is-done { opacity: 1; }
.stepper__item.is-current .stepper__index { color: var(--tan); }
.stepper__item.is-done .stepper__index { color: var(--brass); }

.enquiry__step { border: 0; padding: 0; margin: 0; min-width: 0; }
.enquiry__step-title { padding: 0; margin-bottom: 1.5rem; }
.enquiry__step-index {
	display: block;
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.5;
	margin-bottom: 0.4rem;
}

/* Only hide steps once the script has taken over; without JS every step
   stays visible and the form still submits in one go. */
.enquiry--stepped.is-enhanced .enquiry__step[hidden] { display: none; }
.enquiry--stepped.is-enhanced .enquiry__foot { display: none; }
.enquiry--stepped.is-enhanced.is-final .enquiry__foot { display: flex; }
.enquiry--stepped.is-enhanced.is-final .enquiry__nav [data-step-next] { display: none; }

.enquiry__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: clamp(1.75rem, 3vw, 2.5rem);
}
.enquiry__nav[hidden] { display: none; }
.enquiry__nav [data-step-back][disabled] { opacity: 0.35; pointer-events: none; }

/* checkbox groups */
.field__legend {
	display: flex;
	gap: 0.5rem;
	align-items: baseline;
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--ink-soft);
}
.section--dark .field__legend { color: rgba(244, 240, 232, 0.5); }

.choices { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.choice input {
	position: absolute;
	opacity: 0;
	width: 1px; height: 1px;
}
.choice label {
	display: inline-block;
	border: 1px solid var(--rule);
	padding: 0.6rem 1rem;
	font-size: 0.875rem;
	cursor: pointer;
	transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
	text-transform: none;
	letter-spacing: 0;
	font-family: var(--body);
}
.section--dark .choice label { border-color: rgba(244, 240, 232, 0.22); color: var(--paper); }
.choice input:checked + label { background: var(--brass); border-color: var(--brass); color: var(--paper); }
.choice input:focus-visible + label { outline: 2px solid var(--brass); outline-offset: 3px; }

/* ---------------------------------------------------- mobile action bar */

.action-bar { display: none; }

@media (max-width: 47.99rem) {
	.action-bar {
		position: fixed;
		left: 0; right: 0; bottom: 0;
		z-index: 40;
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: 1fr;
		border-top: 1px solid rgba(244, 240, 232, 0.16);
	}

	.action-bar__item {
		padding: 1rem 0.5rem;
		text-align: center;
		text-decoration: none;
		background: var(--charcoal);
		color: var(--paper);
		font-family: var(--mono);
		font-size: 0.6875rem;
		letter-spacing: 0.13em;
		text-transform: uppercase;
	}
	.action-bar__item--solid { background: var(--brass); }

	/* the dock would sit on top of the bar, so it stands down */
	.whatsapp-dock { display: none; }

	/* keep the last section clear of the bar */
	body { padding-bottom: 3.25rem; }
}

@media print {
	.action-bar { display: none; }
}

/* small additions for markup that was styled by its parent only */
.disciplines__line { display: block; }
.stepper__label { white-space: nowrap; }
.progression--wide { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

/* ------------------------------------------------------- testimonials */

.quotes {
	display: grid;
	gap: 1px;
	list-style: none;
	margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
	padding: 0;
	background: var(--rule);
	border: 1px solid var(--rule);
}
@media (min-width: 56rem) { .quotes { grid-template-columns: repeat(3, 1fr); } }

.quotes__item { background: var(--ivory); }

.quote {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin: 0;
	padding: clamp(1.75rem, 2.6vw, 2.5rem);
}

.quote__body {
	margin: 0 0 auto;
	font-family: var(--editorial);
	font-size: clamp(1.125rem, 1.9vw, 1.4375rem);
	line-height: 1.4;
	letter-spacing: -0.01em;
	text-indent: -0.35em;
}
.quote__body::before { content: "\201C"; }
.quote__body::after { content: "\201D"; }

.quote__by {
	display: grid;
	gap: 0.2rem;
	padding-top: 1.75rem;
	margin-top: 1.75rem;
	border-top: 1px solid var(--rule);
}
.quote__name { font-family: var(--display); font-weight: 500; font-size: 0.9375rem; }
.quote__role {
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0.1em;
	color: var(--ink-soft);
}

/* Radius follows the Customizer token; the design ships square. */
.field input,
.field select,
.field textarea,
.choice label,
.chip,
.collection-card__media,
.design-card__media,
.progression__media,
.audience,
.case__row,
.accepted__item,
.quotes__item { border-radius: var(--radius); }

/* =====================================================================
   Motion
   Only applied once the script has run (html.opl-motion), so the page is
   complete and readable with JavaScript off. Reduced motion is handled
   before any class is added at all.
   ===================================================================== */

.opl-motion .reveal {
	opacity: 0;
	transform: translateY(1.25rem);
	transition:
		opacity 0.8s var(--ease) var(--reveal-delay, 0ms),
		transform 0.8s var(--ease) var(--reveal-delay, 0ms);
}

.opl-motion .reveal.is-in {
	opacity: 1;
	transform: none;
}

/* Items in a grid travel a shorter distance — a long lift reads as a
   slideshow once there are eight of them. */
.opl-motion .reveal--item { transform: translateY(0.85rem); }

/* Media wipes up from its own edge rather than fading, which keeps the
   product looking placed rather than dropped in. */
.opl-motion .collection-card__media,
.opl-motion .design-card__media,
.opl-motion .progression__media,
.opl-motion .stage__media,
.opl-motion .wide-figure__image,
.opl-motion .founder__portrait img {
	clip-path: inset(0 0 100% 0);
	transition: clip-path 1s var(--ease) var(--reveal-delay, 0ms);
}

.opl-motion .is-in .collection-card__media,
.opl-motion .is-in .design-card__media,
.opl-motion .is-in .progression__media,
.opl-motion .is-in .stage__media,
.opl-motion .is-in.wide-figure .wide-figure__image,
.opl-motion .is-in.founder__portrait img {
	clip-path: inset(0 0 0 0);
}

/* Hero: the parts arrive in reading order, once, on load. */
.opl-motion .hero__heading,
.opl-motion .hero__support,
.opl-motion .hero__actions,
.opl-motion .hero__ledger,
.opl-motion .hero .eyebrow {
	opacity: 0;
	transform: translateY(1.5rem);
	transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.opl-motion .hero.is-ready .eyebrow { transition-delay: 0.05s; }
.opl-motion .hero.is-ready .hero__heading { transition-delay: 0.15s; }
.opl-motion .hero.is-ready .hero__support { transition-delay: 0.3s; }
.opl-motion .hero.is-ready .hero__actions { transition-delay: 0.42s; }
.opl-motion .hero.is-ready .hero__ledger { transition-delay: 0.54s; }

.opl-motion .hero.is-ready .hero__heading,
.opl-motion .hero.is-ready .hero__support,
.opl-motion .hero.is-ready .hero__actions,
.opl-motion .hero.is-ready .hero__ledger,
.opl-motion .hero.is-ready .eyebrow {
	opacity: 1;
	transform: none;
}

/* The hero image settles as the section arrives, then drifts by a few
   pixels on scroll — weight, not parallax. */
.opl-motion .hero__media img,
.opl-motion .hero__placeholder {
	transform: scale(1.06) translateY(var(--drift, 0));
	transition: transform 1.6s var(--ease);
}

.opl-motion .hero.is-ready .hero__media img,
.opl-motion .hero.is-ready .hero__placeholder {
	transform: scale(1) translateY(var(--drift, 0));
}

.opl-motion .wide-figure__image { transform: translateY(var(--drift, 0)); }

/* Figures hold their width while counting so nothing reflows. */
.ledger__value,
.figures__value,
.case__metric-value { font-variant-numeric: tabular-nums; }

/* The brass rule under a section title draws itself in. */
.opl-motion .record,
.opl-motion .faq,
.opl-motion .material-list { position: relative; }

.opl-motion .record::before,
.opl-motion .faq::before,
.opl-motion .material-list::before {
	content: "";
	position: absolute;
	top: -1px; left: 0;
	height: 1px;
	width: 0;
	background: var(--brass);
	transition: width 1.2s var(--ease) 0.2s;
}

.opl-motion .record.is-in::before,
.opl-motion .faq.is-in::before,
.opl-motion .material-list.is-in::before,
.opl-motion .record:has(.is-in)::before,
.opl-motion .faq:has(.is-in)::before,
.opl-motion .material-list:has(.is-in)::before { width: 100%; }

/* The mobile menu slides rather than appearing. Scoped to the breakpoint
   where the menu is actually a panel — unscoped, this hides the desktop
   navigation, which is exactly what it did in 2.0.0. */
@media (max-width: 74.99rem) {
	.opl-motion .masthead__nav {
		transform: translateY(-0.75rem);
		opacity: 0;
		transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
	}
	.opl-motion .masthead__nav.is-open { transform: none; opacity: 1; }
}

/* Anything with reduced motion asked for gets the finished state and no
   transitions at all — including the ones declared above. */
.opl-static .reveal,
.opl-static .hero__heading,
.opl-static .hero__support,
.opl-static .hero__actions,
.opl-static .hero__ledger {
	opacity: 1;
	transform: none;
}

/* ---------------------------------------------------------- cursor label

   A label that follows the pointer over things whose behaviour is not
   obvious from looking at them. The native cursor is never hidden — this
   sits alongside it, offset, and is inert to pointer events.            */

.opl-cursor {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 90;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.25s var(--ease);
	will-change: transform;
}

.opl-cursor.is-on { opacity: 1; }

.opl-cursor__label {
	display: block;
	transform: translate(1.1rem, 0.9rem) scale(0.94);
	transform-origin: 0 0;
	background: var(--espresso);
	color: var(--paper);
	border: 1px solid var(--brass);
	padding: 0.45rem 0.8rem;
	font-family: var(--mono);
	font-size: 0.625rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: transform 0.25s var(--ease), background-color 0.2s var(--ease);
}

.opl-cursor.is-on .opl-cursor__label { transform: translate(1.1rem, 0.9rem) scale(1); }
.opl-cursor.is-down .opl-cursor__label { background: var(--brass); }

/* The horizontal process strip is the one place a different pointer shape
   genuinely helps, because nothing else on the page scrolls sideways. */
@media (hover: hover) and (pointer: fine) {
	.line { cursor: grab; }
	.line:active { cursor: grabbing; }
	.film__play { cursor: pointer; }
}
