/*
Theme Name: Horizon Ventures
Theme URI: https://horizonvgp.com
Author: Horizon Ventures
Description: Luxury single-page theme for Horizon Ventures — a diversified KSA business group delivering integrated construction, supply, and manpower solutions. Dark abyss palette, bronze accents, Cormorant Garamond + Inter.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: horizon-ventures
*/

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --background: 213 60% 3%;
  --foreground: 214 32% 91%;
  --card: 213 55% 8%;
  --primary: 36 47% 46%;
  --accent: 191 65% 28%;
  --border: 213 40% 14%;
  --ring: 36 47% 46%;
  --radius: 0.25rem;
  --abyss: #050A0F;
  --obsidian: #0D1B2A;
  --bronze: #B07D3A;
  --bronze-light: #D4A057;
  --teal: #1A6B7C;
  --silver: #E2E8F0;
  --silver-dim: #94A3B8;
}

/* ============================================================
   2. BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--abyss);
  color: var(--silver);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  cursor: none; /* custom cursor replaces it */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.1em;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: none; background: none; border: none; color: inherit; }
input, textarea, select { cursor: none; }

::selection { background-color: var(--bronze); color: var(--abyss); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--abyss); }
::-webkit-scrollbar-thumb { background: var(--bronze); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--bronze-light); }

/* Touch devices: restore native cursor, hide custom one */
@media (hover: none) and (pointer: coarse) {
  body, button, input, textarea, a { cursor: auto; }
  .hv-cursor-wrap { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   3. CUSTOM CLASSES (per brief)
   ============================================================ */
.cursor-dot {
  width: 12px; height: 12px;
  background: var(--bronze);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid var(--bronze);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
}
.cursor-expanded .cursor-dot { width: 8px; height: 8px; background: var(--bronze-light); }
.cursor-expanded .cursor-ring { width: 60px; height: 60px; opacity: 1; border-color: var(--bronze-light); }

.copper-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze), var(--bronze-light), var(--bronze), transparent);
  opacity: 0.4;
}

.blueprint-overlay {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9997;
  background-image:
    linear-gradient(rgba(226,232,240,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226,232,240,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.blueprint-flash { opacity: 1; }

.glass-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(226,232,240,0.3);
  color: var(--silver);
  outline: none;
  width: 100%;
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s;
  border-radius: 0;
}
.glass-input:focus { border-bottom-color: var(--bronze); }
.glass-input::placeholder { color: rgba(226,232,240,0.4); }
textarea.glass-input { resize: none; }

.btn-angled { clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%); }

@keyframes fragmentBuild {
  0%   { opacity: 0; transform: translateY(20px) skewX(-5deg); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0) skewX(0); filter: blur(0); }
}
.stat-build { animation: fragmentBuild 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }

.subsidiary-pillar { transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease; }

@keyframes scrollPulse {
  0%, 100% { height: 30px; opacity: 1; }
  50%      { height: 60px; opacity: 0.4; }
}
.scroll-pulse-line { animation: scrollPulse 2s ease-in-out infinite; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both; }

/* JS-driven reveal pattern (replaces Framer Motion) */
.reveal { opacity: 0; transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1); }
.reveal-y  { transform: translateY(30px); }
.reveal-y40{ transform: translateY(40px); }
.reveal-xl { transform: translateX(-40px); }
.reveal-xr { transform: translateX(40px); }
.reveal.is-visible { opacity: 1; transform: translate(0, 0); }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container-hv { max-width: 80rem; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 768px) { .container-hv { padding-left: 3rem; padding-right: 3rem; } }

.label-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bronze);
}
.label-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }

/* ============================================================
   5. NAVBAR
   ============================================================ */
.hv-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9990;
  padding: 1.5rem 0;
  transition: padding 0.4s ease, background-color 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
  transform: translateY(-80px); opacity: 0;
  animation: navIn 1s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}
@keyframes navIn { to { transform: translateY(0); opacity: 1; } }
.hv-nav.is-scrolled {
  padding: 0.75rem 0;
  background: rgba(5,10,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(176,125,58,0.15);
}
.hv-nav-inner { display: flex; align-items: center; justify-content: space-between; }
.hv-nav-logo img { height: 2.5rem; width: auto; object-fit: contain; }
.hv-nav-links { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 1024px) { .hv-nav-links { display: flex; } }
.hv-nav-link {
  font-family: 'Inter', sans-serif; font-size: 0.875rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--silver-dim);
  transition: color 0.3s;
}
.hv-nav-link:hover { color: var(--bronze); }
.hv-nav-cta {
  display: none;
  font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--bronze); color: var(--abyss);
  padding: 0.625rem 1.5rem;
  transition: background-color 0.3s;
}
@media (min-width: 1024px) { .hv-nav-cta { display: inline-block; } }
.hv-nav-cta:hover { background: var(--bronze-light); }
.hv-nav-burger { display: inline-flex; color: var(--silver); padding: 0.25rem; }
@media (min-width: 1024px) { .hv-nav-burger { display: none; } }

/* Mobile menu */
.hv-mobile-menu {
  position: fixed; inset: 0; z-index: 9989;
  background: rgba(5,10,15,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.25rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.hv-mobile-menu.is-open { transform: translateX(0); }
.hv-mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem; font-weight: 300;
  color: var(--silver);
  letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s;
}
.hv-mobile-link:hover { color: var(--bronze); }
.hv-mobile-menu.is-open .hv-mobile-link { opacity: 1; transform: translateY(0); }
.hv-mobile-cta {
  font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--bronze); color: var(--abyss);
  padding: 0.75rem 2rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s, background-color 0.3s;
}
.hv-mobile-menu.is-open .hv-mobile-cta { opacity: 1; transform: translateY(0); }
.hv-mobile-cta:hover { background: var(--bronze-light); }

/* ============================================================
   6. HERO
   ============================================================ */
.hv-hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hv-hero-bg { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.hv-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.15);
}
.hv-hero-gradient {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(5,10,15,0.65) 0%, rgba(5,10,15,0.3) 40%, rgba(5,10,15,0.9) 100%);
}
.hv-hero-teal {
  position: absolute; left: 0; right: 0; bottom: 0; height: 40%; z-index: 2;
  background: radial-gradient(ellipse at 50% 100%, rgba(26,107,124,0.18) 0%, transparent 70%);
}
.hv-hero-ghost {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; text-transform: uppercase;
  letter-spacing: 0.2em;
  color: transparent;
  white-space: nowrap;
  font-size: clamp(80px, 22vw, 320px);
  -webkit-text-stroke: 1px rgba(176,125,58,0.12);
  pointer-events: none;
  will-change: transform;
}
.hv-hero-content {
  position: relative; z-index: 20;
  padding: 0 1.5rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}
.hv-hero-logo {
  height: 6rem; width: auto; object-fit: contain;
  margin: 0 auto 2rem;
  opacity: 0; transform: scale(0.8);
  animation: heroLogo 1.2s cubic-bezier(0.16,1,0.3,1) 0s forwards;
}
@keyframes heroLogo { to { opacity: 1; transform: scale(1); } }
@media (min-width: 768px) { .hv-hero-logo { height: 8rem; } }
.hv-hero-label { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.hv-hero-label .copper-line { width: 4rem; }
.hv-hero-label span {
  font-family: 'Inter', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--bronze);
}
.hv-hero h1 {
  font-weight: 300; text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: clamp(18px, 4vw, 56px);
  color: var(--silver);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.hv-hero h1 .line-2 { color: var(--bronze-light); display: block; }
.hv-hero p {
  font-family: 'Inter', sans-serif; font-size: 1rem;
  max-width: 36rem; margin: 0 auto 2.5rem;
  color: rgba(226,232,240,0.7);
  line-height: 1.8;
}
.hv-hero-btns { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .hv-hero-btns { flex-direction: row; } }
.btn-primary {
  background: var(--bronze); color: var(--abyss);
  font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.75rem 2rem;
  transition: background-color 0.3s;
  display: inline-block;
}
.btn-primary:hover { background: var(--bronze-light); }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(176,125,58,0.4);
  color: var(--silver);
  font-family: 'Inter', sans-serif; font-size: 0.875rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.75rem 2rem;
  transition: border-color 0.3s, color 0.3s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--bronze); color: var(--bronze-light); }
.hv-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  opacity: 0;
  animation: scrollIn 0.8s ease 1.5s forwards;
}
@keyframes scrollIn { to { opacity: 1; } }
.hv-scroll-indicator span {
  font-family: 'Inter', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(176,125,58,0.7);
}
.hv-scroll-indicator .scroll-pulse-line {
  width: 1px; min-height: 30px;
  background: var(--bronze);
}

/* ============================================================
   7. ABOUT
   ============================================================ */
.hv-about {
  position: relative;
  padding: 10rem 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.95) 0%, rgba(5,10,15,1) 100%);
  overflow: hidden;
}
.hv-about-texture {
  position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
  background-size: cover; background-position: center;
  opacity: 0.1;
}
.hv-about-texture-fade {
  position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
  background: linear-gradient(90deg, rgba(5,10,15,1) 0%, transparent 100%);
}
.hv-about > .copper-line { position: absolute; left: 0; right: 0; }
.hv-about > .copper-line.line-top { top: 0; }
.hv-about > .copper-line.line-bottom { bottom: 0; }
.hv-about-grid {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: 1fr; gap: 5rem;
  align-items: center;
}
@media (min-width: 1024px) { .hv-about-grid { grid-template-columns: 1fr 1fr; } }
.hv-about .label-row .copper-line { width: 3rem; }
.hv-about h2 {
  font-weight: 300; text-transform: uppercase;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--silver);
}
.hv-about h2 .line-2 { color: var(--bronze-light); display: block; }
.hv-about-text p {
  font-family: 'Inter', sans-serif;
  color: rgba(226,232,240,0.75);
  font-size: 17px; line-height: 1.8;
  margin-bottom: 1.5rem;
}
.hv-about-cells {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
.hv-about-cell {
  padding: 1.25rem;
  background: rgba(13,27,42,0.8);
  border-left: 2px solid var(--bronze);
}
.hv-about-cell .cell-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300;
  color: var(--bronze-light);
}
.hv-about-cell .cell-label {
  font-family: 'Inter', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(226,232,240,0.5);
  margin-top: 0.25rem;
}
.hv-about-visual { position: relative; }
.hv-about-glow {
  position: absolute; inset: -1rem;
  opacity: 0.2;
  background: radial-gradient(ellipse, var(--teal) 0%, transparent 70%);
}
.hv-about-visual img {
  position: relative; z-index: 10;
  width: 100%; object-fit: cover;
  aspect-ratio: 4 / 5;
  filter: contrast(1.05) saturate(0.85);
}
.hv-corner { position: absolute; z-index: 20; width: 4rem; height: 4rem; }
.hv-corner.tl { top: -0.5rem; left: -0.5rem; border-top: 2px solid var(--bronze); border-left: 2px solid var(--bronze); }
.hv-corner.br { bottom: -0.5rem; right: -0.5rem; border-bottom: 2px solid var(--bronze); border-right: 2px solid var(--bronze); }

/* ============================================================
   8. SUBSIDIARIES
   ============================================================ */
.hv-subs {
  position: relative;
  padding: 8rem 0;
  background: var(--abyss);
}
.hv-subs > .copper-line { position: absolute; left: 0; right: 0; }
.hv-subs > .copper-line.line-top { top: 0; }
.hv-subs > .copper-line.line-bottom { bottom: 0; }
.hv-subs-header { margin-bottom: 4rem; }
.hv-subs-header .label-row .copper-line { width: 3rem; }
.hv-subs h2 {
  font-weight: 300; text-transform: uppercase;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1;
  color: var(--silver);
}
.hv-subs h2 .line-2 { color: var(--bronze-light); display: block; }

/* Desktop pillar matrix */
.hv-pillars { display: none; }
@media (min-width: 768px) {
  .hv-pillars { display: flex; width: 100%; height: 600px; }
}
.subsidiary-pillar {
  position: relative; overflow: hidden;
  flex: 1; min-width: 60px;
  border-right: 1px solid rgba(176,125,58,0.15);
}
.subsidiary-pillar:last-child { border-right: none; }
.subsidiary-pillar.is-active { flex: 4; }
.pillar-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.2) grayscale(0.6);
  transform: scale(1);
  transition: filter 0.7s ease, transform 0.7s ease;
}
.subsidiary-pillar.is-active .pillar-img {
  filter: brightness(0.4) contrast(1.1) saturate(0.8);
  transform: scale(1.05);
}
.pillar-overlay {
  position: absolute; inset: 0;
  background: rgba(5,10,15,0.5);
  transition: background 0.5s ease;
}
.subsidiary-pillar.is-active .pillar-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(5,10,15,0.9) 100%);
}
.pillar-vlabel {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.2em;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 1.125rem;
  color: var(--silver);
  opacity: 1; transition: opacity 0.4s ease;
  white-space: nowrap;
}
.subsidiary-pillar.is-active .pillar-vlabel { opacity: 0; }
.pillar-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2rem;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
  pointer-events: none;
}
.subsidiary-pillar.is-active .pillar-content { opacity: 1; transform: translateY(0); }
.pillar-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem; color: var(--bronze);
  margin-bottom: 0.75rem; line-height: 1;
}
.pillar-content h3 {
  font-weight: 300; font-size: 1.875rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--silver);
  letter-spacing: 0.08em;
}
.pillar-desc {
  font-family: 'Inter', sans-serif; font-size: 0.875rem;
  margin-bottom: 1.25rem;
  line-height: 1.625;
  color: rgba(226,232,240,0.75);
}
.pillar-services li, .card-services li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-family: 'Inter', sans-serif; font-size: 0.875rem;
  color: rgba(226,232,240,0.8);
  margin-bottom: 0.375rem;
}
.pillar-services li::before, .card-services li::before {
  content: '◆';
  color: var(--bronze);
  font-size: 10px;
  margin-top: 6px;
  flex-shrink: 0;
}

/* Mobile cards */
.hv-sub-cards { display: block; margin-top: 1rem; }
@media (min-width: 768px) { .hv-sub-cards { display: none; } }
.hv-sub-card {
  position: relative; overflow: hidden;
  background: var(--obsidian);
  border-left: 2px solid var(--bronze);
  margin-bottom: 1rem;
}
.hv-sub-card .card-img-wrap { position: relative; }
.hv-sub-card img { width: 100%; height: 12rem; object-fit: cover; opacity: 0.4; }
.hv-sub-card .card-img-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--obsidian) 100%);
}
.hv-sub-card .card-body { padding: 1.5rem; margin-top: -3rem; position: relative; }
.hv-sub-card .card-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem; color: var(--bronze); line-height: 1;
  margin-bottom: 0.5rem;
}
.hv-sub-card h3 {
  font-size: 1.25rem; font-weight: 300; text-transform: uppercase;
  color: var(--silver); margin-bottom: 0.625rem;
}
.hv-sub-card .card-desc {
  font-family: 'Inter', sans-serif; font-size: 15px;
  color: rgba(226,232,240,0.7);
  margin-bottom: 1rem; line-height: 1.7;
}

/* ============================================================
   9. STATS
   ============================================================ */
.hv-stats {
  position: relative;
  padding: 10rem 0;
  background: linear-gradient(135deg, var(--obsidian) 0%, var(--abyss) 100%);
  overflow: hidden;
}
.hv-stats-texture {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.06;
  filter: grayscale(1);
}
.hv-stats-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(26,107,124,0.08) 0%, transparent 70%);
}
.hv-stats > .copper-line { position: absolute; left: 0; right: 0; }
.hv-stats > .copper-line.line-top { top: 0; }
.hv-stats > .copper-line.line-bottom { bottom: 0; }
.hv-stats-header { position: relative; text-align: center; margin-bottom: 6rem; }
.hv-stats-header .label-row { justify-content: center; }
.hv-stats-header .label-row .copper-line { width: 4rem; }
.hv-stats h2 {
  font-weight: 300; text-transform: uppercase;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1; color: var(--silver);
}
.hv-stats h2 .line-2 { color: var(--bronze-light); display: block; }
.hv-stats-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 1px;
}
@media (min-width: 640px) { .hv-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hv-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.hv-stat-card {
  position: relative;
  padding: 2.5rem; text-align: center;
  background: rgba(13,27,42,0.6);
  border: 1px solid rgba(176,125,58,0.12);
}
.hv-stat-glow {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.5s ease;
  background: radial-gradient(ellipse at 50% 50%, rgba(176,125,58,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hv-stat-card:hover .hv-stat-glow { opacity: 1; }
.hv-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 6vw, 88px);
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 1rem;
}
.hv-stat-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 300;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.5rem; color: var(--silver);
}
.hv-stat-sublabel {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(226,232,240,0.45);
}
.hv-vision-bar {
  position: relative;
  margin-top: 5rem; padding: 2.5rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between; gap: 2rem;
  background: linear-gradient(90deg, rgba(176,125,58,0.08) 0%, rgba(26,107,124,0.08) 100%);
  border: 1px solid rgba(176,125,58,0.2);
}
@media (min-width: 768px) { .hv-vision-bar { flex-direction: row; } }
.hv-vision-bar h3 {
  font-size: 1.5rem; font-weight: 300;
  text-transform: uppercase;
  color: var(--bronze-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.hv-vision-bar p {
  font-family: 'Inter', sans-serif; font-size: 0.875rem;
  color: rgba(226,232,240,0.6);
  max-width: 600px; line-height: 1.7;
}
.hv-vision-bar img { height: 4rem; width: auto; object-fit: contain; opacity: 0.7; flex-shrink: 0; }

/* ============================================================
   10. CONTACT
   ============================================================ */
.hv-contact {
  position: relative;
  padding: 10rem 0;
  background: var(--abyss);
  overflow: hidden;
}
.hv-contact-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(26,107,124,0.07) 0%, transparent 60%);
}
.hv-contact > .copper-line { position: absolute; left: 0; right: 0; }
.hv-contact > .copper-line.line-top { top: 0; }
.hv-contact > .copper-line.line-bottom { bottom: 0; }
.hv-contact-header { position: relative; margin-bottom: 5rem; }
.hv-contact-header .label-row .copper-line { width: 3rem; }
.hv-contact h2 {
  font-weight: 300; text-transform: uppercase;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1; color: var(--silver);
}
.hv-contact h2 .line-2 { color: var(--bronze-light); display: block; }
.hv-contact-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 5rem;
}
@media (min-width: 1024px) { .hv-contact-grid { grid-template-columns: 1fr 1fr; } }
.hv-contact-intro {
  font-family: 'Inter', sans-serif;
  color: rgba(226,232,240,0.7);
  line-height: 1.8; font-size: 17px;
  max-width: 460px; margin-bottom: 3rem;
}
.hv-contact-item { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 2rem; }
.hv-contact-icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(176,125,58,0.3);
  color: var(--bronze);
}
.hv-contact-icon svg { width: 16px; height: 16px; }
.hv-contact-item .item-label {
  font-family: 'Inter', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.25rem;
}
.hv-contact-item .item-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem; font-weight: 300;
  color: var(--silver);
  white-space: pre-line;
  line-height: 1.5;
}
.hv-creds-label {
  font-family: 'Inter', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(226,232,240,0.4);
  margin: 2.5rem 0 1rem;
}
.hv-creds { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hv-cred-badge {
  font-family: 'Inter', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(176,125,58,0.3);
  color: rgba(226,232,240,0.6);
}
.hv-form-card {
  position: relative;
  padding: 2rem;
  background: rgba(13,27,42,0.6);
  border: 1px solid rgba(176,125,58,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (min-width: 768px) { .hv-form-card { padding: 3rem; } }
.hv-form-corner { position: absolute; width: 2rem; height: 2rem; }
.hv-form-corner.tl { top: -1px; left: -1px; border-top: 1px solid var(--bronze); border-left: 1px solid var(--bronze); }
.hv-form-corner.br { bottom: -1px; right: -1px; border-bottom: 1px solid var(--bronze); border-right: 1px solid var(--bronze); }
.hv-form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.75rem; }
@media (min-width: 640px) { .hv-form-row.two-col { grid-template-columns: 1fr 1fr; } }
.hv-form-field label {
  display: block;
  font-family: 'Inter', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(226,232,240,0.4);
  margin-bottom: 0.25rem;
}
.hv-form-submit {
  width: 100%;
  padding: 1rem 0;
  font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  background: var(--bronze); color: var(--abyss);
  border: 1px solid var(--bronze);
  transition: background-color 0.3s, color 0.3s;
}
.hv-form-submit:hover { background: var(--abyss); color: var(--bronze); }
.hv-form-submit:disabled { opacity: 0.6; }
.hv-form-success { text-align: center; padding: 3rem 0; display: none; }
.hv-form-success.is-shown { display: block; }
.hv-form-success .success-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; color: var(--bronze); line-height: 1;
  margin-bottom: 1.5rem;
}
.hv-form-success h3 {
  font-size: 1.875rem; font-weight: 300;
  text-transform: uppercase;
  color: var(--silver);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.hv-form-success p {
  font-family: 'Inter', sans-serif; font-size: 0.9375rem;
  color: rgba(226,232,240,0.6);
}
.hv-form-error {
  display: none;
  font-family: 'Inter', sans-serif; font-size: 0.8125rem;
  color: #E0A0A0;
  margin-top: 1rem;
}
.hv-form-error.is-shown { display: block; }

/* ============================================================
   11. FOOTER
   ============================================================ */
.hv-footer {
  position: relative;
  background: var(--obsidian);
  padding: 8rem 0 3rem;
  overflow: hidden;
}
.hv-footer > .copper-line { position: absolute; top: 0; left: 0; right: 0; }
.hv-footer-ghost {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: transparent;
  font-size: clamp(120px, 25vw, 400px);
  -webkit-text-stroke: 1px rgba(226,232,240,0.04);
  letter-spacing: -0.05em;
  white-space: nowrap;
  pointer-events: none;
}
.hv-footer-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) { .hv-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hv-footer-grid { grid-template-columns: repeat(5, 1fr); } }
.hv-footer-brand { grid-column: span 1; }
@media (min-width: 1024px) { .hv-footer-brand { grid-column: span 2; } }
.hv-footer-brand img { height: 4rem; width: auto; object-fit: contain; margin-bottom: 1.5rem; }
.hv-footer-tagline {
  font-family: 'Inter', sans-serif; font-size: 0.875rem;
  color: rgba(226,232,240,0.5);
  max-width: 300px;
  margin-bottom: 1.5rem;
}
.hv-vision-badge { display: flex; align-items: center; gap: 0.625rem; }
.hv-vision-badge .dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--bronze); }
.hv-vision-badge span {
  font-family: 'Inter', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bronze);
}
.hv-footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 300;
  color: var(--bronze-light);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.hv-footer-col li { margin-bottom: 0.625rem; }
.hv-footer-col a {
  font-family: 'Inter', sans-serif; font-size: 0.875rem;
  color: rgba(226,232,240,0.45);
  transition: color 0.3s;
}
.hv-footer-col a:hover { color: var(--bronze); }
.hv-footer-bottom {
  position: relative;
  display: flex; flex-direction: column; gap: 1rem;
  justify-content: space-between; align-items: center;
  padding-top: 2rem;
}
@media (min-width: 768px) { .hv-footer-bottom { flex-direction: row; } }
.hv-footer-bottom p, .hv-footer-bottom a {
  font-family: 'Inter', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(226,232,240,0.3);
}
.hv-footer-bottom a { transition: color 0.3s; }
.hv-footer-bottom a:hover { color: var(--bronze); }
.hv-footer-legal { display: flex; gap: 1.5rem; }
