@charset "UTF-8";
/*
Theme Name:     Palermo Based Theme
Description:    Palermo based theme.
Author:         Bracket
Author URI:     https://bracketmedia.com
Version:        2.0
Text Domain:    palermo
*/

:root {
	--navy: #0D1B2A;
	--bg: #0b121e;
	--red: #C8102E;
	--red-deep: #a60d25;
	--navy-mid: #152338;
	--white: #FFFFFF;
	--light: #f9f9f9;
	--border: #E2E8F0;
	--text: #1A1A2E;
	--muted: #64748B;
}

html {
	scroll-behavior: smooth;
}

a {
	color: var(--red);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.container {
	max-width: 1540px;
	margin: 0 auto;
	padding: 0 60px;
}

@media only screen and (max-width: 768px) {
	.container {
		padding: 0 30px;
	}
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--text);
	background: var(--light);
	line-height: 1.6;
	font-size: 16px;
}

body.home {
	color: white;
	background: var(--bg);
}

/* ── Hero ── */
.hero {
	position: relative;
	min-height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

@media only screen and (max-width: 768px) {
	.hero {
		height: auto;
	}
}

/* Background photo */
.hero-bg {
	position: absolute;
	inset: 0;
	background-image: url('files/home.webp');
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
}

@media only screen and (max-width: 1050px) {
	.hero-bg {
		background-position: top left;
	}
}

@media only screen and (max-width: 900px) {
	.hero-bg {
		height: 80vh;
	}
}

@media only screen and (max-width: 768px) {
	.hero-bg {
		height: 60vh;
	}
}

/* Fade photo → dark on the right */
.hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right,
			rgba(11, 18, 30, 0.05) 0%,
			rgba(11, 18, 30, 0.25) 30%,
			rgba(11, 18, 30, 0.82) 52%,
			rgba(11, 18, 30, 1) 66%);
}

@media only screen and (max-width: 1050px) {
	.hero-bg::after {
		background: linear-gradient(to bottom,
				rgba(11, 18, 30, 0.05) 0%,
				rgba(11, 18, 30, 0.25) 30%,
				rgba(11, 18, 30, 0.82) 52%,
				rgba(11, 18, 30, 1) 66%);
	}
}

@media only screen and (max-width: 900px) {
	.hero-bg::after {
        height: 50%;
        top: auto;
        bottom: 0;
	}
}



/* Top/bottom vignette */
.hero-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			rgba(11, 18, 30, 0.55) 0%,
			transparent 18%,
			transparent 75%,
			rgba(11, 18, 30, 0.5) 100%);
	z-index: 1;
}

/* ── Nav ── */
.nav {
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 36px 60px 24px;
}

.nav img {
	height: 38px;
}

/* ── Main content ── */
.home .content {
	position: relative;
	z-index: 10;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 80px 48px;
}

@media only screen and (max-width: 1050px) {
	.home .content {
		align-items: flex-end;
		width: 100%;
		box-sizing: border-box;
		padding-top: 700px;
	}
}

@media only screen and (max-width: 768px) {
	.home .content {
		padding: 80px 30px;
		padding-top: 350px;
	}
}

.home .content-inner {
	max-width: 50%;
	width: 100%;
}

@media only screen and (max-width: 1050px) {
	.home .content-inner {
		max-width: 100%;
	}
}


.accent-line {
	width: 44px;
	height: 3px;
	background: var(--red);
	margin-bottom: 18px;
}

.eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 14px;
}

.hero-title {
	font-size: 46px;
	font-weight: 700;
	line-height: 1.1;
	color: var(--red);
	margin-bottom: 22px;
	letter-spacing: -0.5px;
}

@media only screen and (max-width: 768px) {
	.hero-title {
		font-size: 35px;
	}
}

.punchy-lines {
	margin-bottom: 18px;
}

.punchy-lines p {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.8;
	color: white;
}

.body-text {
	font-size: 13px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 14px;
}

.red-italic {
	font-size: 14px;
	font-weight: 700;
	color: var(--red);
	font-style: italic;
	margin-bottom: 18px;
}

.truth-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 6px;
}

.big-quote {
	font-size: 22px;
	font-style: italic;
	font-weight: 500;
	line-height: 1.45;
	color: white;
	margin-bottom: 32px;
}

/* FOOTER */
footer {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.5);
	padding: 24px 0;
	font-size: 13px;
}

footer .foot-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 36px;
	margin-bottom: 36px;
}

footer h5 {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: white;
	margin-bottom: 14px;
	font-weight: 700;
}

footer ul {
	list-style: none;
}

footer li {
	margin-bottom: 8px;
}

footer a {
	color: rgba(255, 255, 255, 0.6);
}

footer a:hover {
	color: white;
	text-decoration: none;
}

.foot-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	font-size: 12px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

/* ── Buttons ── */
.ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.5px;
	padding: 13px 26px;
	border-radius: 0 0 20px 0;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: opacity 0.15s;
}

.btn:hover {
	opacity: 0.82;
	text-decoration: none;
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	backdrop-filter: blur(4px);
}

.btn-navy {
	background: linear-gradient(135deg, #0D1B2A 0%, #1e3a5a 100%);
	color: white;
}

.btn-red {
	background: var(--red);
	color: white;
}

.btn-red:hover {
	background: var(--red-deep);
	opacity: 1;
}



/* HERO */
.hero--campaign {
	height: auto;
	min-height: 0;
	background: linear-gradient(to bottom, var(--navy) 0%, var(--navy-mid) 100%);
}

.hero--campaign .hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right,
			rgba(11, 18, 30, 0.05) 0%,
			rgba(11, 18, 30, 0.25) 30%,
			rgba(11, 18, 30, 0.82) 52%,
			rgba(11, 18, 30, 1) 66%);
}

.hero--campaign.hero-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			rgba(11, 18, 30, 0.55) 0%,
			transparent 18%,
			transparent 75%,
			rgba(11, 18, 30, 0.5) 100%);
	z-index: 1;
}

.hero--campaign .hero-nav {
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 36px 60px 24px;
}

.hero--campaign .hero-nav img {
	height: 38px;
}

.hero--campaign .hero-content {
	position: relative;
	z-index: 10;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 100px 80px;
}

@media only screen and (max-width: 768px) {
	.hero--campaign .hero-content {
		padding: 100px 30px;
	}
}

.hero--campaign .hero-inner {
	/* /max-width: 760px; */
	max-width: 950px;
	width: 100%;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	margin: 0 auto;
}

.accent-line {
	width: 44px;
	height: 3px;
	background: var(--red);
	margin-bottom: 18px;
}

.hero--campaign .hero-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 14px;
}

.hero--campaign h1 {
	font-size: 46px;
	font-weight: 700;
	line-height: 1.1;
	color: var(--red);
	margin-bottom: 22px;
	letter-spacing: -0.5px;
}

.hero--campaign h1 em {
	color: white;
	font-style: normal;
}

.hero--campaign .hero-lede {
	font-size: 14px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 32px;
}

.hero--campaign .hero-ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
	.hero--campaign .hero-ctas {
		justify-content: center;
	}
}

.btn {
	display: inline-block;
	background: var(--red);
	color: white !important;
	padding: 12px 26px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	border: none;
	cursor: pointer;
	border-radius: 0 0 20px 0;
	transition: background 0.15s;
	text-decoration: none;
}

.btn:hover {
	background: var(--red-deep);
	text-decoration: none;
}

.btn-outline {
	background: transparent;
	border: 2px solid white;
	color: white !important;
}

.btn-outline:hover {
	background: white;
	color: var(--navy) !important;
}

.btn-big {
	padding: 16px 32px;
	font-size: 14px;
}


/* ANALOGY BANNER */
.analogy {
	background: var(--red);
	color: white;
	padding: 40px 0;
	text-align: center;
}

.analogy p {
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-style: italic;
	max-width: 880px;
	margin: 0 auto;
	line-height: 1.5;
}

.analogy p strong {
	font-style: normal;
	font-weight: 700;
}

/* STATS */
.stats {
	padding: 64px 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.stat-num {
	font-size: 58px;
	font-weight: 900;
	color: var(--navy);
	line-height: 1;
	margin-bottom: 10px;
}

.stat-num sup {
	font-size: 26px;
	color: var(--red);
	vertical-align: super;
}

.stat-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--muted);
	font-weight: 700;
}

/* SECTION BASE */
section.content {
	padding: 80px 0;
}

.section-eyebrow {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #50616B;
	font-weight: 600;
	text-align: center;
	margin-bottom: 5px;
}

.section-title {
	font-size: 30px;
	line-height: 1.15;
	color: var(--navy);
	margin-bottom: 18px;
	letter-spacing: -0.3px;
	font-weight: 700;
	text-align: center;
}

.section-lede {
	font-size: 16px;
	font-weight: 300;
	;
	color: var(--muted);
	/*max-width: 680px;*/
	max-width: 900px;
	margin-bottom: 48px;
	line-height: 1.65;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

/* FIGHT SECTION */
.fight {
	background: var(--light);
	padding: 0;
}

.fight-container {
	max-width: 1540px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	min-height: 520px;
	padding: 0 60px;
}


@media only screen and (max-width: 768px) {
	.fight-container {
		padding: 0 30px;
	}
}

.fight-image {
	height: 100%;
	min-height: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fight-image img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	display: block;
	border-radius: 0 0 30px 0;
}

.fight-image-placeholder {
	width: 100%;
	min-height: 520px;
	background: linear-gradient(135deg, #b8cce0 0%, #8aaac8 100%);
	border-radius: 0 0 30px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 600;
}

.fight-content {
	padding: 80px 0 80px 0;
	max-width: 500px;
}

.fight-accent {
	width: 44px;
	height: 3px;
	background: var(--red);
	margin-bottom: 18px;
}

.fight-content .section-eyebrow {
	text-align: left;
}

.fight-title {
	color: var(--red) !important;
	text-align: left;
}

.fight-body {
	font-size: 17px;
	line-height: 1.8;
	color: var(--muted);
	font-family: 'Montserrat', sans-serif;
}

.fight-body p+p {
	margin-top: 18px;
}

.fight-btn {
	display: inline-block;
	background: linear-gradient(135deg, #0D1B2A 0%, #1e3a5a 100%);
	color: white !important;
	padding: 14px 32px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 0 0 20px 0;
	margin-top: 32px;
	transition: opacity 0.15s;
	text-decoration: none;
}

.fight-btn:hover {
	opacity: 0.88;
	text-decoration: none;
}

@media (max-width: 768px) {
	.fight-container {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.fight-image,
	.fight-image img,
	.fight-image-placeholder {
		min-height: 280px;
		border-radius: 0;
	}

	.fight-content {
		padding: 48px 24px;
	}
}

/* FIVE FRONTS */
.fronts {
	background: var(--light);
}

.fronts .container {
	max-width: 1300px;
}

.fronts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;

}

.front {
	background: var(--white);
	padding: 28px 28px 24px;
	border-top: 3px solid var(--red);
	border-radius: 0 0 25px 0;
	box-shadow: 0 2px 16px rgba(13, 27, 42, 0.07);
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: box-shadow 0.2s, transform 0.2s;
}

.front:hover {
	box-shadow: 0 8px 28px rgba(13, 27, 42, 0.12);
	transform: translateY(-2px);
}

.front-icon {
	font-size: 17px;
	color: #ccc;
	display: block;
}

.front-num {
	font-size: 11px;
	font-weight: 700;
	color: var(--muted);
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.front h3 {
	font-size: 19px;
	color: var(--red);
	line-height: 1.25;
	font-weight: 700;
}

.front p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.68;
	flex: 1;
}

.front-rule {
	border: none;
	border-top: 1px solid var(--border);
	margin: 4px 0;
}

.front-btn {
	display: block;
	background: linear-gradient(135deg, #0D1B2A 0%, #1e3a5a 100%);
	color: white !important;
	padding: 13px 20px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 0 0 20px 0;
	text-decoration: none;
	text-align: center;
	transition: opacity 0.15s;
	margin-top: 4px;
}

.front-btn:hover {
	opacity: 0.88;
}

.front-dark {
	border-top: none;
	background: linear-gradient(142deg, var(--Tertiary, #0D1B2A) 0%, #1B4067 100%);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.front-dark:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(13, 27, 42, 0.25);
}

.front-dark .front-icon {
	color: rgba(255, 255, 255, 0.4);
}

.front-dark .front-num {
	color: rgba(255, 255, 255, 0.52);
}

.front-dark h3 {
	color: white;
	font-size: 28px;
}

.front-dark p {
	color: rgba(255, 255, 255, 0.68);
}

.front-dark p a {
	color: #fff;
}

.front-dark .front-rule {
	border-top-color: rgba(255, 255, 255, 0.12);
}

.front-arrow {
	display: none;
	justify-content: flex-end;
	font-size: 22px;
	color: white;
	margin-top: auto;
}

/* 90 DAYS */
.ninety {
	background: var(--navy);
	background: linear-gradient(142deg, var(--Tertiary, #0D1B2A) 0%, #1B4067 100%);
	color: white;
	padding: 80px 0;
}

.ninety .section-eyebrow {
	color: #fff;
}

.ninety .section-title {
	color: white;
}

.ninety .section-lede {
	color: rgba(255, 255, 255, 0.68);
}

.timeline {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin-top: 48px;
}

.timeline-item {
	border-left: 3px solid var(--red);
	padding: 4px 0 4px 20px;
}

.timeline-item h4 {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #fff;
	margin-bottom: 8px;
	font-weight: 700;
}

.timeline-item p {
	font-size: 15px;
	line-height: 1.55;
	opacity: 0.88;
}

/* STORIES */
.stories {
	background: var(--light);
}

.stories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-top: 28px;
}

.story {
	background: var(--white);
	padding: 32px 28px;
	border-top: 3px solid var(--red);
	box-shadow: 0 2px 16px rgba(13, 27, 42, 0.07);
	border-radius: 0 0 3px 3px;
}

.story blockquote {
	font-family: 'Montserrat', sans-serif;
	font-size: 17px;
	line-height: 1.65;
	color: var(--text);
	font-style: italic;
	margin-bottom: 18px;
}

.story .who {
	font-size: 14px;
	font-weight: 700;
	color: var(--navy);
}

.story .where {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--muted);
	margin-top: 4px;
}

/* SPONSORS */
.sponsors {
	background: var(--white);
	padding: 64px 0;
	text-align: center;
}

.sponsors__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--muted) !important;
	margin-bottom: 40px !important;
}

.sponsors__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 32px 48px;
}

.sponsors__item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sponsors__item img {
	height: 96px; 
	width: auto;
	max-width: 120px;
	object-fit: contain;
	filter: grayscale(1) opacity(0.55);
	transition: filter 0.25s ease;
}

.sponsors__item img:hover {
	filter: grayscale(0.2) opacity(0.9);
}

@media (max-width: 600px) {
	.sponsors {
		padding: 48px 0;
	}

	.sponsors__grid {
		gap: 24px 32px;
	}

	.sponsors__item img {
		height: 72px;
		max-width: 180px;
	}
}

/* WIN */
.win {
	background: var(--red);
	color: white;
	padding: 80px 0;
	text-align: center;
}

/*.win h2 {
	font-size: 36px;
	line-height: 1.2;
	max-width: 840px;
	margin: 0 auto 24px;
	font-weight: 700;
}*/

.win h2 {
	font-size: 30px;
	line-height: 1.2;
	max-width: 1150px;
	margin: 0 auto 24px;
	font-weight: 700;
}

.win p {
	font-size: 17px;
	max-width: 600px;
	margin: 0 auto 32px;
	opacity: 0.92;
}

.win .btn-outline {
	border-color: white;
	color: white !important;
}

.win .btn-outline:hover {
	background: white;
	color: var(--red) !important;
}

/* JOIN CTA */
.join {
	background: var(--white);
	padding: 96px 0;
	text-align: center;
}

.join h2 {
	font-size: 42px;
	color: var(--navy);
	margin-bottom: 16px;
	font-weight: 700;
}

.join>.container>p {
	margin-top: 20px;
	font-size: 17px;
	color: var(--muted);
	max-width: 580px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

.join-form {
	display: flex;
	gap: 0;
	max-width: 760px;
	margin: 0 auto;
	box-shadow: 0 4px 24px rgba(13, 27, 42, 0.1);
	border-radius: 0 0 20px 0;
	overflow: hidden;
}

@media only screen and (max-width: 768px) {
	.join-form {
		flex-direction: column;
	}
}

.join-form input {
	flex: 1;
	padding: 18px 22px;
	border: none;
	border-right: 1px solid var(--border);
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	outline: none;
	background: var(--white);
	color: var(--text);
	min-width: 0;
}

@media only screen and (max-width: 768px) {
	.join-form input {
		height: 55px;
	}
}

.join-form input::placeholder {
	color: var(--muted);
}

.join-form input:focus {
	background: #fafafa;
}

.join-form .state-input {
	flex: 0 0 180px;
	border-right: 1px solid var(--border);
}

.join-form button {
	border: none;
	border-radius: 0;
	flex-shrink: 0;
	padding: 18px 36px;
	font-size: 13px;
	cursor: pointer;
}

.join-note {
	font-size: 13px;
	color: var(--muted);
	margin-top: 20px !important;
	font-style: italic;
}

/* FOOTER */
footer {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.5);
	padding: 24px 0;
	font-size: 13px;
}

footer .foot-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 36px;
	margin-bottom: 36px;
}

footer h5 {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: white;
	margin-bottom: 14px;
	font-weight: 700;
}

footer ul {
	list-style: none;
}

footer li {
	margin-bottom: 8px;
}

footer a {
	color: rgba(255, 255, 255, 0.6);
}

footer a:hover {
	color: white;
	text-decoration: none;
}

.foot-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	font-size: 12px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 36px;
	}

	.hero-lede {
		font-size: 17px;
	}

	.analogy p {
		font-size: 18px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.stat-num {
		font-size: 44px;
	}

	.section-title {
		font-size: 28px;
	}

	.win h2 {
		font-size: 26px;
	}

	.join h2 {
		font-size: 28px;
	}

	footer .foot-top {
		grid-template-columns: 1fr 1fr;
	}

	.nav-links a:not(.btn) {
		display: none;
	}
}

#join .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}


figcaption {
	font-size: 10px;
	color: rgba(0, 0, 0, 0.5);
	margin-top: 5px;
	padding: 0 15px;
	text-align: center;
	font-weight: 600;
}

/* ─── Hero ─── */
.hero--letter {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

@media only screen and (max-width: 768px) {
	.hero--letter {
		background: var(--navy);
	}
}

.hero--letter .hero-bg {
	position: absolute;
	inset: 0;
	background-image: url('files/letter.webp');
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
}


@media only screen and (max-width: 768px) {
	.hero--letter .hero-bg {
		position: relative;
		aspect-ratio: 16/9;
	}
}


.hero--letter .hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(11, 18, 30, 0.3) 0%,
			transparent 70%,
			transparent 85%,
			rgba(11, 18, 30, 1) 100%);
	z-index: 1;
}

.hero--letter .hero-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			rgba(11, 18, 30, 0.3) 0%,
			transparent 10%,
			transparent 25%,
			rgba(11, 18, 30, 1) 100%);
	z-index: 1;
}

@media only screen and (max-width: 768px) {

	.hero--letter .hero-bg::after,
	.hero--letter .hero-bg::before {
		display: none;
	}
}

.hero--letter .hero-nav {
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 36px 60px 24px;
}

.hero--letter .hero-nav img {
	height: 38px;
}

.hero--letter .hero-content {
	position: relative;
	z-index: 10;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 80px 48px;
	margin: 0 auto;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	.hero--letter .hero-content {
		padding: 0 30px 48px;
	}
}


.hero--letter .hero-inner {
	padding-top: 50%;
	max-width: 760px;
	width: 100%;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

@media only screen and (max-width: 1024px) {
	.hero--letter .hero-inner {
		padding-top: 25%;
	}
}

@media only screen and (max-width: 768px) {
	.hero--letter .hero-inner {
		padding-top: 40px;
	}
}



.hero--letter .accent-line {
	width: 44px;
	height: 3px;
	background: white;
	margin-bottom: 18px;
}

.hero--letter .hero-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 1);
	margin-bottom: 14px;
}

.hero--letter .hero-headline {
	font-size: 46px;
	font-weight: 700;
	line-height: 1.1;
	color: rgba(255, 255, 255, 1);
	margin-bottom: 22px;
	letter-spacing: -0.5px;
}

@media only screen and (max-width: 768px) {
	.hero--letter .hero-headline {
		font-size: 30px;
	}
}

.hero--letter .hero-headline em {
	color: white;
	font-style: normal;
	font-weight: 500;
}

.hero--letter .hero-sub {
	font-size: 18px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 1);
	margin-bottom: 32px;
}

.hero--letter .hero-cta-wrap {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* ─── Buttons ─── */
.btn-donate,
.hero--letter .hero-cta {
	display: inline-block;
	background: var(--red);
	color: #fff !important;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 10px 22px;
	border-radius: 0 0 20px 0;
	transition: background 0.15s;
	border: none;
	cursor: pointer;
}

.btn-donate:hover,
.hero--letter .hero-cta:hover {
	background: var(--red-deep);
}

.btn-donate-lg {
	display: inline-block;
	background: linear-gradient(135deg, var(--navy) 0%, #1e3a5a 100%);
	color: #fff !important;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 16px 44px;
	border-radius: 0 0 20px 0;
	transition: opacity 0.15s;
}

.btn-donate-lg:hover {
	opacity: 0.88;
}



/* ─── Content ─── */
.rule,
.pull-quote:before,
.pull-quote:after {
	border: none;
	border-top: 3px solid var(--red);
	width: 48px;
	margin: 0 auto 32px;
}

.pull-quote:after {
	content: '';
	display: block;
}

.pull-quote:after {
	margin: 32px auto 0;
}

.content-wrap {
	max-width: 1080px;
	margin: 0 auto;
	padding: 64px 60px 96px;
}

.letter-intro {
	text-align: center;
	margin-bottom: 48px;
}

.letter-intro p {
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 8px;
	font-weight: 600;
}

.letter-intro h2 {
	font-size: clamp(1.4rem, 3vw, 2rem);
	color: var(--navy);
	font-weight: 700;
	line-height: 1.25;
}

.letter-body p {
	font-size: 1rem;
	margin-bottom: 1.4em;
	color: var(--text);
	line-height: 1.85;
}

.letter-body .salutation {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 1.6em;
}

.pull-quote {
	color: var(--red);
	padding: 0 32px;
	margin: 40px 0;
	font-size: 1.55rem;
	font-style: italic;
	line-height: 1.6;
	border-radius: 0 0 20px 0;
	font-weight: 700;
	text-align: center;
	position: relative;
}

.pull-quote cite {
	display: block;
	margin-top: 12px;
	font-size: 12px;
	letter-spacing: 1px;
	font-style: normal;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.5);
}

.punchy {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 0.5em;
}

.punchy-group {
	margin: 28px 0 32px;
	padding-left: 20px;
	border-left: 3px solid var(--border);
}

.action-list {
	list-style: none;
	padding: 0;
	margin: 24px 0 36px;
}

.action-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 12px;
	font-size: 1rem;
	line-height: 1.7;
}

.action-list li::before {
	content: '▸';
	color: var(--red);
	font-size: 1rem;
	flex-shrink: 0;
	margin-top: 4px;
}

/* ─── Sign-off ─── */
.sign-off {
	display: flex;
	align-items: flex-start;
	gap: 32px;
	margin-top: 52px;
	padding-top: 36px;
	border-top: 1px solid var(--border);
}

.sign-off img {
	width: 110px;
	flex-shrink: 0;
	border-radius: 3px;
	filter: grayscale(15%);
}

.sign-off-text p {
	font-size: 1rem;
	margin-bottom: 0.4em;
	color: var(--text);
}

.sign-off-text .signature {
	font-size: 1.5rem;
	font-style: italic;
	color: var(--navy);
	margin: 10px 0 4px;
}

.sign-off-text .title {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--red);
}

/* ─── CTA Block ─── */
.cta-block {
	background: var(--navy);
	text-align: center;
	padding: 80px 60px;
}

.cta-block h2 {
	color: #fff;
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	margin-bottom: 16px;
	line-height: 1.2;
	font-weight: 700;
}

.cta-block h2 em {
	color: var(--red);
	font-style: normal;
}

.cta-block p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 1rem;
	max-width: 500px;
	margin: 0 auto 36px;
	line-height: 1.65;
}

/* ─── Footer ─── */
footer {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.5);
	text-align: center;
	padding: 24px 60px;
	font-size: 13px;
}

footer a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
}

footer a:hover {
	color: #fff;
}

@media (max-width: 600px) {
	.sticky-bar {
		padding: 12px 20px;
	}

	.content-wrap {
		padding: 48px 24px 72px;
	}

	.cta-block {
		padding: 60px 24px;
	}

	.sign-off {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.sign-off img {
		width: 100px;
	}

	.pull-quote {
		padding: 22px 20px;
		font-size: 1.05rem;
	}
}
