/*
Theme Name: NAAT Foundation
Theme URI: https://example.org
Author: Edward Osei-Nyarko
Author URI: https://edwardoseidev.vercel.app
Description: Custom WordPress theme for the Nana Ama Ampadu-Tenkorang Foundation. A nonprofit foundation website featuring donation integration (GiveWP + Paystack), volunteer signup, impact stories, and mobile-first design optimized for Ghana's web users.
Version: 1.3.2
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: naat-foundation
Tags: nonprofit, charity, donation, foundation, mobile-first, accessibility-ready, full-site-editing, block-themes

NAAT Foundation WordPress Theme
Copyright (C) 2026 Edward Osei-Nyarko
*/

/* ==========================================================================
   CSS Custom Properties — Brand Design Tokens
   ========================================================================== */

:root {
	/* Primary — Deep forest green (trust, growth, community) */
	--naat-primary: #1B5E20;
	--naat-primary-light: #2E7D32;
	--naat-primary-dark: #0D3B0E;

	/* Secondary — Gold/amber (warmth, optimism, Ghana's national colors) */
	--naat-secondary: #F9A825;
	--naat-secondary-light: #FBC02D;
	--naat-secondary-dark: #F57F17;

	/* Accent — Coral/orange (CTAs, urgency for donation buttons) */
	--naat-accent: #E65100;
	--naat-accent-light: #EF6C00;
	--naat-accent-hover: #BF360C;

	/* Neutrals */
	--naat-white: #FFFFFF;
	--naat-off-white: #FAFAFA;
	--naat-light-gray: #F5F5F5;
	--naat-gray: #9E9E9E;
	--naat-dark-gray: #424242;
	--naat-text: #212121;
	--naat-text-light: #616161;

	/* Typography */
	--naat-font-heading: 'Poppins', sans-serif;
	--naat-font-body: 'Inter', sans-serif;
	--naat-font-size-base: 16px;
	--naat-line-height: 1.6;

	/* Spacing */
	--naat-spacing-xs: 0.5rem;
	--naat-spacing-sm: 1rem;
	--naat-spacing-md: 1.5rem;
	--naat-spacing-lg: 2rem;
	--naat-spacing-xl: 3rem;
	--naat-spacing-2xl: 4rem;
	--naat-spacing-3xl: 6rem;

	/* Layout */
	--naat-container-max: 1200px;
	--naat-container-narrow: 800px;

	/* Shadows */
	--naat-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
	--naat-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
	--naat-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);

	/* Borders */
	--naat-radius-sm: 4px;
	--naat-radius-md: 8px;
	--naat-radius-lg: 12px;
	--naat-radius-full: 9999px;

	/* Transitions */
	--naat-transition: 0.3s ease;
	--naat-transition-slow: 0.6s ease;
	--naat-transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

	/* Extended Shadows */
	--naat-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
	--naat-shadow-colored: 0 10px 30px rgba(27, 94, 32, 0.2);

	/* Gradients */
	--naat-gradient-primary: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #1B5E20 100%);
	--naat-gradient-cta: linear-gradient(135deg, #E65100 0%, #BF360C 100%);
	--naat-gradient-gold: linear-gradient(135deg, #F9A825 0%, #F57F17 100%);

	/* Accessible text variants (WCAG AA 4.5:1 on white) */
	--naat-secondary-text: #946B00;

	/* Semantic */
	--naat-border: #E0E0E0;
	--naat-error: #ef4444;
	--naat-info: #1565c0;

	/* Overlays */
	--naat-overlay-dark: linear-gradient(135deg, rgba(13, 59, 14, 0.88) 0%, rgba(27, 94, 32, 0.72) 100%);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
	font-size: var(--naat-font-size-base);
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	background-color: var(--naat-primary-dark);
}

body {
	font-family: var(--naat-font-body);
	font-size: 1rem;
	line-height: var(--naat-line-height);
	color: var(--naat-text);
	background-color: var(--naat-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	font-family: var(--naat-font-heading);
	font-weight: 700;
	line-height: 1.2;
	color: var(--naat-text);
	margin-bottom: var(--naat-spacing-sm);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
	margin-bottom: var(--naat-spacing-sm);
}

a {
	color: var(--naat-primary);
	text-decoration: none;
	transition: color var(--naat-transition);
}

a:hover,
a:focus {
	color: var(--naat-primary-dark);
	text-decoration: underline;
}

/* Skip to content — accessibility */
.skip-link {
	position: absolute;
	top: -100%;
	left: 50%;
	transform: translateX(-50%);
	background: var(--naat-primary);
	color: var(--naat-white);
	padding: var(--naat-spacing-xs) var(--naat-spacing-sm);
	border-radius: var(--naat-radius-sm);
	z-index: 10000;
	transition: top var(--naat-transition);
}

.skip-link:focus {
	top: var(--naat-spacing-xs);
	text-decoration: none;
	color: var(--naat-white);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.naat-container {
	width: 100%;
	max-width: var(--naat-container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--naat-spacing-sm);
	padding-right: var(--naat-spacing-sm);
}

.naat-container--narrow {
	max-width: var(--naat-container-narrow);
}

.wp-site-blocks {
	overflow-x: clip;
}

.naat-section {
	padding-top: var(--naat-spacing-3xl);
	padding-bottom: var(--naat-spacing-3xl);
	overflow: hidden;
}

.naat-section--light {
	background-color: var(--naat-light-gray);
}

.naat-section--primary {
	background-color: var(--naat-primary);
	color: var(--naat-white);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
	background-color: var(--naat-white);
	box-shadow: var(--naat-shadow-sm);
}

/* Sticky must be on the template-part wrapper (direct child of .wp-site-blocks scroll container) */
.wp-block-template-part:has(.site-header) {
	position: sticky;
	top: 0;
	z-index: 1000;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--naat-spacing-sm) 0;
	gap: var(--naat-spacing-sm);
}

.site-header__logo img {
	height: 50px;
	width: auto;
}

.site-header__logo .site-title {
	font-family: var(--naat-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--naat-primary);
	text-decoration: none;
}

/* Dark mode toggle button */
.naat-theme-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--naat-border);
	border-radius: var(--naat-radius-full);
	background: transparent;
	color: var(--naat-text);
	cursor: pointer;
	transition: background-color var(--naat-transition), color var(--naat-transition), border-color var(--naat-transition);
	flex-shrink: 0;
}

.naat-theme-toggle:hover {
	background-color: var(--naat-light-gray);
	border-color: var(--naat-gray);
}

.naat-theme-toggle:focus-visible {
	outline: 2px solid var(--naat-primary);
	outline-offset: 2px;
}

.naat-theme-toggle__sun,
.naat-theme-toggle__moon {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

/* Default state: show moon (offer dark mode) */
.naat-theme-toggle__sun {
	display: none;
}

/* Dark mode active: show sun (offer light mode) */
html[data-naat-dark="true"] .naat-theme-toggle__sun {
	display: flex;
}

html[data-naat-dark="true"] .naat-theme-toggle__moon {
	display: none;
}

html[data-naat-dark="true"] .naat-theme-toggle {
	border-color: #404040;
	color: var(--naat-text);
}

html[data-naat-dark="true"] .naat-theme-toggle:hover {
	background-color: var(--naat-light-gray);
}

/* Primary navigation */
.primary-nav {
	display: none;
}

/* Force hamburger menu on tablets (up to 1024px).
   WP's overlayMenu:"mobile" only collapses at 600px by default. */
@media (max-width: 1024px) {
	.primary-nav .wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-content {
		display: none !important;
	}

	.primary-nav .wp-block-navigation__responsive-container-open:not(.always-shown) {
		display: flex !important;
		align-items: center;
		justify-content: center;
	}
}

.primary-nav ul {
	display: flex;
	gap: var(--naat-spacing-md);
	list-style: none;
}

.primary-nav a {
	font-family: var(--naat-font-heading);
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--naat-text);
	text-decoration: none;
	padding: var(--naat-spacing-xs) 0;
	transition: color var(--naat-transition);
}

.primary-nav a:hover,
.primary-nav .current-menu-item a {
	color: var(--naat-primary);
}

/* Fix: WordPress incorrectly highlights blog (posts page) nav item on all pages.
   De-highlight it by default, then re-enable on actual blog/post pages via body class. */
.primary-nav .current_page_parent a {
	color: inherit;
}

.primary-nav .current_page_parent a::after {
	width: 0;
	left: 50%;
}

/* Re-enable highlight on blog home, single posts, and blog-related archives only.
   Excludes custom post type archives (events, etc.) */
body.blog .primary-nav .current_page_parent a,
body.single-post .primary-nav .current_page_parent a,
body.category .primary-nav .current_page_parent a,
body.tag .primary-nav .current_page_parent a {
	color: var(--naat-primary);
}

body.blog .primary-nav .current_page_parent a::after,
body.single-post .primary-nav .current_page_parent a::after,
body.category .primary-nav .current_page_parent a::after,
body.tag .primary-nav .current_page_parent a::after {
	width: 100%;
	left: 0;
}


/* Donate CTA in navigation */
.nav-donate-btn a {
	background-color: var(--naat-accent);
	color: var(--naat-white) !important;
	padding: 0.625rem 1.25rem;
	border-radius: var(--naat-radius-full);
	font-weight: 600;
	transition: background-color var(--naat-transition);
}

.nav-donate-btn a:hover {
	background-color: var(--naat-accent-hover);
	text-decoration: none;
}

/* Mobile menu toggle */
.menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: var(--naat-spacing-xs);
	min-width: 44px;
	min-height: 44px;
}

.menu-toggle .hamburger {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--naat-text);
	position: relative;
	transition: background var(--naat-transition);
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
	content: '';
	position: absolute;
	width: 24px;
	height: 2px;
	background: var(--naat-text);
	transition: transform var(--naat-transition);
}

.menu-toggle .hamburger::before { top: -7px; }
.menu-toggle .hamburger::after { top: 7px; }

/* Mobile menu open state */
.menu-open .primary-nav {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--naat-white);
	box-shadow: var(--naat-shadow-lg);
	padding: var(--naat-spacing-sm);
}

.menu-open .primary-nav ul {
	flex-direction: column;
	gap: 0;
}

.menu-open .primary-nav a {
	display: block;
	padding: var(--naat-spacing-sm);
	border-bottom: 1px solid var(--naat-light-gray);
}

/* Sub-menus (dropdown) — hidden by default */
.primary-nav .sub-menu {
	display: none;
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Mobile: sub-menu toggle button (injected by JS) */
.sub-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.25rem;
	margin-left: 0.25rem;
	color: inherit;
	transition: transform var(--naat-transition);
	vertical-align: middle;
	min-width: 44px;
	min-height: 44px;
}

.sub-menu-toggle svg {
	width: 14px;
	height: 14px;
	transition: transform var(--naat-transition);
}

.sub-menu-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

/* Mobile: open sub-menu */
.menu-open .sub-menu-open > .sub-menu {
	display: block;
}

.menu-open .sub-menu a {
	padding-left: var(--naat-spacing-lg);
	font-size: 0.875rem;
	color: var(--naat-text-muted);
}

.menu-open .sub-menu a:hover {
	color: var(--naat-primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.naat-hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

/* Carousel track: stacks slides on top of each other */
.naat-hero__track {
	position: absolute;
	inset: 0;
}

/* Individual slide — stacked, transition via opacity */
.naat-hero__slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.8s ease;
	pointer-events: none;
}

.naat-hero__lcp-hint {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.naat-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.naat-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(27, 94, 32, 0.85) 0%, rgba(13, 59, 14, 0.7) 100%);
}

.naat-hero__content {
	position: relative;
	z-index: 1;
	color: #FFFFFF;
	max-width: 650px;
	padding: var(--naat-spacing-2xl) 0;
}

.naat-hero__title {
	font-size: clamp(2rem, 6vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: var(--naat-spacing-md);
	color: #FFFFFF;
}

.naat-hero__subtitle {
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	margin-bottom: var(--naat-spacing-lg);
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.7;
}

.naat-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--naat-spacing-sm);
}

/* Carousel nav buttons (prev / next) */
.naat-hero__nav {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 var(--naat-spacing-sm);
	pointer-events: none;
}

.naat-hero__nav-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(4px);
	color: var(--naat-white);
	cursor: pointer;
	pointer-events: auto;
	transition: background var(--naat-transition), transform var(--naat-transition);
}

.naat-hero__nav-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.naat-hero__nav-btn svg {
	width: 24px;
	height: 24px;
}

/* Pause/Play button */
.naat-hero__pause {
	position: absolute;
	bottom: 5.5rem;
	right: var(--naat-spacing-lg);
	z-index: 5;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	border-radius: var(--naat-radius-full);
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--naat-white);
	cursor: pointer;
	transition: all var(--naat-transition);
}

.naat-hero__pause:hover {
	background: rgba(255, 255, 255, 0.3);
}

.naat-hero__pause:focus-visible {
	outline: 2px solid var(--naat-white);
	outline-offset: 2px;
}

/* Dot indicators */
.naat-hero__dots {
	position: absolute;
	bottom: 5.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	gap: 0;
}

.naat-hero__dot {
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 0;
	background: transparent;
	cursor: pointer;
	padding: 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Visible dot — rendered via pseudo-element */
.naat-hero__dot::after {
	content: '';
	width: 12px;
	height: 12px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	background: transparent;
	transition: background var(--naat-transition), border-color var(--naat-transition), transform var(--naat-transition);
}

.naat-hero__dot:hover::after {
	border-color: var(--naat-white);
	transform: scale(1.2);
}

.naat-hero__dot.is-active::after {
	background: var(--naat-white);
	border-color: var(--naat-white);
	transform: scale(1.2);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.naat-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--naat-font-heading);
	font-size: 1rem;
	font-weight: 600;
	padding: 0.875rem 2rem;
	border-radius: var(--naat-radius-full);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--naat-transition);
	text-decoration: none;
	min-height: 44px;
	min-width: 44px;
}

.naat-btn--primary {
	background-color: var(--naat-accent);
	color: var(--naat-white);
	border-color: var(--naat-accent);
}

.naat-btn--primary:hover {
	background-color: var(--naat-accent-hover);
	border-color: var(--naat-accent-hover);
	color: var(--naat-white);
	text-decoration: none;
}

.naat-btn--outline {
	background-color: transparent;
	color: var(--naat-white);
	border-color: var(--naat-white);
}

.naat-btn--outline:hover {
	background-color: var(--naat-white);
	color: var(--naat-primary);
	text-decoration: none;
}

.naat-btn--secondary {
	background-color: var(--naat-secondary);
	color: var(--naat-text);
	border-color: var(--naat-secondary);
}

.naat-btn--secondary:hover {
	background-color: var(--naat-secondary-dark);
	border-color: var(--naat-secondary-dark);
	text-decoration: none;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.naat-card {
	background: var(--naat-white);
	border-radius: var(--naat-radius-lg);
	box-shadow: var(--naat-shadow-sm);
	overflow: hidden;
	transition: transform var(--naat-transition), box-shadow var(--naat-transition);
}

.naat-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--naat-shadow-lg);
}

.naat-card__image {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.naat-card__content {
	padding: var(--naat-spacing-md);
}

.naat-card__title {
	font-size: 1.25rem;
	margin-bottom: var(--naat-spacing-xs);
}

.naat-card__excerpt {
	color: var(--naat-text-light);
	font-size: 0.9375rem;
	margin-bottom: var(--naat-spacing-sm);
}

.naat-card__link {
	font-weight: 600;
	color: var(--naat-primary);
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	text-decoration: none;
}

.naat-card__link .naat-icon {
	transition: transform var(--naat-transition);
}

.naat-card__link:hover .naat-icon {
	transform: translateX(4px);
}

/* Card grid */
.naat-card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--naat-spacing-lg);
}

/* ==========================================================================
   Impact Stats Counter
   ========================================================================== */

.naat-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--naat-spacing-lg);
	text-align: center;
}

.naat-stat__number {
	font-family: var(--naat-font-heading);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	color: var(--naat-secondary);
	line-height: 1;
	margin-bottom: var(--naat-spacing-xs);
}

.naat-stat__label {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.9;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.naat-testimonial {
	background: var(--naat-white);
	border-radius: var(--naat-radius-lg);
	padding: var(--naat-spacing-lg);
	box-shadow: var(--naat-shadow-sm);
	border-left: 4px solid var(--naat-secondary);
}

.naat-testimonial__quote {
	font-size: 1.125rem;
	font-style: italic;
	color: var(--naat-text);
	margin-bottom: var(--naat-spacing-sm);
	line-height: 1.8;
}

.naat-testimonial__quote::before {
	content: '\201C';
	font-size: 3rem;
	color: var(--naat-secondary-text);
	line-height: 0;
	vertical-align: -0.6em;
	margin-right: 0.1em;
}

.naat-testimonial__author {
	font-weight: 600;
	color: var(--naat-primary);
}

.naat-testimonial__role {
	font-size: 0.875rem;
	color: var(--naat-text-light);
}

/* ==========================================================================
   Team Members
   ========================================================================== */

.naat-team-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--naat-spacing-lg);
}

.naat-team-member {
	text-align: center;
}

.naat-team-member__photo {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: var(--naat-spacing-sm);
	border: 3px solid var(--naat-secondary);
}

.naat-team-member__name {
	font-size: 1.125rem;
	margin-bottom: 0.25rem;
}

.naat-team-member__role {
	color: var(--naat-text-light);
	font-size: 0.875rem;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination {
	margin-top: var(--naat-spacing-xl);
	text-align: center;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.75rem;
	border-radius: var(--naat-radius-sm);
	font-weight: 500;
	color: var(--naat-text);
	background: var(--naat-white);
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: all var(--naat-transition);
}

.pagination .page-numbers:hover {
	background: var(--naat-primary);
	color: var(--naat-white);
	border-color: var(--naat-primary);
}

.pagination .page-numbers.current {
	background: var(--naat-primary);
	color: var(--naat-white);
	border-color: var(--naat-primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background-color: var(--naat-primary-dark);
	color: var(--naat-white);
	padding: var(--naat-spacing-3xl) 0 var(--naat-spacing-lg);
}

.site-footer a {
	color: var(--naat-secondary-light);
	transition: color var(--naat-transition);
}

.site-footer a:hover {
	color: var(--naat-white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--naat-spacing-lg);
	margin-bottom: var(--naat-spacing-xl);
}

.footer-col__title {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: var(--naat-spacing-sm);
	color: var(--naat-white);
}

.site-footer .site-header__logo .site-title {
	color: var(--naat-white);
}

.site-header__logo--footer svg {
	height: 50px;
	width: auto;
	display: block;
}

.site-header__logo--footer .custom-logo-link--white {
	display: inline-block;
	line-height: 0;
}

.footer-col ul {
	list-style: none;
}

.footer-col li {
	margin-bottom: var(--naat-spacing-xs);
}

.footer-col a {
	font-size: 0.9375rem;
	opacity: 0.85;
}

.footer-col a:hover {
	opacity: 1;
}

/* Footer newsletter form */
.footer-newsletter .newsletter-form {
	display: flex;
	gap: var(--naat-spacing-xs);
	margin-top: var(--naat-spacing-sm);
}

.footer-newsletter input[type="email"] {
	flex: 1;
	padding: 0.625rem 1rem;
	border: none;
	border-radius: var(--naat-radius-sm);
	font-size: 0.9375rem;
	min-height: 44px;
}

.footer-newsletter button {
	background: var(--naat-accent-hover);
	color: var(--naat-white);
	border: none;
	padding: 0.625rem 1.25rem;
	border-radius: var(--naat-radius-sm);
	font-weight: 600;
	cursor: pointer;
	min-height: 44px;
	transition: background var(--naat-transition);
}

.footer-newsletter button:hover {
	background: var(--naat-primary-dark);
}

.footer-newsletter .newsletter-form {
	flex-wrap: wrap;
}

.newsletter-form__msg {
	width: 100%;
	font-size: 0.8125rem;
	margin-top: 0.25rem;
}

.newsletter-form__msg--ok {
	color: var(--naat-accent);
}

.newsletter-form__msg--err {
	color: var(--naat-error);
}

/* Social icons */
.social-links {
	display: flex;
	gap: var(--naat-spacing-sm);
	list-style: none;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	transition: background var(--naat-transition);
}

.social-links a:hover {
	background: var(--naat-secondary);
}

.social-links img {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}

/* Footer bottom bar */
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: var(--naat-spacing-md);
	text-align: center;
	font-size: 0.875rem;
	opacity: 0.75;
}

/* ==========================================================================
   Blog / Posts
   ========================================================================== */

.naat-posts-grid {
	gap: var(--naat-spacing-lg);
}

.naat-post-meta {
	display: flex;
	gap: var(--naat-spacing-sm);
	font-size: 0.8125rem;
	color: var(--naat-text-light);
	margin-bottom: var(--naat-spacing-xs);
}

.naat-post-category {
	background: var(--naat-primary);
	color: var(--naat-white);
	padding: 0.125rem 0.5rem;
	border-radius: var(--naat-radius-sm);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
}

/* --- WordPress Core Blog Block Styles (contrast fixes) --- */

/* Post date in cards & meta */
.naat-card .wp-block-post-date,
.naat-post-meta .wp-block-post-date {
	color: var(--naat-dark-gray);
	font-size: 0.8125rem;
	font-weight: 500;
}

/* Post title links in cards */
.naat-card .wp-block-post-title a {
	color: var(--naat-text);
	text-decoration: none;
	font-weight: 700;
	transition: color var(--naat-transition);
}

.naat-card .wp-block-post-title a:hover {
	color: var(--naat-primary);
}

/* Post excerpt in cards */
.naat-card .wp-block-post-excerpt,
.naat-card .wp-block-post-excerpt__excerpt {
	color: var(--naat-dark-gray);
	font-size: 0.9375rem;
	line-height: 1.6;
}

/* Read More link in cards */
.naat-card .wp-block-read-more {
	color: var(--naat-primary);
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: color var(--naat-transition);
}

.naat-card .wp-block-read-more:hover {
	color: var(--naat-primary-light);
}

/* Post category terms */
.naat-card .wp-block-post-terms a {
	color: var(--naat-white);
	text-decoration: none;
}

/* Reading time block in cards */
.naat-card .naat-reading-time {
	color: var(--naat-dark-gray);
}

/* --- Query Pagination --- */
.wp-block-query-pagination {
	gap: var(--naat-spacing-sm);
}

.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers,
.wp-block-query-pagination-previous,
.wp-block-query-pagination-next {
	color: var(--naat-text);
	font-weight: 600;
	font-size: 0.9375rem;
	padding: 0.5rem 1rem;
	border-radius: var(--naat-radius-md);
	text-decoration: none;
	transition: all var(--naat-transition);
}

.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers:hover,
.wp-block-query-pagination-previous:hover,
.wp-block-query-pagination-next:hover {
	background: var(--naat-primary);
	color: var(--naat-white);
}

.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers.current {
	background: var(--naat-primary);
	color: var(--naat-white);
}

/* --- Single Post Enhancements --- */

/* Single post meta */
.single-post .naat-post-meta .wp-block-post-date {
	color: var(--naat-dark-gray);
	font-size: 0.9375rem;
	font-weight: 500;
}

/* Single post category badge */
.single-post .naat-post-category a {
	color: var(--naat-white);
	text-decoration: none;
}

/* Single post content */
.single-post .wp-block-post-content {
	color: var(--naat-text);
	font-size: 1.0625rem;
	line-height: 1.8;
}

.single-post .wp-block-post-content p {
	color: var(--naat-text);
	margin-bottom: 1.5em;
}

.single-post .wp-block-post-content h2,
.single-post .wp-block-post-content h3,
.single-post .wp-block-post-content h4 {
	color: var(--naat-text);
	margin-top: 2em;
	margin-bottom: 0.75em;
}

.single-post .wp-block-post-content a {
	color: var(--naat-primary);
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.single-post .wp-block-post-content a:hover {
	color: var(--naat-primary-light);
}

.single-post .wp-block-post-content blockquote {
	border-left: 4px solid var(--naat-primary);
	padding: var(--naat-spacing-md) var(--naat-spacing-lg);
	background: var(--naat-light-gray);
	border-radius: 0 var(--naat-radius-md) var(--naat-radius-md) 0;
	font-style: italic;
	color: var(--naat-dark-gray);
}

.single-post .wp-block-post-content ul,
.single-post .wp-block-post-content ol {
	color: var(--naat-text);
	padding-left: 1.5em;
}

.single-post .wp-block-post-content li {
	margin-bottom: 0.5em;
}

/* Related stories heading */
.single-post .wp-block-heading {
	color: var(--naat-text);
}

/* Single post */
.single-post .entry-content {
	max-width: var(--naat-container-narrow);
	margin: 0 auto;
}

.single-post .entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--naat-radius-md);
}

/* --- Archive / Blog Page Header --- */

/* Archive header text visibility */
.naat-page-header .wp-block-query-title {
	color: var(--naat-white);
}

.naat-page-header .wp-block-term-description {
	color: rgba(255, 255, 255, 0.85);
}

/* Blog home header (wp:cover) adjustments */
.naat-page-header--blog .wp-block-cover__inner-container {
	color: var(--naat-white);
}

/* Fix WP utility class specificity: .has-text-color overrides .has-white-color */
.naat-page-header--blog .has-white-color.has-text-color,
.naat-page-header .has-white-color.has-text-color {
	color: var(--naat-white) !important;
}

/* Archive header text forced white */
.naat-page-header .wp-block-query-title,
.naat-page-header .wp-block-heading {
	color: var(--naat-white);
}

/* Single post header: title, category, breadcrumb on dark background */
.naat-page-header .wp-block-post-title {
	color: var(--naat-white);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	max-width: 800px;
}

.naat-page-header .wp-block-post-terms {
	margin-bottom: var(--naat-spacing-sm);
}

.naat-page-header .wp-block-post-terms a {
	color: var(--naat-white);
}

/* No results text */
.wp-block-query-no-results p {
	color: var(--naat-dark-gray);
	font-size: 1.0625rem;
}

/* ==========================================================================
   Forms (WPForms & GiveWP overrides)
   ========================================================================== */

.naat-form input[type="text"],
.naat-form input[type="email"],
.naat-form input[type="tel"],
.naat-form input[type="number"],
.naat-form textarea,
.naat-form select {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--naat-border);
	border-radius: var(--naat-radius-md);
	font-size: 1rem;
	font-family: var(--naat-font-body);
	transition: border-color var(--naat-transition);
	min-height: 44px;
}

.naat-form input:focus,
.naat-form textarea:focus,
.naat-form select:focus {
	outline: none;
	border-color: var(--naat-primary);
	box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.15);
}

.naat-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.375rem;
	font-size: 0.9375rem;
}

/* GiveWP donation button — match theme accent style */
.naat-donate-form__embed .givewp-donation-form-modal__open,
.naat-donate-form__embed .give-btn {
	background-color: var(--naat-accent) !important;
	border-color: var(--naat-accent) !important;
	font-family: var(--naat-font-heading) !important;
	border-radius: var(--naat-radius-full) !important;
	min-height: 44px;
	width: 100% !important;
	padding: 1.125rem 2rem !important;
	font-size: 1.125rem !important;
	font-weight: 600 !important;
	color: var(--naat-white) !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	cursor: pointer;
	transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.naat-donate-form__embed .givewp-donation-form-modal__open:hover,
.naat-donate-form__embed .give-btn:hover {
	background-color: var(--naat-accent-hover) !important;
	border-color: var(--naat-accent-hover) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(230, 81, 0, 0.35);
}

.naat-donate-form__embed .givewp-donation-form-modal__open:active,
.naat-donate-form__embed .give-btn:active {
	transform: translateY(0);
}

/* ==========================================================================
   Page Header (inner pages)
   ========================================================================== */

.naat-page-header {
	background-color: var(--naat-primary);
	color: var(--naat-white);
	padding: var(--naat-spacing-2xl) 0;
	text-align: center;
}

.naat-page-header h1 {
	color: #FFFFFF;
	margin-bottom: var(--naat-spacing-xs);
}

.naat-page-header .breadcrumb {
	font-size: 0.875rem;
	opacity: 0.8;
}

.naat-page-header .breadcrumb a {
	color: var(--naat-secondary-light);
	text-decoration: none;
}

.naat-page-header .breadcrumb a:hover {
	color: var(--naat-white);
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.naat-404 {
	text-align: center;
	padding: var(--naat-spacing-3xl) 0;
}

.naat-404__number {
	font-size: 8rem;
	font-weight: 800;
	color: var(--naat-primary);
	opacity: 0.15;
	line-height: 1;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center { text-align: center; }
.text-primary { color: var(--naat-primary); }
.text-accent { color: var(--naat-accent); }

.section-heading {
	text-align: center;
	margin-bottom: var(--naat-spacing-xl);
}

.section-heading h2 {
	margin-bottom: var(--naat-spacing-xs);
}

.section-heading p {
	color: var(--naat-text-light);
	max-width: 600px;
	margin: 0 auto;
}

/* Image utilities */
img {
	max-width: 100%;
	height: auto;
}

.img-rounded { border-radius: var(--naat-radius-lg); }

/* Screen reader text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	clip: auto !important;
	clip-path: none;
	display: block;
	height: auto;
	left: 5px;
	top: 5px;
	width: auto;
	z-index: 100000;
	background-color: var(--naat-white);
	padding: var(--naat-spacing-sm);
}

/* ==========================================================================
   Responsive — Tablet (768px+)
   ========================================================================== */

@media (min-width: 768px) {
	.naat-container {
		padding-left: var(--naat-spacing-lg);
		padding-right: var(--naat-spacing-lg);
	}

	.menu-toggle {
		display: none;
	}

	.primary-nav {
		display: block;
	}

	/* Desktop dropdown menus */
	.primary-nav .menu-item-has-children {
		position: relative;
	}

	.primary-nav .sub-menu-toggle {
		display: none; /* hide toggle buttons on desktop — hover reveals */
	}

	.primary-nav .sub-menu {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 200px;
		background: var(--naat-white);
		border-radius: var(--naat-radius-md);
		box-shadow: var(--naat-shadow-lg);
		padding: var(--naat-spacing-xs) 0;
		opacity: 0;
		visibility: hidden;
		transform: translateY(8px);
		transition: opacity var(--naat-transition), transform var(--naat-transition), visibility var(--naat-transition);
		z-index: 100;
	}

	.primary-nav .menu-item-has-children:hover > .sub-menu,
	.primary-nav .menu-item-has-children:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.primary-nav .sub-menu li {
		display: block;
	}

	.primary-nav .sub-menu a {
		display: block;
		padding: 0.5rem 1.25rem;
		font-size: 0.875rem;
		color: var(--naat-text);
		white-space: nowrap;
		transition: background var(--naat-transition), color var(--naat-transition);
	}

	.primary-nav .sub-menu a:hover {
		background: var(--naat-light-gray);
		color: var(--naat-primary);
	}

	/* Remove underline animation from parent items that have dropdowns */
	.primary-nav .menu-item-has-children > a::after {
		display: none;
	}

	.naat-card-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.naat-stats {
		grid-template-columns: repeat(4, 1fr);
	}

	.naat-team-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================================================
   Responsive — Desktop (1024px+)
   ========================================================================== */

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

	.naat-team-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr 1.5fr;
	}
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
	.site-header,
	.site-footer,
	.nav-donate-btn,
	.menu-toggle,
	.naat-floating-donate {
		display: none;
	}

	body {
		font-size: 12pt;
		color: #000;
	}

	a {
		color: #000;
		text-decoration: underline;
	}
}

/* ==========================================================================
   SVG Icon System
   ========================================================================== */

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

.naat-icon--sm { width: 16px; height: 16px; }
.naat-icon--lg { width: 32px; height: 32px; }
.naat-icon--xl { width: 48px; height: 48px; }

.naat-icon--primary { color: var(--naat-primary); }
.naat-icon--secondary { color: var(--naat-secondary); }
.naat-icon--accent { color: var(--naat-accent); }
.naat-icon--white { color: var(--naat-white); }

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */

[data-reveal] {
	opacity: 0;
	transition: opacity var(--naat-transition-slow),
	            transform var(--naat-transition-slow);
	will-change: opacity, transform;
}

[data-reveal="fade-up"] {
	transform: translateY(30px);
}

[data-reveal="fade-left"] {
	transform: translateX(30px);
}

[data-reveal="fade-right"] {
	transform: translateX(-30px);
}

[data-reveal="zoom-in"] {
	transform: scale(0.92);
}

[data-reveal="fade"] {
	transform: none;
}

[data-reveal].is-revealed {
	opacity: 1;
	transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays */
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* Reduced motion — disable all animations and transitions */
@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	.naat-hero__scroll-indicator,
	.naat-floating-donate__pulse {
		animation: none !important;
	}

	.naat-carousel__track,
	.naat-hero__slide {
		transition: none !important;
	}

	.naat-card,
	.naat-btn,
	.social-links a,
	.naat-impact-card {
		transition: none !important;
	}

	/* Catch-all for any remaining transitions/animations */
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ==========================================================================
   Enhanced Typography
   ========================================================================== */

.section-heading h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: var(--naat-gradient-gold);
	margin: 0.75rem auto 0;
	border-radius: 2px;
}

.section-heading--left h2::after {
	margin-left: 0;
}

.naat-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--naat-font-heading);
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--naat-secondary-text);
	margin-bottom: var(--naat-spacing-sm);
}

.naat-highlight {
	color: var(--naat-secondary-text);
}

/* ==========================================================================
   Enhanced Hero Section
   ========================================================================== */

.naat-hero {
	min-height: 90vh;
}

.naat-hero__content {
	max-width: 700px;
	padding: var(--naat-spacing-3xl) 0;
}

.naat-hero__title {
	font-size: clamp(2.25rem, 7vw, 4rem);
	font-weight: 800;
	line-height: 1.05;
	margin-bottom: var(--naat-spacing-md);
}

.naat-hero__subtitle {
	font-size: clamp(1.0625rem, 2.5vw, 1.375rem);
	margin-bottom: var(--naat-spacing-xl);
}

.naat-hero__actions .naat-btn {
	padding: 1rem 2.25rem;
	font-size: 1.0625rem;
	gap: 0.5rem;
}

/* Decorative floating circles */
.naat-hero::after {
	content: '';
	position: absolute;
	right: -60px;
	bottom: -60px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.08);
	pointer-events: none;
	z-index: 0;
}

.naat-hero::before {
	content: '';
	position: absolute;
	right: 80px;
	top: 60px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.06);
	pointer-events: none;
	z-index: 0;
}

/* Scroll indicator */
.naat-hero__scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	animation: naat-bounce 2s ease infinite;
}

@keyframes naat-bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40% { transform: translateX(-50%) translateY(-8px); }
	60% { transform: translateX(-50%) translateY(-4px); }
}

/* ==========================================================================
   Premium Card Effects
   ========================================================================== */

.naat-card {
	border-radius: var(--naat-radius-lg);
	box-shadow: var(--naat-shadow-sm);
	transition: transform var(--naat-transition-bounce),
	            box-shadow var(--naat-transition);
}

.naat-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--naat-shadow-xl);
}

.naat-card__image-wrap {
	overflow: hidden;
	border-radius: var(--naat-radius-lg) var(--naat-radius-lg) 0 0;
}

.naat-card__image-wrap img,
.naat-card__image {
	transition: transform var(--naat-transition-slow);
}

.naat-card:hover .naat-card__image-wrap img,
.naat-card:hover .naat-card__image {
	transform: scale(1.06);
}

.naat-card__badge {
	position: absolute;
	top: var(--naat-spacing-sm);
	left: var(--naat-spacing-sm);
	background: var(--naat-primary);
	color: var(--naat-white);
	padding: 0.25rem 0.75rem;
	border-radius: var(--naat-radius-full);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	z-index: 1;
}

.naat-card__link {
	gap: 0.5rem;
}

.naat-card__link .naat-icon {
	transition: transform var(--naat-transition-bounce);
}

.naat-card:hover .naat-card__link .naat-icon {
	transform: translateX(4px);
}

/* ==========================================================================
   Enhanced Section Backgrounds
   ========================================================================== */

.naat-section--primary {
	background: var(--naat-gradient-primary);
	position: relative;
	overflow: hidden;
}

/* Dot pattern overlay */
.naat-section--primary::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
	background-size: 20px 20px;
	pointer-events: none;
}

/* CTA section */
.naat-section--cta {
	background: var(--naat-gradient-cta);
	position: relative;
	overflow: hidden;
	color: var(--naat-white);
	padding: var(--naat-spacing-3xl) 0;
}

.naat-section--cta::before {
	content: '';
	position: absolute;
	right: -100px;
	top: -100px;
	width: 350px;
	height: 350px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	pointer-events: none;
}

.naat-section--cta::after {
	content: '';
	position: absolute;
	left: -50px;
	bottom: -50px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	pointer-events: none;
}

.naat-section--cta h2 {
	color: var(--naat-white);
	margin-bottom: var(--naat-spacing-sm);
}

.naat-section--cta p {
	max-width: 600px;
	margin: 0 auto var(--naat-spacing-lg);
	font-size: 1.125rem;
	opacity: 0.95;
}

.naat-section--cta .naat-btn-group {
	display: flex;
	justify-content: center;
	gap: var(--naat-spacing-sm);
	flex-wrap: wrap;
}

/* Wave divider between sections */
.naat-wave-divider {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: -2px;
}

/* ==========================================================================
   Micro-Interactions
   ========================================================================== */

/* Button ripple effect */
.naat-btn {
	position: relative;
	overflow: hidden;
}

.naat-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
	transform: scale(0);
	opacity: 0;
	transition: transform 0.5s ease, opacity 0.3s ease;
	pointer-events: none;
	border-radius: inherit;
}

.naat-btn:active::after {
	transform: scale(2);
	opacity: 1;
	transition: transform 0.1s ease;
}

/* Nav link underline grow */
.primary-nav a {
	position: relative;
}

.primary-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--naat-primary);
	transition: width var(--naat-transition), left var(--naat-transition);
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item:not(.current_page_parent) a::after {
	width: 100%;
	left: 0;
}

/* Social icon hover */
.social-links a {
	transition: background var(--naat-transition),
	            transform var(--naat-transition-bounce);
}

.social-links a:hover {
	background: var(--naat-secondary);
	transform: scale(1.1);
}

/* Stat number glow */
.naat-stat__number {
	text-shadow: 0 0 20px rgba(249, 168, 37, 0.25);
}

/* Form input focus glow */
.naat-form input:focus,
.naat-form textarea:focus,
.naat-form select:focus {
	border-color: var(--naat-primary);
	box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.15),
	            0 0 15px rgba(27, 94, 32, 0.08);
}

/* ==========================================================================
   Enhanced Page Headers (inner pages)
   ========================================================================== */

.naat-page-header {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: var(--naat-spacing-3xl) 0 var(--naat-spacing-2xl);
	text-align: left;
	min-height: 280px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.naat-page-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--naat-overlay-dark);
	z-index: 0;
}

.naat-page-header .naat-container,
.naat-page-header > .wp-block-group,
.naat-page-header > * {
	position: relative;
	z-index: 1;
}

.naat-page-header .breadcrumb {
	margin-bottom: var(--naat-spacing-sm);
}

.naat-page-header__title {
	color: #FFFFFF;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	margin-bottom: var(--naat-spacing-xs);
}

.naat-page-header__desc {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	max-width: 600px;
	line-height: 1.7;
}

/* Default page header (Privacy Policy, Terms, etc.) */
.naat-page-header--default {
	min-height: 240px;
}

.naat-page-header--default::before {
	background: linear-gradient(
		135deg,
		rgba(13, 59, 14, 0.75) 0%,
		rgba(27, 94, 32, 0.6) 100%
	);
}

/* ==========================================================================
   Legal / Policy Content (Privacy Policy, Terms, etc.)
   ========================================================================== */

.naat-legal-content {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--naat-text);
}

.naat-legal-content h2 {
	font-family: var(--naat-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--naat-primary);
	margin-top: var(--naat-spacing-xl);
	margin-bottom: var(--naat-spacing-sm);
	padding-bottom: var(--naat-spacing-xs);
	border-bottom: 2px solid var(--naat-light-gray);
}

.naat-legal-content h3 {
	font-family: var(--naat-font-heading);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--naat-text);
	margin-top: var(--naat-spacing-lg);
	margin-bottom: var(--naat-spacing-xs);
}

.naat-legal-content p {
	margin-bottom: var(--naat-spacing-sm);
}

.naat-legal-content ul,
.naat-legal-content ol {
	margin-bottom: var(--naat-spacing-sm);
	padding-left: var(--naat-spacing-lg);
}

.naat-legal-content li {
	margin-bottom: 0.4rem;
	line-height: 1.7;
}

.naat-legal-content a {
	color: var(--naat-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.naat-legal-content a:hover {
	color: var(--naat-primary-dark);
}

.naat-legal-content strong {
	font-weight: 600;
	color: var(--naat-text);
}

.naat-legal-content blockquote {
	border-left: 4px solid var(--naat-primary);
	padding: var(--naat-spacing-sm) var(--naat-spacing-md);
	background: var(--naat-light-gray);
	border-radius: 0 var(--naat-radius-md) var(--naat-radius-md) 0;
	margin: var(--naat-spacing-md) 0;
}

.naat-legal-content table {
	width: 100%;
	border-collapse: collapse;
	margin: var(--naat-spacing-md) 0;
}

.naat-legal-content th,
.naat-legal-content td {
	padding: 0.75rem 1rem;
	border: 1px solid var(--naat-border);
	text-align: left;
}

.naat-legal-content th {
	background: var(--naat-light-gray);
	font-weight: 600;
}

/* ==========================================================================
   Donation Impact Cards (front page)
   ========================================================================== */

.naat-impact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--naat-spacing-md);
}

.naat-impact-card {
	background: var(--naat-white);
	border-radius: var(--naat-radius-lg);
	padding: var(--naat-spacing-lg);
	text-align: center;
	box-shadow: var(--naat-shadow-sm);
	transition: transform var(--naat-transition-bounce),
	            box-shadow var(--naat-transition);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.naat-impact-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--naat-shadow-colored);
}

.naat-impact-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(27, 94, 32, 0.1);
	color: var(--naat-primary);
	margin: 0 auto var(--naat-spacing-sm);
}

.naat-impact-card__amount {
	font-family: var(--naat-font-heading);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--naat-primary);
	margin-bottom: 0.25rem;
}

.naat-impact-card__desc {
	color: var(--naat-text-light);
	font-size: 0.9375rem;
	margin-bottom: 0;
}

/* ==========================================================================
   Testimonial Carousel
   ========================================================================== */

.naat-carousel {
	position: relative;
	overflow: hidden;
}

.naat-carousel__track {
	display: flex;
	transition: transform var(--naat-transition-slow);
}

.naat-carousel__slide {
	flex: 0 0 100%;
	min-width: 100%;
	padding: 0 var(--naat-spacing-sm);
}

.naat-carousel__slide .naat-testimonial {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	border-left: none;
	padding: var(--naat-spacing-xl);
	background: var(--naat-white);
	border-radius: var(--naat-radius-lg);
	box-shadow: var(--naat-shadow-md);
}

.naat-carousel__slide .naat-testimonial__photo {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--naat-secondary);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	margin: 0 auto var(--naat-spacing-sm);
	display: block;
}

.naat-carousel__slide .naat-testimonial__quote {
	font-size: 1.125rem;
	line-height: 1.8;
}

.naat-carousel__slide .naat-testimonial__quote::before {
	display: block;
	font-size: 3.5rem;
	margin-bottom: 0.5rem;
	margin-right: 0;
}

/* Carousel controls */
.naat-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--naat-spacing-md);
	margin-top: var(--naat-spacing-lg);
}

.naat-carousel__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--naat-white);
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: var(--naat-shadow-sm);
	cursor: pointer;
	color: var(--naat-text);
	transition: all var(--naat-transition-bounce);
}

.naat-carousel__btn:hover {
	background: var(--naat-primary);
	color: var(--naat-white);
	border-color: var(--naat-primary);
	transform: scale(1.08);
}

.naat-carousel__btn:focus-visible {
	outline: 2px solid var(--naat-primary);
	outline-offset: 2px;
}

.naat-carousel__dots {
	display: flex;
	gap: 0;
}

.naat-carousel__dot {
	width: 44px;
	height: 44px;
	border-radius: 0;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--naat-transition);
}

/* Visible dot — rendered via pseudo-element */
.naat-carousel__dot::after {
	content: '';
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.15);
	transition: all var(--naat-transition);
}

.naat-carousel__dot.is-active::after {
	background: var(--naat-primary);
	transform: scale(1.2);
}

.naat-carousel__dot:focus-visible {
	outline: 2px solid var(--naat-primary);
	outline-offset: 2px;
}

/* ==========================================================================
   Donate Page — Preset Amount Selector
   ========================================================================== */

.naat-preset-amounts {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--naat-spacing-sm);
	margin-bottom: var(--naat-spacing-lg);
}

.naat-preset-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: var(--naat-spacing-md);
	background: var(--naat-white);
	border: 2px solid rgba(0, 0, 0, 0.1);
	border-radius: var(--naat-radius-lg);
	cursor: pointer;
	transition: all var(--naat-transition-bounce);
	text-align: center;
}

.naat-preset-btn:hover {
	border-color: var(--naat-primary-light);
	transform: translateY(-2px);
	box-shadow: var(--naat-shadow-md);
}

.naat-preset-btn.is-selected {
	border-color: var(--naat-primary);
	background: rgba(27, 94, 32, 0.04);
	box-shadow: var(--naat-shadow-colored);
}

.naat-preset-btn__icon {
	color: var(--naat-primary);
}

.naat-preset-btn__amount {
	font-family: var(--naat-font-heading);
	font-size: 1.375rem;
	font-weight: 800;
	color: var(--naat-primary);
}

.naat-preset-btn__desc {
	font-size: 0.8125rem;
	color: var(--naat-text-light);
}

/* Custom amount input */
.naat-custom-amount {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	gap: var(--naat-spacing-xs);
	padding: var(--naat-spacing-sm);
	border: 2px solid rgba(0, 0, 0, 0.1);
	border-radius: var(--naat-radius-lg);
	transition: border-color var(--naat-transition);
}

.naat-custom-amount:focus-within {
	border-color: var(--naat-primary);
}

.naat-custom-amount__prefix {
	font-family: var(--naat-font-heading);
	font-weight: 700;
	color: var(--naat-text-light);
}

.naat-custom-amount__input {
	flex: 1;
	border: none;
	font-size: 1.25rem;
	font-family: var(--naat-font-heading);
	font-weight: 700;
	outline: none;
	background: transparent;
	min-width: 0;
}

/* Donate Form Embed */

.naat-donate-form__embed {
	margin-top: var(--naat-spacing-md);
}

/* ==========================================================================
   Trust Signals Bar
   ========================================================================== */

.naat-trust-bar {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--naat-spacing-sm);
	padding: var(--naat-spacing-lg);
	background: rgba(27, 94, 32, 0.04);
	border-radius: var(--naat-radius-lg);
	border: 1px solid rgba(27, 94, 32, 0.1);
	margin-bottom: var(--naat-spacing-lg);
}

.naat-trust-item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--naat-text);
}

.naat-trust-item .naat-icon {
	color: var(--naat-primary);
	flex-shrink: 0;
	margin-top: 2px;
}

/* ==========================================================================
   Enhanced Donate Sidebar
   ========================================================================== */

.naat-donate-sidebar-card {
	background: var(--naat-white);
	border-radius: var(--naat-radius-lg);
	padding: var(--naat-spacing-lg);
	box-shadow: var(--naat-shadow-sm);
	margin-bottom: var(--naat-spacing-md);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.naat-donate-sidebar-card h3 {
	font-size: 1.125rem;
	margin-bottom: var(--naat-spacing-sm);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.naat-donate-sidebar-card__list {
	list-style: none;
	padding: 0;
}

.naat-donate-sidebar-card__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--naat-light-gray);
	font-size: 0.9375rem;
}

.naat-donate-sidebar-card__list li:last-child {
	border-bottom: none;
}

.naat-donate-sidebar-card--highlight {
	background: var(--naat-gradient-primary);
	color: var(--naat-white);
	border: none;
}

.naat-donate-sidebar-card--highlight h3 {
	color: var(--naat-white);
}

.naat-impact-tier {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	padding: 0.75rem 0 0.75rem 0.875rem;
	border-left: 3px solid var(--naat-secondary);
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
}

.naat-impact-tier:last-child {
	margin-bottom: 0;
}

.naat-impact-tier strong {
	color: var(--naat-white);
	font-family: var(--naat-font-heading);
	font-size: 1.125rem;
	white-space: nowrap;
}

.naat-impact-tier span {
	color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Payment Methods (SVG icons)
   ========================================================================== */

.naat-payment-methods {
	margin-top: var(--naat-spacing-lg);
	padding-top: var(--naat-spacing-lg);
	border-top: 1px solid var(--naat-light-gray);
}

.naat-payment-methods h3 {
	font-size: 1rem;
	margin-bottom: var(--naat-spacing-sm);
}

.naat-payment-methods__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--naat-spacing-sm);
}

.naat-payment-method {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	background: var(--naat-light-gray);
	border-radius: var(--naat-radius-md);
	font-size: 0.9375rem;
	font-weight: 500;
}

.naat-payment-method .naat-icon {
	color: var(--naat-primary);
}

/* ==========================================================================
   Floating Donate Button
   ========================================================================== */

.naat-floating-donate {
	position: fixed;
	bottom: 1.25rem;
	right: 1.25rem;
	z-index: 900;
}

.naat-floating-donate__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--naat-accent);
	color: var(--naat-white);
	box-shadow: 0 4px 15px rgba(230, 81, 0, 0.4);
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: transform var(--naat-transition-bounce),
	            box-shadow var(--naat-transition);
	position: relative;
}

.naat-floating-donate__btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(230, 81, 0, 0.5);
	color: var(--naat-white);
	text-decoration: none;
}

.naat-floating-donate__btn:focus-visible {
	outline: 2px solid var(--naat-accent);
	outline-offset: 3px;
}

.naat-floating-donate__pulse {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid var(--naat-accent);
	animation: naat-pulse 2s ease infinite;
	pointer-events: none;
}

@keyframes naat-pulse {
	0% { opacity: 1; transform: scale(1); }
	100% { opacity: 0; transform: scale(1.3); }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

/* --- Grid Layout (mobile-first: stacked) --- */
.naat-contact-grid {
	background: var(--naat-light-gray);
	overflow: hidden;
}

.naat-contact-grid__layout {
	display: flex;
	flex-direction: column;
	gap: var(--naat-spacing-xl);
}

/* --- Left Column: Form Card --- */
.naat-contact-grid__form {
	background: var(--naat-white);
	border-radius: var(--naat-radius-lg);
	padding: var(--naat-spacing-lg);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 6px 20px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.naat-contact-grid__form .naat-section__title {
	font-size: clamp(1.25rem, 3vw, 1.625rem);
	margin-bottom: var(--naat-spacing-xs);
}

.naat-contact-grid__form > p {
	color: var(--naat-text-light);
	font-size: 0.9375rem;
	margin-bottom: var(--naat-spacing-lg);
}

/* --- WhatsApp CTA --- */
.naat-whatsapp-cta {
	text-align: center;
	margin-bottom: var(--naat-spacing-sm);
}

.naat-whatsapp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	width: 100%;
	max-width: 400px;
	padding: 1rem 2rem;
	background: transparent;
	color: var(--naat-primary);
	border: 2px solid var(--naat-primary);
	border-radius: var(--naat-radius-full);
	font-family: var(--naat-font-heading);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.naat-whatsapp-btn svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.naat-whatsapp-btn:hover {
	background: var(--naat-primary);
	color: var(--naat-white);
	box-shadow: 0 6px 20px rgba(27, 94, 32, 0.25);
	transform: translateY(-1px);
	text-decoration: none;
}

.naat-whatsapp-btn:active {
	transform: translateY(0);
	box-shadow: 0 3px 10px rgba(27, 94, 32, 0.2);
}

/* OR divider */
.naat-whatsapp-cta__divider {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: var(--naat-spacing-md);
	color: var(--naat-gray);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.naat-whatsapp-cta__divider::before,
.naat-whatsapp-cta__divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(0, 0, 0, 0.1);
}

.naat-whatsapp-cta__divider span {
	flex-shrink: 0;
}

.naat-whatsapp-cta__subtitle {
	color: var(--naat-text-light);
	font-size: 0.9375rem;
	margin: var(--naat-spacing-sm) 0 0;
}

/* --- Right Column: Info Cards --- */
.naat-contact-grid__info {
	display: flex;
	flex-direction: column;
	gap: var(--naat-spacing-md);
}

.naat-contact-info-card {
	background: var(--naat-white);
	border-radius: var(--naat-radius-lg);
	padding: var(--naat-spacing-lg);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 6px 20px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.naat-contact-info-card h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: var(--naat-spacing-md);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--naat-text);
}

/* --- Contact Item (phone, email, address) --- */
.naat-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	padding: 0.75rem;
	border-radius: var(--naat-radius-md);
	margin-bottom: 0.25rem;
	transition: background var(--naat-transition);
}

.naat-contact-item:last-child {
	margin-bottom: 0;
}

.naat-contact-item + .naat-contact-item {
	border-top: 1px solid rgba(0, 0, 0, 0.04);
	padding-top: 1rem;
}

.naat-contact-item:hover {
	background: var(--naat-light-gray);
}

.naat-contact-item__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: var(--naat-radius-md);
	background: rgba(27, 94, 32, 0.08);
	color: var(--naat-primary);
	flex-shrink: 0;
}

.naat-contact-item div strong {
	display: block;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--naat-text-light);
	margin-bottom: 0.1875rem;
}

.naat-contact-item div a,
.naat-contact-item div p {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--naat-text);
	text-decoration: none;
	margin: 0;
}

.naat-contact-item div a:hover {
	color: var(--naat-primary);
}

/* --- Social Links --- */
.naat-contact-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.naat-contact-social__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.875rem;
	background: var(--naat-light-gray);
	border-radius: var(--naat-radius-md);
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--naat-text);
	text-decoration: none;
	transition: all var(--naat-transition);
}

.naat-contact-social__link:hover {
	background: var(--naat-primary);
	color: var(--naat-white);
	text-decoration: none;
	transform: translateY(-1px);
}

/* --- WPForms Overrides (Contact Page) --- */
.naat-contact-grid__form .wpforms-container {
	margin: 0;
}

.naat-contact-grid__form .wpforms-field {
	padding: 0.5rem 0;
}

.naat-contact-grid__form .wpforms-field-label {
	font-family: var(--naat-font-body);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--naat-text);
}

/* Full-width all inputs */
.naat-contact-grid__form .wpforms-field input,
.naat-contact-grid__form .wpforms-field textarea,
.naat-contact-grid__form .wpforms-field select {
	width: 100% !important;
	max-width: 100% !important;
	border: 1.5px solid rgba(0, 0, 0, 0.12);
	border-radius: var(--naat-radius-md);
	padding: 0.75rem 1rem;
	font-family: var(--naat-font-body);
	font-size: 0.9375rem;
	background: var(--naat-white);
	transition: border-color var(--naat-transition), box-shadow var(--naat-transition);
	box-sizing: border-box;
}

/* Name field: equal side-by-side */
.naat-contact-grid__form .wpforms-field-row {
	display: flex;
	gap: 0.75rem;
}

.naat-contact-grid__form .wpforms-field-row .wpforms-field-row-block {
	flex: 1;
	float: none;
	padding: 0;
}

/* Hide sublabels (replaced by placeholders) */
.naat-contact-grid__form .wpforms-field-sublabel {
	display: none;
}

.naat-contact-grid__form .wpforms-field input:focus,
.naat-contact-grid__form .wpforms-field textarea:focus {
	border-color: var(--naat-primary);
	box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
	outline: none;
}


/* WPForms button — override plugin CSS variables + direct styles */
.naat-contact-grid__form .wpforms-container,
.naat-volunteer__form-wrap .wpforms-container {
	--wpforms-button-background-color: var(--naat-primary);
	--wpforms-button-background-color-alt: var(--naat-primary);
	--wpforms-button-text-color: var(--naat-white);
}

.naat-contact-grid__form .wpforms-submit-container,
.naat-volunteer__form-wrap .wpforms-submit-container {
	padding-top: 0.5rem;
}

.naat-contact-grid__form div.wpforms-container-full button[type="submit"],
.naat-volunteer__form-wrap div.wpforms-container-full button[type="submit"],
.naat-contact-grid__form .wpforms-submit-container button,
.naat-contact-grid__form .wpforms-submit-container .wpforms-submit,
.naat-volunteer__form-wrap .wpforms-submit-container button,
.naat-volunteer__form-wrap .wpforms-submit-container .wpforms-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100% !important;
	padding: 0.9375rem 2.5rem !important;
	background-color: var(--naat-primary) !important;
	color: var(--naat-white) !important;
	border: none !important;
	border-radius: var(--naat-radius-md) !important;
	font-family: var(--naat-font-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.naat-contact-grid__form div.wpforms-container-full button[type="submit"]:hover,
.naat-volunteer__form-wrap div.wpforms-container-full button[type="submit"]:hover,
.naat-contact-grid__form .wpforms-submit-container button:hover,
.naat-contact-grid__form .wpforms-submit-container .wpforms-submit:hover,
.naat-volunteer__form-wrap .wpforms-submit-container button:hover,
.naat-volunteer__form-wrap .wpforms-submit-container .wpforms-submit:hover {
	background-color: var(--naat-primary-light) !important;
	box-shadow: 0 4px 16px rgba(27, 94, 32, 0.25);
	transform: translateY(-1px);
}

/* ==========================================================================
   Donate Form Grid
   ========================================================================== */

.naat-donate-form__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--naat-spacing-xl);
}

/* ==========================================================================
   Volunteer Section
   ========================================================================== */

.naat-section--alt {
	background-color: var(--naat-light-gray);
}

.naat-section__title--center,
.naat-section__intro--center {
	text-align: center;
}

.naat-section__intro--center {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.naat-section__title {
	font-size: clamp(1.5rem, 4vw, 2rem);
	margin-bottom: var(--naat-spacing-sm);
}

.naat-section__intro {
	color: var(--naat-text-light);
	font-size: 1.0625rem;
	margin-bottom: var(--naat-spacing-lg);
}

.naat-section__cta {
	text-align: center;
	margin-top: var(--naat-spacing-xl);
}

/* ==========================================================================
   Impact Stories Grid
   ========================================================================== */

.naat-stories-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--naat-spacing-lg);
}

.naat-story-card {
	background: var(--naat-white);
	border-radius: var(--naat-radius-lg);
	overflow: hidden;
	box-shadow: var(--naat-shadow-sm);
	transition: transform var(--naat-transition-bounce),
	            box-shadow var(--naat-transition);
}

.naat-story-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--naat-shadow-lg);
}

.naat-story-card__image {
	overflow: hidden;
}

.naat-story-card__image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform var(--naat-transition-slow);
}

.naat-story-card:hover .naat-story-card__image img {
	transform: scale(1.06);
}

.naat-story-card__body {
	padding: var(--naat-spacing-md);
}

.naat-story-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-weight: 600;
	color: var(--naat-primary);
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */

.naat-cta-banner {
	background: var(--naat-gradient-cta);
	position: relative;
	overflow: hidden;
}

.naat-cta-banner::before {
	content: '';
	position: absolute;
	right: -80px;
	top: -80px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	pointer-events: none;
}

.naat-cta-banner__inner {
	text-align: center;
	color: var(--naat-white);
	position: relative;
	z-index: 1;
}

.naat-cta-banner__inner h2 {
	color: var(--naat-white);
}

.naat-cta-banner__inner p {
	opacity: 0.93;
	font-size: 1.0625rem;
	max-width: 550px;
	margin: 0 auto var(--naat-spacing-lg);
}

.naat-cta-banner__actions {
	display: flex;
	justify-content: center;
	gap: var(--naat-spacing-sm);
	flex-wrap: wrap;
}

.naat-btn--accent {
	background-color: var(--naat-white);
	color: var(--naat-accent);
	border-color: var(--naat-white);
}

.naat-btn--accent:hover {
	background: rgba(255, 255, 255, 0.9);
	color: var(--naat-accent-hover);
	text-decoration: none;
}

.naat-btn--outline-light {
	background: transparent;
	color: var(--naat-white);
	border-color: rgba(255, 255, 255, 0.5);
}

.naat-btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--naat-white);
	color: var(--naat-white);
	text-decoration: none;
}

/* ==========================================================================
   Upcoming Events Cards (Donate page)
   ========================================================================== */

.naat-events-grid {
	display: flex;
	flex-direction: column;
	gap: var(--naat-spacing-sm);
	max-width: 720px;
	margin: 0 auto var(--naat-spacing-lg);
}

.naat-event-card {
	display: flex;
	align-items: center;
	gap: var(--naat-spacing-md);
	background: var(--naat-white);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: var(--naat-radius-lg);
	padding: var(--naat-spacing-md) var(--naat-spacing-lg);
	text-decoration: none;
	color: var(--naat-text);
	transition: var(--naat-transition);
	box-shadow: var(--naat-shadow-sm);
}

.naat-event-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--naat-shadow-md);
	border-color: var(--naat-primary);
}

.naat-event-card__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 56px;
	height: 56px;
	background: var(--naat-primary);
	border-radius: var(--naat-radius-md);
	color: var(--naat-white);
	line-height: 1;
}

.naat-event-card__month {
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.85;
}

.naat-event-card__day {
	font-size: 1.375rem;
	font-weight: 800;
	font-family: var(--naat-font-heading);
}

.naat-event-card__info {
	flex: 1;
	min-width: 0;
}

.naat-event-card__title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--naat-dark);
	margin: 0 0 0.125rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.naat-event-card__venue {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.8125rem;
	color: var(--naat-text-light);
	margin: 0;
}

.naat-event-card__arrow {
	color: var(--naat-primary);
	opacity: 0;
	transform: translateX(-4px);
	transition: var(--naat-transition);
	flex-shrink: 0;
}

.naat-event-card:hover .naat-event-card__arrow {
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 480px) {
	.naat-section {
		padding-top: var(--naat-spacing-2xl);
		padding-bottom: var(--naat-spacing-2xl);
	}

	.naat-trust-bar {
		grid-template-columns: 1fr;
		padding: var(--naat-spacing-md);
		gap: var(--naat-spacing-xs);
	}

	.naat-preset-btn {
		padding: var(--naat-spacing-sm);
	}

	.naat-preset-btn__amount {
		font-size: 1.125rem;
	}

	.naat-payment-methods__grid {
		grid-template-columns: 1fr;
	}

	.naat-event-card {
		padding: var(--naat-spacing-sm) var(--naat-spacing-md);
	}

	.naat-event-card__title {
		white-space: normal;
	}

	.naat-donate-sidebar-card {
		padding: var(--naat-spacing-md);
	}

	.naat-impact-tier {
		flex-direction: row;
		align-items: baseline;
		gap: 0.75rem;
	}
}

/* ==========================================================================
   Placeholder Notices
   ========================================================================== */

.naat-placeholder-notice {
	background: var(--naat-light-gray);
	border: 2px dashed rgba(0, 0, 0, 0.15);
	border-radius: var(--naat-radius-lg);
	padding: var(--naat-spacing-xl);
	text-align: center;
	color: var(--naat-text-light);
}

/* ==========================================================================
   Programs Grid
   ========================================================================== */

.naat-programs-grid__cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--naat-spacing-lg);
}

.naat-program-card {
	position: relative;
	background: var(--naat-white);
	border-radius: var(--naat-radius-lg);
	overflow: hidden;
	box-shadow: var(--naat-shadow-sm);
	cursor: pointer;
	transition: transform var(--naat-transition-bounce),
	            box-shadow var(--naat-transition);
}

.naat-program-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--naat-shadow-lg);
}

.naat-program-card__image {
	overflow: hidden;
}

.naat-program-card__image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform var(--naat-transition-slow);
}

.naat-program-card:hover .naat-program-card__image img {
	transform: scale(1.06);
}

.naat-program-card__image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 10;
	background: var(--naat-gradient-primary);
	color: var(--naat-white);
}

.naat-program-card__body {
	padding: var(--naat-spacing-md);
}

.naat-program-card__title {
	font-size: 1.25rem;
	margin-bottom: var(--naat-spacing-xs);
}

.naat-program-card__title a {
	color: var(--naat-text);
	text-decoration: none;
}

.naat-program-card__title a::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
}

.naat-program-card__title a:hover {
	color: var(--naat-primary);
}

.naat-program-card__excerpt {
	color: var(--naat-text-light);
	font-size: 0.9375rem;
	margin-bottom: var(--naat-spacing-sm);
}

.naat-program-card__link {
	position: relative;
	z-index: 2;
	font-weight: 600;
	color: var(--naat-primary);
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	text-decoration: none;
}

/* ==========================================================================
   Program Detail Page
   ========================================================================== */

.naat-program-detail__featured img {
	width: 100%;
	height: auto;
	display: block;
}

.naat-program-detail__content {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--naat-text);
}

.naat-program-detail__content h2 {
	font-family: var(--naat-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--naat-primary);
	margin-top: var(--naat-spacing-xl);
	margin-bottom: var(--naat-spacing-sm);
	padding-bottom: var(--naat-spacing-xs);
	border-bottom: 2px solid var(--naat-light-gray);
}

.naat-program-detail__content h3 {
	font-family: var(--naat-font-heading);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--naat-primary-light);
	margin-top: var(--naat-spacing-lg);
	margin-bottom: var(--naat-spacing-xs);
}

.naat-program-detail__content ul,
.naat-program-detail__content ol {
	padding-left: var(--naat-spacing-lg);
	margin-bottom: var(--naat-spacing-md);
}

.naat-program-detail__content li {
	margin-bottom: var(--naat-spacing-xs);
}

.naat-program-detail__content blockquote {
	border-left: 4px solid var(--naat-secondary);
	padding: var(--naat-spacing-sm) var(--naat-spacing-md);
	margin: var(--naat-spacing-lg) 0;
	background: var(--naat-off-white);
	border-radius: 0 var(--naat-radius-md) var(--naat-radius-md) 0;
	font-style: italic;
	color: var(--naat-text-light);
}

.naat-program-detail__content img {
	border-radius: var(--naat-radius-md);
}

/* Page header: program-detail variant */
.naat-page-header--program-detail {
	min-height: 320px;
}

/* ==========================================================================
   Related Programs Section
   ========================================================================== */

.naat-related-programs {
	padding-top: var(--naat-spacing-3xl);
	padding-bottom: var(--naat-spacing-3xl);
}

.naat-related-programs__heading {
	font-family: var(--naat-font-heading);
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 700;
	color: var(--naat-text);
	text-align: center;
	margin-bottom: var(--naat-spacing-xl);
}

.naat-related-programs__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--naat-spacing-lg);
}

.naat-related-programs__all {
	text-align: center;
	margin-top: var(--naat-spacing-xl);
}

/* Responsive: related programs */
@media (max-width: 1024px) {
	.naat-related-programs__cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.naat-related-programs__cards {
		grid-template-columns: 1fr;
	}

	.naat-page-header--program-detail {
		min-height: 240px;
	}
}

/* ==========================================================================
   Office Hours
   ========================================================================== */

.naat-office-hours__row {
	display: flex;
	justify-content: space-between;
	padding: 0.625rem 0;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
	font-size: 0.875rem;
}

.naat-office-hours__row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.naat-office-hours__row span:first-child {
	color: var(--naat-text);
	font-weight: 500;
}

.naat-office-hours__row span:last-child {
	color: var(--naat-text-light);
	font-weight: 500;
}

/* ==========================================================================
   Map Section
   ========================================================================== */

.naat-map-section .section-heading {
	text-align: center;
	margin-bottom: var(--naat-spacing-lg);
}

.naat-map-section .section-heading h2 {
	font-size: clamp(1.5rem, 4vw, 2rem);
}

.naat-map-embed {
	border-radius: var(--naat-radius-lg);
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.naat-map-embed iframe {
	display: block;
	max-width: 100%;
}

/* ==========================================================================
   Single Post — Share Bar
   ========================================================================== */

.naat-share-bar {
	margin-top: var(--naat-spacing-xl);
	padding-top: var(--naat-spacing-lg);
	border-top: 1px solid var(--naat-light-gray);
}

.naat-share-bar__label {
	font-weight: 600;
	margin-bottom: var(--naat-spacing-sm);
}

.naat-share-bar__links {
	display: flex;
	gap: var(--naat-spacing-sm);
	flex-wrap: wrap;
}

.naat-share-bar__link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--naat-primary);
	border: 1px solid var(--naat-primary);
	border-radius: var(--naat-radius);
	transition: var(--naat-transition);
	text-decoration: none;
}

.naat-share-bar__link:hover {
	background: var(--naat-primary);
	color: var(--naat-white);
	transform: translateY(-2px);
	box-shadow: var(--naat-shadow-colored);
}

/* ==========================================================================
   About Page — Founder's Letter
   ========================================================================== */

.naat-founder__layout {
	display: flex;
	flex-direction: column;
	gap: var(--naat-spacing-xl);
	align-items: center;
}

.naat-founder__photo-wrap {
	flex-shrink: 0;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: var(--naat-shadow-lg);
	border: 4px solid var(--naat-secondary);
}

.naat-founder__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.naat-founder__content {
	text-align: center;
}

.naat-founder__icon {
	color: var(--naat-secondary-text);
	margin-bottom: var(--naat-spacing-md);
}

.naat-founder__quote {
	font-family: var(--naat-font-heading);
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.8;
	color: var(--naat-text);
	font-style: italic;
	margin: 0;
	max-width: 640px;
}

.naat-founder__attribution {
	margin-top: var(--naat-spacing-lg);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.naat-founder__name {
	font-family: var(--naat-font-heading);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--naat-primary);
	font-style: normal;
}

.naat-founder__role {
	font-size: 0.875rem;
	color: var(--naat-text-light);
}

/* ==========================================================================
   About Page — Mission & Vision Callouts
   ========================================================================== */

.naat-mission-vision {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--naat-spacing-lg);
	margin-bottom: var(--naat-spacing-2xl);
}

@media (min-width: 768px) {
	.naat-mission-vision {
		grid-template-columns: 1fr 1fr;
		gap: var(--naat-spacing-xl);
	}
}

.naat-mission-vision__item {
	background: var(--naat-off-white);
	border-left: 4px solid var(--naat-accent);
	padding: var(--naat-spacing-lg);
	border-radius: var(--naat-radius-md);
}

.naat-mission-vision__title {
	font-family: var(--naat-font-heading);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--naat-primary);
	margin: 0 0 var(--naat-spacing-sm);
}

.naat-mission-vision__text {
	color: var(--naat-text);
	line-height: 1.7;
	margin: 0;
}

/* ==========================================================================
   About Page — Story Zigzag
   ========================================================================== */

.naat-zigzag__block {
	display: flex;
	flex-direction: column;
	gap: var(--naat-spacing-xl);
	align-items: center;
	margin-bottom: var(--naat-spacing-2xl);
}

.naat-zigzag__block:last-child {
	margin-bottom: 0;
}

.naat-zigzag__image-wrap {
	flex-shrink: 0;
	border-radius: var(--naat-radius-lg);
	overflow: hidden;
	box-shadow: var(--naat-shadow-md);
}

.naat-zigzag__image {
	width: 100%;
	height: auto;
	display: block;
}

.naat-zigzag__content {
	text-align: center;
}

.naat-zigzag__step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--naat-gradient-primary);
	color: var(--naat-white);
	font-family: var(--naat-font-heading);
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: var(--naat-spacing-sm);
}

.naat-zigzag__title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--naat-primary);
	margin-bottom: var(--naat-spacing-sm);
}

.naat-zigzag__text {
	color: var(--naat-text-light);
	line-height: 1.8;
	font-size: 1rem;
	max-width: 520px;
	margin: 0 auto;
}

/* ==========================================================================
   About Page — Photo Mosaic
   ========================================================================== */

.naat-mosaic {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--naat-spacing-sm);
}

.naat-mosaic__item {
	position: relative;
	border-radius: var(--naat-radius-md);
	overflow: hidden;
	margin: 0;
}

.naat-mosaic__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--naat-transition-slow);
}

.naat-mosaic__item:hover img {
	transform: scale(1.05);
}

.naat-mosaic__caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: var(--naat-spacing-sm) var(--naat-spacing-md);
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	color: var(--naat-white);
	font-size: 0.875rem;
	transform: translateY(100%);
	transition: transform var(--naat-transition);
}

.naat-mosaic__item:hover .naat-mosaic__caption {
	transform: translateY(0);
}

.naat-mosaic-cta {
	text-align: center;
	margin-top: var(--naat-spacing-lg);
}

/* ==========================================================================
   About Page — Values Strip
   ========================================================================== */

.naat-values-strip__heading {
	text-align: center;
	color: var(--naat-white);
	margin-bottom: var(--naat-spacing-lg);
	font-size: 1.5rem;
}

.naat-values-strip {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--naat-spacing-md);
	max-width: 800px;
	margin: 0 auto;
}

.naat-values-strip__item {
	display: flex;
	align-items: center;
	gap: var(--naat-spacing-sm);
	color: var(--naat-white);
	padding: var(--naat-spacing-sm) var(--naat-spacing-md);
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--naat-radius-full);
	justify-content: center;
}

.naat-values-strip__icon {
	display: inline-flex;
	flex-shrink: 0;
}

.naat-values-strip__label {
	font-family: var(--naat-font-heading);
	font-weight: 600;
	font-size: 0.95rem;
}

/* ==========================================================================
   About Page — Timeline
   ========================================================================== */

.naat-timeline {
	position: relative;
	max-width: 600px;
	margin: 0 auto;
	padding-left: 40px;
}

.naat-timeline::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--naat-primary-light);
}

.naat-timeline__item {
	position: relative;
	margin-bottom: var(--naat-spacing-xl);
}

.naat-timeline__item:last-child {
	margin-bottom: 0;
}

.naat-timeline__marker {
	position: absolute;
	left: -33px;
	top: 4px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--naat-primary);
	border: 3px solid var(--naat-white);
	box-shadow: var(--naat-shadow-sm);
}

.naat-timeline__content {
	background: var(--naat-white);
	border-radius: var(--naat-radius-lg);
	padding: var(--naat-spacing-md) var(--naat-spacing-lg);
	box-shadow: var(--naat-shadow-sm);
}

.naat-timeline__year {
	display: inline-block;
	font-family: var(--naat-font-heading);
	font-weight: 700;
	font-size: 0.875rem;
	color: var(--naat-white);
	background: var(--naat-gradient-primary);
	padding: 0.15rem 0.75rem;
	border-radius: var(--naat-radius-full);
	margin-bottom: var(--naat-spacing-xs);
}

.naat-timeline__title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--naat-primary-dark);
	margin-bottom: 0.25rem;
}

.naat-timeline__desc {
	font-size: 0.9rem;
	color: var(--naat-text-light);
	line-height: 1.6;
	margin: 0;
}

/* ==========================================================================
   About Page — Team Grid
   ========================================================================== */

.naat-team-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--naat-spacing-lg);
}

.naat-team-card {
	background: var(--naat-white);
	border-radius: var(--naat-radius-lg);
	overflow: hidden;
	box-shadow: var(--naat-shadow-sm);
	text-align: center;
	transition: transform var(--naat-transition-bounce),
	            box-shadow var(--naat-transition);
}

.naat-team-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--naat-shadow-lg);
}

.naat-team-card__photo {
	overflow: hidden;
}

.naat-team-card__photo img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform var(--naat-transition-slow);
}

.naat-team-card:hover .naat-team-card__photo img {
	transform: scale(1.06);
}

.naat-team-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	background: var(--naat-light-gray);
	color: var(--naat-text-light);
}

.naat-team-card__info {
	padding: var(--naat-spacing-md);
}

.naat-team-card__name {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--naat-primary-dark);
	margin-bottom: 0.25rem;
}

.naat-team-card__role {
	font-size: 0.875rem;
	color: var(--naat-accent);
	font-weight: 500;
	margin-bottom: var(--naat-spacing-sm);
}

.naat-team-card__links {
	display: flex;
	justify-content: center;
	gap: var(--naat-spacing-sm);
}

.naat-team-card__links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--naat-light-gray);
	color: var(--naat-primary);
	transition: background var(--naat-transition),
	            color var(--naat-transition);
}

.naat-team-card__links a:hover {
	background: var(--naat-primary);
	color: var(--naat-white);
}

/* ==========================================================================
   Responsive — Tablet (768px+)
   ========================================================================== */

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

	.naat-preset-amounts {
		grid-template-columns: repeat(5, 1fr);
	}

	.naat-trust-bar {
		grid-template-columns: repeat(4, 1fr);
	}

	.naat-donate-form__grid {
		grid-template-columns: 2fr 1fr;
	}

	.naat-payment-methods__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.naat-contact-grid__layout {
		flex-direction: row;
		align-items: flex-start;
	}

	.naat-contact-grid__form {
		flex: 1.5;
		padding: var(--naat-spacing-xl);
	}

	.naat-contact-grid__info {
		flex: 1;
		position: sticky;
		top: var(--naat-spacing-lg);
	}

	.naat-stories-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.naat-programs-grid__cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.naat-founder__layout {
		flex-direction: row;
		text-align: left;
	}

	.naat-founder__content {
		text-align: left;
	}

	.naat-founder__quote {
		margin: 0;
	}

	.naat-zigzag__block {
		flex-direction: row;
	}

	.naat-zigzag__block--reverse {
		flex-direction: row-reverse;
	}

	.naat-zigzag__image-wrap {
		width: 45%;
	}

	.naat-zigzag__content {
		flex: 1;
		text-align: left;
	}

	.naat-zigzag__text {
		margin: 0;
	}

	.naat-mosaic {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: auto auto;
	}

	.naat-mosaic__item--large {
		grid-row: span 2;
	}

	.naat-values-strip {
		grid-template-columns: repeat(5, 1fr);
	}

	.naat-timeline {
		padding-left: 0;
	}

	.naat-timeline::before {
		left: 50%;
		transform: translateX(-50%);
	}

	.naat-timeline__item {
		width: 50%;
	}

	.naat-timeline__item:nth-child(odd) {
		margin-right: 50%;
		padding-right: var(--naat-spacing-xl);
	}

	.naat-timeline__item:nth-child(even) {
		margin-left: 50%;
		padding-left: var(--naat-spacing-xl);
	}

	.naat-timeline__marker {
		left: auto;
		right: -7px;
	}

	.naat-timeline__item:nth-child(even) .naat-timeline__marker {
		left: -7px;
		right: auto;
	}

	.naat-team-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ==========================================================================
   Responsive — Desktop (1024px+)
   ========================================================================== */

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

	.naat-programs-grid__cards {
		grid-template-columns: repeat(3, 1fr);
	}

	.naat-team-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ==========================================================================
   Gallery Page — Album Grid
   ========================================================================== */

.naat-album-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--naat-spacing-md);
}

.naat-album-card {
	display: block;
	text-decoration: none;
	color: var(--naat-text);
	border-radius: var(--naat-radius-md);
	overflow: hidden;
	background: var(--naat-white);
	box-shadow: var(--naat-shadow);
	transition: transform var(--naat-transition), box-shadow var(--naat-transition);
}

.naat-album-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--naat-shadow-lg);
}

.naat-album-card__cover {
	position: relative;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.naat-album-card__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--naat-transition-slow);
}

.naat-album-card:hover .naat-album-card__cover img {
	transform: scale(1.08);
}

.naat-album-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--naat-light-gray);
	color: var(--naat-gray);
}

.naat-album-card__placeholder .dashicons {
	font-size: 48px;
	width: 48px;
	height: 48px;
}

.naat-album-card__info {
	padding: var(--naat-spacing-sm) var(--naat-spacing-md);
}

.naat-album-card__name {
	font-family: var(--naat-font-heading);
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 0.25rem;
}

.naat-album-card__count {
	font-size: 0.85rem;
	color: var(--naat-text-light);
}

/* ==========================================================================
   Gallery Page — Filter Buttons
   ========================================================================== */

.naat-gallery-filters {
	display: flex;
	flex-wrap: wrap;
	gap: var(--naat-spacing-xs);
	justify-content: center;
	margin-bottom: var(--naat-spacing-lg);
}

.naat-filter-btn {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	border: 2px solid var(--naat-primary);
	border-radius: var(--naat-radius-full);
	background: transparent;
	color: var(--naat-primary);
	font-family: var(--naat-font-body);
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: background var(--naat-transition), color var(--naat-transition);
}

.naat-filter-btn:hover,
.naat-filter-btn.is-active {
	background: var(--naat-primary);
	color: var(--naat-white);
}

/* ==========================================================================
   Gallery Page — Masonry-style Grid
   ========================================================================== */

.naat-gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--naat-spacing-sm);
}

.naat-gallery-item {
	border-radius: var(--naat-radius-md);
	overflow: hidden;
}

.naat-gallery-item__link {
	position: relative;
	display: block;
	overflow: hidden;
}

.naat-gallery-item__link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	aspect-ratio: 4 / 3;
	transition: transform var(--naat-transition-slow);
}

.naat-gallery-item__link:hover img {
	transform: scale(1.05);
}

.naat-gallery-item__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--naat-spacing-xs);
	background: rgba(0, 0, 0, 0.5);
	color: var(--naat-white);
	opacity: 0;
	transition: opacity var(--naat-transition);
}

.naat-gallery-item__link:hover .naat-gallery-item__overlay {
	opacity: 1;
}

.naat-gallery-item__icon {
	font-size: 24px;
	width: 24px;
	height: 24px;
}

.naat-gallery-item__play {
	font-size: 48px;
	width: 48px;
	height: 48px;
}

.naat-gallery-item__caption {
	font-size: 0.85rem;
	text-align: center;
	padding: 0 var(--naat-spacing-sm);
}

.naat-gallery-item__placeholder {
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--naat-light-gray);
	color: var(--naat-gray);
}

.naat-gallery-item__placeholder .dashicons {
	font-size: 48px;
	width: 48px;
	height: 48px;
}

.naat-gallery-item__embed {
	min-height: 200px;
	background: var(--naat-white);
	border-radius: var(--naat-radius-md);
	overflow: hidden;
}

.naat-gallery-item__embed iframe {
	max-width: 100%;
}

.naat-gallery-item__embed-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--naat-spacing-xs);
	padding: var(--naat-spacing-lg);
	color: var(--naat-primary);
	text-decoration: none;
	font-weight: 500;
}

.naat-gallery-item__embed-link:hover {
	color: var(--naat-primary-dark);
}

/* ==========================================================================
   Gallery Page — Lightbox Overlay
   ========================================================================== */

.naat-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.92);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.naat-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.naat-lightbox__content {
	max-width: 90vw;
	max-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.naat-lightbox__image {
	max-width: 90vw;
	max-height: 80vh;
	object-fit: contain;
	border-radius: var(--naat-radius-sm);
}

.naat-lightbox__iframe {
	width: 90vw;
	max-width: 900px;
	height: 50vw;
	max-height: 506px;
	border: none;
	border-radius: var(--naat-radius-sm);
}

.naat-lightbox__close {
	position: absolute;
	top: var(--naat-spacing-md);
	right: var(--naat-spacing-md);
	background: none;
	border: none;
	color: var(--naat-white);
	font-size: 2rem;
	cursor: pointer;
	z-index: 10001;
	line-height: 1;
	padding: var(--naat-spacing-xs);
	opacity: 0.8;
	transition: opacity var(--naat-transition);
}

.naat-lightbox__close:hover {
	opacity: 1;
}

.naat-lightbox__prev,
.naat-lightbox__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.15);
	border: none;
	color: var(--naat-white);
	font-size: 2.5rem;
	cursor: pointer;
	padding: 0.5rem 1rem;
	border-radius: var(--naat-radius-sm);
	opacity: 0.7;
	transition: opacity var(--naat-transition), background var(--naat-transition);
	z-index: 10001;
}

.naat-lightbox__prev:hover,
.naat-lightbox__next:hover {
	opacity: 1;
	background: rgba(255, 255, 255, 0.25);
}

.naat-lightbox__prev {
	left: var(--naat-spacing-md);
}

.naat-lightbox__next {
	right: var(--naat-spacing-md);
}

.naat-lightbox__caption {
	color: var(--naat-white);
	text-align: center;
	padding: var(--naat-spacing-sm) var(--naat-spacing-md);
	font-size: 0.95rem;
	max-width: 600px;
	opacity: 0.9;
}

/* Gallery responsive — Tablet (768px+) */
@media (min-width: 768px) {
	.naat-album-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.naat-gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Gallery responsive — Desktop (1024px+) */
@media (min-width: 1024px) {
	.naat-gallery-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ==========================================================================
   The Events Calendar — Premium Styling
   Matches NAAT Foundation design language: cards, shadows, brand colors,
   hover effects, responsive layout. Targets TEC v2 list + single views.
   ========================================================================== */

/* --- Events Archive Hero Header --- */
.naat-page-header--events {
	position: relative;
	width: 100%;
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--naat-spacing-3xl) var(--naat-spacing-md);
	background-size: cover;
	background-position: center 30%;
	color: var(--naat-white);
	text-align: center;
	overflow: hidden;
}

.naat-page-header--events .naat-page-header__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(13, 59, 14, 0.7) 0%,
		rgba(27, 94, 32, 0.55) 50%,
		rgba(13, 59, 14, 0.75) 100%
	);
	z-index: 1;
}

.naat-page-header--events .naat-page-header__content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	margin: 0 auto;
}

.naat-page-header--events .naat-eyebrow {
	color: var(--naat-secondary);
	margin-bottom: var(--naat-spacing-sm);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.naat-page-header--events .naat-page-header__title {
	font-family: var(--naat-font-heading);
	font-size: clamp(2.25rem, 6vw, 3.5rem);
	font-weight: 800;
	margin: 0 0 var(--naat-spacing-sm);
	color: var(--naat-white);
	letter-spacing: -0.01em;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.naat-page-header--events .naat-page-header__desc {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.92);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.7;
}

/* --- TEC Container Overrides --- */
.tribe-events {
	font-family: var(--naat-font-body) !important;
}

.tribe-events .tribe-common-l-container.tribe-events-l-container {
	max-width: var(--naat-container-max, 1200px);
	padding: var(--naat-spacing-xl) var(--naat-spacing-md) var(--naat-spacing-lg) !important;
}

/* --- TEC Top Bar / Toolbar Styling --- */
.tribe-events .tribe-events-c-top-bar {
	padding: var(--naat-spacing-sm) 0;
	border-bottom: 2px solid rgba(27, 94, 32, 0.1);
	margin-bottom: var(--naat-spacing-md);
}

.tribe-events .tribe-events-c-top-bar__datepicker-button {
	font-family: var(--naat-font-heading);
	font-weight: 700;
	color: var(--naat-dark);
	font-size: 1.25rem;
}

.tribe-events .tribe-events-c-top-bar__nav-link {
	color: var(--naat-primary);
	transition: color 0.2s ease, transform 0.2s ease;
}

.tribe-events .tribe-events-c-top-bar__nav-link:hover {
	color: var(--naat-accent);
	transform: scale(1.15);
}

.tribe-events .tribe-events-c-top-bar__today-button {
	font-family: var(--naat-font-body);
	font-weight: 600;
	color: var(--naat-primary);
	border-color: var(--naat-primary);
	border-radius: var(--naat-radius-sm, 6px);
	transition: all 0.2s ease;
}

.tribe-events .tribe-events-c-top-bar__today-button:hover {
	background-color: var(--naat-primary);
	color: var(--naat-white);
}

/* --- TEC Search Bar Styling --- */
/* Events bar: search + view selector container */
.tribe-events .tribe-events-c-events-bar {
	background: var(--naat-white);
	border: 1px solid var(--naat-light-gray);
	border-radius: var(--naat-radius, 12px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	padding: var(--naat-spacing-sm) var(--naat-spacing-md);
	margin-bottom: var(--naat-spacing-md);
	display: flex;
	align-items: center;
	gap: var(--naat-spacing-sm);
}

.tribe-events .tribe-events-c-events-bar__search-container {
	flex: 1;
}

.tribe-events .tribe-events-c-events-bar .tribe-events-c-search {
	display: flex;
	align-items: center;
	gap: var(--naat-spacing-sm);
}

.tribe-events .tribe-events-c-search__input {
	font-family: var(--naat-font-body);
	border-radius: var(--naat-radius-sm, 6px);
	border: 2px solid var(--naat-border);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tribe-events .tribe-events-c-search__input:focus {
	border-color: var(--naat-primary);
	box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.15);
	outline: none;
}

.tribe-events .tribe-events-c-search__button {
	background-color: var(--naat-primary) !important;
	border-radius: var(--naat-radius-sm, 6px) !important;
	transition: background-color 0.2s ease;
}

.tribe-events .tribe-events-c-search__button:hover {
	background-color: var(--naat-primary-light) !important;
}

/* --- TEC View Selector Styling --- */
.tribe-events .tribe-events-c-view-selector__button {
	font-family: var(--naat-font-body);
	font-weight: 600;
	color: var(--naat-dark);
}

/* --- Month Separator (e.g., "March 2026") --- */
.tribe-events .tribe-events-calendar-list__month-separator {
	position: relative;
	padding: var(--naat-spacing-sm) 0;
	margin: var(--naat-spacing-md) 0 var(--naat-spacing-sm);
}

.tribe-events .tribe-events-calendar-list__month-separator-text {
	font-family: var(--naat-font-heading);
	font-weight: 700;
	color: var(--naat-primary);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: var(--naat-white);
	padding-right: var(--naat-spacing-md);
	position: relative;
	z-index: 1;
}

.tribe-events .tribe-events-calendar-list__month-separator::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 2px;
	background: linear-gradient(to right, var(--naat-primary), transparent);
	z-index: 0;
}

/* --- Event Card (List View) — Premium Card Style --- */
.tribe-events .tribe-events-calendar-list__event-row {
	background: var(--naat-white);
	border-radius: var(--naat-radius, 12px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.06);
	margin-bottom: var(--naat-spacing-md);
	padding: var(--naat-spacing-md);
	transition: transform 0.3s var(--naat-transition-bounce, cubic-bezier(0.34, 1.56, 0.64, 1)),
	            box-shadow 0.3s ease;
	overflow: hidden;
}

/* Make entire event card clickable via stretched title link */
.tribe-events .tribe-events-calendar-list__event-row {
	position: relative;
	cursor: pointer;
}

.tribe-events .tribe-events-calendar-list__event-title-link::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* Keep internal links above the overlay */
.tribe-events .tribe-events-calendar-list__event-cost,
.tribe-events .tribe-events-calendar-list__event-venue a {
	position: relative;
	z-index: 2;
}

.tribe-events .tribe-events-calendar-list__event-row:hover {
	transform: translateY(-4px);
	box-shadow: var(--naat-shadow-lg, 0 12px 32px rgba(0, 0, 0, 0.12));
	border-color: rgba(27, 94, 32, 0.15);
}

/* --- Date Tag (Day Number Badge) --- */
.tribe-events .tribe-events-calendar-list__event-date-tag {
	flex-shrink: 0;
	width: 72px;
	text-align: center;
}

.tribe-events .tribe-events-calendar-list__event-date-tag-datetime {
	background: linear-gradient(135deg, var(--naat-primary), var(--naat-primary-light));
	color: var(--naat-white);
	border-radius: var(--naat-radius-sm, 8px);
	padding: var(--naat-spacing-sm) var(--naat-spacing-xs);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	box-shadow: 0 3px 12px rgba(27, 94, 32, 0.25);
}

.tribe-events .tribe-events-calendar-list__event-date-tag-weekday {
	font-family: var(--naat-font-body);
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	opacity: 0.85;
	color: #FFFFFF !important;
}

.tribe-events .tribe-events-calendar-list__event-date-tag-daynum {
	font-family: var(--naat-font-heading);
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.1;
	color: #FFFFFF !important;
}

/* --- Event Details Area --- */
.tribe-events .tribe-events-calendar-list__event-details {
	flex: 1;
	min-width: 0;
}

.tribe-events .tribe-events-calendar-list__event-header {
	margin-bottom: var(--naat-spacing-xs);
}

/* Event Title */
.tribe-events .tribe-events-calendar-list__event-title {
	font-family: var(--naat-font-heading);
	font-weight: 700;
	margin: 0 0 var(--naat-spacing-xs);
}

.tribe-events .tribe-events-calendar-list__event-title-link {
	color: var(--naat-text) !important;
	text-decoration: none !important;
	transition: color 0.2s ease;
}

.tribe-events .tribe-events-calendar-list__event-title-link:hover {
	color: var(--naat-primary) !important;
}

/* Event Date/Time Line */
.tribe-events .tribe-events-calendar-list__event-datetime-wrapper {
	color: var(--naat-dark-gray) !important;
	font-size: 0.9375rem;
	display: flex;
	align-items: center;
	gap: 0.375rem;
	margin-bottom: var(--naat-spacing-xs);
}

.tribe-events .tribe-events-calendar-list__event-datetime-wrapper::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231B5E20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

/* Event Venue */
.tribe-events .tribe-events-calendar-list__event-venue {
	font-size: 0.9375rem;
	margin-bottom: var(--naat-spacing-xs);
	display: flex;
	align-items: center;
	gap: 0.375rem;
}

.tribe-events .tribe-events-calendar-list__event-venue::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23E65100' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

.tribe-events .tribe-events-calendar-list__event-venue-title {
	color: var(--naat-text) !important;
	font-weight: 600;
}

.tribe-events .tribe-events-calendar-list__event-venue-address {
	color: var(--naat-dark-gray) !important;
}

/* Event Description (make visible) */
.tribe-events .tribe-events-calendar-list__event-description {
	clip: unset !important;
	height: auto !important;
	width: auto !important;
	position: static !important;
	overflow: visible !important;
	color: var(--naat-dark-gray) !important;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-top: var(--naat-spacing-xs);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden !important;
}

/* Event Cost Badge */
.tribe-events .tribe-events-calendar-list__event-cost {
	margin-top: var(--naat-spacing-sm);
}

.tribe-events .tribe-events-calendar-list__event-cost .tribe-events-c-small-cta__link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	background: linear-gradient(135deg, var(--naat-primary), var(--naat-primary-light)) !important;
	color: #FFFFFF !important;
	font-family: var(--naat-font-heading);
	font-weight: 700;
	font-size: 0.875rem;
	padding: 0.5rem 1.125rem;
	border-radius: 50px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tribe-events .tribe-events-calendar-list__event-cost .tribe-events-c-small-cta__link:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

.tribe-events .tribe-events-calendar-list__event-cost .tribe-events-c-small-cta__price {
	font-weight: 700;
	color: var(--naat-secondary-text);
}

/* --- Category Badges on Event Cards --- */
.tribe-events .tribe-events-calendar-list__event-row.cat_fundraiser {
	border-left: 4px solid var(--naat-secondary);
}

.tribe-events .tribe-events-calendar-list__event-row.cat_health {
	border-left: 4px solid var(--naat-error);
}

.tribe-events .tribe-events-calendar-list__event-row.cat_education {
	border-left: 4px solid var(--naat-info);
}

.tribe-events .tribe-events-calendar-list__event-row.cat_community {
	border-left: 4px solid var(--naat-accent);
}

/* --- Event Featured Image in List View --- */
.tribe-events .tribe-events-calendar-list__event-featured-image-wrapper {
	flex-shrink: 0;
	width: 240px;
	max-height: 170px;
	border-radius: var(--naat-radius-sm, 8px);
	overflow: hidden;
}

.tribe-events .tribe-events-calendar-list__event-featured-image {
	width: 100%;
	height: 170px;
	object-fit: cover;
	transition: transform 0.4s ease;
	display: block;
}

.tribe-events .tribe-events-calendar-list__event-row:hover .tribe-events-calendar-list__event-featured-image {
	transform: scale(1.06);
}

/* --- Subscribe / Export Button --- */
.tribe-events .tribe-events-c-subscribe-dropdown__button {
	font-family: var(--naat-font-body);
	font-weight: 600;
	color: var(--naat-primary);
	border-color: var(--naat-primary);
	border-radius: var(--naat-radius-sm, 6px);
	transition: all 0.2s ease;
}

.tribe-events .tribe-events-c-subscribe-dropdown__button:hover {
	background-color: var(--naat-primary);
	color: var(--naat-white);
}

/* --- Navigation (Previous / Next) --- */
.tribe-events .tribe-events-c-nav__list {
	display: flex;
	justify-content: space-between;
	padding: var(--naat-spacing-lg) 0 var(--naat-spacing-md);
	border-top: 2px solid rgba(27, 94, 32, 0.1);
	margin-top: var(--naat-spacing-lg);
}

.tribe-events .tribe-events-c-nav__prev,
.tribe-events .tribe-events-c-nav__next {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--naat-font-heading);
	font-weight: 700;
	color: var(--naat-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.tribe-events .tribe-events-c-nav__prev:hover,
.tribe-events .tribe-events-c-nav__next:hover {
	color: var(--naat-accent);
}

/* ==========================================================================
   TEC — Single Event Page Styling
   ========================================================================== */

.tribe-events-single {
	max-width: var(--naat-container-max, 1200px);
	margin: 0 auto;
	padding: var(--naat-spacing-lg) var(--naat-spacing-md);
}

/* Back to Events link */
.tribe-events .tribe-events-back a,
.tribe-events-back a {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-family: var(--naat-font-body);
	font-weight: 600;
	color: var(--naat-primary);
	text-decoration: none !important;
	padding: var(--naat-spacing-xs) 0;
	transition: color 0.2s ease;
}

.tribe-events .tribe-events-back a:hover {
	color: var(--naat-accent);
}

.tribe-events .tribe-events-back a::before {
	content: '\2190';
	font-size: 1.125rem;
}

/* Single Event Title */
.tribe-events-single-event-title {
	font-family: var(--naat-font-heading);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: var(--naat-dark);
	margin: var(--naat-spacing-sm) 0 var(--naat-spacing-md);
	line-height: 1.2;
}

/* Schedule / Date-Time Bar */
.tribe-events .tribe-events-schedule {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	padding: var(--naat-spacing-md);
	background: linear-gradient(135deg, rgba(27, 94, 32, 0.06), rgba(27, 94, 32, 0.02));
	border-radius: var(--naat-radius, 12px);
	border-left: 4px solid var(--naat-primary);
	margin-bottom: var(--naat-spacing-lg);
	font-size: 1.0625rem;
	color: var(--naat-dark);
	font-weight: 500;
}

.tribe-events .tribe-events-cost {
	background: var(--naat-primary);
	color: var(--naat-white);
	padding: 0.375rem 0.875rem;
	border-radius: 50px;
	font-family: var(--naat-font-heading);
	font-weight: 700;
	font-size: 0.9375rem;
}

/* Event Description */
.tribe-events-single-event-description {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: #444;
	margin-bottom: var(--naat-spacing-xl);
}

.tribe-events-single-event-description h2,
.tribe-events-single-event-description h3 {
	font-family: var(--naat-font-heading);
	color: var(--naat-dark);
	margin-top: var(--naat-spacing-lg);
}

.tribe-events-single-event-description ul {
	padding-left: 1.5rem;
}

.tribe-events-single-event-description li {
	margin-bottom: 0.5rem;
}

/* Event Meta Sections (Venue, Organizer) */
.tribe-events-single-section {
	background: var(--naat-white);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: var(--naat-radius, 12px);
	padding: var(--naat-spacing-lg);
	margin-bottom: var(--naat-spacing-md);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tribe-events-single-section-title {
	font-family: var(--naat-font-heading);
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--naat-primary);
	margin: 0 0 var(--naat-spacing-sm);
	padding-bottom: var(--naat-spacing-xs);
	border-bottom: 2px solid rgba(27, 94, 32, 0.12);
}

.tribe-events .tribe-venue {
	margin-bottom: var(--naat-spacing-sm);
}

.tribe-events .tribe-venue a {
	color: var(--naat-primary);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.tribe-events .tribe-venue a:hover {
	color: var(--naat-accent);
}

.tribe-events .tribe-events-address {
	color: #555;
	line-height: 1.6;
}

/* Google Maps embed */
.tribe-events .tribe-events-venue-map {
	border-radius: var(--naat-radius, 12px);
	overflow: hidden;
	margin-top: var(--naat-spacing-sm);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Organizer Section */
.tribe-events .tribe-organizer {
	margin-bottom: var(--naat-spacing-xs);
}

.tribe-events .tribe-organizer a {
	color: var(--naat-primary);
	font-weight: 600;
	text-decoration: none;
}

/* Event Navigation (Previous/Next Event) */
.tribe-events .tribe-events-sub-nav {
	display: flex;
	justify-content: space-between;
	padding: var(--naat-spacing-lg) 0;
	border-top: 2px solid rgba(27, 94, 32, 0.1);
	margin-top: var(--naat-spacing-xl);
}

.tribe-events .tribe-events-sub-nav a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--naat-font-heading);
	font-weight: 700;
	color: var(--naat-primary);
	text-decoration: none;
	padding: var(--naat-spacing-xs) var(--naat-spacing-md);
	border: 2px solid var(--naat-primary);
	border-radius: var(--naat-radius-sm, 8px);
	transition: all 0.2s ease;
}

.tribe-events .tribe-events-sub-nav a:hover {
	background-color: var(--naat-primary);
	color: var(--naat-white);
}

/* ==========================================================================
   TEC — Responsive Adjustments
   ========================================================================== */

@media (max-width: 767px) {
	.naat-page-header--events {
		min-height: 280px;
		padding: var(--naat-spacing-2xl) var(--naat-spacing-sm);
	}

	.tribe-events .tribe-events-calendar-list__event-row {
		flex-direction: column;
		gap: var(--naat-spacing-sm);
	}

	.tribe-events .tribe-events-calendar-list__event-date-tag {
		width: auto;
	}

	.tribe-events .tribe-events-calendar-list__event-date-tag-datetime {
		flex-direction: row;
		gap: var(--naat-spacing-xs);
		min-height: auto;
		padding: var(--naat-spacing-xs) var(--naat-spacing-md);
	}

	.tribe-events .tribe-events-calendar-list__event-featured-image-wrapper {
		width: 100%;
		max-height: 200px;
	}

	.tribe-events .tribe-events-calendar-list__event-featured-image {
		height: 200px;
	}

	.tribe-events .tribe-events-sub-nav {
		flex-direction: column;
		gap: var(--naat-spacing-sm);
	}

	.tribe-events .tribe-events-sub-nav a {
		justify-content: center;
	}
}

@media (min-width: 768px) {
	.tribe-events .tribe-events-calendar-list__event-title {
		font-size: 1.25rem;
	}

	.tribe-events .tribe-events-calendar-list__event-date-tag-daynum {
		font-size: 2rem;
	}
}

/* ==========================================================================
   Accessibility — Global Focus Indicators (WCAG 2.1 AA)
   ========================================================================== */

/*
 * Visible focus ring for keyboard users on ALL interactive elements.
 * Uses :focus-visible so mouse clicks don't show the ring.
 * 2px solid outline with 2px offset for clear visibility.
 */

/* Buttons */
.naat-btn:focus-visible,
.naat-preset-btn:focus-visible,
.menu-toggle:focus-visible {
	outline: 2px solid var(--naat-primary);
	outline-offset: 2px;
}

/* Navigation links */
.primary-nav a:focus-visible,
.footer-nav a:focus-visible {
	outline: 2px solid var(--naat-primary);
	outline-offset: 2px;
	border-radius: var(--naat-radius-sm);
}

/* Footer links (on dark background) */
.site-footer a:focus-visible {
	outline: 2px solid var(--naat-secondary);
	outline-offset: 2px;
}

/* Social links */
.social-links a:focus-visible {
	outline: 2px solid var(--naat-primary);
	outline-offset: 2px;
}

/* Card links */
.naat-card a:focus-visible,
.naat-team-card a:focus-visible {
	outline: 2px solid var(--naat-primary);
	outline-offset: 2px;
}

/* Logo */
.site-brand a:focus-visible {
	outline: 2px solid var(--naat-primary);
	outline-offset: 4px;
	border-radius: var(--naat-radius-sm);
}

/* TEC interactive elements */
.tribe-events a:focus-visible,
.tribe-events button:focus-visible {
	outline: 2px solid var(--naat-primary);
	outline-offset: 2px;
}

/* Generic fallback for any interactive element without specific styles */
a:focus-visible {
	outline: 2px solid var(--naat-primary);
	outline-offset: 2px;
}

button:focus-visible {
	outline: 2px solid var(--naat-primary);
	outline-offset: 2px;
}

/* ==========================================================================
   Dark Mode Refinements
   Elements that don't adapt purely via token swaps need targeted overrides.
   ========================================================================== */

html[data-naat-dark="true"] img {
	filter: brightness(0.92);
}

html[data-naat-dark="true"] .naat-page-header__overlay,
html[data-naat-dark="true"] .naat-hero__overlay {
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(18, 18, 18, 0.7) 100%);
}

html[data-naat-dark="true"] .naat-card,
html[data-naat-dark="true"] .naat-program-card,
html[data-naat-dark="true"] .naat-news-card,
html[data-naat-dark="true"] .naat-story-card,
html[data-naat-dark="true"] .naat-testimonial-card,
html[data-naat-dark="true"] .naat-album-card {
	background-color: var(--naat-off-white);
	border-color: var(--naat-border);
}

html[data-naat-dark="true"] .naat-related-programs__heading {
	color: var(--naat-white);
}

html[data-naat-dark="true"] .naat-program-detail__content,
html[data-naat-dark="true"] .naat-program-detail__content p,
html[data-naat-dark="true"] .naat-program-detail__content li,
html[data-naat-dark="true"] .naat-program-detail__content span,
html[data-naat-dark="true"] .naat-program-detail .entry-content,
html[data-naat-dark="true"] .naat-program-detail .entry-content p,
html[data-naat-dark="true"] .naat-program-detail .entry-content li {
	color: var(--naat-text) !important;
}

html[data-naat-dark="true"] .naat-program-detail__content h2 {
	color: var(--naat-secondary-light);
	border-bottom-color: var(--naat-border);
}

html[data-naat-dark="true"] .naat-program-detail__content h3 {
	color: var(--naat-secondary);
}

html[data-naat-dark="true"] .naat-program-detail__content blockquote {
	background: var(--naat-light-gray);
	color: var(--naat-text);
}

html[data-naat-dark="true"] .naat-form input,
html[data-naat-dark="true"] .naat-form textarea,
html[data-naat-dark="true"] .naat-form select,
html[data-naat-dark="true"] .wpforms-field input,
html[data-naat-dark="true"] .wpforms-field textarea,
html[data-naat-dark="true"] .wpforms-field select {
	background-color: var(--naat-light-gray);
	color: var(--naat-text);
	border-color: var(--naat-border);
}

html[data-naat-dark="true"] .naat-form input::placeholder,
html[data-naat-dark="true"] .wpforms-field input::placeholder {
	color: var(--naat-text-light);
}

html[data-naat-dark="true"] .naat-form label,
html[data-naat-dark="true"] .wpforms-field-label,
html[data-naat-dark="true"] .wpforms-field-sublabel,
html[data-naat-dark="true"] .wpforms-field-description {
	color: rgba(255, 255, 255, 0.92);
}

html[data-naat-dark="true"] div.wpforms-container-full {
	--wpforms-label-color: rgba(255, 255, 255, 0.92);
	--wpforms-label-sublabel-color: rgba(255, 255, 255, 0.7);
	--wpforms-label-error-color: #ff6b6b;
}

html[data-naat-dark="true"] .site-header {
	border-bottom: 1px solid var(--naat-border);
}

html[data-naat-dark="true"] .naat-footer {
	border-top: 1px solid var(--naat-border);
}

/* Dark mode: Hero carousel text must stay white against dark overlay */
html[data-naat-dark="true"] .naat-hero__title,
html[data-naat-dark="true"] .naat-hero__subtitle,
html[data-naat-dark="true"] .naat-hero__content .naat-eyebrow {
	color: #FFFFFF !important;
}

/* Dark mode: Testimonial carousel text contrast */
html[data-naat-dark="true"] .naat-carousel__slide,
html[data-naat-dark="true"] .naat-testimonial {
	background-color: var(--naat-off-white);
	border-color: var(--naat-border);
}

html[data-naat-dark="true"] .naat-testimonial__quote {
	color: var(--naat-text);
}

html[data-naat-dark="true"] .naat-testimonial__author {
	color: var(--naat-primary);
}

html[data-naat-dark="true"] .naat-testimonial__role {
	color: var(--naat-text-light);
}

html[data-naat-dark="true"] .naat-carousel__btn {
	color: var(--naat-text);
	border-color: var(--naat-border);
	background: var(--naat-off-white);
}

/* Dark mode: Toggle between default and white logo */
.site-header .custom-logo-link--white {
	display: none !important;
}

html[data-naat-dark="true"] .site-header .wp-block-site-logo img {
	visibility: hidden;
	width: 0;
	height: 0;
	overflow: hidden;
	position: absolute;
}

html[data-naat-dark="true"] .site-header .custom-logo-link--white {
	display: inline-flex !important;
	align-items: center;
}

html[data-naat-dark="true"] .site-header .custom-logo-link--white svg {
	height: 50px;
	width: auto;
}

html[data-naat-dark="true"] .naat-trust-bar {
	background-color: var(--naat-off-white);
}

html[data-naat-dark="true"] .naat-preset-btn {
	background-color: var(--naat-light-gray);
	border-color: var(--naat-border);
	color: var(--naat-text);
}

html[data-naat-dark="true"] .naat-lightbox {
	background-color: rgba(0, 0, 0, 0.95);
}

/* Dark mode: blog card text contrast */
html[data-naat-dark="true"] .naat-card .wp-block-post-title a {
	color: var(--naat-text);
}

html[data-naat-dark="true"] .naat-card .wp-block-post-date,
html[data-naat-dark="true"] .naat-card .wp-block-post-excerpt,
html[data-naat-dark="true"] .naat-card .wp-block-post-excerpt__excerpt,
html[data-naat-dark="true"] .naat-card .wp-block-read-more,
html[data-naat-dark="true"] .naat-card .naat-reading-time {
	color: var(--naat-text-light);
}

html[data-naat-dark="true"] .naat-card .wp-block-read-more:hover {
	color: var(--naat-primary-light);
}

html[data-naat-dark="true"] .single-post .wp-block-post-content,
html[data-naat-dark="true"] .single-post .wp-block-post-content p {
	color: var(--naat-text);
}

html[data-naat-dark="true"] .single-post .wp-block-post-content blockquote {
	background: var(--naat-light-gray);
	color: var(--naat-text-light);
	border-left-color: var(--naat-primary);
}

html[data-naat-dark="true"] .wp-block-query-pagination .page-numbers,
html[data-naat-dark="true"] .wp-block-query-pagination-previous,
html[data-naat-dark="true"] .wp-block-query-pagination-next {
	color: var(--naat-text);
}

/* The Events Calendar — dark mode overrides */
html[data-naat-dark="true"] .tribe-common {
	--tec-color-text-primary: rgba(255, 255, 255, 0.92);
	--tec-color-text-secondary: rgba(255, 255, 255, 0.7);
	--tec-color-background-primary: var(--naat-dark-gray);
	--tec-color-background-secondary: var(--naat-light-gray);
	--tec-color-border-default: var(--naat-border);
	--tec-color-link-primary: rgba(255, 255, 255, 0.92);
	--tec-color-link-accent: var(--naat-secondary-light);
	--tec-color-button-primary: var(--naat-primary);
	--tec-color-button-secondary: rgba(255, 255, 255, 0.92);
	--tec-color-icon-primary: rgba(255, 255, 255, 0.7);
	--tec-color-accent-primary: var(--naat-primary);
	--tec-color-day-marker-current-month: rgba(255, 255, 255, 0.92);
}

html[data-naat-dark="true"] .tribe-events .tribe-events-c-events-bar {
	background: var(--naat-light-gray);
	border-color: var(--naat-border);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

html[data-naat-dark="true"] .tribe-events .tribe-events-c-top-bar {
	border-bottom-color: var(--naat-border);
}

html[data-naat-dark="true"] .tribe-events .tribe-events-c-top-bar__nav-link {
	color: rgba(255, 255, 255, 0.7);
}

html[data-naat-dark="true"] .tribe-events .tribe-events-c-top-bar__nav-link:hover {
	color: var(--naat-secondary-light);
}

html[data-naat-dark="true"] .tribe-events .tribe-events-calendar-list__event-row {
	background: var(--naat-light-gray);
	border-color: var(--naat-border);
}

/* Event card cost (price badges) */
html[data-naat-dark="true"] .tribe-events .tribe-events-c-small-cta__price {
	color: var(--naat-secondary-light) !important;
}

html[data-naat-dark="true"] .tribe-events .tribe-events-calendar-list__event-title-link,
html[data-naat-dark="true"] .tribe-events .tribe-events-calendar-list__event-title {
	color: rgba(255, 255, 255, 0.92) !important;
}

html[data-naat-dark="true"] .tribe-events .tribe-events-calendar-list__event-title-link:hover {
	color: var(--naat-secondary-light) !important;
}

/* Date tag day/weekday text inside the purple gradient badge */
html[data-naat-dark="true"] .tribe-events .tribe-events-calendar-list__event-date-tag-weekday,
html[data-naat-dark="true"] .tribe-events .tribe-events-calendar-list__event-date-tag-daynum {
	color: var(--naat-white) !important;
}

html[data-naat-dark="true"] .tribe-events .tribe-events-calendar-list__event-datetime-wrapper,
html[data-naat-dark="true"] .tribe-events .tribe-events-calendar-list__event-datetime-wrapper * {
	color: #CE93D8 !important;
}

html[data-naat-dark="true"] .tribe-events .tribe-events-calendar-list__event-datetime-wrapper::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23FBC02D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}

html[data-naat-dark="true"] .tribe-events .tribe-events-calendar-list__event-venue::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23FBC02D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

html[data-naat-dark="true"] .tribe-events .tribe-events-calendar-list__event-venue-title {
	color: rgba(255, 255, 255, 0.85) !important;
}

html[data-naat-dark="true"] .tribe-events .tribe-events-calendar-list__event-venue-address {
	color: rgba(255, 255, 255, 0.6) !important;
}

html[data-naat-dark="true"] .tribe-events .tribe-events-calendar-list__event-description {
	color: rgba(255, 255, 255, 0.7) !important;
}

html[data-naat-dark="true"] .tribe-events .tribe-events-calendar-list__month-separator-text {
	color: var(--naat-secondary-light);
}

html[data-naat-dark="true"] .tribe-events .tribe-events-c-top-bar__datepicker-button {
	color: rgba(255, 255, 255, 0.92);
}

html[data-naat-dark="true"] .tribe-events .tribe-events-c-view-selector__button {
	color: rgba(255, 255, 255, 0.85);
}

html[data-naat-dark="true"] .tribe-events .tribe-events-c-search__input {
	background: var(--naat-light-gray);
	color: rgba(255, 255, 255, 0.92);
	border-color: var(--naat-border);
}

html[data-naat-dark="true"] .tribe-events .tribe-events-c-top-bar__today-button {
	color: #CE93D8;
	border-color: #CE93D8;
	background: transparent;
}

html[data-naat-dark="true"] .tribe-events .tribe-events-c-top-bar__today-button:hover {
	background-color: #CE93D8;
	color: var(--naat-dark-gray);
	border-color: #CE93D8;
}

html[data-naat-dark="true"] .tribe-events .tribe-events-c-nav__prev,
html[data-naat-dark="true"] .tribe-events .tribe-events-c-nav__next {
	color: rgba(255, 255, 255, 0.85);
}

html[data-naat-dark="true"] .tribe-events .tribe-events-c-subscribe-dropdown__button {
	color: var(--naat-secondary-light);
	border-color: var(--naat-secondary-light);
}

html[data-naat-dark="true"] .tribe-events .tribe-events-c-subscribe-dropdown__button:hover {
	background-color: var(--naat-secondary-light);
	color: var(--naat-dark-gray);
}

/* Single event — dark mode */
html[data-naat-dark="true"] .tribe-events-single-event-description {
	color: rgba(255, 255, 255, 0.85);
}

html[data-naat-dark="true"] .tribe-events-single-event-description h2,
html[data-naat-dark="true"] .tribe-events-single-event-description h3 {
	color: var(--naat-secondary-light);
}

html[data-naat-dark="true"] .tribe-events-back a {
	color: #CE93D8 !important;
}

html[data-naat-dark="true"] .tribe-events-back a:hover {
	color: var(--naat-secondary-light) !important;
}

html[data-naat-dark="true"] .tribe-events .tribe-events-schedule {
	color: rgba(255, 255, 255, 0.85);
}

html[data-naat-dark="true"] .tribe-events-cost {
	background: var(--naat-primary) !important;
	color: var(--naat-white) !important;
}

html[data-naat-dark="true"] .tribe-events-single-section,
html[data-naat-dark="true"] .tribe-events-single-section li,
html[data-naat-dark="true"] .tribe-events-single-section dd,
html[data-naat-dark="true"] .tribe-events-single-section dt {
	background: var(--naat-light-gray);
	border-color: var(--naat-border);
	color: rgba(255, 255, 255, 0.85) !important;
}

html[data-naat-dark="true"] .tribe-events-single-section-title {
	color: #CE93D8;
}

html[data-naat-dark="true"] .tribe-events-meta-group dt,
html[data-naat-dark="true"] .tribe-events-meta-group .tribe-events-event-meta__label {
	color: rgba(255, 255, 255, 0.6);
}

html[data-naat-dark="true"] .tribe-events-meta-group dd,
html[data-naat-dark="true"] .tribe-events-meta-group .tribe-events-event-meta__value,
html[data-naat-dark="true"] .tribe-events-meta-group li {
	color: rgba(255, 255, 255, 0.85);
}

html[data-naat-dark="true"] .tribe-events-meta-group a {
	color: #CE93D8;
}

html[data-naat-dark="true"] .tribe-events .tribe-events-address {
	color: rgba(255, 255, 255, 0.7);
}

html[data-naat-dark="true"] .tribe-events-sub-nav a,
html[data-naat-dark="true"] .tribe-events-sub-nav li,
html[data-naat-dark="true"] .tribe-events-nav-next,
html[data-naat-dark="true"] .tribe-events-nav-previous {
	color: rgba(255, 255, 255, 0.85) !important;
	border-color: var(--naat-border);
}

html[data-naat-dark="true"] .tribe-events-sub-nav a:hover {
	background-color: var(--naat-primary);
	color: var(--naat-white) !important;
}

html[data-naat-dark="true"] .tribe-block__events-link a,
html[data-naat-dark="true"] .tribe-events-cal-links a {
	color: #CE93D8;
}

/* Print: force default colors, hide toggle */
@media print {
	html[data-naat-dark="true"] {
		--naat-white: #FFFFFF;
		--naat-off-white: #FAFAFA;
		--naat-light-gray: #F5F5F5;
		--naat-text: #212121;
		--naat-text-light: #616161;
		--naat-border: #E0E0E0;
		color-scheme: light;
	}

	html[data-naat-dark="true"] img {
		filter: none;
	}

	.naat-theme-toggle {
		display: none !important;
	}
}
