/* ==========================================================================
   Orbit House — main stylesheet
   Order: base · layout · motion · header · footer · buttons · sections · pages
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Base
   -------------------------------------------------------------------------- */

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

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

html.orbit-smooth { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--ink);
	color: var(--text-on-dark);
	font-family: var(--font-body);
	font-size: var(--step-0);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5 {
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.03em;
	margin: 0 0 var(--space-s);
	text-wrap: balance;
	/* Display type at 320px can exceed the viewport on a single long word
	   ("relaunch", a client name) — break rather than overflow the page. */
	overflow-wrap: break-word;
	word-break: break-word;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 var(--space-s); }

p, li { text-wrap: pretty; }

ul, ol { margin: 0 0 var(--space-s); padding-left: 1.2em; }

strong { font-weight: 600; }

::selection { background: var(--gold); color: var(--ink); }

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

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

.skip-link {
	position: absolute;
	left: var(--space-s);
	top: -100px;
	z-index: 1000;
	background: var(--gold);
	color: var(--ink);
	padding: var(--space-xs) var(--space-m);
	border-radius: var(--radius-full);
	font-weight: 600;
	transition: top var(--dur-micro) var(--ease-snap);
}
.skip-link:focus { top: var(--space-s); }

/* --------------------------------------------------------------------------
   2. Layout
   -------------------------------------------------------------------------- */

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

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: calc(var(--section-y) * .6); }

.section--light { background: var(--mist); color: var(--text-on-light); }
.section--light .muted { color: var(--text-on-light-muted); }
.section--charcoal { background: var(--charcoal); }

.muted { color: var(--text-on-dark-muted); }

.lead { font-size: var(--step-1); line-height: 1.5; max-width: 46ch; }

.eyebrow {
	font-family: var(--font-body);
	font-size: var(--step--1);
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold);
	display: inline-flex;
	align-items: center;
	gap: var(--space-2xs);
	margin-bottom: var(--space-s);
}
.eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: var(--gold);
	display: inline-block;
}
.section--light .eyebrow { color: var(--gold-deep); }
.section--light .eyebrow::before { background: var(--gold-deep); }

.section-head {
	display: grid;
	gap: var(--space-m);
	margin-bottom: var(--space-2xl);
}
@media (min-width: 900px) {
	.section-head--split {
		/* The heading column carries display type at --step-4; below ~640px of
		   column width the authored line breaks fall apart, so it takes the
		   larger share and the gap stays moderate. */
		grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
		align-items: end;
		gap: var(--space-2xl);
	}
}

.gold { color: var(--gold); }
.section--light .gold { color: var(--gold-deep); }

.rule { height: 1px; background: var(--line-dark); border: 0; margin: 0; }
.section--light .rule { background: var(--line-light); }

/* --------------------------------------------------------------------------
   3. Motion primitives
   -------------------------------------------------------------------------- */

/* Scroll reveal — JS adds .is-in when the element enters the viewport. */
[data-reveal] {
	opacity: 0;
	transform: translate3d(0, 28px, 0);
	transition:
		opacity var(--dur-reveal) var(--ease-out),
		transform var(--dur-reveal) var(--ease-out);
	transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* Headline mask reveal — each line clips up from its own mask.
   The mask is padded so descenders are not shaved off, and balancing is
   disabled inside it: each mask is already an authored line, so letting the
   browser re-balance it produces one-word-per-line headlines. */
.reveal-text {
	display: block;
	overflow: hidden;
	padding-bottom: .12em;
	margin-bottom: -.12em;
	text-wrap: normal;
}
.reveal-text > span {
	display: block;
	text-wrap: normal;
	transform: translate3d(0, 108%, 0);
	transition: transform 900ms var(--ease-out);
	transition-delay: var(--reveal-delay, 0ms);
}
.reveal-text.is-in > span { transform: none; }

.parallax { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
	[data-reveal], .reveal-text > span { opacity: 1 !important; transform: none !important; }
	html.orbit-smooth { scroll-behavior: auto; }
	.marquee__track { animation: none !important; }
}

/* Page-load curtain */
.loader {
	position: fixed;
	inset: 0;
	z-index: 999;
	background: var(--ink);
	display: grid;
	place-items: center;
	transition: transform 700ms var(--ease-out);
}
.loader__mark {
	font-family: var(--font-display);
	font-size: var(--step-3);
	letter-spacing: .12em;
	font-weight: 700;
	opacity: 0;
	animation: loader-in 620ms var(--ease-out) forwards;
}
.loader.is-done { transform: translate3d(0, -101%, 0); pointer-events: none; }
@keyframes loader-in { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .loader { display: none; } }

/* Custom cursor (pointer devices only) */
.cursor, .cursor-ring {
	position: fixed;
	top: 0; left: 0;
	z-index: 900;
	pointer-events: none;
	border-radius: 50%;
	mix-blend-mode: difference;
}
.cursor { width: 6px; height: 6px; background: var(--white); }
.cursor-ring {
	width: 34px; height: 34px;
	border: 1px solid rgba(255, 255, 255, .6);
	transition: width var(--dur-hover) var(--ease-out), height var(--dur-hover) var(--ease-out), border-color var(--dur-hover) var(--ease-out);
}
.cursor-ring.is-active { width: 56px; height: 56px; border-color: var(--gold); }
@media (hover: none), (prefers-reduced-motion: reduce) {
	.cursor, .cursor-ring { display: none; }
}

/* --------------------------------------------------------------------------
   4. Header
   -------------------------------------------------------------------------- */

.site-header {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 500;
	background: transparent;
	transition: background var(--dur-hover) var(--ease-snap), box-shadow var(--dur-hover) var(--ease-snap), transform 420ms var(--ease-out);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-l);
	height: var(--header-h);
	transition: height var(--dur-hover) var(--ease-snap);
}
.site-header.is-stuck {
	background: rgba(13, 13, 13, .82);
	-webkit-backdrop-filter: saturate(140%) blur(14px);
	backdrop-filter: saturate(140%) blur(14px);
	box-shadow: 0 1px 0 var(--line-dark), 0 18px 40px rgba(0, 0, 0, .35);
}
.site-header.is-stuck .site-header__inner { height: 68px; }
.site-header.is-hidden { transform: translate3d(0, -100%, 0); }

/* Pages without a dark hero start with the solid bar so text stays readable. */
body:not(.has-dark-hero) .site-header {
	background: rgba(13, 13, 13, .92);
}

/* Studio lockup — ring mark + wordmark, rebuilt from the supplied logo. */
.wordmark {
	display: inline-flex;
	align-items: center;
	min-height: 44px;            /* touch target */
	gap: 10px;
	color: var(--white);
	white-space: nowrap;
}
.wordmark__mark {
	width: 30px;
	height: 30px;
	flex: none;
	color: var(--gold);
	transition: transform 700ms var(--ease-out);
}
.wordmark:hover .wordmark__mark { transform: rotate(120deg); }
.wordmark__type { display: grid; gap: 2px; }
.wordmark__name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(.98rem, 1.5vw, 1.24rem);
	letter-spacing: .16em;
	line-height: 1;
	text-transform: uppercase;
}
.wordmark__name em { font-style: normal; color: var(--gold); }
.wordmark__sub {
	font-family: var(--font-body);
	font-size: .6rem;
	font-weight: 500;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--text-on-dark-muted);
	line-height: 1;
}
.wordmark img { max-height: 44px; width: auto; }
@media (prefers-reduced-motion: reduce) { .wordmark:hover .wordmark__mark { transform: none; } }

/* Stacked circular lockup — footer and page-load curtain. */
.logo-stack {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: clamp(172px, 46vw, 210px);
	aspect-ratio: 1;
	color: var(--white);
}
.logo-stack__ring {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	color: var(--gold);
}
.logo-stack__inner { display: grid; justify-items: center; gap: 4px; }
.logo-stack__the {
	font-family: var(--font-script);
	font-size: clamp(1.15rem, 4vw, 1.45rem);
	line-height: .9;
	color: var(--gold);
}
.logo-stack__name {
	font-family: var(--font-display);
	font-weight: 800;
	/* Must clear the ring's inner width — nowrap so it never stacks inside the mark. */
	font-size: clamp(.82rem, 3.4vw, 1.08rem);
	letter-spacing: .07em;
	line-height: 1;
	white-space: nowrap;
}
.logo-stack__name em { font-style: normal; color: var(--gold); }
.logo-stack__sub {
	font-family: var(--font-body);
	font-size: .58rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--text-on-dark-muted);
	white-space: nowrap;
}

.nav { display: none; }
@media (min-width: 1080px) {
	.nav { display: block; }
	.nav ul {
		display: flex;
		align-items: center;
		gap: clamp(18px, 2.2vw, 34px);
		list-style: none;
		margin: 0;
		padding: 0;
	}
	.nav a {
		position: relative;
		font-size: var(--step--1);
		font-weight: 500;
		letter-spacing: .14em;
		text-transform: uppercase;
		/* 13px block padding brings the hit area to 44px without moving the label. */
		padding-block: 13px;
		color: var(--text-on-dark);
	}
	.nav a::after {
		content: "";
		position: absolute;
		left: 0; bottom: 0;
		width: 100%;
		height: 1px;
		background: var(--gold);
		transform: scaleX(0);
		transform-origin: right;
		transition: transform var(--dur-hover) var(--ease-out);
	}
	.nav a:hover::after,
	.nav a:focus-visible::after,
	.nav .current-menu-item > a::after,
	.nav .current_page_parent > a::after { transform: scaleX(1); transform-origin: left; }
	.nav .current-menu-item > a { color: var(--gold); }
}

/* Scoped to .site-header so it outranks `.btn { display: inline-flex }`, which
   is defined later in this file and would otherwise win on equal specificity. */
.site-header .header-cta { display: none; }
@media (min-width: 1080px) { .site-header .header-cta { display: inline-flex; } }

/* Hamburger */
.burger {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 48px; height: 48px;
	padding: 0 10px;
	background: none;
	border: 0;
	cursor: pointer;
}
@media (min-width: 1080px) { .burger { display: none; } }
.burger span {
	display: block;
	height: 2px;
	background: var(--white);
	transition: transform var(--dur-hover) var(--ease-out), opacity var(--dur-micro) linear;
}
.burger span:nth-child(2) { width: 70%; margin-left: auto; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Full-screen overlay menu */
.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 480;
	background: var(--ink);
	padding: calc(var(--header-h) + var(--space-2xl)) var(--gutter) var(--space-2xl);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	clip-path: inset(0 0 100% 0);
	/* visibility (not just clipping) so the closed menu's links leave the tab
	   order — otherwise desktop keyboard users tab through an invisible menu. */
	visibility: hidden;
	transition: clip-path 620ms var(--ease-out), visibility 0s linear 620ms;
	overflow-y: auto;
}
.mobile-menu.is-open {
	clip-path: inset(0 0 0 0);
	visibility: visible;
	transition: clip-path 620ms var(--ease-out), visibility 0s;
}
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu .menu > li { border-bottom: 1px solid var(--line-dark); }
.mobile-menu .menu a {
	display: block;
	padding: var(--space-s) 0;
	font-family: var(--font-display);
	font-size: var(--step-3);
	font-weight: 700;
	letter-spacing: -0.02em;
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	transition: opacity 480ms var(--ease-out), transform 480ms var(--ease-out), color var(--dur-micro) linear;
}
.mobile-menu.is-open .menu a { opacity: 1; transform: none; }
.mobile-menu .menu li:nth-child(1) a { transition-delay: 120ms; }
.mobile-menu .menu li:nth-child(2) a { transition-delay: 180ms; }
.mobile-menu .menu li:nth-child(3) a { transition-delay: 240ms; }
.mobile-menu .menu li:nth-child(4) a { transition-delay: 300ms; }
.mobile-menu .menu li:nth-child(5) a { transition-delay: 360ms; }
.mobile-menu .menu li:nth-child(6) a { transition-delay: 420ms; }
.mobile-menu .menu a:hover { color: var(--gold); }
.mobile-menu__foot a:not(.btn) { display: inline-flex; align-items: center; min-height: 44px; }
.mobile-menu__foot {
	display: grid;
	gap: var(--space-s);
	padding-top: var(--space-xl);
	font-size: var(--step--1);
	color: var(--text-on-dark-muted);
}
body.menu-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: var(--space-2xs);
	min-height: 48px;
	padding: 14px 28px;
	border: 1px solid transparent;
	border-radius: var(--radius-full);
	font-family: var(--font-body);
	font-size: var(--step--1);
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	cursor: pointer;
	overflow: hidden;
	isolation: isolate;
	transition: color var(--dur-hover) var(--ease-out), border-color var(--dur-hover) var(--ease-out), transform var(--dur-micro) var(--ease-snap);
}
.btn::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--gold);
	transform: translate3d(-101%, 0, 0);
	transition: transform var(--dur-hover) var(--ease-out);
}
.btn:hover, .btn:focus-visible { transform: translateY(-1px); }
.btn:hover::before, .btn:focus-visible::before { transform: none; }
.btn .arrow { transition: transform var(--dur-hover) var(--ease-out); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--primary { background: var(--gold); color: var(--ink); }
.btn--primary::before { background: var(--white); }

.btn--ghost { border-color: var(--line-dark); color: var(--text-on-dark); }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--ink); border-color: var(--gold); }

.section--light .btn--ghost { border-color: var(--line-light); color: var(--text-on-light); }
.section--light .btn--ghost:hover { color: var(--ink); }

.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark::before { background: var(--gold); }
.btn--dark:hover { color: var(--ink); }

.text-link {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2xs);
	min-height: 44px;            /* touch target */
	font-size: var(--step--1);
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gold);
	padding-block: var(--space-3xs);
}

/* On phones a primary action reads better full width, and two stacked buttons
   of different widths look accidental. */
@media (max-width: 600px) {
	.hero__meta,
	.cta-band .btn-row,
	.load-more-wrap { display: grid; gap: var(--space-s); width: 100%; }

	.btn:not(.header-cta) { width: 100%; justify-content: center; }
	/* the split section head's right column shrinks to content, which would
	   leave its button narrower than every other one on the page */
	.section-head p { width: 100%; }
}

/* Touch devices never fire :hover, so anything revealed only on hover would
   stay invisible — show it by default where there is no hover. */
@media (hover: none) {
	.work-card__cta,
	.pillar__more { opacity: 1; transform: none; }
	.service-row__icon { color: var(--gold); }
	.marquee img, .marquee__item { filter: none; opacity: .9; }
}
.text-link .arrow { transition: transform var(--dur-hover) var(--ease-out); }
.text-link:hover .arrow { transform: translateX(6px); }
.section--light .text-link { color: var(--gold-deep); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */

.hero {
	position: relative;
	min-height: min(100svh, 900px);
	display: flex;
	align-items: flex-end;
	padding-top: calc(var(--header-h) + var(--space-2xl));
	padding-bottom: var(--space-3xl);
	overflow: hidden;
}
.hero__media {
	position: absolute;
	inset: -10% 0 -10% 0;
	z-index: -2;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(120% 90% at 75% 15%, rgba(212, 175, 55, .16), transparent 55%),
		linear-gradient(180deg, rgba(13, 13, 13, .78) 0%, rgba(13, 13, 13, .62) 40%, var(--ink) 96%);
}
.hero__inner { width: 100%; }
.hero h1 {
	font-size: var(--step-6);
	letter-spacing: -0.045em;
	max-width: 15ch;
	margin-bottom: var(--space-m);
}
.hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space-m);
	margin-top: var(--space-xl);
}
.hero__scroll {
	position: absolute;
	right: var(--gutter);
	bottom: var(--space-2xl);
	display: none;
	writing-mode: vertical-rl;
	font-size: var(--step--2);
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--text-on-dark-muted);
}
@media (min-width: 900px) { .hero__scroll { display: block; } }
.hero__scroll::after {
	content: "";
	display: block;
	width: 1px; height: 56px;
	margin: var(--space-s) auto 0;
	background: linear-gradient(var(--gold), transparent);
	animation: scroll-pulse 2.2s var(--ease-out) infinite;
}
@keyframes scroll-pulse {
	0% { transform: scaleY(.2); transform-origin: top; opacity: 0; }
	40% { opacity: 1; }
	100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* Compact page hero for inner pages */
.page-hero {
	position: relative;
	padding-top: calc(var(--header-h) + clamp(56px, 9vw, 120px));
	padding-bottom: clamp(48px, 7vw, 96px);
	background: var(--ink);
	overflow: hidden;
}
.page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(90% 120% at 85% 0%, rgba(212, 175, 55, .14), transparent 60%);
	pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { margin-top: var(--space-m); }

/* --------------------------------------------------------------------------
   7. Home sections
   -------------------------------------------------------------------------- */

/* Intro / who we are ------------------------------------------------------
   Two columns of argument, then a full-width band of proof. The heading is
   deliberately a step down from a section title: it shares the row with body
   copy, and at --step-3 it ran to six ragged lines and out-shouted the text
   it was meant to introduce. */
.studio { position: relative; overflow: hidden; }
.studio__watermark {
	position: absolute;
	top: 50%;
	right: calc(var(--gutter) * -1);
	width: min(46vw, 460px);
	height: auto;
	aspect-ratio: 1;
	transform: translateY(-50%);
	color: var(--gold-deep);
	opacity: .07;
	pointer-events: none;
}
.studio > .container { position: relative; }

.intro-grid { display: grid; gap: var(--space-xl); }
@media (min-width: 960px) {
	.intro-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: var(--space-3xl); align-items: start; }
}

.intro-heading {
	font-size: var(--step-2);
	line-height: 1.1;
	letter-spacing: -0.022em;
	max-width: 17ch;
}

.intro-body {
	font-size: var(--step-1);
	line-height: 1.55;
	max-width: 48ch;
	margin-bottom: var(--space-l);
}

/* Attribution: a small label anchors the signature so it reads as a credit
   rather than a stray line of script. */
.credit {
	display: grid;
	gap: var(--space-3xs);
	margin-top: var(--space-l);
}
.credit__label {
	font-size: var(--step--2);
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--text-on-light-muted);
}
.signature {
	font-family: var(--font-script);
	font-size: var(--step-3);
	color: var(--gold);
	line-height: 1.1;
	display: block;
}
.section--light .signature { color: var(--gold-deep); }

/* Proof band — equal columns, hairline dividers, numbers on a shared baseline. */
.stat-band {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: var(--space-3xl);
	border-top: 1px solid var(--line-light);
}
@media (min-width: 640px) {
	.stat-band { grid-template-columns: repeat(3, 1fr); }
}
.stat {
	position: relative;
	padding: var(--space-xl) var(--space-m) var(--space-l) 0;
	border-bottom: 1px solid var(--line-light);
}
/* A gold tick over each figure ties the band to the brand without tinting the
   numerals themselves, which need to stay high-contrast. */
.stat::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 34px;
	height: 2px;
	background: var(--gold-deep);
}
.section:not(.section--light) .stat::before { background: var(--gold); }
@media (min-width: 640px) {
	.stat { border-bottom: 0; padding-inline: var(--space-xl); }
	.stat::before { left: var(--space-xl); }
	.stat:first-child { padding-left: 0; }
	.stat:first-child::before { left: 0; }
	.stat + .stat { border-left: 1px solid var(--line-light); }
	.stat:last-child { padding-right: 0; }
}
.section:not(.section--light) .stat-band,
.section:not(.section--light) .stat,
.section:not(.section--light) .stat + .stat { border-color: var(--line-dark); }

.stat__value {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5.4vw, 4.2rem);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: .95;
	font-variant-numeric: tabular-nums;
}
.stat__label {
	display: block;
	max-width: 14ch;
	min-height: 2.4em;              /* one- and two-line labels stay aligned */
	margin-top: var(--space-xs);
	font-size: var(--step--2);
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--text-on-light-muted);
}
.section:not(.section--light) .stat__label { color: var(--text-on-dark-muted); }

/* Service pillars */
.pillars {
	display: grid;
	gap: 1px;
	background: var(--line-dark);
	border-block: 1px solid var(--line-dark);
}
@media (min-width: 700px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
	position: relative;
	background: var(--ink);
	padding: var(--space-xl) var(--space-l);
	display: block;
	overflow: hidden;
	transition: background var(--dur-hover) var(--ease-out);
}
.pillar::before {
	content: "";
	position: absolute;
	left: 0; right: 0; top: 0;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--dur-hover) var(--ease-out);
}
.pillar:hover, .pillar:focus-visible { background: var(--charcoal); }
.pillar:hover::before, .pillar:focus-visible::before { transform: scaleX(1); }
.pillar__icon {
	width: 44px; height: 44px;
	color: var(--gold);
	margin-bottom: var(--space-m);
	transition: transform var(--dur-hover) var(--ease-out);
}
.pillar:hover .pillar__icon { transform: translateY(-4px) scale(1.06); }
.pillar h3 { font-size: var(--step-1); margin-bottom: var(--space-2xs); }
.pillar p { font-size: var(--step--1); color: var(--text-on-dark-muted); margin: 0; }
.pillar__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: var(--space-m);
	font-size: var(--step--2);
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gold);
	opacity: 0;
	transform: translateY(6px);
	transition: opacity var(--dur-hover) var(--ease-out), transform var(--dur-hover) var(--ease-out);
}
.pillar:hover .pillar__more, .pillar:focus-visible .pillar__more { opacity: 1; transform: none; }

/* Partnership flow */
.flow {
	display: grid;
	gap: var(--space-l);
	counter-reset: step;
}
@media (min-width: 1000px) {
	.flow { grid-template-columns: repeat(5, 1fr); gap: var(--space-s); }
}
.flow__step {
	position: relative;
	padding: var(--space-l) var(--space-m);
	border: 1px solid var(--line-light);
	border-radius: var(--radius-m);
	background: var(--white);
	transition: transform var(--dur-hover) var(--ease-out), box-shadow var(--dur-hover) var(--ease-out), border-color var(--dur-hover) var(--ease-out);
}
.flow__step:hover { transform: translateY(-6px); border-color: var(--gold-line); box-shadow: 0 20px 40px rgba(13, 13, 13, .10); }
.flow__step::after {
	content: "";
	position: absolute;
	top: 50%;
	right: calc(var(--space-s) * -1);
	width: var(--space-s);
	height: 1px;
	background: repeating-linear-gradient(90deg, var(--gold-line) 0 4px, transparent 4px 8px);
	display: none;
}
@media (min-width: 1000px) {
	.flow__step:not(:last-child)::after { display: block; }
}
.flow__num {
	counter-increment: step;
	font-family: var(--font-display);
	font-size: var(--step--1);
	color: var(--gold-deep);
	letter-spacing: .12em;
}
.flow__num::before { content: "0" counter(step); }
.flow__step h3 { font-size: var(--step-1); margin: var(--space-2xs) 0 var(--space-2xs); }
.flow__step p { font-size: var(--step--1); color: var(--text-on-light-muted); margin: 0; }

/* Logo marquee */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track {
	display: flex;
	align-items: center;
	gap: clamp(40px, 6vw, 96px);
	width: max-content;
	animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }
.marquee img, .marquee__item {
	height: 34px;
	width: auto;
	filter: grayscale(1) brightness(1.6);
	opacity: .62;
	transition: filter var(--dur-hover) var(--ease-out), opacity var(--dur-hover) var(--ease-out);
}
.marquee img:hover, .marquee__item:hover { filter: none; opacity: 1; }
.marquee__item {
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-size: var(--step-1);
	letter-spacing: .1em;
	text-transform: uppercase;
	white-space: nowrap;
	color: var(--text-on-dark);
}

/* Testimonials */
.quotes { position: relative; }
.quote {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translate3d(0, 18px, 0);
	transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
	pointer-events: none;
}
.quote.is-active { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.quote blockquote {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--step-3);
	font-weight: 600;
	line-height: 1.22;
	letter-spacing: -0.025em;
	max-width: 24ch;
}
.quote__mark { font-size: var(--step-6); line-height: .6; color: var(--gold); display: block; margin-bottom: var(--space-s); }
.quote__author { margin-top: var(--space-l); font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; }
.quote__author span { display: block; color: var(--text-on-dark-muted); letter-spacing: .06em; text-transform: none; margin-top: 4px; }
.quotes__nav { display: flex; gap: var(--space-2xs); margin-top: var(--space-xl); }
.quotes__dot {
	width: 40px; height: 3px;
	padding: 0;
	border: 0;
	background: var(--line-dark);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.quotes__dot::after {
	content: "";
	position: absolute; inset: 0;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--dur-hover) var(--ease-out);
}
.quotes__dot[aria-selected="true"]::after { transform: scaleX(1); }
.quotes__dot { min-height: 44px; background-clip: content-box; padding-block: 20px; }

/* CTA band */
.cta-band { background: var(--charcoal); position: relative; overflow: hidden; }
.cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(60% 120% at 50% 120%, rgba(212, 175, 55, .22), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: var(--step-5); max-width: 18ch; margin-inline: auto; text-align: center; }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: var(--space-s); justify-content: center; margin-top: var(--space-xl); }

/* --------------------------------------------------------------------------
   8. Work grid & cards
   -------------------------------------------------------------------------- */

.filters {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2xs);
	margin-bottom: var(--space-2xl);
	padding-bottom: var(--space-m);
	border-bottom: 1px solid var(--line-dark);
}
.filter {
	appearance: none;
	background: none;
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-full);
	color: var(--text-on-dark-muted);
	font-family: inherit;
	font-size: var(--step--1);
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 11px 20px;
	min-height: 44px;
	cursor: pointer;
	transition: color var(--dur-hover) var(--ease-out), border-color var(--dur-hover) var(--ease-out), background var(--dur-hover) var(--ease-out);
}
.filter:hover { color: var(--white); border-color: var(--gold-line); }
.filter[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 600; }

.work-grid {
	display: grid;
	gap: var(--space-l);
	grid-template-columns: 1fr;
}
@media (min-width: 700px) { .work-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); } }
@media (min-width: 1200px) {
	/* Editorial rhythm: every third card runs tall for an asymmetric column. */
	.work-grid--masonry .work-card:nth-child(6n+1) .work-card__media,
	.work-grid--masonry .work-card:nth-child(6n+4) .work-card__media { aspect-ratio: 4 / 5; }
	.work-grid--masonry .work-card:nth-child(6n+2) .work-card__media,
	.work-grid--masonry .work-card:nth-child(6n+3) .work-card__media { aspect-ratio: 1 / 1; }
	.work-grid--masonry .work-card:nth-child(6n+2) { margin-top: var(--space-3xl); }
}

.work-card {
	position: relative;
	transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
}
.work-card.is-hidden { display: none; }
.work-card.is-filtering { opacity: 0; transform: translate3d(0, 16px, 0) scale(.985); }

.work-card__media {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-m);
	aspect-ratio: 4 / 3;
	background: var(--charcoal);
	transform-style: preserve-3d;
	transition: transform var(--dur-hover) var(--ease-out), box-shadow var(--dur-hover) var(--ease-out);
}
.work-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform 720ms var(--ease-out), filter 720ms var(--ease-out);
	filter: saturate(.85) brightness(.82);
}
.work-card:hover .work-card__media { transform: translateY(-6px) rotate3d(1, -1, 0, 1.6deg); box-shadow: var(--shadow-l); }
.work-card:hover .work-card__media img { transform: scale(1.08); filter: none; }

/* Branded stand-in for any image the studio has not supplied yet. Reads as a
   deliberate part of the design rather than a broken or irrelevant photo. */
.media-ph {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background:
		radial-gradient(120% 100% at 20% 0%, rgba(212, 175, 55, .18), transparent 60%),
		linear-gradient(150deg, var(--surface-raise), var(--ink));
}
.media-ph > span {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(4rem, 9vw, 8rem);
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--gold);
	opacity: .28;
}
.media-ph--portrait { position: relative; height: 100%; }

.work-card__tag {
	position: absolute;
	top: var(--space-s); left: var(--space-s);
	z-index: 2;
	background: rgba(13, 13, 13, .72);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	border: 1px solid var(--line-dark);
	color: var(--text-on-dark);
	font-size: var(--step--2);
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: var(--radius-full);
}
.work-card__body { padding-top: var(--space-m); }
.work-card__title { font-size: var(--step-2); margin-bottom: var(--space-2xs); }
.work-card__title a::after { content: ""; position: absolute; inset: 0; }
.work-card__excerpt { font-size: var(--step--1); color: var(--text-on-dark-muted); margin: 0; max-width: 46ch; }
.section--light .work-card__excerpt { color: var(--text-on-light-muted); }
.work-card__cta {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2xs);
	margin-top: var(--space-s);
	font-size: var(--step--2);
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gold);
	opacity: 0;
	transform: translate3d(0, 10px, 0);
	transition: opacity var(--dur-hover) var(--ease-out), transform var(--dur-hover) var(--ease-out);
}
.work-card:hover .work-card__cta,
.work-card:focus-within .work-card__cta { opacity: 1; transform: none; }
.section--light .work-card__cta { color: var(--gold-deep); }

.load-more-wrap { display: flex; justify-content: center; margin-top: var(--space-2xl); }
.grid-empty { text-align: center; color: var(--text-on-dark-muted); padding-block: var(--space-2xl); }

/* --------------------------------------------------------------------------
   9. Case study
   -------------------------------------------------------------------------- */

.case-hero { position: relative; padding-top: calc(var(--header-h) + var(--space-2xl)); }
.case-hero__title { font-size: var(--step-6); max-width: 16ch; }
.case-hero__media {
	margin-top: var(--space-2xl);
	border-radius: var(--radius-l);
	overflow: hidden;
	aspect-ratio: 16 / 9;
}
.case-hero__media img { width: 100%; height: 100%; object-fit: cover; }

.case-facts {
	display: grid;
	gap: var(--space-l);
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	padding-block: var(--space-xl);
	border-block: 1px solid var(--line-dark);
}
.case-facts dt {
	font-size: var(--step--2);
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: var(--space-3xs);
}
.case-facts dd { margin: 0; font-size: var(--step-0); }

.case-module { display: grid; gap: var(--space-xl); }
@media (min-width: 900px) {
	.case-module { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: var(--space-3xl); align-items: start; }
	.case-module__label { position: sticky; top: calc(var(--header-h) + var(--space-l)); }
}
.case-module + .case-module { margin-top: var(--section-y); }
.case-module__label h2 { font-size: var(--step-2); }
.case-module__body { font-size: var(--step-1); line-height: 1.5; max-width: 60ch; }
.case-module__body p { margin-bottom: var(--space-m); }

.metrics {
	display: grid;
	gap: var(--space-l);
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.metric {
	padding: var(--space-l);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-m);
	background: var(--charcoal);
	transition: border-color var(--dur-hover) var(--ease-out), transform var(--dur-hover) var(--ease-out);
}
.metric:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.metric__value {
	font-family: var(--font-display);
	font-size: var(--step-4);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--gold);
	line-height: 1;
	display: block;
}
.metric__label { font-size: var(--step--1); color: var(--text-on-dark-muted); margin-top: var(--space-2xs); display: block; }

.gallery { display: grid; gap: var(--space-m); grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-m); }
.gallery img { width: 100%; transition: transform 720ms var(--ease-out); }
.gallery figure:hover img { transform: scale(1.04); }

.deliverables { list-style: none; padding: 0; display: grid; gap: var(--space-2xs); }
.deliverables li { padding-left: 26px; position: relative; color: var(--text-on-dark-muted); }
.deliverables li::before {
	content: "";
	position: absolute;
	left: 0; top: .62em;
	width: 12px; height: 1px;
	background: var(--gold);
}

.case-quote {
	border-left: 2px solid var(--gold);
	padding-left: var(--space-l);
	font-family: var(--font-display);
	font-size: var(--step-2);
	font-weight: 600;
	line-height: 1.3;
	max-width: 30ch;
}

.pagination-cards { display: grid; gap: 1px; background: var(--line-dark); border-top: 1px solid var(--line-dark); }
@media (min-width: 800px) { .pagination-cards { grid-template-columns: repeat(2, 1fr); } }
.pagination-card {
	position: relative;
	background: var(--ink);
	padding: var(--space-2xl) var(--gutter);
	overflow: hidden;
	min-height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.pagination-card__bg {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: scale(1.08);
	transition: opacity 620ms var(--ease-out), transform 900ms var(--ease-out);
}
.pagination-card__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.35) grayscale(.4); }
.pagination-card:hover .pagination-card__bg { opacity: 1; transform: none; }
.pagination-card > *:not(.pagination-card__bg) { position: relative; }
.pagination-card span {
	font-size: var(--step--2);
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold);
}
.pagination-card strong { font-family: var(--font-display); font-size: var(--step-3); font-weight: 800; letter-spacing: -.03em; margin-top: var(--space-2xs); }
.pagination-card--next { text-align: right; align-items: flex-end; }

/* --------------------------------------------------------------------------
   10. Services page
   -------------------------------------------------------------------------- */

.service-row {
	display: grid;
	gap: var(--space-l);
	padding-block: var(--space-2xl);
	border-top: 1px solid var(--line-dark);
	position: relative;
}
@media (min-width: 900px) {
	.service-row { grid-template-columns: 80px minmax(0, 1fr) minmax(0, 1fr); gap: var(--space-2xl); align-items: start; }
}
.service-row:hover .service-row__icon { color: var(--gold); transform: translateY(-4px); }
.service-row__icon {
	width: 52px; height: 52px;
	color: var(--text-on-dark-muted);
	transition: color var(--dur-hover) var(--ease-out), transform var(--dur-hover) var(--ease-out);
}
.service-row h3 { font-size: var(--step-3); }
.service-row__list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-2xs); }
.service-row__list li {
	padding: var(--space-2xs) 0 var(--space-2xs) 28px;
	position: relative;
	border-bottom: 1px solid var(--line-dark);
	font-size: var(--step-0);
	transition: padding-left var(--dur-hover) var(--ease-out), color var(--dur-hover) var(--ease-out);
}
.service-row__list li::before {
	content: "";
	position: absolute;
	left: 0; top: 1.15em;
	width: 14px; height: 1px;
	background: var(--gold);
	transition: width var(--dur-hover) var(--ease-out);
}
.service-row__list li:hover { padding-left: 36px; color: var(--gold); }
.service-row__list li:hover::before { width: 24px; }

/* --------------------------------------------------------------------------
   11. About page
   -------------------------------------------------------------------------- */

.founder {
	display: grid;
	gap: var(--space-2xl);
	align-items: center;
}
@media (min-width: 900px) {
	.founder { grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); gap: var(--space-4xl); }
}
.founder__portrait {
	position: relative;
	border-radius: var(--radius-l);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--charcoal);
}
/* Single-column below 900px: a 4:5 frame at full tablet width is ~950px tall,
   so cap it and keep it centred. */
@media (max-width: 899px) {
	.founder__portrait { aspect-ratio: 4 / 3; max-width: 460px; margin-inline: auto; }
}
.founder__portrait img { width: 100%; height: 100%; object-fit: cover; }
.founder__portrait::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid var(--gold-line);
	border-radius: var(--radius-l);
	transform: translate(14px, 14px);
	pointer-events: none;
}

.story-figure {
	margin: 0 0 var(--space-l);
	border-radius: var(--radius-m);
	overflow: hidden;
	aspect-ratio: 16 / 10;
}
.story-figure img { width: 100%; height: 100%; object-fit: cover; }

/* Full-bleed image band between sections. */
.image-band { height: clamp(220px, 38vw, 460px); overflow: hidden; position: relative; }
.image-band__media { position: absolute; inset: -12% 0; }
.image-band__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) brightness(.75); }

.timeline { position: relative; padding-left: var(--space-l); }
.timeline::before {
	content: "";
	position: absolute;
	left: 4px; top: 6px; bottom: 6px;
	width: 1px;
	background: var(--line-dark);
}
.timeline__fill {
	position: absolute;
	left: 4px; top: 6px;
	width: 1px;
	background: var(--gold);
	height: 0;
	transition: height 120ms linear;
}
.timeline__item { position: relative; padding-bottom: var(--space-2xl); }
.timeline__item::before {
	content: "";
	position: absolute;
	left: calc(var(--space-l) * -1);
	top: 10px;
	width: 9px; height: 9px;
	border-radius: 50%;
	background: var(--ink);
	border: 1px solid var(--gold);
	transform: translateX(0);
}
.timeline__year { font-family: var(--font-display); font-size: var(--step-1); color: var(--gold); letter-spacing: .04em; }
.timeline__item h3 { font-size: var(--step-2); margin: var(--space-3xs) 0 var(--space-2xs); }
.timeline__item p { color: var(--text-on-dark-muted); max-width: 56ch; margin: 0; }

.value-grid { display: grid; gap: var(--space-l); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.value {
	padding: var(--space-l);
	border: 1px solid var(--line-light);
	border-radius: var(--radius-m);
	background: var(--white);
	transition: transform var(--dur-hover) var(--ease-out), border-color var(--dur-hover) var(--ease-out);
}
.value:hover { transform: translateY(-6px); border-color: var(--gold-line); }
.value h3 { font-size: var(--step-1); }
.value p { font-size: var(--step--1); color: var(--text-on-light-muted); margin: 0; }

.skills { display: flex; flex-wrap: wrap; gap: var(--space-2xs); }
.skill {
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-full);
	padding: 9px 18px;
	font-size: var(--step--1);
	color: var(--text-on-dark-muted);
	transition: border-color var(--dur-hover) var(--ease-out), color var(--dur-hover) var(--ease-out), transform var(--dur-hover) var(--ease-out);
}
.skill:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   12. Insights / blog
   -------------------------------------------------------------------------- */

.post-feature {
	display: grid;
	gap: var(--space-xl);
	align-items: center;
	padding-bottom: var(--section-y);
	border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 900px) { .post-feature { grid-template-columns: 1.1fr 1fr; gap: var(--space-3xl); } }
.post-feature__media { overflow: hidden; border-radius: var(--radius-m); aspect-ratio: 16 / 10; }
.post-feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 720ms var(--ease-out); }
.post-feature:hover .post-feature__media img { transform: scale(1.05); }
.post-feature h2 { font-size: var(--step-3); }

.post-grid { display: grid; gap: var(--space-xl); grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.post-card { position: relative; display: flex; flex-direction: column; }
.post-card__media { overflow: hidden; border-radius: var(--radius-m); aspect-ratio: 3 / 2; background: var(--charcoal); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 720ms var(--ease-out); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card h3 { font-size: var(--step-1); margin: var(--space-s) 0 var(--space-2xs); }
.post-card h3 a::after { content: ""; position: absolute; inset: 0; }
.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xs);
	font-size: var(--step--2);
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gold);
}
.post-card p { font-size: var(--step--1); color: var(--text-on-dark-muted); }

.cat-filters { display: flex; flex-wrap: wrap; gap: var(--space-2xs); margin-bottom: var(--space-2xl); }

.entry-content { font-size: var(--step-1); line-height: 1.65; }
.entry-content > * { max-width: var(--container-prose); margin-inline: auto; }
.entry-content h2 { font-size: var(--step-3); margin-top: var(--space-2xl); }
.entry-content h3 { font-size: var(--step-2); margin-top: var(--space-xl); }
.entry-content img, .entry-content .wp-block-image { border-radius: var(--radius-m); overflow: hidden; }
.entry-content .alignwide { max-width: var(--container); }
.entry-content .alignfull { max-width: none; }
.entry-content a:not(.btn) {
	color: var(--gold);
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 1px;
	transition: color var(--dur-micro) linear;
}
.entry-content a:not(.btn):hover { color: var(--white); }
.entry-content blockquote {
	border-left: 2px solid var(--gold);
	margin: var(--space-xl) auto;
	padding-left: var(--space-l);
	font-family: var(--font-display);
	font-size: var(--step-2);
	line-height: 1.3;
}
.entry-content code { background: var(--charcoal); padding: 2px 6px; border-radius: var(--radius-s); font-size: .9em; }

.reading-bar {
	position: fixed;
	top: 0; left: 0;
	height: 2px;
	background: var(--gold);
	width: 0;
	z-index: 600;
	transition: width 80ms linear;
}

/* --------------------------------------------------------------------------
   13. Contact
   -------------------------------------------------------------------------- */

.contact-grid { display: grid; gap: var(--space-2xl); }
@media (min-width: 960px) { .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, .8fr); gap: var(--space-4xl); align-items: start; } }

.form-field { display: grid; gap: var(--space-2xs); margin-bottom: var(--space-m); }
.form-field label { font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; color: var(--text-on-dark-muted); }
.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	min-height: 52px;
	padding: 14px 16px;
	background: var(--charcoal);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-s);
	color: var(--text-on-dark);
	font-family: inherit;
	font-size: var(--step-0);
	transition: border-color var(--dur-micro) linear, background var(--dur-micro) linear;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); background: #1f1f1f; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(244, 244, 244, .38); }
.form-row { display: grid; gap: var(--space-m); }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

.form-note { font-size: var(--step--1); color: var(--text-on-dark-muted); }

.notice {
	padding: var(--space-s) var(--space-m);
	border-radius: var(--radius-s);
	border: 1px solid var(--gold-line);
	background: var(--gold-soft);
	margin-bottom: var(--space-l);
}
.notice--error { border-color: #E4736B; background: rgba(228, 115, 107, .12); }

.contact-card {
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-m);
	padding: var(--space-l);
	background: var(--charcoal);
}
.contact-card + .contact-card { margin-top: var(--space-m); }
.contact-card h3 { font-size: var(--step-1); }
.contact-card a:not(.btn) { display: inline-flex; align-items: center; min-height: 44px; }
.contact-card a { color: var(--gold); word-break: break-word; }
.contact-card a:hover { color: var(--white); }

.option-cards { display: grid; gap: var(--space-m); grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.option-card {
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-m);
	padding: var(--space-l);
	transition: border-color var(--dur-hover) var(--ease-out), transform var(--dur-hover) var(--ease-out), background var(--dur-hover) var(--ease-out);
}
.option-card:hover { border-color: var(--gold-line); background: var(--charcoal); transform: translateY(-4px); }
.option-card h3 { font-size: var(--step-1); }
.option-card p { font-size: var(--step--1); color: var(--text-on-dark-muted); margin: 0; }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */

.site-footer { background: var(--ink); border-top: 1px solid var(--line-dark); padding-top: var(--section-y); }
.footer-logo { margin-bottom: var(--space-xl); }
.footer-statement {
	font-family: var(--font-display);
	font-size: var(--step-5);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.02;
	max-width: 20ch;
	margin-bottom: var(--space-xl);
}
.footer-grid {
	display: grid;
	gap: var(--space-2xl);
	padding-block: var(--space-3xl) var(--space-2xl);
	border-top: 1px solid var(--line-dark);
	margin-top: var(--space-3xl);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: var(--space-xl); } }
.footer-col h4 {
	font-family: var(--font-body);
	font-size: var(--step--2);
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: var(--space-m);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-2xs); }
.footer-col a {
	color: var(--text-on-dark-muted);
	font-size: var(--step--1);
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	transition: color var(--dur-micro) linear, transform var(--dur-hover) var(--ease-out);
}
.footer-col a:hover { color: var(--gold); transform: translateX(4px); }

.socials { display: flex; gap: var(--space-2xs); margin-top: var(--space-m); }
.socials a {
	width: 44px; height: 44px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line-dark);
	border-radius: 50%;
	transition: border-color var(--dur-hover) var(--ease-out), color var(--dur-hover) var(--ease-out), transform var(--dur-hover) var(--ease-out);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-s) var(--space-l);
	align-items: center;
	justify-content: space-between;
	padding-block: var(--space-l);
	border-top: 1px solid var(--line-dark);
	font-size: var(--step--2);
	color: var(--text-on-dark-muted);
	letter-spacing: .06em;
}
.footer-bottom ul { display: flex; gap: var(--space-m); list-style: none; margin: 0; padding: 0; }
.footer-bottom a { display: inline-flex; align-items: center; min-height: 44px; }
.to-top {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2xs);
	background: none;
	border: 0;
	color: inherit;
	font: inherit;
	letter-spacing: .16em;
	text-transform: uppercase;
	cursor: pointer;
	min-height: 44px;
}
.to-top:hover { color: var(--gold); }
.to-top svg { transition: transform var(--dur-hover) var(--ease-out); }
.to-top:hover svg { transform: translateY(-4px); }

/* --------------------------------------------------------------------------
   15. Misc
   -------------------------------------------------------------------------- */

.pagination { display: flex; gap: var(--space-2xs); justify-content: center; margin-top: var(--space-2xl); }
.pagination .page-numbers {
	min-width: 44px; min-height: 44px;
	display: grid; place-items: center;
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-full);
	font-size: var(--step--1);
	padding-inline: 14px;
	transition: border-color var(--dur-hover) var(--ease-out), color var(--dur-hover) var(--ease-out);
}
.pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 600; }

.error-404 { min-height: 70svh; display: grid; place-items: center; text-align: center; }
.error-404 h1 { font-size: var(--step-6); }

.wp-caption-text, figcaption { font-size: var(--step--1); color: var(--text-on-dark-muted); margin-top: var(--space-2xs); }
.section--light figcaption { color: var(--text-on-light-muted); }

.alignleft { float: left; margin: 0 var(--space-m) var(--space-m) 0; }
.alignright { float: right; margin: 0 0 var(--space-m) var(--space-m); }
.aligncenter { margin-inline: auto; }
.sticky, .bypostauthor { position: relative; }
