/**
 * Northloom — mobile-first nonprofit landing styles.
 * Paths use Linux-style theme-relative URLs via WordPress enqueue.
 */

:root {
	--nl-navy: #001a4d;
	--nl-navy-deep: #001236;
	--nl-red: #b32025;
	--nl-red-hot: #c6282e;
	--nl-accent: #f29a8f;
	--nl-cream: #f7f4ef;
	--nl-white: #ffffff;
	--nl-ink: #1a2233;
	--nl-muted: #5a6478;
	--nl-line: #d9dde6;
	--nl-radius: 10px;
	--nl-font-display: "Montserrat", sans-serif;
	--nl-font-body: "Nunito Sans", sans-serif;
	--nl-header-h: 64px;
	--nl-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--nl-font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--nl-ink);
	background: var(--nl-white);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--nl-red);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--nl-navy);
}

h1, h2, h3, h4 {
	font-family: var(--nl-font-display);
	line-height: 1.15;
	margin: 0 0 0.6em;
}

p {
	margin: 0 0 1em;
}

ul {
	margin: 0;
	padding: 0;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 0.5rem;
	left: 0.5rem;
	z-index: 10000;
	width: auto;
	height: auto;
	clip: auto;
	padding: 0.75rem 1rem;
	background: var(--nl-white);
	color: var(--nl-navy);
}

.container {
	width: min(1120px, calc(100% - 2rem));
	margin-inline: auto;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 44px;
	padding: 0.7rem 1.25rem;
	border-radius: 6px;
	border: 2px solid transparent;
	font-family: var(--nl-font-display);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.25s var(--nl-ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
	transform: translateY(-1px);
	text-decoration: none;
}

.btn-donate,
.btn-primary {
	background: var(--nl-red);
	color: var(--nl-white);
	border-color: var(--nl-red);
}

.btn-donate:hover,
.btn-primary:hover {
	background: var(--nl-red-hot);
	color: var(--nl-white);
}

.btn-ghost {
	background: transparent;
	color: var(--nl-white);
	border-color: rgba(255, 255, 255, 0.85);
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--nl-white);
}

.btn-navy {
	background: var(--nl-navy);
	color: var(--nl-white);
	border-color: var(--nl-navy);
}

.btn-navy:hover {
	background: var(--nl-navy-deep);
	color: var(--nl-white);
}

.btn-block {
	width: 100%;
}

.text-link {
	font-weight: 700;
	text-decoration: underline;
}

.text-link--red {
	color: var(--nl-red);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--nl-navy);
	color: var(--nl-white);
	min-height: var(--nl-header-h);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: min(1200px, calc(100% - 1.25rem));
	margin-inline: auto;
	padding: 0.65rem 0;
}

.site-brand {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	color: var(--nl-white);
	text-decoration: none;
	min-width: 0;
}

.site-brand:hover {
	color: var(--nl-white);
}

.site-brand__name,
.site-brand .custom-logo-link {
	font-family: var(--nl-font-display);
	font-weight: 800;
	font-size: 1.05rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.1;
}

.site-brand .custom-logo {
	max-height: 36px;
	width: auto;
}

.site-brand__tag {
	font-size: 0.68rem;
	opacity: 0.85;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 42vw;
}

.nav-toggle {
	margin-left: auto;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--nl-white);
	position: relative;
	transition: transform 0.25s ease;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
	content: "";
	position: absolute;
	left: 0;
}

.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
	top: 0;
	transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
	top: 0;
	transform: rotate(-45deg);
}

.primary-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--nl-navy-deep);
	padding: 0.5rem 1rem 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.primary-nav.is-open {
	display: block;
}

.primary-menu {
	list-style: none;
}

.primary-menu > li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.primary-menu a {
	display: block;
	padding: 0.85rem 0.25rem;
	color: var(--nl-white);
	text-decoration: none;
	font-family: var(--nl-font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.primary-menu a:hover {
	color: var(--nl-accent);
}

.primary-menu .sub-menu {
	list-style: none;
	padding: 0 0 0.5rem 0.75rem;
	display: none;
}

.menu-item-has-children.is-open > .sub-menu {
	display: block;
}

.submenu-toggle {
	float: right;
	margin-top: -2.6rem;
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	color: var(--nl-white);
	position: relative;
}

.submenu-toggle::after {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	margin: auto;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.site-header__actions .btn-donate {
	padding: 0.55rem 0.9rem;
	min-height: 40px;
	font-size: 0.72rem;
}

.search-toggle {
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	color: var(--nl-white);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.search-toggle__icon {
	width: 16px;
	height: 16px;
	border: 2px solid currentColor;
	border-radius: 50%;
	position: relative;
}

.search-toggle__icon::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 2px;
	background: currentColor;
	right: -6px;
	bottom: -1px;
	transform: rotate(45deg);
}

.header-search {
	background: var(--nl-navy-deep);
	padding: 0.75rem 1rem 1rem;
}

.header-search .search-form {
	display: flex;
	gap: 0.5rem;
	width: min(1120px, 100%);
	margin-inline: auto;
}

.search-field {
	flex: 1;
	min-height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	padding: 0.5rem 0.85rem;
	background: rgba(255, 255, 255, 0.06);
	color: var(--nl-white);
}

.search-submit {
	min-height: 44px;
	padding: 0 1rem;
	border: 0;
	border-radius: 6px;
	background: var(--nl-red);
	color: var(--nl-white);
	font-weight: 700;
	cursor: pointer;
}

/* Hero */
.hero {
	position: relative;
	min-height: min(88vh, 720px);
	display: flex;
	align-items: flex-end;
	background:
		linear-gradient(90deg, rgba(0, 26, 77, 0.92) 0%, rgba(0, 26, 77, 0.72) 42%, rgba(0, 26, 77, 0.18) 100%),
		var(--hero-image) center / cover no-repeat;
	color: var(--nl-white);
	overflow: hidden;
}

.hero__content {
	position: relative;
	z-index: 1;
	padding: 3.5rem 0 2.75rem;
	animation: rise-in 0.9s var(--nl-ease) both;
}

.hero__eyebrow {
	font-family: var(--nl-font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 0.85rem;
	opacity: 0.92;
}

.hero__title {
	font-size: clamp(2rem, 8vw, 3.6rem);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	max-width: 14ch;
	margin-bottom: 0.85rem;
}

.hero__accent {
	color: var(--nl-accent);
}

.hero__text {
	max-width: 38ch;
	font-size: 1.02rem;
	opacity: 0.95;
	margin-bottom: 1.35rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-bottom: 1.5rem;
}

.hero__rule {
	display: block;
	width: min(48%, 280px);
	height: 3px;
	background: var(--nl-red);
}

@keyframes rise-in {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Impact bar */
.impact-bar {
	background: var(--nl-white);
	border-bottom: 1px solid var(--nl-line);
}

.impact-bar__grid {
	display: grid;
	grid-template-columns: 1fr;
}

.impact-item {
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--nl-line);
}

.impact-item:last-child {
	border-bottom: 0;
}

.impact-item__num {
	display: block;
	font-family: var(--nl-font-display);
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--nl-red);
	line-height: 1;
	margin-bottom: 0.35rem;
}

.impact-item__label {
	display: block;
	color: var(--nl-navy);
	font-weight: 600;
}

.impact-item__note {
	display: block;
	margin-top: 0.45rem;
	font-size: 0.78rem;
	color: var(--nl-muted);
}

.impact-item--seal {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.impact-seal {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #1f6feb;
	color: var(--nl-white);
	display: grid;
	place-items: center;
	font-weight: 800;
	flex-shrink: 0;
}

.impact-item--seal strong {
	display: block;
	color: var(--nl-navy);
	font-family: var(--nl-font-display);
}

.impact-item--seal span {
	font-size: 0.85rem;
	color: var(--nl-muted);
}

/* Sections */
.section {
	padding: 3.25rem 0;
}

.section-kicker {
	font-family: var(--nl-font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--nl-red);
	margin-bottom: 0.55rem;
}

.section-kicker--on-dark {
	color: var(--nl-accent);
}

.section-kicker--bar {
	position: relative;
	padding-left: 0.85rem;
}

.section-kicker--bar::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.1rem;
	bottom: 0.1rem;
	width: 3px;
	background: var(--nl-red);
}

.section-title {
	font-size: clamp(1.55rem, 5vw, 2.35rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--nl-navy);
	letter-spacing: -0.01em;
	max-width: 18ch;
}

.section-title--light {
	color: var(--nl-white);
}

.section-lead {
	max-width: 62ch;
	color: var(--nl-muted);
	margin-bottom: 1.75rem;
}

.section-lead--light {
	color: rgba(255, 255, 255, 0.88);
}

.path-section,
.programs-section {
	background: var(--nl-cream);
}

.path-grid {
	display: grid;
	gap: 0;
	border-top: 1px solid var(--nl-navy);
}

.path-card {
	padding: 1.35rem 0;
	border-bottom: 1px solid var(--nl-line);
}

.path-card__num {
	font-family: var(--nl-font-display);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--nl-red);
	margin-bottom: 0.4rem;
}

.path-card h3 {
	color: var(--nl-navy);
	font-size: 1.2rem;
	text-transform: none;
}

.money-section,
.give-section {
	background: var(--nl-navy);
	color: var(--nl-white);
}

.money-actions,
.cta-actions,
.weave-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	margin-bottom: 1.25rem;
}

.money-legal {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.72);
	max-width: 70ch;
}

.program-grid {
	display: grid;
	gap: 1rem;
}

.program-card {
	background: var(--nl-navy);
	color: var(--nl-white);
	border-radius: var(--nl-radius);
	padding: 1.35rem 1.25rem 1.5rem;
	animation: rise-in 0.7s var(--nl-ease) both;
}

.program-card__badge {
	display: inline-block;
	padding: 0.2rem 0.65rem;
	border-radius: 999px;
	background: var(--nl-white);
	color: var(--nl-navy);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.85rem;
}

.program-card h3 {
	color: var(--nl-white);
	font-size: 1.15rem;
	text-transform: none;
}

.program-card p {
	color: rgba(255, 255, 255, 0.88);
	margin: 0;
}

.programs-more {
	margin-top: 1.25rem;
}

.roster-grid,
.weave-grid,
.give-grid {
	display: grid;
	gap: 1.75rem;
}

.roster-media,
.weave-media {
	margin: 0;
	border-radius: var(--nl-radius);
	overflow: hidden;
}

.roster-media img,
.weave-media img,
.entry-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.roster-list {
	list-style: disc;
	padding-left: 1.15rem;
	color: var(--nl-muted);
}

.roster-list li {
	margin-bottom: 0.65rem;
}

.weave-note {
	font-size: 0.9rem;
	color: var(--nl-muted);
}

.give-checks {
	list-style: none;
	margin-top: 1rem;
}

.give-checks li {
	position: relative;
	padding-left: 1.6rem;
	margin-bottom: 0.65rem;
	color: rgba(255, 255, 255, 0.92);
}

.give-checks li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--nl-red);
	font-weight: 800;
}

.give-card {
	background: var(--nl-white);
	color: var(--nl-ink);
	border-radius: var(--nl-radius);
	padding: 1.25rem;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.give-card__label {
	font-family: var(--nl-font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nl-muted);
	margin-bottom: 0.85rem;
}

.amount-options {
	display: grid;
	gap: 0.65rem;
	margin-bottom: 0.85rem;
}

.amount-option {
	text-align: left;
	border: 1px solid var(--nl-line);
	border-radius: 8px;
	background: var(--nl-white);
	padding: 0.85rem 0.95rem;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.amount-option strong {
	display: block;
	font-family: var(--nl-font-display);
	font-size: 1.2rem;
	color: var(--nl-navy);
	margin-bottom: 0.2rem;
}

.amount-option span {
	font-size: 0.86rem;
	color: var(--nl-muted);
}

.amount-option.is-active,
.amount-option:hover {
	border-color: var(--nl-red);
	box-shadow: 0 0 0 1px var(--nl-red);
}

.give-card__note {
	font-size: 0.8rem;
	font-style: italic;
	color: var(--nl-muted);
	margin-bottom: 1rem;
}

.give-card__other {
	margin: 1rem 0 0.55rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--nl-muted);
}

.other-ways {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}

.other-ways a {
	display: grid;
	place-items: center;
	min-height: 42px;
	border: 1px solid var(--nl-line);
	border-radius: 6px;
	color: var(--nl-navy);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.82rem;
}

.cta-section {
	background: var(--nl-cream);
	text-align: center;
}

.cta-inner .section-title {
	max-width: 22ch;
	margin-inline: auto;
}

.cta-inner .section-lead {
	margin-inline: auto;
}

.cta-actions {
	justify-content: center;
}

/* Trust + about */
.trust-band {
	background: var(--nl-navy);
	padding: 2.5rem 0;
	border-top: 3px solid var(--nl-red);
}

.trust-band__grid {
	display: grid;
	gap: 1rem;
}

.trust-card__title {
	color: var(--nl-white);
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 0.85rem;
}

.trust-card__body {
	background: var(--nl-white);
	border-radius: var(--nl-radius);
	padding: 1.1rem;
	min-height: 140px;
}

.trust-platforms {
	display: grid;
	gap: 0.55rem;
}

.trust-platforms a {
	display: grid;
	place-items: center;
	min-height: 44px;
	border: 1px solid var(--nl-line);
	border-radius: 6px;
	color: var(--nl-navy);
	text-decoration: none;
	font-weight: 700;
}

.trust-rating {
	color: var(--nl-muted);
}

.social-grid {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.55rem;
	background: transparent;
	padding: 0;
	min-height: 0;
}

.social-grid a {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: var(--nl-white);
	text-decoration: none;
	font-size: 0.72rem;
	font-weight: 700;
}

.about-band {
	padding: 3rem 0 2rem;
	background: var(--nl-white);
	text-align: center;
}

.about-band__title {
	color: var(--nl-navy);
	text-transform: uppercase;
	font-size: 1.5rem;
}

.about-band__text {
	max-width: 62ch;
	margin-inline: auto;
	color: var(--nl-muted);
}

.office-cards {
	display: grid;
	gap: 1rem;
	margin: 1.75rem 0;
	text-align: left;
}

.office-card {
	border: 1px solid var(--nl-line);
	border-radius: var(--nl-radius);
	padding: 1.15rem 1.2rem;
	background: var(--nl-white);
	box-shadow: 0 8px 24px rgba(0, 26, 77, 0.05);
}

.office-card h3 {
	color: var(--nl-navy);
	font-size: 1rem;
}

.about-band__note {
	font-size: 0.86rem;
	color: var(--nl-muted);
	max-width: 70ch;
	margin-inline: auto;
}

/* Footer */
.site-footer {
	background: var(--nl-cream);
	padding: 1.5rem 0 2.5rem;
	border-top: 1px solid var(--nl-line);
}

.footer-places {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.footer-places a {
	color: var(--nl-navy);
	font-weight: 600;
	text-decoration: none;
}

.footer-places a:hover {
	color: var(--nl-red);
}

.footer-link-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.55rem 1.15rem;
	padding: 0.85rem 0 1.25rem;
}

.footer-link-item {
	color: var(--nl-muted);
	text-decoration: none;
	font-size: 0.92rem;
	white-space: nowrap;
}

.footer-link-item:hover {
	color: var(--nl-red);
}

.footer-copy {
	text-align: center;
	font-size: 0.82rem;
	color: var(--nl-muted);
	max-width: 70ch;
	margin-inline: auto;
}

/* Content pages */
.content-wrap {
	padding: 2.5rem 0 3.5rem;
}

.content-wrap--narrow {
	max-width: 760px;
}

.page-title {
	color: var(--nl-navy);
	text-transform: uppercase;
	font-size: clamp(1.6rem, 5vw, 2.2rem);
}

.entry-content {
	color: var(--nl-ink);
}

.post-list {
	display: grid;
	gap: 1.25rem;
}

.post-card {
	border-bottom: 1px solid var(--nl-line);
	padding-bottom: 1.25rem;
}

.post-card__title {
	font-size: 1.2rem;
	text-transform: none;
}

.post-card__title a {
	color: var(--nl-navy);
	text-decoration: none;
}

.post-card__meta {
	font-size: 0.85rem;
	color: var(--nl-muted);
}

.contact-panel {
	margin-top: 2rem;
	padding: 1.35rem;
	background: var(--nl-cream);
	border-radius: var(--nl-radius);
}

.nl-form label {
	display: block;
	font-weight: 700;
	margin-bottom: 0.35rem;
	color: var(--nl-navy);
}

.nl-form input,
.nl-form textarea,
.nl-form select {
	width: 100%;
	min-height: 44px;
	border: 1px solid var(--nl-line);
	border-radius: 6px;
	padding: 0.65rem 0.8rem;
	font: inherit;
	background: var(--nl-white);
}

.nl-form textarea {
	min-height: 120px;
	resize: vertical;
}

.nl-form__status {
	min-height: 1.4em;
	font-weight: 600;
}

/* Cookie + give drawer */
.cookie-bar {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 1200;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.1rem;
	background: var(--nl-white);
	border: 1px solid var(--nl-line);
	border-radius: var(--nl-radius);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cookie-bar[hidden] {
	display: none !important;
}

.give-fab {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 1100;
	border: 0;
	border-radius: 999px;
	padding: 0.85rem 1.2rem;
	background: var(--nl-red);
	color: var(--nl-white);
	font-family: var(--nl-font-display);
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(179, 32, 37, 0.35);
}

.give-drawer {
	position: fixed;
	right: 1rem;
	bottom: 4.5rem;
	z-index: 1101;
	width: min(280px, calc(100% - 2rem));
	padding: 1.15rem;
	background: var(--nl-navy);
	color: var(--nl-white);
	border-radius: var(--nl-radius);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
	transform: translateY(12px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s var(--nl-ease);
}

.give-drawer.is-open {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.give-drawer__close {
	position: absolute;
	top: 0.35rem;
	right: 0.55rem;
	border: 0;
	background: transparent;
	color: var(--nl-white);
	font-size: 1.4rem;
	cursor: pointer;
}

.give-drawer__kicker {
	font-weight: 800;
	margin-bottom: 0.35rem;
}

.reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.7s var(--nl-ease), transform 0.7s var(--nl-ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Desktop */
@media (min-width: 768px) {
	:root {
		--nl-header-h: 72px;
	}

	.site-brand__tag {
		max-width: none;
	}

	.impact-bar__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.impact-item {
		padding: 1.5rem 1.25rem;
		border-bottom: 0;
		border-right: 1px solid var(--nl-line);
	}

	.impact-item:nth-child(2n) {
		border-right: 0;
	}

	.impact-item:nth-child(-n+2) {
		border-bottom: 1px solid var(--nl-line);
	}

	.path-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.path-card {
		padding: 1.5rem 1.25rem 1.5rem 0;
		border-bottom: 0;
		border-right: 1px solid var(--nl-line);
	}

	.path-card:last-child {
		border-right: 0;
		padding-right: 0;
	}

	.program-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.roster-grid,
	.weave-grid,
	.give-grid {
		grid-template-columns: 1fr 1fr;
		align-items: center;
		gap: 2.25rem;
	}

	.trust-band__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.25rem;
	}

	.office-cards {
		grid-template-columns: repeat(2, 1fr);
		text-align: left;
	}

	.hero {
		align-items: center;
		min-height: 640px;
	}

	.hero__content {
		padding: 5rem 0 4rem;
	}
}

@media (min-width: 1024px) {
	.nav-toggle {
		display: none;
	}

	.site-header__inner {
		gap: 1.25rem;
		padding: 0.4rem 0;
	}

	.site-header__brand {
		flex-shrink: 0;
	}

	.primary-nav {
		display: block !important;
		position: static;
		background: transparent;
		padding: 0;
		border: 0;
		flex: 1;
	}

	.primary-menu {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		flex-wrap: wrap;
		gap: 0.15rem 0.15rem;
	}

	.primary-menu > li {
		position: relative;
		border: 0;
	}

	.primary-menu > li > a {
		padding: 0.85rem 0.55rem;
		font-size: 0.72rem;
	}

	.submenu-toggle {
		display: none;
	}

	.primary-menu .sub-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 220px;
		background: var(--nl-white);
		padding: 0.45rem 0;
		border-radius: 8px;
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
		z-index: 20;
	}

	.primary-menu .sub-menu a {
		color: var(--nl-navy);
		padding: 0.65rem 1rem;
		letter-spacing: 0.02em;
		text-transform: none;
		font-size: 0.88rem;
	}

	.primary-menu > li:hover > .sub-menu,
	.primary-menu > li:focus-within > .sub-menu {
		display: block;
	}

	.site-header__actions {
		margin-left: 0.5rem;
	}

	.impact-bar__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.impact-item,
	.impact-item:nth-child(2n),
	.impact-item:nth-child(-n+2) {
		border-bottom: 0;
		border-right: 1px solid var(--nl-line);
		padding: 1.6rem 1.1rem;
	}

	.impact-item:last-child {
		border-right: 0;
	}

	.program-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.section {
		padding: 4.25rem 0;
	}

	.amount-options {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 1200px) {
	.program-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.program-grid .program-card:nth-child(n+5) {
		grid-column: auto;
	}
}

body.nav-open {
	overflow: hidden;
}
