/* ==========================================================================
   HAVÆON — main stylesheet (vanilla CSS)
   ========================================================================== */

@font-face { font-family: "Inter"; src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url("../fonts/cormorant-garamond-latin-300-normal.woff2") format("woff2"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url("../fonts/cormorant-garamond-latin-300-italic.woff2") format("woff2"); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url("../fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url("../fonts/cormorant-garamond-latin-400-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url("../fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-display: swap; }

:root {
	--ink: #07080a;
	--ink-2: #0c0f12;
	--ink-3: #12171b;
	--line: rgba(255, 255, 255, .09);
	--line-2: rgba(255, 255, 255, .16);
	--text: #eef3f4;
	--muted: #9aa7ab;
	--dim: #66747a;
	--gold: #d8b56a;
	--gold-2: #f3d58b;
	--gold-3: #9c7a35;
	--ice: #bfe6ea;
	--aqua: #58d6e0;
	--aqua-2: #2aa3b3;
	--danger: #e0876e;
	--glass: rgba(255, 255, 255, .045);
	--glass-2: rgba(255, 255, 255, .075);
	--blur: 22px;
	--r: 22px;
	--r-sm: 14px;
	--serif: "Cormorant", "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--ease: cubic-bezier(.2, .7, .1, 1);
	--ease-out: cubic-bezier(.16, 1, .3, 1);
	--wrap: 1280px;
	--pad: clamp(20px, 4vw, 48px);
	color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--ink); }
body {
	margin: 0;
	background: var(--ink);
	color: var(--text);
	font: 400 16px/1.65 var(--sans);
	font-feature-settings: "ss01", "cv11";
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 6px; }

.hv-skip { position: absolute; left: -9999px; top: 8px; z-index: 999; background: var(--gold); color: var(--ink); padding: 8px 14px; border-radius: 8px; }
.hv-skip:focus { left: 8px; }

.hv-wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }
.hv-wrap--narrow { max-width: 980px; }
.hv-center { text-align: center; }
.hv-section { position: relative; padding-block: clamp(90px, 13vw, 180px); }
.hv-section--tight { padding-block: clamp(20px, 3vw, 36px); }

/* Typography ------------------------------------------------------------- */
.hv-eyebrow {
	display: inline-flex; align-items: center; gap: 12px;
	margin: 0 0 22px; font-size: 12px; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); font-weight: 600;
}
.hv-eyebrow::before { content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.hv-display {
	font-family: var(--serif); font-weight: 300; letter-spacing: -.015em; line-height: .98;
	font-size: clamp(54px, 8.6vw, 132px); margin: 0 0 28px;
}
.hv-display--md { font-size: clamp(44px, 6vw, 88px); }
.hv-title { font-family: var(--serif); font-weight: 300; font-size: clamp(38px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -.01em; margin: 0 0 22px; }
.hv-h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin: 0 0 18px; }
.hv-lead { font-size: clamp(17px, 1.45vw, 21px); line-height: 1.6; color: var(--muted); max-width: 640px; margin: 0 0 28px; }
.hv-muted { color: var(--muted); }
.hv-small { font-size: 13px; }
.hv-note { color: var(--dim); font-size: 13px; margin-top: 22px; }
.hv-link { color: var(--gold); border-bottom: 1px solid rgba(216, 181, 106, .35); padding-bottom: 2px; transition: border-color .3s; }
.hv-link:hover { border-color: var(--gold); }
.hv-head { margin-bottom: clamp(40px, 6vw, 80px); }
.hv-head--center { text-align: center; }
.hv-head--center .hv-lead { margin-inline: auto; }

/* Buttons ---------------------------------------------------------------- */
.hv-btn {
	--bg: var(--glass-2);
	position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 16px 26px; border-radius: 999px; font-size: 15px; font-weight: 500; letter-spacing: .01em;
	background: var(--bg); border: 1px solid var(--line-2); color: var(--text);
	transition: transform .5s var(--ease-out), background .3s, border-color .3s, box-shadow .4s;
	overflow: hidden; isolation: isolate; white-space: nowrap;
}
.hv-btn svg { width: 18px; height: 18px; flex: none; }
.hv-btn:hover { border-color: rgba(255, 255, 255, .32); }
.hv-btn--sm { padding: 10px 16px; font-size: 13px; }
.hv-btn--block { width: 100%; }
.hv-btn--glass { backdrop-filter: blur(var(--blur)); -webkit-backdrop-filter: blur(var(--blur)); }
.hv-btn--gold {
	background: linear-gradient(135deg, #f7e2a6 0%, var(--gold) 45%, #b08a42 100%);
	color: #120e05; border-color: transparent; font-weight: 600;
	box-shadow: 0 10px 40px -10px rgba(216, 181, 106, .55), inset 0 1px 0 rgba(255, 255, 255, .5);
}
.hv-btn--gold::after {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .65) 50%, transparent 80%);
	transform: translateX(-120%); transition: transform .9s var(--ease);
}
.hv-btn--gold:hover::after { transform: translateX(120%); }
.hv-btn--gold:hover { box-shadow: 0 16px 60px -12px rgba(216, 181, 106, .8), inset 0 1px 0 rgba(255, 255, 255, .5); }
.hv-btn[disabled] { opacity: .6; pointer-events: none; }

/* Glass ------------------------------------------------------------------ */
.hv-glass {
	position: relative;
	background: linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02) 60%);
	border: 1px solid var(--line);
	border-radius: var(--r);
	backdrop-filter: blur(var(--blur)) saturate(140%);
	-webkit-backdrop-filter: blur(var(--blur)) saturate(140%);
	box-shadow: 0 30px 80px -40px rgba(0, 0, 0, .8), inset 0 1px 0 rgba(255, 255, 255, .06);
}
.hv-glass::before {
	content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
	background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(243, 213, 139, .45), transparent 45%);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
	opacity: 0; transition: opacity .4s;
}
.hv-glass:hover::before { opacity: 1; }

/* Ambient layers --------------------------------------------------------- */
.hv-grain {
	position: fixed; inset: -50%; z-index: 90; pointer-events: none; opacity: .05;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
	animation: hvGrain 1.2s steps(6) infinite;
}
@keyframes hvGrain { 0% { transform: translate(0, 0); } 30% { transform: translate(-3%, 2%); } 60% { transform: translate(2%, -3%); } 100% { transform: translate(0, 0); } }
.hv-cursor {
	position: fixed; left: 0; top: 0; width: 520px; height: 520px; margin: -260px 0 0 -260px; z-index: 0; pointer-events: none;
	background: radial-gradient(circle, rgba(88, 214, 224, .07), rgba(216, 181, 106, .04) 35%, transparent 65%);
	transform: translate3d(var(--cx, -999px), var(--cy, -999px), 0); transition: opacity .6s; opacity: 0;
}
body.has-pointer .hv-cursor { opacity: 1; }

/* Loader ----------------------------------------------------------------- */
.hv-loader { position: fixed; inset: 0; z-index: 1000; background: var(--ink); display: grid; place-items: center; transition: opacity .9s var(--ease), visibility .9s; }
.hv-loader__word { font-family: var(--serif); font-weight: 300; font-size: clamp(42px, 8vw, 96px); letter-spacing: .28em; padding-left: .28em; color: var(--text); opacity: 0; animation: hvFadeUp 1.2s .15s var(--ease-out) forwards; }
.hv-loader__word span { color: var(--gold); }
.hv-loader__line { position: absolute; top: calc(50% + clamp(40px, 6vw, 70px)); left: 50%; height: 1px; width: 0; transform: translateX(-50%); background: linear-gradient(90deg, transparent, var(--gold-2), transparent); box-shadow: 0 0 20px var(--gold); animation: hvLine 1.4s .3s var(--ease) forwards; }
.hv-loader.is-done { opacity: 0; visibility: hidden; }
@keyframes hvLine { to { width: min(560px, 70vw); } }
@keyframes hvFadeUp { from { opacity: 0; transform: translateY(18px); filter: blur(8px); } to { opacity: 1; transform: none; filter: none; } }

/* Navigation ------------------------------------------------------------- */
.hv-nav { position: fixed; inset: 0 0 auto; z-index: 80; padding: calc(14px + env(safe-area-inset-top, 0px)) var(--pad) 0; transition: transform .6s var(--ease); }
.hv-nav__inner {
	max-width: calc(var(--wrap) - 2 * 0px); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px;
	padding: 12px 14px 12px 24px; border-radius: 999px; border: 1px solid transparent; transition: background .5s, border-color .5s, backdrop-filter .5s;
}
.hv-nav.is-scrolled .hv-nav__inner { background: rgba(10, 12, 14, .55); border-color: var(--line); backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%); }
.hv-nav.is-hidden { transform: translateY(-120%); }
.hv-logo { font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: .3em; }
.hv-logo span { color: var(--gold); }
.hv-logo--xl { font-size: clamp(40px, 6vw, 72px); letter-spacing: .22em; }
.hv-nav__links { display: flex; gap: 30px; font-size: 14px; color: var(--muted); }
.hv-nav__links a { position: relative; transition: color .3s; }
.hv-nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .45s var(--ease); }
.hv-nav__links a:hover, .hv-nav__links a.is-active { color: var(--text); }
.hv-nav__links a:hover::after, .hv-nav__links a.is-active::after { transform: scaleX(1); }
.hv-nav__right { display: flex; align-items: center; gap: 12px; }
.hv-lang { display: flex; padding: 3px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255, 255, 255, .03); }
.hv-lang button { font-size: 11px; letter-spacing: .12em; padding: 6px 10px; border-radius: 999px; color: var(--muted); transition: background .3s, color .3s; }
.hv-lang button[aria-pressed="true"] { background: var(--text); color: var(--ink); }
.hv-burger { display: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); position: relative; }
.hv-burger span { position: absolute; left: 12px; right: 12px; height: 1px; background: var(--text); transition: transform .4s var(--ease); }
.hv-burger span:first-child { top: 17px; } .hv-burger span:last-child { top: 24px; }
body.menu-open .hv-burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
body.menu-open .hv-burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.hv-drawer { position: fixed; inset: 0; z-index: 70; background: rgba(7, 8, 10, .92); backdrop-filter: blur(30px); display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 0 var(--pad); opacity: 0; visibility: hidden; transition: opacity .5s, visibility .5s; }
.hv-drawer a { font-family: var(--serif); font-size: clamp(34px, 9vw, 54px); font-weight: 300; transform: translateY(20px); opacity: 0; transition: transform .6s var(--ease-out), opacity .6s; }
body.menu-open .hv-drawer { opacity: 1; visibility: visible; }
body.menu-open .hv-drawer a { transform: none; opacity: 1; }
body.menu-open .hv-drawer a:nth-child(2) { transition-delay: .05s; } body.menu-open .hv-drawer a:nth-child(3) { transition-delay: .1s; }
body.menu-open .hv-drawer a:nth-child(4) { transition-delay: .15s; } body.menu-open .hv-drawer a:nth-child(5) { transition-delay: .2s; } body.menu-open .hv-drawer a:nth-child(6) { transition-delay: .25s; }

/* Pill ------------------------------------------------------------------- */
.hv-pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 12px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .04); backdrop-filter: blur(12px); font-size: 13px; color: var(--ice); margin: 0 0 28px; }
.hv-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 0 rgba(88, 214, 224, .6); animation: hvPing 2.4s infinite; }
@keyframes hvPing { 0% { box-shadow: 0 0 0 0 rgba(88, 214, 224, .55); } 80%, 100% { box-shadow: 0 0 0 12px rgba(88, 214, 224, 0); } }

/* Hero ------------------------------------------------------------------- */
.hv-hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 140px 0 90px; overflow: hidden; isolation: isolate; }
.hv-hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.hv-hero__glow {
	position: absolute; inset: 0; z-index: -1; pointer-events: none;
	background:
		radial-gradient(60% 55% at 72% 45%, rgba(42, 163, 179, .22), transparent 70%),
		radial-gradient(40% 40% at 70% 85%, rgba(216, 181, 106, .16), transparent 70%),
		radial-gradient(50% 60% at 10% 20%, rgba(88, 214, 224, .07), transparent 70%);
}
.hv-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 30%; background: linear-gradient(transparent, var(--ink)); z-index: -1; }
.hv-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 40px; }
.hv-hero__copy .hv-lead { max-width: 560px; }
.hv-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hv-hero__stage { position: relative; height: min(78vh, 760px); display: grid; place-items: center; perspective: 1200px; }
.hv-hero__bottle {
	height: min(74vh, 720px); width: auto; max-width: none; position: relative; z-index: 2;
	filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .6)) drop-shadow(0 0 40px rgba(88, 214, 224, .14));
	transform: translate3d(var(--px, 0), calc(var(--py, 0px) + var(--float, 0px)), 0) rotateY(var(--ry, 0deg)) rotateX(var(--rx, 0deg));
	transition: transform .9s var(--ease-out);
	animation: hvFloat 7s ease-in-out infinite;
}
@keyframes hvFloat { 50% { --float: -14px; translate: 0 -14px; } }
.hv-hero__caustic { position: absolute; bottom: 2%; left: 50%; width: 70%; height: 60px; transform: translateX(-50%); background: radial-gradient(50% 50% at 50% 50%, rgba(243, 213, 139, .45), transparent 70%); filter: blur(8px); animation: hvPulse 7s ease-in-out infinite; z-index: 1; }
@keyframes hvPulse { 50% { opacity: .55; transform: translateX(-50%) scaleX(.85); } }
.hv-orbit { position: absolute; inset: 8% -10%; z-index: 0; }
.hv-orbit span { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(191, 230, 234, .08); transform: rotateX(72deg); animation: hvSpin 26s linear infinite; }
.hv-orbit span:nth-child(2) { inset: 12%; border-color: rgba(216, 181, 106, .14); animation-duration: 38s; animation-direction: reverse; }
.hv-orbit span:nth-child(3) { inset: 26%; border-color: rgba(88, 214, 224, .1); animation-duration: 18s; }
.hv-orbit span::before { content: ""; position: absolute; top: -3px; left: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 14px var(--gold); }
@keyframes hvSpin { to { transform: rotateX(72deg) rotateZ(360deg); } }
.hv-scroll { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--dim); }
.hv-scroll span { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hv-scroll span::after { content: ""; position: absolute; inset: 0; background: var(--gold-2); transform: translateY(-100%); animation: hvDrip 2.2s var(--ease) infinite; }
@keyframes hvDrip { to { transform: translateY(100%); } }

/* Split / reveal --------------------------------------------------------- */
.hv-split .hv-w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; }
.hv-split .hv-w > i { display: inline-block; font-style: inherit; transform: translateY(110%); transition: transform 1.2s var(--ease-out); transition-delay: calc(var(--i) * 70ms + 200ms); }
.is-ready .hv-split .hv-w > i { transform: none; }
.hv-rise { opacity: 0; transform: translateY(24px); transition: opacity 1.2s var(--ease-out) .7s, transform 1.2s var(--ease-out) .7s; }
.hv-hero__cta.hv-rise { transition-delay: .9s; }
.is-ready .hv-rise { opacity: 1; transform: none; }
.hv-reveal { opacity: 0; transform: translateY(40px); transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out); transition-delay: var(--d, 0ms); }
.hv-reveal.is-in { opacity: 1; transform: none; }

/* Manifesto -------------------------------------------------------------- */
.hv-manifesto__text { font-family: var(--serif); font-weight: 300; font-size: clamp(30px, 4.2vw, 60px); line-height: 1.18; margin: 0; }
.hv-words .hv-word { color: rgba(238, 243, 244, .14); transition: color .5s; }
.hv-words .hv-word.is-lit { color: var(--text); }
.hv-words .hv-word.is-gold { color: var(--gold-2); }

/* Name ------------------------------------------------------------------- */
.hv-name__word { white-space: nowrap; font-family: var(--serif); font-weight: 300; font-size: clamp(64px, 14vw, 230px); line-height: .9; letter-spacing: .06em; text-align: center; margin: 0 0 50px; user-select: none; }
.hv-name__part { display: inline-block; transition: color .5s, text-shadow .5s, transform .6s var(--ease-out); background: linear-gradient(180deg, #fff, rgba(255, 255, 255, .45)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hv-name__part.is-gold { background: linear-gradient(180deg, var(--gold-2), var(--gold-3)); -webkit-background-clip: text; background-clip: text; }
.hv-name__word.has-focus .hv-name__part { opacity: .25; }
.hv-name__word.has-focus .hv-name__part.is-focus { opacity: 1; transform: translateY(-10px); }
.hv-name__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hv-name__card { padding: 34px; cursor: default; transition: transform .6s var(--ease-out), border-color .4s; }
.hv-name__card:hover { transform: translateY(-6px); border-color: rgba(216, 181, 106, .35); }
.hv-name__k { font-family: var(--serif); font-weight: 400; font-size: 44px; margin: 0 0 10px; color: var(--gold-2); letter-spacing: .06em; }
.hv-name__card p { margin: 0; color: var(--muted); }
.hv-name__say { text-align: center; color: var(--dim); letter-spacing: .24em; text-transform: uppercase; font-size: 12px; margin-top: 40px; }

/* Monolith --------------------------------------------------------------- */
.hv-mono { background: radial-gradient(70% 50% at 50% 30%, rgba(42, 163, 179, .08), transparent 70%); }
.hv-mono__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 100px); }
.hv-mono__sticky { position: relative; }
.hv-mono__stage { position: sticky; top: 12vh; height: 76vh; display: grid; place-items: center; }
.hv-mono__halo { position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(88, 214, 224, .18), transparent 65%); filter: blur(10px); transition: transform 1s var(--ease-out), background 1s; }
.hv-mono__bottle { position: relative; height: min(70vh, 680px); width: auto; max-width: none; transition: transform 1.2s var(--ease-out); transform-origin: 50% var(--oy, 50%); transform: scale(var(--sc, 1)) translateY(var(--ty, 0)); filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .6)); }
.hv-mono__stage[data-focus="1"] { --sc: 1; }
.hv-mono__stage[data-focus="2"] .hv-mono__bottle, .hv-mono__stage[data-focus="3"] .hv-mono__bottle { --sc: 1.7; --oy: 12%; }
.hv-mono__stage[data-focus="4"] .hv-mono__bottle { --sc: 1.25; --oy: 50%; }
.hv-mono__stage[data-focus="5"] .hv-mono__bottle { --sc: 1.6; --oy: 55%; }
.hv-mono__stage[data-focus="6"] .hv-mono__bottle { --sc: 1.9; --oy: 96%; }
.hv-mono__stage[data-focus="6"] .hv-mono__halo { background: radial-gradient(circle, rgba(243, 213, 139, .24), transparent 65%); }
.hv-mono__ring { position: absolute; left: 50%; border: 1px solid rgba(243, 213, 139, .7); border-radius: 50%; opacity: 0; transform: translate(-50%, -50%) scale(.6); transition: opacity .6s, transform .9s var(--ease-out); box-shadow: 0 0 30px rgba(216, 181, 106, .35); pointer-events: none; }
.hv-mono__ring[data-for="1"] { top: 50%; width: 46%; height: 96%; border-radius: 40px; }
.hv-mono__ring[data-for="2"] { top: 14.8%; width: 32%; height: 9%; }
.hv-mono__ring[data-for="3"] { top: 9%; width: 30%; height: 16%; border-radius: 20px; }
.hv-mono__ring[data-for="5"] { top: 55%; width: 16%; height: 44%; left: 57%; border-radius: 20px; }
.hv-mono__ring[data-for="6"] { top: 94%; width: 40%; height: 9%; }
.hv-mono__stage[data-focus="1"] .hv-mono__ring[data-for="1"], .hv-mono__stage[data-focus="2"] .hv-mono__ring[data-for="2"], .hv-mono__stage[data-focus="3"] .hv-mono__ring[data-for="3"], .hv-mono__stage[data-focus="5"] .hv-mono__ring[data-for="5"], .hv-mono__stage[data-focus="6"] .hv-mono__ring[data-for="6"] { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.hv-mono__stage[data-focus]:not([data-focus="1"]) .hv-mono__ring { display: none; }
.hv-mono__sizes { position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); margin: 0; font-size: 12px; letter-spacing: .3em; color: var(--dim); white-space: nowrap; }
.hv-mono__features { list-style: none; margin: 0; padding: 0; }
.hv-mono__feature { min-height: 62vh; display: flex; flex-direction: column; justify-content: center; opacity: .22; transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transform: translateX(10px); border-left: 1px solid var(--line); padding-left: clamp(24px, 3vw, 44px); position: relative; }
.hv-mono__feature::before { content: ""; position: absolute; left: -1px; top: 30%; bottom: 30%; width: 1px; background: linear-gradient(transparent, var(--gold), transparent); opacity: 0; transition: opacity .8s; }
.hv-mono__feature.is-on { opacity: 1; transform: none; }
.hv-mono__feature.is-on::before { opacity: 1; }
.hv-mono__num { font-size: 12px; letter-spacing: .3em; color: var(--gold); margin-bottom: 16px; }
.hv-mono__feature h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(34px, 3.8vw, 56px); line-height: 1.02; margin: 0 0 16px; }
.hv-mono__feature p { margin: 0; color: var(--muted); font-size: 18px; max-width: 460px; }

/* Star ------------------------------------------------------------------- */
.hv-star__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.hv-star__visual { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.hv-star__img { width: 86%; position: relative; z-index: 2; animation: hvRotate 60s linear infinite; filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .7)); transition: filter 1.2s; }
@keyframes hvRotate { to { transform: rotate(360deg); } }
.hv-star__sun { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(243, 213, 139, .0), transparent 60%); transition: background 1.4s var(--ease); z-index: 1; }
.hv-star__cast { position: absolute; left: 50%; top: 50%; width: 120%; aspect-ratio: 1; transform: translate(-50%, -50%) scale(.6); opacity: 0; z-index: 3; mix-blend-mode: screen; pointer-events: none; transition: opacity 1.4s var(--ease), transform 1.6s var(--ease-out);
	background: conic-gradient(from -90deg, transparent 0 16deg, rgba(243, 213, 139, .35) 18deg, transparent 20deg 88deg, rgba(243, 213, 139, .35) 90deg, transparent 92deg 160deg, rgba(243, 213, 139, .35) 162deg, transparent 164deg 232deg, rgba(243, 213, 139, .35) 234deg, transparent 236deg 304deg, rgba(243, 213, 139, .35) 306deg, transparent 308deg);
	-webkit-mask: radial-gradient(circle, #000 10%, transparent 62%); mask: radial-gradient(circle, #000 10%, transparent 62%); }
.hv-star.is-sun .hv-star__sun { background: radial-gradient(circle at 50% 50%, rgba(243, 213, 139, .35), transparent 60%); }
.hv-star.is-sun .hv-star__cast { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.hv-star.is-sun .hv-star__img { filter: drop-shadow(0 0 60px rgba(243, 213, 139, .55)) brightness(1.15); }
.hv-star__btn[aria-pressed="true"] { border-color: var(--gold); color: var(--gold-2); }

/* Origin & map ----------------------------------------------------------- */
.hv-origin__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.hv-stats { display: grid; gap: 18px; margin-top: 36px; }
.hv-stat { display: grid; grid-template-columns: 170px 1fr; gap: 20px; align-items: center; padding-top: 18px; border-top: 1px solid var(--line); }
.hv-stat strong { font-family: var(--serif); font-weight: 300; font-size: 54px; line-height: 1; color: var(--gold-2); }
.hv-stat strong b { font-weight: 300; }
.hv-stat span { color: var(--muted); font-size: 15px; }
.hv-map { margin: 0; padding: 18px; overflow: hidden; }
.hv-map svg { width: 100%; height: auto; display: block; }
.hv-map__coast { stroke: rgba(191, 230, 234, .4); stroke-width: 1.5; stroke-dasharray: 3 6; }
.hv-map__route { fill: none; stroke: rgba(243, 213, 139, .75); stroke-width: 1.6; filter: drop-shadow(0 0 4px rgba(216,181,106,.6)); stroke-dasharray: 600; stroke-dashoffset: 600; transition: stroke-dashoffset 2.2s var(--ease); transition-delay: calc(var(--i) * 140ms); }
.hv-map.is-in .hv-map__route { stroke-dashoffset: 0; }
.hv-map__pt circle { fill: var(--aqua); }
.hv-map__pt.w2 circle { fill: var(--ice); } .hv-map__pt.w3 circle { fill: var(--gold-2); }
.hv-map__pt .hv-map__pulse { fill: none; stroke: currentColor; color: var(--aqua); stroke-width: 1.5; transform-box: fill-box; transform-origin: center; animation: hvRing 2.8s calc(var(--i) * 300ms) infinite; }
.hv-map__pt.w3 .hv-map__pulse { color: var(--gold-2); }
@keyframes hvRing { from { transform: scale(1); opacity: .9; } to { transform: scale(4.5); opacity: 0; } }
.hv-map__pt text { fill: var(--muted); font: 500 15px var(--sans); text-anchor: middle; letter-spacing: .04em; }
.hv-map__pt { opacity: 0; transition: opacity .8s; transition-delay: calc(var(--i) * 140ms + 1s); }
.hv-map.is-in .hv-map__pt { opacity: 1; }
.hv-map__hub { fill: var(--gold-2); filter: drop-shadow(0 0 10px var(--gold)); }
.hv-map__hubtext { fill: var(--gold-2); font: 600 15px var(--sans); letter-spacing: .3em; text-anchor: middle; }
.hv-map figcaption { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; font-size: 12px; color: var(--dim); padding: 8px 6px 2px; }
.hv-map figcaption em { margin-left: auto; font-style: normal; }
.hv-leg::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 7px; background: var(--aqua); }
.hv-leg.w2::before { background: var(--ice); } .hv-leg.w3::before { background: var(--gold-2); }

/* Ecosystem -------------------------------------------------------------- */
.hv-eco__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hv-eco__card { padding: 30px 26px 34px; min-height: 300px; transform-style: preserve-3d; transition: transform .6s var(--ease-out), border-color .4s; }
.hv-eco__n { display: block; font-size: 12px; letter-spacing: .3em; color: var(--gold); margin-bottom: 60px; }
.hv-eco__card h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin: 0 0 12px; }
.hv-eco__card p { margin: 0; color: var(--muted); font-size: 15px; }
.hv-eco__sheet { margin: 60px 0 0; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }

/* Numbers ---------------------------------------------------------------- */
.hv-numbers { background: linear-gradient(180deg, transparent, rgba(42, 163, 179, .05) 40%, transparent); }
.hv-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 18px; }
.hv-kpi { padding: 28px; }
.hv-kpi strong { display: block; font-family: var(--serif); font-weight: 300; font-size: clamp(44px, 4.6vw, 68px); line-height: 1; margin-bottom: 10px; background: linear-gradient(180deg, #fff, var(--ice)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hv-kpi:nth-child(2) strong { background: linear-gradient(180deg, var(--gold-2), var(--gold)); -webkit-background-clip: text; background-clip: text; }
.hv-kpi span { color: var(--muted); font-size: 14px; }
.hv-chart { padding: 26px; position: relative; }
.hv-chart__tabs { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; border: 1px solid var(--line); margin-bottom: 16px; }
.hv-chart__tabs button, .hv-seg button, .hv-tabs button { padding: 9px 18px; border-radius: 999px; font-size: 13px; color: var(--muted); transition: background .35s, color .35s; }
.hv-chart__tabs button.is-on, .hv-seg button.is-on, .hv-tabs button.is-on { background: var(--text); color: var(--ink); }
.hv-chart__canvas { width: 100%; height: 380px; display: block; }
.hv-chart__tip { position: absolute; pointer-events: none; padding: 10px 14px; border-radius: 12px; background: rgba(10, 12, 14, .9); border: 1px solid var(--line-2); font-size: 13px; white-space: nowrap; transform: translate(-50%, -120%); }
.hv-chart__tip b { display: block; font-size: 18px; color: var(--gold-2); font-weight: 500; }

/* Discipline ------------------------------------------------------------- */
.hv-disc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hv-flip { perspective: 1200px; height: 250px; text-align: left; padding: 0; }
.hv-flip__inner { position: relative; display: block; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 1s var(--ease-out); }
.hv-flip[aria-pressed="true"] .hv-flip__inner { transform: rotateY(180deg); }
.hv-flip__face { position: absolute; inset: 0; display: flex; flex-direction: column; padding: 30px; border-radius: var(--r); border: 1px solid var(--line); backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.hv-flip__front { background: linear-gradient(160deg, rgba(224, 135, 110, .09), rgba(255, 255, 255, .02)); }
.hv-flip__back { transform: rotateY(180deg); background: linear-gradient(160deg, rgba(88, 214, 224, .12), rgba(216, 181, 106, .06)); border-color: rgba(88, 214, 224, .25); justify-content: center; font-size: 17px; line-height: 1.55; color: var(--text); }
.hv-flip__x { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(224, 135, 110, .5); color: var(--danger); margin-bottom: auto; }
.hv-flip__x svg { width: 16px; height: 16px; }
.hv-flip__t { font-family: var(--serif); font-size: 30px; line-height: 1.1; font-weight: 400; margin-bottom: 10px; }
.hv-flip__hint { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); }
.hv-flip:hover .hv-flip__front { border-color: rgba(224, 135, 110, .35); }

/* Roadmap ---------------------------------------------------------------- */
.hv-road__track { position: relative; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr); gap: 0; overflow-x: auto; padding: 0 var(--pad) 20px; scroll-snap-type: x mandatory; max-width: var(--wrap); margin: 0 auto; scrollbar-width: none; }
.hv-road__track::-webkit-scrollbar { display: none; }
.hv-road__line { position: absolute; left: var(--pad); right: var(--pad); top: 11px; height: 1px; background: var(--line-2); }
.hv-road__line span { position: absolute; inset: 0; background: linear-gradient(90deg, var(--aqua), var(--gold)); transform-origin: left; transform: scaleX(var(--p, 0)); transition: transform 2s var(--ease); }
.hv-road__step { position: relative; padding: 50px 30px 0 0; scroll-snap-align: start; }
.hv-road__dot { position: absolute; top: 4px; left: 0; width: 15px; height: 15px; border-radius: 50%; border: 1px solid var(--gold); background: var(--ink); }
.hv-road__step.is-final .hv-road__dot { background: var(--gold); box-shadow: 0 0 20px var(--gold); }
.hv-road__step h3 { font-family: var(--serif); font-weight: 400; font-size: 32px; margin: 0 0 10px; }
.hv-road__step.is-final h3 { color: var(--gold-2); }
.hv-road__step p { margin: 0; color: var(--muted); font-size: 15px; }

/* Founder ---------------------------------------------------------------- */
.hv-quote { margin: 0; }
.hv-quote p { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(30px, 3.8vw, 54px); line-height: 1.2; margin: 0 0 40px; }
.hv-quote p::before { content: "“"; color: var(--gold); }
.hv-quote p::after { content: "”"; color: var(--gold); }
.hv-quote footer { display: flex; align-items: center; gap: 18px; }
.hv-quote footer img, .hv-mono-gram { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.hv-mono-gram { display: grid; place-items: center; border: 1px solid var(--gold); color: var(--gold-2); font-family: var(--serif); font-size: 22px; letter-spacing: .1em; }
.hv-quote footer strong { display: block; font-weight: 500; }
.hv-quote footer em { font-style: normal; color: var(--muted); font-size: 14px; }

/* Investors & forms ------------------------------------------------------ */
.hv-inv { background: radial-gradient(60% 60% at 20% 60%, rgba(216, 181, 106, .08), transparent 70%); }
.hv-inv__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.hv-inv__pair { width: min(360px, 70%); margin-top: 30px; filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .6)); }
.hv-inv__panel { padding: clamp(24px, 3vw, 40px); }
.hv-tabs { display: flex; gap: 4px; padding: 4px; border-radius: 999px; border: 1px solid var(--line); margin-bottom: 28px; }
.hv-tabs button { flex: 1; }
.hv-form { display: grid; gap: 14px; }
.hv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hv-field { position: relative; display: block; font-size: 13px; color: var(--muted); }
.hv-field input, .hv-field select, .hv-field textarea {
	width: 100%; padding: 26px 16px 10px; border-radius: var(--r-sm); border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03);
	color: var(--text); font: 400 15px var(--sans); transition: border-color .3s, background .3s, box-shadow .3s; appearance: none; -webkit-appearance: none;
}
.hv-field textarea { resize: vertical; min-height: 96px; }
.hv-field select { cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.hv-field select option { background: var(--ink-2); }
.hv-field > span { position: absolute; left: 17px; top: 18px; pointer-events: none; transition: transform .3s var(--ease), color .3s, font-size .3s; transform-origin: left; }
.hv-field input:focus + span, .hv-field input:not(:placeholder-shown) + span,
.hv-field textarea:focus + span, .hv-field textarea:not(:placeholder-shown) + span,
.hv-field--select > span { transform: translateY(-11px) scale(.82); color: var(--gold); }
.hv-field input:focus, .hv-field select:focus, .hv-field textarea:focus { outline: none; border-color: rgba(216, 181, 106, .6); background: rgba(255, 255, 255, .05); box-shadow: 0 0 0 4px rgba(216, 181, 106, .08); }
.hv-field.is-bad input { border-color: var(--danger); }
.hv-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.hv-check input { margin-top: 3px; accent-color: var(--gold); }
.hv-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hv-form__msg { margin: 0; min-height: 22px; font-size: 14px; }
.hv-form__msg.is-ok { color: var(--aqua); }
.hv-form__msg.is-err { color: var(--danger); }
.hv-form.is-sent { opacity: .6; pointer-events: none; }
.hv-lockart { width: 64px; height: 64px; margin: 0 auto 10px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(216, 181, 106, .45); color: var(--gold-2); background: radial-gradient(circle, rgba(216, 181, 106, .15), transparent 70%); }
.hv-lockart svg { width: 26px; height: 26px; }
.hv-lockart--xl { width: 96px; height: 96px; margin-bottom: 30px; }
.hv-lockart--xl svg { width: 36px; height: 36px; }

/* Journal ---------------------------------------------------------------- */
.hv-journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hv-card { overflow: hidden; transition: transform .6s var(--ease-out); }
.hv-card__link { display: block; height: 100%; }
.hv-card__img img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; transition: transform 1.2s var(--ease-out); }
.hv-card:hover .hv-card__img img { transform: scale(1.05); }
.hv-card__body { display: block; padding: 26px; }
.hv-card time { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.hv-card h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; line-height: 1.1; margin: 10px 0; }
.hv-card p { color: var(--muted); font-size: 15px; }
.hv-page { padding-top: 90px; min-height: 70vh; }
.hv-article__head { padding-bottom: 30px; }
.hv-article__hero { margin: 0 0 50px; border-radius: var(--r); overflow: hidden; }
.hv-prose { font-size: 18px; line-height: 1.8; color: #d6dee0; padding-bottom: 80px; }
.hv-prose h2, .hv-prose h3 { font-family: var(--serif); font-weight: 400; color: var(--text); line-height: 1.15; }
.hv-prose h2 { font-size: 42px; } .hv-prose h3 { font-size: 32px; }
.hv-prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.hv-prose blockquote { border-left: 1px solid var(--gold); margin: 30px 0; padding-left: 24px; font-family: var(--serif); font-size: 28px; font-style: italic; }
.hv-article__nav, .hv-pager { padding-bottom: 80px; color: var(--muted); }
.hv-article__nav .nav-links { display: flex; justify-content: space-between; gap: 20px; }
.hv-pager .nav-links { display: flex; gap: 10px; }
.hv-pager .page-numbers { padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; }
.hv-pager .current { background: var(--text); color: var(--ink); }

/* Data room -------------------------------------------------------------- */
.hv-room { position: relative; padding-top: 60px; }
.hv-room__bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(50% 40% at 80% 10%, rgba(216, 181, 106, .12), transparent 70%), radial-gradient(40% 40% at 10% 40%, rgba(42, 163, 179, .1), transparent 70%); }
.hv-room__locked { min-height: 86vh; display: grid; place-items: center; }
.hv-room__locked .hv-lead { margin-inline: auto; }
.hv-room__form { max-width: 460px; margin: 10px auto 26px; padding: 26px; text-align: left; }
.hv-room__head { padding-bottom: 20px; }
.hv-room__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 18px; }
.hv-room__docs, .hv-room__terms { padding: clamp(24px, 3vw, 36px); }
.hv-docs { list-style: none; margin: 0; padding: 0; }
.hv-docs li { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; padding: 16px 0; border-top: 1px solid var(--line); }
.hv-docs li:first-child { border-top: 0; }
.hv-docs__ic { position: relative; width: 50px; height: 58px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line-2); color: var(--ice); }
.hv-docs__ic svg { width: 22px; height: 22px; }
.hv-docs__ic em { position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); font-style: normal; font-size: 9px; letter-spacing: .1em; padding: 2px 6px; border-radius: 6px; background: var(--gold); color: var(--ink); font-weight: 700; }
.hv-docs__meta strong { display: block; font-weight: 500; }
.hv-docs__meta small { color: var(--dim); }
.hv-term { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.hv-term strong { font-family: var(--serif); font-weight: 400; font-size: 34px; line-height: 1; color: var(--gold-2); }
.hv-term b { color: var(--text); font-weight: 500; }
.hv-room__terms .hv-btn { margin-top: 18px; }
.hv-explorer { padding: clamp(24px, 3vw, 40px); }
.hv-explorer__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 26px; }
.hv-seg { display: flex; flex-wrap: wrap; gap: 4px; padding: 4px; border-radius: 999px; border: 1px solid var(--line); }
.hv-explorer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.hv-metric { padding: 22px; border-radius: var(--r-sm); border: 1px solid var(--line); background: rgba(255, 255, 255, .02); }
.hv-metric strong { display: block; font-family: var(--serif); font-weight: 300; font-size: 46px; line-height: 1; margin-bottom: 8px; transition: color .4s; }
.hv-metric span { color: var(--muted); font-size: 13px; }
.hv-metric__bar { display: block; height: 3px; margin-top: 16px; border-radius: 3px; background: rgba(255, 255, 255, .06); overflow: hidden; }
.hv-metric__bar b { display: block; height: 100%; width: var(--w, 0%); background: linear-gradient(90deg, var(--aqua-2), var(--gold)); transition: width 1s var(--ease-out); }
.hv-metric.is-neg strong { color: var(--danger); }

/* Footer ----------------------------------------------------------------- */
.hv-footer { position: relative; border-top: 1px solid var(--line); padding: 90px 0 calc(34px + env(safe-area-inset-bottom, 0px)); background: linear-gradient(180deg, transparent, rgba(216, 181, 106, .04)); }
.hv-footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 50px; }
.hv-footer__tag { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--muted); margin: 8px 0 0; }
.hv-footer__cols { display: flex; gap: 60px; flex-wrap: wrap; }
.hv-footer h4 { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; font-weight: 600; }
.hv-footer ul { list-style: none; margin: 0; padding: 0; }
.hv-footer li, .hv-footer p { margin: 0 0 8px; color: var(--muted); font-size: 15px; }
.hv-footer a:hover { color: var(--text); }
.hv-social a { margin-right: 14px; }
.hv-footer__legal { font-size: 12px; line-height: 1.7; color: var(--dim); max-width: 920px; border-top: 1px solid var(--line); padding-top: 24px; }
.hv-footer__bottom { display: flex; justify-content: space-between; gap: 20px; font-size: 12px; color: var(--dim); margin-top: 20px; }

/* Tilt helper ------------------------------------------------------------ */
.hv-tilt { transform: perspective(900px) rotateX(var(--tx, 0deg)) rotateY(var(--ty2, 0deg)) translateY(var(--lift, 0)); }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1080px) {
	.hv-nav__links { display: none; }
	.hv-burger { display: block; }
	.hv-eco__grid, .hv-kpis, .hv-explorer__grid { grid-template-columns: repeat(2, 1fr); }
	.hv-disc__grid, .hv-journal__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
	.hv-hero { padding-top: 120px; }
	.hv-hero__grid, .hv-star__grid, .hv-origin__grid, .hv-inv__grid, .hv-room__grid, .hv-mono__grid { grid-template-columns: 1fr; }
	.hv-hero__stage { height: 50vh; order: -1; margin-top: -10px; }
	.hv-hero__bottle { height: 48vh; }
	.hv-mono__bottle { height: 46vh; }
	.hv-hero__copy { text-align: left; }
	.hv-name__cards { grid-template-columns: 1fr; }
	.hv-mono__stage { position: relative; top: 0; height: 56vh; }
	.hv-mono__stage .hv-mono__bottle { --sc: 1 !important; }
	.hv-mono__ring { display: none; }
	.hv-mono__feature { min-height: 0; opacity: 1; transform: none; padding-block: 26px; }
	.hv-inv__pair { display: none; }
	.hv-stat { grid-template-columns: 1fr; gap: 6px; }
	.hv-nav .hv-btn--sm { display: none; }
}
@media (max-width: 560px) {
	.hv-eco__grid, .hv-kpis, .hv-disc__grid, .hv-journal__grid, .hv-explorer__grid, .hv-row { grid-template-columns: 1fr; }
	.hv-docs li { grid-template-columns: auto 1fr; }
	.hv-docs li .hv-btn { grid-column: 1 / -1; }
	.hv-term { grid-template-columns: 1fr; }
	.hv-chart__canvas { height: 300px; }
	.hv-map figcaption em { margin-left: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
	.hv-reveal, .hv-rise { opacity: 1; transform: none; }
	.hv-split .hv-w > i { transform: none; }
	.hv-grain { display: none; }
}

/* ---------- Grand 1.5 L ---------- */
.hv-grand { background: radial-gradient(60% 50% at 75% 50%, rgba(216, 181, 106, .07), transparent 70%); }
.hv-grand__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.hv-grand__visual { position: relative; display: grid; place-items: center; min-height: 560px; }
.hv-grand__halo { position: absolute; width: 80%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(88, 214, 224, .16), rgba(216, 181, 106, .08) 45%, transparent 68%); filter: blur(12px); animation: hvBreathe 7s ease-in-out infinite; }
.hv-grand__bottle { position: relative; height: min(66vh, 620px); width: auto; filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .65)); transition: transform 1.2s var(--ease-out); }
.hv-grand__visual:hover .hv-grand__bottle { transform: translateY(-8px) rotate(-1.5deg); }
.hv-grand__uses { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 12px; }
.hv-grand__uses li { padding: 18px 22px; border-radius: var(--r-sm); display: grid; gap: 4px; transition: transform .5s var(--ease-out), border-color .5s; }
.hv-grand__uses li:hover { transform: translateX(6px); border-color: rgba(216, 181, 106, .45); }
.hv-grand__uses strong { font-weight: 600; color: var(--gold-2); }
.hv-grand__uses span { color: var(--muted); font-size: 15px; }
.hv-grand__spec { margin-top: 26px; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--ice); opacity: .8; }
@keyframes hvBreathe { 0%, 100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.08); opacity: 1; } }
@media (max-width: 860px) {
	.hv-grand__grid { grid-template-columns: 1fr; }
	.hv-grand__visual { order: -1; min-height: 420px; }
	.hv-grand__bottle { height: 400px; }
}
@media (prefers-reduced-motion: reduce) { .hv-grand__halo { animation: none; } }
