/*
 * Harvest House theme — hand-written CSS translated from the Figma Make
 * React/Tailwind source (docs/figma-source/). Mobile-first, single md
 * breakpoint at 768px (plus lg 1024px where the design uses lg: grids).
 * No framework.
 */

/* ------------------------------------------------------------------ */
/* Fonts (self-hosted, latin subsets via google-webfonts-helper)       */
/* ------------------------------------------------------------------ */

@font-face {
	font-family: 'Lora';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/lora-v37-latin-regular.woff2') format('woff2');
}

@font-face {
	font-family: 'Lora';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/lora-v37-latin-500.woff2') format('woff2');
}

@font-face {
	font-family: 'Lora';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/lora-v37-latin-600.woff2') format('woff2');
}

@font-face {
	font-family: 'Lora';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/lora-v37-latin-700.woff2') format('woff2');
}

@font-face {
	font-family: 'Lora';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/lora-v37-latin-italic.woff2') format('woff2');
}

@font-face {
	font-family: 'Lora';
	font-style: italic;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/lora-v37-latin-500italic.woff2') format('woff2');
}

@font-face {
	font-family: 'Nunito Sans';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url('../fonts/nunito-sans-v19-latin-300.woff2') format('woff2');
}

@font-face {
	font-family: 'Nunito Sans';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/nunito-sans-v19-latin-regular.woff2') format('woff2');
}

@font-face {
	font-family: 'Nunito Sans';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/nunito-sans-v19-latin-500.woff2') format('woff2');
}

@font-face {
	font-family: 'Nunito Sans';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/nunito-sans-v19-latin-600.woff2') format('woff2');
}

@font-face {
	font-family: 'Nunito Sans';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/nunito-sans-v19-latin-700.woff2') format('woff2');
}

/* ------------------------------------------------------------------ */
/* Design tokens                                                       */
/* ------------------------------------------------------------------ */

:root {
	--background: #F9F7F2;
	--foreground: #1E1C18;
	--card: #FFFFFF;
	--primary: #2A5C1B;
	--primary-foreground: #FFFFFF;
	--primary-hover: #1E4412;
	--secondary: #EFF5F5;
	--muted: #F0EDE6;
	--muted-foreground: #6B6456;
	--accent: #C05E1A;
	--accent-foreground: #FFFFFF;
	--accent-hover: #A34E14;
	--destructive: #d4183d;
	--border: rgba(30, 28, 24, 0.12);
	--input-bg: #F0EDE6;
	--ring: #2A5C1B;

	--teal-tint: #D6E4E5;
	--cream-tint: #F7F2E7;
	--teal-text: #1A3A3B;
	--brown-text: #3A2E1A;
	--hero-bg: #2A2218;
	--counter-bg: #5d2a36;
	--impact-green: #A8D0A8;
	--hero-body: #D4C9B8;
	--amazon: #FF9900;
	--amazon-hover: #e68a00;

	--footer-bg: #1E1C18;
	--footer-text: #C8BFB0;
	--footer-dim: #A89880;
	--footer-dimmer: #7A6E60;
	--footer-legal: #5A5044;

	--font-serif: 'Lora', Georgia, 'Times New Roman', serif;
	--font-sans: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

	--radius-sm: 2px;
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

	--container: 1280px; /* max-w-7xl */
	--gutter: 24px;      /* px-6 */
}

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

*,
*::before,
*::after {
	box-sizing: border-box;
	border-color: var(--border);
}

html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--background);
	color: var(--foreground);
	font-family: var(--font-sans);
	line-height: 1.5;
}

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

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-family: var(--font-serif);
	line-height: 1.5;
}

p {
	margin: 0;
}

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

button {
	font-family: var(--font-sans);
	cursor: pointer;
	border: 0;
	background: none;
	padding: 0;
	color: inherit;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100;
	width: auto;
	height: auto;
	clip: auto;
	padding: 12px 16px;
	background: var(--primary);
	color: #fff;
}

/* Shared bits ------------------------------------------------------- */

.hh-icon {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
}

.eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 12px;
}

.section-heading {
	font-size: 30px;
	font-weight: 600;
	color: var(--foreground);
	line-height: 1.375;
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.section-heading {
		font-size: 36px;
	}
}

.icon-circle {
	width: 36px;
	height: 36px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.icon-circle--teal {
	background: var(--teal-tint);
	color: var(--teal-text);
}

.icon-circle--cream {
	background: var(--cream-tint);
	color: var(--accent);
}

.icon-circle--lg {
	width: 40px;
	height: 40px;
}

.icon-circle--xl {
	width: 48px;
	height: 48px;
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: var(--radius-sm);
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.025em;
	line-height: 1.5;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--accent {
	background: var(--accent);
	color: var(--accent-foreground);
	box-shadow: var(--shadow-sm);
}

.btn--accent:hover {
	background: var(--accent-hover);
}

.btn--primary {
	background: var(--primary);
	color: var(--primary-foreground);
}

.btn--primary:hover {
	background: var(--primary-hover);
}

.btn--outline {
	border: 2px solid var(--primary);
	color: var(--primary);
	padding: 10px 22px;
}

.btn--outline:hover {
	background: var(--primary);
	color: var(--primary-foreground);
}

.btn--glass {
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
}

.btn--glass:hover {
	background: rgba(255, 255, 255, 0.25);
}

.btn--amazon {
	background: var(--amazon);
	color: #fff;
}

.btn--amazon:hover {
	background: var(--amazon-hover);
}

.btn--block {
	display: flex;
	width: 100%;
	padding-top: 16px;
	padding-bottom: 16px;
}

/* ------------------------------------------------------------------ */
/* Header                                                              */
/* ------------------------------------------------------------------ */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #F9F7F2;
	border-bottom: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}

.site-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-header__logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.site-header__logo img,
.site-header__logo .custom-logo {
	height: 48px;
	width: auto;
	object-fit: contain;
}

.site-header__text-logo {
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 600;
	color: var(--primary);
}

/* Desktop nav */

.site-nav {
	display: none;
}

.site-header__actions {
	display: none;
}

@media (min-width: 768px) {
	.site-nav {
		display: block;
	}

	.site-nav__list {
		display: flex;
		align-items: center;
		gap: 32px;
	}

	.site-header__actions {
		display: flex;
		align-items: center;
		gap: 16px;
	}
}

.site-nav__item {
	position: relative;
}

.site-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--font-sans);
	font-size: 14px;
	letter-spacing: 0.025em;
	color: var(--foreground);
	transition: color 0.15s ease;
}

.site-nav__link:hover {
	color: var(--primary);
}

.site-nav__link.is-active {
	color: var(--primary);
	font-weight: 600;
	border-bottom: 2px solid var(--primary);
	padding-bottom: 2px;
}

.site-nav__chevron {
	transition: transform 0.15s ease;
}

.site-nav__dropdown-toggle[aria-expanded="true"] .site-nav__chevron {
	transform: rotate(180deg);
}

.site-nav__dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 8px;
	width: 176px;
	background: #F9F7F2;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
	padding: 4px 0;
	z-index: 50;
}

.site-nav__dropdown-link {
	display: block;
	padding: 10px 16px;
	font-size: 14px;
	color: var(--foreground);
	transition: background-color 0.15s ease, color 0.15s ease;
}

.site-nav__dropdown-link:hover {
	background: var(--muted);
	color: var(--primary);
}

.site-header__social {
	color: var(--muted-foreground);
	display: inline-flex;
	transition: color 0.15s ease;
}

.site-header__social:hover {
	color: var(--primary);
}

.site-header__donate {
	margin-left: 8px;
	padding: 10px 20px;
}

/* Hamburger */

.site-header__hamburger {
	display: inline-flex;
	padding: 8px;
	color: var(--foreground);
}

.site-header__hamburger .site-header__icon-close {
	display: none;
}

.site-header__hamburger[aria-expanded="true"] .site-header__icon-open {
	display: none;
}

.site-header__hamburger[aria-expanded="true"] .site-header__icon-close {
	display: inline-block;
}

@media (min-width: 768px) {
	.site-header__hamburger {
		display: none;
	}
}

/* Mobile menu */

.mobile-nav {
	background: #F9F7F2;
	border-top: 1px solid var(--border);
	padding: 16px 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mobile-nav[hidden] {
	display: none;
}

@media (min-width: 768px) {
	.mobile-nav {
		display: none;
	}
}

.mobile-nav__link {
	font-size: 16px;
	padding: 4px 0;
	color: var(--foreground);
	transition: color 0.15s ease;
}

.mobile-nav__link:hover {
	color: var(--primary);
}

.mobile-nav__link.is-active {
	color: var(--primary);
	font-weight: 600;
}

.mobile-nav__link--child {
	padding-left: 12px;
	border-left: 2px solid var(--border);
}

.mobile-nav__donate {
	margin-top: 8px;
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: center;
}

.mobile-nav__social {
	display: flex;
	gap: 16px;
	padding-top: 8px;
}

.mobile-nav__social a {
	color: var(--muted-foreground);
	display: inline-flex;
	transition: color 0.15s ease;
}

.mobile-nav__social a:hover {
	color: var(--primary);
}

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

.site-footer {
	background: var(--footer-bg);
	color: var(--footer-text);
	padding: 64px 0 32px;
}

.site-footer__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
	.site-footer__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.site-footer__brand-name {
	font-family: var(--font-serif);
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 12px;
}

.site-footer__tagline {
	font-size: 14px;
	line-height: 1.625;
	color: var(--footer-dim);
	max-width: 320px;
}

.site-footer__location {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-size: 14px;
	color: var(--footer-dim);
}

.site-footer__pin {
	color: var(--accent);
}

.site-footer__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--footer-dimmer);
	margin-bottom: 16px;
}

.site-footer__links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.site-footer__links a {
	font-size: 14px;
	color: var(--footer-text);
	transition: color 0.15s ease;
}

.site-footer__links a:hover {
	color: #fff;
}

.site-footer__donate-text {
	font-size: 14px;
	color: var(--footer-dim);
	margin-bottom: 20px;
	line-height: 1.625;
}

.site-footer__legal {
	padding-top: 32px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

@media (min-width: 768px) {
	.site-footer__legal {
		flex-direction: row;
		align-items: center;
	}
}

.site-footer__legal-item {
	font-size: 12px;
	color: var(--footer-legal);
}

.site-footer__legal-item--right {
	max-width: 448px;
}

@media (min-width: 768px) {
	.site-footer__legal-item--right {
		text-align: right;
	}
}

/* ------------------------------------------------------------------ */
/* Home: hero                                                          */
/* ------------------------------------------------------------------ */

.hero {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--hero-bg);
	height: 625px;
}

.hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.6;
}

.hero__inner {
	position: relative;
	z-index: 10;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	width: 100%;
}

.hero__panel {
	max-width: 576px;
	background: rgba(0, 0, 0, 0.4);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	border-radius: var(--radius-sm);
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--teal-tint);
	margin-bottom: 16px;
}

.hero__heading {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	line-height: 1.25;
	margin-bottom: 16px;
}

@media (min-width: 768px) {
	.hero__heading {
		font-size: 48px;
	}
}

.hero__text {
	color: var(--hero-body);
	font-size: 18px;
	line-height: 1.625;
	margin-bottom: 32px;
}

.hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero__ctas .btn--accent {
	box-shadow: var(--shadow-md);
}

/* Counter bar */

.counter-bar {
	background: var(--counter-bg);
	color: #fff;
	padding: 48px 0;
}

.counter-bar__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

@media (min-width: 768px) {
	.counter-bar__inner {
		flex-direction: row;
	}
}

.counter-bar__intro {
	display: flex;
	align-items: center;
	gap: 12px;
}

.counter-bar__icon {
	color: var(--teal-tint);
}

.counter-bar__heading {
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 600;
}

.counter-bar__sub {
	color: var(--footer-dim);
	font-size: 14px;
	margin-top: 4px;
}

.counter-bar__value {
	font-family: var(--font-serif);
	font-size: 48px;
	font-weight: 700;
	color: var(--accent);
	line-height: 1;
}

/* Callouts */

.callouts {
	padding: 64px var(--gutter);
	background: var(--background);
}

.callouts__inner {
	max-width: var(--container);
	margin: 0 auto;
}

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

.callouts__heading {
	font-size: 30px;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 12px;
}

@media (min-width: 768px) {
	.callouts__heading {
		font-size: 36px;
	}
}

.callouts__text {
	color: var(--muted-foreground);
	font-size: 18px;
	max-width: 576px;
	margin: 0 auto;
}

.callouts__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 768px) {
	.callouts__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.callout {
	border-radius: var(--radius-sm);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: box-shadow 0.15s ease;
}

.callout:hover {
	box-shadow: var(--shadow-md);
}

.callout--teal {
	background: var(--teal-tint);
	color: var(--teal-text);
}

.callout--seafoam {
	background: var(--secondary);
	color: var(--teal-text);
}

.callout--cream {
	background: var(--cream-tint);
	color: var(--brown-text);
}

.callout__icon {
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	background: rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.callout__title {
	font-size: 20px;
	font-weight: 600;
	color: inherit;
}

.callout__text {
	font-size: 14px;
	line-height: 1.625;
	opacity: 0.8;
	flex: 1;
	color: inherit;
}

.callout__cta {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 600;
	color: inherit;
	transition: gap 0.15s ease;
}

.callout__cta:hover {
	gap: 8px;
}

/* Stats bar */

.stats-bar {
	background: var(--primary);
	color: var(--primary-foreground);
	padding: 32px 0;
}

.stats-bar__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	text-align: center;
}

@media (min-width: 768px) {
	.stats-bar__inner {
		grid-template-columns: repeat(4, 1fr);
	}
}

.stats-bar__value {
	font-family: var(--font-serif);
	font-size: 30px;
	font-weight: 700;
	color: #fff;
}

.stats-bar__label {
	font-size: 12px;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	color: var(--impact-green);
	margin-top: 4px;
}

/* Home story + volunteer feature sections */

.home-story {
	padding: 64px 0;
	background: var(--muted);
}

.home-story__inner,
.home-volunteer__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}

@media (min-width: 768px) {
	.home-story__inner,
	.home-volunteer__inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

.home-story__text p,
.home-volunteer__text p {
	color: var(--muted-foreground);
	line-height: 1.625;
	margin-bottom: 20px;
}

.home-story__text p:last-child {
	margin-bottom: 32px;
}

.home-volunteer__text p:last-child {
	margin-bottom: 32px;
}

.home-story__media {
	position: relative;
}

.home-story__image {
	width: 100%;
	height: 320px;
	object-fit: cover;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
	.home-story__image {
		height: 384px;
	}
}

.home-story__badge {
	position: absolute;
	bottom: -16px;
	left: -16px;
	background: var(--accent);
	color: #fff;
	padding: 16px 20px;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-md);
}

.home-story__badge-line1 {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 20px;
}

.home-story__badge-line2 {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.025em;
}

.home-volunteer {
	padding: 64px 0;
	background: var(--background);
}

.home-volunteer__media {
	order: 2;
}

.home-volunteer__content {
	order: 1;
}

@media (min-width: 768px) {
	.home-volunteer__media {
		order: 1;
	}

	.home-volunteer__content {
		order: 2;
	}
}

.home-volunteer__image {
	width: 100%;
	height: 288px;
	object-fit: cover;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
}

.home-volunteer__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* ------------------------------------------------------------------ */
/* Sub-hero (inner pages)                                              */
/* ------------------------------------------------------------------ */

.subhero {
	position: relative;
	display: flex;
	align-items: flex-end;
	background: var(--hero-bg);
	overflow: hidden;
	height: 300px;
}

.subhero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.5;
}

.subhero__inner {
	position: relative;
	z-index: 10;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter) 40px;
	width: 100%;
}

.subhero__eyebrow {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--teal-tint);
	margin-bottom: 8px;
}

.subhero__heading {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
}

@media (min-width: 768px) {
	.subhero__heading {
		font-size: 48px;
	}
}

/* ------------------------------------------------------------------ */
/* Our Story                                                           */
/* ------------------------------------------------------------------ */

.story-main {
	padding: 64px 0;
	background: var(--background);
}

.story-main__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1fr;
	gap: 64px;
}

@media (min-width: 1024px) {
	.story-main__inner {
		grid-template-columns: 2fr 1fr;
	}
}

.story-main__narrative p {
	color: var(--muted-foreground);
	line-height: 1.625;
	margin-bottom: 16px;
}

.story-main__narrative ul {
	list-style: disc;
	padding-left: 28px;
	margin: 16px 0 16px 8px;
	color: var(--muted-foreground);
}

.story-main__narrative li {
	margin-bottom: 8px;
	line-height: 1.625;
}

.fast-facts {
	background: var(--cream-tint);
	border-radius: var(--radius-sm);
	padding: 24px;
}

@media (min-width: 1024px) {
	.fast-facts {
		position: sticky;
		top: 112px;
	}
}

.fast-facts__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted-foreground);
	margin-bottom: 16px;
}

.fast-facts__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.fast-facts__item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #D6C9B8;
	padding-bottom: 12px;
}

.fast-facts__item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.fast-facts__key {
	font-size: 14px;
	color: var(--muted-foreground);
}

.fast-facts__value {
	font-family: var(--font-serif);
	font-size: 14px;
	font-weight: 600;
	color: var(--foreground);
}

.fast-facts__cta {
	margin-top: 24px;
	display: flex;
	width: 100%;
}

/* Timeline */

.timeline {
	padding: 64px 0;
	background: var(--muted);
}

.timeline__inner {
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.timeline__heading {
	font-size: 30px;
	font-weight: 600;
	color: var(--foreground);
	text-align: center;
	margin-bottom: 48px;
}

.timeline__track {
	position: relative;
}

.timeline__items {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.timeline__item {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

@media (min-width: 768px) {
	.timeline__track::before {
		content: '';
		position: absolute;
		left: 88px;
		top: 0;
		bottom: 0;
		width: 1px;
		background: var(--border);
	}

	.timeline__item {
		flex-direction: row;
		gap: 32px;
	}
}

.timeline__year {
	font-family: var(--font-serif);
	color: var(--accent);
	font-weight: 700;
	font-size: 18px;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.timeline__year {
		width: 80px;
		text-align: right;
	}
}

.timeline__event {
	position: relative;
}

@media (min-width: 768px) {
	.timeline__event {
		padding-left: 32px;
	}
}

.timeline__dot {
	display: none;
}

@media (min-width: 768px) {
	.timeline__dot {
		display: block;
		position: absolute;
		left: -5px;
		top: 8px;
		width: 10px;
		height: 10px;
		border-radius: 9999px;
		background: var(--accent);
		border: 2px solid var(--muted);
	}
}

.timeline__event p {
	color: var(--muted-foreground);
	line-height: 1.625;
}

.timeline__bullets {
	list-style: disc;
	padding-left: 20px;
	color: var(--muted-foreground);
	line-height: 1.625;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

/* Values */

.story-values {
	padding: 64px 0;
	background: var(--background);
}

.story-values__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}

@media (min-width: 768px) {
	.story-values__inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

.story-values__image {
	width: 100%;
	height: 320px;
	object-fit: cover;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
}

.story-values__text p {
	color: var(--muted-foreground);
	line-height: 1.625;
	margin-bottom: 16px;
}

.story-values__text p:last-child {
	margin-bottom: 0;
}

/* ------------------------------------------------------------------ */
/* Community Partners                                                  */
/* ------------------------------------------------------------------ */

.partners {
	padding: 64px 0;
	background: var(--background);
}

.partners__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.partners__intro {
	max-width: 672px;
	margin-bottom: 56px;
}

.partners__intro-text {
	color: var(--muted-foreground);
	line-height: 1.625;
}

.partners__categories {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.partner-category__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 32px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border);
}

.partner-category__head .icon-circle {
	width: 32px;
	height: 32px;
}

.partner-category__title {
	font-size: 20px;
	font-weight: 600;
	color: var(--foreground);
}

.partner-category__thanks {
	color: var(--muted-foreground);
	line-height: 1.625;
	margin-bottom: 32px;
	max-width: 768px;
}

.partner-category__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

@media (min-width: 768px) {
	.partner-category__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.partner-category__card {
	background: var(--card);
	border-radius: var(--radius-sm);
	padding: 12px 20px;
	border: 1px solid var(--border);
	font-family: var(--font-serif);
	font-size: 16px;
	font-weight: 600;
	color: var(--foreground);
	transition: box-shadow 0.15s ease;
}

.partner-category__card:hover {
	box-shadow: var(--shadow-md);
}

.partners__donors {
	margin-top: 64px;
	padding-top: 48px;
	border-top: 1px solid var(--border);
}

.partners__donors-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.partners__donors-head .icon-circle {
	width: 32px;
	height: 32px;
}

.partners__donors-heart {
	font-family: var(--font-serif);
	color: var(--accent);
	font-weight: 700;
	font-size: 14px;
}

.partners__donors-box {
	background: var(--cream-tint);
	border-radius: var(--radius-sm);
	padding: 32px;
	max-width: 768px;
}

.partners__donors-box p {
	color: var(--muted-foreground);
	line-height: 1.625;
	margin-bottom: 16px;
}

.partners__donors-box p:last-child {
	margin-bottom: 0;
}

.partners__donors-box strong,
.partners__donors-box b {
	font-family: var(--font-serif);
	font-weight: 600;
	color: var(--foreground);
}

/* CTA band (partners bottom) */

.cta-band {
	padding: 64px 0;
	background: var(--cream-tint);
}

.cta-band__inner {
	max-width: 768px;
	margin: 0 auto;
	padding: 0 var(--gutter);
	text-align: center;
}

.cta-band__heading {
	font-size: 30px;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 20px;
}

.cta-band__text {
	color: var(--muted-foreground);
	line-height: 1.625;
	margin-bottom: 32px;
}

.cta-band__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

.cta-band__ctas .btn {
	padding-left: 28px;
	padding-right: 28px;
}

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

.events-upcoming,
.events-raffle {
	padding: 64px 0;
	background: var(--background);
}

.events-community {
	padding: 64px 0;
	background: var(--cream-tint);
}

.events-upcoming__inner,
.events-raffle__inner,
.events-community__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.events-upcoming__intro {
	max-width: 672px;
	margin-bottom: 48px;
}

.events-upcoming__intro .section-heading {
	margin-bottom: 16px;
}

.events-upcoming__intro-text {
	color: var(--muted-foreground);
	line-height: 1.625;
}

.events-upcoming__list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.events-section-heading {
	font-size: 24px;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 32px;
}

.events-section-heading--tight {
	margin-bottom: 8px;
}

.events-section-heading--center {
	margin-bottom: 12px;
}

.events-community__text {
	color: var(--muted-foreground);
	line-height: 1.625;
	margin-bottom: 32px;
}

.events-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 768px) {
	.events-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Large event card */

.event-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 24px;
	transition: box-shadow 0.15s ease;
}

@media (min-width: 768px) {
	.event-card {
		padding: 32px;
	}
}

.event-card:hover {
	box-shadow: var(--shadow-md);
}

.event-card__layout {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

@media (min-width: 768px) {
	.event-card__layout {
		flex-direction: row;
		align-items: flex-start;
	}
}

.event-card__date-block {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	background: var(--primary);
	border-radius: var(--radius-sm);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.event-card__day {
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}

.event-card__month {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	margin-top: 4px;
}

.event-card__body {
	flex: 1;
}

.event-card__title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.event-card__title {
	font-size: 20px;
	font-weight: 600;
	color: var(--foreground);
}

.event-card__badge {
	font-size: 12px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: var(--radius-sm);
	text-transform: uppercase;
	letter-spacing: 0.025em;
	background: var(--muted);
	color: var(--muted-foreground);
}

.event-card__badge--fundraiser {
	background: var(--cream-tint);
	color: var(--brown-text);
}

.event-card__badge--food-drive {
	background: var(--teal-tint);
	color: var(--teal-text);
}

.event-card__badge--volunteer {
	background: var(--secondary);
	color: var(--teal-text);
}

.event-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 12px;
}

.event-card__meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: var(--muted-foreground);
}

.event-card__meta-icon {
	color: var(--accent);
}

.event-card__description p {
	font-size: 14px;
	color: var(--muted-foreground);
	line-height: 1.625;
	margin-bottom: 8px;
}

.event-card__description p:last-child {
	margin-bottom: 0;
}

/* Small event card */

.event-card-small {
	border-radius: var(--radius-sm);
	padding: 20px;
}

.event-card-small--muted {
	background: var(--muted);
}

.event-card-small--card {
	background: var(--card);
	border: 1px solid var(--border);
}

.event-card-small__date {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 12px;
	color: var(--muted-foreground);
}

.event-card-small__icon {
	color: var(--accent);
}

.event-card-small__title {
	font-family: var(--font-serif);
	font-size: 16px;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 6px;
}

.event-card-small__description p {
	font-size: 14px;
	color: var(--muted-foreground);
	line-height: 1.625;
	margin-bottom: 8px;
}

.event-card-small__description p:last-child {
	margin-bottom: 0;
}

.event-card-small--past {
	opacity: 0.75;
	position: relative;
}

.event-card-small__badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: var(--radius-sm);
	text-transform: uppercase;
	letter-spacing: 0.025em;
	background: var(--border);
	color: var(--muted-foreground);
	margin-bottom: 8px;
}

/* Past events */

.events-past {
	padding: 64px 0;
	background: var(--background);
}

.events-past__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.events-past__count {
	color: var(--muted-foreground);
	font-size: 14px;
	margin-bottom: 32px;
}

/* Events volunteer CTA */

.events-volunteer-cta {
	padding: 48px 0;
	background: var(--cream-tint);
}

.events-volunteer-cta__inner {
	max-width: 768px;
	margin: 0 auto;
	padding: 0 var(--gutter);
	text-align: center;
}

.events-volunteer-cta__text {
	color: var(--muted-foreground);
	line-height: 1.625;
	margin-bottom: 24px;
}

.events-volunteer-cta .btn {
	padding-left: 28px;
	padding-right: 28px;
}

/* Single event */

.event-single {
	padding: 64px 0;
	background: var(--background);
}

.event-single__inner {
	max-width: 768px;
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.event-single__meta {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
	background: var(--cream-tint);
	border-radius: var(--radius-sm);
	padding: 24px;
}

.event-single__meta-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--foreground);
}

.event-single__meta-icon {
	color: var(--accent);
}

.event-single__past-notice {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	color: var(--muted-foreground);
	background: var(--muted);
	border-radius: var(--radius-sm);
	padding: 6px 12px;
	margin-bottom: 24px;
}

.event-single__content p {
	color: var(--muted-foreground);
	line-height: 1.625;
	margin-bottom: 16px;
}

.event-single__back {
	margin-top: 32px;
}

.event-single__back a {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary);
}

.event-single__back a:hover {
	color: var(--primary-hover);
}

/* ------------------------------------------------------------------ */
/* Volunteer & Donate                                                  */
/* ------------------------------------------------------------------ */

.vd {
	min-height: 60vh;
	background: var(--background);
}

.vd-subhero {
	background: var(--primary);
	padding: 64px 24px;
}

.vd-subhero__inner {
	max-width: 768px;
	margin: 0 auto;
	text-align: center;
}

.vd-subhero__eyebrow {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--impact-green);
	margin-bottom: 12px;
}

.vd-subhero__heading {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
}

@media (min-width: 768px) {
	.vd-subhero__heading {
		font-size: 48px;
	}
}

.vd-subhero__text {
	color: #C8E8C8;
	font-size: 18px;
	line-height: 1.625;
}

.vd-tabs {
	padding: 56px 24px;
}

.vd-tabs__inner {
	max-width: 768px;
	margin: 0 auto;
}

.vd-tabs__nav {
	display: flex;
	border-radius: var(--radius-sm);
	overflow: hidden;
	border: 1px solid var(--border);
	margin-bottom: 40px;
}

.vd-tabs__tab {
	flex: 1;
	padding: 12px 4px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	background: var(--card);
	color: var(--muted-foreground);
	border: 1px solid #d1d5db;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.vd-tabs__tab:hover {
	color: var(--foreground);
}

.vd-tabs__tab.is-active {
	background: var(--primary);
	color: var(--primary-foreground);
}

.vd-panel__heading {
	font-size: 24px;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 16px;
}

.vd-panel__heading--tight {
	margin-bottom: 8px;
}

.vd-panel__intro p {
	color: var(--muted-foreground);
	margin-bottom: 16px;
}

.vd-panel__intro p:last-child {
	margin-bottom: 32px;
}

.vd-panel__lead {
	color: var(--muted-foreground);
	margin-bottom: 32px;
}

/* Donation amounts */

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

@media (min-width: 768px) {
	.donate-amounts {
		grid-template-columns: repeat(5, 1fr);
	}
}

.donate-amounts__button {
	padding: 12px 0;
	border-radius: var(--radius-sm);
	border: 2px solid var(--border);
	background: var(--card);
	color: var(--foreground);
	font-size: 14px;
	font-weight: 600;
	transition: border-color 0.15s ease;
}

.donate-amounts__button:hover,
.donate-amounts__button:focus-visible {
	border-color: var(--accent);
}

.donate-notice-slot {
	min-height: 40px;
	margin-bottom: 20px;
}

.donate-notice {
	background: var(--cream-tint);
	border-radius: var(--radius-sm);
	padding: 10px 16px;
	font-size: 14px;
}

.donate-notice__muted {
	color: var(--muted-foreground);
}

.donate-notice__strong {
	font-weight: 600;
	color: var(--foreground);
}

.donate-notice__accent {
	font-weight: 600;
	color: var(--accent);
}

.vd-panel__methods {
	color: var(--muted-foreground);
	margin-bottom: 8px;
}

.vd-panel__method-link {
	color: var(--accent);
	font-weight: 600;
}

.vd-panel__method-link:hover {
	text-decoration: underline;
}

.vd-panel__method-button {
	font-size: inherit;
}

.vd-panel__mail {
	color: var(--muted-foreground);
	margin-bottom: 24px;
}

.vd-panel__legal {
	font-size: 12px;
	color: var(--muted-foreground);
	text-align: center;
	margin-top: 12px;
}

/* V&D cards (volunteer roles / sponsor types) */

.vd-cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
}

.vd-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 20px;
	display: flex;
	gap: 16px;
	transition: box-shadow 0.15s ease;
}

.vd-card:hover {
	box-shadow: var(--shadow-md);
}

.vd-card__title {
	font-family: var(--font-serif);
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 2px;
}

.vd-card__sub {
	font-size: 12px;
	color: var(--accent);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	margin-bottom: 6px;
}

.vd-card__description p {
	font-size: 14px;
	color: var(--muted-foreground);
	line-height: 1.625;
	margin-bottom: 12px;
}

.vd-card__description p:last-child {
	margin-bottom: 0;
}

.vd-note {
	background: var(--cream-tint);
	border-radius: var(--radius-sm);
	padding: 20px;
	margin-bottom: 32px;
}

.vd-note p {
	font-size: 14px;
	color: var(--muted-foreground);
	line-height: 1.625;
}

/* Wishlist */

.wishlist-how {
	background: var(--cream-tint);
	border-radius: var(--radius-sm);
	padding: 24px;
	margin-bottom: 32px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

@media (min-width: 768px) {
	.wishlist-how {
		flex-direction: row;
		align-items: center;
	}
}

.wishlist-how__glyph {
	width: 24px;
	height: 24px;
	fill: var(--teal-text);
}

.wishlist-how__title {
	font-family: var(--font-serif);
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 4px;
}

.wishlist-how__text {
	font-size: 14px;
	color: var(--muted-foreground);
	line-height: 1.625;
}

.wishlist-needs {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 40px;
}

.wishlist-needs__row {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 16px 20px;
}

.wishlist-needs__icon {
	color: var(--accent);
	margin-top: 2px;
}

.wishlist-needs__item {
	font-family: var(--font-serif);
	font-size: 14px;
	font-weight: 600;
	color: var(--foreground);
}

.wishlist-needs__detail {
	font-size: 12px;
	color: var(--muted-foreground);
	margin-top: 2px;
}

/* Donate modal (site-wide) — mobile-first.
   Mobile: bottom sheet, no QR codes (you cannot scan a code with the phone
   that is showing it). >=768px: centred dialog, QR codes revealed. */

body.has-modal-open {
	overflow: hidden;
}

.donate-modal {
	position: fixed;
	inset: 0;
	z-index: 50;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.donate-modal[hidden] {
	display: none;
}

.donate-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.donate-modal__dialog {
	position: relative;
	background: #fff;
	border-radius: var(--radius-sm) var(--radius-sm) 0 0;
	box-shadow: var(--shadow-2xl);
	width: 100%;
	max-height: 92vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 24px 20px calc(24px + env(safe-area-inset-bottom, 0px));
}

.donate-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	color: var(--muted-foreground);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	transition: color 0.15s ease;
}

.donate-modal__close:hover {
	color: var(--foreground);
}

.donate-modal__title {
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 600;
	color: var(--foreground);
	margin: 0 40px 8px 0;
}

.donate-modal__intro {
	font-size: 14px;
	line-height: 1.5;
	color: var(--muted-foreground);
	margin-bottom: 20px;
}

.donate-modal__methods {
	display: grid;
	gap: 16px;
}

.donate-method {
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 16px;
	background: var(--background);
}

.donate-method__name {
	font-family: var(--font-serif);
	font-size: 17px;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 6px;
}

.donate-method__note {
	font-size: 13px;
	line-height: 1.45;
	color: var(--muted-foreground);
	margin-bottom: 12px;
}

.donate-method__note--desktop {
	display: none;
}

.donate-method__recipient {
	font-size: 12px;
	line-height: 1.45;
	color: var(--muted-foreground);
	margin-top: 10px;
}

.donate-method__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
}

/* Tap-to-copy: generous hit area, value stays selectable by eye. */
.donate-copy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	min-height: 48px;
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	background: #fff;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.donate-copy:hover {
	border-color: var(--primary);
}

.donate-copy.is-copied {
	border-color: var(--primary);
	background: var(--secondary, #EFF5F5);
}

.donate-copy__value {
	font-size: 17px;
	font-weight: 600;
	color: var(--foreground);
	letter-spacing: 0.01em;
}

.donate-copy__action {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--primary);
	white-space: nowrap;
}

/* QR codes are desktop-only by design. */
.donate-method__qr {
	display: none;
	margin: 16px 0 0;
}

.donate-method__qr-link {
	display: inline-block;
	line-height: 0;
	border-radius: var(--radius-sm);
}

.donate-method__qr-link:hover .donate-method__qr-img {
	opacity: 0.85;
}

.donate-method__qr-link:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 3px;
}

.donate-method__qr-img {
	width: 100%;
	max-width: 220px;
	height: auto;
	object-fit: contain;
	border-radius: var(--radius-sm);
}

.donate-method__qr-caption {
	font-size: 12px;
	color: var(--muted-foreground);
	margin-top: 6px;
}

@media (min-width: 768px) {
	.donate-modal {
		align-items: center;
	}

	.donate-modal__dialog {
		border-radius: var(--radius-sm);
		max-width: 720px;
		width: calc(100% - 48px);
		max-height: 88vh;
		padding: 32px;
	}

	.donate-modal__title {
		font-size: 26px;
	}

	.donate-modal__methods {
		grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
		gap: 24px;
	}

	.donate-method__note--mobile {
		display: none;
	}

	.donate-method__note--desktop {
		display: block;
	}

	.donate-method__qr {
		display: block;
	}
}

/* Video modal (site-wide) — mobile-first, mirrors the donate modal.
   Full-width 16:9 player at every breakpoint; no horizontal scroll. */

.video-modal {
	position: fixed;
	inset: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.video-modal[hidden] {
	display: none;
}

.video-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
}

.video-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 960px;
	background: #000;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-2xl);
}

.video-modal__close {
	position: absolute;
	top: 8px;
	right: 8px;
	color: #fff;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	transition: opacity 0.15s ease;
	z-index: 1;
}

.video-modal__close:hover {
	opacity: 0.75;
}

.video-modal__frame {
	width: 100%;
}

.video-modal__video {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: var(--radius-sm);
}

/* ------------------------------------------------------------------ */
/* Contact                                                             */
/* ------------------------------------------------------------------ */

.contact {
	padding: 64px 0;
	background: var(--background);
}

.contact__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
}

@media (min-width: 1024px) {
	.contact__inner {
		grid-template-columns: 2fr 3fr;
	}
}

.contact__info {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.contact__heading {
	font-size: 24px;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 24px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-info__row {
	display: flex;
	gap: 16px;
}

.contact-info__row .icon-circle {
	margin-top: 2px;
}

.contact-info__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	color: var(--muted-foreground);
	margin-bottom: 2px;
}

.contact-info__value {
	font-size: 14px;
	color: var(--foreground);
}

.contact-info__value a:hover {
	color: var(--primary);
}

.contact-board {
	background: var(--muted);
	border-radius: var(--radius-sm);
	padding: 24px;
}

.contact-board__heading {
	font-family: var(--font-serif);
	font-size: 18px;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 16px;
}

.contact-board__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-board__role {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	color: var(--muted-foreground);
}

.contact-board__name {
	font-size: 14px;
	font-weight: 600;
	color: var(--foreground);
}

.contact-inquiries {
	background: var(--cream-tint);
	border-radius: var(--radius-sm);
	padding: 24px;
}

.contact-inquiries__heading {
	font-family: var(--font-serif);
	font-size: 18px;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 8px;
}

.contact-inquiries__text {
	font-size: 14px;
	color: var(--muted-foreground);
	line-height: 1.625;
}

/* Form */

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-form__hp {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 768px) {
	.contact-form__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.contact-form__label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 6px;
}

.contact-form__required {
	color: var(--accent);
}

.contact-form__input {
	width: 100%;
	padding: 12px 16px;
	background: var(--input-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	font-family: var(--font-sans);
	font-size: 14px;
	color: var(--foreground);
	transition: box-shadow 0.15s ease;
}

.contact-form__input::placeholder {
	color: var(--muted-foreground);
}

.contact-form__input:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(42, 92, 27, 0.4);
}

.contact-form__select {
	appearance: none;
}

.contact-form__textarea {
	resize: none;
}

.contact-form__submit {
	align-self: flex-start;
	padding: 12px 32px;
}

.contact-success {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary);
	border-radius: var(--radius-sm);
	padding: 48px;
	text-align: center;
}

.contact-success__icon {
	width: 56px;
	height: 56px;
	border-radius: 9999px;
	background: var(--primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.contact-success__heading {
	font-size: 24px;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 12px;
}

.contact-success__text {
	color: var(--muted-foreground);
	line-height: 1.625;
}

/* ------------------------------------------------------------------ */
/* Generic page content / 404                                          */
/* ------------------------------------------------------------------ */

.page-content {
	padding: 64px 0;
	background: var(--background);
}

.page-content__inner {
	max-width: 768px;
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.page-content__inner--center {
	text-align: center;
}

.page-content__inner p {
	color: var(--muted-foreground);
	line-height: 1.625;
	margin-bottom: 16px;
}

.page-content__inner h2,
.page-content__inner h3 {
	color: var(--foreground);
	margin: 32px 0 12px;
}

.page-content__inner ul {
	list-style: disc;
	padding-left: 28px;
	color: var(--muted-foreground);
	margin-bottom: 16px;
}

.page-content__inner--center .btn {
	margin-top: 16px;
}

.page-content__entry {
	margin-bottom: 40px;
}

.page-content__title a:hover {
	color: var(--primary);
}

/* ------------------------------------------------------------------ */
/* Motion                                                              */
/* ------------------------------------------------------------------ */

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