/*
*
Theme Name: Mr. Byron
Theme URI: https://mrbyron.mx
Author: Alexander Leal / Mr. Byron
Description: Tema editorial urbano para noticias, música, cultura, entrevistas y coberturas de Mr. Byron.
Version: 1.1.0
Requires at least: 6.5
Requires PHP: 8.0
Text Domain: mrbyron
*/

:root {
	--ink: #0b0b0b;
	--paper: #f2f0e8;
	--paper-bright: #fbfaf6;
	--acid: #b6ff00;
	--purple: #7a3cff;
	--gray: #a7a7a2;
	--line: rgba(11, 11, 11, .22);
	--display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	--body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--body);
	text-rendering: optimizeLegibility;
}
body, button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; }
::selection { background: var(--acid); color: var(--ink); }

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	clip: auto;
	background: white;
	color: black;
	padding: 12px;
}
.eyebrow {
	margin: 0;
	font-size: .74rem;
	font-weight: 850;
	letter-spacing: .16em;
	line-height: 1;
	text-transform: uppercase;
}
.eyebrow.accent { color: var(--acid); }

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	display: flex;
	height: 94px;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, .14);
	background: rgba(8, 8, 8, .96);
	color: white;
	padding: 0 40px;
	backdrop-filter: blur(18px);
}
.brand {
	display: flex;
	width: 170px;
	height: 94px;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	overflow: visible;
}
.brand .custom-logo-link,
.brand .brand-link {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}
.brand .custom-logo,
.brand .brand-link img {
	display: block;
	width: auto;
	height: auto;
	max-width: 165px;
	max-height: 88px;
	object-fit: contain;
	object-position: center;
}
.brand-crop {
	display: none;
}
.desktop-nav .menu {
	display: flex;
	align-items: center;
	gap: clamp(24px, 3.6vw, 54px);
	margin: 0;
	padding: 0;
	list-style: none;
}
.desktop-nav a {
	position: relative;
	font-size: .74rem;
	font-weight: 800;
	letter-spacing: .055em;
	text-transform: uppercase;
}
.desktop-nav a::after {
	position: absolute;
	right: 0;
	bottom: -10px;
	left: 0;
	height: 3px;
	background: var(--acid);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}
.desktop-nav a:hover::after,
.desktop-nav .current-menu-item > a::after,
.desktop-nav a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}
.menu-toggle, .mobile-navigation { display: none; }

.hero-editorial {
	display: grid;
	min-height: calc(100svh - 94px);
	grid-template-columns: minmax(0, 2fr) minmax(350px, .95fr);
	background: var(--ink);
}
.hero-story {
	position: relative;
	min-height: 760px;
	overflow: hidden;
	background-color: var(--ink);
	background-position: center;
	background-size: cover;
	color: white;
}
.hero-story::after {
	position: absolute;
	inset: auto 0 0;
	height: 45%;
	background: linear-gradient(transparent, rgba(0, 0, 0, .42));
	content: "";
	pointer-events: none;
}
.hero-copy {
	position: absolute;
	z-index: 2;
	bottom: clamp(64px, 9vh, 100px);
	left: clamp(28px, 4vw, 62px);
	max-width: 680px;
	animation: rise-in 500ms ease-out both;
}
.hero-copy h1 {
	margin: 15px 0 16px;
	font-family: var(--display);
	font-size: clamp(5.6rem, 9.5vw, 9.6rem);
	font-weight: 900;
	letter-spacing: -.035em;
	line-height: .78;
	text-transform: uppercase;
}
.hero-intro {
	max-width: 420px;
	margin: 0 0 28px;
	color: #e3e3df;
	font-size: clamp(1rem, 1.4vw, 1.25rem);
	line-height: 1.45;
}
.primary-button, .outline-button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	font-weight: 850;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.primary-button {
	min-width: 270px;
	background: var(--acid);
	color: var(--ink);
	padding: 0 24px 0 28px;
}
.primary-button span, .outline-button span, .text-link span {
	font-size: 1.55em;
	transition: transform 180ms ease;
}
.primary-button:hover { background: var(--paper-bright); transform: translateY(-2px); }
.primary-button:hover span, .outline-button:hover span, .text-link:hover span { transform: translateX(6px); }
.hero-caption {
	position: absolute;
	z-index: 2;
	right: 24px;
	bottom: 26px;
	display: flex;
	max-width: 300px;
	align-items: flex-end;
	gap: 12px;
	color: white;
	text-align: right;
}
.hero-caption span {
	color: var(--acid);
	font-size: .68rem;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.hero-caption strong { font-size: .78rem; line-height: 1.25; }
.hero-rail {
	display: grid;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	background: var(--paper);
	color: var(--ink);
	padding: 20px;
}

.post-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 18px;
}
.post-card-compact { min-height: 0; gap: 12px; padding: 0 0 18px; }
.post-card-compact + .post-card-compact {
	border-top: 1px solid var(--line);
	padding-top: 20px;
}
.post-image-wrap {
	position: relative;
	display: block;
	overflow: hidden;
	background: #d8d6ce;
	aspect-ratio: 16 / 10;
}
.post-card-compact .post-image-wrap {
	flex: 1;
	min-height: 180px;
	aspect-ratio: auto;
}
.post-image {
	width: 100%;
	height: 100%;
	filter: grayscale(1) contrast(1.06);
	object-fit: cover;
	transition: transform 500ms cubic-bezier(.2, .7, .2, 1);
}
.post-card:hover .post-image { transform: scale(1.025); }
.post-card-content { display: flex; min-width: 0; flex: 1; flex-direction: column; }
.post-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: .69rem;
	font-weight: 800;
	letter-spacing: .08em;
	line-height: 1;
	text-transform: uppercase;
}
.post-meta span { color: var(--purple); }
.post-meta time {
	padding-left: 12px;
	border-left: 1px solid currentColor;
	color: #77766f;
}
.post-card h2, .post-card h3 {
	margin: 12px 0 0;
	font-family: var(--display);
	font-size: clamp(2rem, 3.1vw, 3.35rem);
	font-weight: 900;
	letter-spacing: -.025em;
	line-height: .95;
}
.post-card h2 a, .post-card h3 a {
	background-image: linear-gradient(var(--acid), var(--acid));
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 4px;
	transition: background-size 220ms ease;
}
.post-card h2 a:hover, .post-card h3 a:hover { background-size: 100% 4px; }
.post-card p { margin: 12px 0 16px; color: #575752; font-size: .95rem; line-height: 1.65; }
.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	font-size: .79rem;
	font-weight: 850;
	letter-spacing: .05em;
	text-transform: uppercase;
}
.post-card-compact .text-link { display: none; }

.ticker {
	display: flex;
	min-height: 66px;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 3vw, 44px);
	overflow: hidden;
	background: var(--acid);
	padding: 0 28px;
	font-family: var(--display);
	font-size: clamp(1.55rem, 2.3vw, 2.35rem);
	letter-spacing: -.015em;
	text-transform: uppercase;
	white-space: nowrap;
}
.ticker i { color: var(--purple); font-family: var(--body); font-size: .7em; font-style: normal; }
.section-shell { padding: clamp(72px, 8vw, 118px) clamp(24px, 5vw, 76px); }
.latest-section { background: var(--paper); }
.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 46px;
}
.section-heading h2, .page-intro h1, .about-band h2, .services h2, .newsletter h2, .not-found h1 {
	margin: 12px 0 0;
	font-family: var(--display);
	font-size: clamp(3.2rem, 6.4vw, 7rem);
	font-weight: 900;
	letter-spacing: -.035em;
	line-height: .88;
	text-transform: uppercase;
}
.section-heading h2 { max-width: 850px; }
.outline-button {
	flex: 0 0 auto;
	border: 1px solid var(--ink);
	padding: 0 20px;
	font-size: .75rem;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.outline-button:hover { background: var(--ink); color: white; }
.news-grid, .archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 52px 24px;
}
.about-band {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
	gap: 8vw;
	background: radial-gradient(circle at 87% 20%, rgba(122, 60, 255, .22), transparent 26%), var(--ink);
	color: white;
	padding: clamp(80px, 9vw, 140px) clamp(24px, 5vw, 76px);
}
.about-band h2 { max-width: 850px; }
.about-band > div:last-child { align-self: end; }
.about-band > div:last-child > p { margin: 0 0 28px; color: #c7c7c3; font-size: 1.05rem; line-height: 1.75; }
.text-link.light { color: var(--acid); }
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 28px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.service-grid article { min-height: 270px; padding: 28px; }
.service-grid article + article { border-left: 1px solid var(--line); }
.service-grid span { color: var(--purple); font-family: var(--display); font-size: 1.7rem; }
.service-grid h3 {
	margin: 54px 0 12px;
	font-family: var(--display);
	font-size: clamp(2.3rem, 4vw, 4.6rem);
	letter-spacing: -.02em;
	line-height: .9;
	text-transform: uppercase;
}
.service-grid p { max-width: 310px; margin: 0; color: #5f5e59; line-height: 1.6; }
.newsletter {
	display: grid;
	grid-template-columns: minmax(180px, .35fr) minmax(0, 1.65fr);
	gap: 48px;
	background: var(--acid);
	padding: clamp(60px, 7vw, 108px) clamp(24px, 5vw, 76px);
}
.newsletter h2 { max-width: 900px; }
.newsletter .primary-button { margin-top: 34px; background: var(--ink); color: white; }

.site-footer {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 80px;
	background: var(--ink);
	color: white;
	padding: 78px clamp(24px, 5vw, 76px) 30px;
}
.footer-brand > span { font-family: var(--display); font-size: clamp(3.5rem, 7vw, 7.5rem); line-height: .82; }
.footer-brand p { max-width: 420px; color: #aaa9a5; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.footer-links > div { display: flex; align-items: flex-start; flex-direction: column; gap: 14px; }
.footer-links .eyebrow { margin-bottom: 12px; color: var(--acid); }
.footer-links a { color: #cfceca; font-size: .9rem; }
.footer-links a:hover { color: white; }
.footer-bottom {
	display: flex;
	grid-column: 1 / -1;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 36px;
	border-top: 1px solid rgba(255, 255, 255, .15);
	padding-top: 26px;
	color: #807f7b;
	font-size: .72rem;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.page-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
	gap: 48px;
	background: var(--ink);
	color: white;
	padding: clamp(72px, 8vw, 118px) clamp(24px, 5vw, 76px);
}
.page-intro h1 { max-width: 900px; color: var(--acid); }
.page-intro > p { align-self: end; max-width: 520px; margin: 0; color: #b9b8b4; font-size: 1.08rem; line-height: 1.75; }
.filter-bar {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	border-bottom: 1px solid var(--line);
	padding: 22px clamp(24px, 5vw, 76px);
	scrollbar-width: none;
}
.filter-pill {
	flex: 0 0 auto;
	border: 1px solid var(--ink);
	padding: 10px 16px;
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.filter-pill.active, .filter-pill:hover { background: var(--acid); }
.archive-empty { grid-column: 1 / -1; border: 1px dashed var(--line); padding: 54px; text-align: center; }
.pagination { grid-column: 1 / -1; }
.nav-links { display: flex; justify-content: center; gap: 8px; }
.page-numbers { border: 1px solid var(--ink); padding: 10px 14px; }
.page-numbers.current { background: var(--acid); }

.article-main { background: var(--paper-bright); }
.article-hero { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); min-height: 700px; }
.article-hero-copy {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: clamp(50px, 7vw, 108px);
}
.article-hero-copy h1 {
	margin: 18px 0 28px;
	font-family: var(--display);
	font-size: clamp(4.4rem, 8vw, 9rem);
	letter-spacing: -.045em;
	line-height: .82;
	text-transform: uppercase;
}
.article-lead { max-width: 620px; margin: 0; color: #595853; font-size: 1.08rem; line-height: 1.7; }
.article-hero-image { min-height: 620px; }
.article-hero-image img { width: 100%; height: 100%; filter: grayscale(1); object-fit: cover; }
.article-body-wrap {
	display: grid;
	grid-template-columns: 220px minmax(0, 760px);
	justify-content: center;
	gap: 54px;
	padding: 86px 24px 112px;
}
.article-byline { border-top: 4px solid var(--acid); padding-top: 16px; }
.article-byline strong, .article-byline span, .article-byline time { display: block; }
.article-byline strong { font-size: .82rem; }
.article-byline span, .article-byline time { margin-top: 7px; color: #77766f; font-size: .76rem; }
.article-content p {
	margin: 0 0 1.55em;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.12rem, 1.8vw, 1.32rem);
	line-height: 1.8;
}
.article-content > p:first-child::first-letter {
	float: left;
	margin: .06em .12em 0 0;
	color: var(--purple);
	font-family: var(--display);
	font-size: 4.8em;
	line-height: .74;
}
.article-content figure { margin: 40px 0; }
.article-content blockquote { margin: 40px 0; border-left: 6px solid var(--acid); padding-left: 28px; font-size: 1.35em; }
.back-link { display: inline-flex; gap: 8px; margin-top: 24px; font-size: .78rem; font-weight: 850; text-transform: uppercase; }
.standard-page .page-content { width: min(760px, calc(100% - 48px)); margin: 0 auto; padding: 72px 0 110px; font-size: 1.08rem; line-height: 1.8; }

/* Contacto */
.contact-hero,
.about-hero {
	display: grid;
	min-height: 560px;
	align-items: end;
	background:
		linear-gradient(100deg, rgba(0, 0, 0, .96), rgba(0, 0, 0, .38)),
		url("assets/images/crowd-night.png") center / cover;
	color: white;
	padding: clamp(80px, 10vw, 150px) clamp(24px, 5vw, 76px) clamp(70px, 8vw, 112px);
}
.contact-hero > div,
.about-hero > div { width: min(1120px, 100%); }
.contact-hero h1,
.about-hero h1 {
	max-width: 920px;
	margin: 14px 0 22px;
	font-family: var(--display);
	font-size: clamp(3.2rem, 6.4vw, 7rem);
	font-weight: 900;
	letter-spacing: -.035em;
	line-height: .88;
	text-transform: uppercase;
}
.contact-hero p:not(.eyebrow),
.about-hero p:not(.eyebrow) {
	max-width: 680px;
	margin-bottom: 0;
	color: #d0cfcb;
	font-size: 1.1rem;
	line-height: 1.7;
}
.contact-main {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr);
	gap: clamp(48px, 7vw, 112px);
	align-items: start;
	background: var(--paper);
}
.contact-section-heading { margin-bottom: 32px; }
.contact-section-heading h2,
.contact-form-heading h2,
.about-story h2,
.about-cta h2 {
	margin: 14px 0 18px;
	font-family: var(--display);
	font-size: clamp(3.3rem, 5.8vw, 6.5rem);
	letter-spacing: -.035em;
	line-height: .87;
	text-transform: uppercase;
}
.contact-section-heading h2 { max-width: 560px; }
.contact-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}
.contact-cards a {
	position: relative;
	display: flex;
	min-height: 210px;
	flex-direction: column;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 22px;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.contact-cards a:hover,
.contact-cards a:focus-visible {
	z-index: 1;
	background: var(--ink);
	color: white;
	transform: translateY(-3px);
}
.contact-cards span {
	margin-top: 44px;
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.contact-cards .contact-card-index {
	margin: 0;
	color: var(--purple);
	font-family: var(--display);
	font-size: 1.45rem;
	letter-spacing: 0;
}
.contact-cards strong {
	margin-top: 8px;
	overflow-wrap: anywhere;
	font-family: var(--display);
	font-size: clamp(1.45rem, 2.2vw, 2.2rem);
	line-height: .95;
}
.contact-cards em {
	margin-top: auto;
	padding-top: 24px;
	color: #74736e;
	font-size: .7rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.contact-cards a:hover em,
.contact-cards a:focus-visible em { color: var(--acid); }
.contact-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 18px;
	border-top: 7px solid var(--acid);
	background: var(--ink);
	color: white;
	padding: clamp(28px, 4vw, 48px);
}
.contact-form-heading,
.contact-field-full,
.contact-notice { grid-column: 1 / -1; }
.contact-form-heading { margin-bottom: 10px; }
.contact-form-heading .eyebrow { color: var(--acid); }
.contact-form-heading h2 { color: white; }
.contact-form-heading > p:last-child {
	max-width: 620px;
	margin: 0;
	color: #aaa9a5;
	line-height: 1.65;
}
.contact-field {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 9px;
	margin: 0;
}
.contact-field label {
	color: #c5c5c1;
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
	width: 100%;
	border: 1px solid #3b3c3c;
	border-radius: 0;
	outline: 0;
	background: #131414;
	color: white;
	padding: 14px 15px;
}
.contact-field textarea { min-height: 170px; resize: vertical; }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
	border-color: var(--acid);
	box-shadow: 0 0 0 1px var(--acid);
}
.contact-honeypot {
	position: absolute;
	left: -9999px;
}
.contact-consent {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	color: #aaa9a5;
	font-size: .78rem;
	line-height: 1.5;
}
.contact-consent input {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	margin: 1px 0 0;
	accent-color: var(--acid);
}
.contact-submit { display: flex; align-items: center; gap: 20px; margin-top: 6px; }
.contact-submit .primary-button { flex: 0 0 auto; border: 0; }
.contact-notice {
	margin: 0;
	border: 1px solid currentColor;
	padding: 13px 15px;
	font-size: .82rem;
	line-height: 1.5;
}
.contact-notice.success { color: var(--acid); }
.contact-notice.error { color: #ff7a7a; }

/* Quiénes somos */
.about-hero {
	background:
		radial-gradient(circle at 82% 22%, rgba(122, 60, 255, .35), transparent 28%),
		linear-gradient(100deg, rgba(0, 0, 0, .97), rgba(0, 0, 0, .58)),
		url("assets/images/hero-concert.png") center / cover;
}
.about-story {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
	gap: clamp(48px, 8vw, 120px);
	align-items: end;
}
.about-story h2 { max-width: 760px; margin-bottom: 0; }
.about-story-copy {
	border-top: 6px solid var(--acid);
	padding-top: 28px;
}
.about-story-copy p {
	margin: 0 0 22px;
	color: #55554f;
	font-size: 1.05rem;
	line-height: 1.75;
}
.about-values { background: var(--ink); color: white; }
.about-value-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, .18);
	border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.about-value-grid article { min-height: 340px; padding: 30px; }
.about-value-grid article + article { border-left: 1px solid rgba(255, 255, 255, .18); }
.about-value-grid span { color: var(--purple); font-family: var(--display); font-size: 1.7rem; }
.about-value-grid h2 {
	margin: 70px 0 14px;
	font-family: var(--display);
	font-size: clamp(2.6rem, 4.2vw, 4.8rem);
	line-height: .9;
	text-transform: uppercase;
}
.about-value-grid p { max-width: 330px; margin: 0; color: #aaa9a5; line-height: 1.65; }
.about-cta {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	background: var(--acid);
	padding: clamp(64px, 8vw, 110px) clamp(24px, 5vw, 76px);
}
.about-cta h2 { margin-bottom: 0; }
.dark-button { flex: 0 0 auto; background: var(--ink); color: white; }

.not-found { min-height: 70svh; background: var(--ink); color: white; padding: 12vw 6vw; }
.not-found h1 { max-width: 900px; margin-bottom: 40px; }

@keyframes rise-in {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
	.desktop-nav .menu { gap: 22px; }
	.hero-editorial { grid-template-columns: minmax(0, 1.55fr) minmax(310px, .75fr); }
	.news-grid, .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.site-footer { grid-template-columns: 1fr; gap: 54px; }
	.contact-main { grid-template-columns: 1fr; }
	.contact-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
	.site-header { height: 78px; padding: 0 24px; }
	.brand { width: 134px; height: 78px; }
	.brand .custom-logo,
	.brand .brand-link img {
		max-width: 128px;
		max-height: 70px;
	}
	.desktop-nav { display: none; }
	.menu-toggle {
		display: flex;
		width: 44px;
		height: 44px;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 7px;
		border: 1px solid rgba(255, 255, 255, .24);
		background: transparent;
	}
	.menu-toggle > span:not(.screen-reader-text) { width: 20px; height: 2px; background: white; }
	.mobile-navigation {
		position: fixed;
		top: 78px;
		right: 0;
		left: 0;
		display: none;
		background: var(--ink);
		padding: 18px 24px 28px;
	}
	.mobile-navigation.is-open { display: block; }
	.mobile-navigation .menu { margin: 0; padding: 0; list-style: none; }
	.mobile-navigation a {
		display: block;
		border-bottom: 1px solid rgba(255, 255, 255, .12);
		padding: 16px 0;
		font-family: var(--display);
		font-size: 1.65rem;
		text-transform: uppercase;
	}
	.hero-editorial { min-height: 0; grid-template-columns: 1fr; }
	.hero-story { min-height: 680px; }
	.hero-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; gap: 18px; }
	.post-card-compact + .post-card-compact { border-top: 0; border-left: 1px solid var(--line); padding-top: 0; padding-left: 18px; }
	.about-band, .newsletter, .page-intro, .article-hero, .article-body-wrap { grid-template-columns: 1fr; }
	.about-band > div:last-child { align-self: start; }
	.service-grid { grid-template-columns: 1fr; }
	.service-grid article + article { border-top: 1px solid var(--line); border-left: 0; }
	.article-hero-image { min-height: 500px; }
	.article-body-wrap { gap: 38px; }
	.article-byline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
	.contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.about-story { grid-template-columns: 1fr; }
	.about-value-grid { grid-template-columns: 1fr; }
	.about-value-grid article { min-height: 260px; }
	.about-value-grid article + article { border-top: 1px solid rgba(255, 255, 255, .18); border-left: 0; }
	.about-value-grid h2 { margin-top: 44px; }
	.about-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
	.site-header { padding: 0 16px; }
	.hero-story { min-height: 650px; background-position: 64% center; }
	.hero-copy { right: 22px; bottom: 64px; left: 22px; }
	.hero-copy h1 { font-size: clamp(4.7rem, 23vw, 6.4rem); }
	.primary-button { width: 100%; min-width: 0; }
	.hero-caption { display: none; }
	.hero-rail, .news-grid, .archive-grid { grid-template-columns: 1fr; }
	.post-card-compact + .post-card-compact { border-top: 1px solid var(--line); border-left: 0; padding-top: 20px; padding-left: 0; }
	.ticker { justify-content: flex-start; }
	.section-heading { align-items: flex-start; flex-direction: column; }
	.outline-button { width: 100%; }
	.newsletter { gap: 30px; }
	.footer-links { grid-template-columns: 1fr 1fr; }
	.footer-bottom { align-items: flex-start; flex-direction: column; }
	.article-hero-copy { padding: 54px 24px; }
	.article-hero-copy h1 { font-size: clamp(4rem, 20vw, 6.5rem); }
	.article-hero-image { min-height: 390px; }
	.article-byline { grid-template-columns: 1fr; }
	.contact-hero, .about-hero { min-height: 500px; }
	.contact-cards, .contact-form { grid-template-columns: 1fr; }
	.contact-form > * { grid-column: 1 / -1; }
	.contact-submit { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
