@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/montserrat-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--ink: #000000;
	--paper: #ffffff;
	--panel: #0d0d0d;
	--panel-raised: #151515;
	--chip: #393939;
	--matrix: #363946;
	--gold: #b6985e;
	--text: #ffffff;
	--text-muted: rgba(255, 255, 255, 0.68);
	--text-ink: #101010;
	--text-ink-muted: rgba(16, 16, 16, 0.62);
	--line: rgba(255, 255, 255, 0.16);
	--line-strong: rgba(255, 255, 255, 0.32);
	--line-ink: rgba(16, 16, 16, 0.14);
	--surface-ink: #f9f9f9;
	--gradient: linear-gradient(90deg, #2b97ff 0%, #a500e9 45.67%, #3a79df 100%);
	--cap: 1420px;
	--gutter: 84px;
	--rhythm: 96px;
	--gap: 28px;
	--control: 52px;
	--radius-chip: 2px;
	--radius-pill: 555px;
	--unit: 4px;
}

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

/* Author display rules must never defeat the hidden attribute on dialogs and collapsed groups. */
[hidden] { display: none !important; }

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

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--ink);
	color: var(--text);
	font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

img { max-width: 100%; }

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

h1, h2, h3, h4, p, dl, dd, dt, ol, ul, figure { margin: 0; padding: 0; }

ol, ul { list-style: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

textarea { font: inherit; }

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

:focus-visible { outline: 2px solid #a500e9; outline-offset: 3px; }

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

/* Typography roles measured from the reference. */
.display-xl {
	font-size: clamp(30px, min(5.4vw, 6.6vh), 76px);
	line-height: 0.99;
	font-weight: 400;
	letter-spacing: -0.01em;
}

.display-lg {
	font-size: clamp(28px, min(4.4vw, 6vh), 58px);
	line-height: 1.02;
	font-weight: 400;
	letter-spacing: -0.01em;
}

.display-md {
	font-size: clamp(24px, 2.4vw, 34px);
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: 0.43px;
}

.display-sm {
	font-size: clamp(20px, 1.8vw, 28px);
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.gradient-text {
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.micro-label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.micro-label--gold { color: var(--gold); }
.micro-label--ink { color: var(--text-ink-muted); }

/* Controls: fully round gradient and outline pills. */
.pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: var(--control);
	padding: 0 30px;
	border-radius: var(--radius-pill);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	white-space: nowrap;
	transition: transform 0.16s ease, opacity 0.16s ease;
}

.pill--gradient { background-image: var(--gradient); color: #ffffff; }
.pill--outline { border: 1px solid var(--line-strong); color: var(--text); }
.pill:hover { transform: translateY(-1px); }
.pill--outline:hover { border-color: #ffffff; }

/* Hard 2px data chips against the round pills. */
.chip {
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px 14px;
	background: var(--chip);
	border-radius: var(--radius-chip);
	font-size: 13px;
}

.chip--flat { display: inline-flex; flex-direction: row; align-items: center; padding: 8px 14px; font-weight: 600; }
.chip--ink { background: #ececec; color: var(--text-ink); }
.chip--city {
	flex: 1 1 200px;
	min-height: 96px;
	justify-content: center;
	padding: 18px 20px;
	transition: background 0.18s ease;
}

.chip--city strong { font-size: 20px; font-weight: 600; }
.chip--city span { font-size: 12px; color: var(--text-muted); }
.chip--city:hover { background: #4a4a4a; }

.dialog-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius-pill);
	font-size: 22px;
	line-height: 1;
}

.dialog-close:hover { border-color: #ffffff; }

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
	font-size: 12px;
	color: var(--text-muted);
}

.breadcrumbs a:hover { color: #ffffff; }

.band-head { display: grid; gap: 10px; margin-bottom: 36px; }
.band-head--dark h2 { color: var(--text-ink); }

/* Masthead */
.masthead {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--ink);
	border-bottom: 1px solid var(--line);
}

.masthead__grid {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 84px;
}

.masthead__burger { display: none; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 34px; height: 34px; display: block; }
.brand strong { font-size: 17px; font-weight: 600; letter-spacing: 0.02em; }

.primary-menu { display: flex; align-items: center; gap: 28px; justify-content: center; }
.primary-menu a { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.primary-menu a:hover { color: #ffffff; }

.masthead__actions { display: flex; align-items: center; gap: 12px; }
.city-trigger { min-height: 44px; padding: 0 22px; }
.masthead__cta { min-height: 44px; padding: 0 24px; }

/* Hero: compact, text only, no media. */
.hero { padding-block: clamp(26px, 3.6vh, 52px) clamp(22px, 3vh, 40px); }

.hero__inner { display: grid; gap: clamp(12px, 1.6vh, 20px); }
.hero .display-xl { max-width: 1000px; }
.hero__lede { max-width: 62ch; font-size: clamp(14px, 1.1vw, 18px); color: var(--text-muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

/* Catalogue */
.press-catalog { padding-block: 24px var(--rhythm); }

.press-catalog__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 32px;
}

.press-catalog__head > div { display: grid; gap: 10px; }
.press-catalog__filter-trigger { display: none; }

.press-catalog__layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}

.press-catalog__results { min-width: 0; }

.press-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--gap);
}

.press-catalog__empty { color: var(--text-muted); }

/* Filter rail, permanently visible on desktop and tablet. */
.filter-rail {
	position: sticky;
	top: 104px;
	max-height: calc(100vh - 132px);
	overflow-y: auto;
	padding: 22px;
	background: var(--panel);
	border: 1px solid var(--line);
	border-top: 3px solid transparent;
	border-image: var(--gradient) 1;
	border-image-width: 3px 0 0 0;
}

.filter-rail__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.filter-rail__head h2 { font-size: 18px; font-weight: 600; margin-top: 6px; }
.filter-rail__close { display: none; }

.filter-rail__body { display: grid; border-top: 1px solid var(--line); }

.filter-group { border-bottom: 1px solid var(--line); }

.filter-group__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	padding: 14px 0;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: left;
}

.filter-group__mark { position: relative; width: 12px; height: 12px; flex: 0 0 12px; }
.filter-group__mark::before,
.filter-group__mark::after { content: ''; position: absolute; background: var(--gold); transition: transform 0.18s ease; }
.filter-group__mark::before { inset: 5px 0 5px 0; height: 2px; }
.filter-group__mark::after { inset: 0 5px 0 5px; width: 2px; }
.filter-group__trigger[aria-expanded="true"] .filter-group__mark::after { transform: scaleY(0); }

.filter-group__list { display: grid; gap: 2px; padding-bottom: 14px; }
.filter-group__list a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 7px 10px; background: rgba(255, 255, 255, 0.04); border-radius: var(--radius-chip); font-size: 13px; }
.filter-group__list a:hover { background: var(--chip); }
.filter-group__list small { color: var(--text-muted); font-size: 11px; }

.filter-backdrop { display: none; }

/* Press-sheet card: caption above the photograph. */
.press-card {
	position: relative;
	max-width: 420px;
	max-height: 680px;
	background: var(--panel-raised);
	border: 1px solid var(--line);
}

.press-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--gradient); z-index: 1; }

.press-card__link { display: grid; grid-template-rows: auto auto auto; height: 100%; padding: 18px 16px 16px; gap: 14px; }

.press-card__identity { display: grid; gap: 6px; }
.press-card__name { font-size: 21px; font-weight: 600; line-height: 1.15; }

.press-card__media { background: #000000; }
.press-card__media img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 460px;
	object-fit: contain;
}

.press-card__facts { display: flex; flex-wrap: wrap; gap: 6px; align-content: start; }
.chip--fact { padding: 7px 10px; font-size: 12px; }
.chip--fact dt { font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.chip--fact dd { font-size: 13px; font-weight: 600; }

.press-card:hover { border-color: var(--line-strong); }

.press-pagination { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.press-pagination a,
.press-pagination span {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius-pill);
	font-size: 13px;
	font-weight: 600;
}
.press-pagination .current { background-image: var(--gradient); border-color: transparent; }

/* Real statistics strip. */
.stat-strip { padding-block: var(--rhythm); border-top: 1px solid var(--line); }
.stat-strip__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.stat { display: grid; gap: 8px; }
.stat strong { font-size: clamp(34px, 3.6vw, 58px); font-weight: 600; line-height: 1; }
.stat span { font-size: 13px; color: var(--text-muted); max-width: 24ch; }

/* City chips band. */
.city-band { padding-block: var(--rhythm); border-top: 1px solid var(--line); }
.city-band__chips { display: flex; flex-wrap: wrap; gap: 16px; }

/* Campaign editorial band: the generated frame is shown whole, never cropped. */
.campaign { padding-block: var(--rhythm); border-top: 1px solid var(--line); }
.campaign__inner { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 44px; align-items: center; }
.campaign__panel { display: grid; gap: 14px; padding-left: 22px; border-left: 3px solid transparent; border-image: var(--gradient) 1; border-image-width: 0 0 0 3px; }
.campaign__panel p { font-size: 15px; color: var(--text-muted); max-width: 42ch; }
.campaign__panel .pill { justify-self: start; }
.campaign__media { display: flex; justify-content: center; margin: 0; }
/* 16:9 source: capping width at 99.5vh keeps the height at 56vh without cropping or letterboxing. */
.campaign__media img { display: block; width: min(100%, 99.5vh); height: auto; }

/* White band: numbered process. */
.process { padding-block: var(--rhythm); background: var(--paper); color: var(--text-ink); }
.process__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); }
.process__step { display: grid; gap: 12px; align-content: start; padding: 28px; background: var(--surface-ink); }
.process__number { font-size: 13px; font-weight: 600; letter-spacing: 0.14em; color: var(--gold); }
.process__step h3 { font-size: 19px; font-weight: 600; }
.process__step p { font-size: 14px; color: var(--text-ink-muted); }

/* Bounded SEO editorial on the shared white canvas. */
.seo-editorial { background: var(--paper); color: var(--text-ink); padding-block: 64px; }
.seo-editorial__inner { display: grid; grid-template-columns: minmax(0, 360px) minmax(0, 1fr); gap: 40px; align-items: start; }
.seo-editorial h2 { font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; margin-top: 10px; }
.seo-editorial__copy { font-size: 15px; color: var(--text-ink-muted); display: grid; gap: 12px; }

/* Footer */
.site-footer { padding-block: 64px 40px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
.footer-mark { display: grid; gap: 10px; justify-items: start; }
.footer-mark strong { font-size: 19px; font-weight: 600; }
.footer-mark p { font-size: 13px; color: var(--text-muted); max-width: 34ch; }
.footer-nav { display: grid; gap: 10px; align-content: start; }
.footer-nav a { font-size: 14px; color: var(--text-muted); }
.footer-nav a:hover { color: #ffffff; }
.footer-city { display: grid; gap: 12px; justify-items: start; align-content: start; }
.footer-city a { font-size: 13px; color: var(--text-muted); text-decoration: underline; }
.footer-legal { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12px; color: var(--text-muted); }

/* Archive opening plate */
.archive-plate { padding-block: 40px 20px; }
.archive-plate .display-lg { max-width: 22ch; }
.archive-plate__copy { max-width: 68ch; margin-top: 16px; font-size: 15px; color: var(--text-muted); }
.archive-plate .micro-label { margin-bottom: 12px; }

/* Single profile */
.profile-plate { padding-block: 40px 28px; }
.profile-plate .micro-label { margin-bottom: 12px; }
.profile-plate__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

.contact-rail { background: var(--panel); border-block: 1px solid var(--line); }
.contact-rail__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding-block: 20px; }
.contact-rail__meta strong { display: block; font-size: 20px; font-weight: 600; margin-top: 4px; }
.contact-rail__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.gallery { padding-block: 36px 8px; }
.gallery__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.gallery__count { font-size: 13px; color: var(--text-muted); }

.gallery__grid { display: grid; gap: 20px; }

/*
 * Asymmetric editorial row. Widths are driven by the image, not by column
 * fractions, so a bounded height never letterboxes a portrait frame.
 */
.gallery--collage .gallery__grid { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: center; }
.gallery--collage .gallery__item { flex: 0 0 auto; }

.gallery__item { display: block; padding: 0; background: #000000; border: 1px solid var(--line); max-width: 100%; }
.gallery__item img { display: block; width: auto; height: auto; max-width: 100%; max-height: 58vh; }
.gallery--collage .gallery__item:first-child img { max-height: 72vh; }
.gallery--collage .gallery__item { cursor: zoom-in; }
.gallery--collage .gallery__item:hover { border-color: var(--line-strong); }

.gallery--single .gallery__grid { justify-items: center; }
.gallery--single .gallery__item img { max-height: 72vh; }

/* White profile sheet band */
.profile-sheet { padding-block: var(--rhythm); background: var(--paper); color: var(--text-ink); }
.profile-sheet > .shell { display: grid; gap: 64px; }

.profile-prose { display: grid; gap: 12px; max-width: 82ch; }
.profile-prose div { display: grid; gap: 12px; font-size: 16px; color: var(--text-ink-muted); }

.matrix__grid { display: grid; gap: 0; }
.matrix__row { display: grid; grid-template-columns: 305px minmax(0, 1fr); gap: 30px; padding-block: 16px; border-top: 1px solid var(--line-ink); align-items: start; }
.matrix__row:last-child { border-bottom: 1px solid var(--line-ink); }
.matrix__row dt { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-ink-muted); }
.matrix__row dd { display: flex; flex-wrap: wrap; gap: 8px; }
.matrix__value { display: inline-flex; align-items: center; padding: 8px 16px; background: var(--matrix); border-radius: var(--radius-chip); color: #ffffff; font-size: 14px; font-weight: 600; }

.price-rows__list { display: grid; }
.price-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; border: 1px solid var(--line-ink); margin-bottom: -1px; }
.price-row strong { font-size: 16px; font-weight: 600; }
.price-row span { display: flex; flex-wrap: wrap; gap: 20px; }
.price-row em { display: grid; gap: 2px; font-style: normal; font-size: 15px; font-weight: 600; color: var(--text-ink); text-align: right; }
.price-row em i { font-style: normal; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-ink-muted); }

.services__chips { display: flex; flex-wrap: wrap; gap: 8px; }

.report-band { padding-block: var(--rhythm); }
.report-band__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: start; }
.report-band__inner > div { display: grid; gap: 12px; }
.report-band__inner p { font-size: 14px; color: var(--text-muted); max-width: 46ch; }
.report-form { display: grid; gap: 12px; justify-items: start; }
.report-form label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.report-form textarea { width: 100%; padding: 14px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-chip); color: #ffffff; resize: vertical; }
.report-form__status { font-size: 13px; color: var(--gold); }

/* Dialogs */
.city-dialog,
.phone-dialog,
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.82);
	backdrop-filter: blur(4px);
}

.city-dialog__panel,
.phone-dialog__panel {
	width: 100%;
	background: var(--panel);
	border: 1px solid var(--line);
	border-top: 3px solid transparent;
	border-image: var(--gradient) 1;
	border-image-width: 3px 0 0 0;
	padding: 28px;
}

.city-dialog__panel { max-width: 760px; display: grid; gap: 22px; }
.city-dialog__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.city-dialog__head h2 { font-size: 26px; font-weight: 600; margin-top: 8px; }
.city-dialog__chips { display: flex; flex-wrap: wrap; gap: 12px; }
.city-dialog__all { font-size: 13px; color: var(--text-muted); text-decoration: underline; justify-self: start; }

.phone-dialog__panel { max-width: 420px; display: grid; gap: 16px; }
.phone-dialog__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.phone-dialog__panel h2 { font-size: 22px; font-weight: 600; }
.phone-dialog__link { justify-self: start; font-size: 18px; letter-spacing: 0.02em; }

.lightbox__panel { display: grid; gap: 14px; width: 100%; max-width: 1100px; }
.lightbox__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.lightbox__stage { display: flex; align-items: center; gap: 14px; }
.lightbox__stage figure { flex: 1 1 auto; min-width: 0; display: flex; justify-content: center; }
.lightbox__stage img { max-width: 100%; max-height: 74vh; width: auto; height: auto; object-fit: contain; }
.lightbox__nav { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; flex: 0 0 48px; border: 1px solid var(--line-strong); border-radius: var(--radius-pill); font-size: 20px; }
.lightbox__nav:hover { border-color: #ffffff; }

/* Tablet */
@media (max-width: 1199px) {
	:root { --gutter: 40px; --rhythm: 64px; --gap: 20px; }

	.primary-menu { gap: 18px; }
	.primary-menu a { font-size: 13px; }
	.masthead__cta { display: none; }

	.press-catalog__layout { grid-template-columns: 240px minmax(0, 1fr); gap: 28px; }
	.press-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.filter-rail { padding: 18px; top: 96px; }

	.stat-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
	.process__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
	.process__step { padding: 20px; }
	.footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
	.report-band__inner { gap: 28px; }
	.matrix__row { grid-template-columns: 220px minmax(0, 1fr); gap: 20px; }
	.seo-editorial__inner { grid-template-columns: minmax(0, 280px) minmax(0, 1fr); gap: 28px; }

	.gallery__item img { max-height: 42vh; }
	.gallery--collage .gallery__item:first-child img { max-height: 54vh; }
}

@media (max-width: 1023px) {
	.process__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.campaign__inner { grid-template-columns: minmax(0, 1fr); gap: 28px; }
}

/* Mobile: burger menu, centred wordmark, single column, bottom-sheet filters. */
@media (max-width: 767px) {
	:root { --gutter: 16px; --rhythm: 44px; --gap: 16px; --control: 48px; }

	.masthead__grid { grid-template-columns: 1fr auto 1fr; gap: 8px; min-height: 64px; }
	.masthead__burger { display: inline-flex; align-items: center; justify-content: flex-start; width: 44px; height: 44px; }
	.masthead__burger-bars { position: relative; display: block; width: 22px; height: 2px; background: #ffffff; }
	.masthead__burger-bars::before,
	.masthead__burger-bars::after { content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: #ffffff; }
	.masthead__burger-bars::before { top: -7px; }
	.masthead__burger-bars::after { top: 7px; }
	.brand { justify-self: center; }
	.brand strong { display: none; }
	.brand img { width: 30px; height: 30px; }
	.masthead__actions { justify-self: end; }
	.city-trigger { min-height: 40px; padding: 0 14px; font-size: 12px; max-width: 40vw; overflow: hidden; }
	.city-trigger span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

	.primary-menu {
		position: fixed;
		inset: 64px 0 auto 0;
		z-index: 39;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px 16px 20px;
		background: var(--ink);
		border-bottom: 1px solid var(--line);
	}
	.primary-menu.is-open { display: flex; }
	.primary-menu a { padding: 14px 0; font-size: 16px; color: #ffffff; border-bottom: 1px solid var(--line); }

	.hero { padding-block: 24px 20px; }
	.hero__lede { font-size: 14px; }
	.hero__actions .pill { flex: 1 1 auto; }

	.press-catalog__head { flex-direction: column; align-items: stretch; gap: 16px; margin-bottom: 20px; }
	.press-catalog__filter-trigger { display: inline-flex; align-self: flex-start; }
	.press-catalog__layout { grid-template-columns: minmax(0, 1fr); gap: 0; }
	.press-grid { grid-template-columns: minmax(0, 1fr); }

	.filter-backdrop { display: block; position: fixed; inset: 0; z-index: 88; background: rgba(0, 0, 0, 0.7); }

	.filter-rail {
		position: fixed;
		inset: auto 0 0 0;
		z-index: 89;
		max-height: 82vh;
		max-width: none;
		padding: 20px 16px 28px;
		border: 1px solid var(--line);
		border-image: var(--gradient) 1;
		border-image-width: 3px 0 0 0;
		transform: translateY(101%);
		transition: transform 0.24s ease;
		visibility: hidden;
	}
	.filter-rail.is-open { transform: translateY(0); visibility: visible; }
	.filter-rail__close { display: inline-flex; }
	/* The close control stays reachable while the sheet scrolls. */
	.filter-rail__head { position: sticky; top: -20px; z-index: 2; margin-top: -20px; padding-block: 20px 14px; background: var(--panel); }

	/* Same DOM order, horizontal row presentation. */
	.press-card { max-width: none; max-height: 300px; }
	.press-card__link {
		grid-template-columns: minmax(132px, 38%) minmax(0, 1fr);
		grid-template-rows: auto 1fr;
		gap: 12px 14px;
		padding: 16px 14px 14px;
	}
	.press-card__identity { grid-column: 2; grid-row: 1; }
	.press-card__media { grid-column: 1; grid-row: 1 / span 2; align-self: start; }
	.press-card__media img { max-height: 248px; }
	.press-card__facts { grid-column: 2; grid-row: 2; }
	.press-card__name { font-size: 18px; }

	.stat-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
	.stat strong { font-size: 32px; }
	.stat span { font-size: 12px; }

	.chip--city { flex: 1 1 140px; min-height: 84px; padding: 14px 16px; }
	.chip--city strong { font-size: 17px; }

	.campaign__inner { grid-template-columns: minmax(0, 1fr); gap: 22px; }
	.campaign__media img { width: 100%; }

	.process__grid { grid-template-columns: minmax(0, 1fr); }
	.seo-editorial { padding-block: 40px; }
	.seo-editorial__inner { grid-template-columns: minmax(0, 1fr); gap: 18px; }

	.footer-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }

	.contact-rail__inner { flex-direction: column; align-items: flex-start; }
	.contact-rail__actions { width: 100%; }
	.contact-rail__actions .pill { flex: 1 1 auto; }

	.gallery--collage .gallery__grid { display: grid; grid-template-columns: minmax(0, 1fr); }
	.gallery__item img,
	.gallery--collage .gallery__item:first-child img { width: 100%; max-height: none; }
	.gallery--single .gallery__item img { max-height: 72vh; width: auto; margin-inline: auto; }

	.profile-sheet > .shell { gap: 40px; }
	.matrix__row { grid-template-columns: minmax(0, 1fr); gap: 10px; }
	.report-band__inner { grid-template-columns: minmax(0, 1fr); }
	.report-form { width: 100%; }
	.report-form .pill { width: 100%; }

	.city-dialog,
	.phone-dialog,
	.lightbox { padding: 12px; }
	.city-dialog__panel,
	.phone-dialog__panel { padding: 20px; }
	.city-dialog__head h2 { font-size: 21px; }
	.chip--city { flex-basis: 100%; }
	.lightbox__nav { width: 42px; height: 42px; flex-basis: 42px; }
	.lightbox__stage { gap: 8px; }
	.lightbox__stage img { max-height: 64vh; }
}

@media (min-width: 768px) {
	.filter-rail[aria-hidden="true"] { display: block; }
}

@media (prefers-reduced-motion: reduce) {
	* { transition: none !important; animation: none !important; }
}
