/* ==========================================================================
   Meridian — institutional corporate group theme.
   Paper white + deep navy + brass/gold, crisp near-square corners, generous
   whitespace, hairline rules. The deliberate opposite of every prior theme
   in this line (all dark or warm-paper) — a cool, light, "annual report"
   material language built for scale and trust rather than studio flourish.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

:root {
	--paper:      oklch(98% 0.004 95);
	--paper-deep: oklch(95.5% 0.006 90);
	--surface:    oklch(100% 0 0);

	--navy:      oklch(24% 0.045 260);
	--navy-deep: oklch(14% 0.035 260);
	--navy-soft: oklch(32% 0.04 260);

	--ink:      oklch(24% 0.03 260);
	--ink-soft: oklch(42% 0.025 260);
	--ink-dim:  oklch(46% 0.02 260);
	--on-navy-dim: oklch(72% 0.02 260);
	--line:     oklch(24% 0.03 260 / .14);
	--line-strong: oklch(24% 0.03 260 / .28);

	--gold:      oklch(68% 0.12 78);
	--gold-deep: oklch(52% 0.1 70);
	--gold-glow: oklch(68% 0.12 78 / .45);

	--display: 'Newsreader', Georgia, 'Times New Roman', serif;
	--body-f:  'IBM Plex Sans', -apple-system, 'Segoe UI', sans-serif;
	--mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

	--radius: 2px;
	--radius-sm: 1px;
	--lw: 1px;
	--lw-2: 1.5px;
	--ease: cubic-bezier(.16,1,.3,1);
	--ease-spring: cubic-bezier(.34,1.56,.64,1);
	--container: 1320px;
	--gutter: clamp(20px, 4vw, 64px);
}

html, body { background: var(--paper); color: var(--ink); }
body {
	margin: 0;
	font-family: var(--body-f);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--navy); color: var(--paper); }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); position: relative; }

/* ── Type scale ── */
h1, h2, h3, h4, .display {
	font-family: var(--display);
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1.12;
	margin: 0;
	color: var(--navy);
}
.eyebrow {
	font-family: var(--mono);
	font-size: .78rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gold-deep);
	display: inline-flex;
	align-items: center;
	gap: .7em;
}
.eyebrow::before {
	content: '';
	width: 22px; height: 1px;
	background: var(--gold-deep);
	display: inline-block;
}

.lede {
	font-size: clamp(1.05rem, 1.3vw, 1.25rem);
	color: var(--ink-soft);
	max-width: 58ch;
}
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* ── Skip link ── */
.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
	height: 1px; margin: -1px; overflow: hidden; padding: 0;
	position: absolute; width: 1px; word-wrap: normal;
}
.skip-link.screen-reader-text:focus {
	background: var(--navy-deep); color: var(--paper);
	clip: auto; clip-path: none; height: auto; width: auto;
	padding: 14px 20px; left: var(--gutter); top: 14px;
	z-index: 2100; font-family: var(--mono); font-size: .85rem;
	border: var(--lw) solid var(--gold);
}

/* ── Panel utility — flat surface, hairline border, no blur/glow. ── */
.panel {
	background: var(--surface);
	border: var(--lw) solid var(--line);
	border-radius: var(--radius);
}

/* ==========================================================================
   Globe mount (assets/js/meridian-globe.js) — the radial gradient here is
   the permanent base layer AND the no-WebGL/no-JS fallback: the canvas,
   once it mounts, sits on top of it rather than replacing it.
   ========================================================================== */

.mrd-globe {
	position: relative;
	aspect-ratio: 1 / 1;
	max-width: 620px;
	margin-inline: auto;
	border-radius: 50%;
	background: radial-gradient(circle at 38% 32%, oklch(30% 0.05 260 / .12), transparent 62%), var(--paper-deep);
}
.mrd-globe__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
}

/* ==========================================================================
   Buttons / form base
   ========================================================================== */

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

.btn {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	padding: 13px 26px;
	border-radius: var(--radius);
	font-family: var(--body-f);
	font-size: .88rem;
	font-weight: 600;
	letter-spacing: .01em;
	white-space: nowrap;
	transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn--gold { background: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: var(--gold-deep); color: var(--paper); }
.btn--navy { background: var(--navy); color: var(--paper); }
.btn--navy:hover { background: var(--navy-deep); }
.btn--ghost { background: transparent; border: var(--lw) solid var(--line-strong); color: var(--navy); }
.btn--ghost:hover { border-color: var(--navy); }

/* ==========================================================================
   Header / nav
   ========================================================================== */

.site-head {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--paper);
	border-bottom: var(--lw) solid var(--line);
}

.site-head__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-block: 18px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--display);
	font-weight: 500;
	font-size: 1.3rem;
	letter-spacing: -0.01em;
	color: var(--navy);
	flex-shrink: 0;
}
.brand__mark { width: 30px; height: 30px; flex-shrink: 0; }

.nav-desktop { display: none; align-items: center; gap: 36px; }
@media (min-width: 981px) { .nav-desktop { display: flex; } }
.nav__list {
	display: flex;
	align-items: center;
	gap: 30px;
	list-style: none;
	margin: 0; padding: 0;
}
.nav__list a {
	font-size: .95rem;
	font-weight: 500;
	color: var(--ink-soft);
	position: relative;
	padding-bottom: 3px;
	border-bottom: var(--lw) solid transparent;
	transition: color .2s var(--ease), border-color .2s var(--ease);
}
.nav__list a:hover { color: var(--navy); border-color: var(--gold); }

.burger {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border: var(--lw) solid var(--line-strong);
	border-radius: var(--radius);
	flex-shrink: 0;
	color: var(--navy);
}
.burger svg { width: 18px; height: 18px; }
@media (min-width: 981px) { .burger { display: none; } }

/* ── Mobile menu popover — full-height navy panel sliding from the right,
   deliberately different material from the paper-white page chrome. ── */
#mrd-mobile-menu {
	position: fixed;
	inset: 0 0 0 auto;
	margin: 0;
	width: min(380px, 100vw);
	height: 100vh;
	max-height: none;
	padding: 32px;
	border: none;
	background: var(--navy-deep);
	color: var(--paper);
}
#mrd-mobile-menu::backdrop { background: oklch(14% 0.03 260 / .5); }
.mmenu__close {
	position: absolute;
	top: 24px; right: 24px;
	width: 38px; height: 38px;
	border: var(--lw) solid oklch(85% 0.02 260 / .3);
	border-radius: var(--radius);
	color: var(--paper);
	display: flex; align-items: center; justify-content: center;
}
.mmenu__close svg { width: 17px; height: 17px; }
.mmenu__list {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-direction: column;
	gap: 26px;
	margin-top: 80px;
}
.mmenu__list a {
	font-family: var(--display);
	font-size: 1.7rem;
	color: var(--paper);
}
.mmenu__list a:hover { color: var(--gold); }

/* The UA stylesheet's `[popover]{display:none}` only applies while closed;
   author styles win once matched, so `display` must be scoped to
   :popover-open — an unconditional `display:flex/block` here would render
   the menu even while closed. */
#mrd-mobile-menu:popover-open { display: block; }

@media (prefers-reduced-motion: no-preference) {
	#mrd-mobile-menu {
		transform: translateX(100%);
		transition: transform .35s var(--ease), overlay .35s allow-discrete, display .35s allow-discrete;
	}
	#mrd-mobile-menu:popover-open { transform: translateX(0); }
	@starting-style { #mrd-mobile-menu:popover-open { transform: translateX(100%); } }
}

/* ==========================================================================
   Contact dialog
   ========================================================================== */

dialog#mrd-contact {
	width: min(460px, calc(100vw - 40px));
	padding: 36px;
	border: var(--lw) solid var(--line-strong);
	border-radius: var(--radius);
	color: var(--ink);
}
dialog#mrd-contact::backdrop { background: oklch(14% 0.03 260 / .45); }
@media (prefers-reduced-motion: no-preference) {
	dialog#mrd-contact {
		opacity: 0;
		transform: translateY(12px);
		transition: opacity .3s var(--ease), transform .3s var(--ease), overlay .3s allow-discrete, display .3s allow-discrete;
	}
	dialog#mrd-contact[open] { opacity: 1; transform: translateY(0); }
	@starting-style { dialog#mrd-contact[open] { opacity: 0; transform: translateY(12px); } }
}
.dlg__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dlg__head h3 { font-size: 1.3rem; }
.dlg__close {
	width: 32px; height: 32px;
	border: var(--lw) solid var(--line-strong);
	border-radius: var(--radius);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.dlg__close svg { width: 15px; height: 15px; }
.dlg__body { display: flex; flex-direction: column; gap: 14px; }
.dlg__body input, .dlg__body textarea {
	width: 100%;
	padding: 12px 14px;
	background: var(--paper);
	border: var(--lw) solid var(--line-strong);
	border-radius: var(--radius-sm);
	resize: vertical;
}
.dlg__body input::placeholder, .dlg__body textarea::placeholder { color: var(--ink-dim); }
.dlg__body input:focus, .dlg__body textarea:focus { border-color: var(--navy); }
.dlg__status { font-size: .85rem; min-height: 1.2em; color: var(--gold-deep); }
.dlg__body.is-error .dlg__status { color: #a23b3b; }
.dlg__body button[type="submit"] { align-self: flex-start; }
.dlg__body.is-sending button[type="submit"] { opacity: .6; pointer-events: none; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-foot { margin-top: 120px; padding: 72px 0 28px; background: var(--navy-deep); color: var(--on-navy-dim); }
.foot-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 48px;
	border-bottom: var(--lw) solid oklch(85% 0.02 260 / .16);
}
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-brand { font-family: var(--display); font-size: 1.5rem; color: var(--paper); }
.foot-grid h4 {
	font-family: var(--mono);
	font-size: .75rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 16px;
	font-weight: 500;
}
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-grid a:hover { color: var(--paper); }
.foot-bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 24px;
	font-family: var(--mono);
	font-size: .78rem;
}

/* ==========================================================================
   Hero + facts bar
   ========================================================================== */

.hero { padding-block: clamp(64px, 10vw, 120px) 0; }
/* .hero__top, not .hero itself, is the globe's positioning container — it
   must stop at the bottom of the hero copy, or the (very large) absolutely
   positioned globe geometrically extends down over the facts band below
   and — despite sitting at a lower z-index — its own pointer-events:auto
   area still intercepts hover/tilt interaction on the fact cards under it. */
.hero__top { position: relative; overflow: hidden; }
.hero__inner { position: relative; z-index: 2; max-width: 640px; }
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-block: 20px 22px; }
.hero__sub { margin-bottom: 34px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Curtain-wipe title reveal — deliberately not the opacity/translateY used by
   the generic [data-reveal] system: a slow left-to-right clip-path draw-back
   reads as a grand unveiling rather than a UI element fading in, and stays
   in the "confident restraint" register rather than a playful one. Handled
   as its own data-title-reveal hook in meridian-fx.js so Motion's WAAPI
   animate() (built for opacity/transform) never touches it.
   The clip-path lives on the inner .hero__title-mask span, NOT on the
   [data-title-reveal] element itself: a browser factors an element's own
   clip-path into its IntersectionObserver ratio, so an element clipped to
   0% visible area can never self-report as "visible enough" to trigger the
   very reveal meant to un-hide it — the observed element must stay
   unclipped, with only a child carrying the clip-path. */
.hero__title-mask {
	display: inline-block;
	clip-path: inset(0 100% 0 0);
	transition: clip-path 1.1s cubic-bezier(.65,0,.35,1);
}
[data-title-reveal].is-in .hero__title-mask { clip-path: inset(0 0 0 0); }
@media (prefers-reduced-motion: reduce) {
	.hero__title-mask { clip-path: inset(0 0 0 0); transition: none; }
}

/* Signature hero visual — a large wireframe globe bleeding off the right
   edge, behind the copy. A left-to-right mask keeps it from ever competing
   with text contrast, and it never reflows layout since it's positioned out
   of the document flow entirely. */
.hero__globe-mount {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	/* The fade doesn't start until 44% of the hero's width — safely past
	   .hero__inner's 640px column (see below) with margin to spare even if
	   a Customizer edit makes the hero copy longer than the demo text. */
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 44%, rgba(0,0,0,.45) 58%, black 72%);
	mask-image: linear-gradient(90deg, transparent 0%, transparent 44%, rgba(0,0,0,.45) 58%, black 72%);
}
.hero__globe-mount .mrd-globe--hero {
	position: absolute;
	top: 50%;
	right: clamp(-180px, -8vw, -40px);
	margin-inline: 0;
	transform: translateY(-50%);
	width: min(66vw, 900px);
	max-width: none;
	aspect-ratio: 1 / 1;
	background: none;
	pointer-events: auto;
}
@media (max-width: 900px) {
	.hero__globe-mount { opacity: .55; }
	.hero__globe-mount .mrd-globe--hero { width: 110vw; right: -30vw; }
}

.hero__facts { position: relative; z-index: 2; margin-top: 64px; background: var(--navy-deep); }
.facts-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding-block: 40px;
}
@media (max-width: 760px) { .facts-bar { grid-template-columns: repeat(2, 1fr); } }
.fact { transition: transform .4s var(--ease); }
.fact__num { font-family: var(--display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.fact__label { font-family: var(--mono); font-size: .75rem; letter-spacing: .05em; text-transform: uppercase; color: var(--on-navy-dim); margin-top: 6px; }

/* ==========================================================================
   Gradient text + magnetic buttons + 3D tilt — signature interaction layer
   ========================================================================== */

.grad-text {
	background: linear-gradient(100deg, var(--navy) 0%, var(--gold-deep) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
/* On navy backgrounds the navy-to-gold gradient would vanish into the
   background itself — swap to a paper-to-gold gradient there instead. */
.hero__facts .grad-text, .section--navy .grad-text {
	background-image: linear-gradient(100deg, var(--paper) 0%, var(--gold) 100%);
}

.magnetic { will-change: transform; transition: transform .4s var(--ease-spring); }

[data-tilt] { transition: transform .35s var(--ease); }

/* ==========================================================================
   Section shell
   ========================================================================== */

.section { padding-block: 100px; }
.section--navy { background: var(--navy-deep); color: var(--on-navy-dim); }
.section--paper-deep { background: var(--paper-deep); }
.section-head { max-width: 620px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.section-head-row h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-top: 14px; }
.on-navy { color: var(--paper); }
.on-navy-lede { color: var(--on-navy-dim) !important; }
.eyebrow--on-navy { color: var(--gold); }
.eyebrow--on-navy::before { background: var(--gold); }

/* ==========================================================================
   Sector switcher (tabs + panel)
   ========================================================================== */

.sector-switcher { display: grid; grid-template-columns: 280px 1fr; gap: 0; border: var(--lw) solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 760px) { .sector-switcher { grid-template-columns: 1fr; } }
.sector-switcher__tabs { display: flex; flex-direction: column; background: var(--paper-deep); border-right: var(--lw) solid var(--line); }
@media (max-width: 760px) { .sector-switcher__tabs { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: var(--lw) solid var(--line); } }
.sector-tab {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 22px 24px;
	text-align: left;
	border-bottom: var(--lw) solid var(--line);
	white-space: nowrap;
}
.sector-tab__no { font-family: var(--mono); font-size: .78rem; color: var(--ink-dim); }
.sector-tab__name { font-family: var(--display); font-size: 1.05rem; color: var(--ink-soft); }
.sector-tab.is-active { background: var(--surface); border-left: 3px solid var(--gold); }
.sector-tab.is-active .sector-tab__name { color: var(--navy); }
.sector-tab:hover .sector-tab__name { color: var(--navy); }

.sector-switcher__panels { position: relative; background: var(--surface); }
.sector-panel {
	display: none;
	grid-template-columns: 180px 1fr;
	gap: 32px;
	padding: 44px;
}
.sector-panel.is-active { display: grid; }
@media (max-width: 600px) { .sector-panel { grid-template-columns: 1fr; padding: 32px 24px; } }
.sector-panel__stat-num { font-size: 2.6rem; color: var(--gold-deep); }
.sector-panel__stat-label { font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-dim); margin-top: 6px; }
.sector-panel__body h3 { font-size: 1.3rem; margin-bottom: 12px; }
.sector-panel__body p { color: var(--ink-soft); }

/* ==========================================================================
   Global presence
   ========================================================================== */

.global-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .global-grid { grid-template-columns: 1fr; } }
.office-list { list-style: none; margin: 28px 0 0; padding: 0; columns: 2; gap: 20px; }
.office-list li { font-family: var(--mono); font-size: .88rem; padding-block: 6px; border-bottom: var(--lw) solid oklch(85% 0.02 260 / .16); color: var(--paper); }

/* ==========================================================================
   Chairman's letter (statement)
   ========================================================================== */

.statement { padding-block: 120px; }
.statement__quote { font-size: clamp(1.6rem, 3.4vw, 2.6rem); font-style: italic; font-weight: 400; max-width: 20ch; margin-top: 20px; }
.statement__attr { margin-top: 32px; }
.statement__name { font-weight: 600; color: var(--navy); }
.statement__title { font-family: var(--mono); font-size: .82rem; color: var(--ink-dim); margin-top: 4px; }

/* ==========================================================================
   Financial / ESG metrics
   ========================================================================== */

.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 56px; }
@media (max-width: 760px) { .metric-grid { grid-template-columns: 1fr; } }
.metric__bar { height: 6px; background: var(--line); border-radius: 3px; overflow: hidden; margin-bottom: 14px; }
.metric__fill { height: 100%; width: var(--fill); background: linear-gradient(90deg, var(--gold-deep), var(--gold)); }
.metric__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.metric__row span:first-child { color: var(--ink-soft); font-size: .92rem; }
.metric__val { font-family: var(--display); font-size: 1.4rem; color: var(--navy); flex-shrink: 0; }

/* ==========================================================================
   Press list (news)
   ========================================================================== */

.press-list { display: flex; flex-direction: column; }
.press-row {
	display: grid;
	grid-template-columns: 140px 1fr auto;
	gap: 24px;
	align-items: baseline;
	padding-block: 22px;
	border-bottom: var(--lw) solid var(--line);
}
.press-row time { font-family: var(--mono); font-size: .8rem; color: var(--ink-dim); }
.press-row__title { font-family: var(--display); font-size: 1.15rem; color: var(--navy); }
.press-row:hover .press-row__title { color: var(--gold-deep); }
.press-row__sector { font-family: var(--mono); font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-dim); }
@media (max-width: 640px) { .press-row { grid-template-columns: 1fr; gap: 6px; } }

/* ==========================================================================
   Careers band
   ========================================================================== */

.careers-band { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.careers-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 14px; max-width: 26ch; }
.careers-band .lede { margin-top: 16px; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band { text-align: center; border-top: var(--lw) solid var(--line); }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 32px; max-width: 20ch; margin-inline: auto; }
.cta-band .btn { margin-inline: auto; }

/* ==========================================================================
   Reveal-on-scroll base state — meridian-fx.js toggles .is-in via
   Motion.inView (matching the [data-reveal] convention across this line).
   ========================================================================== */

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: translateY(0); }
html.mrd-motion-on [data-reveal] { transition: none; }
@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Inner-page shell — page-hero / prose / single / pagination / comments
   ========================================================================== */

.page-hero { padding-block: clamp(48px, 8vw, 96px) clamp(36px, 6vw, 64px); }
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); max-width: 24ch; margin-top: 18px; }
.page-hero .lede { margin-top: 20px; }

.single__dateline { font-family: var(--mono); font-size: .85rem; color: var(--ink-dim); margin-top: 16px; }
.single__media { margin-block: 32px; border-radius: var(--radius); overflow: hidden; }
.single__tags { margin-top: 32px; display: flex; gap: 10px; flex-wrap: wrap; }
.single__tags a { font-family: var(--mono); font-size: .78rem; text-transform: uppercase; padding: 5px 12px; border: var(--lw) solid var(--line-strong); border-radius: var(--radius); color: var(--ink-soft); }
.single__tags a:hover { border-color: var(--navy); color: var(--navy); }
.page-links { font-family: var(--mono); font-size: .85rem; color: var(--ink-dim); }

.prose { max-width: 72ch; font-size: 1.08rem; line-height: 1.75; color: var(--ink); }
.prose > * + * { margin-top: 1.3em; }
.prose h2 { font-size: 1.7rem; margin-top: 2em; }
.prose h3 { font-size: 1.3rem; margin-top: 1.8em; }
.prose a { text-decoration: underline; text-decoration-color: var(--gold-deep); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.prose strong { font-weight: 600; }
.prose blockquote { border-left: 2px solid var(--gold); padding-left: 20px; font-style: italic; color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose img { border-radius: var(--radius); }
.prose code { font-family: var(--mono); background: var(--paper-deep); color: var(--navy); padding: .15em .4em; border-radius: 2px; }
.prose .wp-caption { max-width: 100%; margin-bottom: 1.3em; }
.prose .wp-caption-text { font-family: var(--mono); font-size: .8rem; color: var(--ink-dim); text-align: center; margin-top: .5em; }
.prose .gallery-caption { font-family: var(--mono); font-size: .76rem; color: var(--ink-dim); text-align: center; }
.prose .alignleft { float: left; margin: 0 24px 12px 0; }
.prose .alignright { float: right; margin: 0 0 12px 24px; }
.prose .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.prose .bypostauthor { border-left: 2px solid var(--gold); padding-left: 14px; }
.press-row.sticky .press-row__title::after { content: ' ★'; color: var(--gold-deep); }

.pager, .navigation.pagination { display: flex; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.pager .page-numbers, .navigation.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 38px; height: 38px; padding-inline: 10px;
	border: var(--lw) solid var(--line-strong);
	border-radius: var(--radius);
	font-family: var(--mono); font-weight: 500; font-size: .85rem;
	color: var(--ink-soft);
}
.pager .page-numbers.current, .navigation.pagination .page-numbers.current { border-color: var(--navy); color: var(--navy); background: var(--paper-deep); }

.comments { margin-top: 24px; }
.comments__title { font-size: 1.4rem; margin-bottom: 24px; }
.comment-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.comment-list .children { list-style: none; margin-top: 20px; padding-left: 28px; border-left: var(--lw) solid var(--line); }
.comment-list article { padding: 18px; border: var(--lw) solid var(--line); border-radius: var(--radius); }
.comment-form p { margin-top: 14px; }
.comment-form input, .comment-form textarea {
	width: 100%; border: var(--lw) solid var(--line-strong); border-radius: var(--radius-sm); padding: 12px 14px; background: var(--surface); color: var(--ink); font-family: var(--body-f);
}
.comment-form label { font-family: var(--mono); font-size: .78rem; text-transform: uppercase; display: block; margin-bottom: 6px; color: var(--ink-dim); }

.search-form { display: flex; border: var(--lw) solid var(--line-strong); border-radius: var(--radius); overflow: hidden; }
.search-form__input { flex: 1; border: none; padding: 14px 16px; background: transparent; color: var(--ink); font-family: var(--body-f); }
.search-form__input:focus { outline: none; }
.search-form__input::placeholder { color: var(--ink-dim); }
.search-form__submit { border: none; border-left: var(--lw) solid var(--line-strong); background: transparent; color: var(--navy); padding: 0 20px; font-weight: 600; }

@media (prefers-contrast: more) {
	:root { --ink-soft: var(--ink); --line: var(--line-strong); }
}

/* --- Section dropdown (nav) — theme-agnostic, added --- */
li:has(> .sub-menu){ position: relative; }
.sub-menu{ position:absolute; top:100%; left:0; min-width:210px; margin:12px 0 0; padding:8px; list-style:none; background:rgba(18,18,24,.97); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.14); border-radius:12px; box-shadow:0 26px 60px -26px rgba(0,0,0,.75); display:none; z-index:500; }
li:hover > .sub-menu, li:focus-within > .sub-menu{ display:block; }
.sub-menu li{ margin:0; padding:0; list-style:none; }
.sub-menu a{ display:block; padding:.55em .85em; border-radius:7px; color:#f2f2f5 !important; white-space:nowrap; font-size:.9rem; text-transform:none !important; letter-spacing:normal !important; opacity:1 !important; }
.sub-menu a::before, .sub-menu a::after{ display:none !important; content:none !important; }
.sub-menu a:hover{ background:rgba(255,255,255,.13); color:#fff !important; }
