/* ══════════════════════════════════════════════
   VARIABLES & GLOBAL OVERRIDES
   ══════════════════════════════════════════════ */
:root {
    --ef-black: #050505;
    --ef-charcoal: #111111;
    --ef-dark: #1a1a1a;
    --ef-teal: #1a3a4a;
    --ef-amber: #d4a373;
    --ef-gold: #c9a84c;
    --ef-red: #c0392b;
    --ef-red-glow: #e74c3c;
    --ef-warm-white: #f0e6d3;
    --ef-muted: #9a9a9a;
    --ef-serif: 'Playfair Display', 'Georgia', serif;
    --ef-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--ef-black) !important;
    overflow-x: hidden;
    color: var(--ef-warm-white);
}

/* ── Footer dark override ── */
.footer {
    background: rgba(10,10,10,0.95) !important;
    backdrop-filter: blur(10px) !important;
}
.footer .badge.bg-dark { background-color: var(--ef-charcoal) !important; }
.footer .badge.bg-light { background-color: rgba(255,255,255,0.08) !important; }
.footer .badge.bg-light a { color: var(--ef-warm-white) !important; }
.footer .text-wrap.badge.bg-dark { color: var(--ef-muted) !important; }

/* ══════════════════════════════════════════════
   CINEMATIC SHOWREEL HERO
   ══════════════════════════════════════════════ */
.ef-hero-section {
    position: relative;
    z-index: 3;
    height: calc(100svh - 72px);
    min-height: 520px;
    overflow: hidden;
    isolation: isolate;
    background: var(--ef-black);
}

.ef-vimeo-wrap,
.ef-video-fallback,
.ef-vignette,
.ef-grain {
    position: absolute;
    inset: 0;
}

.ef-vimeo-wrap {
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    background: var(--ef-black);
    transition: opacity 0.45s ease;
}
.ef-hero-section.is-playing .ef-vimeo-wrap { opacity: 1; }
.ef-vimeo-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100%, 177.78vh) !important;
    height: max(100%, 56.25vw) !important;
    border: 0;
    transform: translate(-50%, -50%) scale(1.02);
}
@supports (height: 100dvh) {
    .ef-hero-section { height: calc(100dvh - 72px); }
    .ef-vimeo-wrap iframe {
        width: max(100%, 177.78dvh) !important;
        height: max(100%, 56.25vw) !important;
    }
}

.ef-video-fallback {
    z-index: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 14px;
    background:
        radial-gradient(circle at 70% 35%, rgba(201,168,76,0.13), transparent 30%),
        radial-gradient(circle at 25% 70%, rgba(192,57,43,0.1), transparent 34%),
        linear-gradient(125deg, #080808 0%, #17130d 55%, #050505 100%);
    color: rgba(240,230,211,0.58);
    font: 600 0.62rem/1 var(--ef-sans);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
.ef-video-fallback img {
    width: 112px;
    height: 112px;
    padding: 10px;
    border: 1px solid rgba(201,168,76,0.24);
    border-radius: 12px;
    background: rgba(240,230,211,0.94);
    box-shadow: 0 20px 80px rgba(0,0,0,0.42);
}
.ef-hero-section.is-playing .ef-video-fallback {
    opacity: 0;
    visibility: hidden;
}

.ef-vignette {
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at center, transparent 38%, rgba(5,5,5,0.08) 66%, rgba(5,5,5,0.5) 100%),
        linear-gradient(180deg, rgba(5,5,5,0.42) 0%, transparent 18%, transparent 78%, rgba(5,5,5,0.58) 100%);
}
.ef-grain {
    z-index: 2;
    pointer-events: none;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}
.ef-film-gate {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    border-top: clamp(7px, 1.1vh, 13px) solid rgba(0,0,0,0.88);
    border-bottom: clamp(7px, 1.1vh, 13px) solid rgba(0,0,0,0.88);
    box-shadow: inset 0 0 90px rgba(0,0,0,0.25);
}
.ef-film-gate span {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: rgba(240,230,211,0.34);
    border-style: solid;
}
.ef-film-gate span:nth-child(1) { top: 22px; left: 22px; border-width: 1px 0 0 1px; }
.ef-film-gate span:nth-child(2) { top: 22px; right: 22px; border-width: 1px 1px 0 0; }
.ef-film-gate span:nth-child(3) { bottom: 22px; left: 22px; border-width: 0 0 1px 1px; }
.ef-film-gate span:nth-child(4) { right: 22px; bottom: 22px; border-width: 0 1px 1px 0; }

.ef-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: inherit;
    max-width: 920px;
    padding: clamp(110px, 16vh, 170px) 7vw 210px max(7vw, 120px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.ef-hero-content header { max-width: 880px; }

.ef-tagline-pre {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: var(--ef-amber);
    font: 600 0.68rem/1.4 var(--ef-sans);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.ef-tagline-pre::before {
    content: '';
    width: 42px;
    height: 1px;
    background: currentColor;
    opacity: 0.65;
}

.ef-hero-h1 {
    max-width: 900px;
    margin: 0 0 24px;
    color: #fff7e8;
    font-family: var(--ef-serif);
    font-size: clamp(3.35rem, 7.4vw, 7.3rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.92;
    text-align: left;
    text-shadow: 0 8px 70px rgba(0,0,0,0.74);
}
.ef-hero-h1 em {
    position: relative;
    color: var(--ef-amber);
    font-style: italic;
}
.ef-hero-h1 em::after {
    content: '';
    position: absolute;
    left: 2%;
    right: 0;
    bottom: 0.02em;
    height: 2px;
    background: linear-gradient(90deg, var(--ef-amber), transparent);
    opacity: 0.6;
}

.ef-hero-subtitle {
    max-width: 590px;
    margin: 0 0 34px;
    color: rgba(255,247,232,0.78);
    font: 300 clamp(0.96rem, 1.35vw, 1.16rem)/1.7 var(--ef-sans);
    text-shadow: 0 3px 24px rgba(0,0,0,0.9);
}
.ef-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}
.ef-cta-record,
.ef-cta-secondary {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    border-radius: 4px;
    font: 700 0.72rem/1 var(--ef-sans);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.ef-cta-record {
    border: 1px solid rgba(231,76,60,0.72);
    background: rgba(192,57,43,0.86);
    color: #fff;
    box-shadow: 0 10px 32px rgba(192,57,43,0.23);
}
.ef-cta-record:hover,
.ef-cta-record:focus-visible {
    color: #fff;
    background: var(--ef-red-glow);
    border-color: var(--ef-red-glow);
    box-shadow: 0 14px 42px rgba(192,57,43,0.34);
    transform: translateY(-2px);
}
.ef-cta-secondary {
    border: 1px solid rgba(240,230,211,0.28);
    background: rgba(5,5,5,0.34);
    color: #fff7e8;
    backdrop-filter: blur(10px);
}
.ef-cta-secondary:hover,
.ef-cta-secondary:focus-visible {
    color: #fff;
    border-color: rgba(212,163,115,0.75);
    background: rgba(212,163,115,0.13);
    transform: translateY(-2px);
}
.ef-cta-secondary span { color: var(--ef-amber); font-size: 1rem; }

.ef-rec-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 8px rgba(255,255,255,0.75);
    animation: ef-rec-pulse 1.8s ease-in-out infinite;
}
@keyframes ef-rec-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.32; }
}

.ef-player-controls {
    position: absolute;
    z-index: 6;
    left: max(86px, 6vw);
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ef-player-control {
    width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(240,230,211,0.22);
    border-radius: 50%;
    background: rgba(5,5,5,0.54);
    color: rgba(255,247,232,0.86);
    font: 600 0.62rem/1 var(--ef-sans);
    letter-spacing: 0.08em;
    cursor: pointer;
    backdrop-filter: blur(12px);
}
.ef-player-control:hover,
.ef-player-control:focus-visible {
    border-color: rgba(212,163,115,0.68);
    color: #fff;
    outline: none;
}
.ef-player-control:focus-visible { box-shadow: 0 0 0 3px rgba(212,163,115,0.22); }
.ef-player-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 5px;
    color: rgba(255,247,232,0.54);
    font: 500 0.58rem/1 var(--ef-sans);
    letter-spacing: 0.08em;
}
.ef-player-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ef-amber);
    box-shadow: 0 0 10px rgba(212,163,115,0.5);
}
.ef-hero-section.is-playing .ef-player-status-dot { background: #77c897; box-shadow: 0 0 10px rgba(119,200,151,0.55); }

/* ══════════════════════════════════════════════
   SCROLL INDICATOR
   ══════════════════════════════════════════════ */
.ef-scroll-indicator {
    position: absolute;
    bottom: 18px;
    left: 50%;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
    opacity: 0.78;
}
.ef-scroll-indicator span {
    font-family: var(--ef-sans);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(240,230,211,0.35);
}
.ef-scroll-line {
    width: 1px;
    height: 34px;
    background: linear-gradient(to bottom, rgba(240,230,211,0.72), transparent);
    animation: ef-scroll-pulse 2s ease-in-out infinite;
}
@keyframes ef-scroll-pulse {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(0.5); opacity: 0.2; }
}

/* ══════════════════════════════════════════════
   HUD OVERLAYS
   ══════════════════════════════════════════════ */
.ef-rec-overlay {
    position: absolute;
    top: 28px;
    right: 36px;
    z-index: 5;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.88;
}
.ef-rec-overlay-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--ef-red-glow);
    box-shadow: 0 0 6px var(--ef-red-glow);
    animation: ef-rec-pulse 1.8s ease-in-out infinite;
}
.ef-rec-overlay-text {
    font-family: var(--ef-sans);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--ef-red-glow);
}
.ef-timecode {
    position: absolute;
    top: 30px;
    right: 92px;
    z-index: 5;
    pointer-events: none;
    color: rgba(240,230,211,0.52);
    font: 600 0.58rem/1 'Courier New', monospace;
    letter-spacing: 0.08em;
}
.ef-frame-counter {
    position: absolute;
    top: 30px;
    left: max(7vw, 120px);
    z-index: 5;
    pointer-events: none;
    color: rgba(240,230,211,0.48);
    font: 600 0.55rem/1 'Courier New', monospace;
    letter-spacing: 0.1em;
}

/* ══════════════════════════════════════════════
   STORYBOARD NAVIGATION RAIL
   ══════════════════════════════════════════════ */
.ef-story-rail {
    position: fixed;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: auto;
}
.ef-story-rail::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212,163,115,0.3), transparent);
}
.ef-story-rail a {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: rgba(240,230,211,0.62);
    text-decoration: none;
    border: 1px solid rgba(240,230,211,0.1);
    border-radius: 50%;
    background: rgba(5,5,5,0.52);
    box-shadow: 0 8px 30px rgba(0,0,0,0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.ef-story-rail a i {
    position: relative;
    z-index: 1;
    font-size: 0.74rem;
}
.ef-story-rail a:hover,
.ef-story-rail a:focus-visible,
.ef-story-rail a.is-active {
    color: #fff;
    border-color: rgba(212,163,115,0.68);
    background: rgba(15,12,8,0.82);
    box-shadow: 0 0 0 3px rgba(212,163,115,0.1), 0 8px 30px rgba(0,0,0,0.34);
    outline: none;
    transform: scale(1.06);
}
.ef-story-rail a.is-active i { color: var(--ef-red-glow); }

/* ══════════════════════════════════════════════
   LATEST FILMS OVERLAY (bottom strip)
   ══════════════════════════════════════════════ */
.ef-latest-strip {
    position: absolute;
    right: 36px;
    bottom: 32px;
    z-index: 5;
    pointer-events: none;
}
.ef-latest-label {
    font-family: var(--ef-sans);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ef-amber);
    margin-bottom: 10px;
    text-align: right;
    opacity: 0.82;
}
.ef-latest-grid {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: flex-end;
}
.ef-latest-card {
    position: relative;
    width: 132px;
    aspect-ratio: 16/9;
    border-radius: 3px;
    overflow: hidden;
    pointer-events: auto;
    cursor: pointer;
    border: 1px solid rgba(201,168,76,0.2);
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), border-color 0.3s ease, box-shadow 0.3s ease;
}
.ef-latest-card:hover,
.ef-latest-card:focus-visible {
    border-color: var(--ef-gold);
    box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 20px rgba(201,168,76,0.08);
    outline: none;
    transform: translateY(-4px) scale(1.04);
}
.ef-latest-card:focus-visible { box-shadow: 0 0 0 3px rgba(212,163,115,0.28), 0 8px 40px rgba(0,0,0,0.6); }
.ef-latest-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
    filter: brightness(0.75) saturate(0.85);
}
.ef-latest-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.95) saturate(1);
}
.ef-latest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 8px 10px;
    transition: opacity 0.3s;
}
.ef-latest-card-title {
    font-family: var(--ef-sans);
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--ef-warm-white);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.ef-latest-card-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 28px; height: 28px;
    border: 1px solid rgba(240,230,211,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.35s;
    background: rgba(5,5,5,0.4);
}
.ef-latest-card:hover .ef-latest-card-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.ef-latest-card-play svg {
    width: 10px; height: 10px;
    fill: var(--ef-warm-white);
    margin-left: 2px;
}

/* ══════════════════════════════════════════════
   CTA SECTION (below the fold)
   ══════════════════════════════════════════════ */
.ef-cta-below {
    position: relative;
    z-index: 3;
    content-visibility: auto;
    contain-intrinsic-size: auto 1100px;
    background: var(--ef-black);
    padding: 110px 20px 100px;
    overflow: hidden;
}
.ef-cta-below::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 50% 40%, rgba(201,168,76,0.03) 0%, transparent 70%),
        radial-gradient(ellipse 30% 40% at 20% 80%, rgba(192,57,43,0.02) 0%, transparent 60%);
    pointer-events: none;
}
.ef-cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
/* ── Top: heading + description ── */
.ef-cta-top {
    text-align: center;
    margin-bottom: 80px;
}
.ef-production-intro {
    position: relative;
    min-height: min(680px, 70svh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 110px;
    padding: 60px 20px 90px;
    isolation: isolate;
}
.ef-production-intro::before {
    content: '';
    position: absolute;
    inset: -15% -20%;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at center, rgba(212,163,115,0.09), transparent 48%),
        linear-gradient(90deg, transparent, rgba(255,255,255,0.015), transparent);
}
.ef-production-intro .ef-tagline-pre {
    justify-content: center;
    margin-bottom: 28px;
}
.ef-production-intro .ef-tagline-pre::after {
    content: '';
    width: 42px;
    height: 1px;
    background: currentColor;
    opacity: 0.65;
}
.ef-production-intro .ef-hero-h1 {
    max-width: 980px;
    margin: 0 auto 28px;
    font-size: clamp(3.4rem, 8vw, 7.8rem);
    text-align: center;
    text-shadow: 0 12px 70px rgba(0,0,0,0.48);
}
.ef-production-intro .ef-hero-subtitle {
    max-width: 650px;
    margin: 0 auto 38px;
    color: rgba(240,230,211,0.72);
    text-align: center;
    text-shadow: none;
}
.ef-production-intro .ef-hero-actions { justify-content: center; }
.ef-production-light {
    position: absolute;
    left: 50%;
    bottom: 30px;
    width: min(620px, 72vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ef-amber), transparent);
    box-shadow: 0 0 22px rgba(212,163,115,0.28);
    transform: translateX(-50%);
    opacity: 0.56;
}
.ef-cta-below-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ef-sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--ef-amber);
    margin-bottom: 16px;
}
.ef-cta-below-label::before,
.ef-cta-below-label::after {
    content: '';
    width: 30px; height: 1px;
    background: var(--ef-amber);
    opacity: 0.3;
}
.ef-cta-below h2 {
    font-family: var(--ef-serif);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--ef-warm-white);
    margin-bottom: 20px;
    line-height: 1.1;
}
.ef-cta-below h2 em {
    font-style: italic;
    color: var(--ef-amber);
}
.ef-cta-below-desc {
    font-family: var(--ef-sans);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(240,230,211,0.65);
    max-width: 560px;
    line-height: 1.8;
    margin: 0 auto;
}
/* ── Process steps (always visible) ── */
.ef-process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
}
.ef-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}
.ef-process-dot {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(201,168,76,0.35);
    background: rgba(201,168,76,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    transition: all 0.4s;
}
.ef-process-dot i {
    font-size: 0.85rem;
    color: var(--ef-amber);
    opacity: 0.8;
}
.ef-process-step:hover .ef-process-dot {
    border-color: var(--ef-amber);
    background: rgba(201,168,76,0.12);
    box-shadow: 0 0 25px rgba(201,168,76,0.2);
    transform: scale(1.12);
}
.ef-process-step:hover .ef-process-dot i { opacity: 1; }
.ef-process-num {
    font-family: 'Courier New', monospace;
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--ef-amber);
    opacity: 0.4;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.ef-process-label {
    font-family: var(--ef-serif);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ef-warm-white);
    text-align: center;
    margin-bottom: 6px;
    transition: color 0.3s;
}
.ef-process-step:hover .ef-process-label { color: var(--ef-amber); }
.ef-process-sub {
    font-family: var(--ef-sans);
    font-size: 0.65rem;
    font-weight: 300;
    color: rgba(240,230,211,0.55);
    text-align: center;
    line-height: 1.4;
}
/* Line connecting dots */
.ef-process-line {
    position: absolute;
    top: 24px;
    left: calc(10% + 24px);
    right: calc(10% + 24px);
    height: 1px;
    background: rgba(201,168,76,0.1);
    z-index: 0;
}
.ef-process-line::after {
    content: '';
    position: absolute;
    top: -1px; left: 0;
    width: 80px; height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--ef-amber), transparent);
    opacity: 0.5;
    animation: ef-line-pulse 3s ease-in-out infinite;
}
@keyframes ef-line-pulse {
    0%   { left: -80px; opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.6; }
    100% { left: calc(100% + 80px); opacity: 0; }
}

/* ── Big contact CTA ── */
.ef-big-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 80px;
    padding: 50px 40px;
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 8px;
    background: rgba(201,168,76,0.02);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
}
.ef-big-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ef-amber), transparent);
    opacity: 0.3;
}
.ef-big-cta-text {
    flex: 1;
    text-align: left;
}
.ef-big-cta-text h3 {
    font-family: var(--ef-serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--ef-warm-white);
    margin: 0 0 10px;
    line-height: 1.2;
}
.ef-big-cta-text h3 em { font-style: italic; color: var(--ef-amber); }
.ef-big-cta-text p {
    font-family: var(--ef-sans);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(240,230,211,0.5);
    line-height: 1.6;
    margin: 0;
}
.ef-big-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ef-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 20px 44px;
    background: linear-gradient(135deg, var(--ef-red) 0%, #a93226 100%);
    border: none;
    border-radius: 6px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(192,57,43,0.2);
}
.ef-big-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(192,57,43,0.35);
    color: #fff;
    text-decoration: none;
}
.ef-big-cta-btn .ef-rec-dot {
    width: 8px; height: 8px;
}

/* ── Services row ── */
.ef-services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ef-service-card {
    padding: 36px 28px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    text-align: center;
    transition: all 0.4s;
    text-decoration: none;
    color: inherit;
    display: block;
    opacity: 1 !important;
}
.ef-service-card:hover {
    border-color: rgba(201,168,76,0.15);
    background: rgba(201,168,76,0.03);
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 16px 50px rgba(0,0,0,0.25);
}
.ef-service-card-icon {
    font-size: 1.6rem;
    color: var(--ef-amber);
    opacity: 0.7;
    margin-bottom: 18px;
    transition: opacity 0.3s;
}
.ef-service-card:hover .ef-service-card-icon { opacity: 1; }
.ef-service-card h3 {
    font-family: var(--ef-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ef-warm-white);
    margin: 0 0 10px;
}
.ef-service-card p {
    font-family: var(--ef-sans);
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(240,230,211,0.6);
    line-height: 1.65;
    margin: 0;
}
/* ── Trust indicators ── */
.ef-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.03);
}
.ef-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ef-sans);
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(240,230,211,0.5);
    opacity: 1 !important;
}
.ef-trust-item i {
    color: var(--ef-amber);
    opacity: 0.5;
    font-size: 0.8rem;
}



/* ══════════════════════════════════════════════
   FILM STRIP BLOG (horizontal draggable)
   ══════════════════════════════════════════════ */
.ef-filmstrip-section {
    position: relative;
    padding: 90px 0 70px;
    content-visibility: auto;
    contain-intrinsic-size: auto 520px;
    background: var(--ef-black);
    overflow: hidden;
    z-index: 3;
}
.ef-filmstrip-header {
    text-align: center;
    padding: 0 5vw;
    margin-bottom: 40px;
}
.ef-filmstrip-header h2 {
    font-family: var(--ef-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--ef-warm-white);
    margin: 0 0 8px;
}
.ef-filmstrip-header h2 em { font-style: italic; color: var(--ef-amber); }
.ef-filmstrip-header p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(240,230,211,0.35);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.6;
}
.ef-filmstrip-hint {
    text-align: center;
    margin-bottom: 14px;
    font-family: var(--ef-sans);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ef-muted);
    opacity: 0.45;
}
.ef-filmstrip-hint i { margin-right: 6px; color: var(--ef-amber); }
/* Sprocket holes */
.ef-sprockets {
    height: 16px;
    background: repeating-linear-gradient(90deg,
        transparent 0px, transparent 26px,
        rgba(201,168,76,0.07) 26px, rgba(201,168,76,0.07) 27px,
        rgba(30,28,22,0.9) 27px, rgba(30,28,22,0.9) 43px,
        rgba(201,168,76,0.07) 43px, rgba(201,168,76,0.07) 44px,
        transparent 44px, transparent 70px);
    border-top: 1px solid rgba(201,168,76,0.05);
    border-bottom: 1px solid rgba(201,168,76,0.05);
    pointer-events: none;
}
/* Track */
.ef-strip-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    background: rgba(10,8,5,0.5);
    border-top: 1px solid rgba(201,168,76,0.03);
    border-bottom: 1px solid rgba(201,168,76,0.03);
}
.ef-strip-track::-webkit-scrollbar { display: none; }
.ef-strip-track:active,
.ef-strip-track.is-dragging { cursor: grabbing; }
.ef-strip-track.is-dragging { scroll-behavior: auto; }
/* Frame */
.ef-strip-frame {
    flex-shrink: 0;
    width: 310px;
    border-left: 1px solid rgba(201,168,76,0.05);
    display: block;
    text-decoration: none;
    color: inherit;
    transition: background 0.4s;
}
.ef-strip-frame:first-child { border-left: none; }
.ef-strip-frame:hover { background: rgba(201,168,76,0.02); text-decoration: none; color: inherit; }
.ef-strip-frame-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #0a0a0a;
}
.ef-strip-frame-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.8);
    transition: filter 0.5s, transform 0.7s;
}
.ef-strip-frame:hover .ef-strip-frame-img img {
    filter: brightness(0.9) saturate(1);
    transform: scale(1.05);
}
.ef-strip-frame-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10,8,5,0.9), transparent);
    pointer-events: none;
}
.ef-strip-frame-num {
    position: absolute;
    top: 8px; right: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--ef-amber);
    opacity: 0.35;
    letter-spacing: 0.1em;
    z-index: 1;
}
.ef-strip-frame-body { padding: 14px 18px 18px; }
.ef-strip-frame-date {
    font-family: 'Courier New', monospace;
    font-size: 0.5rem;
    color: var(--ef-muted);
    margin-bottom: 6px;
}
.ef-strip-frame-title {
    font-family: var(--ef-serif);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ef-warm-white);
    line-height: 1.3;
    margin: 0 0 6px;
    transition: color 0.3s;
}
.ef-strip-frame:hover .ef-strip-frame-title { color: var(--ef-amber); }
.ef-strip-frame-excerpt {
    font-family: var(--ef-sans);
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(240,230,211,0.3);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* CTA frame */
.ef-strip-frame--cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-left: 1px dashed rgba(201,168,76,0.08);
}
.ef-strip-frame--cta:hover { background: rgba(201,168,76,0.03); }
.ef-strip-cta-inner { text-align: center; padding: 24px; }
.ef-strip-cta-inner i { font-size: 1.3rem; color: var(--ef-amber); opacity: 0.4; margin-bottom: 10px; display: block; }
.ef-strip-cta-inner span { font-family: var(--ef-serif); font-size: 0.85rem; color: var(--ef-warm-white); display: block; }
.ef-strip-cta-inner small { font-size: 0.6rem; color: var(--ef-muted); }

/* ── Divider ── */
.ef-section-divider {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.12), transparent);
    position: relative; z-index: 3;
}

@media (max-width: 1199.98px) {
    .ef-latest-strip { display: none; }
    .ef-hero-content { max-width: 820px; padding-right: 6vw; }
}

@media (max-width: 768px) {
    .ef-story-rail { left: 10px; gap: 8px; }
    .ef-story-rail::before { left: 17px; }
    .ef-story-rail a { width: 36px; height: 36px; }
    .ef-story-rail a i { font-size: 0.66rem; }
    .ef-hero-section { height: calc(100svh - 64px); min-height: 520px; }
    @supports (height: 100dvh) {
        .ef-hero-section { height: calc(100dvh - 64px); }
    }
    .ef-hero-content {
        min-height: inherit;
        padding: 96px 20px 148px;
        justify-content: center;
    }
    .ef-tagline-pre { font-size: 0.57rem; letter-spacing: 0.19em; }
    .ef-tagline-pre::before { width: 24px; }
    .ef-hero-h1 { font-size: clamp(3rem, 15vw, 5rem); line-height: 0.96; }
    .ef-hero-subtitle { max-width: 520px; font-size: 0.96rem; }
    .ef-hero-actions { align-items: stretch; }
    .ef-cta-record, .ef-cta-secondary { min-height: 50px; padding-inline: 20px; font-size: 0.64rem; }
    .ef-player-controls { left: 58px; right: auto; bottom: 18px; }
    .ef-player-status { display: none; }
    .ef-scroll-indicator { right: 18px; left: auto; bottom: 16px; transform: none; }
    .ef-scroll-indicator span { display: none; }
    .ef-scroll-line { height: 30px; }
    .ef-production-intro { min-height: 620px; margin-bottom: 80px; padding-inline: 0; }
    .ef-production-intro .ef-hero-h1 { font-size: clamp(3rem, 15vw, 5rem); }
    .ef-production-intro .ef-hero-actions { width: 100%; }
    .ef-film-gate span:nth-child(1) { top: 16px; left: 16px; }
    .ef-film-gate span:nth-child(2) { top: 16px; right: 16px; }
    .ef-film-gate span:nth-child(3) { bottom: 16px; left: 16px; }
    .ef-film-gate span:nth-child(4) { right: 16px; bottom: 16px; }
    .ef-services-row { grid-template-columns: 1fr; }
    .ef-service-card { padding: 24px 20px; }
    .ef-process { grid-template-columns: repeat(3, 1fr); gap: 16px 8px; }
    .ef-process-line { display: none; }
    .ef-process-dot { width: 36px; height: 36px; }
    .ef-process-dot i { font-size: 0.7rem; }
    .ef-big-cta { flex-direction: column; gap: 24px; padding: 36px 24px; text-align: center; }
    .ef-big-cta-text { text-align: center; }
    .ef-trust { flex-wrap: wrap; gap: 20px; justify-content: center; }
    .ef-strip-frame { width: 260px; }
    .ef-filmstrip-hint { display: none; }
    .ef-sprockets { height: 10px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .ef-rec-overlay { top: 20px; right: 16px; }
    .ef-timecode { top: 21px; right: 72px; }
    .ef-frame-counter { top: 21px; left: 16px; }
}
@media (max-width: 480px) {
    .ef-hero-actions { width: 100%; flex-direction: column; }
    .ef-cta-record, .ef-cta-secondary { width: 100%; }
    .ef-player-control span { display: none; }
    .ef-player-control { width: 40px; padding: 0; justify-content: center; }
    .ef-frame-counter { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .ef-grain,
    .ef-rec-dot,
    .ef-scroll-line,
    .ef-rec-overlay-dot {
        animation: none !important;
    }
    .ef-tagline-pre,
    .ef-hero-h1,
    .ef-hero-subtitle,
    .ef-hero-actions,
    .ef-latest-card,
    .ef-scroll-indicator,
    .ef-rec-overlay,
    .ef-timecode,
    .ef-frame-counter {
        opacity: 1 !important;
        transform: none !important;
    }
    .ef-video-fallback { transition: none; }
}
