/* ==========================================================================
   OUA — Oklahoma Ugandan Association
   Design system stylesheet. Tokens mirror the Claude Design source
   (Archivo/Karla, teal + Ugandan-flag accents).
   ========================================================================== */

:root {
	/* Brand */
	--teal:          #1f8a9c;
	--teal-dark:     #187585;
	--teal-bright:   #26a0b4;
	--navy:          #0d2f3f;
	--navy-dark:     #0a2531;

	/* Ink & text */
	--ink:           #132433;
	--slate:         #52657a;
	--slate-light:   #7789a0;

	/* Surfaces */
	--bg:            #ffffff;
	--bg-soft:       #f7fafb;
	--bg-mist:       #eef4f6;
	--border:        #e9eef2;
	--border-strong: #d3dee5;

	/* Ugandan flag accent */
	--flag-black:    #1a1a1a;
	--flag-gold:     #e8b53a;
	--flag-red:      #c0392b;

	/* Secondary accents */
	--gold:          #c99a2e;
	--gold-soft:     #fbf1dd;
	--red-soft:      #fdeceb;

	/* Footer */
	--footer-text:   #9dc4cd;
	--footer-muted:  #7ea3ad;
	--footer-border: #1c4a5c;
	--footer-dim:    #5f8894;

	/* Type */
	--font-head: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-body: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	/* Layout */
	--wrap:      1200px;
	--wrap-mid:  1080px;
	--wrap-text: 860px;
	--radius:    12px;
	--shadow-card:  0 6px 18px rgba(19, 36, 51, 0.04);
	--shadow-lift:  0 14px 32px rgba(19, 36, 51, 0.10);
	--shadow-float: 0 18px 44px rgba(19, 36, 51, 0.12);
}

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

html { overflow-x: hidden; }

body {
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

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

h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; }

p { margin: 0; }

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--navy);
	color: #fff;
	padding: 10px 16px;
	border-radius: 0 0 8px 0;
	z-index: 200;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible {
	outline: 3px solid var(--teal);
	outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */

.wrap      { max-width: var(--wrap);      margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.wrap-mid  { max-width: var(--wrap-mid);  margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.wrap-text { max-width: var(--wrap-text); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

.section        { padding-top: 64px; padding-bottom: 64px; }
.section--tight { padding-top: 40px; padding-bottom: 40px; }

/* Ugandan-flag stripe (reused everywhere) */
.flag-stripe { display: flex; height: 5px; width: 100%; }
.flag-stripe span { flex: 1; }
.flag-stripe span:nth-child(1) { background: var(--flag-black); }
.flag-stripe span:nth-child(2) { background: var(--flag-gold); }
.flag-stripe span:nth-child(3) { background: var(--flag-red); }

.flag-stripe--thin { height: 4px; }
.flag-stripe--thick { height: 6px; }

/* Small flag chip used inline beside eyebrows */
.flag-chip { display: inline-flex; height: 14px; border-radius: 2px; overflow: hidden; }
.flag-chip span { width: 5px; }
.flag-chip span:nth-child(1) { background: var(--flag-black); }
.flag-chip span:nth-child(2) { background: var(--flag-gold); }
.flag-chip span:nth-child(3) { background: var(--flag-red); }

/* Eyebrow / kicker label */
.eyebrow {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 11.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--teal);
}
.eyebrow--muted { color: var(--slate); }

.motto {
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--teal);
}

/* Section heading scale */
.h-xl { font-weight: 800; font-size: clamp(40px, 5.4vw, 64px); line-height: 1.02; letter-spacing: -0.02em; color: var(--ink); }
.h-lg { font-weight: 800; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.06; letter-spacing: -0.01em; color: var(--ink); }
.h-md { font-weight: 800; font-size: clamp(25px, 3vw, 36px); line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); }
.accent { color: var(--teal); }

.lead { font-size: 17.5px; line-height: 1.6; color: var(--slate); }
.prose { font-size: 15.5px; line-height: 1.65; color: var(--slate); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 26px;
	border-radius: 7px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 14.5px;
	letter-spacing: 0.02em;
	text-decoration: none;
	white-space: nowrap;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background .14s, border-color .14s, color .14s;
}
.btn--teal   { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-dark); color: #fff; }
.btn--navy   { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-dark); color: #fff; }
.btn--ghost  { background: #fff; border-color: var(--border-strong); color: var(--ink); font-weight: 600; }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn--light  { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.28); color: #fff; font-weight: 600; }
.btn--light:hover { background: rgba(255,255,255,0.18); color: #fff; }
.btn--sm { padding: 11px 20px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; }

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
}
.site-header__bar {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 24px;
	height: 74px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.brand__logo { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name b {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 17px;
	color: var(--navy);
	letter-spacing: -0.01em;
	text-transform: uppercase;
}
.brand__name span {
	font-weight: 700;
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--teal);
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 9px 13px;
	border-radius: 7px;
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: 0.01em;
	text-decoration: none;
	color: var(--slate);
	white-space: nowrap;
	transition: background .12s, color .12s;
}
.nav__link:hover { color: var(--navy); background: var(--bg-mist); }
.nav__item.is-active > .nav__link,
.nav__link.is-active { color: var(--navy); background: var(--bg-mist); font-weight: 700; }
.nav__caret { opacity: 0.5; font-size: 9px; }

/* Dropdown */
.nav__dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 200px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	box-shadow: 0 16px 38px rgba(19,36,51,0.12);
	padding: 8px;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity .14s, transform .14s, visibility .14s;
	z-index: 60;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.nav__dropdown a {
	padding: 9px 12px;
	border-radius: 8px;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--slate);
	text-decoration: none;
}
.nav__dropdown a:hover { background: var(--bg-mist); color: var(--navy); }

.nav__cta { margin-left: 12px; }

.nav-toggle {
	display: none;
	border: 1px solid var(--border);
	background: var(--bg-soft);
	border-radius: 10px;
	width: 44px;
	height: 44px;
	font-size: 20px;
	color: var(--navy);
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

/* Mobile menu */
.mobile-menu {
	display: none;
	border-top: 1px solid var(--border);
	background: #fff;
	padding: 12px 24px 22px;
	flex-direction: column;
	gap: 2px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { text-decoration: none; }
.mobile-menu__link {
	padding: 13px 6px;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.01em;
	color: var(--navy);
	border-bottom: 1px solid var(--border);
}
.mobile-menu__sub {
	padding: 9px 6px 9px 20px;
	font-size: 14px;
	font-weight: 500;
	color: var(--slate);
}
.mobile-menu__cta {
	margin-top: 12px;
	text-align: center;
	padding: 13px;
	border-radius: 7px;
	background: var(--teal);
	color: #fff !important;
	font-weight: 700;
}

@media (max-width: 900px) {
	.nav { display: none; }
	.nav-toggle { display: flex; }
}

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */

.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #eef4f6 0%, #f7fafb 100%);
}
.hero__media {
	position: absolute;
	top: 0; right: 0; bottom: 0;
	width: 52%;
	background-position: center;
	background-size: cover;
	clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}
.hero__inner {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}
.hero__content { max-width: 560px; padding: 80px 0 96px; }
.hero__kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero__lead { font-size: 17.5px; line-height: 1.6; color: var(--slate); max-width: 430px; margin-top: 22px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* --------------------------------------------------------------------------
   Pillar bar (overlapping card row)
   -------------------------------------------------------------------------- */

.pillars {
	max-width: var(--wrap-mid);
	margin: -46px auto 0;
	position: relative;
	z-index: 3;
	padding: 0 24px;
}
.pillars__card {
	background: #fff;
	border-radius: 14px;
	box-shadow: var(--shadow-float);
	overflow: hidden;
}
.pillars__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.pillar { padding: 26px 22px; border-right: 1px solid #eef2f5; }
.pillar:last-child { border-right: 0; }
.pillar__title {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 15px;
	text-transform: uppercase;
	color: var(--ink);
}
.pillar__body { font-size: 13px; color: var(--slate-light); margin-top: 5px; line-height: 1.45; }

/* --------------------------------------------------------------------------
   Intro statement
   -------------------------------------------------------------------------- */

.intro { max-width: var(--wrap-text); margin: 0 auto; padding: 72px 24px 8px; text-align: center; }
.intro__statement {
	font-size: clamp(19px, 2.3vw, 26px);
	line-height: 1.5;
	color: var(--ink);
	font-weight: 500;
	margin-top: 16px;
	text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   Section header (two-column: heading + supporting text)
   -------------------------------------------------------------------------- */

.section-head {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: end;
	margin-bottom: 32px;
}
.section-head__text { font-size: 15px; line-height: 1.6; color: var(--slate); margin-bottom: 6px; }
.section-head__text a { font-weight: 700; text-decoration: none; }

.section-head--center { display: block; text-align: center; max-width: 640px; margin: 0 auto 32px; }

/* --------------------------------------------------------------------------
   "What we do" cards + carousel
   -------------------------------------------------------------------------- */

.card-rail { position: relative; }
.card-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding: 4px 2px 14px;
}
.card-track::-webkit-scrollbar { display: none; }

.feature-card {
	flex: 0 0 auto;
	width: 280px;
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 26px 22px;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-card);
	transition: box-shadow .14s, transform .14s;
}
.feature-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.feature-card__icon {
	display: flex;
	width: 42px; height: 42px;
	border-radius: 10px;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}
.feature-card__title { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--ink); margin: 16px 0 8px; }
.feature-card__body { font-size: 13.5px; line-height: 1.55; color: var(--slate-light); margin-bottom: 14px; flex: 1; }
.feature-card__link { font-size: 12.5px; font-weight: 700; color: var(--teal); text-decoration: none; }

/* Icon color variants */
.icon--teal { background: #e8f3f5; color: var(--teal); }
.icon--gold { background: var(--gold-soft); color: var(--gold); }
.icon--red  { background: var(--red-soft); color: var(--flag-red); }

.rail-nav { display: flex; gap: 10px; margin-top: 14px; }
.rail-btn {
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 1px solid var(--border-strong);
	background: #fff;
	color: var(--navy);
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color .12s, color .12s;
}
.rail-btn:hover { border-color: var(--teal); color: var(--teal); }

/* Static grid variant (used on interior pages) */
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}
.card-grid .feature-card { width: auto; }

/* --------------------------------------------------------------------------
   About + photo + badge
   -------------------------------------------------------------------------- */

.split {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 52px;
	align-items: center;
}
.checklist { display: flex; flex-direction: column; gap: 11px; margin: 20px 0 24px; }
.checklist span {
	display: flex;
	align-items: center;
	gap: 11px;
	font-size: 14.5px;
	color: var(--ink);
	font-weight: 600;
}
.checklist span::before { content: "\2714"; color: var(--teal); }

.framed { position: relative; }
.framed__img {
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 16 / 12;
	background-position: center;
	background-size: cover;
}
.badge {
	position: absolute;
	right: -6px;
	bottom: -20px;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 16px 36px rgba(19,36,51,0.16);
	max-width: 220px;
}
.badge__body { padding: 16px 22px 18px; }
.badge__title {
	font-family: var(--font-head);
	font-weight: 900;
	font-size: 15px;
	color: var(--teal);
	text-transform: uppercase;
}
.badge__sub { font-size: 12px; color: var(--slate-light); margin-top: 5px; line-height: 1.45; }

/* --------------------------------------------------------------------------
   Gallery (masonry)
   -------------------------------------------------------------------------- */

.masonry { columns: 3 240px; column-gap: 12px; }
.masonry__item {
	width: 100%;
	border-radius: 12px;
	margin: 0 0 12px;
	break-inside: avoid;
	background-position: center;
	background-size: cover;
	border: 1px solid var(--border);
	display: block;
}

/* --------------------------------------------------------------------------
   Membership / dark CTA band
   -------------------------------------------------------------------------- */

.cta-band {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: var(--navy);
	padding: 56px 44px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
	align-items: center;
}
.cta-band__stripe { position: absolute; top: 0; left: 0; right: 0; }
.cta-band__pattern {
	position: absolute;
	top: 0; right: 0; bottom: 0;
	width: 40%;
	background: repeating-linear-gradient(45deg, transparent 0 22px, rgba(31,138,156,0.14) 22px 24px);
}
.cta-band__title { font-weight: 800; font-size: clamp(26px, 3.2vw, 40px); color: #fff; line-height: 1.04; letter-spacing: -0.01em; }
.cta-band__text { color: var(--footer-text); font-size: 16px; line-height: 1.55; margin-top: 16px; max-width: 440px; }
.cta-band__actions { position: relative; display: flex; flex-wrap: wrap; gap: 13px; }
.cta-band__col { position: relative; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.field-label {
	display: block;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--slate);
	margin-bottom: 8px;
}
.field-input,
.field-select,
.field-textarea {
	width: 100%;
	padding: 13px 14px;
	border-radius: 8px;
	border: 1px solid var(--border-strong);
	background: var(--bg-soft);
	font-size: 15px;
	font-family: inherit;
	color: var(--ink);
	outline: none;
	transition: border-color .12s, box-shadow .12s;
}
.field-input:focus,
.field-select:focus,
.field-textarea:focus {
	border-color: var(--teal);
	box-shadow: 0 0 0 3px rgba(31,138,156,0.12);
}
.field-textarea { resize: vertical; }
.field-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 16px;
}
.form-stack { display: flex; flex-direction: column; gap: 16px; }
.form-note { font-size: 13px; color: var(--slate-light); line-height: 1.5; }
.required-star { color: var(--flag-red); }

/* Contact split card */
.contact-card {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: 18px;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.contact-card__intro { padding: 44px 40px; }
.contact-card__form { padding: 44px 40px; background: #fff; border-left: 1px solid var(--border); }
.contact-meta { display: flex; flex-direction: column; gap: 13px; margin-top: 22px; }
.contact-meta span {
	display: flex;
	align-items: center;
	gap: 11px;
	font-size: 14.5px;
	color: var(--ink);
	font-weight: 600;
}
.contact-meta span::before { content: attr(data-icon); color: var(--teal); }

/* Success / notice states */
.form-success {
	min-height: 280px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 12px;
}
.form-success__mark {
	width: 52px; height: 52px;
	border-radius: 12px;
	background: #e8f3f5;
	color: var(--teal);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	font-weight: 900;
}
.notice {
	padding: 14px 16px;
	border-radius: 10px;
	font-size: 14.5px;
	line-height: 1.5;
	margin-bottom: 18px;
}
.notice--ok  { background: #e8f3f5; color: #0d5866; border: 1px solid #bfe0e6; }
.notice--err { background: var(--red-soft); color: #8f2c20; border: 1px solid #f1c9c4; }

/* --------------------------------------------------------------------------
   Interior page hero (non-home pages)
   -------------------------------------------------------------------------- */

.page-hero {
	position: relative;
	background: linear-gradient(180deg, var(--bg-mist) 0%, var(--bg-soft) 100%);
	border-bottom: 1px solid var(--border);
	overflow: hidden;
}
.page-hero__pattern {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(45deg, transparent 0 26px, rgba(31,138,156,0.05) 26px 28px);
	pointer-events: none;
}
.page-hero__inner { position: relative; max-width: var(--wrap); margin: 0 auto; padding: 64px 24px 56px; }
.page-hero__kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.page-hero__title { font-weight: 800; font-size: clamp(34px, 4.6vw, 54px); line-height: 1.03; letter-spacing: -0.02em; color: var(--ink); }
.page-hero__lead { font-size: 17.5px; line-height: 1.6; color: var(--slate); max-width: 560px; margin-top: 18px; }
.breadcrumbs { font-size: 13px; color: var(--slate-light); margin-bottom: 14px; }
.breadcrumbs a { color: var(--slate); text-decoration: none; }
.breadcrumbs a:hover { color: var(--teal); }

/* Dark page hero variant */
.page-hero--dark { background: var(--navy); border-bottom: none; }
.page-hero--dark .page-hero__pattern {
	left: auto; width: 44%;
	background: repeating-linear-gradient(45deg, transparent 0 22px, rgba(31,138,156,0.16) 22px 24px);
}
.page-hero--dark .page-hero__title { color: #fff; }
.page-hero--dark .page-hero__lead { color: var(--footer-text); }
.page-hero--dark .breadcrumbs a { color: var(--footer-muted); }
.page-hero--dark .breadcrumbs span { color: var(--footer-dim); }
.page-hero--dark .breadcrumbs a:hover { color: #fff; }
.page-hero--dark .page-hero__inner { max-width: 860px; }
.page-hero__flag { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; }

/* Mission / vision cards */
.mv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.mv-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px; }
.mv-card--dark { background: var(--navy); border-color: var(--navy); color: #fff; }
.mv-card__rule { display: block; width: 36px; height: 4px; border-radius: 2px; margin-bottom: 18px; }
.mv-card__label { font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); }
.mv-card__text { font-size: 17px; line-height: 1.6; margin-top: 12px; font-weight: 500; color: var(--ink); }
.mv-card--dark .mv-card__text { color: #dbe9ed; }

/* Numbered values */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; }
.value-num { padding: 4px 2px; }
.value-num__k { font-family: var(--font-head); font-weight: 900; font-size: 28px; }
.value-num__title { font-family: var(--font-head); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; color: var(--ink); margin: 8px 0 6px; }
.value-num__body { font-size: 14px; line-height: 1.55; color: var(--slate-light); }

/* Soft CTA panel (right flag gradient bar) */
.soft-cta {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: var(--bg-soft);
	border: 1px solid var(--border);
	padding: 52px 44px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
	align-items: center;
}
.soft-cta__bar { position: absolute; top: 0; bottom: 0; right: 0; width: 6px; background: linear-gradient(var(--flag-black), var(--flag-gold), var(--flag-red)); }
.soft-cta__actions { display: flex; flex-wrap: wrap; gap: 13px; }

@media (max-width: 600px) {
	.soft-cta, .mv-card { padding: 32px 24px; }
}

/* --------------------------------------------------------------------------
   Generic content / cards used on interior pages
   -------------------------------------------------------------------------- */

.panel {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 32px;
	box-shadow: var(--shadow-card);
}
.panel--soft { background: var(--bg-soft); }

.value-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}
.value {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 26px 22px;
}
.value__icon {
	display: flex; width: 44px; height: 44px;
	border-radius: 11px; align-items: center; justify-content: center;
	font-size: 19px; margin-bottom: 14px;
}
.value__title { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink); margin-bottom: 8px; }
.value__body { font-size: 14px; line-height: 1.6; color: var(--slate); }

.rich-text { font-size: 16px; line-height: 1.75; color: var(--slate); }
.rich-text h2 { font-size: clamp(22px, 2.6vw, 30px); color: var(--ink); margin: 36px 0 14px; }
.rich-text h3 { font-size: 20px; color: var(--ink); margin: 28px 0 10px; }
.rich-text p { margin: 0 0 16px; }
.rich-text ul { margin: 0 0 16px; padding-left: 20px; }
.rich-text li { margin-bottom: 8px; }
.rich-text a { font-weight: 600; }

/* --------------------------------------------------------------------------
   Leadership grid
   -------------------------------------------------------------------------- */

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 24px;
}
.member {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: box-shadow .14s, transform .14s;
}
.member:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.member__photo { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; background: var(--bg-mist); }
.member__body { padding: 18px 20px 22px; }
.member__name { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink); }
.member__role { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal); margin-top: 4px; }
.member__bio { font-size: 13.5px; line-height: 1.55; color: var(--slate); margin-top: 10px; }

/* --------------------------------------------------------------------------
   Membership pricing card
   -------------------------------------------------------------------------- */

.price-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--shadow-float);
	max-width: 420px;
}
.price-card__head { padding: 30px 32px 26px; text-align: center; border-bottom: 1px solid var(--border); }
.price-card__tier { font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }
.price-card__amount { font-family: var(--font-head); font-weight: 900; font-size: 56px; line-height: 1; color: var(--ink); margin: 12px 0 4px; }
.price-card__amount span { font-size: 18px; font-weight: 700; color: var(--slate-light); }
.price-card__note { font-size: 14px; color: var(--slate); }
.price-card__body { padding: 26px 32px 32px; }
.price-card__list { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.price-card__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink); }
.price-card__list li::before { content: "\2714"; color: var(--teal); font-weight: 700; }

.use-of-funds {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}
.fund {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
}
.fund__icon {
	flex-shrink: 0;
	width: 40px; height: 40px;
	border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	font-size: 18px;
}
.fund__title { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--ink); }
.fund__body { font-size: 13.5px; line-height: 1.55; color: var(--slate); margin-top: 4px; }

/* --------------------------------------------------------------------------
   Events
   -------------------------------------------------------------------------- */

.feature-event {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: var(--navy);
	color: #fff;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.feature-event__media { min-height: 320px; background-position: center; background-size: cover; }
.feature-event__body { padding: 48px 44px; position: relative; }
.feature-event__tag {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(31,138,156,0.18);
	border: 1px solid rgba(31,138,156,0.4);
	color: #bfe3ea;
	font-family: var(--font-head);
	font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
	padding: 7px 12px; border-radius: 999px; margin-bottom: 16px;
}
.feature-event__title { font-weight: 800; font-size: clamp(26px, 3vw, 38px); line-height: 1.05; color: #fff; }
.feature-event__text { color: var(--footer-text); font-size: 15.5px; line-height: 1.6; margin: 14px 0 22px; }

.event-list { display: flex; flex-direction: column; gap: 14px; }
.event-item {
	display: grid;
	grid-template-columns: 84px 1fr auto;
	gap: 20px;
	align-items: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px 24px;
	transition: box-shadow .14s, transform .14s;
}
.event-item:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.event-date {
	text-align: center;
	background: var(--bg-mist);
	border-radius: 10px;
	padding: 10px 6px;
}
.event-date__month { font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }
.event-date__day { font-family: var(--font-head); font-weight: 900; font-size: 26px; color: var(--ink); line-height: 1; }
.event-info__title { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink); }
.event-info__meta { font-size: 13.5px; color: var(--slate); margin-top: 4px; }
.event-info__meta span { margin-right: 14px; }

@media (max-width: 560px) {
	.event-item { grid-template-columns: 64px 1fr; }
	.event-item .btn { grid-column: 1 / -1; }
}

/* Featured celebration card (light variant of feature-event) */
.feature-event--light { background: #fff; border: 1px solid var(--border); color: var(--ink); box-shadow: var(--shadow-float); }
.feature-event--light .feature-event__title { color: var(--ink); }
.feature-event--light .feature-event__text { color: var(--slate); }
.feature-event--light .feature-event__tag { background: #e8f3f5; border-color: transparent; color: var(--teal); }
.event-stats { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 26px; }
.event-stat__k { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #93a2b5; font-weight: 700; }
.event-stat__v { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--ink); margin-top: 3px; }

/* Event type pills */
.tag-pill { display: inline-block; align-self: flex-start; font-size: 10.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 10px; border-radius: 6px; }
.tag--celebration { color: var(--teal); background: #e8f3f5; }
.tag--social { color: #435061; background: #eef2f5; }
.tag--youth { color: var(--gold); background: var(--gold-soft); }
.tag--service { color: var(--flag-red); background: var(--red-soft); }

/* --------------------------------------------------------------------------
   Blog / news
   -------------------------------------------------------------------------- */

.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}
.post-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: box-shadow .14s, transform .14s;
}
.post-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.post-card__media { aspect-ratio: 16 / 9; background: var(--bg-mist); background-position: center; background-size: cover; object-fit: cover; width: 100%; }
.post-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.post-card__title { font-family: var(--font-head); font-weight: 700; font-size: 19px; line-height: 1.25; color: var(--ink); margin-bottom: 10px; }
.post-card__title a { color: inherit; text-decoration: none; }
.post-card__title a:hover { color: var(--teal); }
.post-card__excerpt { font-size: 14px; line-height: 1.6; color: var(--slate); flex: 1; }
.post-card__more { margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--teal); text-decoration: none; }

/* --------------------------------------------------------------------------
   Gallery + lightbox
   -------------------------------------------------------------------------- */

.gallery { columns: 3 260px; column-gap: 14px; }
.gallery__item {
	display: block;
	width: 100%;
	margin: 0 0 14px;
	break-inside: avoid;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--border);
	cursor: zoom-in;
	background: var(--bg-mist);
}
.gallery__item img { width: 100%; height: auto; display: block; transition: transform .3s ease; }
.gallery__item:hover img { transform: scale(1.04); }

.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(10, 22, 30, 0.92);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 200;
	padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.lightbox__close {
	position: absolute;
	top: 18px; right: 22px;
	width: 46px; height: 46px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.12);
	color: #fff;
	font-size: 22px;
	cursor: pointer;
}
.lightbox__close:hover { background: rgba(255,255,255,0.24); }

@media (max-width: 600px) {
	.gallery { columns: 2 150px; }
}

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

.site-footer { background: var(--navy); color: var(--footer-text); }
.site-footer__grid {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 56px 24px 30px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
}
.footer-brand { max-width: 300px; }
.footer-brand__link { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-bottom: 16px; }
.footer-brand__logo { width: 46px; height: 46px; object-fit: contain; flex-shrink: 0; background: #fff; border-radius: 8px; padding: 3px; }
.footer-brand__name { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: #fff; text-transform: uppercase; letter-spacing: -0.01em; }
.footer-brand p { margin-bottom: 10px; font-size: 14.5px; line-height: 1.6; color: var(--footer-muted); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
	display: flex; align-items: center; justify-content: center;
	width: 38px; height: 38px;
	border-radius: 8px;
	background: var(--navy-dark);
	border: 1px solid var(--footer-border);
	color: var(--footer-text);
	text-decoration: none;
	font-size: 15px; font-weight: 700;
	transition: all .12s;
}
.footer-social a:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.footer-col__head {
	margin: 0 0 18px;
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a, .footer-col a { color: var(--footer-muted); text-decoration: none; font-size: 14.5px; transition: color .12s; }
.footer-links a:hover, .footer-col a:hover { color: #fff; }
.footer-col p { font-size: 14px; color: var(--footer-muted); line-height: 1.55; }
.footer-col span { font-size: 14.5px; color: var(--footer-muted); line-height: 1.5; }

.footer-form { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.footer-form input {
	padding: 11px 13px;
	border-radius: 8px;
	border: 1px solid var(--footer-border);
	background: var(--navy-dark);
	color: #fff;
	font-size: 14px;
	font-family: inherit;
	outline: none;
}
.footer-form input::placeholder { color: #6f98a3; }
.footer-form button {
	padding: 11px;
	border-radius: 8px;
	border: none;
	background: var(--teal);
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.02em;
	font-family: inherit;
	cursor: pointer;
	transition: background .12s;
}
.footer-form button:hover { background: var(--teal-bright); }

.footer-bottom { border-top: 1px solid var(--footer-border); }
.footer-bottom__inner {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 20px 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
	font-size: 13px;
	color: var(--footer-dim);
}
.footer-bottom__inner a { color: var(--footer-dim); text-decoration: none; }
.footer-bottom__inner a:hover { color: #fff; }
.footer-legal { display: flex; gap: 18px; }

/* --------------------------------------------------------------------------
   WordPress core classes
   -------------------------------------------------------------------------- */

.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px; width: 1px;
	margin: -1px; overflow: hidden; padding: 0;
	position: absolute !important; word-wrap: normal !important;
}
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--slate-light); text-align: center; margin-top: 6px; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 42px; height: 42px; padding: 0 12px;
	border-radius: 8px; border: 1px solid var(--border-strong);
	color: var(--ink); text-decoration: none; font-weight: 600;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current { background: var(--teal); color: #fff; border-color: var(--teal); }

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

@media (max-width: 900px) {
	.hero__media { width: 100%; opacity: 0.16; clip-path: none; }
	.hero__content { padding: 56px 0 64px; max-width: 100%; }
	.section-head { grid-template-columns: 1fr; align-items: start; }
	.cta-band { padding: 40px 28px; }
	.contact-card__form { border-left: none; border-top: 1px solid var(--border); }
	.feature-event__media { min-height: 220px; }
}

@media (max-width: 600px) {
	.section { padding-top: 48px; padding-bottom: 48px; }
	.h-xl { font-size: clamp(30px, 8.5vw, 44px); }
	.hero__content { padding: 44px 0 52px; max-width: 100%; }
	.hero__actions { flex-direction: column; align-items: stretch; width: 100%; }
	.hero__actions .btn { width: 100%; max-width: 100%; min-width: 0; justify-content: center; white-space: normal; }
	.pillars { margin-top: -30px; }
	.pillar { border-right: none; border-bottom: 1px solid #eef2f5; }
	.masonry { columns: 2 150px; }
	.badge { position: static; margin: 16px auto 0; max-width: 100%; }
	.contact-card__intro, .contact-card__form,
	.feature-event__body { padding: 32px 24px; }
	.split { gap: 36px; }
}
