/* ==========================================================================
   CSI Black Holding — site styles
   Palette: black / charcoal / ivory with champagne accents.
   ========================================================================== */

:root {
	--black: #0a0a0b;
	--charcoal: #131416;
	--charcoal-2: #1b1c1f;
	--ivory: #f4f1ea;
	--paper: #fbfaf7;
	--white: #fff;
	--ink: #151515;
	--ink-2: #3d3b37;
	--muted: #6e695f;
	--gold: #b8996a;
	--gold-light: #d4be94;
	--gold-deep: #7f6540;
	--line-light: rgba(21, 21, 21, .12);
	--line-dark: rgba(255, 255, 255, .12);

	--serif: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
	--sans: "Manrope", "Helvetica Neue", Arial, sans-serif;

	--container: 1240px;
	--gutter: clamp(20px, 4vw, 48px);
	--header-h: 88px;
	--ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 72px;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink-2);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-variant-numeric: lining-nums;
}

img,
svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

p { margin: 0 0 1.25em; }

h1, h2, h3, h4 {
	margin: 0;
	font-family: var(--serif);
	font-weight: 500;
	color: var(--ink);
	line-height: 1.1;
}

::selection { background: var(--gold); color: var(--black); }

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
}

.container {
	width: min(calc(100% - 2 * var(--gutter)), var(--container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -100px;
	z-index: 100;
	padding: 12px 18px;
	background: var(--gold);
	color: var(--black);
	font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ---------- Wordmark ---------- */

.wordmark {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	color: var(--white);
	line-height: 1;
}
.wordmark__name {
	font-family: var(--serif);
	font-weight: 600;
	font-size: 22px;
	letter-spacing: .24em;
	margin-right: -.24em;
}
.wordmark__rule {
	width: 100%;
	height: 1px;
	margin: 7px 0 6px;
	background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
	opacity: .8;
}
.wordmark__sub {
	font-family: var(--sans);
	font-weight: 600;
	font-size: 8.5px;
	letter-spacing: .56em;
	margin-right: -.56em;
	color: var(--gold-light);
}

/* ---------- Buttons ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 54px;
	padding: 0 30px;
	border: 1px solid transparent;
	border-radius: 0;
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	transition: background-color .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.btn .icon { width: 22px; height: 22px; transition: transform .35s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }

.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--gold-light); }

.btn--ghost { border-color: rgba(255, 255, 255, .34); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .06); }

.btn--line { border-color: rgba(255, 255, 255, .3); color: var(--white); }
.btn--line:hover { border-color: var(--gold); color: var(--gold-light); }

.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: var(--charcoal-2); }

.btn--sm { min-height: 40px; padding: 0 20px; font-size: 11px; }

/* ---------- Header ---------- */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	color: var(--white);
	transition: background-color .45s var(--ease), border-color .45s var(--ease), backdrop-filter .45s var(--ease);
	border-bottom: 1px solid transparent;
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

.site-header.is-scrolled,
.nav-open .site-header {
	background: rgba(10, 10, 11, .88);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-bottom-color: var(--line-dark);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
	transition: height .45s var(--ease);
}
.site-header.is-scrolled .site-header__inner { height: 72px; }

.brand { display: inline-flex; }

.primary-nav {
	display: flex;
	align-items: center;
	gap: 40px;
}
.nav-list {
	display: flex;
	gap: 34px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-list--desktop a {
	position: relative;
	display: inline-block;
	padding: 6px 0;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .78);
	transition: color .3s var(--ease);
}
.nav-list--desktop a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s var(--ease);
}
.nav-list--desktop a:hover { color: var(--white); }
.nav-list--desktop a:hover::after { transform: scaleX(1); }

.nav-toggle {
	display: none;
	position: relative;
	width: 44px;
	height: 44px;
	margin-right: -10px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--white);
	cursor: pointer;
}
.nav-toggle__bar {
	position: absolute;
	left: 11px;
	right: 11px;
	height: 1px;
	background: currentColor;
	transition: transform .4s var(--ease), top .4s var(--ease);
}
.nav-toggle__bar:nth-of-type(2) { top: 18px; }
.nav-toggle__bar:nth-of-type(3) { top: 26px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-of-type(2) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-of-type(3) { top: 22px; transform: rotate(-45deg); }

.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 40;
	background: var(--black);
	color: var(--white);
	overflow-y: auto;
	opacity: 0;
	transition: opacity .4s var(--ease);
}
.mobile-nav.is-open { opacity: 1; }
.mobile-nav__inner {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: calc(var(--header-h) + 32px) 0 40px;
}
.nav-list--mobile {
	flex-direction: column;
	gap: 0;
}
.nav-list--mobile a,
.mobile-nav__contact {
	display: block;
	padding: 14px 0;
	border-bottom: 1px solid var(--line-dark);
	font-family: var(--serif);
	font-size: clamp(1.9rem, 8vw, 2.6rem);
	font-weight: 500;
	line-height: 1.15;
	color: var(--white);
}
.mobile-nav__contact { color: var(--gold-light); }
.mobile-nav__meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: auto;
	padding-top: 40px;
	font-size: 14px;
	color: rgba(255, 255, 255, .6);
}
.nav-open { overflow: hidden; }

@media (max-width: 1080px) {
	.primary-nav { display: none; }
	.nav-toggle { display: block; }
}

/* ---------- Typography helpers ---------- */

.eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 28px;
	font-family: var(--sans);
	font-size: 11.5px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--gold-deep);
}
.eyebrow--light { color: var(--gold); }
.eyebrow__index {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: var(--serif);
	font-size: 16px;
	font-style: italic;
	font-weight: 500;
	letter-spacing: .04em;
}
.eyebrow__index::after {
	content: "";
	width: 40px;
	height: 1px;
	background: currentColor;
	opacity: .55;
}

.display {
	max-width: 18ch;
	text-wrap: balance;
	margin-bottom: 36px;
	font-size: clamp(2.25rem, 4.6vw, 4.1rem);
	line-height: 1.04;
	letter-spacing: -.01em;
}

.lead {
	max-width: 34ch;
	margin-bottom: 28px;
	font-family: var(--serif);
	font-size: clamp(1.35rem, 2vw, 1.7rem);
	font-weight: 500;
	line-height: 1.4;
	color: var(--ink);
}
.lead--light { color: var(--white); }

/* ---------- Sections ---------- */

.section {
	position: relative;
	padding: clamp(96px, 12vw, 176px) 0;
}
.section--tight { padding: clamp(64px, 8vw, 120px) 0; }
.section--ivory { background: var(--ivory); }
.section--paper { background: var(--paper); }
.section--dark {
	background: var(--charcoal);
	color: rgba(255, 255, 255, .66);
	overflow: hidden;
}
.section--dark h2,
.section--dark h3 { color: var(--white); }

.section :not(.prose) > p:not(.lead):not(.eyebrow) { max-width: 60ch; }

.section-head { margin-bottom: clamp(48px, 6vw, 80px); }
.section-head .display { margin-bottom: 0; }

/* ---------- Hero ---------- */

.hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 100vh;
	min-height: 100svh;
	background: var(--black);
	color: var(--white);
	overflow: hidden;
}
.hero__media {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	animation: hero-settle 14s var(--ease) both;
}
.hero__media--lines {
	background-image: url("../img/architecture-lines.svg");
	background-position: 62% 40%;
}
.hero__media--photo {
	filter: grayscale(1) contrast(1.08) brightness(.62);
	opacity: .6;
}
@keyframes hero-settle {
	from { transform: scale(1.06); }
	to { transform: scale(1); }
}
.hero__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(10, 10, 11, .9) 0%, rgba(10, 10, 11, .55) 48%, rgba(10, 10, 11, .1) 100%),
		linear-gradient(0deg, rgba(10, 10, 11, .96) 0%, rgba(10, 10, 11, 0) 42%),
		radial-gradient(120% 80% at 50% 0%, rgba(184, 153, 106, .08), transparent 60%);
}

.hero__inner {
	position: relative;
	padding-top: calc(var(--header-h) + 7vh);
	padding-bottom: clamp(108px, 14vh, 160px);
}
.hero__eyebrow { margin-bottom: 32px; }
.hero__eyebrow::before {
	content: "";
	width: 40px;
	height: 1px;
	background: currentColor;
	opacity: .6;
}
.hero__title {
	max-width: 14em;
	text-wrap: balance;
	font-size: clamp(2.6rem, 6.2vw, 5.9rem);
	font-weight: 500;
	line-height: .98;
	letter-spacing: .005em;
	text-transform: uppercase;
	color: var(--white);
}
.hero__title span { display: block; }
.hero__title-accent { color: var(--gold-light); }

.hero__lead {
	max-width: 38rem;
	margin: 36px 0 0;
	font-size: clamp(1rem, 1.3vw, 1.125rem);
	line-height: 1.75;
	color: rgba(255, 255, 255, .72);
}

.hero__sectors {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 0;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--gold);
}
.hero__sectors li { display: inline-flex; align-items: center; }
.hero__sectors li + li::before {
	content: "";
	width: 4px;
	height: 4px;
	margin: 0 18px;
	border-radius: 50%;
	background: currentColor;
	opacity: .7;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 48px;
}

.hero__foot {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 0 26px;
	border-top: 1px solid var(--line-dark);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .26em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .45);
}
.hero__scroll {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}
.hero__scroll::after {
	content: "";
	width: 1px;
	height: 28px;
	background: linear-gradient(var(--gold), transparent);
	animation: scroll-cue 2.4s var(--ease) infinite;
	transform-origin: top;
}
@keyframes scroll-cue {
	0% { transform: scaleY(0); opacity: 1; }
	60% { transform: scaleY(1); opacity: 1; }
	100% { transform: scaleY(1); opacity: 0; }
}

/* ---------- About ---------- */

.about {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
	gap: clamp(48px, 8vw, 128px);
	align-items: center;
}

.facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 56px 0 0;
	padding-top: 28px;
	border-top: 1px solid var(--line-light);
}
.facts dt {
	margin-bottom: 8px;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--muted);
}
.facts dd {
	margin: 0;
	font-family: var(--serif);
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.35;
	color: var(--ink);
}

.about__visual {
	position: relative;
	margin: 0;
	aspect-ratio: 4 / 5;
	background: var(--charcoal) url("../img/architecture-lines.svg") 22% 50% / cover no-repeat;
	overflow: hidden;
}
.about__visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1) contrast(1.05);
}
.about__visual::before {
	content: "";
	position: absolute;
	inset: 16px;
	z-index: 2;
	border: 1px solid rgba(212, 190, 148, .32);
	pointer-events: none;
}
.about__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(10, 10, 11, .85) 0%, rgba(10, 10, 11, .1) 55%);
}
.about__visual figcaption {
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: 40px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-family: var(--serif);
	font-size: clamp(1.3rem, 2vw, 1.6rem);
	font-weight: 500;
	line-height: 1.25;
	color: var(--white);
}
.about__visual figcaption span:nth-child(2) { color: var(--gold-light); }
.about__visual figcaption span:nth-child(3) { color: rgba(255, 255, 255, .6); }

/* ---------- Investment focus ---------- */

.focus {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--line-light);
	border-bottom: 1px solid var(--line-light);
}
.focus__card {
	position: relative;
	padding: 48px 40px 56px 0;
}
.focus__card + .focus__card {
	padding-left: 40px;
	border-left: 1px solid var(--line-light);
}
.focus__card::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .6s var(--ease);
}
.focus__card:hover::before { transform: scaleX(1); }
.focus__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 64px;
}
.focus__num {
	font-family: var(--serif);
	font-size: 1.15rem;
	font-style: italic;
	font-weight: 500;
	color: var(--gold-deep);
}
.focus__card .icon {
	width: 46px;
	height: 46px;
	color: var(--ink);
	transition: color .4s var(--ease), transform .6s var(--ease);
}
.focus__card:hover .icon { color: var(--gold-deep); transform: translateY(-3px); }
.focus__card h3 {
	margin-bottom: 18px;
	font-size: clamp(1.75rem, 2.4vw, 2.2rem);
}
.focus__card p {
	margin: 0;
	font-size: .98rem;
	color: var(--muted);
}

/* ---------- Approach ---------- */

.approach__lines {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 55%;
	background: url("../img/architecture-lines.svg") 70% 50% / cover no-repeat;
	opacity: .55;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 70%);
	mask-image: linear-gradient(90deg, transparent, #000 70%);
}
.approach .container { position: relative; }

.approach__title {
	font-size: clamp(2.6rem, 6.8vw, 6.4rem);
	line-height: 1;
	letter-spacing: -.01em;
}
.approach__title span { display: inline-block; margin-right: .18em; }
.approach__title i { font-style: normal; color: var(--gold); }

.approach__text {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(32px, 6vw, 96px);
	max-width: 1040px;
	margin: clamp(48px, 6vw, 72px) 0 clamp(72px, 9vw, 112px);
}
.approach__text p:last-child { margin-bottom: 0; }
.approach__text .lead { max-width: none; }

.steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--line-dark);
}
.steps__item { padding: 32px 32px 0 0; }
.steps__item + .steps__item {
	padding-left: 32px;
	border-left: 1px solid var(--line-dark);
}
.steps__num {
	font-family: var(--serif);
	font-size: 1rem;
	font-style: italic;
	color: var(--gold);
}
.steps__item h3 {
	margin: 20px 0 12px;
	font-size: clamp(1.6rem, 2.2vw, 2rem);
}
.steps__item p {
	margin: 0;
	font-size: .95rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, .6);
}

/* ---------- Photo band ---------- */

.photo-band {
	height: clamp(280px, 42vw, 560px);
	background-color: var(--charcoal);
	background-position: center;
	background-size: cover;
	filter: grayscale(1) contrast(1.05);
}

/* ---------- International ---------- */

.intl {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(32px, 6vw, 96px);
	align-items: end;
	margin-bottom: clamp(56px, 7vw, 96px);
}
.intl .display { margin-bottom: 0; }
.intl__text p:last-child { margin-bottom: 0; }

.world { margin: 0; }
.world__canvas { position: relative; }
.world__dots { width: 100%; height: auto; }
.world__arcs {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
}
.world__arcs path {
	fill: none;
	stroke: var(--gold);
	stroke-width: 1.2;
	stroke-linecap: round;
	vector-effect: non-scaling-stroke;
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	opacity: .85;
	transition: stroke-dashoffset 2.4s var(--ease);
}
.world__arcs circle {
	fill: var(--gold-deep);
	opacity: 0;
	transition: opacity .8s var(--ease);
}
.world.is-visible .world__arcs path { stroke-dashoffset: 0; }
.world.is-visible .world__arcs circle { opacity: .9; }
.world__arcs path:nth-of-type(2) { transition-delay: .25s; }
.world__arcs path:nth-of-type(3) { transition-delay: .5s; }
.world__arcs path:nth-of-type(4) { transition-delay: .75s; }
.world.is-visible .world__arcs circle { transition-delay: 1.8s; }

.world__hq {
	position: absolute;
	width: 0;
	height: 0;
}
.world__pulse {
	position: absolute;
	left: -6px;
	top: -6px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 0 3px var(--ivory);
}
.world__pulse::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid var(--gold);
	animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
	0% { transform: scale(1); opacity: .9; }
	100% { transform: scale(4.2); opacity: 0; }
}
.world__label {
	position: absolute;
	right: 20px;
	top: -30px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	white-space: nowrap;
	font-family: var(--serif);
	font-size: clamp(1.05rem, 1.6vw, 1.4rem);
	font-weight: 600;
	line-height: 1.1;
	color: var(--ink);
}
.world__label small {
	margin-top: 4px;
	font-family: var(--sans);
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--gold-deep);
}

.world__caption {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid var(--line-light);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--muted);
}

/* ---------- Contact ---------- */

.contact {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: clamp(48px, 8vw, 128px);
	align-items: start;
}
.contact--no-form { grid-template-columns: minmax(0, 1fr); max-width: 560px; }

.contact__address {
	display: flex;
	flex-direction: column;
	font-family: var(--serif);
	font-size: clamp(1.35rem, 2vw, 1.6rem);
	font-style: normal;
	font-weight: 500;
	line-height: 1.4;
	color: var(--ink);
}
.contact__address strong {
	margin-bottom: 14px;
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .24em;
	color: var(--ink);
}

.contact__list {
	margin: 44px 0 0;
	border-top: 1px solid var(--line-light);
}
.contact__list div {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid var(--line-light);
}
.contact__list dt {
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--muted);
}
.contact__list dd {
	margin: 0;
	font-family: var(--serif);
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--ink);
	text-align: right;
	overflow-wrap: anywhere;
}
.contact__list a { transition: color .3s var(--ease); }
.contact__list a:hover { color: var(--gold-deep); }
.contact__reg {
	margin-top: 16px;
	font-size: .88rem;
	color: var(--muted);
}

.form__hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 36px;
}
.field {
	display: block;
	margin-bottom: 34px;
}
.field__label {
	display: block;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--muted);
}
.field__label abbr {
	color: var(--gold-deep);
	text-decoration: none;
	border: 0;
}
.field input,
.field textarea {
	display: block;
	width: 100%;
	margin: 0;
	padding: 12px 0 10px;
	border: 0;
	border-bottom: 1px solid rgba(21, 21, 21, .24);
	border-radius: 0;
	background: transparent;
	font-family: var(--sans);
	font-size: 1rem;
	line-height: 1.5;
	color: var(--ink);
	transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
	-webkit-appearance: none;
	appearance: none;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field textarea:focus {
	outline: none;
	border-bottom-color: var(--gold-deep);
	box-shadow: 0 1px 0 var(--gold-deep);
}
.form__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 8px;
}
.form__note {
	max-width: 36ch;
	margin: 0;
	font-size: .85rem;
	line-height: 1.6;
	color: var(--muted);
}
.form__note a { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.form button[disabled] { opacity: .6; cursor: progress; }

.notice {
	margin-bottom: 36px;
	padding: 16px 20px;
	border-left: 2px solid;
	font-size: .95rem;
	line-height: 1.6;
	color: var(--ink);
}
.notice--ok { border-color: var(--gold-deep); background: rgba(184, 153, 106, .12); }
.notice--err { border-color: #9b3b3b; background: rgba(155, 59, 59, .07); }

/* ---------- Inner page hero ---------- */

.page-hero {
	position: relative;
	padding: calc(var(--header-h) + clamp(64px, 10vw, 140px)) 0 clamp(56px, 7vw, 100px);
	background: var(--black);
	color: rgba(255, 255, 255, .7);
	overflow: hidden;
}
.page-hero--full {
	display: flex;
	align-items: center;
	min-height: 100vh;
	min-height: 100svh;
}
.page-hero__lines {
	position: absolute;
	inset: 0;
	background: url("../img/architecture-lines.svg") 70% 60% / cover no-repeat;
	opacity: .7;
	-webkit-mask-image: linear-gradient(90deg, transparent 10%, #000 75%);
	mask-image: linear-gradient(90deg, transparent 10%, #000 75%);
}
.page-hero .container { position: relative; }
.page-hero__title {
	font-size: clamp(2.6rem, 6vw, 5rem);
	line-height: 1;
	color: var(--white);
}
.page-hero__lead {
	max-width: 44ch;
	margin: 24px 0 32px;
	font-size: 1.05rem;
}

/* ---------- Prose (legal pages) ---------- */

.prose {
	max-width: 760px;
	margin-inline: auto;
	color: var(--ink-2);
}
.prose h2 {
	margin: 56px 0 16px;
	font-size: clamp(1.6rem, 2.4vw, 2rem);
}
.prose h3 { margin: 36px 0 12px; font-size: 1.4rem; }
.prose > :first-child { margin-top: 0; }
.prose p,
.prose li { font-size: 1rem; line-height: 1.8; }
.prose ul,
.prose ol { margin: 0 0 1.25em; padding-left: 1.2em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--gold-deep); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a {
	color: var(--ink);
	text-decoration: underline;
	text-decoration-color: var(--gold);
	text-underline-offset: 3px;
	transition: color .3s var(--ease);
}
.prose a:hover { color: var(--gold-deep); }
.prose table,
.prose .wp-block-table table {
	width: 100%;
	margin: 8px 0 28px;
	border-collapse: collapse;
	font-size: .92rem;
	line-height: 1.6;
}
.prose th {
	padding: 12px 20px 12px 0;
	border-bottom: 1px solid rgba(21, 21, 21, .3);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .2em;
	text-align: left;
	text-transform: uppercase;
	color: var(--muted);
}
.prose td {
	padding: 14px 20px 14px 0;
	border-bottom: 1px solid var(--line-light);
	vertical-align: top;
}
.prose td:first-child { font-weight: 600; color: var(--ink); overflow-wrap: anywhere; }
.prose .legal-updated {
	margin-bottom: 40px;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--muted);
}
.entry + .entry { margin-top: 56px; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin-inline: auto; }

/* ---------- Footer ---------- */

.site-footer {
	padding: clamp(72px, 9vw, 112px) 0 40px;
	background: var(--black);
	color: rgba(255, 255, 255, .55);
	font-size: .9rem;
}
.site-footer__top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	padding-bottom: 56px;
	border-bottom: 1px solid var(--line-dark);
}
.site-footer__brand .wordmark { align-items: flex-start; }
.site-footer__brand .wordmark__rule { background: linear-gradient(90deg, var(--gold), var(--gold) 70%, transparent); }
.site-footer__brand p { margin: 24px 0 0; line-height: 1.7; }
.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 36px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-links a {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .78);
	transition: color .3s var(--ease);
}
.footer-links a:hover { color: var(--gold-light); }
.site-footer__bottom { padding-top: 32px; }
.site-footer__bottom p { margin: 0 0 6px; font-size: .82rem; }
.site-footer__bottom .sep { margin: 0 8px; opacity: .4; }
.site-footer__disclaimer { margin-top: 18px !important; color: rgba(255, 255, 255, .38); }

/* ---------- Reveal on scroll ---------- */

.js [data-reveal] {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.js [data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		transition-delay: 0s !important;
	}
	.js [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
	.about,
	.intl,
	.contact,
	.approach__text { grid-template-columns: minmax(0, 1fr); }

	.about__visual { aspect-ratio: 4 / 3; }

	.focus { grid-template-columns: minmax(0, 1fr); border-bottom: 0; }
	.focus__card,
	.focus__card + .focus__card {
		padding: 40px 0 44px;
		border-left: 0;
		border-bottom: 1px solid var(--line-light);
	}
	.focus__top { margin-bottom: 36px; }

	.steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.steps__item,
	.steps__item + .steps__item { padding: 28px 24px 32px 0; border-left: 0; }
	.steps__item:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line-dark); }
	.steps__item:nth-child(n+3) { border-top: 1px solid var(--line-dark); }

	.approach__lines { width: 100%; opacity: .3; }
}

@media (max-width: 640px) {
	:root { --header-h: 72px; }

	.wordmark__name { font-size: 19px; }
	.wordmark__sub { font-size: 7.5px; }

	.hero__inner { padding-bottom: 112px; }
	.hero__sectors { flex-direction: column; gap: 8px; }
	.hero__sectors li + li::before { display: none; }
	.hero__actions .btn { flex: 1 1 100%; }
	.hero__foot span:first-child { display: none; }
	.hero__foot { justify-content: flex-end; }

	.facts { grid-template-columns: minmax(0, 1fr); gap: 18px; }

	.form__row { grid-template-columns: minmax(0, 1fr); }
	.form__foot .btn { width: 100%; }

	.steps { grid-template-columns: minmax(0, 1fr); }
	.steps__item:nth-child(even) { padding-left: 0; border-left: 0; }
	.steps__item + .steps__item { border-top: 1px solid var(--line-dark); }

	.world { margin-inline: calc(-1 * var(--gutter)); overflow: hidden; }
	.world__canvas { width: 190%; margin-left: -45%; }
	.world__caption { flex-direction: column; gap: 6px; margin-inline: var(--gutter); }
	.world__label small { display: none; }
	.world__pulse { left: -4px; top: -4px; width: 8px; height: 8px; box-shadow: 0 0 0 2px var(--ivory); }
	.world__label { right: 12px; top: -20px; }

	.contact__list div { flex-direction: column; gap: 2px; }
	.contact__list dd { text-align: left; }

	.prose table,
	.prose thead,
	.prose tbody,
	.prose tr,
	.prose th,
	.prose td { display: block; }
	.prose thead { display: none; }
	.prose tr { padding: 14px 0; border-bottom: 1px solid var(--line-light); }
	.prose td { padding: 2px 0; border: 0; }

	.footer-links { flex-direction: column; gap: 12px; }
	.site-footer__bottom .sep { display: block; height: 0; overflow: hidden; }
	.site-footer__bottom p { line-height: 1.7; }
}
