/* ============================================
   HERO — Cinematic, Luxury
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-deep);
    overflow: hidden;
}

/* Subtle radial glow — z-index 0 so videos can layer above */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 65% 45%, rgba(194, 163, 109, 0.06) 0%, transparent 70%);
    z-index: 0;
}

/* Hero video backgrounds */
.hero video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none !important;
    -webkit-tap-highlight-color: transparent;
}

/* Video cover — hides empty screen and controls until video plays */
.hero-video-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: #12161F;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}
.hero-video-cover.playing {
    opacity: 0;
}

/* Video montage container — block all touch/click to prevent iOS controls */
.hero-video-montage {
    pointer-events: none !important;
}

/* MOBILE: Show videos directly — cover hides controls until playing */
@media (max-width: 768px) {
    .hero-video-canvas {
        display: none !important;
    }
    .hero-video-montage video {
        pointer-events: none !important;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: calc(var(--header-height) + 1.5rem) 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-text { max-width: 540px; }

.hero .label { color: var(--gold-light); }

.hero h1 {
    color: #fff;
    font-weight: 400;
    margin-bottom: var(--space-lg);
    line-height: 1.08;
    font-size: clamp(3.2rem, 7vw, 5.2rem);
    letter-spacing: -0.02em;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-on-dark-secondary);
    line-height: 1.65;
    margin-bottom: var(--space-lg);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero-trust {
    display: flex;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-item {
    font-size: 0.68rem;
    color: var(--text-on-dark-muted);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.trust-item svg { width: 13px; height: 13px; color: var(--gold); opacity: 0.7; }

/* Hero visual — anatomy side */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-anatomy {
    position: relative;
    width: 100%;
    max-width: 380px;
}

/* Body labels */
.body-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    pointer-events: auto;
}
.body-label.left { flex-direction: row-reverse; }
.body-label-line { width: 30px; height: 1px; background: var(--gold); opacity: 0.35; }
.body-label-text {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(194,163,109,0.2);
    background: rgba(18,22,31,0.7);
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}
.body-label-text:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* Hotspot dots */
.body-hotspot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    z-index: 2;
}
.body-hotspot::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0.25;
    animation: pulse-ring 2.5s ease-in-out infinite;
}
@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.25; }
    50% { transform: scale(1.8); opacity: 0; }
}
.body-hotspot:hover { transform: scale(1.5); box-shadow: 0 0 16px rgba(194,163,109,0.4); }

/* Floating stat cards */
.stat-float {
    position: absolute;
    background: rgba(18,22,31,0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(194,163,109,0.12);
    padding: 0.7rem 1rem;
    min-width: 140px;
    animation: float 7s ease-in-out infinite;
}
.stat-float:nth-child(2) { animation-delay: -2.5s; }
.stat-float:nth-child(3) { animation-delay: -5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.stat-float-label { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.stat-float-value { font-family: var(--font-display); font-size: 1.5rem; color: #fff; font-weight: 300; }
.stat-float-sub { font-size: 0.62rem; color: var(--text-on-dark-muted); margin-top: 1px; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: calc(var(--header-height) + 3rem) 1.5rem 3rem;
        gap: var(--space-2xl);
    }
    .hero-text { max-width: 100%; margin: 0 auto; }
    .hero-subtitle { margin-left: auto; margin-right: auto; max-width: 500px; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .hero-trust { justify-content: center; flex-wrap: wrap; gap: var(--space-md); }
    .hero-visual { display: none; }
    .hero h1 { font-size: clamp(2.8rem, 9vw, 4rem); }
}
@media (max-width: 600px) {
    .hero { min-height: 100vh; min-height: 100svh; padding-bottom: 2rem; }
    .hero-content { padding: calc(var(--header-height) + 4rem) 1.25rem 3rem; display:flex; flex-direction:column; justify-content:center; min-height:100vh; min-height:100svh; }
    .hero h1 { font-size: clamp(3.6rem, 12vw, 4.4rem); line-height: 1.06; letter-spacing: -0.03em; margin-top: 1.5rem; margin-bottom: 1.8rem; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 0.6rem; margin-top: 0.5rem; }
    .hero-actions .btn { text-align: center; justify-content: center; padding: 0.9rem 1.5rem; font-size: 0.65rem; }
    .hero-trust { flex-direction: column; align-items: center; gap: 0.5rem; }
    .hero-subtitle { font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; }
    .label { font-size: 0.58rem; letter-spacing: 0.16em; margin-bottom: 0.5rem; }
}

/* Sub-page hero — unified height across ALL pages */
.hero.hero--short {
    min-height: 65vh !important;
    max-height: none !important;
    height: auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero.hero--short .hero-content {
    padding: 70px 2rem 2.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    gap: 0.25rem !important;
}

.hero.hero--short .label {
    margin-bottom: 0.5rem !important;
}

.hero.hero--short h1 {
    margin-bottom: 0.5rem !important;
    margin-top: 0 !important;
    font-size: clamp(1.8rem, 4vw, 3rem) !important;
}

.hero.hero--short p {
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
    line-height: 1.6 !important;
}

@media (max-width: 768px) {
    .hero.hero--short {
        min-height: 55vh !important;
        max-height: 55vh !important;
        height: 55vh !important;
        padding: 0 !important;
    }
    .hero.hero--short .hero-content {
        padding: 100px 1.5rem 2.5rem !important;
        background: none !important;
        min-height: 0 !important;
    }
    .hero.hero--short .label {
        margin-bottom: 0.75rem !important;
        font-size: 0.6rem !important;
    }
    .hero.hero--short h1 {
        font-size: clamp(2.8rem, 10vw, 3.8rem) !important;
        margin-bottom: 1rem !important;
    }
    .hero.hero--short p {
        font-size: 1rem !important;
        margin-bottom: 0 !important;
        line-height: 1.75 !important;
    }
    .hero.hero--short .hero-actions {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero.hero--short .hero-content {
        padding: 90px 1.25rem 2rem !important;
    }
    .hero.hero--short h1 {
        font-size: clamp(2.6rem, 10vw, 3.4rem) !important;
    }
}

/* Hide native video controls and play button overlay */
video::-webkit-media-controls {
    display: none !important;
}
video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}
video::-webkit-media-controls-panel {
    display: none !important;
}
video::-webkit-media-controls-play-button {
    display: none !important;
}
video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}
video::-moz-media-controls {
    display: none !important;
}

/* iOS Safari: force hide play button overlay */
video[playsinline]::-webkit-media-controls-start-playback-button {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    -webkit-appearance: none !important;
}
*::-webkit-media-controls-start-playback-button {
    display: none !important;
    opacity: 0 !important;
}
*::-webkit-media-controls {
    display: none !important;
}
*::-webkit-media-controls-panel {
    display: none !important;
}
