:root {
    --black: #070707;
    --black-soft: #101010;
    --cream: #f6efe5;
    --muted: #b7afa5;
    --gold: #e3b04b;
    --gold-bright: #f2c766;
    --line: rgba(246, 239, 229, .16);
    --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--black);
    color: var(--cream);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
body::selection { background: var(--gold); color: #0b0b0b; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
    position: fixed;
    left: 20px;
    top: -80px;
    z-index: 9999;
    padding: 12px 18px;
    background: var(--gold);
    color: #090909;
    font-weight: 700;
}
.skip-link:focus { top: 20px; }

.cursor-light {
    position: fixed;
    z-index: 0;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(227,176,75,.09), transparent 68%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .4s ease;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    height: 84px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 clamp(22px, 4vw, 64px);
    border-bottom: 1px solid transparent;
    transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.is-scrolled {
    height: 70px;
    background: rgba(7,7,7,.88);
    border-color: var(--line);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.brand {
    width: max-content;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
}
.brand span { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a,
.header-cta {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.nav a { color: rgba(246,239,229,.72); transition: color .25s ease; }
.nav a:hover { color: var(--gold); }
.header-cta { justify-self: end; border-bottom: 1px solid var(--gold); padding-bottom: 3px; }
.header-cta span { color: var(--gold); margin-left: 5px; }

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: 150px clamp(22px, 7vw, 112px) clamp(70px, 9vh, 110px);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.hero-photo,
.hero-shade { position: absolute; inset: 0; }
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56% 42%;
    filter: saturate(.78) contrast(1.05);
    transform: scale(1.06);
    animation: hero-image 1.8s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-shade {
    background:
        radial-gradient(circle at 66% 45%, transparent 8%, rgba(7,7,7,.12) 38%, rgba(7,7,7,.72) 78%),
        linear-gradient(90deg, rgba(7,7,7,.98) 0%, rgba(7,7,7,.83) 35%, rgba(7,7,7,.13) 72%),
        linear-gradient(0deg, rgba(7,7,7,.8), transparent 55%);
}
.hero-content { position: relative; z-index: 2; width: min(790px, 74%); }
.kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.kicker::before { content: ""; width: 38px; height: 1px; background: currentColor; }
.hero h1,
.section h2 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    letter-spacing: -.065em;
    line-height: .94;
}
.hero h1 {
    margin: 27px 0 30px;
    max-width: 900px;
    font-size: clamp(54px, 8.2vw, 124px);
}
em { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-intro { max-width: 640px; color: #d0c8bf; font-size: clamp(18px, 1.7vw, 23px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 57px;
    padding: 15px 24px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease;
}
.button-gold { background: var(--gold); color: #090909; }
.button-gold:hover { background: var(--gold-bright); transform: translateY(-3px); }
.text-link { font-size: 14px; font-weight: 700; border-bottom: 1px solid rgba(246,239,229,.48); padding: 10px 0 5px; }
.text-link span { color: var(--gold); margin-left: 6px; }
.hero-mark {
    position: absolute;
    z-index: 2;
    right: clamp(22px, 4vw, 64px);
    bottom: clamp(76px, 9vh, 112px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    color: rgba(246,239,229,.72);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.hero-mark span:first-child { color: var(--gold); font-weight: 800; }
.scroll-cue { position: absolute; z-index: 2; right: 50%; bottom: 0; width: 1px; height: 48px; overflow: hidden; background: rgba(255,255,255,.2); }
.scroll-cue span { display: block; width: 100%; height: 50%; background: var(--gold); animation: scroll-line 1.7s ease-in-out infinite; }
.hero-enter { opacity: 0; transform: translateY(28px); animation: enter .85s ease forwards; }
.hero .kicker { animation-delay: .25s; }
.hero h1 { animation-delay: .42s; }
.hero-intro { animation-delay: .62s; }
.hero-actions { animation-delay: .78s; }
.hero-mark { animation-delay: 1s; }

.section { position: relative; z-index: 1; padding: clamp(92px, 11vw, 160px) max(22px, calc((100vw - var(--max)) / 2)); }
.section-number {
    position: absolute;
    top: 80px;
    right: max(22px, calc((100vw - var(--max)) / 2));
    color: rgba(246,239,229,.08);
    font-family: "Manrope", sans-serif;
    font-size: clamp(90px, 14vw, 220px);
    font-weight: 800;
    line-height: 1;
}
.section h2 { font-size: clamp(46px, 6vw, 82px); }

.vision { background: var(--black-soft); overflow: hidden; }
.vision-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 9vw, 130px); }
.section-heading { position: sticky; top: 130px; align-self: start; }
.section-heading h2 { margin-top: 26px; }
.vision-copy { padding-top: 92px; }
.vision-copy > p { max-width: 620px; color: var(--muted); font-size: clamp(17px, 1.6vw, 21px); margin-bottom: 28px; }
.vision-copy .statement { color: var(--cream); font-size: clamp(25px, 2.7vw, 37px); line-height: 1.35; }
blockquote { position: relative; margin: 68px 0; padding: 12px 0 12px 48px; border-left: 1px solid var(--gold); color: var(--cream); font-family: Georgia, serif; font-size: clamp(25px, 3vw, 42px); line-height: 1.35; }
blockquote span { position: absolute; left: 18px; top: -8px; color: var(--gold); font-size: 50px; }
.vision-copy .partner-line { padding-top: 30px; border-top: 1px solid var(--line); color: var(--gold); font-weight: 600; }

.connection { background: var(--black); }
.connection-head { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; }
.connection-head h2 { margin-top: 24px; }
.connection-head > p { max-width: 460px; justify-self: end; color: var(--muted); font-size: 18px; }
.reasons { margin-top: 100px; border-top: 1px solid var(--line); }
.reason {
    display: grid;
    grid-template-columns: 72px 1fr minmax(220px, .7fr) minmax(260px, 1fr);
    gap: 26px;
    align-items: center;
    min-height: 154px;
    border-bottom: 1px solid var(--line);
    transition: padding .35s ease, background .35s ease;
}
.reason:hover { padding: 0 24px; background: rgba(255,255,255,.025); }
.reason-index { color: var(--gold); font-size: 13px; font-weight: 800; }
.reason-line { height: 1px; background: rgba(227,176,75,.36); transform-origin: left; transition: transform .35s ease; }
.reason:hover .reason-line { transform: scaleX(.75); }
.reason h3 { font-family: "Manrope", sans-serif; font-size: clamp(30px, 3vw, 45px); line-height: 1; }
.reason p { max-width: 360px; color: var(--muted); font-size: 17px; }

.work { background: #0b0b0b; overflow: hidden; }
.work-heading {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: end;
    gap: 80px;
}
.work-heading h2 { margin-top: 24px; }
.work-heading > p { max-width: 470px; justify-self: end; color: var(--muted); font-size: 18px; }
.work-list { margin-top: 90px; }
.project {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: clamp(42px, 7vw, 100px);
    align-items: center;
    padding: 54px 0;
    border-top: 1px solid var(--line);
}
.project:last-child { border-bottom: 1px solid var(--line); }
.project:nth-child(even) .project-image { order: 2; }
.project:nth-child(even) .project-copy { order: 1; }
.project-image { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #151515; }
.project-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.5), transparent 55%); opacity: .75; transition: opacity .45s ease; }
.project-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.05); transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.project-image:hover img { transform: scale(1.045); filter: saturate(1) contrast(1.02); }
.project-image:hover::after { opacity: .3; }
.project-arrow { position: absolute; z-index: 2; right: 24px; bottom: 22px; width: 50px; height: 50px; display: grid; place-items: center; background: var(--gold); color: #080808; font-size: 22px; transition: transform .3s ease; }
.project-image:hover .project-arrow { transform: translate(3px, -3px); }
.project-index,
.project-role { display: block; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.project-copy h3 { margin: 17px 0 22px; font-family: "Manrope", sans-serif; font-size: clamp(38px, 4.5vw, 66px); letter-spacing: -.055em; line-height: 1; }
.project-copy p { color: var(--muted); font-size: 18px; }
.project-role { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); color: rgba(246,239,229,.56); }
.project-link { display: inline-block; margin-top: 26px; padding-bottom: 5px; border-bottom: 1px solid var(--gold); font-size: 13px; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.project-link span { margin-left: 8px; color: var(--gold); }

.films { background: #0d0d0d; overflow: hidden; }
.films-heading { position: relative; max-width: 900px; }
.films-heading h2 { margin-top: 24px; }
.film-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; margin-top: 75px; }
.film { min-width: 0; }
.film-visual { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #151515; }
.film-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: saturate(.55) contrast(1.08); transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.film:hover .film-visual > img { transform: scale(1.04); filter: saturate(.8) contrast(1.03); }
.film-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.76), transparent 58%); pointer-events: none; }
.play { position: absolute; left: 28px; bottom: 26px; display: flex; align-items: center; gap: 14px; border: 0; background: transparent; cursor: pointer; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.play-icon { width: 54px; height: 54px; display: grid; place-items: center; padding-left: 3px; border-radius: 50%; background: var(--gold); color: #080808; transition: transform .3s ease, background .3s ease; }
.play:hover .play-icon { transform: scale(1.1); background: var(--gold-bright); }
.film-meta { display: flex; justify-content: space-between; gap: 25px; align-items: center; padding: 24px 2px 0; }
.film-meta span { display: block; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.film-meta h3 { margin-top: 6px; font-family: "Manrope", sans-serif; font-size: 27px; }
.film-meta > a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--gold); transition: background .25s ease, color .25s ease; }
.film-meta > a:hover { background: var(--gold); color: #090909; }
.film-prodigal .film-visual { background: radial-gradient(circle at 70% 20%, rgba(227,176,75,.17), transparent 38%), linear-gradient(135deg, #181716, #050505); }
.film-prodigal .film-visual::before { content: ""; position: absolute; top: -30%; right: 17%; width: 1px; height: 160%; background: var(--gold); transform: rotate(28deg); opacity: .55; }
.prodigal-title { position: absolute; z-index: 1; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.prodigal-title small { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.prodigal-title strong { margin-top: 10px; font-family: "Manrope", sans-serif; font-size: clamp(45px, 6vw, 79px); letter-spacing: -.07em; line-height: .78; text-transform: uppercase; }
.prodigal-title em { font-size: .78em; text-transform: none; }

.video-modal {
    position: fixed;
    z-index: 9000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 64px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
}
.video-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.video-modal-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(0,0,0,.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); cursor: pointer; }
.video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(1160px, 94vw);
    background: #000;
    border: 1px solid rgba(227,176,75,.38);
    box-shadow: 0 40px 140px rgba(0,0,0,.72), 0 0 80px rgba(227,176,75,.08);
    transform: translateY(24px) scale(.97);
    transition: transform .42s cubic-bezier(.2,.7,.2,1);
}
.video-modal.is-open .video-modal-dialog { transform: translateY(0) scale(1); }
.video-modal-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; }
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal-help { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 13px 18px; border-top: 1px solid var(--line); background: #0b0b0b; }
.video-modal-help > span { color: var(--cream); font-size: 14px; font-weight: 700; }
.video-modal-help a { color: var(--muted); font-size: 13px; transition: color .25s ease; }
.video-modal-help a span { color: var(--gold); margin-left: 5px; }
.video-modal-help a:hover { color: var(--cream); }
.video-modal-close {
    position: absolute;
    z-index: 2;
    top: -19px;
    right: -19px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    background: var(--gold);
    color: #080808;
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    transition: transform .25s ease, background .25s ease;
}
.video-modal-close:hover { transform: rotate(90deg); background: var(--gold-bright); }

.cookie-banner {
    position: fixed;
    z-index: 8000;
    left: 50%;
    bottom: 22px;
    width: min(780px, calc(100% - 36px));
    display: none;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 20px 22px;
    border: 1px solid rgba(227,176,75,.36);
    background: rgba(12,12,12,.96);
    box-shadow: 0 24px 90px rgba(0,0,0,.52);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateX(-50%);
}
.cookie-banner.is-visible { display: grid; }
.cookie-banner p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.cookie-banner strong { color: var(--cream); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-button { min-height: 43px; padding: 10px 15px; border: 1px solid var(--line); cursor: pointer; font-size: 12px; font-weight: 800; letter-spacing: .04em; white-space: nowrap; }
.cookie-refuse { background: transparent; color: var(--cream); }
.cookie-accept { border-color: var(--gold); background: var(--gold); color: #080808; }
.cookie-button:hover { border-color: var(--gold); }
.cookie-customize { background: rgba(255,255,255,.06); color: var(--cream); }

.site-modal {
    position: fixed;
    z-index: 10000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: clamp(16px, 3vw, 42px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}
.site-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.site-modal-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(0,0,0,.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); cursor: pointer; }
.site-modal-panel {
    position: relative;
    z-index: 1;
    width: min(920px, 94vw);
    max-height: min(88vh, 920px);
    overflow: auto;
    padding: clamp(28px, 4vw, 54px);
    border: 1px solid rgba(227,176,75,.32);
    background: #111;
    box-shadow: 0 36px 130px rgba(0,0,0,.7);
    transform: translateY(22px) scale(.98);
    transition: transform .38s cubic-bezier(.2,.7,.2,1);
}
.site-modal.is-open .site-modal-panel { transform: translateY(0) scale(1); }
.site-modal-close { position: sticky; z-index: 3; float: right; top: 0; width: 44px; height: 44px; display: grid; place-items: center; margin: -12px -12px 0 18px; border: 1px solid var(--line); border-radius: 50%; background: var(--gold); color: #080808; cursor: pointer; font-size: 29px; line-height: 1; transition: transform .25s ease; }
.site-modal-close:hover { transform: rotate(90deg); }
.site-modal-panel h2 { margin: 18px 0 32px; font-family: "Manrope", sans-serif; font-size: clamp(38px, 5vw, 64px); letter-spacing: -.055em; line-height: 1; }

.contact-panel { width: min(840px, 94vw); }
.contact-modal-head > p:last-child { max-width: 620px; margin-bottom: 30px; color: var(--muted); font-size: 17px; }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-form label { display: grid; gap: 8px; color: var(--cream); font-size: 13px; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; outline: none; background: rgba(255,255,255,.04); color: var(--cream); font: 400 16px/1.5 "DM Sans", sans-serif; text-transform: none; letter-spacing: 0; transition: border-color .2s ease, background .2s ease; }
.contact-form input,
.contact-form select { min-height: 52px; padding: 0 15px; }
.contact-form textarea { min-height: 145px; padding: 14px 15px; resize: vertical; }
.contact-form select option { background: #151515; color: var(--cream); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); background: rgba(227,176,75,.055); }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; }
.form-note { color: var(--muted); font-size: 12px; line-height: 1.55; }
.contact-form .form-submit { justify-self: start; border: 0; cursor: pointer; }
.form-submit.is-loading { opacity: .65; pointer-events: none; }
.form-alert { display: grid; gap: 3px; margin-bottom: 24px; padding: 15px 17px; border-left: 4px solid; background: rgba(255,255,255,.04); }
.form-alert strong { font-size: 15px; }
.form-alert span { color: var(--muted); font-size: 14px; }
.form-alert--success { border-color: #4fc38a; }
.form-alert--error { border-color: #e66a62; }

.legal-panel { width: min(980px, 94vw); }
.legal-panel h2 { color: var(--gold); text-transform: uppercase; }
.legal-panel h3 { margin: 30px 0 8px; color: var(--gold); font-family: "Manrope", sans-serif; font-size: 19px; }
.legal-panel p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.legal-panel p strong { color: var(--cream); }
.legal-panel p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.modal-confirm { width: 100%; margin-top: 32px; border: 0; cursor: pointer; }
.cookie-table-wrap { margin-top: 24px; overflow-x: auto; }
.cookie-table { width: 100%; min-width: 700px; border-collapse: collapse; color: var(--muted); font-size: 14px; }
.cookie-table th,
.cookie-table td { padding: 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.cookie-table th { background: rgba(227,176,75,.1); color: var(--cream); }

.preferences-panel { width: min(700px, 94vw); }
.preference-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; border-top: 1px solid var(--line); }
.preference-row > div { display: grid; gap: 3px; }
.preference-row strong { font-size: 16px; }
.preference-row > div span { color: var(--muted); font-size: 14px; }
.preference-row > b { color: var(--gold); font-size: 13px; white-space: nowrap; }
.toggle { display: flex; align-items: center; gap: 9px; cursor: pointer; }
.toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle > span { position: relative; width: 48px; height: 27px; border: 1px solid var(--line); border-radius: 99px; background: #292929; transition: background .2s ease; }
.toggle > span::after { content: ""; position: absolute; top: 3px; left: 3px; width: 19px; height: 19px; border-radius: 50%; background: var(--cream); transition: transform .2s ease; }
.toggle input:checked + span { background: var(--gold); }
.toggle input:checked + span::after { transform: translateX(21px); background: #080808; }
.toggle em { color: var(--cream); font-family: "DM Sans", sans-serif; font-size: 13px; font-style: normal; }
.preference-actions { display: flex; gap: 12px; margin-top: 28px; }
.preference-actions .button { flex: 1; border: 1px solid var(--gold); cursor: pointer; }
.button-outline { background: transparent; color: var(--cream); }
.button-outline:hover { background: rgba(227,176,75,.09); }

.finale { min-height: 78vh; display: grid; place-items: center; text-align: center; background: radial-gradient(circle at center, rgba(227,176,75,.13), transparent 48%), var(--black); }
.finale-inner { max-width: 930px; }
.finale .kicker { justify-content: center; }
.finale h2 { margin: 29px 0 28px; }
.finale p:not(.kicker) { color: var(--muted); font-size: 19px; }
.finale .button { margin-top: 38px; }
.site-footer { position: relative; z-index: 1; min-height: 110px; display: grid; grid-template-columns: auto minmax(220px, .8fr) minmax(420px, 1.6fr); align-items: center; gap: 28px; padding: 25px clamp(22px, 4vw, 64px); border-top: 1px solid var(--line); background: var(--black); }
.site-footer p { color: var(--muted); font-size: 13px; }
.site-footer > div { justify-self: end; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 22px; font-size: 12px; font-weight: 700; }
.site-footer > div a:hover { color: var(--gold); }
.site-footer > div button { border: 0; background: transparent; color: var(--cream); cursor: pointer; font: inherit; }
.site-footer > div button:hover { color: var(--gold); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes enter { to { opacity: 1; transform: translateY(0); } }
@keyframes hero-image { to { transform: scale(1); } }
@keyframes scroll-line { 0% { transform: translateY(-110%); } 55%, 100% { transform: translateY(220%); } }

@media (max-width: 920px) {
    .site-header { grid-template-columns: 1fr auto; }
    .nav { display: none; }
    .hero { padding-left: 28px; padding-right: 28px; }
    .hero-content { width: 88%; }
    .hero-mark { display: none; }
    .vision-grid,
    .connection-head,
    .work-heading { grid-template-columns: 1fr; }
    .section-heading { position: relative; top: auto; }
    .vision-copy { padding-top: 0; }
    .connection-head > p,
    .work-heading > p { justify-self: start; }
    .reason { grid-template-columns: 55px 1fr; padding: 28px 0; }
    .reason-line { display: none; }
    .reason h3,
    .reason p { grid-column: 2; }
    .reason h3 { grid-row: 1; }
    .film-grid { grid-template-columns: 1fr; gap: 58px; }
    .project { grid-template-columns: 1fr; gap: 34px; }
    .project:nth-child(even) .project-image,
    .project:nth-child(even) .project-copy { order: initial; }
    .site-footer { grid-template-columns: auto 1fr; }
    .site-footer p { justify-self: end; }
    .site-footer > div { grid-column: 1 / -1; justify-self: start; justify-content: flex-start; }
}

@media (max-width: 620px) {
    .site-header { height: 70px; padding: 0 20px; }
    .brand { font-size: 18px; }
    .header-cta { font-size: 11px; }
    .hero { min-height: 100svh; padding: 110px 21px 62px; align-items: flex-end; }
    .hero-photo img { object-position: 62% center; }
    .hero-shade { background: linear-gradient(0deg, rgba(7,7,7,.98) 0%, rgba(7,7,7,.76) 43%, rgba(7,7,7,.18) 78%), linear-gradient(90deg, rgba(7,7,7,.68), transparent 80%); }
    .hero-content { width: 100%; }
    .hero h1 { font-size: clamp(50px, 16vw, 72px); margin: 22px 0 24px; }
    .hero-intro { font-size: 17px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; margin-top: 30px; }
    .button { width: 100%; }
    .scroll-cue { display: none; }
    .section { padding-left: 21px; padding-right: 21px; }
    .section-number { top: 60px; right: 18px; }
    blockquote { margin: 48px 0; padding-left: 28px; }
    blockquote span { display: none; }
    .connection-head,
    .work-heading { gap: 30px; }
    .reasons { margin-top: 60px; }
    .reason { grid-template-columns: 38px 1fr; gap: 15px; min-height: 0; }
    .reason h3 { font-size: 32px; }
    .reason p { font-size: 16px; }
    .film-grid { margin-top: 52px; }
    .work-list { margin-top: 48px; }
    .project { padding: 38px 0; }
    .project-image { aspect-ratio: 4 / 3; }
    .project-copy p { font-size: 16px; }
    .film-visual { aspect-ratio: 4 / 3; }
    .film-meta h3 { font-size: 23px; }
    .play { left: 20px; bottom: 20px; }
    .play-icon { width: 48px; height: 48px; }
    .site-footer { grid-template-columns: 1fr auto; padding: 34px 21px; }
    .site-footer p { grid-column: 1 / -1; grid-row: 2; justify-self: start; }
    .site-footer > div { grid-column: 1 / -1; grid-row: 3; }
    .video-modal { padding: 14px; }
    .video-modal-dialog { width: 100%; }
    .video-modal-close { top: -14px; right: -8px; width: 42px; height: 42px; font-size: 28px; }
    .video-modal-help { align-items: flex-start; flex-direction: column; gap: 3px; padding: 12px 14px; }
    .cookie-banner { bottom: 12px; grid-template-columns: 1fr; gap: 15px; padding: 18px; }
    .cookie-actions { width: 100%; }
    .cookie-button { flex: 1; white-space: normal; }
    .site-modal { padding: 10px; }
    .site-modal-panel { width: 100%; max-height: 94vh; padding: 26px 20px; }
    .site-modal-close { margin-right: 0; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form .form-submit { width: 100%; }
    .preference-row { align-items: flex-start; flex-direction: column; }
    .preference-actions { flex-direction: column; }
}

@media (pointer: coarse) { .cursor-light { display: none; } }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal, .hero-enter { opacity: 1; transform: none; }
}
