/* ---------- Variables ---------- */
:root {
	--navy: #072B56;
	--navy-dark: #051d3d;
	--gold: #BA8828;
	--gold-light: #D4AF6A;
	--cream: #FAF7EF;
	--white: #FFFFFF;
	--text: #2A2A2A;
	--text-light: #6B6B6B;
	--border: #E7E1D3;
	--font-heading: 'Catamaran', sans-serif;
	--font-body: 'Poppins', Arial, sans-serif;
	--radius: 16px;
	--radius-pill: 50px;
	--container: 1280px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--text);
	background: var(--white);
	font-size: clamp(15px, 2.2vw, 18px);
	line-height: 1.7;
	 text-wrap-style: pretty;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
	font-family: var(--font-heading);
	color: var(--navy);
	font-weight: 900;
	line-height: 1.2;
	margin: 0 0 .5em;
}
h1 { font-size: clamp(38px, 8vw, 64px); }
h2 { font-size: clamp(28px, 6vw, 48px); }
p { margin: 0 0 1em; color: var(--text-light);}
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
.container.narrow { max-width: 820px; }
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: .95rem;
	letter-spacing: .02em;
	padding: 14px 32px;
	border-radius: var(--radius-pill);
	border: 2px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); box-shadow: 0 8px 20px rgba(7,43,86,.25); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 8px 20px rgba(186,136,40,.3); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: .6em;
}
.eyebrow-light { color: var(--gold-light); }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: var(--white); font-size: .82rem; position: sticky; top: 0; z-index: 101; }
.topbar-inner { display: flex; justify-content: flex-end; align-items: center; padding: 8px 24px; flex-wrap: wrap; gap: 20px; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 6px; color: var(--white); opacity: .85; margin-right: 20px; }
.topbar-contact a:hover { opacity: 1; color: var(--gold-light); }
.topbar-social { display: flex; gap: 12px; align-items: center; }
.social-link { color: var(--white); opacity: .85; display: inline-flex; }
.social-link:hover { opacity: 1; color: var(--gold-light); }

/* ---------- Site header ---------- */
.site-header {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 40px;
	z-index: 101;
	transition: box-shadow .25s ease;
}
.site-header.is-stuck { box-shadow: 0 4px 16px rgba(7,43,86,.1); }
.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px;
	gap: 20px;
}

.site-logo { position: relative; display: block; flex-shrink: 0; width: 140px;  }
.site-logo-img {
	position: absolute;
	top: -90px;
	left: 0;
	width: auto;
	z-index: 2;
	background: var(--white);
	padding: 10px 14px;
	box-shadow: 0 6px 16px rgba(7,43,86,.1);
}
.site-logo-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.site-logo-title, .site-logo-tagline { overflow-wrap: break-word; }
.site-logo-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.35rem; color: var(--navy); }
.site-logo-tagline { font-size: .72rem; letter-spacing: .04em; color: var(--gold); text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-menu { display: flex; align-items: center; gap: 28px; }
.primary-menu a {
	font-size: .95rem;
	font-weight: 500;
	color: var(--navy);
	position: relative;
	padding: 6px 0;
}
.primary-menu a::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 2px;
	background: var(--gold);
	transition: width .2s ease;
}
.primary-menu a:hover::after,
.primary-menu li.current-menu-item a::after { width: 100%; }
.nav-donate-btn { padding: 10px 22px; font-size: .88rem; }

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--navy); display: block; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(rgba(7,43,86,.78), rgba(7,43,86,.78)), url('../images/hero-bg.jpg') center/cover no-repeat;
	padding: 110px 0 130px;
	text-align: center;
}
.hero-heading { color: var(--white); }
.hero-heading-accent { color: var(--gold-light); }
.text-accent { color: var(--gold); }
.text-accent-light { color: var(--gold-light); }
.text-accent-navy { color: var(--navy); }
.hero-subheading { color: rgba(255,255,255,.85); }
.hero .btn-outline { border-color: var(--white); color: var(--white); }
.hero .btn-outline:hover { background: var(--white); color: var(--navy); }
.hero-decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.decor-ring { position: absolute; border-radius: 50%; border: 2px solid var(--gold-light); opacity: .4; }
.decor-ring-1 { width: 170px; height: 170px; top: 26px; left: 5%; }
.decor-ring-2 { width: 110px; height: 110px; bottom: 16px; right: 7%; border-color: var(--white); opacity: .3; }
.decor-dot { position: absolute; border-radius: 50%; background: var(--gold-light); opacity: .5; }
.decor-dot-1 { width: 14px; height: 14px; top: 22%; right: 20%; }
.decor-dot-2 { width: 10px; height: 10px; bottom: 22%; left: 12%; }
.decor-dot-3 { width: 8px; height: 8px; top: 55%; right: 11%; }
.decor-head-icon { position: absolute; top: 14%; right: 16%; width: 46px; height: auto; opacity: .7; }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -2px; line-height: 0; z-index: 0; pointer-events: none; }
.hero-wave img { display: block; width: 100%; height: 70px; }
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.hero-logo { width: 210px; margin-bottom: 24px; }
.hero-heading { max-width: 780px; margin-bottom: .4em; }
.hero-subheading { max-width: 620px; margin-bottom: 1.6em; }
.hero-buttons { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }

/* ---------- Campaign section ---------- */
.campaign-section { padding: 70px 0; background: var(--white); }
.campaign-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 50px; }
.campaign-photo-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(7,43,86,.12); }
.campaign-photo-wrap img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.campaign-closing { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; color: var(--navy); }

.impact-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 60px;
}
.impact-item {
	position: relative;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 40px 22px 32px;
	text-align: center;
}
.impact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cream), #F1E6CC);
	box-shadow: 0 8px 18px rgba(186,136,40,.18);
}
.impact-item p { color: var(--navy); font-weight: 600; margin: 0; line-height: 1.4; }

.support-donate-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; margin-bottom: 50px; }
.support-col { display: flex; flex-direction: column; justify-content: center; }
.support-col h2 { margin-bottom: .8em; }
.checklist { margin-bottom: 30px; }
/* Keeps the same rhythm as the checklist above it, since .support-col has no gap. */
.support-col .tiers-box { margin-bottom: 30px; }
.checklist li {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
	padding: 12px 16px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	color: var(--text);
	font-weight: 500;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.checklist li:last-child {
	margin-bottom: 0;
}
.checklist li:hover { transform: translateX(4px); box-shadow: 0 8px 20px rgba(7,43,86,.08); border-color: transparent; }
.checklist-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--navy);
	box-shadow: 0 4px 10px rgba(7,43,86,.3);
	flex-shrink: 0;
}
.partner-block { display: flex; gap: 20px; align-items: center; justify-content: space-between; background: var(--white); border: 1px solid var(--border); box-shadow: 0 10px 26px rgba(7,43,86,.07); border-radius: var(--radius); padding: 24px; }
.partner-logo { width: 140px; height: auto; flex-shrink: 0; object-fit: contain; }
.partner-copy { min-width: 0; }
.partner-eyebrow {
	display: block;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: .35em;
}
.partner-label { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 0 0 .3em; }
.partner-blurb { margin: 0; }

.donate-col { display: flex; flex-direction: column; gap: 24px; }
.donate-box { scroll-margin-top: 150px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-align: center; box-shadow: 0 14px 32px rgba(7,43,86,.08); }
.donate-box-header { background: var(--gold); color: var(--white); font-weight: 700; padding: 16px; letter-spacing: .03em; }
.donate-box-body { padding: 22px 20px 24px; }
.donate-qr { width: 180px; margin: 0 auto; border-radius: 10px; }
.donate-upi { font-size: .95rem; color: var(--navy); margin: 14px 0 4px; }
.donate-note { margin: 10px 0 0; }
[hidden] { display: none !important; }

/* Amount chips */
/* auto-fit so the row stays even whatever number of presets is configured. */
.donate-amounts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
	gap: 8px;
	margin-bottom: 16px;
}
.amount-chip {
	font-family: var(--font-body);
	font-size: .85rem;
	font-weight: 600;
	color: var(--navy);
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: 10px;
	padding: 9px 6px;
	cursor: pointer;
	transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.amount-chip:hover { border-color: var(--gold); }
.amount-chip:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.amount-chip.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* QR */
.donate-qr-wrap { display: flex; justify-content: center; }
.donate-qr-panel {
	width: 216px;
	padding: 10px;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: var(--white);
}
.donate-qr-svg { display: block; width: 100%; height: auto; }
.donate-qr-caption { font-size: .82rem; margin: 14px 0 0; }
.donate-upi-btn { display: none; margin-top: 14px; }
/* Only useful where a UPI app can actually claim the link. */
@media (pointer: coarse) { .donate-upi-btn { display: inline-block; } }

.donate-copy {
	font-family: var(--font-body);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--gold);
	background: transparent;
	border: 1.5px solid var(--border);
	border-radius: var(--radius-pill);
	padding: 3px 11px;
	margin-left: 6px;
	cursor: pointer;
	transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.donate-copy:hover { border-color: var(--gold); }
.donate-copy.is-copied { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* Notices */
.donate-notice { border-radius: 12px; padding: 14px 16px; margin-bottom: 18px; font-size: .88rem; text-align: left; }
.donate-notice:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.donate-notice-ok { background: #eaf6ee; border: 1px solid #b7dfc4; color: #1a5c31; }
.donate-notice-error { background: #fdeceb; border: 1px solid #f2bcb9; color: #8f2321; }

/* Stepped form */
.donate-step { text-align: left; }
/* Without JS every step stays visible, separated so the order still reads. */
.donate-step + .donate-step { margin-top: 26px; border-top: 1px solid var(--border); padding-top: 20px; }
/* The class is set in <head>, before paint, so the steps never flash open. */
.dgct-js .donate-step { display: none; }
.dgct-js .donate-step.is-current { display: block; }
.dgct-js .donate-step + .donate-step { margin-top: 0; border-top: none; padding-top: 0; }
/* Step numbers and the progress rail say the same thing; keep one of each. */
.dgct-js .donate-step-num { display: none; }
.donate-progress { display: none; }
.dgct-js .donate-progress { display: flex; }

/* Progress rail */
.donate-progress {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	counter-reset: dgct-step;
	justify-content: space-between;
	position: relative;
}
/* The connecting line sits behind the markers, inset to the marker centres
   (two steps, so each is half the width and its centre sits at 25% / 75%). */
.donate-progress::before {
	content: '';
	position: absolute;
	top: 13px;
	left: 25%;
	right: 25%;
	height: 2px;
	background: var(--border);
}
.donate-progress li {
	counter-increment: dgct-step;
	position: relative;
	z-index: 1;
	flex: 1;
	text-align: center;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .02em;
	color: var(--text-light);
}
.donate-progress li::before {
	content: counter(dgct-step);
	display: block;
	width: 26px;
	height: 26px;
	line-height: 24px;
	margin: 0 auto 6px;
	border-radius: 50%;
	border: 2px solid var(--border);
	background: var(--white);
	color: var(--text-light);
	font-size: .78rem;
}
.donate-progress li.is-current { color: var(--navy); }
.donate-progress li.is-current::before {
	border-color: var(--gold);
	background: var(--gold);
	color: var(--white);
}
.donate-progress li.is-done { color: var(--navy); }
.donate-progress li.is-done::before {
	content: '\2713';
	border-color: var(--navy);
	background: var(--navy);
	color: var(--white);
}

.donate-step-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.05rem;
	margin: 0 0 16px;
}
.donate-step-title:focus { outline: none; }
.donate-step-num {
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--white);
	font-family: var(--font-body);
	font-size: .82rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.donate-next { width: 100%; margin-top: 14px; }
.donate-step-status { font-size: .82rem; margin: 10px 0 0; min-height: 1.2em; text-align: center; }
.donate-step-status.is-error { color: #b32d2e; }

/* The payment step is centred on the QR, but its amount picker stays left
   aligned so the label and chips line up with the fields on the next step. */
.donate-step[data-step="1"] { text-align: center; }
.donate-step[data-step="1"] .donate-step-title { justify-content: center; }
.donate-step[data-step="1"] .donate-field,
.donate-step[data-step="1"] .donate-field-legend { text-align: left; }

/* Quiet tertiary control, so it never competes with the primary button. */
.donate-back {
	display: block;
	width: 100%;
	margin-top: 12px;
	padding: 6px;
	background: none;
	border: none;
	font-family: var(--font-body);
	font-size: .8rem;
	color: var(--text-light);
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}
.donate-back:hover { color: var(--navy); }
.donate-back:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 6px; }

.donate-field-legend {
	display: block;
	font-size: .8rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 8px;
}
/* Rupee sign sits inside the box rather than floating beside it. */
.donate-amount-wrap { position: relative; display: block; }
.donate-amount-rupee {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-light);
	font-weight: 600;
	pointer-events: none;
}
.donate-field-amount input { padding-left: 28px; }

.donate-form { margin-top: 4px; }
.donate-form-intro { font-size: .82rem; margin-bottom: 14px; }
.donate-field { margin: 0 0 12px; }
.donate-field label { display: block; font-size: .8rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.donate-field label span { color: var(--gold); }
.donate-field input,
.donate-field textarea {
	width: 100%;
	font-family: var(--font-body);
	font-size: .9rem;
	padding: 10px 12px;
	border: 1.5px solid var(--border);
	border-radius: 10px;
	background: var(--white);
	color: var(--text);
}
.donate-field textarea { resize: vertical; }
.donate-field input:focus,
.donate-field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.donate-field.has-error input { border-color: #d0433f; }
.donate-field-error { display: block; font-size: .78rem; color: #b32d2e; margin-top: 4px; }
.donate-form-submit { width: 100%; margin-top: 6px; }
.donate-form-privacy { font-size: .74rem; margin: 10px 0 0; text-align: center; }
.donate-field .donate-amount-wrap input {padding-left: 30px;}
/* Honeypot: off-screen rather than display:none, which some bots skip. */
.donate-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Thank you page ---------- */
.thanks-card {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 36px 28px 30px;
	margin: 0 0 36px;
	text-align: center;
	background: var(--white);
	box-shadow: 0 14px 32px rgba(7,43,86,.08);
}
.thanks-tick {
	width: 60px;
	height: 60px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: #1a7f37;
	display: flex;
	align-items: center;
	justify-content: center;
}
.thanks-card h2 { margin-bottom: .35em; }
.thanks-lead { max-width: 520px; margin: 0 auto 8px; }
.thanks-table {
	margin: 22px auto 0;
	border-collapse: collapse;
	text-align: left;
	font-size: .92rem;
}
.thanks-table th {
	padding: 8px 26px 8px 0;
	color: var(--text-light);
	font-weight: 500;
	white-space: nowrap;
}
.thanks-table td { padding: 8px 0; color: var(--navy); font-weight: 700; }
.thanks-note { font-size: .82rem; margin: 22px 0 0; }
.thanks-card-warn { border-color: #f2bcb9; background: #fdeceb; }
.thanks-card-warn h2 { color: #8f2321; }
.tiers-box { background: var(--navy); border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 32px rgba(7,43,86,.16); }
.tiers-box-header { background: rgba(255,255,255,.1); color: var(--white); font-weight: 700; font-size: .92rem; padding: 16px 20px; }
.tiers-list { padding: 6px 20px 18px; }
.tiers-list li { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: var(--white); }
.tiers-list li:last-child { border-bottom: none; }
.tier-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--gold-light);
	flex-shrink: 0;
}
.tier-label { flex: 1; }
.tiers-list strong { color: var(--gold-light); }

.trust-badges {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px 40px;
	padding-top: 30px;
	border-top: 1px solid var(--border);
}
.trust-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 500; color: var(--navy); }

/* ---------- Mission strip ---------- */
.mission-strip { background: var(--navy); padding: 56px 0; }
.mission-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.mission-card { text-align: center; color: var(--white); }
.mission-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.mission-label {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--gold-light);
	letter-spacing: .06em;
	margin-bottom: .5em;
}
.mission-card p { color: rgba(255,255,255,.8); margin: 0; }

/* ---------- About ---------- */
.about-section { position: relative; overflow: hidden; padding: 90px 0; }
.about-dots-bg { position: absolute; top: 50%; right: -60px; transform: translateY(-50%); width: 420px; height: auto; z-index: 0; pointer-events: none; }
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrap { position: relative; background: var(--cream); border-radius: var(--radius); padding: 30px; z-index: 1; }
.about-image-wrap::before {
	content: '';
	position: absolute;
	top: -16px;
	left: -16px;
	right: -16px;
	bottom: -16px;
	border: 2px dashed var(--gold);
	border-radius: var(--radius);
	z-index: -1;
}
.sprig-accent { position: absolute; z-index: 2; }
.sprig-accent-about { bottom: -22px; right: -14px; width: 44px; height: 66px; }

.squiggle { display: block; width: 90px; height: 9px; margin: 6px 0 14px; }
.squiggle-center { margin-left: auto; margin-right: auto; }

/* ---------- Programs ---------- */
.programs-section { padding: 90px 0; background: var(--cream); }
.section-heading { text-align: center; margin-bottom: 50px; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.program-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(7,43,86,.06);
	transition: transform .2s ease, box-shadow .2s ease;
	display: block;
}
.program-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(7,43,86,.14); }
.program-thumb { aspect-ratio: 16/10; overflow: hidden; }
.program-thumb img { width: 100%; height: 100%; object-fit: cover; }
.program-body { padding: 26px; }
.program-body h3 { font-size: 1.25rem; margin-bottom: .4em; }
.program-body p { margin-bottom: 1em; }
.program-link { color: var(--gold); font-weight: 600; font-size: .88rem; }

/* ---------- Donate band ---------- */
.donate-band { background: var(--gold); padding: 70px 0; text-align: center; }
.donate-band-inner h2 { color: var(--white); }
.donate-band-inner p { color: rgba(255,255,255,.9); max-width: 560px; margin-left: auto; margin-right: auto; }
.donate-band .btn-gold { background: var(--navy); }
.donate-band .btn-gold:hover { background: var(--navy-dark); }

/* ---------- Generic page banner / content ---------- */
.page-banner { background: var(--navy); padding: 60px 0; text-align: center; }
.page-banner h1 { color: var(--white); margin: 0; }
.page-banner .post-meta { color: rgba(255,255,255,.7); margin-top: .5em; }
.page-content { padding: 70px 0; }
.page-thumb { margin-bottom: 40px; border-radius: var(--radius); overflow: hidden; }
.page-content-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.page-thumb-col { position: sticky; top: 110px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 32px rgba(7,43,86,.12); }
.page-thumb-col img { width: 100%; height: auto; display: block; }

/* ---------- Vision / Mission ---------- */
.vision-mission-section { padding: 80px 0; }
.vm-container { padding-left: 0; padding-right: 0; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: var(--radius); }
.vm-card {
	padding: 90px 60px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.vm-card p { max-width: 420px; margin: 0 auto;  }
.vm-card-navy { background: var(--navy); }
.vm-card-gold { background: var(--gold); }
.vm-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: rgba(255,255,255,.14);
}
.vm-card h2 { color: var(--white); margin-bottom: .5em; }
.vm-card p { color: rgba(255,255,255,.85); margin: 0; }
.entry-content h2, .entry-content h3 { margin-top: 1.4em; }
.blog-list-item { padding-bottom: 30px; margin-bottom: 30px; border-bottom: 1px solid var(--border); }
.blog-list-item h2 { font-size: 1.5rem; margin-bottom: .2em; }
.post-meta { font-size: .85rem; color: var(--gold); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; margin: 10px 0 80px; min-width: 0; }
.contact-info-col { min-width: 0; background: var(--navy); border-radius: var(--radius); padding: 44px 38px; }
.contact-info-col h2 { color: var(--white); font-size: 28px; margin-bottom: .8em; }
.contact-info-list { margin-bottom: 26px; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; color: rgba(255,255,255,.85); }
.contact-info-list li a,
.contact-info-list li span:last-child { min-width: 0; overflow-wrap: break-word; word-break: break-word; }
.contact-info-list a:hover { color: var(--gold-light); }
.contact-info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,.12);
	flex-shrink: 0;
}
.contact-social { display: flex; gap: 14px; }

.contact-form-col { min-width: 0; }
.contact-form-col .wpcf7-form p { margin-bottom: 18px; }
.contact-form-col .wpcf7-form label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-size: .92rem; }
.contact-form-col .wpcf7-form-control {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--border);
	border-radius: 10px;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--text);
	background: var(--white);
}
.contact-form-col .wpcf7-form-control:focus { outline: none; border-color: var(--gold); }
.contact-form-col textarea.wpcf7-form-control { min-height: 150px; resize: vertical; }
.contact-form-col .cf-field-name,
.contact-form-col .cf-field-email,
.contact-form-col .cf-field-subject,
.contact-form-col .cf-field-message {
	padding-left: 46px;
	background-repeat: no-repeat;
	background-position: 16px center;
	background-size: 18px 18px;
}
.contact-form-col .cf-field-message { background-position: 16px 18px; }
.contact-form-col .cf-field-name {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BA8828' stroke-width='1.8'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 3.6-6 8-6s8 2 8 6'/%3E%3C/svg%3E");
}
.contact-form-col .cf-field-email {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BA8828' stroke-width='1.8'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 6 9 7 9-7'/%3E%3C/svg%3E");
}
.contact-form-col .cf-field-subject {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BA8828' stroke-width='1.8'%3E%3Cpath d='M12 3h7l2 2v7l-9 9-9-9 9-9Z'/%3E%3Ccircle cx='16' cy='8' r='1'/%3E%3C/svg%3E");
}
.contact-form-col .cf-field-message {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BA8828' stroke-width='1.8'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H8l-5 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10Z'/%3E%3C/svg%3E");
}
.contact-form-col input[type="submit"] {
	background: var(--navy);
	color: var(--white);
	border: none;
	padding: 14px 34px;
	border-radius: var(--radius-pill);
	font-weight: 600;
	font-size: .95rem;
	cursor: pointer;
	transition: background .2s ease, transform .15s ease;
}
.contact-form-col input[type="submit"]:hover { background: var(--navy-dark); transform: translateY(-2px); }
.contact-form-col .wpcf7-not-valid-tip { color: #C0392B; font-size: .82rem; margin-top: 4px; }
.contact-form-col .wpcf7-response-output { border-radius: 10px; padding: 12px 16px; margin-top: 18px; border-color: var(--border) !important; }

/* ---------- Footer ---------- */
.site-footer { background: var(--cream); font-size: 16px; }
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.2fr;
	gap: 40px;
	padding: 70px 24px 50px;
}
.footer-col { min-width: 0; }
.footer-logo { width: 130px; margin-bottom: 14px; }
.footer-site-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--navy); margin-bottom: .5em; }
.footer-social { display: flex; gap: 14px; margin-top: 10px; }
.footer-social .social-link { color: var(--navy); }
.footer-social .social-link:hover { color: var(--gold); }
.footer-widget-title { font-size: 1.4rem; color: var(--navy); margin-bottom: 1em; }
.footer-menu li, .footer-contact-list li { margin-bottom: .7em; color: var(--text-light); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-icon { flex-shrink: 0; margin-top: 3px; }
.footer-contact-list li a,
.footer-contact-list li span:last-child { min-width: 0; overflow-wrap: break-word; word-break: break-word; }
.footer-menu a:hover, .footer-contact-list a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-inner { padding: 20px 24px; text-align: center; font-size: .82rem; color: var(--text-light); }
.footer-bottom-inner p { margin: 0; }
.footer-bottom-inner .footer-credit { margin-top: 4px; }
.footer-credit a { color: var(--gold); font-weight: 600; }
.footer-credit a:hover { color: var(--navy); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.mission-grid { grid-template-columns: repeat(2, 1fr); }
	.about-grid { grid-template-columns: 1fr; }
	.programs-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.campaign-grid { grid-template-columns: 1fr; }
	.impact-row { grid-template-columns: repeat(2, 1fr); }
	.support-donate-grid { grid-template-columns: 1fr; }
	.page-content-grid { grid-template-columns: 1fr; }
	.page-thumb-col { position: static; }
	.vm-grid { grid-template-columns: 1fr; }
	.contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
	.nav-toggle { display: flex; }
	.primary-nav {
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: var(--white);
		flex-direction: column;
		align-items: flex-start;
		padding: 20px 24px 30px;
		border-bottom: 1px solid var(--border);
		display: none;
		gap: 18px;
	}
	.primary-nav.is-open { display: flex; }
	.primary-menu { flex-direction: column; align-items: flex-start; gap: 16px; width: 100%; }
	.nav-donate-btn { width: 100%; text-align: center; }
	.topbar-inner { justify-content: center; text-align: center; }
	.mission-grid { grid-template-columns: 1fr; }
	.programs-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; padding: 50px 24px 30px; }
	.site-logo { width: 100px; height: 46px; }
	.site-logo-img {
    top: -24px;
    padding: 9px 14px;
	}
	.site-logo-title { font-size: 1rem; }
	.site-logo-tagline { font-size: .62rem; }
	.impact-row { grid-template-columns: 1fr; }
	.partner-block { flex-direction: column; text-align: center; }
	.trust-badges { flex-direction: column; align-items: center; gap: 10px; }
	.decor-ring-1, .decor-ring-2 { display: none; }
}
