:root {
	--nh-bg: #050F07;
		--nh-bg-soft: #0a1a0e;
		--nh-ink: #f4f1e8;
		--nh-muted: #b9b8ad;
		--nh-line: rgba(244, 241, 232, 0.12);
		--nh-accent: #3AAA54;
		--nh-accent-2: #2f8f45;
		--nh-accent-ink: #061a0c;
		--nh-radius: 14px;
		--nh-shell: 1660px;
		--nh-gutter: clamp(24px, 4vw, 50px);
		--nh-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
		--nh-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--nh-bg);
	color: var(--nh-ink);
	font-family: var(--nh-sans);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.blank-canvas {
	background: var(--nh-bg);
}

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

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

.site-main--blank {
	min-height: 100vh;
	padding: 0;
}

/* ---------- Shared typography ---------- */
.nh-heading {
	font-family: var(--nh-serif);
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.08;
	margin: 0 0 1rem;
	font-size: clamp(2rem, 3.6vw, 3.5rem);
}
.nh-heading--sm {
	font-size: clamp(1.75rem, 2.4vw, 2.5rem);
}

.nh-eyebrow {
	display: inline-block;
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--nh-muted);
	margin-bottom: 1rem;
}

.nh-eyebrow--block {
	display: block;
	padding: 0 var(--nh-gutter);
	margin-bottom: 1rem;
}

.nh-sub {
	color: var(--nh-muted);
	font-size: 1rem;
	max-width: 28rem;
	margin: 0;
}

.nh-reveal-media {
	overflow: visible;
	will-change: transform;
}

.nh-reveal-media img {
	will-change: transform;
}

.nh-reveal-media--left {
	transform: translate3d(calc(-100% - max(var(--nh-gutter), ((100vw - var(--nh-shell)) / 2) + var(--nh-gutter))), 0, 0);
}

.nh-reveal-media--right {
	transform: translate3d(calc(100% + max(var(--nh-gutter), ((100vw - var(--nh-shell)) / 2) + var(--nh-gutter))), 0, 0);
}

.nh-reveal-media.is-visible {
	animation-duration: 1.65s;
	animation-timing-function: cubic-bezier(0.16, 0.84, 0.22, 1);
	animation-fill-mode: forwards;
}

.nh-reveal-media--left.is-visible {
	animation-name: nh-slide-in-left;
}

.nh-reveal-media--right.is-visible {
	animation-name: nh-slide-in-right;
}

/* ---------- Buttons / links ---------- */
.nh-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.4rem;
	border-radius: 999px;
	font-weight: 500;
	font-size: 0.9rem;
	transition: transform 0.2s ease, background 0.2s ease;
	cursor: pointer;
	border: 0;
}

.nh-btn--primary {
	background: var(--nh-accent);
	color: var(--nh-accent-ink);
}

.nh-btn--primary:hover {
	background: var(--nh-accent-2);
	transform: translateY(-1px);
}

.nh-btn--lime {
	background: #ADE13E;
	color: var(--nh-accent-ink);
}

.nh-btn--lime:hover {
	background: #9fd034;
	transform: translateY(-1px);
}

.nh-btn__arrow {
	display: inline-block;
	transition: transform 0.2s ease;
}

.nh-btn:hover .nh-btn__arrow {
	transform: translateX(3px);
}

.nh-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--nh-accent);
	font-weight: 500;
	font-size: 0.9rem;
	border-bottom: 1px solid transparent;
	padding-bottom: 2px;
}

.nh-link:hover {
	border-bottom-color: var(--nh-accent);
}

/* ---------- Nav ---------- */
.nh-nav {
	position: relative;
	z-index: 40;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
	padding: 1.1rem clamp(1.25rem, 3vw, 2.5rem);
	background: var(--nh-bg);
}

.nh-nav .nh-brand {
	grid-column: 2;
	justify-self: center;
}

.nh-nav__right {
	grid-column: 3;
	justify-self: end;
	display: flex;
	align-items: center;
	gap: clamp(1rem, 3vw, 2.25rem);
	}
	
	.nh-nav__link {
		font-size: 0.82rem;
		letter-spacing: 0.18em;
		color: var(--nh-ink);
		font-weight: 400;
		transition: opacity 0.2s ease;
	}
	
	.nh-nav__link:hover {
		opacity: 0.75;
	}
	
	.nh-nav__burger {
		background: transparent;
		border: 0;
		width: 28px;
		height: 24px;
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		cursor: pointer;
		padding: 0;
	}
	
	.nh-nav__burger span {
		display: block;
		width: 24px;
		height: 1.5px;
		background: var(--nh-ink);
		border-radius: 1px;
	}
	
	.nh-brand {
		display: inline-flex;
		align-items: center;
		color: var(--nh-ink);
	}
	
	.nh-brand img {
		width: clamp(105px, 12vw, 165px);
		height: auto;
		display: block;
	}
	
	/* ---------- Menu overlay ---------- */
	.nh-menu {
		position: fixed;
		inset: 0;
		z-index: 100;
		background: var(--nh-bg);
		display: flex;
		flex-direction: column;
		opacity: 0;
		transition: opacity 0.3s ease;
		overflow-y: auto;
	}
	
	.nh-menu[hidden] {
		display: none;
	}
	
	.nh-menu.is-open {
		opacity: 1;
	}
	
	.nh-menu__bar {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
		gap: 1rem;
		padding: 1.1rem clamp(1.25rem, 3vw, 2.5rem);
	}
	
	.nh-menu__bar .nh-brand {
		grid-column: 2;
		justify-self: center;
	}
	
	.nh-menu__bar .nh-nav__right {
		grid-column: 3;
		justify-self: end;
	}
	
	.nh-menu__close {
		background: transparent;
		border: 0;
		color: var(--nh-ink);
		width: 28px;
		height: 28px;
		cursor: pointer;
		padding: 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	
	.nh-menu__close svg {
		width: 24px;
		height: 24px;
	}
	
	.nh-menu__nav {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1.25rem;
		padding: 2rem clamp(1.25rem, 3vw, 2.5rem) 4rem;
	}
	
	.nh-menu__nav ul {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1.15rem;
	}
	
	.nh-menu__nav a {
		font-size: clamp(1.1rem, 1.5vw, 1.3rem);
		font-weight: 400;
		color: var(--nh-ink);
		transition: color 0.2s ease;
	}
	
	.nh-menu__nav a:hover {
		color: var(--nh-accent);
	}
	
	.nh-menu__cta {
		margin-top: 1rem;
	}
	
	/* ---------- Hero ---------- */
	.nh-hero {
		position: relative;
		width: 100%;
		padding: 0;
		margin: 0;
		overflow: hidden;
	}
	
	.nh-hero__slides {
		position: relative;
		width: 100%;
		aspect-ratio: 16 / 7.5;
		overflow: hidden;
	}
	
	.nh-hero__slide {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		opacity: 0;
		animation: nh-hero-cycle 18s infinite;
		will-change: opacity;
	}
	
	.nh-hero__slide:nth-child(1) {
		animation-delay: 0s;
	}
	
	.nh-hero__slide:nth-child(2) {
		animation-delay: 6s;
	}
	
	.nh-hero__slide:nth-child(3) {
		animation-delay: 12s;
	}
	
	@keyframes nh-hero-cycle {
		0% {
			opacity: 0;
		}
	
		5% {
			opacity: 1;
		}
	
		33.3% {
			opacity: 1;
		}
	
		38.3% {
			opacity: 0;
		}
	
		100% {
			opacity: 0;
		}
	}
	
	@media (prefers-reduced-motion: reduce) {
		.nh-hero__slide {
			animation: none;
		}
	
		.nh-hero__slide.is-active {
			opacity: 1;
		}
	}
	
	/* ---------- About ---------- */
	.nh-about {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: clamp(1.5rem, 4vw, 4rem);
		align-items: center;
		max-width: var(--nh-shell);
		margin: 0 auto;
		padding: clamp(1.5rem, 4vw, 3.5rem) var(--nh-gutter);
	}
	
	.nh-about__media img {
		aspect-ratio: 5 / 4;
		object-fit: cover;
		width: 100%;
	}
	
	.nh-about__body p {
		color: var(--nh-ink);
		margin: 0 0 1rem;
		font-size: 0.98rem;
	}
	
	.nh-about__body,
	.nh-feature__body {
		max-width: 35rem;
	}
	
	.nh-about__body .nh-btn {
		margin-top: 1rem;
	}
	
	/* ---------- Vision ---------- */
	.nh-vision {
		width: 100%;
		margin: 0;
		padding: 0 0 clamp(1.5rem, 3vw, 2.5rem);
	}
	
	.nh-vision .nh-eyebrow--block {
		max-width: var(--nh-shell);
		margin-left: auto;
		margin-right: auto;
		padding: 0 var(--nh-gutter);
	}
	
	.nh-vision__frame {
		position: relative;
		width: 100%;
		overflow: hidden;
	}
	
	.nh-vision__video {
		display: block;
		width: 100%;
		height: auto;
	}
	
	/* ---------- Spaces That Breathe ---------- */
	.nh-spaces {
		max-width: var(--nh-shell);
		margin: 0 auto;
		padding: clamp(1rem, 2.5vw, 2rem) var(--nh-gutter) clamp(1.5rem, 3vw, 2.5rem);
	}
	
	.nh-spaces__intro {
		max-width: 36rem;
		margin-bottom: clamp(1rem, 2vw, 1.75rem);
	}
	
	.nh-feature {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: clamp(1.5rem, 4vw, 4rem);
		align-items: center;
		padding: clamp(1rem, 2vw, 1.75rem) 0;
	}
	
	.nh-feature--reverse .nh-feature__media {
		order: 2;
	}
	
	.nh-feature__media img {
		width: 100%;
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}
	
	.nh-feature__body p {
		color: var(--nh-ink);
		margin: 0;
		font-size: 0.98rem;
	}
	
	.nh-feature__body p+.nh-list {
		margin-top: 1rem;
	}
	
	.nh-list {
		margin: 0;
		padding-left: 1.1rem;
		color: var(--nh-ink);
		font-size: 0.95rem;
	}
	
	.nh-list li {
		margin: 0.35rem 0;
	}
	
	.nh-list li::marker {
		color: var(--nh-accent);
	}
	
	/* ---------- Popular Listings ---------- */
	.nh-listings {
		position: relative;
		overflow: hidden;
		padding: 0;
		margin: clamp(2rem, 4vw, 3rem) 0;
		min-height: clamp(460px, 58vw, 640px);
		display: flex;
		align-items: stretch;
		width: 100%;
	}
	
	.nh-listings__track {
		position: absolute;
		inset: 0;
		z-index: 0;
	}
	
	.nh-listings__slide {
		position: absolute;
		inset: 0;
		opacity: 0;
		transition: opacity 0.8s ease;
		will-change: opacity;
	}
	
	.nh-listings__slide.is-active {
		opacity: 1;
	}
	
	.nh-listings__slide img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.nh-listings__overlay {
		position: absolute;
		inset: 0;
		z-index: 1;
		background: linear-gradient(90deg, rgba(5, 15, 7, 0.7) 0%, rgba(5, 15, 7, 0.25) 45%, rgba(5, 15, 7, 0.45) 100%);
		pointer-events: none;
	}
	
	.nh-listings__inner {
		position: relative;
		z-index: 2;
		display: grid;
		grid-template-columns: minmax(360px, 460px) 1fr;
		gap: clamp(1.5rem, 4vw, 3rem);
		align-items: center;
		padding: clamp(1rem, 2.5vw, 2rem) var(--nh-gutter);
		width: 100%;
		max-width: var(--nh-shell);
		margin: 0 auto;
	}
	
	.nh-property {
		background: rgba(5, 15, 7, 0.82);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border: 1px solid var(--nh-line);
		border-radius: var(--nh-radius);
		padding: 2.25rem 2.5rem;
		color: var(--nh-ink);
	}
	
	.nh-property__title {
		font-family: var(--nh-serif);
		font-weight: 400;
		font-size: clamp(2rem, 2.8vw, 2.6rem);
		margin: 0 0 0.5rem;
		line-height: 1.1;
	}
	
	.nh-property__loc {
		margin: 0 0 1.5rem;
		font-size: 1.05rem;
		color: var(--nh-muted);
	}
	
	.nh-property__specs {
		list-style: none;
		padding: 1.1rem 0;
		margin: 0 0 1.4rem;
		display: flex;
		flex-wrap: wrap;
		gap: 1.25rem;
		font-size: 1rem;
		color: var(--nh-ink);
		border-top: 1px solid var(--nh-line);
		border-bottom: 1px solid var(--nh-line);
	}
	
	.nh-property__specs li {
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
	}
	
	.nh-property__specs span {
		color: var(--nh-accent);
		font-size: 1.1rem;
	}
	
	.nh-property__price {
		margin: 0;
		font-family: var(--nh-serif);
		font-size: clamp(1.6rem, 2.4vw, 2.1rem);
	}
	
	.nh-listings__copy {
		color: var(--nh-ink);
		padding-left: 0;
	}
	
	.nh-listings__copy .nh-heading {
		margin-bottom: 1.25rem;
	}
	
	.nh-dots {
		position: absolute;
		bottom: 1.5rem;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		gap: 0.55rem;
		z-index: 3;
	}
	
	.nh-dots button {
		width: 10px;
		height: 10px;
		border-radius: 50%;
		border: 1px solid rgba(255, 255, 255, 0.7);
		background: transparent;
		padding: 0;
		cursor: pointer;
		transition: background 0.2s ease, transform 0.2s ease;
	}
	
	.nh-dots button:hover {
		background: rgba(255, 255, 255, 0.4);
	}
	
	.nh-dots .is-active {
		background: #fff;
	}
	
	/* ---------- Lifestyle / Investment pair ---------- */
	.nh-pair {
		max-width: var(--nh-shell);
		margin: 0 auto;
		padding: clamp(1.5rem, 3vw, 2.5rem) var(--nh-gutter);
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: clamp(1.5rem, 4vw, 4rem);
	}
	
	.nh-pair__media img {
		width: 100%;
		aspect-ratio: 16 / 10;
		object-fit: cover;
		margin-bottom: 1.5rem;
	}
	
	.nh-pair__col p {
		color: var(--nh-muted);
		margin: 0 0 1rem;
		font-size: 0.95rem;
	}
	
	/* ---------- Footer ---------- */
	.nh-footer {
		border-top: 1px solid var(--nh-line);
		padding: clamp(1.25rem, 2.5vw, 2rem) var(--nh-gutter) 0;
		position: relative;
		overflow: hidden;
	}
	
	.nh-footer__grid {
		max-width: var(--nh-shell);
		margin: 0 auto;
		display: grid;
		grid-template-columns: minmax(280px, 1.1fr) minmax(320px, 1.3fr);
		gap: clamp(2rem, 5vw, 4rem);
		align-items: start;
	}
	
	.nh-footer__brand {
		max-width: 460px;
	}
	
	.nh-footer__logo {
		display: inline-block;
		margin-bottom: 1.5rem;
	}
	
	.nh-footer__logo img {
		width: 70px;
		height: auto;
		display: block;
	}
	
	.nh-newsletter__label {
		margin: 0 0 0.9rem;
		font-size: 0.95rem;
		color: var(--nh-ink);
	}
	
	.nh-newsletter__form {
		display: flex;
		gap: 0.5rem;
		align-items: stretch;
	}
	
	.nh-newsletter__form input {
		flex: 1;
		background: #f4f1e8;
		border: 0;
		color: #111;
		border-radius: 999px;
		padding: 0.85rem 1.2rem;
		font: inherit;
		outline: none;
	}
	
	.nh-newsletter__form input::placeholder {
		color: #6b6b6b;
	}
	
	.nh-newsletter__form input:focus {
		box-shadow: 0 0 0 2px var(--nh-accent);
	}
	
	.nh-newsletter__form .nh-btn {
		padding: 0.85rem 1.6rem;
	}
	
	.nh-newsletter__fine {
		margin: 0.9rem 0 0;
		font-size: 0.78rem;
		color: var(--nh-muted);
		line-height: 1.5;
	}
	
	.nh-newsletter__fine a {
		text-decoration: underline;
		text-underline-offset: 3px;
		color: var(--nh-muted);
	}
	
	.nh-footer__cols {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: clamp(1rem, 3vw, 2.5rem);
	}
	
	.nh-footer__col h5 {
		margin: 0 0 1.25rem;
		font-size: 1rem;
		font-weight: 600;
		color: var(--nh-accent);
	}
	
	.nh-footer__col ul {
		list-style: none;
		padding: 0;
		margin: 0;
		display: grid;
		gap: 0.75rem;
	}
	
	.nh-footer__col a {
		color: var(--nh-ink);
		font-size: 0.92rem;
		transition: color 0.2s ease;
	}
	
	.nh-footer__col a:hover {
		color: var(--nh-accent);
	}
	
	.nh-footer__col--social a {
		display: inline-flex;
		align-items: center;
		gap: 0.65rem;
	}
	
	.nh-soc {
		width: 22px;
		height: 22px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		color: var(--nh-ink);
	}
	
	.nh-soc svg {
		width: 20px;
		height: 20px;
	}
	
	.nh-footer__bottom {
		max-width: var(--nh-shell);
		margin: clamp(1rem, 2vw, 1.5rem) auto 0;
		padding: 0.875rem 0;
		display: flex;
	justify-content: space-between;
	gap: 1rem;
		font-size: 0.82rem;
		color: var(--nh-ink);
		flex-wrap: wrap;
		position: relative;
		z-index: 2;
}
.nh-footer__bottom p {
	margin: 0;
}

.nh-footer__bottom ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: clamp(1rem, 3vw, 2.5rem);
	flex-wrap: wrap;
}

.nh-footer__bottom a {
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--nh-ink);
}

.nh-footer__bottom a:hover {
	color: var(--nh-accent);
}

.nh-footer__watermark {
	font-family: var(--nh-sans);
	font-weight: 700;
	font-size: clamp(3rem, 13vw, 11rem);
	letter-spacing: 0.01em;
	color: rgba(58, 170, 84, 0.08);
	text-align: center;
	line-height: 0.9;
	margin: 0 auto -0.18em;
	user-select: none;
	pointer-events: none;
	white-space: nowrap;
	max-width: 100%;
}

@keyframes nh-slide-in-left {
	from {
		transform: translate3d(calc(-100% - max(var(--nh-gutter), ((100vw - var(--nh-shell)) / 2) + var(--nh-gutter))), 0, 0);
	}

		to {
			transform: translate3d(0, 0, 0);
		}
		}
	
		@keyframes nh-slide-in-right {
			from {
				transform: translate3d(calc(100% + max(var(--nh-gutter), ((100vw - var(--nh-shell)) / 2) + var(--nh-gutter))), 0, 0);
			}
	
			to {
				transform: translate3d(0, 0, 0);
			}
		}
	
		/* ---------- Responsive ---------- */
		@media (max-width: 900px) {
	
			.nh-about,
			.nh-feature,
			.nh-pair,
			.nh-footer__grid {
				grid-template-columns: 1fr;
			}
	
			.nh-feature--reverse .nh-feature__media {
				order: 0;
			}
	
			.nh-listings__inner {
				grid-template-columns: 1fr;
			}
	
			.nh-listings {
				min-height: auto;
			}
	
			.nh-footer__cols {
				grid-template-columns: repeat(3, 1fr);
				gap: 1rem;
			}
	
			.nh-reveal-media--left,
			.nh-reveal-media--right {
				transform: translate3d(0, 100%, 0);
			}
	
			.nh-reveal-media--left.is-visible,
			.nh-reveal-media--right.is-visible {
				animation-name: nh-slide-in-up;
			}
		}
	
		@media (max-width: 600px) {
			.nh-nav {
				grid-template-columns: auto 1fr auto;
				padding: 0.9rem 1rem;
			}
	
			.nh-nav .nh-brand {
				grid-column: 2;
			}
	
			.nh-nav__right {
				gap: 0.9rem;
			}
	
			.nh-nav__link {
				font-size: 0.72rem;
				letter-spacing: 0.14em;
			}
	
			.nh-hero__slides {
				aspect-ratio: 3 / 4;
			}
	
			.nh-footer__cols {
				grid-template-columns: 1fr 1fr;
			}
	
			.nh-footer__bottom {
				flex-direction: column;
			}
	
			.nh-newsletter__form {
				flex-direction: column;
			}
	
			.nh-newsletter__form button {
				width: 100%;
			}
		}
	
		@keyframes nh-slide-in-up {
			from {
				transform: translate3d(0, 100%, 0);
			}
	
			to {
				transform: translate3d(0, 0, 0);
			}
		}
	
		@media (prefers-reduced-motion: reduce) {
	
			.nh-reveal-media,
			.nh-reveal-media--left,
			.nh-reveal-media--right {
				animation: none !important;
				transform: none !important;
			}
		}
	
		/* =========================================================
	   About page
	   ========================================================= */
		.nh-page-hero {
			position: relative;
			width: 100%;
			min-height: clamp(320px, 42vw, 520px);
			overflow: hidden;
			display: flex;
			align-items: center;
			justify-content: center;
		}
	
		.nh-page-hero__bg {
			position: absolute;
			inset: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	
		.nh-page-hero__overlay {
			position: absolute;
			inset: 0;
			background: linear-gradient(180deg, rgba(5, 15, 7, 0.65) 0%, rgba(5, 15, 7, 0.55) 100%);
		}
	
		.nh-page-hero__inner {
			position: relative;
			z-index: 2;
			max-width: var(--nh-shell);
			padding: clamp(2rem, 6vw, 4rem) var(--nh-gutter);
			text-align: center;
			color: var(--nh-ink);
		}
	
		.nh-page-hero__title {
			margin: 0 auto;
			max-width: 18ch;
			font-size: clamp(2.2rem, 4.8vw, 4rem);
		}
	
		/* Split text+media (vision / mission) */
		.nh-split {
			max-width: var(--nh-shell);
			margin: 0 auto;
			padding: clamp(1.25rem, 3vw, 2.25rem) var(--nh-gutter);
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: clamp(1.5rem, 4vw, 4rem);
			align-items: center;
		}
	
		.nh-split--media-first .nh-split__media {
			order: 0;
		}
	
		.nh-split--media-first .nh-split__body {
			order: 1;
		}
	
		.nh-split__body p {
			color: var(--nh-ink);
			font-size: 0.98rem;
			max-width: 32rem;
			margin: 0;
		}
	
		.nh-split__body .nh-heading {
			margin-bottom: 1.25rem;
		}
	
		.nh-split__media img {
			width: 100%;
			aspect-ratio: 4 / 3;
			object-fit: cover;
			border-radius: 4px;
		}
	
		/* Founder quote */
		.nh-quote {
			max-width: var(--nh-shell);
			margin: 0 auto;
			padding: clamp(2rem, 5vw, 4rem) var(--nh-gutter);
			display: grid;
			grid-template-columns: minmax(260px, 360px) 1fr;
			gap: clamp(1.5rem, 5vw, 4.5rem);
			align-items: center;
		}
	
		.nh-quote__portrait img {
			width: 100%;
			aspect-ratio: 1 / 1;
			object-fit: cover;
		}
	
		.nh-quote__body {
			margin: 0;
			color: var(--nh-ink);
			font-size: clamp(0.98rem, 1.2vw, 1.1rem);
			line-height: 1.65;
			max-width: 40rem;
		}
	
		.nh-quote__body p {
			margin: 0 0 1rem;
		}
	
		.nh-quote__cite {
			margin-top: 1.25rem;
			padding-top: 1rem;
			border-top: 1px solid var(--nh-line);
			font-size: 0.88rem;
			color: var(--nh-muted);
			max-width: 16rem;
		}
	
		/* Wellness at the Core callout */
		.nh-wellness-callout {
			position: relative;
			max-width: var(--nh-shell);
			margin: 0 auto;
			padding: 0 var(--nh-gutter);
		}
	
		.nh-wellness-callout__bg {
			width: 100%;
			aspect-ratio: 16 / 8;
			object-fit: cover;
		}
	
		.nh-wellness-card {
			position: absolute;
			left: calc(var(--nh-gutter) + 24px);
			bottom: -40px;
			background: #ADE13E;
			color: #0a1a0e;
			padding: 1.5rem 1.6rem 1.2rem;
			max-width: 340px;
			border-radius: 2px;
		}
	
		.nh-wellness-card__title {
			margin: 0 0 0.6rem;
			font-family: var(--nh-serif);
			font-weight: 500;
			font-size: 1.4rem;
		}
	
		.nh-wellness-card p {
			margin: 0 0 1rem;
			font-size: 0.88rem;
			line-height: 1.5;
		}
	
		.nh-wellness-card__nav {
			display: flex;
			gap: 0.6rem;
		}
	
		.nh-wellness-card__btn {
			width: 34px;
			height: 34px;
			border-radius: 50%;
			background: transparent;
			border: 1px solid rgba(10, 26, 14, 0.45);
			color: #0a1a0e;
			cursor: pointer;
			display: inline-flex;
			align-items: center;
			justify-content: center;
	padding: 0;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.nh-wellness-card__btn:hover {
	background: rgba(10, 26, 14, 0.1);
}

.nh-wellness-card__btn svg {
	width: 16px;
	height: 16px;
}

.nh-wellness-card__btn--dark {
	background: #0a1a0e;
	color: #ADE13E;
	border-color: #0a1a0e;
}

.nh-wellness-card__btn--dark:hover {
	background: #05100a;
}

/* Philosophy */
.nh-philosophy {
	max-width: var(--nh-shell);
	margin: clamp(4rem, 8vw, 6rem) auto 0;
	padding: clamp(2rem, 5vw, 4rem) var(--nh-gutter) clamp(1.5rem, 3vw, 2.5rem);
}

.nh-philosophy>.nh-eyebrow {
	margin-bottom: 1rem;
}

.nh-philosophy__grid {
	display: grid;
	grid-template-columns: minmax(260px, 1fr) 1.4fr;
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: start;
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.nh-philosophy__grid .nh-heading {
	margin: 0;
}

.nh-philosophy__body p {
	color: var(--nh-ink);
	margin: 0 0 1rem;
	font-size: 0.98rem;
}

.nh-philosophy__media img {
	width: 100%;
	aspect-ratio: 21 / 9;
	object-fit: cover;
}

/* Built Differently pillars */
.nh-pillars {
	max-width: var(--nh-shell);
	margin: 0 auto;
	padding: clamp(2rem, 4vw, 3rem) var(--nh-gutter) clamp(3rem, 6vw, 5rem);
}

.nh-pillars>.nh-heading {
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.nh-pillars__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: clamp(2rem, 6vw, 5rem);
	row-gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nh-pillar {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 1rem;
	align-items: start;
}

.nh-pillar__check {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--nh-accent);
	color: var(--nh-accent-ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 3px;
}

.nh-pillar__check svg {
	width: 14px;
	height: 14px;
}

.nh-pillar h4 {
	margin: 0 0 0.35rem;
	font-size: 1.02rem;
	font-weight: 600;
}

.nh-pillar p {
	margin: 0;
	color: var(--nh-muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

/* =========================================================
   Listings page
   ========================================================= */
.nh-listings-hero {
	position: relative;
	width: 100%;
	min-height: clamp(380px, 48vw, 560px);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nh-listings-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nh-listings-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5, 15, 7, 0.55) 0%, rgba(5, 15, 7, 0.5) 100%);
}

.nh-listings-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 860px;
	width: 100%;
	padding: clamp(2rem, 6vw, 4rem) var(--nh-gutter);
	text-align: center;
	color: var(--nh-ink);
}

.nh-listings-hero__title {
	font-size: clamp(2rem, 4.2vw, 3.5rem);
	margin: 0 0 1rem;
}

.nh-listings-hero__lede {
	margin: 0 auto 1.75rem;
	max-width: 36rem;
	color: var(--nh-ink);
	font-size: 0.98rem;
}

.nh-search {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(5, 15, 7, 0.75);
	border: 1px solid rgba(244, 241, 232, 0.25);
	border-radius: 999px;
	padding: 6px;
	max-width: 620px;
	margin: 0 auto;
}

.nh-search input {
	flex: 1;
	background: transparent;
	border: 0;
	color: var(--nh-ink);
	padding: 0.7rem 1rem;
	font: inherit;
	outline: none;
	min-width: 0;
}

.nh-search input::placeholder {
	color: rgba(244, 241, 232, 0.55);
}

.nh-search__btn {
	background: #fff;
	color: #0a1a0e;
	border: 0;
	border-radius: 999px;
	padding: 0.7rem 1.4rem;
	font: inherit;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.15s ease;
}

.nh-search__btn:hover {
	background: #ede8d9;
}

/* Property type pills */
.nh-types {
	max-width: var(--nh-shell);
	margin: 0 auto;
	padding: clamp(1.5rem, 3vw, 2.5rem) var(--nh-gutter) clamp(0.75rem, 1.5vw, 1.5rem);
}

.nh-types ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 1000px;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(9, minmax(0, 1fr));
	gap: clamp(0.5rem, 1.5vw, 1rem);
}

.nh-type {
	width: 100%;
	background: transparent;
	border: 0;
	color: var(--nh-ink);
	padding: 0.75rem 0.4rem;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	font: inherit;
	transition: color 0.15s ease;
}

.nh-type__icon {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--nh-ink);
}

.nh-type__icon svg {
	width: 26px;
	height: 26px;
}

.nh-type__label {
	font-size: 0.8rem;
	color: var(--nh-muted);
}
.nh-type:hover {
	color: var(--nh-accent);
}

.nh-type:hover .nh-type__label {
	color: var(--nh-accent);
}

.nh-type.is-active {
	color: var(--nh-accent);
}

.nh-type.is-active .nh-type__icon {
	color: var(--nh-accent);
}

.nh-type.is-active .nh-type__label {
	color: var(--nh-accent);
	font-weight: 500;
}

/* Collections */
.nh-collection {
	max-width: var(--nh-shell);
	margin: 0 auto;
	padding: clamp(1.5rem, 3vw, 2.5rem) var(--nh-gutter);
	}
	
	.nh-collection__head {
		margin-bottom: clamp(1rem, 2vw, 1.75rem);
	}
	
	.nh-collection__head .nh-eyebrow {
		margin-bottom: 0.6rem;
	}
	
	.nh-collection__head .nh-heading {
		margin: 0;
		max-width: 32ch;
	}
	
	.nh-collection__head--split {
		display: flex;
		align-items: end;
		justify-content: space-between;
		gap: 1rem 2rem;
		flex-wrap: wrap;
	}
	
	.nh-collection__summary {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 0.4rem;
	}
	
	.nh-collection__summary p {
		margin: 0;
		color: var(--nh-muted);
		font-size: 0.9rem;
	}
	
	.nh-collection__reset {
		color: var(--nh-accent);
		font-size: 0.88rem;
		border-bottom: 1px solid transparent;
		padding-bottom: 2px;
	}
	
	.nh-collection__reset:hover {
		border-bottom-color: var(--nh-accent);
	}
	
	.nh-card-grid {
		display: grid;
		gap: clamp(1rem, 2.5vw, 2rem);
	}
	
	.nh-card-grid--two {
		grid-template-columns: 1fr 1fr;
	}
	
	.nh-card {
		background: var(--nh-bg-soft);
		border: 1px solid var(--nh-line);
		border-radius: 8px;
		overflow: hidden;
		display: flex;
		flex-direction: column;
		transition: transform 0.2s ease, border-color 0.2s ease;
	}
	
	.nh-card:hover {
		transform: translateY(-2px);
		border-color: rgba(58, 170, 84, 0.4);
	}
	
	.nh-card__media {
		aspect-ratio: 16 / 10;
		overflow: hidden;
	}
	
	.nh-card__media img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.nh-card__body {
		padding: 1.2rem 1.4rem 1.3rem;
		color: var(--nh-ink);
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
	}
	
	.nh-card__badge {
		display: inline-flex;
		align-self: flex-start;
		padding: 0.3rem 0.7rem;
		border-radius: 999px;
		background: rgba(58, 170, 84, 0.14);
		color: var(--nh-accent);
		font-size: 0.72rem;
		font-weight: 600;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}
	
	.nh-card__title {
		margin: 0;
		font-family: var(--nh-sans);
		font-weight: 600;
		font-size: 1.05rem;
	}
	
	.nh-card__loc {
		margin: 0;
		color: var(--nh-muted);
		font-size: 0.85rem;
	}
	
	.nh-card__specs {
		list-style: none;
		margin: 0;
		padding: 0.7rem 0;
		display: flex;
		gap: 1.1rem;
		flex-wrap: wrap;
		border-top: 1px solid var(--nh-line);
		border-bottom: 1px solid var(--nh-line);
		font-size: 0.82rem;
		color: var(--nh-muted);
	}
	
	.nh-card__specs li {
		display: inline-flex;
		align-items: center;
		gap: 0.4rem;
	}
	
	.nh-card__specs svg {
		width: 16px;
		height: 16px;
		color: var(--nh-accent);
	}
	
	.nh-card__footer {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		margin-top: 0.1rem;
	}
	
	.nh-card__price {
		font-weight: 600;
		font-size: 1rem;
	}
	
	.nh-card__cta {
		background: transparent;
		border: 1px solid var(--nh-accent);
		color: var(--nh-accent);
		padding: 0.5rem 1.1rem;
		border-radius: 999px;
		font: inherit;
		font-size: 0.85rem;
		cursor: pointer;
		transition: background 0.15s ease, color 0.15s ease;
	}
	
	.nh-card__cta:hover {
		background: var(--nh-accent);
		color: var(--nh-accent-ink);
	}
	
	.nh-card__placeholder {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		padding: 1rem;
		background: rgba(255, 255, 255, 0.02);
		color: var(--nh-muted);
		font-size: 0.9rem;
		text-align: center;
	}
	
	.nh-empty {
		padding: clamp(1.5rem, 3vw, 2.25rem);
		border: 1px solid var(--nh-line);
		border-radius: 8px;
		background: var(--nh-bg-soft);
	}
	
	.nh-empty .nh-heading {
		margin-bottom: 0.75rem;
	}
	
	.nh-empty p {
		margin: 0;
		color: var(--nh-muted);
		max-width: 34rem;
	}
	
	.nh-pagination {
		margin-top: clamp(1.5rem, 3vw, 2.25rem);
	}
	
	.nh-pagination .page-numbers {
		list-style: none;
		display: flex;
		flex-wrap: wrap;
		gap: 0.65rem;
		margin: 0;
		padding: 0;
	}
	
	.nh-pagination .page-numbers li {
		margin: 0;
	}
	
	.nh-pagination .page-numbers a,
	.nh-pagination .page-numbers span {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 42px;
		height: 42px;
		padding: 0 0.95rem;
		border-radius: 999px;
		border: 1px solid var(--nh-line);
		background: transparent;
		color: var(--nh-ink);
		font-size: 0.88rem;
	}
	
	.nh-pagination .page-numbers a:hover {
		border-color: rgba(58, 170, 84, 0.4);
		color: var(--nh-accent);
	}
	
	.nh-pagination .page-numbers .current {
		background: var(--nh-accent);
		border-color: var(--nh-accent);
		color: var(--nh-accent-ink);
	}
	
	/* =========================================================
	   Modals
	   ========================================================= */
	.nh-modal {
		position: fixed;
		inset: 0;
		z-index: 200;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: clamp(1rem, 3vw, 2rem);
		opacity: 0;
		transition: opacity 0.2s ease;
	}
	
	.nh-modal[hidden] {
		display: none;
	}
	
	.nh-modal.is-open {
		opacity: 1;
	}
	
	.nh-modal__backdrop {
		position: absolute;
		inset: 0;
		background: rgba(5, 15, 7, 0.72);
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
	}
	
	.nh-modal__dialog {
		position: relative;
		z-index: 1;
		width: min(520px, 100%);
		max-height: calc(100vh - 2rem);
		overflow: hidden;
		display: flex;
	}
	
	.nh-modal__panel {
		background: #fff;
		color: #111;
		border-radius: 14px;
		padding: clamp(1.5rem, 3vw, 2.25rem);
		width: 100%;
		overflow-y: auto;
		max-height: calc(100vh - 2rem);
		position: relative;
	}
	
	.nh-modal__panel[hidden] {
		display: none;
	}
	
	.nh-modal__x,
	.nh-modal__back {
		position: absolute;
		top: 1rem;
		background: transparent;
		border: 0;
		cursor: pointer;
		color: #2a2a2a;
		width: 36px;
		height: 36px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: background 0.15s ease;
	}
	
	.nh-modal__x {
		right: 1rem;
	}
	
	.nh-modal__back {
		left: 1rem;
	}
	
	.nh-modal__x:hover,
	.nh-modal__back:hover {
		background: rgba(0, 0, 0, 0.06);
	}
	
	.nh-modal__x svg,
	.nh-modal__back svg {
		width: 20px;
		height: 20px;
	}
	
	.nh-modal__title {
		margin: 0 0 0.35rem;
		font-family: var(--nh-sans);
		font-weight: 700;
		font-size: 1.15rem;
		color: #111;
		text-align: center;
		padding: 0 2.5rem;
	}
	
	.nh-modal__title--lg {
		font-family: var(--nh-serif);
		font-weight: 500;
		font-size: clamp(1.8rem, 3vw, 2.4rem);
		margin-bottom: 1rem;
	}
	
	.nh-modal__lede {
		margin: 0 0 1.5rem;
		color: #4b4b4b;
		font-size: 0.95rem;
		text-align: center;
		padding: 0 1rem;
	}
	
	.nh-form {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		margin-top: 0.75rem;
	}
	
	.nh-field {
		display: flex;
		flex-direction: column;
		gap: 0.45rem;
	}
	
	.nh-field>label {
		font-size: 0.92rem;
		font-weight: 600;
		color: #111;
	}
	
	.nh-input {
		position: relative;
		background: #f1f3f2;
		border-radius: 999px;
		display: flex;
		align-items: center;
		padding: 0.15rem 1rem;
	}
	
	.nh-input--icon {
		padding-left: 0.9rem;
	}
	
	.nh-input__icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		color: #4b4b4b;
		margin-right: 0.5rem;
	}
	
	.nh-input__icon svg {
		width: 18px;
		height: 18px;
	}
	
	.nh-input input,
	.nh-input textarea {
		flex: 1;
		background: transparent;
		border: 0;
		outline: none;
		padding: 0.85rem 0;
		font: inherit;
		color: #111;
		min-width: 0;
	}
	
	.nh-input input::placeholder,
	.nh-input textarea::placeholder {
		color: #8a8a8a;
	}
	
	.nh-input--area {
		border-radius: 20px;
		padding: 0.5rem 1rem;
		align-items: flex-start;
	}
	
	.nh-input--area textarea {
		padding: 0.5rem 0;
		resize: vertical;
		min-height: 96px;
		line-height: 1.5;
}

.nh-check {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.92rem;
	color: #333;
	cursor: pointer;
	user-select: none;
	line-height: 1.45;
}

.nh-check--center {
	justify-content: center;
}

.nh-check input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.nh-check__box {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #9aa09c;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
	background: #fff;
	transition: background 0.15s ease, border-color 0.15s ease;
	}
	
	.nh-check__box::after {
		content: '';
		width: 10px;
		height: 6px;
		border-left: 2px solid #fff;
		border-bottom: 2px solid #fff;
		transform: rotate(-45deg) translate(1px, -1px) scale(0);
		transition: transform 0.15s ease;
	}
	
	.nh-check input:checked+.nh-check__box {
		background: var(--nh-accent);
		border-color: var(--nh-accent);
	}
	
	.nh-check input:checked+.nh-check__box::after {
		transform: rotate(-45deg) translate(1px, -1px) scale(1);
	}
	
	.nh-check a {
		color: #111;
		text-decoration: underline;
		text-underline-offset: 3px;
	}
	
	.nh-btn--wide {
		width: 100%;
		justify-content: center;
		padding: 1rem 1.4rem;
		font-weight: 500;
		font-size: 0.95rem;
	}
	
	.nh-btn--accent {
		background: var(--nh-accent);
		color: #fff;
	}
	
	.nh-btn--accent:hover {
		background: var(--nh-accent-2);
		transform: translateY(-1px);
	}
	
	/* Success state */
	.nh-modal__panel--success {
		text-align: center;
	}
	
	.nh-success {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		padding: clamp(1rem, 3vw, 2rem) 0.5rem 0.5rem;
	}
	
	.nh-success__check {
		width: 72px;
		height: 72px;
		border-radius: 50%;
		background: var(--nh-accent);
		color: #fff;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	
	.nh-success__check svg {
		width: 34px;
		height: 34px;
	}
	
	.nh-success__title {
		margin: 0.5rem 0 0;
		font-family: var(--nh-sans);
		font-weight: 700;
		font-size: 1.25rem;
		color: #111;
	}
	
	.nh-success__body {
		margin: 0 0 1.5rem;
		color: #4b4b4b;
		font-size: 0.95rem;
		line-height: 1.55;
		max-width: 32rem;
	}
	
	/* =========================================================
	   Responsive
	   ========================================================= */
	@media (max-width: 900px) {
	
		.nh-split,
		.nh-split--media-first .nh-split__body,
		.nh-split--media-first .nh-split__media,
		.nh-quote,
		.nh-philosophy__grid,
		.nh-pillars__grid {
			grid-template-columns: 1fr;
		}
	
		.nh-split--media-first .nh-split__media {
			order: 0;
		}
	
		.nh-split--media-first .nh-split__body {
			order: 1;
		}
	
		.nh-quote__portrait img {
			aspect-ratio: 4 / 3;
		}
	
		.nh-wellness-card {
			position: static;
			max-width: none;
			margin-top: -48px;
			margin-left: clamp(16px, 4vw, 32px);
			margin-right: clamp(16px, 4vw, 32px);
		}
	
		.nh-types ul {
			grid-template-columns: repeat(4, minmax(0, 1fr));
		}
	
		.nh-card-grid--two {
			grid-template-columns: 1fr;
		}
	
		.nh-collection__summary {
			align-items: flex-start;
		}
	}
	
	@media (max-width: 600px) {
		.nh-types ul {
			grid-template-columns: repeat(3, minmax(0, 1fr));
		}
	
		.nh-page-hero {
			min-height: 320px;
		}
	
		.nh-listings-hero {
			min-height: 360px;
		}
	
		.nh-search {
			flex-direction: column;
			border-radius: 18px;
			padding: 0.5rem;
		}
	
		.nh-search input {
			width: 100%;
			padding: 0.8rem 1rem;
		}
	
		.nh-search__btn {
			width: 100%;
		}
	
		.nh-card__footer {
			flex-wrap: wrap;
		}
	
		.nh-modal__dialog {
			width: 100%;
		}
	
		.nh-modal__panel {
			padding: 1.5rem 1.2rem;
		}
	
		.nh-modal__title--lg {
			font-size: 1.6rem;
		}
	}
	
	/* Form status / error */
	.nh-form__error {
		margin: 0;
		color: #c0392b;
		font-size: 0.88rem;
		text-align: center;
		background: rgba(192, 57, 43, 0.08);
		padding: 0.6rem 0.9rem;
		border-radius: 8px;
	}
	
	.nh-newsletter__status {
		margin: 0.6rem 0 0;
		font-size: 0.85rem;
		color: var(--nh-muted);
	}
	
	.nh-newsletter__status.is-success {
		color: var(--nh-accent);
	}
	
	.nh-newsletter__status.is-error {
		color: #ff8c7a;
	}
	
	/* =========================================================
	   Document pages (Privacy / Terms)
	   ========================================================= */
	.nh-doc {
		max-width: 880px;
		margin: 0 auto;
		padding: clamp(2rem, 4vw, 3.5rem) var(--nh-gutter);
		color: var(--nh-ink);
		line-height: 1.7;
		font-size: 0.98rem;
	}
	
	.nh-doc__date {
		color: var(--nh-muted);
		font-size: 0.88rem;
		margin: 0 0 1.5rem;
	}
	
	.nh-doc h2 {
		margin: 2rem 0 0.75rem;
		font-family: var(--nh-serif);
		font-weight: 500;
		font-size: clamp(1.3rem, 2vw, 1.6rem);
		color: var(--nh-ink);
	}
	
	.nh-doc p {
		margin: 0 0 1rem;
	}
	
	.nh-doc ul {
		margin: 0 0 1rem;
		padding-left: 1.25rem;
	}
	
	.nh-doc ul li {
		margin: 0.4rem 0;
	}
	
	.nh-doc ul li::marker {
		color: var(--nh-accent);
	}
	
	/* =========================================================
	   Wellness page
	   ========================================================= */
	.nh-wellness-hero,
	.nh-invest-hero {
		position: relative;
		width: 100%;
		min-height: clamp(400px, 48vw, 580px);
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.nh-wellness-hero__bg,
	.nh-invest-hero__bg {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.nh-wellness-hero__overlay,
	.nh-invest-hero__overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(5, 15, 7, 0.55) 0%, rgba(5, 15, 7, 0.65) 100%);
	}
	
	.nh-wellness-hero__inner,
	.nh-invest-hero__inner {
		position: relative;
		z-index: 2;
		max-width: 780px;
		width: 100%;
		padding: clamp(2rem, 5vw, 4rem) var(--nh-gutter);
		text-align: center;
		color: var(--nh-ink);
	}
	
	.nh-wellness-hero__title {
		font-size: clamp(2rem, 4vw, 3.25rem);
		margin: 0 0 1rem;
		max-width: 14ch;
		margin-left: auto;
		margin-right: auto;
	}
	
	.nh-wellness-hero__lede {
		margin: 0 auto 1.75rem;
		max-width: 44rem;
		color: var(--nh-ink);
		font-size: 0.95rem;
		line-height: 1.6;
	}
	
	/* Philosophy/Technology split */
	.nh-tech {
		max-width: var(--nh-shell);
		margin: 0 auto;
		padding: clamp(2rem, 4vw, 3.5rem) var(--nh-gutter);
		display: grid;
		grid-template-columns: 1fr 1.1fr;
		gap: clamp(1.5rem, 4vw, 4rem);
		align-items: center;
	}
	
	.nh-tech__media img {
		width: 100%;
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}
	
	.nh-tech__body .nh-eyebrow {
		margin-bottom: 0.75rem;
	}
	
	.nh-tech__body .nh-heading {
		margin-bottom: 1.25rem;
	}
	
	.nh-tech__body p {
		color: var(--nh-ink);
		margin: 0 0 1rem;
		font-size: 0.98rem;
		max-width: 34rem;
	}
	
	/* Therapy sections */
	.nh-therapies {
		max-width: var(--nh-shell);
		margin: 0 auto;
		padding: clamp(1rem, 2vw, 2rem) var(--nh-gutter) clamp(2rem, 4vw, 3rem);
		display: flex;
		flex-direction: column;
		gap: clamp(2rem, 4vw, 3.5rem);
	}
	
	.nh-therapy {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: clamp(1.5rem, 4vw, 4rem);
		align-items: center;
	}
	
	.nh-therapy--reverse .nh-therapy__media {
		order: 2;
	}
	
	.nh-therapy__media img {
		width: 100%;
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}
	
	.nh-therapy__body {
		color: var(--nh-ink);
	}
	
	.nh-therapy__body .nh-heading {
		margin-bottom: 0.9rem;
	}
	
	.nh-therapy__lede {
		margin: 0 0 1rem;
		font-size: 0.95rem;
	}
	
	.nh-therapy__label {
		margin: 1rem 0 0.5rem;
		font-size: 0.95rem;
		font-weight: 600;
		color: var(--nh-ink);
	}
	
	.nh-therapy__body .nh-list {
		padding-left: 1.1rem;
	}
	
	/* Enhance Your Stay */
	.nh-enhance {
		max-width: var(--nh-shell);
		margin: 0 auto;
		padding: clamp(2rem, 4vw, 3.5rem) var(--nh-gutter);
	}
	
	.nh-enhance>.nh-heading {
		margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
	}
	
	.nh-enhance__grid {
		list-style: none;
		margin: 0;
		padding: 0;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: clamp(1.25rem, 3vw, 2.5rem);
	}
	
	.nh-enhance__item {
		margin: 0;
	}
	
	.nh-enhance__icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		color: var(--nh-accent);
		margin-bottom: 0.9rem;
	}
	
	.nh-enhance__icon svg {
		width: 26px;
		height: 26px;
	}
	
	.nh-enhance__item h4 {
		margin: 0 0 0.4rem;
		font-size: 0.98rem;
		font-weight: 600;
		color: var(--nh-ink);
	}
	
	.nh-enhance__item p {
		margin: 0;
		color: var(--nh-muted);
		font-size: 0.9rem;
		line-height: 1.55;
}

/* Stillness CTA */
.nh-stillness {
	position: relative;
	width: 100%;
	min-height: clamp(320px, 40vw, 460px);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nh-stillness__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nh-stillness__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5, 15, 7, 0.55) 0%, rgba(5, 15, 7, 0.7) 100%);
}

.nh-stillness__inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
	padding: clamp(2rem, 5vw, 4rem) var(--nh-gutter);
	text-align: center;
	color: var(--nh-ink);
	}
	
	.nh-stillness__inner .nh-heading {
		margin: 0 0 0.75rem;
		font-size: clamp(1.6rem, 2.6vw, 2.4rem);
	}
	
	.nh-stillness__inner p {
		margin: 0 0 1.5rem;
		color: var(--nh-ink);
		font-size: 0.98rem;
	}
	
	.nh-cta-row {
		display: flex;
		gap: 0.75rem;
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.nh-btn--outline {
		background: transparent;
		color: var(--nh-ink);
		border: 1px solid var(--nh-ink);
	}
	
	.nh-btn--outline:hover {
		background: rgba(255, 255, 255, 0.1);
		transform: translateY(-1px);
	}
	
	/* =========================================================
	   Gallery page
	   ========================================================= */
	.nh-gallery {
		max-width: var(--nh-shell);
		margin: 0 auto;
		padding: clamp(3rem, 6vw, 5rem) var(--nh-gutter) clamp(2.5rem, 5vw, 4.5rem);
	}
	
	.nh-gallery__columns {
		display: grid;
		grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.14fr);
		gap: clamp(1.25rem, 2.6vw, 2.5rem);
		align-items: start;
	}
	
	.nh-gallery__column {
		display: grid;
		align-content: start;
		gap: clamp(1.25rem, 2.6vw, 2.5rem);
	}
	
	.nh-gallery__intro {
		max-width: 29rem;
		padding: clamp(0.5rem, 1vw, 1rem) 0;
		color: var(--nh-ink);
	}
	
	.nh-gallery__intro .nh-heading {
		margin: 0 0 1.25rem;
		font-size: clamp(2.5rem, 4vw, 4rem);
		line-height: 0.95;
	}
	
	.nh-gallery__intro p {
		margin: 0;
		max-width: 24rem;
		color: var(--nh-ink);
		font-size: clamp(1rem, 1.3vw, 1.15rem);
		line-height: 1.5;
	}
	
	.nh-gallery__card {
		position: relative;
		overflow: hidden;
		border-radius: 12px;
		background: #08120a;
	}
	
	.nh-gallery__card img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.4s ease;
	}
	
	.nh-gallery__card:hover img {
		transform: scale(1.04);
	}
	
	.nh-gallery__card--feature {
		aspect-ratio: 1.08 / 1.1;
	}
	
	.nh-gallery__card--portrait-lg {
		aspect-ratio: 0.84 / 1;
	}
	
	.nh-gallery__card--landscape-lg {
		aspect-ratio: 1.04 / 1;
	}
	
	.nh-gallery__card--landscape {
		aspect-ratio: 1.52 / 1;
	}
	
	.nh-gallery__card--square {
		aspect-ratio: 1.06 / 1;
	}
	
	.nh-gallery__card--portrait-sm {
		aspect-ratio: 0.86 / 1.12;
	}
	
	.nh-gallery__card--feature img {
		object-position: center 58%;
	}
	
	.nh-gallery__card--portrait-lg img {
		object-position: center 44%;
	}
	
	.nh-gallery__card--landscape-lg img {
		object-position: center 58%;
	}
	
	.nh-gallery__card--square img {
		object-position: center 42%;
	}
	
	.nh-gallery__card--portrait-sm img {
		object-position: center top;
	}
	
	/* =========================================================
	   Investment page
	   ========================================================= */
	.nh-invest-hero__title {
		font-size: clamp(2rem, 4.2vw, 3.5rem);
		margin: 0 0 1rem;
	}
	
	.nh-invest-hero__lede {
		margin: 0 auto 1.75rem;
		max-width: 40rem;
		color: var(--nh-ink);
		font-size: 0.98rem;
		line-height: 1.6;
}

.nh-opportunity,
.nh-value {
	max-width: var(--nh-shell);
	margin: 0 auto;
	padding: clamp(2rem, 4vw, 3.5rem) var(--nh-gutter);
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: center;
}

.nh-value--reverse .nh-value__media {
	order: 2;
}

.nh-opportunity__media img,
.nh-value__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.nh-opportunity__body .nh-eyebrow {
	margin-bottom: 0.75rem;
}

.nh-opportunity__body .nh-heading,
.nh-value__body .nh-heading {
	margin-bottom: 1.25rem;
}

.nh-opportunity__body p,
.nh-value__body p {
	color: var(--nh-ink);
	margin: 0 0 1rem;
	font-size: 0.98rem;
		line-height: 1.65;
		max-width: 34rem;
	}
	
	.nh-value__points {
		list-style: none;
		margin: 1rem 0;
		padding: 0;
		display: flex;
		flex-direction: column;
		gap: 0.9rem;
	}
	
	.nh-value__points li {
		display: grid;
		grid-template-columns: 34px 1fr;
		gap: 0.9rem;
		align-items: start;
		color: var(--nh-ink);
	}
	
	.nh-value__num {
		width: 28px;
		height: 28px;
		border-radius: 50%;
		border: 1px solid var(--nh-accent);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		color: var(--nh-accent);
		font-size: 0.85rem;
		font-weight: 500;
	}
	
	.nh-value__text {
		font-weight: 600;
		font-size: 0.95rem;
		line-height: 1.5;
		padding-top: 3px;
}

.nh-invest-cta {
	position: relative;
	width: 100%;
	min-height: clamp(320px, 38vw, 420px);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: clamp(1rem, 3vw, 2rem);
}

.nh-invest-cta__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nh-invest-cta__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5, 15, 7, 0.6) 0%, rgba(5, 15, 7, 0.7) 100%);
}

.nh-invest-cta__inner {
	position: relative;
	z-index: 2;
	max-width: 780px;
	padding: clamp(2rem, 5vw, 4rem) var(--nh-gutter);
	text-align: center;
	color: var(--nh-ink);
}
.nh-invest-cta__inner .nh-heading {
	margin: 0 0 0.75rem;
	font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

.nh-invest-cta__inner p {
	margin: 0 0 1.5rem;
	color: var(--nh-ink);
	font-size: 0.98rem;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

/* =========================================================
   Extra form controls (select, radio, right-icon input)
   ========================================================= */
.nh-input--select {
	padding: 0;
	position: relative;
}

.nh-input--select::after {
	content: '';
	position: absolute;
	right: 1.1rem;
	top: 50%;
	width: 10px;
	height: 10px;
	border-right: 2px solid #4b4b4b;
	border-bottom: 2px solid #4b4b4b;
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
}

.nh-input--select select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	background: transparent;
	border: 0;
	outline: none;
	padding: 0.9rem 2.5rem 0.9rem 1.1rem;
	font: inherit;
	color: #111;
	cursor: pointer;
}
.nh-input--select select:invalid {
	color: #8a8a8a;
}

.nh-input--select select option {
	color: #111;
}

.nh-input--icon-right {
	padding-right: 0.9rem;
}

.nh-input__icon--right {
	margin-left: 0.5rem;
	margin-right: 0;
}

.nh-field--radio {
	border: 0;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.nh-field--radio legend {
	font-size: 0.92rem;
	font-weight: 600;
	color: #111;
	margin: 0 0 0.5rem;
	padding: 0;
}

.nh-radio {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	cursor: pointer;
	font-size: 0.95rem;
	color: #333;
	position: relative;
}

.nh-radio input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.nh-radio__dot {
	width: 18px;
	height: 18px;
	border: 1px solid #9aa09c;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: #fff;
	transition: border-color 0.15s ease;
}

.nh-radio__dot::after {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--nh-accent);
	transform: scale(0);
	transition: transform 0.15s ease;
}
.nh-radio input:checked+.nh-radio__dot {
	border-color: var(--nh-accent);
}

.nh-radio input:checked+.nh-radio__dot::after {
	transform: scale(1);
}

/* =========================================================
   Responsive (new pages)
   ========================================================= */
@media (max-width: 900px) {

	.nh-tech,
	.nh-therapy,
	.nh-opportunity,
	.nh-value {
		grid-template-columns: 1fr;
	}

	.nh-therapy--reverse .nh-therapy__media {
		order: 0;
	}

	.nh-value--reverse .nh-value__media {
		order: 0;
	}

	.nh-enhance__grid {
		grid-template-columns: 1fr;
	}

	.nh-gallery__columns {
		grid-template-columns: 1fr;
	}

	.nh-gallery__intro {
		max-width: none;
	}

	.nh-gallery__intro p {
		max-width: 38rem;
	}

	.nh-gallery__card--feature {
		aspect-ratio: 1.4 / 1;
	}

	.nh-gallery__card--portrait-sm {
		aspect-ratio: 1.15 / 1;
	}
}

@media (max-width: 600px) {
	.nh-wellness-hero {
		min-height: 380px;
	}

	.nh-invest-hero {
		min-height: 400px;
	}

	.nh-gallery {
		padding-top: 2rem;
	}

	.nh-gallery__intro .nh-heading {
		font-size: clamp(2rem, 10vw, 2.8rem);
		line-height: 1;
	}
		.nh-gallery__card--feature,
		.nh-gallery__card--portrait-lg,
		.nh-gallery__card--landscape-lg,
		.nh-gallery__card--landscape,
		.nh-gallery__card--square,
		.nh-gallery__card--portrait-sm {
			aspect-ratio: 4 / 3;
		}
	
		.nh-cta-row {
			flex-direction: column;
			align-items: stretch;
		}
	
		.nh-cta-row .nh-btn {
			justify-content: center;
		}
}
