/* ==========================================================================
   Mission Bezubaan — main stylesheet
   Mobile-first. No frameworks.

   1. Fonts & tokens
   2. Base & accessibility
   3. Layout primitives
   4. Typography helpers
   5. Buttons
   6. Header & navigation
   7. Hero
   8. Homepage sections
   9. Cards & grids
   10. Media: photos, lightbox, video
   11. Support, campaign, instagram, final CTA
   12. Inner pages: page hero, article, event, contact
   13. Forms
   14. Footer
   15. Utilities, WordPress core classes
   16. Motion
   ========================================================================== */

/* 1. Fonts & tokens ------------------------------------------------------ */

@font-face {
	font-family: "Fraunces";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/fraunces-latin-wght-normal.woff2") format("woff2");
}
@font-face {
	font-family: "Fraunces";
	font-style: italic;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/fraunces-latin-wght-italic.woff2") format("woff2");
}
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2");
}

:root {
	/* Colour */
	--ink: #1c1714;
	--ink-2: #2b241f;
	--ink-soft: #3a322c;
	--paper: #fbf7f1;
	--white: #fffdfa;
	--sand: #f4ebdf;
	--sand-2: #eadccb;
	--muted: #6b6058;
	--muted-dark: #b3a699;
	--line: rgba(28, 23, 20, 0.12);
	--line-strong: rgba(28, 23, 20, 0.22);
	--line-light: rgba(251, 247, 241, 0.16);
	--mb-accent: #ee7a24;
	--clay: #b24a0e;
	--glow: #f59a4f;
	--moss: #3e5a48;
	--focus: #b24a0e;

	/* Type */
	--font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
	--font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", sans-serif;
	--step--1: clamp(0.84rem, 0.82rem + 0.1vw, 0.9rem);
	--step-0: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
	--step-1: clamp(1.15rem, 1.08rem + 0.35vw, 1.35rem);
	--step-2: clamp(1.4rem, 1.25rem + 0.7vw, 1.85rem);
	--step-3: clamp(1.75rem, 1.45rem + 1.4vw, 2.6rem);
	--step-4: clamp(2.15rem, 1.6rem + 2.6vw, 3.7rem);
	--step-5: clamp(2.5rem, 1.7rem + 3.8vw, 4.6rem);

	/* Space & shape */
	--gutter: clamp(1.1rem, 0.7rem + 2vw, 2rem);
	--section: clamp(3.75rem, 2.5rem + 6vw, 7.5rem);
	--radius-sm: 10px;
	--radius: 18px;
	--radius-lg: 28px;
	--shadow: 0 1px 2px rgba(28, 23, 20, 0.05), 0 8px 28px -12px rgba(28, 23, 20, 0.18);
	--shadow-lg: 0 30px 60px -30px rgba(28, 23, 20, 0.35);
	--header-h: 68px;
	--ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* 2. Base & accessibility ------------------------------------------------ */

*,
*::before,
*::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-padding-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: no-preference) {
	html { scroll-behavior: smooth; }
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: var(--step-0);
	line-height: 1.65;
	font-optical-sizing: auto;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img,
svg,
video,
iframe { display: block; max-width: 100%; }

img { height: auto; }

a {
	color: var(--clay);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}
a:hover { color: var(--ink); }

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em;
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: -0.015em;
	color: inherit;
	font-variation-settings: "SOFT" 50, "WONK" 0;
	text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }

ul, ol { padding: 0; margin: 0; }

button, input, select, textarea { font: inherit; color: inherit; }

:focus { outline: none; }
:focus-visible {
	outline: 3px solid var(--focus);
	outline-offset: 3px;
	border-radius: 6px;
}
.section--ink :focus-visible,
.site-footer :focus-visible,
.final-cta :focus-visible,
.support-block :focus-visible { outline-color: var(--glow); }

::selection { background: var(--mb-accent); color: var(--ink); }

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.screen-reader-text:focus {
	clip: auto;
	width: auto;
	height: auto;
	margin: 0;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 1rem;
	z-index: 1000;
	padding: 0.75rem 1.1rem;
	background: var(--ink);
	color: var(--paper);
	border-radius: var(--radius-sm);
	font-weight: 600;
	text-decoration: none;
}
.skip-link:focus { top: 1rem; color: var(--paper); }

.site-main:focus { outline: none; }

/* 3. Layout primitives --------------------------------------------------- */

.container {
	width: 100%;
	max-width: 1240px;
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.container--narrow { max-width: calc(760px + var(--gutter) * 2); }
.container--wide-media { max-width: calc(1040px + var(--gutter) * 2); margin-bottom: 2.5rem; }

.section { padding-block: var(--section); }
.section--tight { padding-block: calc(var(--section) * 0.6); }
.section--archive { padding-top: calc(var(--section) * 0.4); }
.section--article { padding-block: calc(var(--section) * 0.55) var(--section); }
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); color: var(--paper); }
.section + .section--tight:not(.section--sand),
.section--tight + .section--tight { padding-top: 0; }
.section--sand + .section--tight,
.section--ink + .section--tight { padding-top: calc(var(--section) * 0.6); }

.split-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem 2rem;
	margin-bottom: clamp(1.75rem, 1rem + 2vw, 3rem);
}
.split-head .section-head { margin-bottom: 0; max-width: 46rem; }

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}
.btn-row--center { justify-content: center; }

/* 4. Typography helpers -------------------------------------------------- */

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1rem;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--clay);
}
.eyebrow::before {
	content: "";
	width: 1.5rem;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
}
.eyebrow--light { color: var(--glow); }
.eyebrow--pill {
	padding: 0.4rem 0.85rem 0.4rem 0.7rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
	letter-spacing: 0.06em;
	text-transform: none;
	font-size: 0.85rem;
	color: var(--ink);
}
.eyebrow--pill::before { display: none; }
.eyebrow--pill .mb-icon { color: var(--mb-accent); fill: var(--mb-accent); }

.section-head { margin-bottom: clamp(1.75rem, 1rem + 2vw, 3rem); max-width: 46rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head__title { font-size: var(--step-3); margin-bottom: 0.4em; }
.section-head__text { color: var(--muted); font-size: var(--step-1); line-height: 1.55; margin: 0; }
.section--ink .section-head__text { color: var(--muted-dark); }

.lede { font-size: var(--step-1); line-height: 1.6; }
.small { font-size: var(--step--1); color: var(--muted); }
.h3 { font-size: var(--step-2); }

.manifesto {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	margin: 2rem 0 0;
	font-family: var(--font-display);
	font-size: var(--step-2);
	line-height: 1.25;
}
.manifesto span:nth-child(2) { color: var(--glow); font-style: italic; }
.manifesto--dark span:nth-child(2) { color: var(--clay); }

.note-line {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	margin: 2.5rem 0 0;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
	color: var(--muted);
}
.note-line .mb-icon { flex: none; margin-top: 0.2rem; color: var(--clay); }

.checklist { list-style: none; display: grid; gap: 1rem; margin: 1.75rem 0 2rem; }
.checklist li { display: flex; gap: 0.85rem; align-items: flex-start; }
.checklist .mb-icon {
	flex: none;
	width: 1.9rem;
	height: 1.9rem;
	padding: 0.35rem;
	margin-top: 0.05rem;
	border-radius: 50%;
	background: var(--mb-accent);
	color: var(--ink);
	stroke-width: 2.2;
}
.checklist strong { font-weight: 600; }
.checklist--large { gap: 1.25rem; font-size: var(--step-1); line-height: 1.5; }

/* 5. Buttons ------------------------------------------------------------- */

.btn {
	--btn-bg: var(--mb-accent);
	--btn-fg: var(--ink);
	--btn-border: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	min-height: 48px;
	padding: 0.7rem 1.35rem;
	border: 1.5px solid var(--btn-border);
	border-radius: 999px;
	background: var(--btn-bg);
	color: var(--btn-fg);
	font-family: var(--font-body);
	font-size: 0.97rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.005em;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s var(--ease), background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.btn .mb-icon { flex: none; transition: transform 0.2s var(--ease); }
.btn:hover { color: var(--btn-fg); transform: translateY(-1px); }
.btn:hover .mb-icon--arrow-right { transform: translateX(3px); }
.btn:active { transform: translateY(0); }

.btn--primary { box-shadow: 0 10px 24px -14px rgba(178, 74, 14, 0.9); }
.btn--primary:hover { --btn-bg: #f38a3b; }
.btn--primary .mb-icon--heart { fill: currentColor; }

.btn--secondary { --btn-bg: transparent; --btn-border: var(--line-strong); }
.btn--secondary:hover { --btn-bg: var(--ink); --btn-fg: var(--paper); --btn-border: var(--ink); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--paper); --btn-border: var(--line-light); }
.btn--ghost:hover { --btn-bg: var(--paper); --btn-fg: var(--ink); }

.btn--light { --btn-bg: var(--paper); --btn-fg: var(--ink); }
.btn--light:hover { --btn-bg: var(--white); }

.btn--lg { min-height: 56px; padding: 0.9rem 1.8rem; font-size: 1.05rem; }

.btn--link {
	--btn-bg: transparent;
	--btn-fg: var(--ink);
	min-height: 44px;
	padding: 0.4rem 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}
.btn--link span {
	background-image: linear-gradient(currentColor, currentColor);
	background-size: 100% 1.5px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	padding-bottom: 2px;
}
.btn--link:hover { --btn-fg: var(--clay); transform: none; }
.section--ink .btn--link { --btn-fg: var(--paper); }

/* 6. Header & navigation ------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s, box-shadow 0.25s;
}
/* Blur lives on a pseudo-element: backdrop-filter on the header itself would trap the fixed mobile menu. */
.site-header::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(251, 247, 241, 0.86);
	-webkit-backdrop-filter: saturate(1.4) blur(14px);
	backdrop-filter: saturate(1.4) blur(14px);
}
.admin-bar .site-header { top: 46px; }
@media (min-width: 783px) { .admin-bar .site-header { top: 32px; } }
@media (max-width: 600px) { .admin-bar .site-header { top: 0; } }
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -24px rgba(28, 23, 20, 0.5); }

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--header-h);
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	color: var(--ink);
	text-decoration: none;
	position: relative;
	z-index: 2;
}
.site-brand:hover { color: var(--ink); }
.site-brand .mb-mark { flex: none; }
.site-brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.site-brand__name {
	font-family: var(--font-display);
	font-size: 1.22rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.site-brand__tag { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.02em; }
.site-brand--logo img,
.site-brand--logo .custom-logo { max-height: 52px; width: auto; }

/* Toggle */
.nav-toggle {
	position: relative;
	z-index: 2;
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--white);
	cursor: pointer;
}
.nav-toggle__icon { display: grid; gap: 5px; width: 20px; }
.nav-toggle__icon span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: var(--ink);
	transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle__icon span:nth-child(3) { width: 65%; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(3) { width: 100%; transform: translateY(-7px) rotate(-45deg); }

/* Mobile panel */
.site-nav {
	position: fixed;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding: calc(var(--header-h) + 1rem) var(--gutter) 2rem;
	background: var(--paper);
	overflow-y: auto;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0.25s;
}
.site-nav.is-open {
	visibility: visible;
	opacity: 1;
	transform: none;
	transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.no-js .site-nav,
html:not(.js) .site-nav { position: static; visibility: visible; opacity: 1; transform: none; padding: 1rem 0; }
html:not(.js) .nav-toggle { display: none; }
html:not(.js) .site-header__inner { flex-wrap: wrap; }

.primary-nav ul { list-style: none; }
.primary-nav > ul > li { border-bottom: 1px solid var(--line); }
.primary-nav a {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 0.55rem 0;
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 1.5rem;
	text-decoration: none;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav .current-menu-ancestor > a { color: var(--clay); }
.primary-nav .sub-menu { padding: 0 0 0.75rem 1rem; border-left: 2px solid var(--sand-2); margin-bottom: 0.75rem; }
.primary-nav .sub-menu a { font-family: var(--font-body); font-size: 1.02rem; min-height: 44px; padding: 0.3rem 0; color: var(--ink-soft); }

.site-nav__cta .btn { width: 100%; }
.site-nav__extra { display: grid; gap: 0.6rem; margin-top: auto; padding-top: 1rem; font-size: 0.95rem; }
.site-nav__extra a { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--muted); text-decoration: none; min-height: 40px; }

@media (min-width: 1080px) {
	:root { --header-h: 84px; }
	.nav-toggle { display: none; }
	.site-nav,
	.site-nav.is-open {
		position: static;
		flex-direction: row;
		align-items: center;
		gap: 1.25rem;
		padding: 0;
		background: none;
		overflow: visible;
		visibility: visible;
		opacity: 1;
		transform: none;
		transition: none;
	}
	.site-nav__extra { display: none; }
	.site-nav__cta .btn { width: auto; }
	.primary-nav > ul { display: flex; align-items: center; gap: 0.15rem; }
	.primary-nav > ul > li { position: relative; border: 0; }
	.primary-nav a {
		min-height: 44px;
		padding: 0.5rem 0.8rem;
		border-radius: 999px;
		font-family: var(--font-body);
		font-size: 0.95rem;
		font-weight: 500;
	}
	.primary-nav > ul > li > a:hover { background: var(--sand); color: var(--ink); }
	.primary-nav .menu-item-has-children > a::after {
		content: "";
		width: 0.45em;
		height: 0.45em;
		margin-left: 0.45em;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: translateY(-0.15em) rotate(45deg);
		opacity: 0.6;
	}
	.primary-nav .sub-menu {
		position: absolute;
		top: calc(100% + 6px);
		left: 50%;
		min-width: 230px;
		margin: 0;
		padding: 0.5rem;
		border: 1px solid var(--line);
		border-radius: var(--radius);
		background: var(--white);
		box-shadow: var(--shadow-lg);
		opacity: 0;
		visibility: hidden;
		transform: translate(-50%, 6px);
	}
	.primary-nav .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
	.primary-nav li:hover > .sub-menu,
	.primary-nav li:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, 0);
		transition: opacity 0.18s, transform 0.18s var(--ease);
	}
	.primary-nav .sub-menu a { display: flex; width: 100%; border-radius: var(--radius-sm); padding: 0.55rem 0.8rem; font-size: 0.93rem; }
	.primary-nav .sub-menu a:hover { background: var(--sand); color: var(--ink); }
	.site-nav__cta .btn { min-height: 46px; padding-inline: 1.15rem; }
}

@media (min-width: 1080px) and (max-width: 1200px) {
	.primary-nav a { padding-inline: 0.6rem; }
}

/* 7. Hero ---------------------------------------------------------------- */

.hero {
	position: relative;
	padding-block: clamp(2.25rem, 1rem + 5vw, 5.5rem) clamp(3.5rem, 2rem + 6vw, 7rem);
	overflow: hidden;
}
.hero::before {
	content: "";
	position: absolute;
	right: -20vw;
	top: -30vw;
	width: 70vw;
	height: 70vw;
	max-width: 900px;
	max-height: 900px;
	border-radius: 50%;
	background: radial-gradient(closest-side, rgba(238, 122, 36, 0.16), rgba(238, 122, 36, 0));
	pointer-events: none;
}
.hero__grid {
	position: relative;
	display: grid;
	gap: clamp(2.5rem, 2rem + 3vw, 4.5rem);
	align-items: center;
}
.hero__title {
	font-size: var(--step-5);
	font-weight: 450;
	line-height: 1.02;
	letter-spacing: -0.03em;
	margin-bottom: 0.45em;
	max-width: 13ch;
}
.hero__text {
	max-width: 36rem;
	margin-bottom: 2rem;
	font-size: var(--step-1);
	line-height: 1.55;
	color: var(--ink-soft);
}
.hero__pillars {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1.1rem;
	margin-top: 2.25rem;
	list-style: none;
	font-size: 0.88rem;
	color: var(--muted);
}
.hero__pillars li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__pillars li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--mb-accent); }

.hero__visual { position: relative; }
.hero__figure { position: relative; margin: 0; }
.hero__figure img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}
.hero__figure figcaption {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	max-width: calc(100% - 2rem);
	padding: 0.4rem 0.75rem;
	background: rgba(28, 23, 20, 0.7);
	color: var(--paper);
	border-radius: 999px;
	font-size: 0.8rem;
}
.hero__badge {
	position: absolute;
	top: 1.25rem;
	left: -0.5rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.55rem 1rem 0.55rem 0.6rem;
	border-radius: 999px;
	background: var(--white);
	box-shadow: var(--shadow);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1rem;
}

/* Illustrated hero when no photo is set */
.hero-art {
	position: relative;
	aspect-ratio: 1 / 1;
	max-width: 560px;
	margin-inline: auto;
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at 30% 25%, rgba(255, 253, 250, 0.9), rgba(255, 253, 250, 0) 45%),
		linear-gradient(160deg, var(--sand) 0%, var(--sand-2) 100%);
	overflow: hidden;
	isolation: isolate;
}
.hero-art::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(28, 23, 20, 0.08) 1px, transparent 1px);
	background-size: 18px 18px;
	mask-image: linear-gradient(to bottom, #000, transparent 80%);
	-webkit-mask-image: linear-gradient(to bottom, #000, transparent 80%);
	z-index: -1;
}
.hero-art__sun {
	position: absolute;
	width: 62%;
	aspect-ratio: 1;
	left: 19%;
	top: 16%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(238, 122, 36, 0.35), rgba(238, 122, 36, 0) 70%);
}
.hero-art__bubble--main {
	position: absolute;
	left: 50%;
	top: 46%;
	transform: translate(-50%, -50%);
	display: grid;
	place-items: center;
	width: 44%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--white);
	box-shadow: var(--shadow-lg);
}
.hero-art__bubble--main .mb-mark { width: 58%; height: auto; }
.hero-art__chip {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.5rem 0.9rem 0.5rem 0.7rem;
	border-radius: 999px;
	background: var(--white);
	box-shadow: var(--shadow);
	font-size: clamp(0.78rem, 0.7rem + 0.3vw, 0.92rem);
	font-weight: 600;
	white-space: nowrap;
}
.hero-art__chip .mb-icon { color: var(--clay); }
.hero-art__chip--1 { left: 7%; top: 14%; }
.hero-art__chip--2 { right: 6%; top: 26%; }
.hero-art__chip--3 { left: 5%; top: 62%; }
.hero-art__chip--4 { right: 8%; top: 70%; }
.hero-art__quote {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 6%;
	margin: 0;
	text-align: center;
	font-family: var(--font-display);
	font-style: italic;
	font-size: var(--step-2);
	color: var(--ink);
}

@media (prefers-reduced-motion: no-preference) {
	.hero-art__chip { animation: float 7s ease-in-out infinite; }
	.hero-art__chip--2 { animation-delay: -2s; }
	.hero-art__chip--3 { animation-delay: -4s; }
	.hero-art__chip--4 { animation-delay: -5.5s; }
}
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

@media (min-width: 960px) {
	.hero__grid { grid-template-columns: 1.08fr 0.92fr; }
	.hero--photo .hero__figure img { aspect-ratio: 4 / 5; }
}

/* 8. Homepage sections --------------------------------------------------- */

.why__grid { display: grid; gap: 2rem 4rem; }
.why__title {
	font-size: var(--step-5);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.03em;
	margin: 0;
}
.why__title em,
.final-cta__title em,
.page-hero__title em { color: var(--mb-accent); font-style: italic; }
.why__body { max-width: 40rem; }
.why__body p:not(.lede):not(.manifesto) { color: var(--muted-dark); }
@media (min-width: 900px) {
	.why__grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
	.why__lead { position: sticky; top: calc(var(--header-h) + 2rem); }
}

.pillars {
	list-style: none;
	display: grid;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.pillar {
	position: relative;
	padding: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
	background: var(--paper);
}
.pillar__num {
	position: absolute;
	top: 1.4rem;
	right: 1.5rem;
	font-family: var(--font-display);
	font-size: 0.95rem;
	color: var(--muted);
}
.pillar__icon {
	display: inline-grid;
	place-items: center;
	width: 3.25rem;
	height: 3.25rem;
	margin-bottom: 1.25rem;
	border-radius: 50%;
	background: var(--sand);
	color: var(--clay);
}
.pillar__title { font-size: var(--step-2); margin-bottom: 0.35em; }
.pillar p { margin: 0; color: var(--muted); }
@media (min-width: 640px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars { grid-template-columns: repeat(4, 1fr); } }

.what__grid { display: grid; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
@media (min-width: 900px) { .what__grid { grid-template-columns: 1fr 1fr; } }
.what__copy .section-head { margin-bottom: 0; }
.prose p { color: var(--ink-soft); font-size: var(--step-1); line-height: 1.6; }

.one-meal { text-align: center; }
.one-meal__inner { display: flex; flex-direction: column; align-items: center; }
.one-meal__icon {
	display: grid;
	place-items: center;
	width: 4.5rem;
	height: 4.5rem;
	margin-bottom: 1.5rem;
	border-radius: 50%;
	background: var(--mb-accent);
	color: var(--ink);
}
.one-meal__title { font-size: var(--step-4); font-weight: 450; letter-spacing: -0.025em; }
.one-meal__text { font-size: var(--step-1); line-height: 1.6; color: var(--ink-soft); max-width: 40rem; }
.one-meal__kicker {
	margin: 0.5rem 0 2rem;
	font-family: var(--font-display);
	font-style: italic;
	font-size: var(--step-2);
	color: var(--clay);
}

/* Impact */
.stats {
	display: grid;
	gap: 1px;
	margin: 0;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.stat {
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-end;
	gap: 0.25rem;
	padding: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
	background: var(--white);
}
.stat__value {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--step-4);
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--ink);
}
.stat__label { color: var(--muted); font-size: 0.95rem; }
.stats__note { margin-top: 1rem; font-size: var(--step--1); color: var(--muted); }
@media (min-width: 640px) {
	.stats { grid-template-columns: repeat(2, 1fr); }
	.stats--3 { grid-template-columns: repeat(3, 1fr); }
	.stats--1 { grid-template-columns: 1fr; }
}
@media (min-width: 1024px) { .stats--4 { grid-template-columns: repeat(4, 1fr); } }

.impact-pending {
	display: grid;
	gap: 1.5rem;
	align-items: center;
	padding: clamp(1.5rem, 1rem + 2vw, 2.75rem);
	border: 1px dashed var(--line-strong);
	border-radius: var(--radius-lg);
	background: var(--white);
}
.impact-pending__title { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.2; margin-bottom: 0.4em; }
.impact-pending p:last-child { margin: 0; color: var(--muted); max-width: 44rem; }
.impact-pending__bars { display: flex; align-items: flex-end; gap: 8px; height: 72px; }
.impact-pending__bars span { width: 18px; border-radius: 6px 6px 3px 3px; background: var(--sand-2); }
.impact-pending__bars span:nth-child(1) { height: 35%; }
.impact-pending__bars span:nth-child(2) { height: 55%; }
.impact-pending__bars span:nth-child(3) { height: 75%; }
.impact-pending__bars span:nth-child(4) { height: 100%; background: var(--mb-accent); }
@media (min-width: 720px) { .impact-pending { grid-template-columns: auto 1fr; gap: 2.5rem; } }

/* Help */
.help-grid { list-style: none; display: grid; gap: 1rem; }
.help-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(1.5rem, 1rem + 1vw, 2rem);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.help-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.help-card__icon {
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1.1rem;
	border-radius: 14px;
	background: var(--ink);
	color: var(--mb-accent);
}
.help-card__title { font-size: var(--step-2); margin-bottom: 0.3em; }
.help-card p { color: var(--muted); flex: 1; }
.help-card .btn--link { margin-top: auto; }
@media (min-width: 640px) { .help-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
	.help-grid { grid-template-columns: repeat(4, 1fr); }
	.help-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.journey {
	list-style: none;
	display: grid;
	gap: 1rem;
	counter-reset: step;
}
.journey li {
	position: relative;
	padding: 2rem 1.5rem;
	border-radius: var(--radius);
	background: var(--sand);
	text-align: center;
}
.journey__icon {
	display: inline-grid;
	place-items: center;
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 1rem;
	border-radius: 50%;
	background: var(--mb-accent);
}
.journey h3 { font-size: var(--step-2); margin-bottom: 0.25em; }
.journey p { margin: 0; color: var(--muted); }
@media (min-width: 800px) {
	.journey { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
	.journey li:not(:last-child)::after {
		content: "";
		position: absolute;
		top: 3.75rem;
		right: -1.6rem;
		width: 1.2rem;
		height: 1.2rem;
		border-top: 2px solid var(--clay);
		border-right: 2px solid var(--clay);
		transform: rotate(45deg);
	}
}

/* 9. Cards & grids ------------------------------------------------------- */

.card-grid { display: grid; gap: clamp(1.25rem, 1rem + 1vw, 2rem); }
@media (min-width: 700px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
	.card-grid--featured > .card--featured { grid-column: span 2; grid-row: span 2; }
	.card-grid--featured > .card--featured .card__media { flex: 1 1 auto; aspect-ratio: auto; min-height: 340px; }
	.card-grid--featured > .card--featured .card__body { flex: 0 0 auto; }
	.card-grid--featured > .card--featured .card__title { font-size: var(--step-3); }
}

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: var(--radius);
	background: var(--white);
	border: 1px solid var(--line);
	overflow: hidden;
	transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card:focus-within { box-shadow: 0 0 0 3px var(--focus); }
.card__media { aspect-ratio: 16 / 11; }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem 1.35rem 1.5rem; }
.card__title { font-size: var(--step-2); line-height: 1.18; margin: 0 0 0.5rem; }
.card__link { color: inherit; text-decoration: none; }
.card__link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card__link:focus-visible { outline: none; }
.card__link:hover { color: inherit; }
.card__excerpt { color: var(--muted); margin-bottom: 1rem; }
.card__more {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--clay);
}
.card:hover .card__more .mb-icon { transform: translateX(3px); }
.card__more .mb-icon { transition: transform 0.2s var(--ease); }
.card__type { margin: 0 0 0.5rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); }
.card .progress { margin-top: auto; }

.meta-line {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	margin: 0 0 0.6rem;
	font-size: 0.85rem;
	color: var(--muted);
}
.meta-line .mb-icon { margin-right: 0.15rem; color: var(--clay); }
.meta-line__sep { opacity: 0.6; margin-inline: 0.2rem; }

.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.25rem 0.65rem;
	border-radius: 999px;
	background: var(--sand);
	color: var(--ink-soft);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.badge--live { background: #e3ede6; color: var(--moss); }
.badge--live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* Media & placeholders */
.media { position: relative; overflow: hidden; background: var(--sand); }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .media img { transform: scale(1.03); }
.media--placeholder {
	display: grid;
	place-items: center;
	align-content: center;
	gap: 0.75rem;
	min-height: 180px;
	background:
		radial-gradient(circle at 70% 20%, rgba(238, 122, 36, 0.18), transparent 55%),
		repeating-linear-gradient(135deg, rgba(28, 23, 20, 0.035) 0 2px, transparent 2px 12px),
		var(--sand);
	color: var(--clay);
}
.media__art {
	display: grid;
	place-items: center;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: var(--white);
	box-shadow: var(--shadow);
}
.media__label { font-size: 0.85rem; color: var(--muted); }
.media--tall { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); }
@media (min-width: 900px) { .media--tall { aspect-ratio: 5 / 6; } }

/* Events */
.event-list { display: grid; gap: 1rem; }
.event-card {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.1rem 1.5rem;
	align-items: start;
	padding: 1.25rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	transition: box-shadow 0.25s, transform 0.25s var(--ease);
}
.event-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.event-card:focus-within { box-shadow: 0 0 0 3px var(--focus); }
.event-card__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 4.5rem;
	min-height: 4.75rem;
	padding: 0.5rem;
	border-radius: 14px;
	background: var(--ink);
	color: var(--paper);
	text-align: center;
	line-height: 1.1;
}
.event-card.is-past .event-card__date { background: var(--sand-2); color: var(--ink); }
.event-card__day { font-family: var(--font-display); font-size: 1.9rem; }
.event-card__month { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.event-card__title { font-size: var(--step-2); margin-bottom: 0.4rem; }
.event-card__meta {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem 1.1rem;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	color: var(--muted);
}
.event-card__meta li { display: inline-flex; align-items: center; gap: 0.4rem; }
.event-card__meta .mb-icon { color: var(--clay); }
.event-card__excerpt { margin: 0; color: var(--muted); }
.event-card__side { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.event-card__arrow {
	display: none;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: 1px solid var(--line);
	transition: background 0.2s, color 0.2s;
}
.event-card:hover .event-card__arrow { background: var(--mb-accent); border-color: transparent; }
.event-card__side:not(:has(.badge)) { display: none; }
@media (min-width: 720px) {
	.event-card { grid-template-columns: auto 1fr auto; align-items: center; padding: 1.5rem; }
	.event-card__side,
	.event-card__side:not(:has(.badge)) { display: flex; grid-column: auto; flex-direction: column; align-items: flex-end; }
	.event-card__arrow { display: grid; }
	.event-card__date { width: 5.5rem; min-height: 5.5rem; }
}

/* Gallery cover collage */
.gallery-cover { position: relative; display: grid; gap: 3px; aspect-ratio: 16 / 11; background: var(--white); }
.gallery-cover .media { min-height: 0; }
.gallery-cover--collage { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; }
.gallery-cover--collage .gallery-cover__main { grid-row: span 2; }
.gallery-cover__count {
	position: absolute;
	right: 0.75rem;
	bottom: 0.75rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	background: rgba(28, 23, 20, 0.75);
	color: var(--paper);
	font-size: 0.8rem;
	font-weight: 600;
}

/* Chips & pagination */
.chips { margin-top: 1.75rem; }
.chips ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chips a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0.4rem 1rem;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	color: var(--ink);
	font-size: 0.92rem;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.chips a:hover { background: var(--sand); }
.chips a[aria-current="page"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.pagination { margin-top: 3rem; }
.pagination ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem; }
.pagination a,
.pagination span {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 0.8rem;
	border-radius: 999px;
	border: 1px solid var(--line);
	color: var(--ink);
	text-decoration: none;
	font-weight: 500;
}
.pagination a:hover { background: var(--sand); }
.pagination .current { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pagination .dots { border: 0; }

/* Empty state */
.empty-state {
	display: grid;
	justify-items: center;
	gap: 1rem;
	padding: clamp(2.25rem, 1.5rem + 3vw, 4.5rem) 1.5rem;
	border: 1px dashed var(--line-strong);
	border-radius: var(--radius-lg);
	background: var(--white);
	text-align: center;
}
.empty-state__icon {
	display: grid;
	place-items: center;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: var(--sand);
	color: var(--clay);
}
.empty-state__title { margin: 0; font-family: var(--font-display); font-size: var(--step-2); line-height: 1.2; }
.empty-state__text { max-width: 34rem; margin: 0.4rem auto 0; color: var(--muted); }
.empty-state--compact { padding: 1.5rem; }
.empty-state .btn { align-self: center; }
@media (min-width: 720px) {
	.empty-state--compact { grid-template-columns: auto 1fr auto; justify-items: start; text-align: left; gap: 1.5rem; padding: 1.75rem 2rem; }
	.empty-state--compact .empty-state__text { margin-left: 0; }
}

/* 10. Media: photos, lightbox, video ------------------------------------- */

.photo-grid { list-style: none; columns: 2; column-gap: 10px; }
.photo-grid__item { display: inline-block; width: 100%; break-inside: avoid; margin-bottom: 10px; vertical-align: top; }
.photo-grid a { position: relative; display: block; border-radius: 12px; overflow: hidden; background: var(--sand); }
.photo-grid a::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(28, 23, 20, 0.35), transparent 50%);
	opacity: 0;
	transition: opacity 0.25s;
}
.photo-grid a:hover::after,
.photo-grid a:focus-visible::after { opacity: 1; }
.photo-grid img { width: 100%; transition: transform 0.5s var(--ease); }
.photo-grid a:hover img { transform: scale(1.03); }
@media (min-width: 700px) { .photo-grid { columns: 3; column-gap: 14px; } .photo-grid__item { margin-bottom: 14px; } }
@media (min-width: 1100px) { .photo-grid { columns: 4; } }

.lightbox {
	width: 100vw;
	max-width: 100vw;
	height: 100vh;
	height: 100dvh;
	max-height: 100dvh;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(20, 16, 14, 0.96);
	color: var(--paper);
}
.lightbox::backdrop { background: rgba(20, 16, 14, 0.9); }
.lightbox__inner { display: grid; grid-template-rows: auto 1fr auto; height: 100%; }
.lightbox__bar { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 1rem; }
.lightbox__count { font-size: 0.9rem; color: var(--muted-dark); }
.lightbox__stage { position: relative; display: grid; place-items: center; min-height: 0; padding: 0 0.5rem; }
.lightbox__img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; }
.lightbox__caption { min-height: 3rem; padding: 0.75rem 1.25rem 1.25rem; text-align: center; color: var(--muted-dark); font-size: 0.95rem; }
.lightbox__btn {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--line-light);
	border-radius: 50%;
	background: rgba(28, 23, 20, 0.6);
	color: var(--paper);
	cursor: pointer;
}
.lightbox__btn:hover { background: var(--paper); color: var(--ink); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); }
.lightbox__prev { left: 0.75rem; }
.lightbox__next { right: 0.75rem; }
.lightbox :focus-visible { outline-color: var(--glow); }
.lightbox__btn[hidden] { display: none; }

.video-player,
.video-embed {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--ink);
}
.video-embed > * { width: 100%; height: 100%; }
.video-player img { width: 100%; height: 100%; object-fit: cover; opacity: 0.88; }
.video-player iframe,
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-player__play {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	width: 100%;
	border: 0;
	background: linear-gradient(to top, rgba(28, 23, 20, 0.4), transparent 60%);
	cursor: pointer;
}
.play-badge {
	display: grid;
	place-items: center;
	width: 4.25rem;
	height: 4.25rem;
	padding-left: 4px;
	border-radius: 50%;
	background: var(--mb-accent);
	color: var(--ink);
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
	transition: transform 0.25s var(--ease);
}
.video-player__play:hover .play-badge,
.card--video:hover .play-badge { transform: scale(1.08); }
.card--video .card__media { position: relative; display: grid; place-items: center; }
.card--video .card__media img { position: absolute; inset: 0; }
.card--video .media--placeholder .media__art { display: none; }
.card--video .play-badge { position: relative; z-index: 1; width: 3.5rem; height: 3.5rem; }
.card__duration {
	position: absolute;
	right: 0.75rem;
	bottom: 0.75rem;
	padding: 0.15rem 0.5rem;
	border-radius: 6px;
	background: rgba(28, 23, 20, 0.8);
	color: var(--paper);
	font-size: 0.78rem;
	font-weight: 600;
}

/* 11. Support, campaign, instagram, final CTA ---------------------------- */

.support-block {
	display: grid;
	gap: 2rem;
	padding: clamp(1.75rem, 1rem + 4vw, 4rem);
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at 100% 0%, rgba(238, 122, 36, 0.28), transparent 45%),
		var(--ink);
	color: var(--paper);
	scroll-margin-top: calc(var(--header-h) + 1rem);
}
.support-block__title { font-size: var(--step-4); font-weight: 450; letter-spacing: -0.025em; }
.support-block__copy p:not(.eyebrow) { color: var(--muted-dark); font-size: var(--step-1); line-height: 1.55; max-width: 36rem; margin: 0; }
.support-block__action { align-self: center; }
.support-block__small { margin: 0.75rem 0 0; font-size: 0.85rem; color: var(--muted-dark); }
.support-block__soon {
	padding: 1.5rem;
	border: 1px solid var(--line-light);
	border-radius: var(--radius);
	background: rgba(251, 247, 241, 0.04);
}
.support-block__soon-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-size: var(--step-2);
	line-height: 1.2;
	color: var(--paper);
}
.support-block__soon-title .mb-icon { color: var(--glow); flex: none; }
.support-block__soon p:not(.support-block__soon-title) { color: var(--muted-dark); }
.support-block .editor-hint { color: var(--muted-dark); border-color: var(--line-light); }
.support-block .editor-hint a { color: var(--glow); }
@media (min-width: 900px) { .support-block { grid-template-columns: 1.3fr 1fr; gap: 4rem; } }

.campaign-feature {
	display: grid;
	border-radius: var(--radius-lg);
	background: var(--white);
	border: 1px solid var(--line);
	overflow: hidden;
}
.campaign-feature__media .media { height: 100%; min-height: 240px; aspect-ratio: auto; }
.campaign-feature__body { padding: clamp(1.5rem, 1rem + 2.5vw, 3.25rem); }
.campaign-feature__title { font-size: var(--step-3); }
.campaign-feature__title a { color: inherit; text-decoration: none; }
.campaign-feature__title a:hover { color: var(--clay); }
.campaign-feature__body > p { color: var(--muted); }
.campaign-feature__goal { display: flex; gap: 0.6rem; align-items: flex-start; }
.campaign-feature__goal .mb-icon { flex: none; margin-top: 0.25rem; color: var(--clay); }
@media (min-width: 900px) { .campaign-feature { grid-template-columns: 1fr 1fr; } }

.progress { margin: 1.25rem 0 1.5rem; }
.progress__bar { height: 10px; border-radius: 999px; background: var(--sand-2); overflow: hidden; }
.progress__bar span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--clay), var(--mb-accent)); }
.progress__meta { margin: 0.5rem 0 0; font-size: 0.9rem; color: var(--muted); }
.progress__meta strong { color: var(--ink); }

.ig-panel {
	display: grid;
	gap: 1.5rem;
	align-items: center;
	padding: clamp(1.75rem, 1rem + 3vw, 3rem);
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at 0% 100%, rgba(238, 122, 36, 0.22), transparent 50%),
		var(--sand);
}
.ig-panel__icon {
	display: grid;
	place-items: center;
	width: 5rem;
	height: 5rem;
	border-radius: 24px;
	background: var(--ink);
	color: var(--paper);
}
.ig-panel__title { font-size: var(--step-3); margin-bottom: 0.3em; word-break: break-word; }
.ig-panel__copy p:last-child { margin: 0; color: var(--ink-soft); max-width: 36rem; }
.ig-panel__copy .eyebrow { margin-bottom: 0.5rem; }
.ig-feed { margin-top: 2rem; }
@media (min-width: 860px) { .ig-panel { grid-template-columns: auto 1fr auto; gap: 2.5rem; } }

.final-cta {
	position: relative;
	padding-block: clamp(4rem, 3rem + 6vw, 8rem);
	background: var(--ink);
	color: var(--paper);
	text-align: center;
	overflow: hidden;
	isolation: isolate;
}
.final-cta::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	width: 120vw;
	max-width: 1400px;
	aspect-ratio: 1;
	transform: translate(-50%, -30%);
	border-radius: 50%;
	background: radial-gradient(closest-side, rgba(238, 122, 36, 0.3), transparent);
	z-index: -1;
}
.final-cta__inner { display: flex; flex-direction: column; align-items: center; }
.final-cta .mb-mark { margin-bottom: 1.5rem; }
.final-cta__title { max-width: 16ch; font-size: var(--step-5); font-weight: 400; line-height: 1.02; letter-spacing: -0.03em; }
.final-cta p { max-width: 34rem; margin-bottom: 2rem; color: var(--muted-dark); font-size: var(--step-1); }

/* 12. Inner pages -------------------------------------------------------- */

.page-hero { padding-block: clamp(2.5rem, 1.5rem + 4vw, 5.5rem) clamp(2rem, 1rem + 3vw, 3.5rem); }
.page-hero--sand { background: var(--sand); }
.page-hero__title { font-size: var(--step-5); font-weight: 450; line-height: 1.04; letter-spacing: -0.03em; margin-bottom: 0.35em; }
.page-hero__text { font-size: var(--step-1); line-height: 1.55; color: var(--ink-soft); max-width: 40rem; margin-bottom: 0; }
.page-hero .meta-line { margin-top: 1.25rem; font-size: 0.95rem; }
.page-hero .search-form { margin-top: 1.75rem; }
.page-hero__media { margin-top: clamp(2rem, 1rem + 3vw, 3.5rem); }
.page-hero__media img { width: 100%; max-height: 640px; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); }
.page-hero__inner > * { max-width: 900px; }

.back-link {
	display: flex;
	width: fit-content;
	align-items: center;
	gap: 0.3rem;
	min-height: 40px;
	margin-bottom: 1.25rem;
	color: var(--muted);
	font-size: 0.92rem;
	font-weight: 500;
	text-decoration: none;
}
.back-link:hover { color: var(--ink); }

.article__standfirst {
	margin-bottom: 2rem;
	font-family: var(--font-display);
	font-size: var(--step-2);
	line-height: 1.35;
	color: var(--ink-soft);
}
.article__footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: grid; gap: 1.25rem; }
.tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag-list a { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 999px; background: var(--sand); color: var(--ink); font-size: 0.85rem; text-decoration: none; }

/* Share */
.share { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 2rem; }
.share__label { margin-right: 0.35rem; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.share__btn {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--white);
	color: var(--ink);
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.share__btn:hover { background: var(--ink); color: var(--paper); }
.share__status { font-size: 0.85rem; color: var(--moss); font-weight: 600; }

/* Prose */
.entry-content { font-size: var(--step-0); }
.entry-content > * + * { margin-top: 1.25em; }
.entry-content p { margin-bottom: 0; }
.entry-content h2 { font-size: var(--step-3); margin-top: 2em; }
.entry-content h3 { font-size: var(--step-2); margin-top: 1.75em; }
.entry-content h4 { font-size: var(--step-1); margin-top: 1.5em; }
.entry-content ul,
.entry-content ol { padding-left: 1.3em; }
.entry-content li + li { margin-top: 0.4em; }
.entry-content li::marker { color: var(--clay); }
.entry-content blockquote,
.entry-content .wp-block-quote {
	margin-inline: 0;
	padding: 0.25rem 0 0.25rem 1.5rem;
	border-left: 3px solid var(--mb-accent);
	font-family: var(--font-display);
	font-size: var(--step-2);
	line-height: 1.35;
}
.entry-content blockquote cite { display: block; margin-top: 0.75rem; font-family: var(--font-body); font-size: 0.9rem; font-style: normal; color: var(--muted); }
.entry-content img { border-radius: var(--radius-sm); }
.entry-content figure { margin-inline: 0; }
.entry-content figcaption,
.wp-element-caption { margin-top: 0.6rem; font-size: 0.88rem; color: var(--muted); text-align: center; }
.entry-content hr { border: 0; height: 1px; background: var(--line); margin-block: 2.5rem; }
.entry-content table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.entry-content th,
.entry-content td { padding: 0.65rem 0.75rem; border-bottom: 1px solid var(--line); text-align: left; }
.entry-content .wp-block-button__link { border-radius: 999px; background: var(--mb-accent); color: var(--ink); font-weight: 600; }
.entry-content .wp-block-file { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.entry-content .wp-block-file__button { border-radius: 999px; background: var(--ink); color: var(--paper); padding: 0.4rem 1rem; }
.entry-content .wp-block-embed iframe { border-radius: var(--radius); }
.alignwide { margin-inline: calc(min(0px, (760px - min(1100px, 100vw - var(--gutter) * 2)) / 2)); }
.alignfull { margin-inline: calc(50% - 50vw); max-width: 100vw; width: 100vw; }
.alignleft { float: left; margin: 0.4em 1.5em 1em 0; }
.alignright { float: right; margin: 0.4em 0 1em 1.5em; }
.aligncenter { margin-inline: auto; }
.page-content-inline { margin-top: 2.5rem; }

/* Event / campaign layout */
.event-layout { display: grid; gap: 2.5rem; }
.event-facts {
	align-self: start;
	padding: 1.5rem;
	border-radius: var(--radius);
	background: var(--sand);
}
.event-facts dl { display: grid; gap: 1.1rem; margin: 0; }
.event-facts dt { display: flex; align-items: center; gap: 0.45rem; margin-bottom: 0.2rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.event-facts dt .mb-icon { color: var(--clay); }
.event-facts dd { margin: 0; font-weight: 500; }
.event-facts__cta { margin-top: 1.5rem; }
.event-facts__cta .btn { width: 100%; }
.event-facts__cta .small { margin: 0.75rem 0 0; }
.campaign-facts__goal { display: grid; gap: 0.25rem; font-family: var(--font-display); font-size: var(--step-1); line-height: 1.35; }
.campaign-facts__goal .eyebrow { margin: 0; }
.event-content .h3 { margin-top: 2.5rem; }
@media (min-width: 900px) {
	.event-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 4rem; }
	.event-facts { grid-column: 2; grid-row: 1; position: sticky; top: calc(var(--header-h) + 1.5rem); }
	.event-content { grid-column: 1; grid-row: 1; }
}

/* Contact */
.contact-layout { display: grid; gap: 2rem; }
.contact-list { list-style: none; display: grid; gap: 0.7rem; }
.contact-list li { display: flex; align-items: center; gap: 0.6rem; }
.contact-list--large { gap: 1.25rem; margin: 1.5rem 0 2rem; }
.contact-list--large li { align-items: flex-start; }
.contact-list__icon { display: grid; place-items: center; flex: none; width: 3rem; height: 3rem; border-radius: 50%; background: var(--sand); color: var(--clay); }
.contact-list__label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.contact-list--large a { font-size: var(--step-1); color: var(--ink); word-break: break-word; }
.contact-card {
	padding: clamp(1.5rem, 1rem + 2vw, 2.75rem);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--white);
	box-shadow: var(--shadow);
}
@media (min-width: 960px) { .contact-layout { grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: start; } }

/* 404 */
.not-found__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.not-found .mb-mark { margin-bottom: 1.5rem; }
.not-found .search-form { width: 100%; max-width: 30rem; margin: 1.5rem 0; }

/* Comments */
.comments { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.comment-list { list-style: none; }
.comment-list .children { list-style: none; padding-left: 1.5rem; }
.comment-body { padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.comment-author { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; }
.comment-author img { border-radius: 50%; }
.comment-meta a { color: var(--muted); font-size: 0.85rem; }
.comment-form p { margin-bottom: 1rem; }
.comment-form label { display: block; margin-bottom: 0.3rem; font-weight: 600; }

/* 13. Forms -------------------------------------------------------------- */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select {
	width: 100%;
	min-height: 50px;
	padding: 0.75rem 1rem;
	border: 1.5px solid var(--line-strong);
	border-radius: 12px;
	background: var(--paper);
	color: var(--ink);
	font-size: 1rem;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
textarea { min-height: 150px; resize: vertical; }
select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%231c1714' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.75rem;
}
input:focus,
textarea:focus,
select:focus { border-color: var(--clay); background: var(--white); box-shadow: 0 0 0 4px rgba(238, 122, 36, 0.2); outline: none; }
::placeholder { color: #8a7d72; opacity: 1; }

.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .field--full { grid-column: 1 / -1; } }
.field { margin: 0; }
.field label { display: block; margin-bottom: 0.4rem; font-weight: 600; font-size: 0.95rem; }
.req { color: var(--clay); }
.field--hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin: 1.5rem 0 0; }
.form-note { font-size: 0.85rem; color: var(--muted); }
.form-notice {
	display: flex;
	gap: 0.7rem;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	padding: 1rem 1.2rem;
	border-radius: 12px;
	font-weight: 500;
}
.form-notice .mb-icon { flex: none; margin-top: 0.15rem; }
.form-notice--success { background: #e3ede6; color: #24392b; }
.form-notice--error { background: #fbe4d6; color: #7a2f06; }
.contact-form [aria-invalid="true"] { border-color: #b3261e; }

.search-form { position: relative; display: flex; max-width: 34rem; }
.search-form__input { padding-right: 3.5rem; border-radius: 999px; background: var(--white); }
.search-form__submit {
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	background: var(--ink);
	color: var(--paper);
	cursor: pointer;
}

/* 14. Footer ------------------------------------------------------------- */

.site-footer {
	padding-block: clamp(3rem, 2rem + 4vw, 5rem) 1.5rem;
	background: #15110f;
	color: var(--muted-dark);
	font-size: 0.95rem;
}
.final-cta + .site-footer { border-top: 1px solid var(--line-light); }
.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer a:hover { color: var(--glow); }
.site-footer__top { display: grid; gap: 2.5rem; }
.site-footer .site-brand,
.site-footer .site-brand:hover { color: var(--paper); }
.site-footer .site-brand__tag { color: var(--muted-dark); }
.site-footer__text { max-width: 26rem; margin: 1.25rem 0; }
.site-footer__motto { display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0; font-family: var(--font-display); font-size: 1.1rem; color: var(--paper); }
.site-footer__motto span:nth-child(2) { color: var(--glow); font-style: italic; }
.footer-title { margin-bottom: 1rem; font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-dark); }
.footer-menu,
.site-footer__nav .menu { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem 1.5rem; }
.footer-menu a,
.site-footer__nav .menu a { display: inline-flex; align-items: center; min-height: 40px; }
.site-footer .contact-list .mb-icon { color: var(--glow); flex: none; }
.site-footer .contact-list a { word-break: break-word; }
.social-list { list-style: none; display: flex; gap: 0.5rem; margin-top: 1rem; }
.social-list a { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line-light); border-radius: 50%; }
.social-list a:hover { background: var(--paper); color: var(--ink); }
.site-footer__support { margin-top: 1.5rem; }
.site-footer__widgets { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line-light); }
.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem 2rem;
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line-light);
	font-size: 0.85rem;
}
.site-footer__bottom p { margin: 0; }
.legal-menu { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem; }
@media (min-width: 900px) { .site-footer__top { grid-template-columns: 1.3fr 1fr 1fr; gap: 4rem; } }

/* 15. Utilities & WordPress core ----------------------------------------- */

.editor-hint {
	margin: 1rem 0 0;
	padding: 0.6rem 0.9rem;
	border: 1px dashed var(--line-strong);
	border-radius: var(--radius-sm);
	font-size: 0.82rem;
	color: var(--muted);
}
.gallery-intro { margin-bottom: 2rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.88rem; color: var(--muted); }
.page-links { margin-top: 2rem; display: flex; gap: 0.5rem; }

/* 16. Motion ------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
	.js .reveal {
		opacity: 0;
		transform: translateY(18px);
		transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
		transition-delay: calc(var(--d, 0) * 80ms);
	}
	.js .reveal.is-visible { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

@media print {
	.site-header,
	.site-footer,
	.final-cta,
	.share,
	.support-block { display: none !important; }
	body { background: #fff; }
}
