/**
 * Base theme styles.
 *
 * Theme-wide primitives that apply to every page: typography, layout
 * container, buttons, header, footer, navigation, utilities.
 * Page/block-specific styles live in their own files.
 */

/* ── BASE ────────────────────────────────────────── */
body {
	font-family: var(--font-body);
	color: var(--color-green);
	background: var(--color-white);
	margin: 0 auto;
	overflow-x: hidden;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: 0.42px;
}

/* ── TYPE ────────────────────────────────────────── */
h1,
h2,
h3 {
	font-family: var(--font-display);
	font-size: 50px;
	font-weight: normal;
	line-height: 50px;
	text-transform: uppercase;
	letter-spacing: 2.88px;

	word-spacing: 5px;
}

h3 {
	font-size: 42px;
	line-height: 44.628px;
	/* 106.256% */
}

h4 {
	font-size: 16px;
	line-height: 14px;
	/* 87.5% */
	letter-spacing: 2.88px;
	text-transform: uppercase;
}

h5 {
	letter-spacing: 9%;
}

p {
	margin-bottom: 10px;
}

strong {
	font-weight: 800;
}

ul,
ol {
	padding-left: 15px;
	margin-bottom: 10px;
}

/* ── CONTAINER ───────────────────────────────────── */
.container {
	max-width: var(--page-max);
	margin: 0 auto;
	width: 100%;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	font-family: var(--font-body);
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	text-transform: uppercase;
	transition: background var(--transition-fast), color var(--transition-fast);
}

.btn-outline {
	gap: 24px;
	font-size: 14px;
	color: var(--color-green);
	border: 1px solid var(--color-green);
	padding: 8px 16px;
	background: transparent;
	letter-spacing: 1.26px;
}

/* Chevron (mask + currentColor so .btn-outline.dark and hover track text color). */
.btn-outline::after {
	content: '';
	display: inline-block;
	flex-shrink: 0;
	width: 6px;
	height: 11px;
	background-color: currentColor;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='11' viewBox='0 0 6 11' fill='none'%3E%3Cpath d='M0.353585 9.70107L5.02734 5.02731L0.353586 0.353554' stroke='currentColor'/%3E%3C/svg%3E");
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='11' viewBox='0 0 6 11' fill='none'%3E%3Cpath d='M0.353585 9.70107L5.02734 5.02731L0.353586 0.353554' stroke='currentColor'/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.btn-white {
	justify-content: center;
	font-size: 11px;
	color: var(--color-green);
	background: var(--color-white);
	padding: 12px 32px;
	letter-spacing: 1.98px;
}

.btn-outline:hover {
	background: var(--color-green);
	color: var(--color-white);
}

.btn-outline:hover::after {
	background-color: currentColor;
}

.btn-outline.dark {
	color: var(--color-white);
	background: var(--color-green);
	border-color: var(--color-green);
}

.btn-outline.dark:hover {
	background: rgba(50, 83, 77, 0.85);
	color: var(--color-white);
}

.btn-white:hover {
	background: rgba(0, 0, 0, 0.15);
	color: var(--color-white);
}

.btn-green {
	background: var(--color-green);
	color: var(--color-white);
	padding: 8px 12px;
	font-size: 11px;
	letter-spacing: 1.98px;
}

.btn-green:hover {
	background: rgba(50, 83, 77, 0.85);
	color: var(--color-white);
}

.btn-dark {
	background: var(--color-green);
	color: var(--color-white);
	padding: 8px 16px;
	font-size: 14px;
	letter-spacing: 1.26px;
	gap: 10px;
}

.btn-dark::after {
	content: '';
	display: inline-block;
	flex-shrink: 0;
	width: 6px;
	height: 11px;
	background-color: currentColor;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='11' viewBox='0 0 6 11' fill='none'%3E%3Cpath d='M0.353585 9.70107L5.02734 5.02731L0.353586 0.353554' stroke='currentColor'/%3E%3C/svg%3E");
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='11' viewBox='0 0 6 11' fill='none'%3E%3Cpath d='M0.353585 9.70107L5.02734 5.02731L0.353586 0.353554' stroke='currentColor'/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.btn-dark:hover {
	background: rgba(50, 83, 77, 0.85);
	color: var(--color-white);
}

/* Flex wrapper for side-by-side buttons (used by [btn_row] shortcode). */
.hb-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	margin-top: 8px;
}

/* ── HEADER ──────────────────────────────────────── */
header {
	height: 50px;
	padding: 0 var(--px);
	background: var(--color-white);
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	align-items: center;
}

header>.container {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
}

.header-logo {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
}

.header-logo img {
	height: 30px;
	width: auto;
}

.header-logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.header-logo .site-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.88px;
	text-transform: uppercase;
}

.header-logo .site-title a {
	color: var(--color-green);
	text-decoration: none;
}

/* ── NAVIGATION ──────────────────────────────────── */
nav {
	margin-left: auto;
	display: flex;
	gap: 32px;
	align-items: center;
}

/* WordPress outputs a ul.menu inside nav; mirror flat-link layout. */
nav .menu,
nav ul.menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

nav .menu>li,
nav ul.menu>li {
	margin: 0;
}

nav a {
	font-size: 13px;
	font-weight: 800;
	color: var(--color-green);
	text-decoration: none;
	letter-spacing: 0.88px;
	text-transform: uppercase;
}

.nav-toggle {
	display: none;
}

/* Sub-panel + mobile nav footer are mobile-only; hide on desktop. */
.nav-subpanel,
.nav-mobile-footer {
	display: none;
}

/* Desktop events dropdown: always hidden on mobile. */
.nav-dropdown--events {
	display: none;
}

/* ── DESKTOP EVENTS DROPDOWN ─────────────────────── */
@media (min-width: 641px) {

	/* Show on desktop, invisible until hover (enables CSS transition). */
	.nav-dropdown--events {
		display: block;
		position: absolute;
		top: 50px;
		/* = header height */
		right: 50px;
		width: 616px;
		max-width: 100vw;
		background: var(--color-white);
		z-index: 200;
		/* Fade + slide-up animation */
		opacity: 0;
		transform: translateY(-6px);
		pointer-events: none;
		visibility: hidden;
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
	}

	header.nav-events-open .nav-dropdown--events {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
		visibility: visible;
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
	}

	/* Keep Events underline visible while dropdown is open. */
	header.nav-events-open nav .menu li.events>a::after {
		transform: scaleX(1);
	}

	.nav-dropdown-inner {
		display: flex;
		flex-direction: column;
	}

	/* ── Section 1: Heading ── */
	.nav-dropdown-heading {
		height: 36px;
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 11px;
		font-weight: 800;
		letter-spacing: 1.98px;
		text-transform: uppercase;
		color: var(--color-green);
		border-bottom: 1px solid #F9F9F9;
	}

	/* ── Section 2: 4-column state grid ── */
	.nav-dropdown-states {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		height: 163px;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.nav-dropdown-states li {
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/* Vertical dividers between columns. */
	.nav-dropdown-states li+li {
		border-left: 1px solid #F9F9F9;
	}

	.nav-dropdown-states a {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 14px;
		padding: 0 8px;
		text-decoration: none;
		color: var(--color-green);
		transition: opacity var(--transition-fast);
	}

	.nav-dropdown-states a:hover {
		opacity: 0.65;
	}

	.nav-dropdown-state-icon {
		max-width: 64px;
		max-height: 64px;
		width: auto;
		height: auto;
		object-fit: contain;
		transition: transform var(--transition-fast);
	}

	.nav-dropdown-states a:hover .nav-dropdown-state-icon {
		transform: scale(1.08);
	}

	/* Match specificity of `header nav a:not(.btn)::after` to suppress the underline. */
	header nav .nav-dropdown-states a::after {
		display: none;
	}

	.nav-dropdown-state-icon--placeholder {
		width: 64px;
		height: 64px;
		display: block;
	}

	.nav-dropdown-state-label {
		font-size: 11px;
		font-weight: 800;
		letter-spacing: 1.98px;
		text-transform: uppercase;
		text-align: center;
		max-width: 115px;
		line-height: 1.4;
	}

	/* ── Section 3: CTA ── */
	.nav-dropdown-footer {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 12px;
		padding: 16px 0;
		border-top: 1px solid #F9F9F9;
	}

	.nav-dropdown-cta {
		font-size: 11px;
		letter-spacing: 1.98px;
		padding: 7px 14px;
		gap: 12px;
	}

	.nav-dropdown-past-events {
		font-size: 11px;
		font-weight: 800;
		letter-spacing: 1.98px;
		text-transform: uppercase;
		text-decoration: none;
		color: var(--color-green);
		transition: opacity var(--transition-fast);
	}

	.nav-dropdown-past-events:hover {
		opacity: 0.65;
	}
}

/* ── 404 ─────────────────────────────────────────── */
.error-404 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px var(--px) 100px;
	min-height: 60vh;
}

.error-404-number {
	font-family: var(--font-display);
	font-size: clamp(120px, 20vw, 240px);
	font-weight: normal;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--color-green);
	text-transform: uppercase;
}

.error-404-label {
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 15px;
	text-transform: uppercase;
	margin: 0;
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
	border-top: 1px solid #EEF2F3;
	padding: 40px var(--px);
}

.footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-logo {
	flex-shrink: 0;
}

.footer-logo img {
	height: 30px;
	width: auto;
}

/* ── SITEMAP SHORTCODE ───────────────────────────── */
.hb-sitemap {
	display: grid;
	grid-template-columns: repeat(var(--sitemap-cols, 3), 1fr);
	align-items: start;
	gap: 32px 48px;
}

.hb-sitemap__group {
	border-left: 2px solid var(--color-green);
	padding-left: 14px;
}

.hb-sitemap__heading {
	display: block;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 1.98px;
	text-transform: uppercase;
	color: var(--color-green);
	text-decoration: none !important;
	margin: 0 0 10px;
	transition: opacity var(--transition-fast);
}

.hb-sitemap__heading:hover {
	opacity: 0.65;
}

/* Level 1 — direct menu children (state names, sub-pages) */
.hb-sitemap__children {
	list-style: none !important;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.hb-sitemap__children>li>a {
	color: var(--color-green);
	font-weight: 400;
	font-size: 13px;
	text-decoration: none;
	transition: opacity var(--transition-fast);
}

.hb-sitemap__children>li>a:hover {
	opacity: 0.65;
}
.hb-sitemap__podcasts-label {
	margin: 0 0 6px;
    color: var(--color-green);
    font-weight: 400;
    font-size: 13px;
    margin-left: 1.25em !important;
    text-transform: uppercase;
    letter-spacing: 0.88px;
    padding-left: 7px;	
}
/* Podcasts — shown as a bulleted list instead of the default plain sitemap list */
.hb-sitemap__children.hb-sitemap__podcasts {
	list-style: disc !important;
	padding-left: 35px;
}
/* Level 2 — events under a state */
.hb-sitemap__events {
	list-style: none;
	margin: 5px 0 0;
	padding: 0 0 0 12px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hb-sitemap__events>li>a {
	color: var(--color-green);
	font-weight: 300;
	font-size: 12px;
	text-decoration: none;
	transition: opacity var(--transition-fast);
}

.hb-sitemap__events>li>a:hover {
	opacity: 0.65;
}

/* Level 3 — agenda links under an event */
.hb-sitemap__agenda {
	list-style: none;
	margin: 3px 0 0;
	padding: 0 0 0 12px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hb-sitemap__agenda a {
	color: var(--color-green);
	font-size: 11px;
	font-weight: 300;
	opacity: 0.55;
	text-decoration: none;
	transition: opacity var(--transition-fast);
}

.hb-sitemap__agenda a::before {
	content: '→ ';
}

.hb-sitemap__agenda a:hover {
	opacity: 1;
}

@media (max-width: 640px) {
	.hb-sitemap {
		grid-template-columns: 1fr;
	}
}

.footer-disclaimer {
	line-height: 1.6;
	margin-bottom: 20px;
}

.footer-disclaimer p {
	line-height: 1.6;
	margin: 0 0 0.5em;
}

.footer-disclaimer p:last-child {
	margin-bottom: 0;
}

.footer-bottom {
	display: flex;
	gap: 40px;
	justify-content: space-between;
	flex-direction: column;
}

.footer-bottom a {
	color: var(--color-green);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all .3s ease;
}

.footer-bottom a:hover {
	border-color: var(--color-green);
}

.footer-nav {
	display: flex;
	gap: 32px;
	list-style: none;
}

.footer-nav a {
	font-size: 11px;
	font-weight: 800;
	color: var(--color-green);
	text-decoration: none;
	letter-spacing: 0.88px;
	text-transform: uppercase;
}

/* ── NAV/FOOTER LINK HOVER ───────────────────────── */
header nav a,
.footer-nav a {
	position: relative;
}

header nav a:not(.btn)::after,
.footer-nav a:not(.btn)::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition-base);
}

header nav a:not(.btn):hover::after,
.footer-nav a:not(.btn):hover::after {
	transform: scaleX(1);
}

/* ── DROPDOWN SUBMENU (desktop) ──────────────────── */
nav .menu>li.menu-item-has-children {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
}

nav .menu>li.menu-item-has-children>.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: var(--color-white);
	margin: 0;
	padding: 0;
	list-style: none;
	z-index: 200;
	opacity: 0;
	transform: translateY(-6px);
	pointer-events: none;
	visibility: hidden;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

nav .menu>li.menu-item-has-children:hover>.sub-menu,
nav .menu>li.menu-item-has-children.focus>.sub-menu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	visibility: visible;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}

/* Events item is handled by the bespoke mobile sub-panel; never show the
   default WP dropdown for it on desktop or anywhere else. */
nav .menu>li.menu-item-has-children.events {
	padding: 0;
}

nav .menu>li.menu-item-has-children.events>.sub-menu>li:not(.show) {
	display: none !important;
}

nav .menu>li.menu-item-has-children>.sub-menu>li {
	margin: 0;
}

nav .menu>li.menu-item-has-children>.sub-menu>li+li {
	border-top: 1px solid #F9F9F9;
}

nav .menu>li.menu-item-has-children>.sub-menu a {
	display: block;
	padding: 14px 20px;
	letter-spacing: 1.98px;
	white-space: nowrap;
}

nav .menu>li.menu-item-has-children>.sub-menu a::after {
	display: none;
}

/* ── UTILITIES ───────────────────────────────────── */
.ellipse {
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--color-green);
	vertical-align: middle;
	margin: 0 5px;
}

/* ── REVEAL ANIMATION (utility) ──────────────────── */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media screen and (max-width: 768px) {

	h1 {
		font-size: 38px;
		line-height: 1.1;
	}

	h2 {
		font-size: 38px;
		line-height: 1.1;
	}

	h3 {
		font-size: 32px;
		line-height: 1.1;
	}

	h4 {
		font-size: 14px;
	}
}

/* ── MOBILE NAV (≤ 640px) ────────────────────────── */
@media (max-width: 640px) {

	/* Smooth header background change so it cross-fades with the overlay. */
	header {
		transition: background var(--transition-base);
	}

	/* Header turns green when the overlay is open so logo + close button sit on a unified background. */
	header.nav-open {
		background: var(--color-green);
	}

	.header-logo img,
	.header-logo .custom-logo {
		transition: filter var(--transition-base);
	}

	.header-logo .site-title a,
	.header-logo .site-title {
		transition: color var(--transition-base);
	}

	/* Single-color logos render to white on green via brightness/invert. */
	header.nav-open .header-logo img,
	header.nav-open .header-logo .custom-logo {
		filter: brightness(0) invert(1);
	}

	header.nav-open .header-logo .site-title a,
	header.nav-open .header-logo .site-title {
		color: var(--color-white);
	}

	/* ── Overlay container (slide in from left) ─────── */
	header nav {
		display: grid;
		grid-template-rows: 1fr auto;
		position: fixed;
		inset: 50px 0 0;
		background: var(--color-green);
		padding: 0 var(--px) 32px;
		gap: 0;
		z-index: 1;
		overflow-x: hidden;
		overflow-y: auto;
		transform: translate3d(-100%, 0, 0);
		pointer-events: none;
		transition: transform 0.35s ease;
		will-change: transform;
	}

	header.nav-open nav {
		transform: translate3d(0, 0, 0);
		pointer-events: auto;
	}

	/* ── Main panel (top-level menu) ────────────────── */
	.nav-panel--main {
		grid-column: 1;
		grid-row: 1;
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 100%;
	}

	header nav .menu,
	header nav ul.menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		list-style: none;
	}

	header nav .menu>li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	}

	header nav .menu>li:first-child {
		border-top: 1px solid rgba(255, 255, 255, 0.25);
	}

	/* Top-level nav items — large display type */
	header nav .menu>li>a {
		display: block;
		padding: 16px 0;
		font-family: var(--font-display);
		font-size: 62px;
		font-weight: 275;
		color: var(--color-white);
		letter-spacing: -2.48px;
		line-height: 1.1;
		text-transform: uppercase;
	}

	/* Suppress desktop hover underline inside mobile overlay (but keep
	   button pseudo-elements like `.btn-outline::after` chevrons). */
	header nav a:not(.btn)::after {
		display: none;
	}

	/* Native WP sub-menus are hidden on mobile — the bespoke .nav-subpanel
	   handles the Events drill-down per design. */
	header nav .menu .sub-menu {
		display: none;
	}

	/* ── Events sub-panel (slide-in drill-down) ─────── */
	.nav-subpanel--events {
		grid-column: 1;
		grid-row: 1;
		display: flex;
		flex-direction: column;
		width: 100%;
		padding-top: 21px;
		background: var(--color-green);
		transform: translate3d(120%, 0, 0);
		pointer-events: none;
		transition: transform 0.35s ease;
		will-change: transform;
	}

	header.nav-subpanel-open .nav-subpanel--events {
		transform: translate3d(0, 0, 0);
		pointer-events: auto;
	}

	.nav-subpanel-back {
		align-self: flex-start;
		display: inline-flex;
		align-items: center;
		gap: 6px;
		padding: 6px 14px;
		margin-bottom: 24px;
		background: rgba(255, 255, 255, 0.1);
		border: none;
		color: var(--color-white);
		font-family: var(--font-body);
		font-weight: 800;
		letter-spacing: 1.98px;
		text-transform: uppercase;
		cursor: pointer;
		border-radius: 5px;
	}

	.nav-subpanel-back svg {
		display: block;
	}

	.nav-subpanel-title {
		margin: 0 0 24px;
		font-family: var(--font-display);
		font-size: 62px;
		font-weight: 275;
		color: var(--color-white);
		letter-spacing: -2.48px;
		line-height: 1.1;
		text-transform: uppercase;
	}

	.nav-subpanel-list {
		margin: 0 0 32px;
		padding: 0;
		list-style: none;
		width: 100%;
	}

	.nav-subpanel-list li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	}

	.nav-subpanel-list li:first-child {
		border-top: 1px solid rgba(255, 255, 255, 0.25);
	}

	.nav-subpanel-list a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 18px 0;
		font-family: var(--font-body);
		font-size: 11px;
		font-weight: 800;
		color: var(--color-white);
		text-transform: uppercase;
		letter-spacing: 1.98px;
		line-height: 1;
		text-decoration: none;
	}

	.nav-subpanel-list a .nav-sub-arrow {
		flex-shrink: 0;
	}

	.nav-subpanel-cta {
		justify-content: space-between;
		gap: 16px;
		width: 100%;
		padding: 16px 20px;
		border-color: var(--color-white);
		color: var(--color-white);
	}

	.nav-subpanel-cta:hover {
		background: rgba(255, 255, 255, 0.12);
		color: var(--color-white);
	}

	.nav-subpanel-cta + .nav-subpanel-cta {
		margin-top: 12px;
	}

	/* ── Mobile footer (socials + terms) ────────────── */
	.nav-mobile-footer {
		grid-column: 1;
		grid-row: 2;
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 24px;
		width: 100%;
		padding-top: 32px;
		color: var(--color-white);
	}

	.nav-socials {
		display: flex;
		gap: 12px;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.nav-socials li {
		margin: 0;
	}

	.nav-socials a {
		display: inline-flex;
		color: var(--color-white);
	}

	.nav-socials a::after {
		display: none;
	}

	.nav-terms {
		font-size: 16px;
		font-weight: 300;
		color: var(--color-white);
		text-decoration: none;
		letter-spacing: 0.48px;
		text-transform: none;
	}

	.nav-terms:hover {
		text-decoration: underline;
	}

	/* ── Toggle button (hamburger ↔ close) ──────────── */
	.nav-toggle {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		margin-left: auto;
		background: none;
		border: none;
		cursor: pointer;
		position: relative;
		z-index: 2;
	}

	.nav-toggle-icon {
		display: inline-flex;
		flex-direction: column;
		gap: 4px;
	}

	.nav-toggle-icon span {
		display: block;
		width: 20px;
		height: 2px;
		background: var(--color-green);
		transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
	}

	.nav-toggle-text {
		font-family: var(--font-body);
		font-size: 21px;
		font-weight: 800;
		color: var(--color-green);
		letter-spacing: 1.68px;
		text-transform: uppercase;
		transition: color var(--transition-base);
	}

	.nav-toggle-text--menu {
		display: inline-block;
	}

	.nav-toggle-text--close {
		display: none;
	}

	header.nav-open .nav-toggle-text--menu {
		display: none;
	}

	header.nav-open .nav-toggle-text--close {
		display: inline-block;
		color: var(--color-white);
	}

	/* Animate hamburger → X when nav is open */
	header.nav-open .nav-toggle-icon span {
		background: var(--color-white);
	}

	header.nav-open .nav-toggle-icon span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	header.nav-open .nav-toggle-icon span:nth-child(2) {
		opacity: 0;
	}

	header.nav-open .nav-toggle-icon span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}


	.footer-top {
		flex-direction: column;
		gap: 24px;
		align-items: center;
		text-align: center;
	}

	.footer-bottom {
		align-items: center;
		text-align: center;
	}

	.footer-disclaimer {
		margin-bottom: 16px;
	}

	.footer-nav {
		gap: 13px;
	}
}