	@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

	/*.hmv-home play=sw*/

	/* ═══════════════════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════════════════ */
	*,
	.hmv-home *::before,
	.hmv-home *::after {
		box-sizing: border-box;
		margin: 0;
		padding: 0
	}

	.hmv-home img {
		max-width: 100%;
		height: auto
	}

	.hmv-home {
		--green: #1A3735;
		--green-deep: #08171500;
		--green-bg: #091916;
		--green-mid: #415957;
		--green-card: #111f1d;
		--gold: #926D1F;
		--gold-b: #b49b65;
		--gold-pale: #dacdb3;
		--gold-cream: #f6f3ec;
		--white: #FBFBFB;
		--nav-h: 0px;
	}

	.hmv-home {
		scroll-behavior: smooth
	}

	.hmv-home {
		font-family: 'Jost', sans-serif;
		background: #091916;
		color: var(--white);
		overflow-x: hidden;
		margin-top: 0;
		padding-top: 0
	}

	.hmv-home

	/* ═══════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════ */
	.wrap {
		max-width: 1450px;
		margin: 0 auto;
		padding: 0 24px
	}

	@media(min-width:640px) {
		.hmv-home .wrap {
			padding: 0 40px
		}
	}

	@media(min-width:1024px) {
		.hmv-home .wrap {
			padding: 0 60px
		}
	}

	.hmv-home .sh {
		text-align: center;
		margin-bottom: 52px;
		color: var(--green)
	}

	@media(min-width:768px) {
		.hmv-home .sh {
			margin-bottom: 70px
		}
	}

	.hmv-home .tag {
		font-size: 10px;
		letter-spacing: .35em;
		text-transform: uppercase;
		display: inline-flex;
		align-items: center;
		gap: 14px;
		margin-bottom: 16px;
	}

	.hmv-home .tag::before,
	.hmv-home .tag::after {
		content: '';
		height: 1px;
		width: 26px;
		opacity: .45
	}

	.hmv-home .tg {
		color: var(--gold-b)
	}

	.hmv-home .tg::before,
	.hmv-home .tg::after {
		background: var(--gold-b)
	}

	.hmv-home .tgd {
		color: var(--gold)
	}

	.hmv-home .tgd::before,
	.hmv-home .tgd::after {
		background: var(--gold)
	}

	.hmv-home .st {
		font-family: 'Cormorant Garamond', serif;
		font-size: clamp(24px, 3.5vw, 38px);
		font-weight: 300;
		line-height: 1.1
	}

	.hmv-home .st em {
		font-style: italic
	}

	.hmv-home .ss {
		font-size: 16px;
		font-weight: 300;
		line-height: 1.95;
		margin-top: 16px;
		max-width: 520px;
		margin-left: auto;
		margin-right: auto;
		color: var(--green-mid)
	}

	.hmv-home

	/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
	.btn-p,
	.hmv-home .btn-g,
	.hmv-home .btn-sm {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		font-family: 'Jost', sans-serif;
		font-size: 11px;
		font-weight: 600;
		letter-spacing: .22em;
		text-transform: uppercase;
		padding: 15px 32px;
		cursor: pointer;
		text-decoration: none;
		transition: all .25s;
		white-space: nowrap;
		border: none;
	}

	.hmv-home .btn-p {
		color: #091916;
		background: var(--gold-b)
	}

	.hmv-home .btn-p:hover {
		background: var(--gold);
		color: var(--gold-cream);
		transform: translateY(-2px);
		box-shadow: 0 8px 28px rgba(146, 109, 31, .3)
	}

	.hmv-home .btn-g {
		color: var(--gold-pale);
		background: transparent;
		border: 1px solid rgba(180, 155, 101, .3);
		font-weight: 400
	}

	.hmv-home .btn-g:hover {
		border-color: var(--gold-b);
		color: var(--gold-b)
	}

	.hmv-home .btn-sm {
		font-size: 10px;
		padding: 11px 24px;
		color: var(--gold-b);
		background: transparent;
		border: 1px solid rgba(180, 155, 101, .18);
		font-weight: 400
	}

	.hmv-home .btn-sm:hover {
		border-color: rgba(180, 155, 101, .4);
		background: rgba(180, 155, 101, .06)
	}

	.hmv-home

	/* ═══════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════ */
	@keyframes fadeUp {
		from {
			opacity: 0;
			transform: translateY(18px)
		}

		to {
			opacity: 1;
			transform: none
		}
	}

	@keyframes blink {

		0%,
		100% {
			opacity: 1
		}

		50% {
			opacity: .12
		}
	}

	@keyframes particle {
		0% {
			opacity: 0;
			transform: translateY(0) scale(0)
		}

		10% {
			opacity: .75;
			transform: translateY(-10px) scale(1.5)
		}

		90% {
			opacity: .15
		}

		100% {
			opacity: 0;
			transform: translateY(-260px) scale(.4)
		}
	}

	@keyframes marqueeScroll {
		from {
			transform: translateX(0)
		}

		to {
			transform: translateX(-50%)
		}
	}

	@keyframes orbFloat {

		0%,
		100% {
			transform: scale(1) translate(0, 0);
			opacity: .5
		}

		50% {
			transform: scale(1.06) translate(4px, -8px);
			opacity: .7
		}
	}

	@keyframes scrollPulse {

		0%,
		100% {
			opacity: .35;
			transform: scaleY(.5)
		}

		50% {
			opacity: .8;
			transform: scaleY(1)
		}
	}

	.hmv-home .fi {
		opacity: 0;
		transform: translateY(24px);
		transition: opacity .65s ease, transform .65s ease
	}

	.hmv-home .fi.on {
		opacity: 1;
		transform: none
	}

	.hmv-home

	/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
	.nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 200;
		height: var(--nav-h);
		display: flex;
		align-items: center;
		padding: 0 24px;
		background: #1A3735;
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		border-bottom: 1px solid rgba(180, 155, 101, .22);
		transition: box-shadow .3s;
	}

	@media(min-width:640px) {
		.hmv-home .nav {
			padding: 0 40px
		}
	}

	@media(min-width:1024px) {
		.hmv-home .nav {
			padding: 0 56px
		}
	}

	.hmv-home .nav.scrolled {
		box-shadow: 0 4px 32px rgba(0, 0, 0, .35)
	}

	.hmv-home

	/* Inner: logo | centre links | right controls */
	.nav-inner {
		width: 100%;
		max-width: 1280px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		gap: 0;
	}

	.hmv-home

	/* ── LOGO MARK ── */
	.nav-logo {
		display: flex;
		align-items: center;
		gap: 10px;
		text-decoration: none;
		flex-shrink: 0;
	}

	.hmv-home .nav-logo-mark {
		width: 36px;
		height: 36px;
		flex-shrink: 0;
	}

	.hmv-home .nav-logo-text {
		display: flex;
		flex-direction: column;
		line-height: 1;
	}

	.hmv-home .nav-logo-name {
		font-family: 'Cormorant Garamond', serif;
		font-size: 17px;
		font-weight: 500;
		letter-spacing: .18em;
		color: var(--gold-cream);
		text-transform: uppercase;
	}

	.hmv-home .nav-logo-sub {
		font-family: 'Jost', sans-serif;
		font-size: 9px;
		letter-spacing: .42em;
		text-transform: uppercase;
		color: var(--gold-b);
		margin-top: 3px;
		opacity: .7;
	}

	.hmv-home

	/* ── CENTRE LINKS ── */
	.nav-links {
		display: none;
		list-style: none;
		gap: 0;
		align-items: center;
		justify-content: center;
	}

	@media(min-width:860px) {
		.hmv-home .nav-links {
			display: flex
		}
	}

	.hmv-home .nav-links li {
		position: relative
	}

	.hmv-home .nav-links>li>a {
		display: flex;
		align-items: center;
		gap: 5px;
		font-family: 'Jost', sans-serif;
		font-size: 10px;
		font-weight: 400;
		letter-spacing: .2em;
		text-transform: uppercase;
		color: var(--gold-pale);
		text-decoration: none;
		opacity: .6;
		padding: 0 18px;
		height: var(--nav-h);
		transition: opacity .2s, color .2s;
		white-space: nowrap;
	}

	.hmv-home .nav-links>li>a:hover,
	.hmv-home .nav-links>li>a.active {
		opacity: 1;
		color: var(--gold-b)
	}

	.hmv-home

	/* NAD+ featured link */
	.nav-feat {
		color: var(--gold-b) !important;
		opacity: 1 !important
	}

	.hmv-home .nav-feat::after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 18px;
		right: 18px;
		height: 2px;
		background: var(--gold-b);
		opacity: .7;
	}

	.hmv-home

	/* Dropdown trigger arrow */
	.nav-arrow {
		width: 8px;
		height: 8px;
		opacity: .5;
		transition: transform .2s;
	}

	.hmv-home .nav-links li:hover .nav-arrow {
		transform: rotate(180deg);
		opacity: 1
	}

	.hmv-home

	/* ── MEGA DROPDOWN ── */
	.nav-dropdown {
		position: absolute;
		top: calc(var(--nav-h) - 2px);
		left: 50%;
		transform: translateX(-50%);
		background: rgba(8, 18, 16, .97);
		border: 1px solid rgba(180, 155, 101, .15);
		border-top: 2px solid var(--gold-b);
		padding: 24px;
		min-width: 480px;
		max-width: calc(100vw - 32px);
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 4px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity .2s, transform .2s;
		transform: translateX(-50%) translateY(8px);
		backdrop-filter: blur(20px);
	}

	.hmv-home .nav-links li:hover .nav-dropdown {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateX(-50%) translateY(0);
	}

	.hmv-home .nav-drop-item {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 10px 12px;
		text-decoration: none;
		border-radius: 2px;
		transition: background .15s;
	}

	.hmv-home .nav-drop-item:hover {
		background: rgba(180, 155, 101, .06)
	}

	.hmv-home .nav-drop-icon {
		width: 28px;
		height: 28px;
		border: 1px solid rgba(180, 155, 101, .2);
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		color: var(--gold-b);
	}

	.hmv-home .nav-drop-icon svg {
		width: 13px;
		height: 13px
	}

	.hmv-home .nav-drop-text {}

	.hmv-home .nav-drop-label {
		font-family: 'Jost', sans-serif;
		font-size: 10px;
		font-weight: 500;
		letter-spacing: .12em;
		text-transform: uppercase;
		color: var(--gold-pale);
		opacity: .85;
	}

	.hmv-home .nav-drop-sub {
		font-size: 10px;
		font-weight: 300;
		color: var(--gold-pale);
		opacity: .4;
		margin-top: 2px;
		letter-spacing: .02em;
	}

	.hmv-home

	/* ── RIGHT CONTROLS ── */
	.nav-right {
		display: flex;
		align-items: center;
		gap: 6px;
		flex-shrink: 0
	}

	.hmv-home .nav-country {
		display: none;
		align-items: center;
		gap: 5px;
		font-family: 'Jost', sans-serif;
		font-size: 10px;
		font-weight: 300;
		letter-spacing: .12em;
		color: var(--gold-pale);
		opacity: .6;
		background: none;
		border: none;
		cursor: pointer;
		padding: 8px 10px;
		transition: opacity .2s;
	}

	@media(min-width:640px) {
		.hmv-home .nav-country {
			display: flex
		}
	}

	.hmv-home .nav-country:hover {
		opacity: 1
	}

	.hmv-home .nav-country svg {
		width: 10px;
		height: 10px;
		opacity: .5
	}

	.hmv-home .nav-country-flag {
		font-size: 13px;
		line-height: 1
	}

	.hmv-home .nav-account {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		border: 1px solid rgba(180, 155, 101, .22);
		background: rgba(180, 155, 101, .06);
		color: var(--gold-pale);
		cursor: pointer;
		text-decoration: none;
		transition: border-color .2s, background .2s;
	}

	.hmv-home .nav-account:hover {
		border-color: rgba(180, 155, 101, .5);
		background: rgba(180, 155, 101, .12)
	}

	.hmv-home .nav-account svg {
		width: 15px;
		height: 15px;
		opacity: .7
	}

	.hmv-home .nav-cta {
		display: none;
		font-family: 'Jost', sans-serif;
		font-size: 9px;
		font-weight: 600;
		letter-spacing: .2em;
		text-transform: uppercase;
		padding: 9px 20px;
		background: var(--gold-b);
		color: #091916;
		border: none;
		cursor: pointer;
		text-decoration: none;
		transition: background .2s;
		margin-left: 6px;
		white-space: nowrap;
	}

	@media(min-width:720px) {
		.hmv-home .nav-cta {
			display: inline-flex;
			align-items: center
		}
	}

	.hmv-home .nav-cta:hover {
		background: var(--gold);
		color: #091916
	}

	.hmv-home

	/* ── HAMBURGER (mobile) ── */
	.nav-burger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		width: 36px;
		height: 36px;
		background: none;
		border: none;
		cursor: pointer;
		padding: 6px;
	}

	@media(min-width:860px) {
		.hmv-home .nav-burger {
			display: none
		}
	}

	.hmv-home .nav-burger span {
		display: block;
		height: 1px;
		background: var(--gold-pale);
		opacity: .7;
		transition: transform .25s, opacity .25s;
	}

	.hmv-home .nav-burger.open span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
		opacity: 1
	}

	.hmv-home .nav-burger.open span:nth-child(2) {
		opacity: 0
	}

	.hmv-home .nav-burger.open span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
		opacity: 1
	}

	.hmv-home

	/* ── MOBILE MENU DRAWER ── */
	.nav-drawer {
		position: fixed;
		top: var(--nav-h);
		left: 0;
		right: 0;
		background: rgba(8, 18, 16, .98);
		border-bottom: 1px solid rgba(180, 155, 101, .15);
		padding: 20px 24px 28px;
		transform: translateY(-8px);
		opacity: 0;
		visibility: hidden;
		transition: transform .25s, opacity .25s;
		z-index: 199;
	}

	.hmv-home .nav-drawer.open {
		transform: none;
		opacity: 1;
		visibility: visible
	}

	.hmv-home .nav-drawer-links {
		list-style: none;
		display: flex;
		flex-direction: column;
		gap: 0
	}

	.hmv-home .nav-drawer-links a {
		display: block;
		font-family: 'Jost', sans-serif;
		font-size: 11px;
		font-weight: 400;
		letter-spacing: .2em;
		text-transform: uppercase;
		color: var(--gold-pale);
		opacity: .65;
		text-decoration: none;
		padding: 14px 0;
		border-bottom: 1px solid rgba(180, 155, 101, .07);
		transition: opacity .2s, color .2s;
	}

	.hmv-home .nav-drawer-links a:hover,
	.hmv-home .nav-drawer-links a.dfeat {
		opacity: 1;
		color: var(--gold-b)
	}

	.hmv-home .nav-drawer-bottom {
		margin-top: 20px;
		display: flex;
		gap: 10px
	}

	.hmv-home .nav-drawer-cta {
		flex: 1;
		text-align: center;
		font-family: 'Jost', sans-serif;
		font-size: 10px;
		font-weight: 600;
		letter-spacing: .2em;
		text-transform: uppercase;
		padding: 12px;
		background: var(--gold-b);
		color: #091916;
		text-decoration: none;
	}

	.hmv-home .nav-drawer-login {
		flex: 1;
		text-align: center;
		font-family: 'Jost', sans-serif;
		font-size: 10px;
		font-weight: 400;
		letter-spacing: .2em;
		text-transform: uppercase;
		padding: 12px;
		border: 1px solid rgba(180, 155, 101, .25);
		color: var(--gold-pale);
		text-decoration: none;
	}

	.hmv-home .nav-divider {
		width: 100%;
		height: 1px;
		background: rgba(180, 155, 101, .1);
		margin: 8px 0
	}

	.hmv-home
	/* ═══════════════════════════════════════════════════
   HERO — DARK SPLIT SCREEN
═══════════════════════════════════════════════════ */
	/*.hero {
		display: grid;
		grid-template-columns: 1fr;
		position: relative;
		overflow: hidden;
		margin-top: 0;
	}*/

	.hero {
		display: flex;
		flex-direction: column;
		position: relative;
		overflow: hidden;
		margin-top: 0;
	}

	/*@media(min-width:860px) {
		.hmv-home .hero {
			grid-template-columns: 54% 46%;
			align-items: stretch;
		}
	}*/

	@media(min-width:860px) {
		.hmv-home .hero {
			display: grid;
			grid-template-columns: 54% 46%;
			align-items: stretch;
		}

		.hmv-home .hero-left {
			order: 1;
		}

		.hmv-home .hero-right {
			order: 2;
			height: 100%;
			max-height: unset;
			min-height: unset;
		}
	}

	.hmv-home

	/* LEFT: dark editorial panel — TEXT FIRST on mobile */
	.hero-left {
		background: #091916;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 48px 28px;
		position: relative;
		z-index: 2;
		order: 1;
	}

	@media(min-width:640px) {
		.hmv-home .hero-left {
			padding: 48px 52px
		}
	}

	@media(min-width:860px) {
		.hmv-home .hero-left {
			padding: 60px 64px
		}
	}

	@media(min-width:1100px) {
		.hmv-home .hero-left {
			padding: 72px 80px
		}
	}

	.hmv-home

	/* Subtle left-edge grain texture */
	.hero-left::after {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: 1px;
		background: rgba(180, 155, 101, .1);
	}

	.hmv-home

	/* RIGHT: image panel — appears second on mobile */
	.hero-right {
		position: relative;
		overflow: hidden;
		min-height: 260px;
		order: 2;
	}

	@media(min-width:860px) {
		.hmv-home .hero-right {
			min-height: unset;
			order: 2;
			height: 100%;
		}
	}

	.hmv-home .hero-right img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center 60%;
		display: block;
		min-height: 100%;
	}

	.hmv-home

	/* Dark left-edge fade blending into dark left panel */
	.hero-right-fade {
		position: absolute;
		inset: 0;
		pointer-events: none;
		background: linear-gradient(to right, rgba(9, 25, 22, .55) 0%, transparent 45%);
	}

	.hmv-home

	/* Bottom fade */
	.hero-right-foot {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 25%;
		background: linear-gradient(to top, rgba(9, 25, 22, .4), transparent);
		pointer-events: none;
	}

	.hmv-home

	/* Floating credential card on image */
	.hero-float-card {
		position: absolute;
		bottom: 28px;
		right: 22px;
		background: rgba(26, 55, 53, .88);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border: 1px solid rgba(180, 155, 101, .2);
		padding: 16px 20px;
		animation: fadeUp .9s .7s ease both;
	}

	@media(min-width:860px) {
		.hmv-home .hero-float-card {
			bottom: 36px;
			right: 28px
		}
	}

	.hmv-home .hfc-label {
		font-size: 10px;
		letter-spacing: .26em;
		text-transform: uppercase;
		color: var(--gold-b);
		opacity: .75;
		margin-bottom: 8px;
	}

	.hmv-home .hfc-pills {
		display: flex;
		flex-direction: column;
		gap: 5px
	}

	.hmv-home .hfc-pill {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 11px;
		font-weight: 300;
		color: var(--gold-pale);
		opacity: .85;
	}

	.hmv-home .hfc-pill svg {
		width: 11px;
		height: 11px;
		stroke: var(--gold-b);
		fill: none;
		stroke-width: 2.5;
		stroke-linecap: round;
		stroke-linejoin: round;
		flex-shrink: 0
	}

	.hmv-home

	/* Content inside left panel */
	.hero-eyebrow {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		font-size: 10px;
		letter-spacing: .26em;
		text-transform: uppercase;
		color: var(--gold-b);
		opacity: .8;
		margin-bottom: 14px;
		animation: fadeUp .8s .1s ease both;
	}

	.hmv-home .hero-eyebrow-dot {
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background: var(--gold);
		animation: blink 2s ease-in-out infinite;
	}

	.hmv-home .hero-heading {
		font-family: 'Cormorant Garamond', serif;
		font-weight: 400;
		line-height: 1.06;
		color: var(--gold-cream);
		letter-spacing: -.01em;
		margin-bottom: 12px;
		animation: fadeUp .9s .18s ease both;
	}

	.hmv-home .hero-l1 {
		display: block;
		font-size: clamp(20px, 3vw, 32px);
		font-weight: 400;
		color: var(--gold-cream);
		margin-bottom: 2px;
	}

	.hmv-home .hero-l2 {
		display: block;
		font-size: clamp(22px, 3vw, 36px);
		font-weight: 600;
		font-style: italic;
		color: var(--gold-b);
		line-height: 1;
	}

	.hmv-home .hero-tagline {
		font-size: 13px;
		font-weight: 300;
		line-height: 1.6;
		color: var(--gold-pale);
		opacity: .75;
		margin-bottom: 6px;
		animation: fadeUp .9s .26s ease both;
		display: flex;
		align-items: center;
		gap: 20px;
		flex-wrap: wrap;
	}

	.hmv-home .hero-tagline-sep {
		opacity: .3;
		font-size: 12px
	}

	.hmv-home .hero-rule {
		width: 48px;
		height: 1px;
		background: var(--gold);
		opacity: .45;
		margin: 16px 0;
		animation: fadeUp .9s .3s ease both;
	}

	.hmv-home .hero-sub {
		font-size: 14px;
		font-weight: 300;
		line-height: 1.75;
		color: var(--gold-pale);
		opacity: .7;
		margin-bottom: 20px;
		max-width: 600px;
		animation: fadeUp .9s .34s ease both;
	}

	.hmv-home .hero-actions {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 12px;
		animation: fadeUp .9s .42s ease both;
		margin-bottom: 16px;
		margin-top: 14px;
		align-items: center;
	}

	@media(min-width:560px) {
		.hmv-home .hero-actions {
			flex-direction: row;
			align-items: center;
			flex-wrap: wrap;
		}

	}

	.hmv-home

	/* Trust mini-badges */
	.hero-trust {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		animation: fadeUp .9s .52s ease both;
	}

	.hmv-home .hero-trust-badge {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		font-size: 10px;
		letter-spacing: .12em;
		text-transform: uppercase;
		color: var(--gold-pale);
		opacity: .7;
		border: 1px solid rgba(180, 155, 101, .18);
		padding: 7px 13px;
		background: rgba(180, 155, 101, .05);
	}

	.hmv-home .hero-trust-badge svg {
		width: 10px;
		height: 10px;
		stroke: var(--gold);
		fill: none;
		stroke-width: 2.5;
		stroke-linecap: round;
		stroke-linejoin: round
	}

	.hmv-home

	/* light-themed button overrides for hero-left */
	.btn-hero-p {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		font-family: 'Jost', sans-serif;
		font-size: 11px;
		font-weight: 600;
		letter-spacing: .22em;
		text-transform: uppercase;
		padding: 16px 32px;
		background: var(--gold-b);
		color: #091916;
		text-decoration: none;
		transition: all .25s;
		border: none;
		cursor: pointer;
		white-space: nowrap;
		width: auto;
	}

	.hmv-home .btn-hero-p:hover {
		background: var(--gold);
		transform: translateY(-2px)
	}

	.hmv-home .btn-hero-g {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		font-family: 'Jost', sans-serif;
		font-size: 10px;
		font-weight: 400;
		letter-spacing: .18em;
		text-transform: uppercase;
		padding: 14px 20px;
		/*background: transparent;
		color: var(--gold-pale);
		border: 1px solid rgba(180, 155, 101, .28);*/
		background: rgba(218, 205, 179, .10);
		color: #dacdb3;
		border: 1px solid rgba(218, 205, 179, .35);
		text-decoration: none;
		transition: all .25s;
		cursor: pointer;
		white-space: nowrap;
		width: auto;
	}

	.hmv-home .btn-hero-g:hover {
		border-color: var(--gold-b);
		color: var(--gold-b);
		background: rgba(180, 155, 101, .06)
	}

	.hmv-home .hero-actions-divider {
		font-size: 9px;
		letter-spacing: .22em;
		text-transform: uppercase;
		color: rgba(180, 155, 101, .65);
		align-self: center;
		display: block;
	}

	.hmv-home

	/* ═══ LOCKED PRICE ═══ */
	.price-locked {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		font-family: 'Jost', sans-serif;
		font-size: 10px;
		font-weight: 400;
		letter-spacing: .16em;
		text-transform: uppercase;
		color: var(--gold-b);
		opacity: .65;
		border: 1px solid rgba(180, 155, 101, .18);
		padding: 5px 11px;
		background: rgba(180, 155, 101, .04);
		text-decoration: none;
		transition: opacity .2s, border-color .2s;
		white-space: nowrap;
		cursor: default;
	}

	@media(min-width:1100px) {
		.hmv-home .price-locked {
			font-size: 10px;
			padding: 4px 8px;
			letter-spacing: .1em
		}
	}

	.hmv-home .price-locked:hover {
		opacity: 1;
		border-color: rgba(180, 155, 101, .38)
	}

	.hmv-home .price-locked svg {
		width: 10px;
		height: 10px;
		flex-shrink: 0;
		fill: none;
		stroke: var(--gold-b);
		stroke-width: 2.2;
		stroke-linecap: round;
		stroke-linejoin: round
	}

	.hmv-home

	/* ═══════════════════════════════════════════════════
   MARQUEE RIBBON
═══════════════════════════════════════════════════ */
	.marquee-ribbon {
		background: var(--gold-b);
		padding: 11px 0;
		overflow: hidden;
		position: relative;
		z-index: 50;
	}

	.hmv-home .marquee-track {
		display: flex;
		white-space: nowrap;
		animation: marqueeScroll 34s linear infinite;
	}

	.hmv-home .marquee-track:hover {
		animation-play-state: paused
	}

	.hmv-home .m-item {
		display: inline-flex;
		align-items: center;
		gap: 22px;
		font-size: 10px;
		letter-spacing: .28em;
		text-transform: uppercase;
		font-weight: 600;
		color: #091916;
		padding: 0 22px;
		flex-shrink: 0;
	}

	.hmv-home .m-dot {
		width: 4px;
		height: 4px;
		border-radius: 50%;
		background: #091916;
		opacity: .35;
		flex-shrink: 0
	}

	.hmv-home .m-icon {
		width: 14px;
		height: 14px;
		stroke: #091916;
		fill: none;
		stroke-width: 2;
		stroke-linecap: round;
		stroke-linejoin: round;
		opacity: .7;
		flex-shrink: 0
	}

	.hmv-home

	/* ═══════════════════════════════════════════════════
   FEATURED NAD+ SECTION — SPLIT SCREEN
═══════════════════════════════════════════════════ */
	.nad-section {
		background: #071412;
		position: relative;
		overflow: hidden;
	}

	.hmv-home

	/* ── Split layout ── */
	.nad-split {
		display: grid;
		grid-template-columns: 1fr;
		min-height: min(90vh, 800px);
	}

	@media(min-width:860px) {
		.hmv-home .nad-split {
			grid-template-columns: 48% 52%
		}
	}

	.hmv-home

	/* Left image panel */
	.nad-img-panel {
		position: relative;
		overflow: hidden;
		min-height: 320px;
		background: #050f0d;
	}

	@media(min-width:860px) {
		.hmv-home .nad-img-panel {
			min-height: unset
		}
	}

	.hmv-home .nad-img-panel img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center top;
		opacity: .65;
		filter: grayscale(20%) contrast(1.05);
		display: block;
	}

	.hmv-home .nad-img-left-fade {
		position: absolute;
		inset: 0;
		background: linear-gradient(to right, rgba(5, 15, 12, .2) 0%, rgba(5, 15, 12, .55) 100%);
		pointer-events: none;
	}

	.hmv-home .nad-img-bottom-fade {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 35%;
		background: linear-gradient(to top, rgba(5, 15, 12, .9), transparent);
		pointer-events: none;
	}

	.hmv-home

	/* Floating label on image */
	.nad-img-label {
		position: absolute;
		bottom: 28px;
		left: 28px;
		font-family: 'Cormorant Garamond', serif;
		font-size: 11px;
		letter-spacing: .28em;
		text-transform: uppercase;
		color: var(--gold-b);
		opacity: .7;
		border-left: 1px solid rgba(180, 155, 101, .35);
		padding-left: 14px;
		line-height: 1.6;
	}

	.hmv-home

	/* Right content panel */
	.nad-content-panel {
		padding: 52px 36px;
		background: #071412;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	@media(min-width:640px) {
		.hmv-home .nad-content-panel {
			padding: 64px 52px
		}
	}

	@media(min-width:1100px) {
		.hmv-home .nad-content-panel {
			padding: 72px 68px
		}
	}

	.hmv-home .nad-eyebrow {
		font-size: 10px;
		letter-spacing: .34em;
		text-transform: uppercase;
		color: var(--gold-b);
		margin-bottom: 18px;
		opacity: .8;
		display: flex;
		align-items: center;
		gap: 12px;
	}

	.hmv-home .nad-eyebrow::before {
		content: '';
		width: 24px;
		height: 1px;
		background: var(--gold-b);
		opacity: .5
	}

	.hmv-home .nad-big-title {
		font-family: 'Cormorant Garamond', serif;
		font-size: clamp(32px, 4vw, 48px);
		font-weight: 300;
		color: var(--gold-cream);
		line-height: .9;
		letter-spacing: -.02em;
		margin-bottom: 10px;
	}

	.hmv-home .nad-chem-name {
		font-size: 10px;
		letter-spacing: .3em;
		text-transform: uppercase;
		color: var(--gold-b);
		opacity: .65;
		margin-bottom: 24px;
	}

	.hmv-home .nad-description {
		font-size: 14px;
		font-weight: 300;
		line-height: 1.9;
		color: var(--gold-pale);
		opacity: .78;
		margin-bottom: 28px;
		max-width: 460px;
	}

	.hmv-home

	/* Stats 2×2 grid */
	.nad-stats {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1px;
		background: rgba(180, 155, 101, .1);
		border: 1px solid rgba(180, 155, 101, .1);
		margin-bottom: 28px;
	}

	.hmv-home .nad-stat {
		background: #071412;
		padding: 18px 20px;
		display: flex;
		flex-direction: column;
		gap: 5px;
		transition: background .25s;
	}

	.hmv-home .nad-stat:hover {
		background: rgba(26, 55, 53, .4)
	}

	.hmv-home .stat-val {
		font-family: 'Cormorant Garamond', serif;
		font-size: clamp(22px, 2.5vw, 32px);
		font-weight: 500;
		color: var(--gold-b);
		line-height: 1;
	}

	.hmv-home .stat-lbl {
		font-size: 9px;
		letter-spacing: .2em;
		text-transform: uppercase;
		color: var(--gold-pale);
		opacity: .5;
		line-height: 1.4;
	}

	.hmv-home

	/* Benefit checklist */
	.nad-checklist {
		list-style: none;
		display: flex;
		flex-direction: column;
		gap: 9px;
		margin-bottom: 30px;
	}

	.hmv-home .nad-checklist li {
		font-size: 14px;
		font-weight: 300;
		color: var(--gold-pale);
		opacity: .75;
		display: flex;
		align-items: center;
		gap: 11px;
		line-height: 1.45;
	}

	.hmv-home .nad-check {
		width: 18px;
		height: 18px;
		border: 1px solid rgba(180, 155, 101, .3);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}

	.hmv-home .nad-check svg {
		width: 10px;
		height: 10px;
		stroke: var(--gold-b);
		fill: none;
		stroke-width: 2.5;
		stroke-linecap: round;
		stroke-linejoin: round
	}

	.hmv-home

	/* Protocol tab pills */
	.nad-tab-row {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		margin-bottom: 28px
	}

	.hmv-home .nad-tab {
		font-size: 10px;
		letter-spacing: .16em;
		text-transform: uppercase;
		padding: 9px 16px;
		border: 1px solid rgba(180, 155, 101, .18);
		color: var(--gold-pale);
		opacity: .65;
		text-decoration: none;
		transition: all .25s;
		background: transparent;
	}

	.hmv-home .nad-tab:hover,
	.hmv-home .nad-tab.is-active {
		border-color: rgba(180, 155, 101, .45);
		color: var(--gold-b);
		opacity: 1;
		background: rgba(180, 155, 101, .06);
	}

	.hmv-home

	/* Below split: Protocol cards */
	.nad-protocols-wrap {
		padding: 56px 0 72px;
		border-top: 1px solid rgba(180, 155, 101, .07);
	}

	.hmv-home .nad-protocols-header {
		text-align: center;
		margin-bottom: 44px
	}

	.hmv-home .nad-protocols-header h3 {
		font-family: 'Cormorant Garamond', serif;
		font-size: clamp(20px, 2.5vw, 28px);
		font-weight: 300;
		color: var(--gold-cream);
	}

	.hmv-home .nad-protocols-header h3 em {
		font-style: italic;
		color: var(--gold-b)
	}

	.hmv-home .nad-protocols-header p {
		font-size: 13px;
		font-weight: 300;
		color: var(--gold-pale);
		opacity: .75;
		margin-top: 10px;
	}

	.hmv-home .nad-protocols {
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 40px;
	}

	@media(min-width:600px) {
		.hmv-home .nad-protocols {
			grid-template-columns: repeat(2, 1fr)
		}
	}

	@media(min-width:1000px) {
		.hmv-home .nad-protocols {
			grid-template-columns: repeat(4, 1fr)
		}
	}

	.hmv-home .proto-card {
		background: rgba(26, 55, 53, .22);
		border: 1px solid rgba(180, 155, 101, .09);
		padding: 26px 22px;
		display: flex;
		flex-direction: column;
		position: relative;
		overflow: hidden;
		cursor: pointer;
		text-decoration: none;
		transition: transform .3s ease, border-color .3s, background .3s;
	}

	.hmv-home .proto-card::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, rgba(180, 155, 101, .05) 0%, transparent 55%);
		opacity: 0;
		transition: opacity .3s;
	}

	.hmv-home .proto-card:hover {
		transform: translateY(-5px);
		border-color: rgba(180, 155, 101, .28);
		background: rgba(26, 55, 53, .48)
	}

	.hmv-home .proto-card:hover::before {
		opacity: 1
	}

	.hmv-home .proto-card.is-featured {
		border-color: rgba(180, 155, 101, .22);
		background: rgba(26, 55, 53, .4)
	}

	.hmv-home .proto-flag {
		position: absolute;
		top: 14px;
		right: 14px;
		font-size: 10px;
		letter-spacing: .2em;
		text-transform: uppercase;
		color: var(--gold-b);
		border: 1px solid rgba(180, 155, 101, .3);
		padding: 4px 10px;
		background: rgba(180, 155, 101, .07);
	}

	.hmv-home .proto-icon {
		width: 46px;
		height: 46px;
		border: 1px solid rgba(180, 155, 101, .15);
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 18px;
		flex-shrink: 0;
		color: var(--gold-b);
		transition: border-color .3s;
	}

	.hmv-home .proto-card:hover .proto-icon {
		border-color: rgba(180, 155, 101, .38)
	}

	.hmv-home .proto-icon svg {
		width: 20px;
		height: 20px;
		stroke: currentColor;
		fill: none;
		stroke-width: 1.5;
		stroke-linecap: round;
		stroke-linejoin: round
	}

	.hmv-home .proto-name {
		font-family: 'Cormorant Garamond', serif;
		font-size: 20px;
		font-weight: 500;
		color: var(--gold-cream);
		margin-bottom: 10px;
		line-height: 1.2;
	}

	.hmv-home .proto-desc {
		font-size: 13px;
		font-weight: 300;
		line-height: 1.8;
		color: var(--gold-pale);
		opacity: .68;
		margin-bottom: 18px;
		flex: 1;
	}

	.hmv-home .proto-perks {
		list-style: none;
		margin-bottom: 22px
	}

	.hmv-home .proto-perks li {
		font-size: 11.5px;
		font-weight: 300;
		color: var(--gold-pale);
		opacity: .62;
		padding: 3px 0;
		display: flex;
		align-items: flex-start;
		gap: 8px;
		line-height: 1.55;
	}

	.hmv-home .proto-perks li::before {
		content: '✦';
		color: var(--gold-b);
		font-size: 10px;
		margin-top: 4px;
		flex-shrink: 0;
		opacity: .7
	}

	.hmv-home .proto-link {
		font-size: 10px;
		letter-spacing: .2em;
		text-transform: uppercase;
		color: var(--gold-b);
		display: flex;
		align-items: center;
		gap: 6px;
		font-weight: 500;
		transition: gap .2s;
	}

	.hmv-home .proto-card:hover .proto-link {
		gap: 10px
	}

	.hmv-home .nad-footer-row {
		text-align: center
	}

	.hmv-home .nad-footer-row p {
		font-size: 12px;
		font-weight: 300;
		color: var(--gold-pale);
		opacity: .48;
		margin-bottom: 20px;
		letter-spacing: .04em;
	}

	.hmv-home

	/* ═══════════════════════════════════════════════════
   SHOP / COLLECTIONS  (light cream)
═══════════════════════════════════════════════════ */
	.shop-section {
		padding: 52px 0;
		background: #f0ece3
	}

	@media(min-width:900px) {
		.hmv-home .shop-section {
			padding: 72px 0
		}
	}

	.hmv-home .shop-heading {
		text-align: center;
		margin-bottom: 48px;
		color: var(--green)
	}

	.hmv-home .shop-heading h2 {
		font-family: 'Cormorant Garamond', serif;
		font-size: clamp(24px, 3vw, 36px);
		font-weight: 400;
		color: var(--green);
		line-height: 1.1;
		margin-bottom: 14px;
	}

	.hmv-home .shop-heading h2 em {
		font-style: italic;
		color: var(--gold)
	}

	.hmv-home .shop-heading p {
		font-size: 15px;
		font-weight: 300;
		color: var(--green-mid);
		max-width: 440px;
		margin: 0 auto;
		line-height: 1.85;
	}

	.hmv-home

	/* Filter tabs row */
	.shop-tabs {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px;
		margin-bottom: 48px;
	}

	.hmv-home .shop-tab {
		font-family: 'Jost', sans-serif;
		font-size: 10px;
		font-weight: 500;
		letter-spacing: .2em;
		text-transform: uppercase;
		padding: 11px 22px;
		border: 1px solid rgba(26, 55, 53, .22);
		color: var(--green);
		background: transparent;
		cursor: pointer;
		transition: all .25s;
	}

	.hmv-home .shop-tab:hover {
		border-color: var(--green);
		background: rgba(26, 55, 53, .05)
	}

	.hmv-home .shop-tab.active {
		background: var(--green);
		color: #f0ece3;
		border-color: var(--green)
	}

	.hmv-home

	/* Cards grid — 5 columns on wide, .hmv-home responsive down */
	.shop-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
	}

	@media(min-width:480px) {
		.hmv-home .shop-grid {
			grid-template-columns: repeat(2, 1fr)
		}
	}

	@media(min-width:768px) {
		.hmv-home .shop-grid {
			grid-template-columns: repeat(3, 1fr)
		}
	}

	@media(min-width:1100px) {
		.hmv-home .shop-grid {
			grid-template-columns: repeat(3, minmax(0, 1fr));
			gap: 14px;
		}

	}

	.hmv-home .shop-card {
		background: #fff;
		display: flex;
		flex-direction: column;
		text-decoration: none;
		cursor: pointer;
		transition: transform .32s ease, box-shadow .32s ease;
	}

	.hmv-home .shop-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 20px 52px rgba(26, 55, 53, .12)
	}

	.hmv-home

	/* Image wrap */
	.sc-img {
		position: relative;
		overflow: hidden;
		height: 200px;
		background: #d8d4cc
	}

	@media(min-width:768px) {
		.hmv-home .sc-img {
			height: 180px
		}
	}

	@media(min-width:1100px) {
		.hmv-home .sc-img {
			height: 150px
		}
	}

	.hmv-home .sc-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transition: transform .48s ease;
	}

	.hmv-home .shop-card:hover .sc-img img {
		transform: scale(1.05)
	}

	.hmv-home .sc-badge {
		position: absolute;
		top: 14px;
		left: 14px;
		font-family: 'Jost', sans-serif;
		font-size: 9px;
		font-weight: 600;
		letter-spacing: .18em;
		text-transform: uppercase;
		background: var(--green);
		color: #f0ece3;
		padding: 5px 13px;
	}

	.hmv-home

	/* Card body */
	.sc-body {
		padding: 18px 18px 12px;
		flex: 1;
		display: flex;
		flex-direction: column;
		border-bottom: 1px solid rgba(26, 55, 53, .06);
		;
		color: var(--green)
	}

	@media(min-width:1100px) {
		.hmv-home .sc-body {
			padding: 14px 14px 10px
		}
	}

	.hmv-home .sc-cat {
		font-size: 10px;
		letter-spacing: .24em;
		text-transform: uppercase;
		color: var(--gold);
		font-weight: 500;
		margin-bottom: 8px;
	}

	.hmv-home .sc-name {
		font-family: 'Cormorant Garamond', serif;
		font-size: 20px;
		font-weight: 400;
		color: var(--green);
		line-height: 1.2;
		margin-bottom: 8px;
	}

	@media(min-width:1100px) {
		.hmv-home .sc-name {
			font-size: 17px;
			margin-bottom: 6px
		}
	}

	.hmv-home .sc-desc {
		font-size: 14px;
		font-weight: 300;
		line-height: 1.8;
		color: var(--green-mid);
		opacity: .85;
		flex: 1;
	}

	.hmv-home

	/* Card footer */
	.sc-foot {
		padding: 13px 18px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 6px;
	}

	@media(min-width:1100px) {
		.hmv-home .sc-foot {
			padding: 10px 14px
		}
	}

	.hmv-home .sc-price {
		font-family: 'Cormorant Garamond', serif;
		font-size: 24px;
		font-weight: 400;
		color: var(--green);
	}

	.hmv-home .sc-cta {
		font-size: 10px;
		letter-spacing: .2em;
		text-transform: uppercase;
		color: var(--gold);
		font-weight: 600;
		display: flex;
		align-items: center;
		gap: 4px;
		transition: gap .2s;
	}

	.hmv-home .shop-card:hover .sc-cta {
		gap: 9px
	}

	.hmv-home

	/* Join row below grid */
	.shop-join {
		text-align: center;
		margin-top: 52px
	}

	.hmv-home .shop-join p {
		font-size: 12px;
		letter-spacing: .12em;
		text-transform: uppercase;
		color: var(--green-mid);
		opacity: .6;
		margin-bottom: 22px;
	}

	.hmv-home .btn-join {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		font-family: 'Jost', sans-serif;
		font-size: 11px;
		font-weight: 600;
		letter-spacing: .22em;
		text-transform: uppercase;
		padding: 16px 36px;
		background: var(--green);
		color: #f0ece3;
		text-decoration: none;
		transition: background .25s, transform .25s;
		border: none;
		cursor: pointer;
	}

	.hmv-home .btn-join:hover {
		background: var(--gold);
		transform: translateY(-2px)
	}

	.hmv-home

	/* ═══════════════════════════════════════════════════
   NAD+ DIFFERENTIATOR STRIP — "Why not IV?"
═══════════════════════════════════════════════════ */
	.nad-diff-strip {
		background: #050f0d;
		border-top: 1px solid rgba(180, 155, 101, .08);
		padding: 52px 0;
	}

	.hmv-home .diff-eyebrow {
		text-align: center;
		font-size: 9px;
		letter-spacing: .32em;
		text-transform: uppercase;
		color: var(--gold-b);
		opacity: .6;
		margin-bottom: 36px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
	}

	.hmv-home .diff-eyebrow::before,
	.hmv-home .diff-eyebrow::after {
		content: '';
		width: 48px;
		height: 1px;
		background: var(--gold-b);
		opacity: .25;
	}

	.hmv-home .diff-stats {
		display: grid;
		grid-template-columns: 1fr;
		gap: 1px;
		background: rgba(180, 155, 101, .07);
		border: 1px solid rgba(180, 155, 101, .07);
	}

	@media(min-width:600px) {
		.hmv-home .diff-stats {
			grid-template-columns: repeat(3, 1fr)
		}
	}

	.hmv-home .diff-stat {
		background: #050f0d;
		padding: 36px 28px;
		text-align: center;
		position: relative;
		transition: background .25s;
	}

	.hmv-home .diff-stat:hover {
		background: rgba(26, 55, 53, .3)
	}

	.hmv-home .diff-stat::before {
		content: '';
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 40px;
		height: 2px;
		background: linear-gradient(to right, var(--gold-b), var(--gold));
	}

	.hmv-home .diff-val {
		font-family: 'Cormorant Garamond', serif;
		font-size: clamp(22px, 2.2vw, 30px);
		font-weight: 300;
		color: var(--gold-b);
		line-height: 1;
		display: block;
		margin-bottom: 10px;
	}

	.hmv-home .diff-lbl {
		font-size: 11px;
		font-weight: 400;
		letter-spacing: .06em;
		color: var(--gold-pale);
		opacity: .75;
		display: block;
		margin-bottom: 6px;
	}

	.hmv-home .diff-sub {
		font-size: 10px;
		letter-spacing: .14em;
		text-transform: uppercase;
		color: var(--gold-b);
		opacity: .4;
		display: block;
	}

	.hmv-home .diff-compare-link {
		text-align: center;
		margin-top: 32px;
	}

	.hmv-home .diff-compare-link a {
		font-size: 10px;
		letter-spacing: .2em;
		text-transform: uppercase;
		color: var(--gold-b);
		opacity: .75;
		text-decoration: none;
		transition: opacity .2s;
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}

	.hmv-home .diff-compare-link a:hover {
		opacity: 1
	}

	.hmv-home

	/* ═══════════════════════════════════════════════════
   OUR APPROACH (SERVICES)
═══════════════════════════════════════════════════ */
	.approach-section {
		padding: 48px 0;
		background: #f4f1ea
	}

	@media(min-width:900px) {
		.hmv-home .approach-section {
			padding: 72px 0
		}
	}

	.hmv-home .approach-section .tag {
		color: var(--gold)
	}

	.hmv-home .approach-section .tag::before,
	.hmv-home .approach-section .tag::after {
		background: var(--gold)
	}

	.hmv-home .approach-section .st {
		color: var(--green)
	}

	.hmv-home .approach-section .st em {
		color: var(--gold)
	}

	.hmv-home .approach-section .ss {
		color: var(--green-mid)
	}

	.hmv-home .approach-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 20px
	}

	@media(min-width:560px) {
		.hmv-home .approach-grid {
			grid-template-columns: repeat(2, 1fr)
		}
	}

	@media(min-width:900px) {
		.hmv-home .approach-grid {
			grid-template-columns: repeat(3, 1fr);
			gap: 24px
		}
	}

	.hmv-home .approach-tile {
		background: #fff;
		border: 1px solid rgba(26, 55, 53, .07);
		border-radius: 2px;
		padding: 30px 26px;
		display: flex;
		flex-direction: column;
		transition: transform .3s, box-shadow .3s, border-color .3s;
		position: relative;
		overflow: hidden;
		opacity: 0;
		transform: translateY(28px);
	}

	.hmv-home .approach-tile.on {
		animation: tileIn .55s ease forwards
	}

	@keyframes tileIn {
		to {
			opacity: 1;
			transform: none
		}
	}

	.hmv-home .approach-tile::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 3px;
		background: linear-gradient(to right, var(--green), var(--gold-b));
		transform: scaleX(0);
		transform-origin: left;
		transition: transform .4s;
	}

	.hmv-home .approach-tile:hover {
		transform: translateY(-4px);
		box-shadow: 0 14px 44px rgba(26, 55, 53, .09);
		border-color: rgba(26, 55, 53, .15)
	}

	.hmv-home .approach-tile:hover::after {
		transform: scaleX(1)
	}

	.hmv-home .app-icon {
		width: 48px;
		height: 48px;
		border-radius: 50%;
		background: var(--green);
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 16px;
		flex-shrink: 0;
	}

	.hmv-home .app-icon svg {
		width: 22px;
		height: 22px;
		stroke: #fff;
		fill: none;
		stroke-width: 1.5;
		stroke-linecap: round;
		stroke-linejoin: round
	}

	.hmv-home .approach-tile h4 {
		font-size: 16px;
		font-weight: 600;
		color: var(--green);
		margin-bottom: 10px;
		line-height: 1.3
	}

	.hmv-home .approach-tile p {
		font-size: 14px;
		font-weight: 300;
		line-height: 1.85;
		color: var(--green-mid);
		opacity: .88;
		margin: 0
	}

	.hmv-home

	/* ═══════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════ */
	.cta-section {
		padding: 52px 0;
		background: var(--green);
		text-align: center;
		position: relative;
		overflow: hidden;
	}

	@media(min-width:900px) {
		.hmv-home .cta-section {
			padding: 72px 0
		}
	}

	.hmv-home .cta-orb {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 700px;
		height: 350px;
		background: radial-gradient(ellipse, rgba(180, 155, 101, .18) 0%, transparent 70%);
		pointer-events: none;
	}

	.hmv-home .cta-section .wrap {
		position: relative;
		z-index: 1
	}

	.hmv-home .cta-section h2 {
		font-family: 'Cormorant Garamond', serif;
		font-size: clamp(24px, 3vw, 36px);
		font-weight: 300;
		color: var(--gold-cream);
		line-height: 1.1;
		margin-bottom: 18px;
	}

	.hmv-home .cta-section h2 em {
		font-style: italic;
		color: var(--gold-b)
	}

	.hmv-home .cta-section p {
		font-size: 15px;
		font-weight: 300;
		color: var(--gold-pale);
		opacity: .78;
		max-width: 520px;
		margin: 0 auto 40px;
		line-height: 1.95;
	}

	.hmv-home .cta-actions {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 14px
	}

	@media(min-width:460px) {
		.hmv-home .cta-actions {
			flex-direction: row;
			justify-content: center
		}
	}

	.hmv-home .cta-note {
		margin-top: 26px;
		font-size: 11px;
		letter-spacing: .14em;
		color: var(--gold-pale);
		opacity: .4;
		text-transform: uppercase
	}

	.hmv-home

	/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
	.footer {
		background: #050f0d;
		border-top: 1px solid rgba(180, 155, 101, .08);
		padding: 52px 0 32px;
	}

	.hmv-home .footer-inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: 40px;
		margin-bottom: 48px;
	}

	@media(min-width:720px) {
		.hmv-home .footer-inner {
			grid-template-columns: 2fr 1fr 1fr 1fr;
			gap: 32px
		}
	}

	.hmv-home .footer-brand .footer-logo {
		font-family: 'Cormorant Garamond', serif;
		font-size: 22px;
		font-weight: 500;
		letter-spacing: .14em;
		color: var(--gold-cream);
		display: block;
		text-decoration: none;
		margin-bottom: 14px;
	}

	.hmv-home .footer-brand p {
		font-size: 13px;
		font-weight: 300;
		line-height: 1.85;
		color: var(--gold-pale);
		opacity: .75;
		max-width: 280px;
	}

	.hmv-home .footer-col h5 {
		font-size: 10px;
		letter-spacing: .28em;
		text-transform: uppercase;
		color: var(--gold-b);
		margin-bottom: 16px;
		opacity: .8;
	}

	.hmv-home .footer-col ul {
		list-style: none
	}

	.hmv-home .footer-col ul li {
		margin-bottom: 10px
	}

	.hmv-home .footer-col ul li a {
		font-size: 13px;
		font-weight: 300;
		color: var(--gold-pale);
		opacity: .75;
		text-decoration: none;
		transition: opacity .2s;
	}

	.hmv-home .footer-col ul li a:hover {
		opacity: .95
	}

	.hmv-home .footer-bottom {
		border-top: 1px solid rgba(180, 155, 101, .06);
		padding-top: 28px;
		display: flex;
		flex-direction: column;
		gap: 14px;
	}

	@media(min-width:640px) {
		.hmv-home .footer-bottom {
			flex-direction: row;
			justify-content: space-between;
			align-items: flex-start
		}
	}

	.hmv-home .footer-legal {
		font-size: 11px;
		font-weight: 300;
		line-height: 1.75;
		color: var(--gold-pale);
		opacity: .38;
		max-width: 640px;
	}

	.hmv-home .footer-copy {
		font-size: 11px;
		color: var(--gold-pale);
		opacity: .3;
		letter-spacing: .08em;
		white-space: nowrap;
	}

	.hmv-home

	/* ── Hero scroll teaser ── */
	.hero-scroll-teaser {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		margin-top: 22px;
		font-family: var(--sans);
		font-size: 11px;
		font-weight: 400;
		letter-spacing: .12em;
		text-transform: uppercase;
		color: var(--gold-b);
		opacity: .75;
		text-decoration: none;
		transition: opacity .2s, gap .2s;
	}

	.hmv-home .hero-scroll-teaser:hover {
		opacity: 1;
		gap: 9px
	}

	.hmv-home .hero-scroll-teaser svg {
		flex-shrink: 0;
		animation: bounce-arrow 1.8s ease-in-out infinite
	}

	@keyframes bounce-arrow {

		0%,
		100% {
			transform: translateY(0)
		}

		50% {
			transform: translateY(3px)
		}
	}

	.hmv-home

	/* ── FAQ Section ── */
	.faq-section {
		padding: 52px 0;
		background: var(--green)
	}

	@media(min-width:900px) {
		.hmv-home .faq-section {
			padding: 72px 0
		}
	}

	.hmv-home .faq-eyebrow {
		display: flex;
		align-items: center;
		gap: 12px;
		font-family: var(--sans);
		font-size: 10px;
		font-weight: 500;
		letter-spacing: .22em;
		text-transform: uppercase;
		color: var(--gold-b);
		justify-content: center;
		margin-bottom: 14px
	}

	.hmv-home .faq-eyebrow::before,
	.hmv-home .faq-eyebrow::after {
		content: '';
		flex: 0 0 28px;
		height: 1px;
		background: var(--gold-b);
		opacity: .4
	}

	.hmv-home .faq-heading {
		font-family: var(--serif);
		font-size: clamp(22px, 2.5vw, 32px);
		font-weight: 300;
		color: var(--cream);
		text-align: center;
		line-height: 1.15;
		margin-bottom: 56px;
	}

	.hmv-home .faq-heading em {
		font-style: italic;
		color: var(--gold-b)
	}

	.hmv-home .faq-grid {
		max-width: 820px;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.hmv-home .faq-item {
		border-bottom: 1px solid rgba(180, 155, 101, .18);
	}

	.hmv-home .faq-item:first-child {
		border-top: 1px solid rgba(180, 155, 101, .18)
	}

	.hmv-home .faq-item summary {
		list-style: none;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 22px 4px;
		cursor: pointer;
		font-family: var(--sans);
		font-size: 14px;
		font-weight: 400;
		letter-spacing: .04em;
		color: var(--cream);
		transition: color .2s;
	}

	.hmv-home .faq-item summary::-webkit-details-marker {
		display: none
	}

	.hmv-home .faq-item summary:hover {
		color: var(--gold-b)
	}

	.hmv-home .faq-item summary .faq-icon {
		flex-shrink: 0;
		width: 20px;
		height: 20px;
		border-radius: 50%;
		border: 1px solid rgba(180, 155, 101, .35);
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background .2s, border-color .2s;
	}

	.hmv-home .faq-item summary .faq-icon svg {
		transition: transform .25s
	}

	.hmv-home .faq-item[open] summary {
		color: var(--gold-b)
	}

	.hmv-home .faq-item[open] summary .faq-icon {
		background: var(--gold-b);
		border-color: var(--gold-b)
	}

	.hmv-home .faq-item[open] summary .faq-icon svg {
		transform: rotate(45deg)
	}

	.hmv-home .faq-body {
		padding: 0 4px 22px;
		font-family: var(--sans);
		font-size: 14px;
		font-weight: 300;
		line-height: 1.9;
		color: rgba(246, 243, 236, .75);
	}

	.hmv-home

	/* ═══ MOBILE-FIRST IMPROVEMENTS ═══ */
	.hmv-home .btn-join,
	.hmv-home .nav-cta,
	.hmv-home .nav-drawer-cta,
	.hmv-home .nav-drawer-login {
		min-height: 44px
	}

	@media(max-width:479px) {
		.hmv-home .hero-actions {
			flex-direction: column;
			align-items: stretch
		}

		.hmv-home .btn-hero-p,
		.hmv-home .btn-hero-g {
			width: 100%;
			justify-content: center
		}

		.hmv-home .cta-actions {
			flex-direction: column;
			align-items: center
		}

	}

	@media(max-width:380px) {
		.hmv-home .wrap {
			padding: 0 16px
		}
	}

	@media(max-width:859px) {
		.hmv-home .nav-dropdown {
			display: none !important
		}
	}

	.hmv-home .faq-body {
		overflow-wrap: break-word;
		word-break: break-word
	}

	/*
	word;
	word-break:break-word
	}*/

	.hmv-home .hero-float-card {
		bottom: 12px;
		right: 12px;
		padding: 10px 14px;
		max-width: 220px;
	}

	@media(min-width:860px) {
		.hmv-home .hero-float-card {
			bottom: 36px;
			right: 28px;
			padding: 16px 20px;
			max-width: 280px;
		}
	}

	/* Trust badges — inline wrap on mobile */
	@media(max-width:859px) {
		.hmv-home .hero-trust {
			display: flex;
			flex-direction: row;
			flex-wrap: wrap;
			gap: 6px;
		}

		.hmv-home .hero-trust-badge {
			font-size: 10px;
			padding: 5px 8px;
			flex: 0 0 auto;
		}

		/* Hide float card on mobile — it overlaps the logo */
		.hmv-home .hero-float-card {
			display: none;
		}
	}

	/* NAD+ section — mobile first */
	@media(max-width:859px) {
		.nad2-grid {
			display: flex;
			flex-direction: column;
		}

		.nad2-content {
			order: 1;
			border-left: none;
		}

		.nad2-imgcol {
			order: 2;
			height: 64vw;
			min-height: 240px;
			max-height: 380px;
		}

		.nad2-top {
			padding: 28px 20px 24px;
		}

		.nad2-cta-row {
			padding: 18px 20px;
			flex-direction: column;
			align-items: flex-start;
			gap: 14px;
		}

		.nad2-prac {
			margin-left: 0;
		}

		.nad2-stat {
			padding: 14px 10px;
		}

		.nad2-stat-num {
			font-size: 22px;
		}

		.nad2-stat-desc {
			font-size: 10px;
		}
	}

	@media(max-width:859px) {

		/* Fix text overflow */
		.nad2-hook {
			font-size: 13px;
			line-height: 1.75;
			overflow-wrap: break-word;
			word-break: break-word;
			max-width: 100%;
		}

		.nad2-trial-text {
			font-size: 12px;
			line-height: 1.7;
			overflow-wrap: break-word;
			word-break: break-word;
		}

		.nad2-headline {
			font-size: clamp(20px, 6vw, 28px);
			overflow-wrap: break-word;
		}

		.nad2-subname {
			font-size: 10px;
			letter-spacing: .08em;
			line-height: 1.6;
			overflow-wrap: break-word;
		}

		/* Fix stats getting cut off */
		.nad2-stats {
			width: 100%;
			overflow: hidden;
		}

		.nad2-stat-desc {
			font-size: 10px;
			letter-spacing: .06em;
			word-break: break-word;
		}

		/* Ensure content panel doesn't exceed screen */
		.nad2-content,
		.nad2-top {
			max-width: 100%;
			overflow: hidden;
		}
	}

	/* NAD+ section — mobile first */
	@media(max-width:859px) {
		.nad2-grid {
			display: flex;
			flex-direction: column;
		}

		.nad2-content {
			order: 1;
			border-left: none;
		}

		.nad2-imgcol {
			order: 2;
			height: 64vw;
			min-height: 240px;
			max-height: 380px;
		}

		.nad2-top {
			padding: 28px 20px 24px;
		}

		.nad2-cta-row {
			padding: 18px 20px;
			flex-direction: column;
			align-items: flex-start;
			gap: 14px;
		}

		.nad2-prac {
			margin-left: 0;
		}

		.nad2-stat {
			padding: 14px 10px;
		}

		.nad2-stat-num {
			font-size: 22px;
		}

		.nad2-stat-desc {
			font-size: 10px;
		}
	}

	@media(max-width:639px) {
		.nad2-btn {
			width: 100%;
			text-align: center;
			padding: 14px 20px;
			font-size: 9px;
		}

		.nad2-cta-row {
			flex-direction: column;
			align-items: flex-start;
			gap: 12px;
			padding: 18px 20px;
		}

		.nad2-prac {
			margin-left: 0;
			width: 100%;
			padding-top: 8px;
			border-top: 0.5px solid rgba(201, 169, 110, .12);
		}

		.nad2-link {
			font-size: 10px;
			letter-spacing: .14em;
		}
	}
