:root {
	--cream: #fff8ee;
	--paper: #fffdf8;
	--warm: #f3e6d4;
	--burgundy: #7c111b;
	--burgundy-dark: #520910;
	--gold: #c9902f;
	--gold-dark: #a8731d;
	--ink: #241a17;
	--muted: #6f6259;
	--green: #687a57;
	--line: rgba(124, 17, 27, 0.16);
	--shadow: 0 24px 60px rgba(82, 9, 16, 0.13);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: "Inter", Arial, sans-serif;
	line-height: 1.65;
}

img {
	display: block;
	max-width: 100%;
}

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

section {
	scroll-margin-top: 110px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 86px;
	padding: 12px clamp(20px, 5vw, 72px);
	background: rgba(255, 248, 238, 0.94);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(14px);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-width: 260px;
}

.brand img,
.footer-brand img {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 6px 18px rgba(82, 9, 16, 0.18);
}

.brand strong {
	display: block;
	color: var(--burgundy);
	font-family: "Cinzel", Georgia, serif;
	font-size: clamp(1.08rem, 1.6vw, 1.62rem);
	font-weight: 800;
	line-height: 1.05;
}

.brand small {
	display: block;
	margin-top: 2px;
	color: var(--muted);
	font-family: "Lora", Georgia, serif;
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(10px, 2vw, 30px);
	font-size: 0.92rem;
	font-weight: 800;
}

.site-nav a {
	position: relative;
	white-space: nowrap;
	padding: 8px 0;
}

.site-nav a:not(.donate-pill)::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	content: "";
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 160ms ease;
}

.site-nav a:hover::after {
	transform: scaleX(1);
}

.donate-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px !important;
	color: #fff;
	text-transform: uppercase;
	background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
	border-radius: 6px;
	box-shadow: 0 14px 28px rgba(124, 17, 27, 0.24);
}

.hero {
	display: grid;
	grid-template-columns: minmax(340px, 0.9fr) minmax(380px, 1.1fr);
	min-height: calc(100vh - 86px);
	background:
		linear-gradient(90deg, rgba(255, 248, 238, 0.96) 0%, rgba(255, 248, 238, 0.82) 42%, rgba(255, 248, 238, 0.08) 68%),
		var(--paper);
}

.hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 84px);
}

.eyebrow,
.section-kicker {
	margin: 0 0 12px;
	color: var(--gold-dark);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--burgundy-dark);
	font-family: "Lora", Georgia, serif;
	line-height: 1.12;
	letter-spacing: 0;
}

h1 {
	max-width: 680px;
	font-size: clamp(3rem, 5.4vw, 6.2rem);
	font-weight: 700;
}

h2 {
	font-size: clamp(2rem, 3.5vw, 4.15rem);
}

h3 {
	font-size: clamp(1.25rem, 1.8vw, 1.7rem);
}

.hero-lede {
	max-width: 620px;
	margin: 24px 0 0;
	color: #302520;
	font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.hero-actions,
.project-copy .button,
.mission-copy .button {
	margin-top: 30px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 58px;
	padding: 0 28px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 900;
	text-transform: uppercase;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button-primary {
	color: #fff;
	background: var(--burgundy);
	box-shadow: 0 15px 32px rgba(124, 17, 27, 0.22);
}

.button-outline {
	margin-left: 14px;
	color: var(--burgundy-dark);
	background: rgba(255, 255, 255, 0.56);
	border-color: rgba(124, 17, 27, 0.34);
}

.button-outline.light {
	margin-left: 0;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.38);
}

.button-gold {
	color: #fff;
	background: var(--gold);
	box-shadow: 0 15px 28px rgba(173, 119, 35, 0.2);
}

.button-gold.large {
	min-width: 220px;
}

.hero-media {
	position: relative;
	min-height: 620px;
	overflow: hidden;
}

.hero-media::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	background:
		linear-gradient(90deg, rgba(255, 248, 238, 0.78), rgba(255, 248, 238, 0) 38%),
		linear-gradient(0deg, rgba(82, 9, 16, 0.16), rgba(82, 9, 16, 0));
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.mission-band {
	display: grid;
	grid-template-columns: minmax(300px, 0.58fr) minmax(420px, 1fr);
	align-items: stretch;
	background: var(--paper);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.mission-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(46px, 7vw, 88px) clamp(24px, 6vw, 76px);
}

.mission-copy p:not(.section-kicker),
.project-copy p,
.event-copy p,
.involved-section p,
.contact-card p {
	color: var(--muted);
	font-size: 1.02rem;
}

.mission-photo {
	position: relative;
	margin: 0;
	min-height: 520px;
	overflow: hidden;
}

.mission-photo::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	background: linear-gradient(90deg, var(--paper), rgba(255, 253, 248, 0.35), rgba(255, 253, 248, 0));
}

.mission-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-project {
	display: grid;
	grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
	gap: clamp(28px, 5vw, 80px);
	width: min(1180px, calc(100% - 40px));
	margin: 72px auto;
	padding: clamp(28px, 5vw, 48px);
	background: rgba(255, 253, 248, 0.82);
	border: 1px solid rgba(124, 17, 27, 0.08);
	border-radius: 10px;
	box-shadow: var(--shadow);
}

.project-facts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin: 28px 0 4px;
}

.project-facts div {
	padding-top: 16px;
	border-top: 2px solid rgba(201, 144, 47, 0.32);
}

.project-facts strong {
	display: block;
	color: var(--gold-dark);
	font-family: "Lora", Georgia, serif;
	font-size: 1.22rem;
	line-height: 1.1;
}

.project-facts span {
	display: block;
	margin-top: 8px;
	color: var(--muted);
	font-size: 0.82rem;
	line-height: 1.35;
}

.project-photo {
	margin: 0;
	align-self: center;
}

.project-photo img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 16px 42px rgba(82, 9, 16, 0.14);
}

.project-photo figcaption {
	margin-top: 14px;
	color: var(--muted);
	font-family: "Lora", Georgia, serif;
	font-size: 0.95rem;
	font-style: italic;
	text-align: center;
}

.program-section,
.donate-section,
.recognition-section,
.gallery-section,
.contact-section {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto 78px;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 28px;
}

.section-heading p:not(.section-kicker) {
	color: var(--muted);
}

.program-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.program-grid article,
.donate-grid article,
.contact-card {
	overflow: hidden;
	background: var(--paper);
	border: 1px solid rgba(124, 17, 27, 0.1);
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(82, 9, 16, 0.08);
}

.program-grid img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.program-grid h3,
.program-grid p {
	padding: 0 20px;
}

.program-grid h3 {
	margin-top: 20px;
}

.program-grid p {
	margin-bottom: 22px;
	color: var(--muted);
	font-size: 0.94rem;
}

.event-section {
	display: grid;
	grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1.14fr);
	gap: clamp(26px, 5vw, 68px);
	align-items: center;
	padding: clamp(40px, 6vw, 70px) clamp(22px, 6vw, 76px);
	color: #fff;
	background:
		linear-gradient(135deg, rgba(82, 9, 16, 0.98), rgba(124, 17, 27, 0.92)),
		linear-gradient(45deg, transparent 70%, rgba(201, 144, 47, 0.16));
}

.event-section h2,
.event-section .section-kicker {
	color: #fff8e8;
}

.event-copy p {
	color: rgba(255, 248, 238, 0.86);
}

.event-details {
	display: grid;
	gap: 10px;
	margin: 24px 0 28px;
}

.event-details p {
	display: grid;
	grid-template-columns: 84px 1fr;
	gap: 14px;
	margin: 0;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 248, 238, 0.16);
}

.event-collage {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 180px);
	gap: 12px;
}

.event-collage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 4px solid rgba(255, 248, 238, 0.16);
	border-radius: 8px;
}

.event-collage img:first-child {
	grid-column: span 2;
	grid-row: span 2;
}

.event-collage img:nth-child(2),
.event-collage img:nth-child(3) {
	grid-column: span 2;
}

.involved-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
	padding: clamp(32px, 5vw, 54px) clamp(22px, 6vw, 76px);
	color: #fff;
	background:
		linear-gradient(90deg, rgba(82, 9, 16, 0.98), rgba(124, 17, 27, 0.94)),
		var(--burgundy);
}

.involved-section h2 {
	color: #fff8e8;
	font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.involved-section p {
	max-width: 700px;
	color: rgba(255, 248, 238, 0.86);
}

.donate-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.donate-grid article {
	padding: 24px;
}

.donate-grid p {
	color: var(--muted);
	font-size: 0.94rem;
}

.payment-layout {
	display: grid;
	grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.75fr);
	gap: 26px;
	align-items: center;
	margin-top: 22px;
	padding: clamp(24px, 4vw, 38px);
	background: #fff;
	border: 1px solid rgba(124, 17, 27, 0.1);
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(82, 9, 16, 0.08);
}

.payment-copy h3 {
	margin-bottom: 12px;
}

.payment-copy p {
	color: var(--muted);
}

.payment-note {
	padding: 12px 14px;
	color: var(--burgundy-dark) !important;
	background: rgba(124, 17, 27, 0.08);
	border-left: 4px solid var(--burgundy);
	border-radius: 4px;
}

.tax-note {
	font-weight: 800;
}

.qr-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.qr-row figure {
	margin: 0;
	padding: 14px;
	text-align: center;
	background: var(--cream);
	border: 1px solid rgba(124, 17, 27, 0.1);
	border-radius: 8px;
}

.qr-row img {
	width: min(150px, 100%);
	aspect-ratio: 1;
	margin: 0 auto 10px;
	object-fit: contain;
}

.qr-row figcaption {
	color: var(--muted);
	font-size: 0.84rem;
}

.certificate-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.certificate-grid figure {
	margin: 0;
	padding: 14px;
	background: #fff;
	border: 1px solid rgba(124, 17, 27, 0.1);
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(82, 9, 16, 0.08);
}

.certificate-grid img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: contain;
	background: var(--cream);
	border-radius: 6px;
}

.certificate-grid figcaption {
	margin-top: 12px;
	color: var(--muted);
	font-size: 0.86rem;
	text-align: center;
}

.photo-strip {
	display: grid;
	grid-template-columns: 1.1fr 0.8fr 0.9fr 0.8fr 1.1fr;
	gap: 12px;
}

.photo-strip img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(82, 9, 16, 0.08);
}

.photo-strip img:nth-child(2),
.photo-strip img:nth-child(4) {
	margin-top: 34px;
}

.contact-section {
	display: grid;
	grid-template-columns: minmax(320px, 0.75fr) minmax(420px, 1fr);
	gap: 22px;
	align-items: stretch;
}

.contact-card {
	padding: clamp(24px, 4vw, 38px);
}

.contact-list p {
	margin: 14px 0;
}

.contact-list strong {
	color: var(--burgundy-dark);
}

.contact-list span {
	display: inline;
}

.contact-list a {
	color: var(--burgundy);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.map-panel {
	display: grid;
	gap: 12px;
	padding: 14px;
	background: #fff;
	border: 1px solid rgba(124, 17, 27, 0.1);
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(82, 9, 16, 0.08);
}

.map-frame {
	width: 100%;
	min-height: 410px;
	border: 0;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(124, 17, 27, 0.06), rgba(201, 144, 47, 0.08)),
		var(--cream);
}

.map-link {
	justify-self: start;
	color: var(--burgundy);
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.site-footer {
	display: grid;
	grid-template-columns: 1.2fr 0.7fr 1fr;
	gap: 36px;
	padding: 48px clamp(24px, 6vw, 76px) 24px;
	background: #fff7ec;
	border-top: 1px solid var(--line);
}

.footer-brand {
	display: flex;
	gap: 16px;
	align-items: center;
}

.footer-brand strong {
	display: block;
	color: var(--burgundy);
	font-family: "Cinzel", Georgia, serif;
	font-size: 1.35rem;
	line-height: 1.15;
}

.footer-brand span,
.site-footer p,
.site-footer a {
	color: var(--muted);
	font-size: 0.92rem;
}

.site-footer h2 {
	margin-bottom: 10px;
	font-family: "Inter", Arial, sans-serif;
	font-size: 0.82rem;
	text-transform: uppercase;
}

.site-footer a {
	display: block;
	margin: 6px 0;
}

.footer-bottom {
	grid-column: 1 / -1;
	margin: 18px 0 0;
	padding-top: 18px;
	border-top: 1px solid var(--line);
}

@media (max-width: 1100px) {
	.site-header {
		position: static;
		align-items: flex-start;
		flex-direction: column;
	}

	.site-nav {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.hero,
	.mission-band,
	.featured-project,
	.event-section,
	.contact-section {
		grid-template-columns: 1fr;
	}

	.hero {
		min-height: auto;
	}

	.hero-media {
		min-height: 460px;
		order: -1;
	}

	.program-grid,
	.donate-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.project-facts {
		grid-template-columns: repeat(2, 1fr);
	}

	.payment-layout,
	.site-footer {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	section {
		scroll-margin-top: 20px;
	}

	.site-header {
		padding: 14px 18px;
	}

	.brand {
		min-width: 0;
	}

	.brand img {
		width: 50px;
		height: 50px;
	}

	.site-nav {
		gap: 8px 16px;
		font-size: 0.82rem;
	}

	.donate-pill {
		min-height: 40px;
		padding: 0 16px !important;
	}

	.hero-copy {
		padding: 36px 20px 42px;
	}

	h1 {
		font-size: 2.55rem;
	}

	h2 {
		font-size: 2rem;
	}

	.hero-actions {
		display: grid;
		gap: 12px;
	}

	.button {
		width: 100%;
		min-height: 52px;
		padding: 0 18px;
	}

	.button-outline {
		margin-left: 0;
	}

	.hero-media,
	.mission-photo {
		min-height: 330px;
	}

	.featured-project,
	.program-section,
	.donate-section,
	.recognition-section,
	.gallery-section,
	.contact-section {
		width: min(100% - 28px, 1180px);
		margin-bottom: 56px;
	}

	.featured-project {
		padding: 22px;
		margin-top: 48px;
	}

	.program-grid,
	.donate-grid,
	.certificate-grid,
	.qr-row {
		grid-template-columns: 1fr;
	}

	.event-section {
		padding: 36px 18px;
	}

	.event-collage {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.event-collage img,
	.event-collage img:first-child,
	.event-collage img:nth-child(2),
	.event-collage img:nth-child(3) {
		grid-column: auto;
		grid-row: auto;
		height: 230px;
	}

	.involved-section {
		align-items: flex-start;
		flex-direction: column;
		padding: 36px 20px;
	}

	.photo-strip {
		grid-template-columns: 1fr;
	}

	.photo-strip img,
	.photo-strip img:nth-child(2),
	.photo-strip img:nth-child(4) {
		height: 235px;
		margin-top: 0;
	}
}
