*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Define the font family */
@font-face {
    font-family: 'Helvetica';
    src: url('./fonts/HelveticaNeueLTW0555Roman.otf') format('opentype');
    font-weight: 500; /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica';
    src: url('./fonts/HelveticaNeueLTW0585Heavy.otf') format('opentype');
    font-weight: bold; /* 700 */
    font-style: normal;
}

/* Use it in your styles */
body {
    font-family: 'Helvetica', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.header_logo {
    width: 80px !important;
}


:root {
    --bg-dark: #0a0a0a;
    --bg-light: #f5f2ed;
    --bg-warm: #eae5dc;
    --text-dark: #111;
    --text-light: #f5f2ed;
    --text-muted: #6b6560;
    --accent: #f4c518;
    --accent-dim: #8a7650;
    --border: rgba(0,0,0,0.08);
    --border-light: rgba(255,255,255,0.1);
    --serif: Helvetica;
    --sans: Helvetica;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}


@media (max-width: 720px) {
    .hide-on-mobile {
        display: none !important;
    }
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }

/* ─── HEADER ─── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: linear-gradient(45deg,#fffffff2,#ffffffa6);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header.visible { transform: translateY(0); }
.header-inner {
    max-width: 1400px; margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.logo-text {
    font-family: var(--serif); font-weight: 600; font-size: 1.35rem;
    color: #111111; letter-spacing: 0.04em;
    text-transform: uppercase;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #222;
    font-weight: 600;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #111111;
}
.menu-toggle {
    display: none; background: none; border: none; cursor: pointer;
    color: var(--text-light); padding: 4px;
}
.menu-toggle svg { width: 26px; height: 26px; filter: invert(1); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
    display: none; position: fixed; inset: 0; z-index: 99;
    background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-family: var(--serif); font-size: 1.8rem; color: var(--text-light);
    opacity: 0.7; transition: opacity 0.3s;
    text-transform: uppercase;
}
.mobile-nav a:hover { opacity: 1; color: var(--accent); }
.mobile-nav-close {
    position: absolute; top: 1.25rem; right: 1.25rem;
    background: none; border: none; color: var(--text-light); cursor: pointer;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
    opacity: 0; transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ─── HERO ─── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
}
.hero-bg img { filter: brightness(0.4); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.6) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1400px; width: 100%;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: flex; align-items: center; gap: clamp(3rem, 6vw, 6rem);
}
.hero-logo-wrap {
    flex: 1; display: flex; justify-content: center;
}
.hero-logo {
    font-family: var(--serif); font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--text-light); text-transform: uppercase;
    letter-spacing: 0.06em; line-height: 1.1;
    text-align: right;
    opacity: 0; transform: translateX(-40px);
    animation: heroSlideIn 1.2s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-logo span {
    display: block; font-weight: 400; font-style: italic;
    font-size: 0.55em; letter-spacing: 0.15em; opacity: 0.6;
    margin-top: 0.3em;
}
@keyframes heroSlideIn {
    to { opacity: 1; transform: translateX(0); }
}
.hero-desc {
    flex: 1; max-width: 520px;
    opacity: 0; transform: translateX(40px);
    animation: heroSlideIn 1.2s 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-desc p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(245,242,237,0.85); line-height: 1.75;
    font-weight: 300;
}
.hero-desc strong { color: var(--text-light); font-weight: 600; }
.hero-scroll {
    position: absolute; bottom: 6rem; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll span {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(245,242,237,0.4); font-weight: 500;
}
.scroll-line {
    width: 1px; height: 40px; background: rgba(245,242,237,0.2);
    position: relative; overflow: hidden;
}
.scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0;
    width: 100%; height: 100%; background: var(--accent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; }
}

/* ─── IMAGE STRIP ─── */
.image-strip {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.image-strip > div { height: clamp(200px, 25vw, 320px); overflow: hidden; }
.image-strip img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.image-strip > div:hover img { transform: scale(1.06); }

/* ─── SECTIONS ─── */
.section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem);
}
.section-inner {
    max-width: 1400px; margin: 0 auto;
}
.section-dark {
    background: var(--bg-dark); color: var(--text-light);
}
.section-warm { background: var(--bg-warm); }

.section-heading {
    font-family: var(--serif), serif;
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 3.4rem);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}
.section-heading::after {
    content: ''; display: block;
    width: 40px; height: 2px; background: var(--accent);
    margin-top: 0.75rem;
}
.section-dark .section-heading::after { background: var(--accent); }

.person-name {
    font-family: var(--serif); font-style: italic;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 500; line-height: 1.1;
    margin-bottom: 0.25rem;
}

.body-text {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    line-height: 1.5; font-weight: 300;
}
.body-text strong { font-weight: 600; }
.body-text-bold { font-weight: 600; }

.two-col {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.highlight-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: .9rem 1.25rem;
    border-radius: 9px;
}

/* ─── FILM GRID CARDS ─── */
.film-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.film-card {
    display: flex; gap: 0.75rem; align-items: flex-start;
}
.film-card-poster {
    width: 64px; height: 96px; flex-shrink: 0; overflow: hidden;
    border-radius: 2px;
}
.film-card h4 { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.15rem; }
.film-card .star { color: var(--accent); font-size: 0.85rem; }
.film-card .meta { font-size: 0.8rem; color: var(--text-muted); }

/* ─── IMAGE COMPOSITIONS ─── */
.img-frame {
    overflow: hidden; position: relative;
}
.img-frame img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.img-frame:hover img { transform: scale(1.04); }
.img-caption {
    font-size: 0.75rem; color: var(--text-muted);
    margin-top: 0.5rem; text-align: center;
    font-style: italic;
}
.img-grayscale img { filter: grayscale(1); transition: filter 0.5s, transform 0.7s; }
.img-grayscale:hover img { filter: grayscale(0); }

/* ─── INCENTIVES ─── */
.incentives-section {
    position: relative; overflow: hidden;
    padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 4vw, 3rem);
}
.incentives-section .watermark {
    position: absolute; top: 50%; right: -5%;
    transform: translateY(-50%);
    font-family: var(--serif); font-weight: 700;
    font-size: clamp(10rem, 20vw, 22rem);
    text-transform: uppercase; opacity: 0.03;
    line-height: 0.9; pointer-events: none;
    white-space: nowrap;
}
.incentive-item {
    display: flex; align-items: flex-start; gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.incentive-num {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800; line-height: 1;
    flex-shrink: 0; min-width: 80px;
    color: var(--text-dark);
}
.incentive-text {
    font-weight: 600; font-size: clamp(0.85rem, 1.1vw, 1rem);
    line-height: 1.6; padding-top: clamp(0.5rem, 1vw, 1rem);
    max-width: 420px;
}

/* ─── FOOTER ─── */
.site-footer {
    position: relative; min-height: 70vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.footer-bg { position: absolute; inset: 0; }
.footer-bg img { filter: brightness(0.35); }
.footer-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,10,0.65);
}
.footer-content {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: clamp(3rem, 6vw, 6rem);
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.footer-brand {
    font-family: var(--serif); font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text-light); text-transform: uppercase;
    letter-spacing: 0.05em; line-height: 1.1;
}
.footer-brand span {
    display: block; font-weight: 400; font-style: italic;
    font-size: 0.5em; letter-spacing: 0.15em; opacity: 0.5;
    margin-top: 0.3em;
}
.footer-contact p {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: var(--text-light); font-weight: 500;
    line-height: 2.5;
}
.footer-contact a { transition: color 0.3s; }
.footer-contact a:hover { color: var(--accent); }
.footer-copy {
    position: absolute; bottom: 1.5rem; left: 0; right: 0;
    text-align: center; z-index: 2;
    font-size: 0.7rem; color: rgba(245,242,237,0.3);
    letter-spacing: 0.08em;
}

/* ─── EXPERTISE LIST ─── */
.expertise-list {
    margin-top: 1rem;
    margin-left: 1rem;
}
.expertise-list li {
   line-height: 2;
     position: relative;

}
.expertise-list li::before {

}

/* ─── STAGGER IMAGE GRID ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.img-tall { height: clamp(280px, 30vw, 420px); }
.img-mid { height: clamp(200px, 22vw, 320px); }
.img-short { height: clamp(140px, 16vw, 200px); }
.img-hero { height: clamp(250px, 28vw, 400px); }
.img-fill { height: 100%; }

/* ─── IMDB LINK ─── */
.imdb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: cornflowerblue;
    border-bottom: 1px solid transparent;
    transition: color 0.3s, border-color 0.3s;
    text-decoration: underline;
}

/* ─── ELIGIBLE LIST ─── */
.eligible-block h4 {
    font-weight: 700; font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    margin-bottom: 0.5rem;
}
.eligible-block ul {
    list-style: none; margin-bottom: 1.5rem;
}
.eligible-block li {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.8; padding-left: 1.2rem; position: relative;
}
.eligible-block li::before {
    content: '·'; position: absolute; left: 0;
    font-weight: 800; font-size: 1.2em;
}

/* ─── DIVIDER ─── */
.section-divider {
    border: none; border-top: 1px solid var(--border);
    max-width: 1400px; margin: 0 auto;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero-content { flex-direction: column; text-align: center; gap: 2rem; }
    .hero-logo { text-align: center; }
    .two-col { grid-template-columns: 1fr; }
    .film-grid { grid-template-columns: 1fr 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
    .image-strip { grid-template-columns: 1fr; }
    .image-strip > div { height: 220px; }
    .incentive-item { margin-left: 0 !important; }
}
@media (max-width: 600px) {
    .film-grid { grid-template-columns: 1fr; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
}



.flex-it {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.flex-it .img-frame img {
    object-fit: contain;
}


@media (max-width: 720px) {
    .flex-it .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
    .incentive-2 {
        margin-left: 0 !important;
        align-items: center;
    }

    .incentive-2 .incentive-item {
        align-items: center;
    }
}

