/* ==========================================================================
   BURUMBIO CONFERENCE — main stylesheet
   --------------------------------------------------------------------------
   1.  Tokens
   2.  Reset & base
   3.  Layout primitives
   4.  Typography
   5.  Buttons
   6.  Header & navigation
   7.  Hero
   8.  Sections & components
   9.  Form
   10. Footer & sticky CTA
   11. Motion
   12. Utilities & WordPress core classes
   ========================================================================== */

/* 1. TOKENS ================================================================ */

:root {
	/* Ink — a warm near-black rather than pure black. Pure black reads cheap
	   on OLED phones and crushes the video edges. */
	--ink-900: #0b0b0c;
	--ink-800: #121214;
	--ink-700: #17171a;
	--ink-600: #1e1e22;
	--ink-500: #2a2a2f;

	/* Paper */
	--paper-100: #ffffff;
	--paper-200: #faf9f7;
	--paper-300: #f2f0ec;
	--paper-400: #e6e3dd;

	/* Type colour */
	--text-on-dark: #f4f3f1;
	--text-on-dark-dim: #a3a29f;
	--text-on-dark-faint: #6f6e6c;
	--text-on-light: #16161a;
	--text-on-light-dim: #5c5b58;

	/* Accent — a single restrained warm signal. Used on rules, numbers,
	   eyebrows and hover states only. Never as a large fill. */
	--accent: #c9a227;
	--accent-soft: rgba(201, 162, 39, 0.16);

	--hairline-dark: rgba(244, 243, 241, 0.12);
	--hairline-light: rgba(22, 22, 26, 0.12);

	/* Type */
	--font-display: "Schibsted Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

	/* Fluid type scale — clamp(min, preferred, max) */
	--fs-eyebrow: 0.6875rem;
	--fs-small: 0.8125rem;
	--fs-body: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
	--fs-lede: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
	--fs-h3: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
	--fs-h2: clamp(1.875rem, 1.4rem + 2.1vw, 3.25rem);
	--fs-h1: clamp(2.5rem, 1.5rem + 4.4vw, 5.75rem);
	--fs-metric: clamp(1.75rem, 1.3rem + 1.9vw, 2.75rem);

	/* Space */
	--gutter: clamp(1.25rem, 4vw, 2.5rem);
	--section-y: clamp(4.5rem, 9vw, 9.5rem);
	--max-w: 1320px;
	--max-w-narrow: 820px;

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

/* 2. RESET & BASE ========================================================== */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
	margin: 0;
	background: var(--paper-200);
	color: var(--text-on-light);
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: 1.6;
	font-synthesis-weight: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

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

h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }

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

button, input, select, textarea { font: inherit; color: inherit; }

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

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

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	padding: 12px 20px;
	background: var(--ink-900);
	color: var(--text-on-dark);
	font-size: var(--fs-small);
}
.skip-link:focus { left: 8px; top: 8px; }

.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;
}

/* 3. LAYOUT ================================================================ */

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

.section {
	position: relative;
	padding-block: var(--section-y);
	background: var(--paper-200);
	color: var(--text-on-light);
}

.section + .section { border-top: 1px solid var(--hairline-light); }

.section--dark {
	background: var(--ink-900);
	color: var(--text-on-dark);
	border-top-color: transparent !important;
}
.section--dark + .section--dark { border-top: 1px solid var(--hairline-dark); }

.section--cta {
	background: var(--ink-900);
	color: var(--text-on-dark);
	border-top-color: transparent !important;
}

.section__head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section__head--center { margin-inline: auto; text-align: center; }

.section__intro {
	margin-top: 1.25rem;
	font-size: var(--fs-lede);
	line-height: 1.5;
	color: var(--text-on-light-dim);
	text-wrap: pretty;
}
.section--dark .section__intro,
.section--cta .section__intro { color: var(--text-on-dark-dim); }

.section__outro {
	margin-top: clamp(2rem, 4vw, 3rem);
	max-width: 58ch;
	color: var(--text-on-light-dim);
	font-size: var(--fs-small);
}
.section--dark .section__outro { color: var(--text-on-dark-dim); }

/* Two-column lead/body split */
.split {
	display: grid;
	gap: clamp(2rem, 5vw, 5rem);
	grid-template-columns: 1fr;
	align-items: start;
}
@media (min-width: 900px) {
	.split { grid-template-columns: 1.05fr 1fr; gap: clamp(3rem, 7vw, 7rem); }
}

.split__lead { position: relative; }
@media (min-width: 900px) {
	.split__lead { position: sticky; top: calc(var(--header-h) + 3rem); }
}

.split__body > * + * { margin-top: 1.5rem; }

/* 4. TYPOGRAPHY ============================================================ */

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.7em;
	font-size: var(--fs-eyebrow);
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-on-light-dim);
	margin-bottom: 1.5rem;
}
.eyebrow::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--accent);
	flex: none;
}
.section--dark .eyebrow,
.eyebrow--light { color: var(--text-on-dark-dim); }

.h2 {
	font-family: var(--font-display);
	font-size: var(--fs-h2);
	font-weight: 500;
	line-height: 1.06;
	letter-spacing: -0.028em;
	text-wrap: balance;
}
.h2--display { letter-spacing: -0.034em; }

.lede {
	font-size: var(--fs-lede);
	line-height: 1.55;
	color: var(--text-on-light-dim);
	text-wrap: pretty;
}
.section--dark .lede,
.section--cta .lede { color: var(--text-on-dark-dim); }

.pullquote {
	margin-top: clamp(3rem, 6vw, 5rem);
	padding-top: clamp(2rem, 4vw, 3rem);
	border-top: 1px solid var(--hairline-light);
	font-family: var(--font-display);
	font-size: clamp(1.375rem, 1rem + 1.6vw, 2.125rem);
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: -0.022em;
	max-width: 30ch;
	text-wrap: balance;
}
.section--dark .pullquote { border-top-color: var(--hairline-dark); }

/* 5. BUTTONS =============================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.65em;
	padding: 0.95em 1.55em;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-size: var(--fs-small);
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
		border-color 0.25s var(--ease), transform 0.25s var(--ease);
	white-space: nowrap;
}

.btn__arrow {
	display: inline-block;
	transition: transform 0.3s var(--ease);
	font-size: 0.95em;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
	background: var(--paper-100);
	color: var(--ink-900);
	border-color: var(--paper-100);
}
.btn--primary:hover { background: var(--accent); border-color: var(--accent); color: var(--ink-900); }

.section:not(.section--dark):not(.section--cta) .btn--primary {
	background: var(--ink-900);
	color: var(--paper-100);
	border-color: var(--ink-900);
}
.section:not(.section--dark):not(.section--cta) .btn--primary:hover {
	background: var(--accent); border-color: var(--accent); color: var(--ink-900);
}

.btn--ghost {
	background: transparent;
	color: var(--text-on-dark);
	border-color: rgba(244, 243, 241, 0.32);
}
.btn--ghost:hover { border-color: var(--text-on-dark); background: rgba(244, 243, 241, 0.07); }

.btn--submit { padding: 1.05em 2rem; }
.btn[disabled] { opacity: 0.55; pointer-events: none; }

/* 6. HEADER ================================================================ */

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	height: var(--header-h);
	display: flex;
	align-items: center;
	background: transparent;
	transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease),
		backdrop-filter 0.35s var(--ease);
	border-bottom: 1px solid transparent;
}

.site-header.is-stuck {
	background: rgba(11, 11, 12, 0.82);
	backdrop-filter: saturate(150%) blur(14px);
	-webkit-backdrop-filter: saturate(150%) blur(14px);
	border-bottom-color: var(--hairline-dark);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 3vw, 2.75rem);
}

.brand {
	display: flex;
	align-items: baseline;
	gap: 0.85rem;
	color: var(--text-on-dark);
	flex: none;
}
.brand .custom-logo { max-height: 26px; width: auto; }

.brand__mark {
	font-family: var(--font-display);
	font-size: 1.0625rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.brand__descriptor {
	font-size: 0.625rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-on-dark-faint);
	padding-left: 0.85rem;
	border-left: 1px solid var(--hairline-dark);
}
@media (max-width: 1080px) { .brand__descriptor { display: none; } }

.nav { margin-left: auto; }
@media (max-width: 900px) { .nav { display: none; } }

.nav__list { display: flex; gap: clamp(1.25rem, 2.4vw, 2.25rem); }

.nav__list a {
	position: relative;
	font-size: var(--fs-small);
	color: var(--text-on-dark-dim);
	transition: color 0.2s var(--ease);
	padding-block: 0.4rem;
}
.nav__list a::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 100%; height: 1px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--ease);
}
.nav__list a:hover { color: var(--text-on-dark); }
.nav__list a:hover::after { transform: scaleX(1); }

.site-header__actions { margin-left: clamp(1rem, 2vw, 2rem); }
@media (max-width: 900px) { .site-header__actions { display: none; } }
@media (max-width: 900px) { .nav { margin-left: auto; } }

/* Mobile nav */
.nav-toggle {
	display: none;
	margin-left: auto;
	background: none;
	border: 0;
	padding: 10px;
	cursor: pointer;
	color: var(--text-on-dark);
}
@media (max-width: 900px) { .nav-toggle { display: block; } }

.nav-toggle__box { display: block; width: 24px; }
.nav-toggle__bar {
	display: block;
	height: 1.5px;
	background: currentColor;
	transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__bar + .nav-toggle__bar { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-nav {
	position: fixed;
	inset: var(--header-h) 0 0 0;
	z-index: 99;
	background: var(--ink-900);
	padding-block: clamp(2rem, 8vw, 4rem);
	overflow-y: auto;
	color: var(--text-on-dark);
}
.mobile-nav[hidden] { display: none; }

.mobile-nav__list { margin-bottom: 2.5rem; }
.mobile-nav__list li + li { border-top: 1px solid var(--hairline-dark); }
.mobile-nav__list a {
	display: block;
	padding: 1.05rem 0;
	font-family: var(--font-display);
	font-size: 1.375rem;
	letter-spacing: -0.02em;
}
.mobile-nav__email {
	display: block;
	margin-top: 1.75rem;
	font-size: var(--fs-small);
	color: var(--text-on-dark-dim);
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* 7. HERO ================================================================== */

.hero {
	position: relative;
	min-height: min(90svh, 880px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-top: calc(var(--header-h) + clamp(3rem, 10vh, 7rem));
	background: var(--ink-900);
	color: var(--text-on-dark);
	overflow: hidden;
	isolation: isolate;
}

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

.hero__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, var(--ink-900) 0%, rgba(11, 11, 12, 0.55) 42%, rgba(11, 11, 12, 0.72) 100%),
		linear-gradient(to right, rgba(11, 11, 12, 0.85) 0%, rgba(11, 11, 12, 0.2) 65%);
}

.hero__inner { padding-bottom: clamp(3rem, 7vw, 5.5rem); }

.hero__title {
	font-family: var(--font-display);
	font-size: var(--fs-h1);
	font-weight: 500;
	line-height: 0.96;
	letter-spacing: -0.042em;
	max-width: 17ch;
	text-wrap: balance;
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.hero__lede {
	font-size: var(--fs-lede);
	line-height: 1.5;
	color: var(--text-on-dark-dim);
	max-width: 56ch;
	text-wrap: pretty;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: clamp(2rem, 4vw, 3rem);
}

.hero__credibility {
	margin-top: clamp(2rem, 4vw, 3rem);
	font-size: var(--fs-small);
	color: var(--text-on-dark-faint);
	max-width: 46ch;
}

.hero__strip {
	border-top: 1px solid var(--hairline-dark);
	padding-block: 1.35rem;
	background: rgba(11, 11, 12, 0.6);
}

.logo-strip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(1.5rem, 4vw, 3.5rem);
}
.logo-strip__item {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--text-on-dark-faint);
}

/* 8. COMPONENTS ============================================================ */

/* Outputs list (Opportunity) */
.outputs {
	margin-top: clamp(3rem, 6vw, 5rem);
	padding-top: clamp(2rem, 4vw, 3rem);
	border-top: 1px solid var(--hairline-dark);
}
.outputs__label {
	font-size: var(--fs-eyebrow);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-on-dark-faint);
	margin-bottom: 1.75rem;
}
.outputs__list {
	display: grid;
	gap: 0;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.outputs__item {
	font-family: var(--font-display);
	font-size: var(--fs-h3);
	font-weight: 400;
	letter-spacing: -0.02em;
	padding: 1.1rem 1.5rem 1.1rem 0;
	border-top: 1px solid var(--hairline-dark);
}

/* Service cards */
.cards {
	display: grid;
	gap: 1px;
	grid-template-columns: 1fr;
	background: var(--hairline-light);
	border-block: 1px solid var(--hairline-light);
}
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
	background: var(--paper-200);
	padding: clamp(1.75rem, 3vw, 2.75rem);
	transition: background-color 0.35s var(--ease);
}
.card:hover { background: var(--paper-300); }

.card__rule {
	display: block;
	width: 26px;
	height: 1px;
	background: var(--accent);
	margin-bottom: 2.25rem;
	transition: width 0.4s var(--ease);
}
.card:hover .card__rule { width: 52px; }

.card__number {
	display: block;
	font-size: var(--fs-eyebrow);
	letter-spacing: 0.14em;
	color: var(--accent);
	margin-bottom: 1.5rem;
}

.card__title {
	font-family: var(--font-display);
	font-size: var(--fs-h3);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin-bottom: 0.85rem;
}

.card__body { font-size: var(--fs-small); line-height: 1.65; color: var(--text-on-light-dim); }

/* Ledger (sample program) */
.ledger {
	max-width: 900px;
	margin-inline: auto;
	border-top: 1px solid var(--hairline-dark);
}
.ledger__row {
	display: grid;
	grid-template-columns: 5.5rem 1fr;
	gap: 0.35rem 1.5rem;
	align-items: baseline;
	padding-block: clamp(1.25rem, 2.5vw, 1.85rem);
	border-bottom: 1px solid var(--hairline-dark);
}
@media (min-width: 760px) {
	.ledger__row { grid-template-columns: 8.5rem minmax(0, 18rem) 1fr; }
}

.ledger__metric {
	font-family: var(--font-display);
	font-size: var(--fs-metric);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--accent);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}
.ledger__label {
	font-family: var(--font-display);
	font-size: var(--fs-h3);
	font-weight: 500;
	letter-spacing: -0.018em;
	grid-column: 2;
}
.ledger__note {
	font-size: var(--fs-small);
	color: var(--text-on-dark-faint);
	grid-column: 2;
}
@media (min-width: 760px) {
	.ledger__note { grid-column: 3; text-align: left; }
}

.program__outro {
	max-width: 620px;
	margin: clamp(3rem, 5vw, 4rem) auto 0;
	text-align: center;
}
.program__note {
	margin-top: 1.25rem;
	font-size: var(--fs-small);
	color: var(--text-on-dark-faint);
}
.program__outro .btn { margin-top: 2.25rem; }

/* Reasons grid */
.reasons {
	display: grid;
	gap: clamp(2rem, 3.5vw, 3rem) clamp(2rem, 4vw, 4rem);
	grid-template-columns: 1fr;
}
@media (min-width: 700px) { .reasons { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .reasons { grid-template-columns: repeat(3, 1fr); } }

.reasons__item { padding-top: 1.35rem; border-top: 1px solid var(--hairline-light); }
.section--dark .reasons__item { border-top-color: var(--hairline-dark); }

.reasons__title {
	font-family: var(--font-display);
	font-size: 1.0625rem;
	font-weight: 600;
	letter-spacing: -0.012em;
	margin-bottom: 0.6rem;
}
.reasons__body { font-size: var(--fs-small); line-height: 1.65; color: var(--text-on-light-dim); }
.section--dark .reasons__body { color: var(--text-on-dark-dim); }

/* Award + logos */
.award {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 2rem;
	font-size: var(--fs-small);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
}
.award__rule { width: 34px; height: 1px; background: var(--accent); flex: none; }

.logos {
	margin-top: clamp(3.5rem, 7vw, 6rem);
	padding-top: clamp(2rem, 4vw, 3rem);
	border-top: 1px solid var(--hairline-dark);
}
.logos__label {
	font-size: var(--fs-eyebrow);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-on-dark-faint);
	margin-bottom: 2.25rem;
}
.logos__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(1.75rem, 3.5vw, 3rem);
	align-items: center;
}
@media (min-width: 620px) { .logos__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .logos__grid { grid-template-columns: repeat(6, 1fr); } }

.logos__item { display: flex; align-items: center; justify-content: center; min-height: 34px; }
.logos__item img {
	max-height: 30px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.55;
	transition: opacity 0.3s var(--ease);
}
.logos__item:hover img { opacity: 0.95; }

.logos__wordmark {
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--text-on-dark-dim);
	text-align: center;
}

/* Conference list */
.conference-list { border-top: 1px solid var(--hairline-light); }
.conference-list__row { border-bottom: 1px solid var(--hairline-light); }

.conference-list__link {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: baseline;
	gap: 0.35rem 1.5rem;
	padding-block: clamp(1.15rem, 2.4vw, 1.75rem);
	transition: padding-inline 0.35s var(--ease), background-color 0.35s var(--ease);
}
@media (min-width: 700px) {
	.conference-list__link { grid-template-columns: minmax(0, 22rem) 1fr auto; }
}
a.conference-list__link:hover {
	padding-inline: 1.25rem;
	background: var(--paper-300);
}

.conference-list__name {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 0.95rem + 1.1vw, 1.875rem);
	font-weight: 500;
	letter-spacing: -0.026em;
	line-height: 1.1;
}
.conference-list__sector {
	font-size: var(--fs-small);
	color: var(--text-on-light-dim);
	grid-column: 1;
}
@media (min-width: 700px) { .conference-list__sector { grid-column: 2; } }

.conference-list__arrow {
	grid-row: 1;
	grid-column: -1;
	color: var(--accent);
	transition: transform 0.3s var(--ease);
}
a.conference-list__link:hover .conference-list__arrow { transform: translateX(5px); }

/* Process */
.process { counter-reset: step; max-width: 900px; }
.process__step {
	display: grid;
	grid-template-columns: 3.25rem 1fr;
	gap: 0 clamp(1.25rem, 3vw, 2.5rem);
	padding-block: clamp(1.5rem, 3vw, 2.25rem);
	border-top: 1px solid var(--hairline-dark);
}
.process__step:last-child { border-bottom: 1px solid var(--hairline-dark); }

.process__num {
	font-family: var(--font-display);
	font-size: var(--fs-small);
	letter-spacing: 0.1em;
	color: var(--accent);
	padding-top: 0.35rem;
}
.process__title {
	font-family: var(--font-display);
	font-size: var(--fs-h3);
	font-weight: 500;
	letter-spacing: -0.02em;
	margin-bottom: 0.55rem;
}
.process__body { font-size: var(--fs-small); line-height: 1.65; color: var(--text-on-dark-dim); max-width: 62ch; }

/* FAQ */
.faq { border-top: 1px solid var(--hairline-light); }
.faq__item { border-bottom: 1px solid var(--hairline-light); }

.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: 1.4rem;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-display);
	font-size: var(--fs-h3);
	font-weight: 500;
	letter-spacing: -0.018em;
	line-height: 1.25;
}
.faq__q::-webkit-details-marker { display: none; }

.faq__icon { position: relative; width: 13px; height: 13px; flex: none; }
.faq__icon::before, .faq__icon::after {
	content: "";
	position: absolute;
	inset: 50% 0 auto 0;
	height: 1px;
	background: var(--accent);
	transition: transform 0.3s var(--ease);
}
.faq__icon::after { transform: rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: rotate(0deg); }

.faq__a { padding-bottom: 1.5rem; max-width: 68ch; }
.faq__a p { font-size: var(--fs-small); line-height: 1.7; color: var(--text-on-light-dim); }

/* 9. FORM ================================================================== */

.cta-grid {
	display: grid;
	gap: clamp(2.5rem, 6vw, 5.5rem);
	grid-template-columns: 1fr;
	align-items: start;
}
@media (min-width: 960px) { .cta-grid { grid-template-columns: 1fr 1.05fr; } }

.cta-grid__direct { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.cta-grid__direct li {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 1rem;
	padding-block: 0.9rem;
	border-top: 1px solid var(--hairline-dark);
	font-size: var(--fs-small);
}
.cta-grid__direct span { color: var(--text-on-dark-faint); min-width: 8rem; }
.cta-grid__direct a {
	color: var(--text-on-dark);
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-underline-offset: 5px;
	text-decoration-thickness: 1px;
}
.cta-grid__direct a:hover { color: var(--accent); }

.lead-form {
	background: var(--ink-800);
	border: 1px solid var(--hairline-dark);
	border-radius: var(--radius);
	padding: clamp(1.5rem, 3.5vw, 2.75rem);
}

.field-row { display: grid; gap: 0 1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.field { margin-bottom: 1.4rem; border: 0; padding: 0; }

.field label, .field legend {
	display: block;
	font-size: var(--fs-eyebrow);
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--text-on-dark-faint);
	margin-bottom: 0.6rem;
	padding: 0;
}
.req { color: var(--accent); }

.field input[type="text"],
.field input[type="email"],
.field textarea,
.field select {
	width: 100%;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--hairline-dark);
	border-radius: 0;
	padding: 0.7rem 0;
	font-size: 1rem;
	color: var(--text-on-dark);
	transition: border-color 0.25s var(--ease);
	appearance: none;
}
.field textarea { resize: vertical; min-height: 5.5rem; line-height: 1.55; }

.field input::placeholder, .field textarea::placeholder { color: var(--text-on-dark-faint); opacity: 1; }

.field input:focus, .field textarea:focus, .field select:focus {
	outline: none;
	border-bottom-color: var(--accent);
}
.field.has-error input,
.field.has-error textarea { border-bottom-color: #d4623f; }

.field__error {
	display: none;
	margin-top: 0.45rem;
	font-size: 0.75rem;
	color: #e08a6b;
}
.field.has-error .field__error { display: block; }

.select { position: relative; display: block; }
.select::after {
	content: "";
	position: absolute;
	right: 2px; top: 50%;
	width: 7px; height: 7px;
	border-right: 1px solid var(--text-on-dark-faint);
	border-bottom: 1px solid var(--text-on-dark-faint);
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
}
.field select option { background: var(--ink-800); color: var(--text-on-dark); }

/* Budget chips */
.field--budget { margin-bottom: 1.75rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip input {
	position: absolute;
	opacity: 0;
	width: 1px; height: 1px;
}
.chip label {
	display: inline-block;
	margin: 0;
	padding: 0.6rem 1rem;
	border: 1px solid var(--hairline-dark);
	border-radius: 100px;
	font-size: 0.8125rem;
	letter-spacing: 0;
	text-transform: none;
	color: var(--text-on-dark-dim);
	cursor: pointer;
	transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.chip label:hover { border-color: rgba(244, 243, 241, 0.35); color: var(--text-on-dark); }
.chip input:checked + label {
	background: var(--accent-soft);
	border-color: var(--accent);
	color: var(--text-on-dark);
}
.chip input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: 2px; }

.lead-form__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.5rem;
	margin-top: 1.75rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--hairline-dark);
}
.lead-form__note { font-size: 0.75rem; color: var(--text-on-dark-faint); max-width: 26ch; }

.form-error {
	margin-top: 1.25rem;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(212, 98, 63, 0.5);
	background: rgba(212, 98, 63, 0.08);
	font-size: var(--fs-small);
	color: #e8a68b;
}
.form-error[hidden] { display: none; }

.form-success {
	background: var(--ink-800);
	border: 1px solid var(--accent);
	border-radius: var(--radius);
	padding: clamp(2rem, 4vw, 3.25rem);
}
.form-success[hidden] { display: none; }
.form-success__heading {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
	font-weight: 500;
	letter-spacing: -0.025em;
	margin-bottom: 0.85rem;
}
.form-success__body { color: var(--text-on-dark-dim); }

/* Honeypot */
.hp {
	position: absolute !important;
	left: -9999px;
	width: 1px; height: 1px;
	overflow: hidden;
}

/* 10. FOOTER & STICKY CTA ================================================== */

.site-footer {
	background: var(--ink-900);
	color: var(--text-on-dark);
	padding-block: clamp(3.5rem, 7vw, 5.5rem) clamp(2rem, 4vw, 3rem);
	border-top: 1px solid var(--hairline-dark);
}

.site-footer__top {
	display: grid;
	gap: clamp(2.5rem, 5vw, 4rem);
	grid-template-columns: 1fr;
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
	border-bottom: 1px solid var(--hairline-dark);
}
@media (min-width: 900px) { .site-footer__top { grid-template-columns: 1fr 1.4fr; } }

.site-footer__statement {
	margin-top: 1.25rem;
	max-width: 34ch;
	color: var(--text-on-dark-dim);
	font-size: var(--fs-small);
}
.site-footer__coverage {
	margin-top: 0.85rem;
	max-width: 34ch;
	color: var(--text-on-dark-faint);
	font-size: 0.75rem;
}

.site-footer__nav {
	display: grid;
	gap: 2rem clamp(1.5rem, 3vw, 2.5rem);
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .site-footer__nav { grid-template-columns: repeat(4, 1fr); } }

.site-footer__col-title {
	font-size: var(--fs-eyebrow);
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-on-dark-faint);
	margin-bottom: 1.15rem;
}
.site-footer__list li + li { margin-top: 0.6rem; }
.site-footer__list a {
	font-size: var(--fs-small);
	color: var(--text-on-dark-dim);
	transition: color 0.2s var(--ease);
}
.site-footer__list a:hover { color: var(--text-on-dark); }

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	padding-top: clamp(1.5rem, 3vw, 2rem);
}
.site-footer__copy, .site-footer__legal a { font-size: 0.75rem; color: var(--text-on-dark-faint); }
.site-footer__legal { display: flex; gap: 1.5rem; }
.site-footer__legal a:hover { color: var(--text-on-dark-dim); }

/* Sticky CTA — mobile only, appears after the hero */
.sticky-cta {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 90;
	background: rgba(11, 11, 12, 0.94);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-top: 1px solid var(--hairline-dark);
	padding: 0.8rem var(--gutter) calc(0.8rem + env(safe-area-inset-bottom));
	transform: translateY(110%);
	transition: transform 0.4s var(--ease);
	color: var(--text-on-dark);
}
.sticky-cta.is-visible { transform: translateY(0); }
@media (min-width: 901px) { .sticky-cta { display: none; } }

.sticky-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.sticky-cta__text {
	font-size: 0.75rem;
	color: var(--text-on-dark-dim);
	max-width: 16ch;
	line-height: 1.35;
}
.sticky-cta .btn { padding: 0.8em 1.15em; font-size: 0.8125rem; }

/* 11. MOTION =============================================================== */

[data-reveal] {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
	transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

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

/* 12. UTILITIES & WORDPRESS CORE =========================================== */

/* Inner pages (page.php / template-landing.php) */
.page-hero {
	background: var(--ink-900);
	color: var(--text-on-dark);
	padding-top: calc(var(--header-h) + clamp(3.5rem, 9vw, 7rem));
	padding-bottom: clamp(3rem, 7vw, 6rem);
}
.page-hero__title {
	font-family: var(--font-display);
	font-size: clamp(2.125rem, 1.4rem + 3.2vw, 4.25rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.038em;
	max-width: 18ch;
	text-wrap: balance;
}
.page-hero__lede {
	margin-top: 1.5rem;
	max-width: 58ch;
	font-size: var(--fs-lede);
	color: var(--text-on-dark-dim);
}
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.25rem; }

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.75rem;
	font-size: 0.75rem;
	color: var(--text-on-dark-faint);
}
.breadcrumbs a:hover { color: var(--text-on-dark-dim); }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.5rem; opacity: 0.5; }
.breadcrumbs li { display: flex; }

.entry-content { max-width: var(--max-w-narrow); margin-inline: auto; }
.entry-content > * + * { margin-top: 1.5rem; }
.entry-content h2 {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.25rem);
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: -0.028em;
	margin-top: clamp(2.5rem, 5vw, 4rem);
}
.entry-content h3 {
	font-family: var(--font-display);
	font-size: var(--fs-h3);
	font-weight: 600;
	letter-spacing: -0.018em;
	margin-top: 2.25rem;
}
.entry-content p, .entry-content li { color: var(--text-on-light-dim); }
.entry-content ul { list-style: none; }
.entry-content ul li { position: relative; padding-left: 1.4rem; margin-top: 0.6rem; }
.entry-content ul li::before {
	content: "";
	position: absolute;
	left: 0; top: 0.72em;
	width: 8px; height: 1px;
	background: var(--accent);
}
.entry-content ol { counter-reset: n; }
.entry-content ol li { counter-increment: n; position: relative; padding-left: 2rem; margin-top: 0.6rem; }
.entry-content ol li::before {
	content: counter(n, decimal-leading-zero);
	position: absolute; left: 0;
	font-size: 0.75rem;
	color: var(--accent);
	top: 0.28em;
}
.entry-content a {
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: var(--accent);
}
.entry-content strong { color: var(--text-on-light); font-weight: 600; }
.entry-content blockquote {
	padding-left: clamp(1.25rem, 3vw, 2rem);
	border-left: 1px solid var(--accent);
	font-family: var(--font-display);
	font-size: var(--fs-lede);
	letter-spacing: -0.015em;
}
.entry-content img, .entry-content figure { border-radius: var(--radius); }
.entry-content figcaption { font-size: 0.75rem; color: var(--text-on-light-dim); margin-top: 0.6rem; }

.alignwide { max-width: min(1100px, 100%); margin-inline: auto; }
.alignfull { max-width: none; width: 100%; }
.alignleft { float: left; margin: 0.4rem 1.5rem 1rem 0; }
.alignright { float: right; margin: 0.4rem 0 1rem 1.5rem; }
.aligncenter { margin-inline: auto; }
.wp-caption { max-width: 100%; }
.sticky, .gallery-caption, .bypostauthor { /* required by WordPress theme checks */ }

.error-404 { text-align: center; padding-block: clamp(6rem, 14vw, 11rem); }

/* ==========================================================================
   13. HOMEPAGE COMPONENTS
   ========================================================================== */

/* Section head with a trailing link (Selected Work) */
.section__head--row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem 3rem;
	max-width: none;
}
.section__head--row > div { max-width: 52ch; }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	font-size: var(--fs-small);
	color: var(--text-on-light-dim);
	padding-bottom: 0.35rem;
	border-bottom: 1px solid var(--hairline-light);
	transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
	white-space: nowrap;
}
.link-arrow span { transition: transform 0.3s var(--ease); color: var(--accent); }
.link-arrow:hover { color: var(--text-on-light); border-bottom-color: var(--accent); }
.link-arrow:hover span { transform: translateX(4px); }
.section--dark .link-arrow { color: var(--text-on-dark-dim); border-bottom-color: var(--hairline-dark); }
.section--dark .link-arrow:hover { color: var(--text-on-dark); }

/* --- Selected work grid ------------------------------------------------- */
.work {
	display: grid;
	gap: clamp(1rem, 2vw, 1.5rem);
	grid-template-columns: 1fr;
}
@media (min-width: 620px) { .work { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .work { grid-template-columns: repeat(3, 1fr); } }

.work__tile {
	position: relative;
	display: flex;
	align-items: flex-end;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--ink-900);
	border-radius: var(--radius);
	isolation: isolate;
}

.work__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	filter: saturate(0.82);
	transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}
a.work__tile:hover .work__img { transform: scale(1.04); filter: saturate(1); }

/* The scrim keeps the caption legible over any still */
.work__tile::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to top, rgba(11, 11, 12, 0.85) 0%, rgba(11, 11, 12, 0.15) 55%, rgba(11, 11, 12, 0.05) 100%);
}

/* No still yet: a deliberate typographic plate rather than an empty box */
.work__tile--plate {
	background:
		radial-gradient(120% 90% at 78% 22%, rgba(244, 243, 241, 0.07) 0%, rgba(11, 11, 12, 0) 62%),
		repeating-linear-gradient(90deg, rgba(244, 243, 241, 0.05) 0 1px, transparent 1px 14.2857%),
		var(--ink-900);
}
.work__tile--plate::after { background: none; }

.work__meta {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	padding: clamp(1.1rem, 2vw, 1.6rem);
	color: var(--text-on-dark);
}
.work__client {
	font-family: var(--font-display);
	font-size: var(--fs-h3);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.1;
}
.work__category {
	font-size: var(--fs-eyebrow);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-on-dark-faint);
}
a.work__tile:hover .work__category { color: var(--accent); }

/* --- Practice router --------------------------------------------------- */
.practice { border-top: 1px solid var(--hairline-dark); }
.practice__row { border-bottom: 1px solid var(--hairline-dark); }

.practice__link {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
	transition: padding-inline 0.35s var(--ease), background-color 0.35s var(--ease);
}
@media (min-width: 860px) {
	.practice__link {
		grid-template-columns: minmax(0, 20rem) minmax(0, 1fr) auto;
		gap: 0 clamp(2rem, 4vw, 4rem);
		align-items: start;
	}
}
a.practice__link:hover { padding-inline: 1.25rem; background: rgba(244, 243, 241, 0.035); }

.practice__title {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 1rem + 0.9vw, 1.75rem);
	font-weight: 500;
	letter-spacing: -0.026em;
	line-height: 1.12;
}
.practice__meta {
	margin-top: 0.5rem;
	font-size: var(--fs-eyebrow);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-on-dark-faint);
}
.practice__body {
	font-size: var(--fs-small);
	line-height: 1.65;
	color: var(--text-on-dark-dim);
	max-width: 62ch;
}
.practice__action {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	font-size: var(--fs-small);
	white-space: nowrap;
	padding-top: 0.15rem;
}
.practice__cta { color: var(--text-on-dark); }
.practice__arrow { color: var(--accent); transition: transform 0.3s var(--ease); }
a.practice__link:hover .practice__arrow { transform: translateX(5px); }
.practice__soon { color: var(--text-on-dark-faint); }

/* --- Disciplines (Production / Strategy / Post) ------------------------- */
.disciplines {
	display: grid;
	gap: clamp(2.5rem, 5vw, 4rem);
	grid-template-columns: 1fr;
}
@media (min-width: 760px) { .disciplines { grid-template-columns: repeat(3, 1fr); } }

.discipline { padding-top: 1.35rem; border-top: 1px solid var(--accent); }

.discipline__title {
	font-family: var(--font-display);
	font-size: var(--fs-h3);
	font-weight: 500;
	letter-spacing: -0.02em;
	margin-bottom: 1.35rem;
}
.discipline__list li {
	font-size: var(--fs-small);
	line-height: 1.5;
	color: var(--text-on-dark-dim);
	padding-block: 0.65rem;
	border-top: 1px solid var(--hairline-dark);
}
.discipline__list li:first-child { border-top: 0; padding-top: 0; }

/* --- Logo wall on a light band ----------------------------------------- */
.logos--light { border-top-color: var(--hairline-light); }
.logos--light .logos__label { color: var(--text-on-light-dim); }
.logos--light .logos__item img { filter: none; opacity: 0.45; }
.logos--light .logos__item:hover img { opacity: 0.9; }
.logos--light .logos__wordmark { color: var(--text-on-light-dim); }
.logos--light .logos__item:hover .logos__wordmark { color: var(--text-on-light); }

@media (min-width: 900px) {
	.logos__grid--wide { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1180px) {
	.logos__grid--wide { grid-template-columns: repeat(8, 1fr); }
}

.logos__wordmark { transition: color 0.3s var(--ease); }

/* Plain (non-link) value in the contact detail list */
.cta-grid__direct .plain { color: var(--text-on-dark-dim); min-width: 0; }

/* ==========================================================================
   14. MEDIA — play buttons, video lightbox, full-bleed bands
   ========================================================================== */

/* Work tiles rendered as <button> for video playback */
button.work__tile {
	width: 100%;
	border: 0;
	padding: 0;
	font: inherit;
	color: inherit;
	text-align: left;
	cursor: pointer;
	appearance: none;
}

.work__play {
	position: absolute;
	top: clamp(1.1rem, 2vw, 1.6rem);
	right: clamp(1.1rem, 2vw, 1.6rem);
	z-index: 1;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(11, 11, 12, 0.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1px solid rgba(244, 243, 241, 0.28);
	color: var(--text-on-dark);
	transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease),
		transform 0.3s var(--ease);
}
.work__play svg { transform: translateX(1px); }

.work__tile--play:hover .work__play,
.work__tile--play:focus-visible .work__play {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--ink-900);
	transform: scale(1.08);
}
.work__tile--play:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Video lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: grid;
	place-items: center;
	padding: clamp(1rem, 4vw, 3rem);
	background: rgba(6, 6, 7, 0.94);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	opacity: 0;
	transition: opacity 0.3s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }

.lightbox__frame {
	position: relative;
	width: min(100%, 1400px);
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: var(--radius);
	overflow: hidden;
	transform: scale(0.98);
	transition: transform 0.35s var(--ease);
}
.lightbox.is-open .lightbox__frame { transform: scale(1); }
.lightbox__frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.lightbox__title {
	position: absolute;
	left: 0;
	bottom: calc(100% + 0.85rem);
	font-family: var(--font-display);
	font-size: var(--fs-small);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-on-dark-dim);
}

.lightbox__close {
	position: absolute;
	right: 0;
	bottom: calc(100% + 0.6rem);
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(244, 243, 241, 0.3);
	border-radius: 50%;
	background: transparent;
	color: var(--text-on-dark);
	cursor: pointer;
	font-size: 15px;
	line-height: 1;
	transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease),
		color 0.25s var(--ease);
}
.lightbox__close:hover { background: var(--accent); border-color: var(--accent); color: var(--ink-900); }

/* Full-bleed image bands */
.band {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--ink-900);
	isolation: isolate;
	display: flex;
	align-items: flex-end;
}
.band--tall { height: clamp(320px, 70vh, 760px); }
.band--standard { height: clamp(260px, 48vh, 560px); }
.band--short { height: clamp(200px, 34vh, 400px); }

.band__img {
	position: absolute;
	inset: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.88);
}

.band__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to top, rgba(11, 11, 12, 0.72) 0%, rgba(11, 11, 12, 0.1) 55%, rgba(11, 11, 12, 0.28) 100%);
}

.band__caption {
	position: relative;
	padding-bottom: clamp(1.75rem, 4vw, 3rem);
	color: var(--text-on-dark);
}
.band__caption p {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 0.9rem + 1.5vw, 2rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.024em;
	max-width: 24ch;
	text-wrap: balance;
}

/* Admin-only nudges — never shown to visitors */
.admin-hint {
	margin-top: 2rem;
	padding: 0.85rem 1.1rem;
	border: 1px dashed rgba(201, 162, 39, 0.5);
	background: var(--accent-soft);
	border-radius: var(--radius);
	font-size: 0.8125rem;
	color: var(--text-on-light-dim);
}
.section--dark .admin-hint,
.section--cta .admin-hint { color: var(--text-on-dark-dim); }
.admin-hint a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 500;
}
