:root {
	--nha-forest-950: #062d27;
	--nha-forest-900: #093c32;
	--nha-forest-800: #155244;
	--nha-forest-700: #256a55;
	--nha-mountain-50: #f8faf8;
	--nha-mountain-100: #eef3ef;
	--nha-mountain-200: #dce6df;
	--nha-ink-950: #14201e;
	--nha-ink-800: #30403d;
	--nha-ink-650: #586762;
	--nha-blue-800: #1f4e78;
	--nha-blue-700: #2e628f;
	--nha-rhododendron: #cf3047;
	--nha-saffron: #e0a52b;
	--nha-white: #ffffff;
	--nha-border: rgba(20, 32, 30, 0.16);
	--nha-shadow: 0 28px 80px rgba(6, 45, 39, 0.16);
	--nha-shadow-soft: 0 16px 44px rgba(6, 45, 39, 0.1);
	--nha-radius-sm: 0.45rem;
	--nha-radius-md: 0.8rem;
	--nha-radius-lg: 1.25rem;
	--nha-container: 87.5rem;
	--nha-serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
	--nha-sans: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--nha-white);
	color: var(--nha-ink-950);
	font-family: var(--nha-sans);
	font-size: 1rem;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

body.nha-nav-open {
	overflow: hidden;
}

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

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

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--nha-saffron);
	outline-offset: 4px;
}

h1,
h2,
h3,
h4,
p {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	font-family: var(--nha-serif);
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.08;
}

.nha-container {
	width: min(calc(100% - 3rem), var(--nha-container));
	margin-inline: auto;
}

.nha-skip-link {
	position: fixed;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 1000;
	padding: 0.75rem 1rem;
	background: var(--nha-white);
	color: var(--nha-forest-950);
	font-weight: 700;
	transform: translateY(-180%);
}

.nha-skip-link:focus {
	transform: translateY(0);
}

.nha-visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	border: 0 !important;
	white-space: nowrap !important;
}

.nha-eyebrow {
	margin-bottom: 0.8rem;
	color: var(--nha-rhododendron);
	font-family: var(--nha-sans);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.3;
	text-transform: uppercase;
}

.nha-eyebrow--light {
	color: #ffd7a3;
}

.nha-display-heading {
	max-width: 16ch;
	margin-bottom: 0;
	font-size: clamp(2.3rem, 4vw, 4.7rem);
}

.nha-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.25rem;
	padding: 0.85rem 1.45rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nha-button:hover {
	transform: translateY(-2px);
}

.nha-button--primary {
	background: var(--nha-rhododendron);
	color: var(--nha-white);
}

.nha-button--primary:hover {
	background: #b9233a;
}

.nha-button--dark {
	background: var(--nha-ink-950);
	color: var(--nha-white);
}

.nha-button--light {
	background: var(--nha-white);
	color: var(--nha-forest-950);
}

.nha-button--outline {
	border-color: var(--nha-forest-900);
	background: transparent;
	color: var(--nha-forest-900);
}

.nha-button--outline:hover {
	background: var(--nha-forest-900);
	color: var(--nha-white);
}

.nha-button--glass {
	border-color: rgba(255, 255, 255, 0.58);
	background: rgba(8, 35, 30, 0.28);
	color: var(--nha-white);
	backdrop-filter: blur(12px);
}

.nha-button--glass:hover {
	background: rgba(255, 255, 255, 0.15);
}

.nha-button--full {
	width: 100%;
}

.nha-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.nha-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	border-bottom: 1px solid currentColor;
	color: var(--nha-forest-900);
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1.8;
	text-transform: uppercase;
}

.nha-text-link::after {
	content: "↗";
	font-size: 1rem;
	transition: transform 180ms ease;
}

.nha-text-link:hover::after {
	transform: translate(2px, -2px);
}

/* Header */
.nha-topbar {
	position: relative;
	z-index: 102;
	background: var(--nha-forest-950);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.76rem;
	letter-spacing: 0.06em;
}

.nha-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 2.35rem;
}

.nha-topbar p {
	margin: 0;
	font-weight: 700;
	text-transform: uppercase;
}

.nha-topbar__links {
	display: flex;
	gap: 1.5rem;
}

.nha-topbar a:hover {
	color: var(--nha-white);
}

.nha-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(20, 32, 30, 0.1);
	background: var(--nha-white);
}

/* A backdrop/filter here would trap the fixed mobile menu inside the header. */
.admin-bar .nha-header { top: var(--wp-admin--admin-bar--height, 32px); }
.nha-header__actions { display: flex; align-items: center; gap: 1.4rem; margin-left: 1.4rem; flex-shrink: 0; }
.nha-navigation__cta { display: none; }

.nha-header__inner {
	display: flex;
	align-items: center;
	min-height: 6rem;
}

.nha-brand {
	display: block;
	width: clamp(13.5rem, 17vw, 18.5rem);
	flex: 0 0 auto;
}

.nha-brand .custom-logo-link {
	display: block;
}

.nha-brand img,
.nha-brand .custom-logo {
	width: 100%;
	height: auto;
}

.nha-navigation {
	display: flex;
	align-items: center;
	gap: 1.4rem;
	margin-left: auto;
}

.nha-navigation__list {
	display: flex;
	align-items: stretch;
	gap: clamp(0.6rem, 1vw, 1.25rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.nha-navigation__item {
	display: flex;
	align-items: stretch;
}

.nha-navigation__item--dropdown {
	position: relative;
}

.nha-nav-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.9rem 0;
	border: 0;
	background: transparent;
	color: var(--nha-ink-800);
	cursor: pointer;
	font-size: clamp(0.76rem, 0.9vw, 0.9rem);
	font-weight: 750;
	white-space: nowrap;
}

.nha-nav-link::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--nha-rhododendron);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

a.nha-nav-link,
button.nha-nav-link {
	position: relative;
}

.nha-nav-link:hover,
.nha-nav-link[aria-expanded="true"] {
	color: var(--nha-forest-900);
}

.nha-nav-link:hover::after,
.nha-nav-link[aria-expanded="true"]::after {
	transform: scaleX(1);
}

.nha-mega-trigger svg {
	width: 0.68rem;
	height: 0.45rem;
	transition: transform 180ms ease;
}

.nha-dropdown-trigger svg {
	width: 0.68rem;
	height: 0.45rem;
	transition: transform 180ms ease;
}

.nha-dropdown-trigger[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.nha-submenu {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 5;
	display: grid;
	width: min(24rem, calc(100vw - 2rem));
	padding: 1.25rem;
	border: 1px solid var(--nha-border);
	background: var(--nha-white);
	box-shadow: var(--nha-shadow-soft);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -0.65rem);
	transition: opacity 180ms ease, transform 180ms ease;
	visibility: hidden;
}

.nha-submenu.is-open {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
	visibility: visible;
}

.nha-submenu .nha-eyebrow {
	margin-bottom: 0.6rem;
}

.nha-submenu a {
	display: grid;
	gap: 0.1rem;
	padding: 0.68rem 0;
	border-bottom: 1px solid var(--nha-border);
}

.nha-submenu a:last-child {
	border-bottom: 0;
}

.nha-submenu a:hover strong {
	color: var(--nha-rhododendron);
}

.nha-submenu strong {
	color: var(--nha-forest-950);
	font-size: 0.9rem;
}

.nha-submenu small {
	color: var(--nha-ink-650);
	font-size: 0.73rem;
}

.nha-mega-trigger[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.nha-header__cta {
	min-height: 2.85rem;
	padding-inline: 1.1rem;
	font-size: 0.75rem;
}

.nha-search-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	flex-shrink: 0;
	padding: 0;
	border: 1px solid var(--nha-border);
	border-radius: 50%;
	background: transparent;
	color: var(--nha-forest-950);
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease;
}

.nha-search-toggle:hover,
.nha-search-toggle[aria-expanded="true"] {
	background: var(--nha-forest-950);
	color: var(--nha-white);
}

.nha-search-toggle svg {
	width: 1.25rem;
	height: 1.25rem;
}

.nha-search-panel {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	border-top: 1px solid var(--nha-border);
	background: var(--nha-white);
	box-shadow: var(--nha-shadow-soft);
	max-height: calc(var(--nha-viewport-bottom, 100dvh) - var(--nha-header-bottom, 6rem));
	overflow-y: auto;
	overscroll-behavior: contain;
}

.nha-search-panel[hidden] {
	display: none;
}

.nha-search-panel__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 1rem;
	padding-block: 1.5rem;
}

.nha-search-form,
.nha-search-page-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.75rem;
}

.nha-search-form input,
.nha-search-page-form input {
	width: 100%;
	min-height: 3.25rem;
	padding: 0.75rem 1rem;
	border: 1px solid var(--nha-border);
	border-radius: var(--nha-radius-sm);
	background: var(--nha-mountain-50);
	color: var(--nha-ink-950);
}

.nha-search-form input:focus,
.nha-search-page-form input:focus {
	border-color: var(--nha-forest-700);
	outline: 3px solid rgba(224, 165, 43, 0.38);
}

.nha-search-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.65rem;
	height: 2.65rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--nha-forest-950);
	cursor: pointer;
	font-size: 2rem;
	line-height: 1;
}

.nha-menu-toggle {
	display: none;
	align-items: center;
	gap: 0.65rem;
	margin-left: 0;
	min-width: 2.75rem;
	min-height: 2.75rem;
	justify-content: center;
	padding: 0.5rem;
	border: 0;
	background: transparent;
	color: var(--nha-forest-950);
	cursor: pointer;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nha-menu-toggle__icon {
	position: relative;
	display: block;
	width: 1.55rem;
	height: 1rem;
}

.nha-menu-toggle__icon span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	transition: transform 180ms ease, top 180ms ease;
}

.nha-menu-toggle__icon span:first-child { top: 0.15rem; }
.nha-menu-toggle__icon span:last-child { top: 0.75rem; }
.nha-menu-toggle[aria-expanded="true"] .nha-menu-toggle__icon span:first-child { top: 0.45rem; transform: rotate(45deg); }
.nha-menu-toggle[aria-expanded="true"] .nha-menu-toggle__icon span:last-child { top: 0.45rem; transform: rotate(-45deg); }

.nha-mega {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	border-top: 1px solid var(--nha-border);
	background: var(--nha-white);
	box-shadow: var(--nha-shadow);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-0.75rem);
	transition: opacity 180ms ease, transform 180ms ease;
	visibility: hidden;
	max-height: calc(var(--nha-viewport-bottom, 100dvh) - var(--nha-header-bottom, 6rem));
	overflow-y: auto;
	overscroll-behavior: contain;
}

.nha-mega.is-open {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.nha-mega__layout {
	display: grid;
	grid-template-columns: minmax(10rem, 0.75fr) minmax(0, 2.6fr) minmax(14rem, 1fr);
	gap: 2rem;
	padding-block: 2rem;
}

.nha-mega__tabs {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.15rem;
	padding: 0.3rem 1.25rem 0.3rem 0;
	border-right: 1px solid var(--nha-border);
}

.nha-mega__tabs button {
	padding: 0.72rem 0.85rem;
	border: 0;
	border-left: 3px solid transparent;
	background: transparent;
	color: var(--nha-ink-650);
	cursor: pointer;
	font-size: 0.82rem;
	font-weight: 700;
	text-align: left;
	transition: background-color 150ms ease, color 150ms ease;
}

.nha-mega__tabs button:hover,
.nha-mega__tabs button.is-active {
	border-left-color: var(--nha-rhododendron);
	background: var(--nha-mountain-100);
	color: var(--nha-forest-950);
}

.nha-mega__content {
	min-width: 0;
	min-height: 21rem;
	padding-top: 0.1rem;
}

.nha-mega__panel[hidden] {
	display: none;
}

.nha-mega__panel-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.75fr);
	gap: 0 2rem;
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--nha-border);
}

.nha-mega__panel-heading .nha-eyebrow {
	grid-column: 1 / -1;
	margin-bottom: 0.4rem;
}

.nha-mega__panel-heading h2 {
	margin: 0;
	font-size: clamp(1.7rem, 2.4vw, 2.7rem);
}

.nha-mega__panel-heading > p:not(.nha-eyebrow) {
	align-self: end;
	margin: 0;
	color: var(--nha-ink-650);
	font-size: 0.8rem;
}

.nha-mega-link-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 1.5rem;
}

.nha-mega-link-grid a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 1rem;
	min-height: 4.2rem;
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--nha-border);
}

.nha-mega-link-grid a:hover strong,
.nha-mega-link-grid a:hover b {
	color: var(--nha-rhododendron);
}

.nha-mega-link-grid a > span {
	display: grid;
	gap: 0.12rem;
}

.nha-mega-link-grid strong {
	color: var(--nha-forest-950);
	font-size: 0.86rem;
}

.nha-mega-link-grid small {
	color: var(--nha-ink-650);
	font-size: 0.7rem;
	line-height: 1.4;
}

.nha-mega-link-grid b {
	font-size: 0.85rem;
	font-weight: 500;
	transition: color 180ms ease, transform 180ms ease;
}

.nha-mega-link-grid a:hover b {
	transform: translate(2px, -2px);
}

.nha-mega__columns {
	display: grid;
	gap: 2rem;
}

.nha-mega__columns--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nha-mega__columns--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nha-mega__columns--one { grid-template-columns: minmax(0, 1fr); max-width: 28rem; }

.nha-mega__columns section {
	display: flex;
	flex-direction: column;
}

.nha-mega__columns h2 {
	margin-bottom: 0.9rem;
	font-family: var(--nha-sans);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nha-mega__columns a {
	padding: 0.67rem 0;
	border-bottom: 1px solid var(--nha-border);
	color: var(--nha-ink-800);
	font-size: 0.88rem;
}

.nha-mega__columns a:hover {
	color: var(--nha-rhododendron);
}

.nha-mega__future {
	max-width: 32rem;
	padding: 2rem 0 0.5rem;
}

.nha-mega__future h2 {
	margin-bottom: 0.8rem;
	font-size: 2.3rem;
}

.nha-mega__future p:not(.nha-eyebrow) {
	color: var(--nha-ink-650);
}

.nha-mega__feature {
	overflow: hidden;
	align-self: start;
	border-radius: var(--nha-radius-md);
	background: var(--nha-mountain-100);
}

.nha-mega__feature > img {
	width: 100%;
	aspect-ratio: 1.55 / 1;
	object-fit: cover;
}

.nha-mega__feature-body {
	padding: 1.3rem;
}

.nha-mega__feature h2 {
	margin-bottom: 0.55rem;
	font-size: 1.45rem;
}

.nha-mega__feature p:not(.nha-eyebrow) {
	margin-bottom: 1.2rem;
	color: var(--nha-ink-650);
	font-size: 0.86rem;
}

/* Hero */
.nha-hero {
	position: relative;
	display: flex;
	align-items: end;
	min-height: min(48rem, calc(100vh - 8.35rem));
	background-color: var(--nha-forest-950);
	background-image: var(--nha-hero-image);
	background-position: center;
	background-size: cover;
	color: var(--nha-white);
}

.nha-hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(3, 25, 22, 0.88) 0%, rgba(5, 38, 32, 0.56) 42%, rgba(6, 22, 20, 0.05) 72%), linear-gradient(0deg, rgba(5, 24, 21, 0.62), transparent 45%);
}

.nha-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(19rem, 0.62fr);
	align-items: end;
	gap: clamp(2rem, 6vw, 7rem);
	padding-block: clamp(5rem, 9vw, 8rem) 4rem;
}

.nha-hero__content {
	max-width: 55rem;
}

.nha-hero h1 {
	max-width: 14ch;
	margin-bottom: 1.4rem;
	font-size: clamp(3rem, 6.2vw, 6.8rem);
	font-weight: 500;
	letter-spacing: -0.045em;
}

.nha-hero__lead {
	max-width: 43rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.89);
	font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.nha-hero__planner {
	padding: 1.65rem;
	border-top: 4px solid var(--nha-saffron);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: var(--nha-shadow-soft);
	color: var(--nha-ink-950);
	backdrop-filter: blur(12px);
}

.nha-hero__planner h2 {
	margin-bottom: 1.25rem;
	font-size: clamp(1.6rem, 2.3vw, 2.15rem);
}

.nha-hero__planner ul {
	display: grid;
	gap: 0.75rem;
	margin: 0 0 1.3rem;
	padding: 0;
	list-style: none;
}

.nha-hero__planner li {
	display: grid;
	grid-template-columns: 2rem 1fr;
	align-items: start;
	gap: 0.6rem;
	color: var(--nha-ink-650);
	font-size: 0.86rem;
}

.nha-hero__planner li span {
	color: var(--nha-rhododendron);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.nha-trust-strip {
	border-bottom: 1px solid var(--nha-border);
	background: var(--nha-white);
}

.nha-trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nha-trust-strip__grid > div {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	min-height: 7.25rem;
	padding: 1rem clamp(0.75rem, 2vw, 1.75rem);
	border-right: 1px solid var(--nha-border);
}

.nha-trust-strip__grid > div:first-child { padding-left: 0; }
.nha-trust-strip__grid > div:last-child { border-right: 0; }

.nha-trust-strip__number {
	color: var(--nha-rhododendron);
	font-family: var(--nha-serif);
	font-size: 1.7rem;
}

.nha-trust-strip p {
	display: flex;
	flex-direction: column;
	margin: 0;
	line-height: 1.35;
}

.nha-trust-strip strong {
	font-size: 0.9rem;
}

.nha-trust-strip small {
	margin-top: 0.2rem;
	color: var(--nha-ink-650);
	font-size: 0.72rem;
}

/* Sections */
.nha-section {
	padding-block: clamp(5rem, 9vw, 9rem);
}

.nha-section--mist {
	background: var(--nha-mountain-100);
}

.nha-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.65fr);
	align-items: end;
	gap: clamp(2rem, 8vw, 9rem);
}

.nha-intro__copy {
	padding-bottom: 0.6rem;
}

.nha-intro__copy p {
	margin-bottom: 1.6rem;
	color: var(--nha-ink-650);
	font-size: 1.08rem;
}

.nha-section-heading {
	margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.nha-section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.55fr);
	align-items: end;
	gap: clamp(2rem, 8vw, 8rem);
}

.nha-section-heading h2 {
	max-width: 15ch;
	margin-bottom: 0;
	font-size: clamp(2.4rem, 4.5vw, 5rem);
}

.nha-section-heading--compact h2 {
	max-width: 20ch;
}

.nha-section-heading--split > div:last-child p {
	margin-bottom: 1.2rem;
	color: var(--nha-ink-650);
}

/* Trip cards */
.nha-trip-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.75rem);
}

.nha-trip-card {
	overflow: hidden;
	background: var(--nha-white);
	box-shadow: 0 0 0 1px rgba(20, 32, 30, 0.08);
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.nha-trip-card:hover {
	box-shadow: var(--nha-shadow-soft);
	transform: translateY(-5px);
}

.nha-trip-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 1.35 / 1;
}

.nha-trip-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.nha-trip-card:hover .nha-trip-card__image img {
	transform: scale(1.035);
}

.nha-trip-card__body {
	padding: clamp(1.25rem, 2.5vw, 1.8rem);
}

.nha-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 1rem;
	margin-bottom: 0.85rem;
	color: var(--nha-rhododendron);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.nha-card-meta span + span::before {
	margin-right: 1rem;
	color: var(--nha-border);
	content: "·";
}

.nha-trip-card h3 {
	margin-bottom: 0.75rem;
	font-size: clamp(1.55rem, 2.3vw, 2.2rem);
}

.nha-trip-card h3 a:hover {
	color: var(--nha-forest-700);
}

.nha-trip-card__body > p {
	min-height: 5.2em;
	margin-bottom: 1.35rem;
	color: var(--nha-ink-650);
	font-size: 0.9rem;
}

.nha-trip-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	border-top: 1px solid var(--nha-border);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.nha-trip-card__footer a {
	display: grid;
	width: 2.4rem;
	height: 2.4rem;
	place-items: center;
	border-radius: 50%;
	background: var(--nha-forest-950);
	color: var(--nha-white);
	font-size: 1rem;
}

/* Destinations */
.nha-destination-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(18rem, 0.7fr);
	gap: clamp(1.3rem, 3vw, 2.5rem);
}

.nha-destination-feature {
	position: relative;
	overflow: hidden;
	min-height: 38rem;
	background: var(--nha-forest-950);
}

.nha-destination-feature > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms ease;
}

.nha-destination-feature:hover > img {
	transform: scale(1.025);
}

.nha-destination-feature__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(4, 31, 26, 0.88), transparent 65%);
}

.nha-destination-feature__content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	padding: clamp(1.5rem, 4vw, 3rem);
	color: var(--nha-white);
}

.nha-destination-feature__content small {
	margin-bottom: 0.2rem;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.nha-destination-feature__content strong {
	font-family: var(--nha-serif);
	font-size: clamp(3.2rem, 6vw, 6rem);
	font-weight: 500;
	line-height: 1;
}

.nha-destination-feature__content span {
	margin-top: 0.7rem;
	color: rgba(255, 255, 255, 0.82);
}

.nha-destination-list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--nha-border);
}

.nha-destination-list a {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.4rem 0.5rem 1.4rem 0;
	border-bottom: 1px solid var(--nha-border);
	transition: padding 180ms ease;
}

.nha-destination-list a:hover {
	padding-left: 0.7rem;
}

.nha-destination-list span {
	display: flex;
	flex-direction: column;
}

.nha-destination-list small {
	color: var(--nha-rhododendron);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.nha-destination-list strong {
	margin-top: 0.2rem;
	font-family: var(--nha-serif);
	font-size: clamp(1.8rem, 3vw, 2.65rem);
	font-weight: 600;
}

.nha-destination-list b {
	display: grid;
	width: 2.4rem;
	height: 2.4rem;
	place-items: center;
	border: 1px solid var(--nha-border);
	border-radius: 50%;
	font-weight: 500;
}

/* Services */
.nha-services {
	background: var(--nha-mountain-100);
}

.nha-services__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
	align-items: center;
	gap: clamp(3rem, 8vw, 8rem);
}

.nha-services__image {
	position: relative;
}

.nha-services__image > img {
	width: 100%;
	min-height: 38rem;
	object-fit: cover;
}

.nha-services__badge {
	position: absolute;
	right: -2rem;
	bottom: 2rem;
	display: flex;
	flex-direction: column;
	max-width: 16rem;
	padding: 1.25rem 1.45rem;
	background: var(--nha-saffron);
	color: var(--nha-forest-950);
}

.nha-services__badge strong {
	font-family: var(--nha-serif);
	font-size: 1.35rem;
}

.nha-services__badge span {
	font-size: 0.75rem;
}

.nha-services__content h2 {
	max-width: 13ch;
	margin-bottom: 1.2rem;
	font-size: clamp(2.5rem, 4.4vw, 4.8rem);
}

.nha-services__content > p:not(.nha-eyebrow) {
	margin-bottom: 1.7rem;
	color: var(--nha-ink-650);
}

.nha-service-links {
	margin-bottom: 1.6rem;
	border-top: 1px solid var(--nha-border);
}

.nha-service-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--nha-border);
}

.nha-service-links a > span {
	display: grid;
	grid-template-columns: 2rem minmax(0, 1fr);
	column-gap: 0.65rem;
	width: 100%;
}

.nha-service-links b {
	grid-row: 1 / 3;
	color: var(--nha-rhododendron);
	font-size: 0.7rem;
	letter-spacing: 0.08em;
}

.nha-service-links strong {
	font-size: 0.94rem;
}

.nha-service-links small {
	color: var(--nha-ink-650);
	font-size: 0.76rem;
}

.nha-service-links i {
	font-style: normal;
	transition: transform 180ms ease;
}

.nha-service-links a:hover i {
	transform: translate(3px, -3px);
}

/* Educational travel */
.nha-education {
	position: relative;
	overflow: hidden;
	background: var(--nha-forest-950) url("../images/nha-topographic-pattern.svg") center / cover;
	color: var(--nha-white);
}

.nha-education__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
	align-items: center;
	gap: clamp(3rem, 9vw, 9rem);
}

.nha-education__content h2 {
	max-width: 14ch;
	margin-bottom: 1.25rem;
	font-size: clamp(2.5rem, 4.6vw, 5.2rem);
}

.nha-education__content > p:not(.nha-eyebrow) {
	max-width: 43rem;
	color: rgba(255, 255, 255, 0.78);
}

.nha-check-list {
	display: grid;
	gap: 0.5rem;
	margin: 1.5rem 0 2rem;
	padding: 0;
	list-style: none;
}

.nha-check-list li {
	position: relative;
	padding-left: 1.75rem;
	font-size: 0.9rem;
}

.nha-check-list li::before {
	position: absolute;
	top: 0.15rem;
	left: 0;
	color: var(--nha-saffron);
	content: "✦";
}

.nha-education__image {
	position: relative;
	padding: 0 0 2.2rem 2.2rem;
}

.nha-education__image::before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 62%;
	height: 66%;
	border: 1px solid rgba(255, 255, 255, 0.28);
	content: "";
}

.nha-education__image img {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 34rem;
	object-fit: cover;
}

.nha-education__image p {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
	max-width: 23rem;
	margin: 0;
	padding: 1rem 1.25rem;
	background: var(--nha-white);
	color: var(--nha-forest-950);
	font-size: 0.76rem;
	font-weight: 700;
}

/* Guides and journal */
.nha-journal__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
	gap: clamp(1.5rem, 4vw, 4rem);
}

.nha-journal__feature {
	position: relative;
	display: block;
	overflow: hidden;
	min-height: 36rem;
	background: var(--nha-forest-950);
}

.nha-journal__feature::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(4, 31, 26, 0.9), transparent 68%);
	content: "";
}

.nha-journal__feature img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms ease;
}

.nha-journal__feature:hover img {
	transform: scale(1.03);
}

.nha-journal__feature > span {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	padding: clamp(1.5rem, 4vw, 3rem);
	color: var(--nha-white);
}

.nha-journal__feature small {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.nha-journal__feature strong {
	max-width: 18ch;
	margin-top: 0.5rem;
	font-family: var(--nha-serif);
	font-size: clamp(2rem, 4vw, 3.8rem);
	font-weight: 600;
	line-height: 1.08;
}

.nha-journal__feature em {
	margin-top: 1rem;
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nha-journal__list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--nha-border);
}

.nha-journal__list a {
	display: grid;
	grid-template-columns: 1fr auto;
	align-content: center;
	flex: 1;
	padding: 1.2rem 0;
	border-bottom: 1px solid var(--nha-border);
}

.nha-journal__list small,
.nha-journal__list strong {
	grid-column: 1;
}

.nha-journal__list small {
	color: var(--nha-rhododendron);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.nha-journal__list strong {
	margin-top: 0.2rem;
	font-family: var(--nha-serif);
	font-size: clamp(1.4rem, 2.4vw, 2.05rem);
	line-height: 1.12;
}

.nha-journal__list span {
	grid-column: 2;
	grid-row: 1 / 3;
	align-self: center;
	transition: transform 180ms ease;
}

.nha-journal__list a:hover span {
	transform: translate(3px, -3px);
}

/* Closing CTA */
.nha-plan-cta {
	background: var(--nha-blue-800);
	color: var(--nha-white);
}

.nha-plan-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
	padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.nha-plan-cta h2 {
	max-width: 18ch;
	margin-bottom: 0.75rem;
	font-size: clamp(2.2rem, 4vw, 4rem);
}

.nha-plan-cta p:not(.nha-eyebrow) {
	max-width: 45rem;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.78);
}

.nha-plan-cta .nha-button {
	flex: 0 0 auto;
}

/* Footer */
.nha-footer {
	background: #041f1b;
	color: rgba(255, 255, 255, 0.72);
}

.nha-footer__grid {
	display: grid;
	grid-template-columns: minmax(18rem, 1.45fr) minmax(9rem, 0.65fr) minmax(12rem, 0.85fr) minmax(17rem, 1.05fr);
	gap: clamp(2rem, 5vw, 5rem);
	padding-block: clamp(4rem, 7vw, 6.5rem);
}

.nha-footer__brand img {
	width: min(100%, 20rem);
}

.nha-footer__brand p {
	max-width: 24rem;
	margin-top: 1.5rem;
	color: rgba(255, 255, 255, 0.65);
}

.nha-footer h2 {
	margin-bottom: 1.25rem;
	color: var(--nha-white);
	font-family: var(--nha-sans);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.nha-footer ul {
	display: grid;
	gap: 0.65rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nha-footer li,
.nha-footer__contact p {
	font-size: 0.84rem;
}

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

.nha-footer__email {
	overflow-wrap: anywhere;
	display: inline-block;
	margin-top: 0.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
	color: var(--nha-white);
	font-weight: 700;
}

.nha-footer__whatsapp {
	display: block;
	width: fit-content;
	margin-top: 0.75rem;
	color: var(--nha-white);
	font-weight: 700;
}

.nha-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	padding-block: 1.4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	font-size: 0.7rem;
}

.nha-footer__bottom p {
	margin: 0;
}

/* Generic pages */
.nha-content-shell {
	max-width: 74rem;
	padding-block: clamp(4rem, 8vw, 8rem);
}

.nha-page-intro {
	max-width: 60rem;
	margin-bottom: 3rem;
}

.nha-page-intro h1 {
	font-size: clamp(3rem, 6vw, 6rem);
}

.nha-page-intro__lead {
	max-width: 48rem;
	color: var(--nha-ink-650);
	font-size: 1.15rem;
}

.nha-prose {
	font-size: 1.05rem;
}

.nha-page-featured-image {
	margin: 0 0 3rem;
}

.nha-page-featured-image img {
	width: 100%;
	max-height: 42rem;
	object-fit: cover;
}

.nha-prose > *:not(.alignwide):not(.alignfull) {
	max-width: 48rem;
}

.nha-prose h2 {
	margin-top: 2.5rem;
	font-size: 2.2rem;
}

.nha-prose a {
	color: var(--nha-blue-800);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.nha-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.nha-post-card {
	border: 1px solid var(--nha-border);
}

.nha-post-card__image {
	display: block;
	aspect-ratio: 1.45 / 1;
	overflow: hidden;
}

.nha-post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nha-post-card__body {
	padding: 1.4rem;
}

.nha-post-card h2 {
	font-size: 1.75rem;
}

.nha-post-card p:not(.nha-card-meta) {
	color: var(--nha-ink-650);
	font-size: 0.9rem;
}

.nha-card-meta {
	color: var(--nha-rhododendron);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nha-empty-state {
	max-width: 48rem;
	padding: clamp(2rem, 5vw, 4rem);
	border: 1px solid var(--nha-border);
	background: var(--nha-mountain-50);
}

.nha-empty-state h2 {
	font-size: clamp(2rem, 4vw, 3.5rem);
}

.nha-search-page-form {
	max-width: 58rem;
	margin-bottom: 3rem;
	padding: 1rem;
	border: 1px solid var(--nha-border);
	background: var(--nha-mountain-50);
}

/* Single travel content */
.nha-single-hero {
	position: relative;
	display: flex;
	align-items: end;
	min-height: clamp(30rem, 64vh, 46rem);
	background-color: var(--nha-forest-950);
	background-image: var(--nha-single-image);
	background-position: center;
	background-size: cover;
	color: var(--nha-white);
}

.nha-single-hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(3, 25, 22, 0.88), rgba(5, 38, 32, 0.38) 68%, rgba(6, 22, 20, 0.08)), linear-gradient(0deg, rgba(5, 24, 21, 0.76), transparent 60%);
}

.nha-single-hero__content {
	position: relative;
	z-index: 1;
	padding-block: clamp(4rem, 9vw, 8rem) 3.5rem;
}

.nha-single-hero h1 {
	max-width: 14ch;
	margin-bottom: 1rem;
	font-size: clamp(3rem, 7vw, 7rem);
}

.nha-single-hero__content > p:not(.nha-eyebrow) {
	max-width: 44rem;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.15rem;
}

.nha-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(18rem, 23rem);
	align-items: start;
	gap: clamp(3rem, 7vw, 7rem);
	padding-block: clamp(4rem, 8vw, 8rem);
}

.nha-single__content > *:first-child {
	margin-top: 0;
}

.nha-single__sidebar {
	position: sticky;
	top: 8rem;
	display: grid;
	gap: 1.25rem;
}

.nha-fact-card,
.nha-sidebar-cta {
	padding: 1.5rem;
	border: 1px solid var(--nha-border);
	background: var(--nha-mountain-50);
}

.nha-fact-card > div {
	display: grid;
	gap: 0.15rem;
	padding: 0.8rem 0;
	border-bottom: 1px solid var(--nha-border);
}

.nha-fact-card > div:last-child {
	border-bottom: 0;
}

.nha-fact-card small {
	color: var(--nha-ink-650);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nha-fact-card strong {
	color: var(--nha-forest-950);
}

.nha-sidebar-cta {
	border: 0;
	background: var(--nha-forest-950);
	color: var(--nha-white);
}

.nha-sidebar-cta h2 {
	font-size: 2rem;
}

.nha-sidebar-cta p {
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.9rem;
}

.nha-sidebar-cta .nha-button + .nha-button {
	margin-top: 0.65rem;
}

.nha-sidebar-cta .nha-button--outline {
	border-color: rgba(255, 255, 255, 0.6);
	color: var(--nha-white);
}

.nha-detail-section {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--nha-border);
}

.nha-detail-section h2 {
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.nha-detail-list {
	display: grid;
	gap: 0.6rem;
	padding: 0;
	list-style: none;
}

.nha-detail-list li {
	position: relative;
	padding-left: 1.5rem;
}

.nha-detail-list li::before {
	position: absolute;
	left: 0;
	color: var(--nha-rhododendron);
	content: "✦";
}

.nha-itinerary {
	display: grid;
	gap: 0;
	border-top: 1px solid var(--nha-border);
}

.nha-itinerary article {
	display: grid;
	grid-template-columns: 7rem minmax(0, 1fr);
	gap: 0.2rem 1.5rem;
	padding: 1.4rem 0;
	border-bottom: 1px solid var(--nha-border);
}

.nha-itinerary small {
	grid-row: 1 / 3;
	color: var(--nha-rhododendron);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.nha-itinerary h3,
.nha-itinerary p {
	margin-bottom: 0;
}

.nha-itinerary h3 {
	font-size: 1.45rem;
}

.nha-inclusion-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

.nha-guide-note {
	margin-top: 3rem;
	padding: 1.4rem;
	border-left: 4px solid var(--nha-saffron);
	background: var(--nha-mountain-100);
}

.nha-guide-note p {
	margin: 0.35rem 0 0;
}

/* Responsive navigation and layout */
@media (max-width: 78rem) {
	.nha-header__inner { min-height: 5.2rem; }
	.nha-brand { width: 13.5rem; }
	.nha-navigation { gap: 0.8rem; }
	.nha-navigation__list { gap: 0.7rem; }
	.nha-header__cta { display: none; }
	.nha-header__actions { gap: 0.75rem; margin-left: 1rem; }
	.nha-mega__layout { grid-template-columns: 11rem minmax(0, 1fr) 15rem; gap: 1.25rem; }
	.nha-mega__panel-heading { grid-template-columns: 1fr; gap: 0.5rem; }
	.nha-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 68rem) {
	.nha-topbar__links { display: none; }
	.nha-topbar__inner { justify-content: center; text-align: center; }
	.nha-header__actions { margin-left: auto; }
	.nha-menu-toggle { display: inline-flex; }
	.nha-navigation {
		position: fixed;
		top: var(--nha-header-bottom, 5.2rem);
		right: 0;
		bottom: auto;
		left: 0;
		height: max(0px, calc(var(--nha-viewport-bottom, 100dvh) - var(--nha-header-bottom, 5.2rem)));
		margin: 0;
		display: block;
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		padding: 1rem 1.5rem max(1.5rem, env(safe-area-inset-bottom));
		background: var(--nha-white);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-1rem);
		transition: opacity 180ms ease, transform 180ms ease;
		visibility: hidden;
	}
	.nha-navigation.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
	.nha-navigation__list { display: block; }
	.nha-navigation__item { display: block; border-bottom: 1px solid var(--nha-border); }
	.nha-nav-link { justify-content: space-between; width: 100%; padding: 1rem 0; font-size: 1rem; }
	.nha-nav-link::after { display: none; }
	.nha-navigation__cta { display: inline-flex; width: 100%; margin-top: 1.5rem; }
	.nha-search-toggle { margin-top: 0; }
	.nha-mega { position: static; display: none; width: auto; max-height: none; overflow: visible; margin: 0 -0.5rem 0.5rem; border: 0; box-shadow: none; opacity: 1; transform: none; visibility: visible; }
	.nha-mega.is-open { display: block; }
	.nha-mega__layout { display: block; width: 100%; padding: 0.5rem; }
	.nha-mega__tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 0 1rem; border: 0; }
	.nha-mega__tabs button { min-height: 2.75rem; padding: 0.65rem 0.5rem; font-size: 0.85rem; }
	.nha-mega__content { min-height: 0; }
	.nha-mega__panel-heading { grid-template-columns: 1fr; gap: 0.4rem; }
	.nha-mega__columns--three,
	.nha-mega__columns--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.nha-mega-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.nha-mega-link-grid small { font-size: 0.8rem; }
	.nha-mega__feature { display: none; }
	.nha-submenu { position: static; display: none; width: auto; padding: 0 0 1rem 1rem; border: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; visibility: visible; }
	.nha-submenu.is-open { display: grid; transform: none; }
	.nha-hero { min-height: auto; }
	.nha-hero__inner { grid-template-columns: 1fr; padding-block: 7rem 3rem; }
	.nha-hero__content { max-width: 48rem; }
	.nha-hero__planner { max-width: 32rem; }
	.nha-trust-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.nha-trust-strip__grid > div:nth-child(2) { border-right: 0; }
	.nha-trust-strip__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--nha-border); }
	.nha-trust-strip__grid > div:first-child { padding-left: 1.25rem; }
	.nha-trip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.nha-trip-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 0.75rem); }
	.nha-services__layout { grid-template-columns: 1fr 1fr; gap: 3rem; }
	.nha-services__badge { right: 1rem; }
	.nha-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.nha-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.nha-single__layout { grid-template-columns: minmax(0, 1fr) minmax(16rem, 20rem); gap: 3rem; }
}

@media (max-width: 48rem) {
	.nha-container { width: min(calc(100% - 2rem), var(--nha-container)); }
	.nha-topbar__inner { justify-content: center; }
	.nha-topbar__links { display: none; }
	.nha-header__inner { min-height: 4.75rem; }
	.nha-brand { width: min(12rem, calc(100% - 7rem)); }
	.nha-header__actions { gap: 0.4rem; }
	.nha-menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
	.nha-navigation { padding-inline: 1rem; }
	.nha-mega__tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.nha-mega__columns--three,
	.nha-mega__columns--two { grid-template-columns: 1fr; }
	.nha-mega-link-grid { grid-template-columns: 1fr; }
	.nha-hero__shade { background: linear-gradient(90deg, rgba(3, 25, 22, 0.88), rgba(5, 38, 32, 0.55)), linear-gradient(0deg, rgba(5, 24, 21, 0.68), transparent 50%); }
	.nha-hero__inner { padding-block: 5rem 2rem; }
	.nha-hero h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
	.nha-hero__planner { padding: 1.25rem; }
	.nha-button-row { align-items: stretch; flex-direction: column; }
	.nha-button-row .nha-button { width: 100%; }
	.nha-trust-strip__grid { grid-template-columns: 1fr; }
	.nha-trust-strip__grid > div { min-height: 5.8rem; border-right: 0; border-bottom: 1px solid var(--nha-border); padding: 1rem 0; }
	.nha-trust-strip__grid > div:first-child { padding-left: 0; }
	.nha-trust-strip__grid > div:last-child { border-bottom: 0; }
	.nha-intro__grid,
	.nha-section-heading--split,
	.nha-destination-layout,
	.nha-services__layout,
	.nha-education__layout,
	.nha-journal__layout { grid-template-columns: 1fr; }
	.nha-display-heading,
	.nha-section-heading h2 { font-size: clamp(2.3rem, 11vw, 3.7rem); }
	.nha-trip-grid { grid-template-columns: 1fr; }
	.nha-trip-card:last-child { grid-column: auto; max-width: none; }
	.nha-trip-card__body > p { min-height: 0; }
	.nha-destination-feature { min-height: 30rem; }
	.nha-destination-list a { min-height: 7rem; }
	.nha-services__image > img { min-height: 28rem; }
	.nha-services__badge { right: 0.75rem; bottom: 0.75rem; }
	.nha-services__content h2,
	.nha-education__content h2 { font-size: clamp(2.3rem, 11vw, 3.8rem); }
	.nha-education__layout { display: flex; flex-direction: column; }
	.nha-education__image { order: -1; padding: 0 0 1.25rem 1.25rem; }
	.nha-education__image img { min-height: 25rem; }
	.nha-journal__feature { min-height: 30rem; }
	.nha-plan-cta__inner { align-items: flex-start; flex-direction: column; }
	.nha-plan-cta .nha-button { width: 100%; }
	.nha-footer__grid { grid-template-columns: 1fr; }
	.nha-footer__bottom { flex-direction: column; }
	.nha-post-grid { grid-template-columns: 1fr; }
	.nha-search-form,
	.nha-search-page-form { grid-template-columns: 1fr; }
	.nha-search-panel__inner { grid-template-columns: minmax(0, 1fr) auto; }
	.nha-single__layout,
	.nha-inclusion-grid { grid-template-columns: 1fr; }
	.nha-single__sidebar { position: static; }
	.nha-itinerary article { grid-template-columns: 1fr; }
	.nha-itinerary small { grid-row: auto; }
}

@media (max-width: 782px) {
	.admin-bar .nha-header { top: var(--wp-admin--admin-bar--height, 46px); }
}

@media (max-width: 600px) {
	.admin-bar .nha-header { top: 0; }
}

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