/* ═══════════════════════════════════════════════════════════
   HERO — Cinematic Dark / Mint-Teal Luxury
   ═══════════════════════════════════════════════════════════ */

:root {
    --hero-topbar: 0px;
    --hero-nav: 5rem;
    --hero-nav-lg: 6rem;
}

@media (min-width: 768px) {
    body.page-home { --hero-topbar: 2.5rem; }
    body.page-home .top-bar {
        position: fixed;
        top: 0; left: 0; right: 0;
        z-index: 60;
    }
}

/* Header floats over hero */
body.page-home .site-header.is-hero,
body.page-home .site-header.is-fixed,
body.page-home .site-header.scrolled {
    position: fixed;
    left: 0; right: 0;
    z-index: 55;
}
body.page-home .site-header.is-hero { top: 0; }
@media (min-width: 768px) {
    body.page-home .site-header.is-hero { top: var(--hero-topbar); }
}
body.page-home .site-header.is-fixed,
body.page-home .site-header.scrolled { top: 0; }

body:not(.page-home) .site-header.is-hero {
    position: fixed;
    top: 2rem; left: 0; right: 0;
}
@media (min-width: 768px) {
    body:not(.page-home) .site-header.is-hero { top: 2.5rem; }
}
body:not(.page-home) .site-header.is-fixed,
body:not(.page-home) .site-header.scrolled {
    position: fixed; top: 0;
}

/* Transparent dark header on home hero */
body.page-home .site-header.is-hero {
    background: rgba(8, 18, 16, 0.55);
    backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid rgba(200, 169, 107, 0.18);
}
body.page-home .site-header.is-hero .nav-link,
body.page-home .site-header.is-hero .brand-name { color: #F5FAF9; }
body.page-home .site-header.is-hero .brand-tagline { color: #C8A96B; }
body.page-home .site-header.is-hero .nav-link:hover { color: #C8A96B; }

/* ── HERO SHELL ── */
.hero-film {
    position: relative;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

/* ── Full-bleed background photo ── */
.hero-film-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-film-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    will-change: transform;
}

/* ── Dark cinematic veil — teal undertone ── */
.hero-film-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(108deg,
            rgba(6, 14, 13, 0.96)  0%,
            rgba(6, 14, 13, 0.90) 28%,
            rgba(6, 14, 13, 0.78) 50%,
            rgba(6, 14, 13, 0.58) 68%,
            rgba(6, 14, 13, 0.38) 85%,
            rgba(6, 14, 13, 0.22) 100%
        );
}

/* ── Film grain ── */
.hero-film-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 320px 320px;
}

/* ── Ambient mint-gold aurora ── */
.hero-film-aurora {
    position: absolute;
    top: -15%;
    right: -8%;
    width: 65%;
    height: 90%;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at 65% 25%,
        rgba(62, 155, 140, 0.12) 0%,
        rgba(200, 169, 107, 0.06) 40%,
        transparent 68%);
    animation: filmAurora 14s ease-in-out infinite alternate;
}
@keyframes filmAurora {
    from { opacity: 0.5; transform: scale(1) translateY(0); }
    to   { opacity: 1;   transform: scale(1.12) translateY(-24px); }
}

/* ── Gold left-edge rail ── */
.hero-film-rail {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    z-index: 20;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(200, 169, 107, 0.5) 12%,
        #C8A96B 35%,
        #E5D4B3 50%,
        #C8A96B 65%,
        rgba(200, 169, 107, 0.5) 88%,
        transparent 100%);
}

/* Top gold hairline */
.hero-film::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1C3A35, #C8A96B 48%, #E5D4B3 52%, #C8A96B 56%, #1C3A35);
    z-index: 25;
}

/* ── Main content grid ── */
.hero-film-inner {
    position: relative;
    z-index: 10;
    flex: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding:
        calc(var(--hero-topbar) + var(--hero-nav) + 3rem)
        clamp(1.5rem, 4vw, 3rem)
        2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-film-inner {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 5rem;
        padding-top: calc(var(--hero-topbar) + var(--hero-nav-lg) + 3.5rem);
        padding-bottom: 4rem;
    }
}

/* ── COPY SIDE ── */
.hero-film-copy { max-width: 36rem; }

/* Eyebrow */
.hero-film-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(200, 169, 107, 0.85);
}
.hero-film-eyebrow-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #C8A96B;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(200, 169, 107, 0.8);
    animation: filmDotPulse 2.8s ease-in-out infinite;
}
@keyframes filmDotPulse {
    0%,100% { box-shadow: 0 0 8px rgba(200, 169, 107, 0.55); transform: scale(1); }
    50%      { box-shadow: 0 0 22px rgba(200, 169, 107, 1), 0 0 42px rgba(200, 169, 107, 0.35); transform: scale(1.25); }
}

/* Giant headline */
.hero-film-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3.6rem, 8.5vw, 6.25rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.025em;
    margin: 0 0 2.25rem;
    color: #F5FAF9;
}
.hero-film-title-top { display: block; margin-bottom: 0.06em; }
.hero-film-title-italic {
    display: block;
    font-style: italic;
    font-size: 0.90em;
    color: #E5D4B3;
    text-shadow: 0 2px 40px rgba(200, 169, 107, 0.2);
}

/* Gold accent rule */
.hero-film-rule {
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, rgba(200, 169, 107, 0.15));
    margin-bottom: 2rem;
}

/* Lead */
.hero-film-lead {
    font-size: clamp(1rem, 1.7vw, 1.14rem);
    line-height: 1.88;
    color: rgba(245, 250, 249, 0.68);
    max-width: 32rem;
    margin: 0 0 2.5rem;
}
.hero-film-lead strong {
    color: rgba(245, 250, 249, 0.94);
    font-weight: 600;
}

/* Buttons */
.hero-film-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
    margin-bottom: 2.25rem;
}

/* Primary — gold */
.hero-film-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 2.25rem;
    background: #C8A96B;
    color: #0A1412;
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}
.hero-film-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.22);
    transform: translateX(-115%) skewX(-18deg);
    transition: transform 0.5s ease;
}
.hero-film-btn-primary:hover::after { transform: translateX(115%) skewX(-18deg); }
.hero-film-btn-primary:hover {
    background: #D4B87C;
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(200, 169, 107, 0.38);
}
.hero-film-btn-primary svg { flex-shrink: 0; transition: transform 0.3s; }
.hero-film-btn-primary:hover svg { transform: translateX(4px); }

/* Ghost — frosted */
.hero-film-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 1.85rem;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(245, 250, 249, 0.88);
    font-weight: 600;
    font-size: 0.76rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(245, 250, 249, 0.22);
    backdrop-filter: blur(8px);
    position: relative;
    transition: all 0.35s ease;
}
.hero-film-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(200, 169, 107, 0.55);
    color: #E5D4B3;
}
.hero-film-ghost-ring {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    border: 1px solid rgba(200, 169, 107, 0);
    transition: all 0.5s;
}
.hero-film-btn-ghost:hover .hero-film-ghost-ring {
    border-color: rgba(200, 169, 107, 0.35);
    transform: scale(1.06);
    opacity: 0;
}

/* Trust list */
.hero-film-trust {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.75rem;
}
.hero-film-trust li {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 250, 249, 0.42);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.hero-film-trust li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #C8A96B;
    opacity: 0.65;
    flex-shrink: 0;
}

/* ── GLASS SERVICE PANEL ── */
.hero-film-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(22px) saturate(1.35);
    -webkit-backdrop-filter: blur(22px) saturate(1.35);
    border: 1px solid rgba(200, 169, 107, 0.22);
    padding: 2.5rem 2rem;
}
.hero-film-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #C8A96B, rgba(200, 169, 107, 0.1));
}
.hero-film-panel-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(200, 169, 107, 0.7);
    margin: 0 0 1.75rem;
}
.hero-film-panel-list {
    list-style: none;
    padding: 0; margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hero-film-panel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(245, 250, 249, 0.06);
    transition: padding-left 0.25s ease;
}
.hero-film-panel-item:last-child { border-bottom: none; }
.hero-film-panel-item:hover { padding-left: 0.4rem; }
.hero-film-panel-ico {
    width: 2.5rem; height: 2.5rem;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(62, 155, 140, 0.12);
    border: 1px solid rgba(62, 155, 140, 0.22);
    color: #3E9B8C;
    transition: background 0.25s, border-color 0.25s;
}
.hero-film-panel-item:hover .hero-film-panel-ico {
    background: rgba(62, 155, 140, 0.22);
    border-color: rgba(62, 155, 140, 0.45);
}
.hero-film-panel-ico svg { width: 1rem; height: 1rem; }
.hero-film-panel-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(245, 250, 249, 0.9);
    margin-bottom: 0.1rem;
    line-height: 1.3;
}
.hero-film-panel-item small {
    font-size: 0.7rem;
    color: rgba(245, 250, 249, 0.38);
}
.hero-film-panel-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: rgba(62, 155, 140, 0.1);
    border: 1px solid rgba(62, 155, 140, 0.22);
    color: #3E9B8C;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.hero-film-panel-link:hover {
    background: rgba(62, 155, 140, 0.18);
    border-color: rgba(62, 155, 140, 0.45);
    padding-right: 0.7rem;
}

/* ── STATS RIBBON ── */
.hero-film-stats {
    position: relative;
    z-index: 10;
    background: rgba(6, 14, 13, 0.78);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-top: 1px solid rgba(200, 169, 107, 0.22);
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.hero-film-stat {
    flex: 1;
    min-width: 130px;
    text-align: center;
    padding: 1.5rem 1rem;
}
.hero-film-stat-n {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: #F5FAF9;
    line-height: 1;
    margin: 0;
}
.hero-film-stat-n em {
    font-style: normal;
    color: #C8A96B;
    font-size: 0.78em;
}
.hero-film-stat-l {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(245, 250, 249, 0.36);
    margin: 0.45rem 0 0;
    font-weight: 600;
}
.hero-film-stat-sep {
    width: 1px;
    background: rgba(200, 169, 107, 0.18);
    align-self: stretch;
    margin: 0.75rem 0;
    flex-shrink: 0;
}
@media (max-width: 639px) {
    .hero-film-stat-sep { display: none; }
    .hero-film-stat { min-width: 45%; border-bottom: 1px solid rgba(200,169,107,0.1); }
}

/* Wave curve */
.hero-film-curve {
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%; height: 72px;
    z-index: 15;
    line-height: 0;
    color: #F5FAF9;
    pointer-events: none;
}

/* Mobile */
@media (max-width: 1023px) {
    .hero-film-panel { padding: 1.75rem 1.5rem; }
    .hero-film-title { font-size: clamp(3rem, 11vw, 4.5rem); }
}
@media (max-width: 639px) {
    .hero-film-veil {
        background: linear-gradient(180deg,
            rgba(6,14,13,0.92) 0%,
            rgba(6,14,13,0.88) 60%,
            rgba(6,14,13,0.78) 100%);
    }
    .hero-film-actions { flex-direction: column; align-items: flex-start; }
    .hero-film-btn-primary,
    .hero-film-btn-ghost { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-film-aurora,
    .hero-film-eyebrow-dot { animation: none !important; }
    .hero-film-btn-primary,
    .hero-film-btn-ghost { transition: none !important; }
    .hero-film-photo { transition: none !important; }
}
