/* ========================================================================
   Middle Class Priorities — main stylesheet
   Layered on top of theme.json design tokens. Handles drop shadows, hover
   states, and detail work that block theme tokens cannot express.
   ======================================================================== */

/* ---------- Base ---------- */

html { scroll-behavior: smooth; }

body {
	font-feature-settings: "ss01", "ss02";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

::selection {
	background: #E8A020;
	color: #0A1F3D;
}

/* ---------- Display headlines: vermilion drop shadow signature ---------- */

.mcp-shadow,
.mcp-hero-title,
.mcp-stamp {
	text-shadow: 0.25vw 0.25vw 0 #CC3300;
}

.mcp-hero-title {
	text-shadow: clamp(4px, 0.6vw, 12px) clamp(4px, 0.6vw, 12px) 0 #CC3300;
}

@media (max-width: 600px) {
	.mcp-hero-title { text-shadow: 4px 4px 0 #CC3300; }
}

/* ---------- Hero section ---------- */

.mcp-hero {
	min-height: 88vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.mcp-hero::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-image:
		radial-gradient(circle at 20% 20%, rgba(232, 160, 32, 0.08) 0%, transparent 35%),
		radial-gradient(circle at 80% 80%, rgba(204, 51, 0, 0.10) 0%, transparent 40%);
	pointer-events: none;
}

.mcp-hero > * { position: relative; z-index: 1; }

.mcp-eyebrow {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #E8A020;
	padding: 0.5rem 1rem;
	border: 2px solid #E8A020;
	margin-bottom: 2rem;
}

/* ---------- Buttons: vermilion shadow on hover ---------- */

.wp-block-button .wp-block-button__link {
	box-shadow: 6px 6px 0 #CC3300;
	transition: transform 180ms ease, box-shadow 180ms ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.wp-block-button .wp-block-button__link::after {
	content: "→";
	display: inline-block;
	font-weight: 800;
	transition: transform 180ms ease;
}

.wp-block-button .wp-block-button__link:hover {
	transform: translate(-2px, -2px);
	box-shadow: 10px 10px 0 #CC3300;
}

.wp-block-button .wp-block-button__link:hover::after {
	transform: translateX(4px);
}

.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent !important;
	color: #FFFFFF !important;
	border: 2px solid #E8A020 !important;
	box-shadow: 6px 6px 0 #CC3300;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: #E8A020 !important;
	color: #0A1F3D !important;
}

/* ---------- Numbered pillar cards ---------- */

.mcp-pillar {
	position: relative;
	padding: 2.5rem 1.5rem 2rem;
	border-top: 4px solid #E8A020;
}

.mcp-pillar-number {
	display: block;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(3rem, 6vw, 5rem);
	line-height: 0.85;
	color: #E8A020;
	letter-spacing: -0.02em;
	margin-bottom: 1.25rem;
}

.mcp-pillar-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	line-height: 1;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.mcp-pillar-body {
	font-size: 1.0625rem;
	line-height: 1.55;
	color: #3A4A66;
}

/* ---------- Section dividers (geometric) ---------- */

.mcp-rule {
	height: 6px;
	background: #E8A020;
	border: 0;
	margin: 0;
	position: relative;
	width: 100%;
}

.mcp-rule::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 25%;
	height: 100%;
	background: #CC3300;
}

/* ---------- Pull quote band ---------- */

.mcp-quote-band {
	position: relative;
	padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 4vw, 4rem);
}

.mcp-quote-text {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: clamp(2.5rem, 6vw, 5rem);
	line-height: 0.95;
	letter-spacing: -0.015em;
	text-transform: uppercase;
}

.mcp-quote-mark {
	color: #E8A020;
	font-weight: 900;
}

/* ---------- Press card list ---------- */

.mcp-press-card {
	background: #FFFFFF;
	border: 2px solid #0A1F3D;
	padding: 2rem;
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
	position: relative;
	height: 100%;
}

.mcp-press-card:hover {
	transform: translate(-3px, -3px);
	box-shadow: 8px 8px 0 #1454C8;
	border-color: #1454C8;
}

.mcp-press-meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #CC3300;
	margin-bottom: 1.25rem;
}

.mcp-press-meta::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 3px;
	background: #CC3300;
}

.mcp-press-card .wp-block-post-title,
.mcp-press-card .wp-block-post-title a {
	font-family: 'Barlow Condensed', sans-serif !important;
	font-weight: 800 !important;
	font-size: clamp(1.125rem, 1.5vw, 1.4rem) !important;
	line-height: 1.05 !important;
	letter-spacing: 0 !important;
	text-transform: uppercase !important;
	margin: 0 0 1rem 0 !important;
	word-break: normal !important;
	overflow-wrap: break-word !important;
	hyphens: manual !important;
}

/* In the homepage 3-up grid the cards are narrower than the press archive's
   2-up grid — tighten the title further so single words don't break across
   lines. */
.wp-block-query .wp-block-post-template.is-layout-grid.columns-3 .mcp-press-card .wp-block-post-title,
.wp-block-query .wp-block-post-template.is-layout-grid.columns-3 .mcp-press-card .wp-block-post-title a {
	font-size: clamp(1rem, 1.25vw, 1.2rem) !important;
}

.mcp-press-card .wp-block-post-title a {
	color: #0A1F3D !important;
	text-decoration: none !important;
}

.mcp-press-card .wp-block-post-title a:hover {
	color: #1454C8 !important;
}

.mcp-press-card .wp-block-post-excerpt {
	color: #3A4A66;
	font-size: 1rem;
	line-height: 1.55;
	margin-bottom: 1.5rem;
}

.mcp-press-card .wp-block-post-excerpt__more-link {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1454C8;
	text-decoration: none !important;
	border-bottom: 2px solid #E8A020;
	padding-bottom: 2px;
}

.mcp-press-card .wp-block-post-excerpt__more-link:hover {
	color: #CC3300;
	border-bottom-color: #CC3300;
}

/* ---------- Press archive page header ---------- */

.mcp-archive-header {
	background: #1454C8;
	color: #FFFFFF;
	padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 4vw, 4rem) clamp(4rem, 8vw, 6rem);
	position: relative;
	overflow: hidden;
}

.mcp-archive-header::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 12px;
	background: linear-gradient(to right, #E8A020 0%, #E8A020 70%, #CC3300 70%, #CC3300 100%);
}

.mcp-archive-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(5rem, 14vw, 12rem);
	line-height: 0.85;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #E8A020;
	text-shadow: clamp(4px, 0.6vw, 10px) clamp(4px, 0.6vw, 10px) 0 #CC3300;
	margin: 0;
}

.mcp-archive-sub {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: clamp(1.125rem, 1.6vw, 1.5rem);
	line-height: 1.4;
	color: #FFFFFF;
	max-width: 36rem;
	margin-top: 1.5rem;
}

/* ---------- Site header ---------- */

.mcp-header {
	border-bottom: 4px solid #0A1F3D;
	background: #FFFFFF;
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(8px);
}

.mcp-wordmark {
	font-family: 'Barlow Condensed', sans-serif !important;
	font-weight: 900 !important;
	font-size: clamp(1.25rem, 2vw, 1.625rem) !important;
	letter-spacing: -0.005em !important;
	text-transform: uppercase !important;
	line-height: 1 !important;
	color: #1454C8 !important;
	text-decoration: none !important;
}

.mcp-wordmark:hover {
	color: #CC3300 !important;
}

/* Nav */
.mcp-nav .wp-block-navigation-item__content,
.mcp-nav a {
	font-family: 'Barlow Condensed', sans-serif !important;
	font-weight: 700 !important;
	font-size: 1rem !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	color: #0A1F3D !important;
	text-decoration: none !important;
	position: relative;
	padding-bottom: 0.25rem !important;
}

.mcp-nav .wp-block-navigation-item__content::after,
.mcp-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: #E8A020;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.mcp-nav .wp-block-navigation-item__content:hover::after,
.mcp-nav a:hover::after {
	transform: scaleX(1);
}

.mcp-nav .current-menu-item .wp-block-navigation-item__content::after,
.mcp-nav .current-menu-item a::after {
	transform: scaleX(1);
}

/* ---------- Footer ---------- */

.mcp-footer {
	background: #0A1F3D;
	color: #FFFFFF;
	position: relative;
}

.mcp-footer::before {
	content: "";
	display: block;
	height: 12px;
	background: linear-gradient(to right, #1454C8 0%, #1454C8 50%, #E8A020 50%, #E8A020 80%, #CC3300 80%, #CC3300 100%);
}

.mcp-footer-wordmark {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(3rem, 8vw, 6rem);
	line-height: 0.9;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #E8A020;
	text-shadow: 4px 4px 0 #CC3300;
	margin: 0 0 0.5rem;
}

.mcp-footer-tagline {
	font-family: 'Inter', sans-serif;
	font-style: italic;
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.125rem;
	margin-bottom: 2rem;
}

.mcp-footer-meta {
	font-family: 'Inter', sans-serif;
	font-size: 0.8125rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 0.01em;
}

.mcp-footer-meta strong {
	color: #FFFFFF;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.75rem;
	display: block;
	margin-bottom: 0.5rem;
}

.mcp-disclosure {
	font-family: 'Inter', sans-serif;
	font-size: 0.6875rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ---------- Single post (press release) ---------- */

.mcp-single {
	max-width: 760px;
	margin: 0 auto;
	padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 4vw, 2rem);
}

.mcp-single .wp-block-post-title {
	font-family: 'Barlow Condensed', sans-serif !important;
	font-weight: 900 !important;
	font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
	line-height: 0.95 !important;
	letter-spacing: -0.015em !important;
	text-transform: uppercase !important;
	color: #0A1F3D !important;
	margin-bottom: 1.5rem !important;
}

.mcp-single-meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #CC3300;
	margin-bottom: 2rem;
}

.mcp-single-meta::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 3px;
	background: #CC3300;
}

.mcp-single .wp-block-post-content {
	font-family: 'Inter', sans-serif;
	font-size: 1.1875rem;
	line-height: 1.7;
	color: #0A1F3D;
}

.mcp-single .wp-block-post-content p:first-of-type::first-letter {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: 4em;
	float: left;
	line-height: 0.85;
	margin: 0.05em 0.1em 0 0;
	color: #1454C8;
}

/* ---------- Utility / decorative ---------- */

.mcp-bar-secondary {
	display: block;
	width: 80px;
	height: 6px;
	background: #E8A020;
}

.mcp-bar-accent {
	display: block;
	width: 80px;
	height: 6px;
	background: #CC3300;
}

/* ---------- Responsive tightening ---------- */

@media (max-width: 781px) {
	.mcp-hero { min-height: 80vh; }
}

@media (max-width: 600px) {
	.mcp-pillar { padding-top: 1.5rem; }
	.mcp-press-card { padding: 1.5rem; }
}
