@font-face {
  font-family: 'Inter Tight';
  src: url('assets/fonts/inter-tight-semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #f4f4f4;
  --paper: #101010;
  --muted: #aaa;
  --line: #323232;
  --surface: #181818;
  --field: #202020;
  --display: 'Inter Tight', Arial, Helvetica, sans-serif;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-space: clamp(3rem, 5vw, 4rem);
  font: 16px/1.5 Arial, Helvetica, sans-serif;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body { margin: 0; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; cursor: pointer; border: 0; }
a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button, a { touch-action: manipulation; }
img, video { display: block; max-width: 100%; }
h1, h2, h3, p, blockquote, figure { margin: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid #fff; outline-offset: 5px; }
[hidden] { display: none !important; }
button:disabled { opacity: .6; cursor: wait; }
::selection { background: #f4f4f4; color: #101010; }
.container { width: min(calc(100% - var(--gutter) * 2), 1560px); margin-inline: auto; }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.icon { display: block; width: 20px; height: 20px; flex: 0 0 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.arrow-back { transform: rotate(180deg); }
.arrow-up { transform: rotate(-90deg); }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 100; color: #111; background: #fff; padding: 1rem; }
.skip-link:focus { top: 1rem; }
.page-progress { position: fixed; z-index: 80; top: 0; left: 0; width: 100%; height: 2px; pointer-events: none; }
.page-progress span { display: block; height: 100%; background: #fff; transform: scaleX(0); transform-origin: left; will-change: transform; }

/* One quiet header, using the original header mark. */
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(16,16,16,.98); border-bottom: 1px solid #242424; }
.header-inner { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: .75rem; }
.brand { display: block; flex-shrink: 0; }
.site-header .brand { width: 48px; height: 44px; position: relative; overflow: hidden; }
.site-header .brand img { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 78px; max-width: none; height: auto; filter: brightness(0) invert(1); }
.desktop-nav { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.desktop-nav a { display: flex; align-items: center; min-height: 44px; font-size: .9375rem; color: #b8b8b8; }
.desktop-nav a:hover, .desktop-nav a[aria-current] { color: #fff; }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.pill-button { display: inline-flex; justify-content: center; align-items: center; gap: 1.25rem; min-height: 52px; padding: .875rem 1.375rem; color: #111; background: #f4f4f4; border-radius: 8px; font-size: .9375rem; line-height: 1.35; transition: background .18s; }
.pill-button:hover { background: #dcdcdc; }
.pill-button:focus-visible { outline-color: #fff; }
.header-contact { min-height: 44px; padding: .75rem 1.125rem; font-size: .875rem; gap: .875rem; }
.header-contact .icon { width: 18px; height: 18px; flex-basis: 18px; }
.text-link, .email-link { display: inline-flex; align-items: center; gap: .75rem; min-height: 44px; font-size: .9375rem; }
.text-link:hover, .email-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.quiet-button { display: inline-flex; align-items: center; justify-content: center; gap: .625rem; min-height: 44px; padding: .5rem 0; font-size: .875rem; background: transparent; }
.inline-button { color: inherit; background: transparent; font-size: inherit; padding: 0; text-decoration: underline; text-underline-offset: 3px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; background: transparent; flex-shrink: 0; }
.menu-toggle span { display: block; height: 1px; background: #fff; margin: 7px 0; transition: transform .2s; }
.menu-toggle[aria-expanded=true] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded=true] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { padding: .5rem var(--gutter) 1.5rem; border-top: 1px solid var(--line); max-height: calc(100dvh - 76px); overflow: auto; }
.mobile-nav a { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.125rem; }

/* The introduction stays together; the portrait brings Matt back into it. */
.hero { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: center; gap: 5rem; padding-block: var(--section-space); }
.hero h1 { font-size: clamp(2.75rem, 4.6vw, 4rem); line-height: 1.08; letter-spacing: -.025em; max-width: 770px; }
.hero h1 > span { display: block; }
.hero h1 > span + span { margin-top: .08em; text-wrap: balance; }
.hero-copy > p { color: #b8b8b8; font-size: 1.0625rem; line-height: 1.7; max-width: 490px; margin-top: 1.5rem; }
.hero-copy > .pill-button { margin-top: 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.5rem; margin-top: 1.75rem; }
.hero-edit-link { color: #d1d1d1; font-size: .875rem; }
.edit-link-icon { display: grid; gap: 3px; width: 22px; }
.edit-link-icon i { display: block; height: 3px; width: 17px; background: currentColor; transition: transform .25s; }
.edit-link-icon i:nth-child(2) { margin-left: 5px; }
.hero-edit-link:hover .edit-link-icon i:first-child { transform: translateX(5px); }
.hero-edit-link:hover .edit-link-icon i:nth-child(2) { transform: translateX(-5px); }
.hero-edit-link:hover .edit-link-icon i:last-child { transform: translateX(3px); }
@keyframes cut-in { from { clip-path: inset(-.2em 100% -.3em -.2em); transform: translateX(-.12em); } to { clip-path: inset(-.2em); transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .hero h1 > span { animation: cut-in .65s cubic-bezier(.22,1,.36,1) backwards; }
  .hero h1 > span + span { animation-delay: .13s; }
  .pill-button .icon { transition: transform .2s; }
  .pill-button:hover .icon { transform: translateX(3px); }
}
.hero-portrait { width: 100%; aspect-ratio: 1/1.08; overflow: hidden; border-radius: 10px; background: #171717; }
.hero-portrait picture { display: block; width: 100%; height: 100%; }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; filter: grayscale(1); }

/* Project names sit below the films, leaving the content unobstructed. */
.work-heading { margin-bottom: 1.25rem; }
.legacy-anchor { display: block; height: 0; scroll-margin-top: 6rem; }
#faq { scroll-margin-top: 6rem; }
.work-heading h2 { font-size: 1.375rem; line-height: 1.3; letter-spacing: -.01em; }
/* A uniform portrait gallery; full projects keep their original format in the dialog. */
.film-strip { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; align-items: start; }
.film-card { min-width: 0; position: relative; isolation: isolate; }
.film-media { display: block; position: relative; aspect-ratio: 9 / 16; overflow: hidden; border-radius: 8px; color: #fff; background: #1d1d1d; }
.film-poster, .film-preview { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.film-preview { opacity: 0; transition: opacity .25s; }
.is-playing .film-preview, .is-playing .film-youtube-preview { opacity: 1; }
.film-media { transition: box-shadow .2s; }
.film-media:hover, .film-media:focus-visible { box-shadow: 0 0 0 2px #ffffff80; }
.film-media:after, .additional-media:after { content: ''; position: absolute; z-index: 2; inset: auto 0 0; height: 2px; background: #fff; transform: scaleX(var(--preview-progress, 0)); transform-origin: left; opacity: 0; pointer-events: none; }
.is-playing .film-media:after, .is-playing .additional-media:after { opacity: .8; }
.film-youtube-preview { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.film-youtube-preview iframe { position: absolute; top: 0; left: 50%; width: 316.05%; height: 100%; transform: translateX(-50%); border: 0; pointer-events: none; }
.play-disc { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid #ffffff90; background: #1119; border-radius: 50%; color: #fff; flex-shrink: 0; transition: background .2s; }
.play-disc svg { width: 13px; height: 13px; fill: currentColor; }
.film-media > .play-disc { position: absolute; right: 14px; bottom: 14px; z-index: 2; }
.film-media:hover .play-disc, .additional-media:hover .play-disc { color: #111; background: #fff; }
.film-caption { margin-top: .75rem; font-size: .9375rem; line-height: 1.4; color: #ddd; }
.film-type { display: block; margin-top: .2rem; color: var(--muted); font-size: .875rem; }
.film-breakdown-link { display: inline-flex; align-items: center; gap: .5rem; min-height: 44px; font-size: .875rem; color: #bbb; }
.film-breakdown-link:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.film-breakdown-link .icon { width: 16px; height: 16px; flex-basis: 16px; }
.film-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 70px; }
.more-work-toggle { display: inline-flex; align-items: center; gap: .75rem; min-height: 44px; padding: .5rem 0; color: #b8b8b8; background: transparent; font-size: .875rem; text-align: left; }
.more-work-toggle:hover { color: #fff; }
.more-work-toggle .icon { width: 16px; height: 16px; flex-basis: 16px; transition: transform .2s; }
.more-work-toggle[aria-expanded=true] .icon { transform: rotate(180deg); }
.film-tools { display: flex; align-items: center; gap: 1.25rem; }
.film-tools .quiet-button { color: #b8b8b8; }
.film-index { display: none; font-size: .8125rem; align-items: center; gap: .3rem; white-space: nowrap; }
.pause-icon { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.6; fill: none; flex-shrink: 0; }
.film-arrows { display: none; align-items: center; gap: .25rem; }
.film-arrows button { display: grid; place-items: center; width: 44px; height: 44px; background: transparent; border: 1px solid var(--line); border-radius: 50%; }
.film-arrows button:hover { background: #242424; }
.film-arrows .icon { width: 18px; height: 18px; }
.more-work-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px 20px; padding: .5rem 0 1.5rem; }
.additional-media { display: block; position: relative; aspect-ratio: 9/16; border-radius: 8px; overflow: hidden; background: #1d1d1d; }
.additional-media > img { width: 100%; height: 100%; object-fit: cover; }
.additional-media .play-disc { position: absolute; right: 14px; bottom: 14px; }
.additional-caption { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: .25rem .75rem; padding-top: .75rem; font-size: .8125rem; }
.additional-caption strong { font-size: .9375rem; font-weight: 400; color: #ddd; }
.additional-caption > span { color: var(--muted); }

.brand-proof { padding-top: 2rem; padding-bottom: var(--section-space); }
.brand-proof > p { text-align: center; font-size: .8125rem; color: var(--muted); margin-bottom: 1.75rem; }
.brand-logos { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 3rem; align-items: center; padding-inline: 1.25rem; }
.brand-logos img { width: 100%; height: 35px; object-fit: contain; filter: brightness(0) invert(1); opacity: .7; }
.brand-logos .logo-disney { height: 40px; }
.brand-logos .logo-ea { height: 38px; }
.brand-logos .logo-epic { height: 46px; }
.brand-logos .logo-duolingo { height: 28px; }

/* About, services and proof form one section with a shared grid. */
.about-section { padding-top: var(--section-space); padding-bottom: 0; border-top: 1px solid var(--line); }
.about-grid, .about-proof, .contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.about-grid { grid-template-areas: 'heading audiences' 'copy audiences'; grid-template-rows: max-content 1fr; row-gap: 1.25rem; }
.about-grid > h2 { grid-area: heading; }
.about-copy { grid-area: copy; min-width: 0; }
.about-grid > .audiences { grid-area: audiences; }
.contact-grid { grid-template-areas: 'intro form' 'faqs form'; grid-template-rows: max-content 1fr; row-gap: 1.75rem; }
.contact-copy { grid-area: intro; min-width: 0; }
.contact-copy h2 { max-width: 16ch; text-wrap: balance; }
.about-grid > h2, .contact-copy h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); line-height: 1.15; letter-spacing: -.02em; }
.about-copy > p, .contact-copy > p { font-size: 1rem; line-height: 1.75; color: #b8b8b8; max-width: 52ch; margin-top: 1.25rem; }
.about-copy > p + p { margin-top: 1rem; }
.about-copy > p:first-child { margin-top: 0; }
.audiences { min-width: 0; scroll-margin-top: 6rem; }
summary { cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
.audience-tabs { display: flex; gap: .25rem; border-bottom: 1px solid var(--line); margin-bottom: 1.25rem; }
.audience-tabs[hidden] { display: none; }
.audience-tab { flex: 1 1 auto; min-width: 0; min-height: 52px; padding: .75rem .5rem; margin-bottom: -1px; border-bottom: 2px solid transparent; color: #aaa; background: transparent; font-size: .875rem; line-height: 1.4; white-space: nowrap; }
.audience-tab:hover { color: #fff; }
.audience-tab[aria-selected=true] { color: #fff; border-bottom-color: #f4f4f4; }
.audience-panel-title { font-size: 1.25rem; margin-bottom: 1rem; }
.audiences:not(.is-enhanced) .audience-content + .audience-content { border-top: 1px solid var(--line); padding-top: 1.5rem; }
/* Each tab follows its own content height; hidden panels occupy no space. */
.expand-icon { position: relative; width: 24px; height: 24px; flex-shrink: 0; }
.expand-icon:before, .expand-icon:after { content: ''; position: absolute; left: 5px; top: 11px; width: 14px; height: 1px; background: currentColor; }
.expand-icon:after { transform: rotate(90deg); transition: transform .2s; }
details[open] > summary .expand-icon:after { transform: rotate(0deg); }
.audience-content { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
.audience-content:focus-visible { outline: 1px solid #aaa; outline-offset: 6px; }
.audience-content p { max-width: 64ch; font-size: 1rem; line-height: 1.7; color: #b8b8b8; }
.audience-examples { display: grid; gap: .5rem; width: 100%; margin-block: 1.25rem 1.5rem; }
.audience-example { display: grid; grid-template-columns: 88px minmax(0, 1fr) 36px; align-items: center; gap: .875rem; min-width: 0; min-height: 88px; padding: .75rem; border: 1px solid var(--line); border-radius: 8px; background: #171717; transition: background .18s, border-color .18s; }
.audience-example-thumb { width: 88px; height: 62px; object-fit: cover; object-position: 50% 35%; border-radius: 4px; }
.audience-example-copy { display: grid; gap: .25rem; min-width: 0; overflow-wrap: anywhere; }
.audience-example-copy strong { color: var(--ink); font: 600 1.125rem/1.25 var(--display); }
.audience-example-copy > span { color: var(--muted); font-size: .875rem; line-height: 1.4; }
.audience-example-play { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid #666; border-radius: 50%; color: #f4f4f4; transition: color .18s, background .18s; }
.audience-example-play svg { width: 15px; height: 15px; margin-left: -1px; fill: currentColor; }
.audience-example:hover, .audience-example:focus-visible { background: #222; border-color: #777; }
.audience-example:hover .audience-example-play, .audience-example:focus-visible .audience-example-play { color: #111; background: #f4f4f4; border-color: #f4f4f4; }
.audience-content .audience-enquire { font-size: .9375rem; min-height: 50px; }
.about-proof { row-gap: 2rem; margin-top: 3rem; padding-block: 2.5rem; border-block: 1px solid var(--line); }
.proof-context { min-width: 0; }
.experience-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 440px; gap: 2rem; }
.experience-strip > div { display: flex; flex-direction: column; align-items: flex-start; gap: .4rem; }
.experience-strip strong { font: 600 2.5rem/1.1 var(--display); letter-spacing: -.025em; }
.experience-strip span { font-size: .875rem; line-height: 1.5; color: var(--muted); }
.creator-credits { margin-top: 1.75rem; }
.creator-credits > div { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 1.75rem; }
.creator-credits > div > span { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: #b8b8b8; }
.creator-credits img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; filter: grayscale(1); }
.testimonial { min-width: 0; }
.testimonial blockquote { max-width: 38ch; font: 600 clamp(1.375rem, 2.2vw, 1.75rem)/1.45 var(--display); letter-spacing: -.01em; text-wrap: balance; }
.quote-credit { display: flex; align-items: center; gap: .75rem; margin-top: 1.25rem; }
.quote-credit img { width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; object-fit: cover; filter: grayscale(1); }
.quote-credit p { font-size: .875rem; }
.quote-credit span { display: block; color: var(--muted); font-size: .875rem; margin-top: .125rem; }

/* Form controls keep the same dark appearance on Safari and iOS. */
.contact-section { padding-block: var(--section-space); }
.email-link { margin-top: 1rem; font-size: .9375rem; overflow-wrap: anywhere; }
.email-link .icon { width: 18px; height: 18px; flex-basis: 18px; }
.faqs { grid-area: faqs; border-top: 1px solid var(--line); width: 100%; max-width: 52ch; }
.faqs details { border-bottom: 1px solid var(--line); }
.faqs summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 56px; font-size: .9375rem; }
.faqs details p { color: var(--muted); font-size: .9375rem; line-height: 1.7; padding: 0 1rem 1.25rem 0; }
.brief-panel { grid-area: form; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 2rem; min-width: 0; }
#brief { scroll-margin-top: 6rem; }
.form-heading { color: var(--muted); font-size: .8125rem; }
.form-progress { height: 2px; background: #393939; margin: .875rem 0 1.5rem; }
.form-progress span { display: block; width: 50%; height: 100%; background: #f4f4f4; transition: width .25s; }
.form-step { min-width: 0; border: 0; margin: 0; padding: 0; }
.form-step legend { padding: 0; margin-bottom: 1.25rem; font: 600 1.25rem/1.4 var(--display); letter-spacing: -.01em; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .625rem; margin-bottom: 1.5rem; }
.choice { position: relative; display: flex; align-items: center; justify-content: space-between; gap: .5rem; min-height: 52px; padding: .75rem; border: 1px solid #474747; border-radius: 7px; background: var(--field); font-size: .875rem; cursor: pointer; }
.choice input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; margin: 0; cursor: pointer; }
.choice:has(input:focus-visible) { outline: 2px solid #fff; outline-offset: 3px; }
.choice:has(input:checked) { background: #f4f4f4; color: #111; border-color: #f4f4f4; }
.choice-check { opacity: 0; }
.choice-check .icon { width: 16px; height: 16px; flex-basis: 16px; }
.choice:has(input:checked) .choice-check { opacity: 1; }
.field { display: block; font-size: .875rem; margin-top: 1.25rem; color: #e4e4e4; }
.field-optional { float: right; color: var(--muted); font-size: .8125rem; }
.field input, .field select, .field textarea {
  display: block; width: 100%; min-height: 52px; margin-top: .5rem;
  padding: .75rem .875rem; border: 1px solid #474747; border-radius: 7px;
  background-color: var(--field); color: #f4f4f4; font-size: 1rem; line-height: 1.5;
  box-shadow: none; appearance: none; -webkit-appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: #aaa; opacity: 1; }
.field select { padding-right: 2.5rem; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23dddddd' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-position: right .75rem center; background-size: 20px; background-repeat: no-repeat; }
.field select:required:invalid { color: #b8b8b8; }
.field select option { color: #f4f4f4; background: #202020; }
.field textarea { resize: vertical; min-height: 110px; }
.field-help { margin-top: .625rem; font-size: .8125rem; line-height: 1.6; color: var(--muted); }
.form-button { width: 100%; justify-content: space-between; margin-top: 1.5rem; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field-row .field { margin-top: 0; }
.brief-summary { color: #b8b8b8; font-size: .8125rem; line-height: 1.6; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.form-actions { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.back-button { gap: .5rem; }
.back-button .icon { width: 18px; height: 18px; flex-basis: 18px; }
.privacy-note { margin-top: 1.25rem; }
.honeypot { display: none; }
#form-status { color: #ddd; font-size: .9375rem; line-height: 1.6; }
#form-status:not(:empty) { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.form-success { padding-block: 1.25rem; }
.success-mark { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid #777; border-radius: 50%; margin-bottom: 1.25rem; }
.form-success h3 { font-size: 1.75rem; line-height: 1.2; letter-spacing: -.015em; }
.form-success p { color: #b8b8b8; font-size: 1rem; line-height: 1.7; margin-top: 1rem; }
.form-success a { margin-top: 1rem; }

.site-footer { border-top: 1px solid var(--line); padding-block: 2rem; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.footer-top .brand { width: 165px; }
.footer-top .brand img { width: 100%; height: auto; filter: brightness(0) invert(1); opacity: .8; }
.back-top { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.25rem; font-size: .8125rem; color: var(--muted); }
.footer-bottom > div { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-bottom a, .footer-bottom button { display: inline-flex; align-items: center; min-height: 44px; gap: .3rem; }
.footer-bottom .icon { width: 14px; height: 14px; flex-basis: 14px; }
.footer-bottom a:hover { color: #fff; }

dialog { border: 1px solid var(--line); color: var(--ink); background: var(--surface); padding: 0; border-radius: 10px; overscroll-behavior: contain; max-height: 92dvh; }
dialog::backdrop { background: #000d; }
.project-dialog { width: min(1080px, calc(100% - 3rem)); }
.project-dialog.is-landscape { width: min(1340px, calc(100% - 3rem)); }
.project-dialog.is-landscape .project-dialog-grid { grid-template-columns: minmax(0, 1.8fr) minmax(310px, 1fr); }
.project-dialog.is-portrait .project-dialog-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); }
.dialog-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 1.25rem; border-bottom: 1px solid var(--line); font-size: .875rem; }
.dialog-close { display: inline-flex; align-items: center; gap: .75rem; min-height: 44px; padding: .5rem 0; font-size: .875rem; background: transparent; }
.dialog-close .icon { width: 18px; height: 18px; flex-basis: 18px; }
.project-dialog-grid { display: grid; grid-template-columns: 1.1fr .9fr; }
.project-player { position: relative; display: grid; place-items: center; background: #080808; min-height: 360px; }
.project-player > video { width: 100%; height: min(620px, 73dvh); object-fit: contain; }
.project-embed { display: block; width: 100%; height: auto; min-height: 0; aspect-ratio: 16 / 9; border: 0; }
.is-landscape .project-player > video { height: auto; aspect-ratio: 16 / 9; }
.is-portrait .project-embed { width: min(100%, calc(70dvh * .5625)); height: min(70dvh, 680px); aspect-ratio: 9 / 16; }
.project-information { display: flex; flex-direction: column; align-items: flex-start; padding: 2rem; min-width: 0; }
.project-information h2 { font-size: 2rem; line-height: 1.15; letter-spacing: -.02em; }
.project-variants { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.project-variants button { min-height: 44px; border: 1px solid #555; border-radius: 6px; padding: .625rem .75rem; font-size: .875rem; line-height: 1.5; color: #ddd; background: transparent; }
.project-variants button[aria-pressed=true] { background: #f4f4f4; color: #111; border-color: #f4f4f4; }
.project-variants button:hover:not([aria-pressed=true]) { background: #292929; }
.project-information > p { color: #b8b8b8; font-size: 1rem; line-height: 1.7; margin-top: 1rem; }
.project-information > .project-film-title { color: #ddd; line-height: 1.45; margin-top: .75rem; }
.project-information dl { width: 100%; margin: 1.5rem 0 .75rem; }
.project-information dl > div { display: grid; grid-template-columns: 65px minmax(0, 1fr); gap: 1rem; border-top: 1px solid var(--line); padding: .75rem 0; font-size: .875rem; }
.project-information dt { color: var(--muted); }
.project-information dd { margin: 0; }
.project-information .text-link { font-size: .875rem; }
.project-information .text-link .icon { width: 16px; height: 16px; flex-basis: 16px; }
.project-breakdown { width: 100%; margin: .5rem 0 1.5rem; border-block: 1px solid var(--line); }
.project-breakdown summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 52px; padding-block: .75rem; font-size: .875rem; }
.project-breakdown p { color: #b8b8b8; font-size: .875rem; line-height: 1.7; margin-bottom: 1rem; }
.project-breakdown strong { color: #eee; font-weight: 500; }
.project-breakdown .text-link { text-align: left; margin-bottom: .75rem; background: transparent; }
.project-breakdown button:disabled { opacity: .5; cursor: wait; }
.edit-lab-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.edit-screen { display: grid; place-items: center; padding: 1.25rem; background: #080808; min-width: 0; }
.edit-viewport { position: relative; width: min(100%, 326px, calc(65dvh * .5625)); aspect-ratio: 9 / 16; background: #080808; overflow: hidden; }
.edit-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; pointer-events: none; }
.edit-video.is-current { opacity: 1; pointer-events: auto; z-index: 1; }
.edit-loading { display: none; position: absolute; inset: 0; z-index: 2; place-items: center; color: #fff; background: #08080866; font-size: .875rem; pointer-events: none; }
.edit-lab.is-loading .edit-loading { display: grid; }
.edit-information { display: flex; flex-direction: column; align-items: flex-start; padding: 2rem; min-width: 0; }
.edit-information h2 { font-size: 2rem; line-height: 1.15; letter-spacing: -.02em; }
.edit-intro { margin-top: 1rem; color: #b8b8b8; font-size: 1rem; line-height: 1.65; }
.edit-stages { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .375rem; width: 100%; margin-top: 1.5rem; }
.edit-stages button { min-height: 48px; padding: .625rem .5rem; border: 1px solid #555; border-radius: 6px; background: transparent; color: #ddd; font-size: .875rem; line-height: 1.3; }
.edit-stages button[aria-pressed=true] { color: #111; background: #f4f4f4; border-color: #f4f4f4; }
.edit-stages button:hover:not([aria-pressed=true]), .edit-stages button.is-pending:not([aria-pressed=true]) { background: #303030; }
.edit-description { margin-top: 1rem; min-height: 4.8em; font-size: .875rem; line-height: 1.6; color: #bbb; }
.edit-status { min-height: 1.5em; font-size: .8125rem; line-height: 1.5; color: #aaa; }
.edit-fallback { font-size: .8125rem; margin-block: .5rem; }
.edit-transcript { width: 100%; margin-top: .75rem; border-block: 1px solid var(--line); }
.edit-transcript summary { display: flex; align-items: center; justify-content: space-between; min-height: 48px; gap: 1rem; font-size: .875rem; }
.edit-transcript p { margin-bottom: .875rem; color: #b8b8b8; font-size: .875rem; line-height: 1.65; }
.edit-transcript .edit-credit { color: #aaa; font-size: .8125rem; }
.edit-return { margin-block: .75rem 1.25rem; background: transparent; font-size: .875rem; }
.edit-return .icon { width: 16px; height: 16px; flex-basis: 16px; }
.edit-enquire { margin-top: auto; width: 100%; justify-content: space-between; }
.project-enquire { margin-top: 1.5rem; width: 100%; justify-content: space-between; }
.project-related { display: grid; gap: .25rem; width: 100%; }
.project-related .text-link { font-size: .875rem; }
.video-error { position: absolute; inset: auto 1rem 4rem; padding: 1rem; background: #181818; color: #fff; text-align: center; font-size: .875rem; }
.video-error a { display: inline-flex; align-items: center; gap: .5rem; text-decoration: underline; }
.privacy-dialog { width: min(610px, calc(100% - 2rem)); padding: .5rem 1.5rem 1.5rem; }
.privacy-dialog .dialog-top { padding-inline: 0; }
.privacy-dialog h2 { font-size: 1.5rem; }
.privacy-dialog > p { color: #b8b8b8; font-size: 1rem; line-height: 1.7; margin-top: 1rem; }
.privacy-dialog a { display: inline; text-decoration: underline; overflow-wrap: anywhere; }
.privacy-dialog a .icon { display: inline; vertical-align: middle; width: 16px; height: 16px; }

/* Keep a shared page edge while scaling the introduction on large screens. */
@media (min-width: 1280px) {
  .hero { grid-template-columns: minmax(0, 1fr) clamp(300px, 22vw, 360px); gap: clamp(5rem, 7vw, 8rem); }
  .hero h1 { font-size: clamp(4rem, 4vw, 4.5rem); max-width: 900px; }
}

@media (max-width: 1100px) {
  .film-strip { --preview-height: 360px; display: flex; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none; width: 100%; padding-inline: var(--gutter); gap: 14px; scroll-padding-inline: var(--gutter); }
  .film-strip::-webkit-scrollbar { display: none; }
  .film-card { flex: 0 0 calc(var(--preview-height) * .5625); scroll-snap-align: start; }
  /* Allow the last project to align with the same leading edge as the first. */
  .film-card:last-child { margin-right: max(0px, calc(100% - var(--preview-height) * .5625)); }
  .film-index, .film-arrows { display: flex; }
}
@media (max-width: 1050px) {
  .more-work-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero { grid-template-columns: minmax(0, 1fr) 260px; gap: 3rem; }
  .hero h1 { font-size: 3rem; }
  .about-grid, .about-proof, .contact-grid { column-gap: 3rem; }
  .about-grid { row-gap: 1.25rem; }
  .brief-panel { padding: 1.5rem; }
  .brand-logos { gap: 2rem; }
  .project-information { padding: 1.5rem; }
  .edit-information { padding: 1.5rem; }
  .project-enquire { margin-top: 1.5rem; }
}
@media (max-width: 800px) {
  .header-inner { min-height: 74px; gap: 1rem; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: minmax(0, 1fr) 210px; gap: 2rem; }
  .hero h1 { font-size: 2.6rem; }
  .hero-copy > p { font-size: 1rem; }
  .film-tools { gap: .75rem; }
  #motion-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  .film-tools .quiet-button { width: 44px; }
  .about-grid, .about-proof, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-areas: 'heading' 'audiences' 'copy'; grid-template-rows: auto; row-gap: 1.25rem; }
  .contact-grid { grid-template-areas: 'intro' 'form' 'faqs'; grid-template-rows: auto; }
  .about-copy > p, .contact-copy > p, .faqs { max-width: 620px; }
  .about-copy { margin-top: .75rem; }
  .about-proof { margin-top: var(--section-space); padding-block: 0; row-gap: 0; }
  .proof-context, .testimonial { padding-block: 2.5rem; }
  .testimonial { border-top: 1px solid var(--line); }
  .brand-logos { gap: 2rem; padding: 0; }
  .brand-logos img { height: 28px; }
  .brand-logos .logo-disney, .brand-logos .logo-ea { height: 32px; }
  .brand-logos .logo-epic { height: 36px; }
  .brand-logos .logo-duolingo { height: 23px; }
  .project-dialog, .project-dialog.is-landscape { width: calc(100% - 2rem); max-height: 94dvh; }
  .project-dialog .project-dialog-grid, .project-dialog.is-landscape .project-dialog-grid, .project-dialog.is-portrait .project-dialog-grid { grid-template-columns: 1fr; }
  .project-dialog.is-portrait .project-embed { width: max(200px, min(100%, calc(48dvh * .5625))); height: max(356px, 48dvh); }
  .edit-lab-grid { grid-template-columns: 1fr; }
  .edit-screen { padding: 1rem; }
  .edit-viewport { width: min(100%, calc(46dvh * .5625)); }
  .edit-information h2 { font-size: 1.75rem; }
  .edit-description { min-height: 0; }
  .project-player { min-height: 0; }
  .project-player > video { height: 48dvh; }
  .dialog-top { position: sticky; top: 0; z-index: 3; background: var(--surface); }
  .project-information h2 { font-size: 1.75rem; }
  .project-enquire { max-width: 400px; }
}
@media (max-width: 620px) {
  .hero { position: relative; display: block; }
  .hero h1 { font-size: clamp(2rem, 7.8vw, 2.875rem); line-height: 1.12; }
  .hero h1 > span + span { margin-top: 1.5rem; max-width: 430px; }
  .hero-portrait { position: absolute; top: var(--section-space); right: 0; width: 104px; height: 112px; border-radius: 8px; }
  .hero-portrait img { object-position: 50% 30%; }
  .hero-copy > p { margin-top: 1.25rem; max-width: 440px; }
  .hero-copy > .pill-button { margin-top: 1.5rem; }
  .hero-actions { margin-top: 1.5rem; gap: .375rem 1.25rem; }
  .hero { padding-bottom: 2.5rem; }
  .brand-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem 2rem; padding-inline: .75rem; }
  .brand-proof { padding-top: 1.5rem; }
  .experience-strip { gap: 1rem; }
  .experience-strip strong { font-size: 2rem; }
  .experience-strip span { font-size: .875rem; }
  .creator-credits > div { gap: 1rem 1.5rem; }
  .more-work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem .75rem; }
  .additional-media { aspect-ratio: 9/16; }
  .additional-media > img { object-position: 50% 30%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
}
@media (max-width: 460px) {
  .audience-example { grid-template-columns: 64px minmax(0, 1fr) 32px; gap: .625rem; min-height: 80px; padding: .625rem; }
  .audience-example-thumb { width: 64px; height: 56px; }
  .audience-example-copy strong { font-size: 1rem; }
  .audience-example-play { width: 32px; height: 32px; }
  .audience-content .audience-enquire { width: 100%; justify-content: space-between; }
  :root { --gutter: 1.25rem; }
  .header-inner { min-height: 70px; gap: .75rem; padding-block: .625rem; }
  .site-header .brand { width: 44px; height: 44px; }
  .site-header .brand img { width: 70px; }
  .header-actions { gap: .25rem; }
  .header-contact { font-size: .875rem; padding: .75rem 1rem; min-height: 44px; }
  .header-contact .icon { display: none; }
  .hero h1 { font-size: clamp(2rem, 8.6vw, 2.5rem); }
  .hero-copy > p { font-size: 1rem; }
  .work-heading h2 { font-size: 1.25rem; }
  .work-heading { margin-bottom: 1rem; }
  .film-strip { --preview-height: 340px; }
  .film-caption { font-size: .875rem; }
  .film-toolbar { gap: .5rem; min-height: 68px; }
  .more-work-toggle { font-size: .875rem; gap: .5rem; }
  .more-work-toggle .icon { width: 14px; height: 14px; flex-basis: 14px; }
  .film-tools { gap: .25rem; }
  .film-index { display: none; }
  .film-tools .quiet-button { width: 36px; }
  .film-arrows button { width: 40px; height: 44px; border: 0; }
  .film-arrows { gap: 0; }
  .experience-strip { gap: 1rem; }
  .creator-credits > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .creator-credits > div > span { font-size: .8125rem; }
  .creator-credits img { width: 26px; height: 26px; }
  .about-grid > h2, .contact-copy h2 { font-size: 1.875rem; }
  .email-link { font-size: .875rem; gap: .5rem; }
  .faqs summary { font-size: .875rem; }
  .brief-panel { padding: 1.25rem; border-radius: 8px; }
  .choice-grid { gap: .5rem; }
  .choice { font-size: .875rem; padding: .75rem .625rem; gap: .25rem; }
  .field-row { grid-template-columns: 1fr; gap: 1.25rem; }
  .form-actions { gap: .75rem; }
  .form-actions .pill-button { gap: .75rem; padding-inline: 1rem; }
  .project-dialog, .project-dialog.is-landscape { width: calc(100% - 1rem); max-height: 96dvh; }
  .project-player > video { height: 46dvh; }
  .project-information { padding: 1.25rem; }
  .edit-information { padding: 1.25rem; }
  .edit-stages button { font-size: .8125rem; }
  .privacy-dialog { padding-inline: 1.25rem; }
  .dialog-top { padding-inline: 1rem; }
}
@media (max-width: 359px) {
  :root { --gutter: 1rem; }
  .hero h1 { font-size: 2rem; }
  .film-strip { --preview-height: 315px; }
  .email-link { font-size: .8125rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { animation: none !important; transition: none !important; }
}
@media print {
  :root { --ink: #111; --paper: #fff; --muted: #444; --line: #ccc; color-scheme: light; }
  .site-header, .page-progress, .film-tools, .more-work-toggle, .form-button, .menu-toggle { display: none; }
  .container { width: 100%; }
  .hero { padding-block: 1.5rem; }
  .hero h1 { font-size: 32pt; }
  .film-preview { display: none; }
  .film-media { height: 180px; }
  .brand-logos img, .footer-top .brand img { filter: brightness(0); }
  .hero-copy > p, .about-copy > p, .contact-copy > p, .audience-content p { color: #444; }
  .brief-panel { color: #111; background: #fff; }
}

.additional-caption { display: grid; gap: .35rem; line-height: 1.4; }
.additional-caption strong { font-weight: 600; }
.additional-caption > span { overflow-wrap: anywhere; }
.film-youtube-preview[data-video-portrait="true"] iframe { width: 100%; }
@media (min-width: 561px) and (max-width: 800px) { .more-work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* A compact portfolio browser: the work stays accessible without dominating the page. */
#more-work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 2rem; padding: 1.5rem 0 2rem; border-top: 1px solid var(--line); }
.work-browser-header, .work-filters, .work-results, .work-browser-footer { grid-column: 1 / -1; }
.work-browser-header h3 { font-size: 1.375rem; }
.work-browser-header p { margin-top: .4rem; color: var(--muted); font-size: .875rem; }
.work-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.work-filters button, #show-more-projects { min-height: 44px; padding: .65rem 1rem; border: 1px solid var(--line); border-radius: 100px; background: transparent; color: #bbb; font-size: .875rem; }
.work-filters button[aria-pressed=true] { background: #eee; color: #111; border-color: #eee; }
.work-results { margin: 1rem 0 .5rem; color: var(--muted); font-size: .75rem; }
#more-work-grid .additional-project { min-width: 0; border-bottom: 1px solid var(--line); }
#more-work-grid .additional-link { display: grid; grid-template-columns: 72px minmax(0, 1fr) 24px; align-items: center; gap: 1.25rem; padding: 1rem 0; }
#more-work-grid .additional-media { width: 72px; aspect-ratio: 9/16; border-radius: 5px; }
#more-work-grid .additional-caption { padding: 0; gap: .25rem; }
#more-work-grid .additional-caption strong { font-size: 1rem; }
#more-work-grid .work-category { font-size: .8125rem; }
#more-work-grid .work-piece { margin-top: .3rem; color: #d2d2d2; font-size: .8125rem; }
.work-play { color: #aaa; display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; flex-shrink: 0; }
.work-play svg { display: block; width: 20px; height: 20px; }
.additional-link:hover .work-play, .additional-link:focus-visible .work-play { color: white; }
.work-browser-footer { padding-top: 1.25rem; }
@media (max-width: 700px) {
  #more-work-grid { grid-template-columns: 1fr; }
  #more-work-grid .additional-link { grid-template-columns: 60px minmax(0, 1fr) 20px; gap: 1rem; }
  #more-work-grid .additional-media { width: 60px; }
  .work-filters { gap: .375rem; }
  .work-filters button { padding: .6rem .75rem; font-size: .8125rem; }
}
.edit-dialog { width: min(960px, calc(100% - 2rem)); max-height: calc(100dvh - 2rem); padding: 0; border: 1px solid #333; border-radius: 14px; background: #171717; color: #f4f4f4; overflow: auto; }
.edit-dialog::backdrop { background: #000c; }
.edit-dialog .dialog-top { padding: 1rem 1.5rem; }
.edit-dialog .edit-lab-grid { grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr); align-items: start; }
.edit-dialog .edit-screen { padding: 1.5rem; background: #101010; align-self: stretch; }
.edit-dialog .edit-viewport { width: min(100%, 300px, calc(68dvh * .5625)); border-radius: 7px; }
.edit-dialog .edit-information { padding: 1.5rem; }
.edit-eyebrow { color: #aaa; font-size: .6875rem; letter-spacing: .1em; margin-bottom: .6rem; }
.edit-dialog .edit-information h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.edit-dialog .edit-intro { margin-top: .75rem; font-size: .875rem; line-height: 1.6; }
.edit-dialog .edit-stages { grid-template-columns: 1fr; gap: .5rem; margin-top: 1.25rem; }
.edit-dialog .edit-stages button { display: flex; align-items: center; text-align: left; gap: 1rem; padding: .8rem 1rem; }
.stage-number { font-size: .75rem; opacity: .6; }
.edit-stages strong, .edit-stages small { display: block; }
.edit-stages strong { font-weight: 600; font-size: .9rem; }
.edit-stages small { font-size: .75rem; margin-top: .25rem; opacity: .75; }
.edit-dialog .edit-description { min-height: 3.2em; margin-top: .8rem; font-size: .8125rem; }
.edit-dialog .edit-status { min-height: 0; margin-top: .3rem; }
.edit-dialog .edit-return { margin-block: .75rem; }
.edit-dialog .edit-enquire { margin-top: .5rem; padding: .9rem 1rem; }
@media (max-width: 650px) {
 .edit-dialog { width: calc(100% - 1rem); max-height: calc(100dvh - 1rem); }
 .edit-dialog .edit-lab-grid { grid-template-columns: 1fr; }
 .edit-dialog .edit-screen { padding: 1rem; }
 .edit-dialog .edit-viewport { width: min(100%, calc(42dvh * .5625)); }
 .edit-dialog .edit-information { padding: 1.25rem; }
 .edit-dialog .edit-stages { margin-top: 1rem; }
}
/* Playback lives below the image, never over it. */
.edit-dialog { width: min(860px, calc(100% - 2rem)); }
.edit-dialog .edit-lab-grid { align-items: center; }
.edit-dialog .edit-screen { display: flex; flex-direction: column; justify-content: center; gap: .5rem; }
.edit-dialog .edit-viewport { width: min(100%, 280px, calc(62dvh * .5625)); }
.edit-video::-webkit-media-controls { display: none !important; }
.edit-controls { display: grid; grid-template-columns: 44px minmax(0, 1fr) 44px; gap: .375rem; align-items: center; width: min(100%, 280px, calc(62dvh * .5625)); }
.edit-controls button { padding: 0; min-height: 44px; font-size: .75rem; background: transparent; color: #ddd; }
.edit-controls input { width: 100%; min-width: 0; padding: 0; accent-color: #eee; cursor: pointer; }
.edit-time { grid-column: 1 / -1; text-align: center; color: #888; font-size: .6875rem; font-variant-numeric: tabular-nums; }
.edit-dialog .edit-stages { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.edit-dialog .edit-stages button { display: block; text-align: center; padding: .75rem .375rem; min-height: 44px; font-size: .8125rem; }
.edit-dialog .edit-description { min-height: 4.8em; margin-top: 1rem; }
.edit-dialog .edit-return { margin-block: 1rem; }
.edit-dialog .edit-enquire { margin-top: 0; }
@media (max-width: 650px) {
 .edit-dialog { width: calc(100% - 1rem); }
 .edit-dialog .edit-viewport, .edit-controls { width: min(100%, max(180px, calc(40dvh * .5625))); }
 .edit-dialog .edit-description { min-height: 0; }
}

.cookie-consent { position: fixed; z-index: 110; right: 1.25rem; bottom: 1.25rem; width: min(28rem, calc(100% - 2.5rem)); max-height: calc(100dvh - 2.5rem); overflow: auto; padding: 1.5rem; background: var(--surface); border: 1px solid #626262; border-radius: .75rem; box-shadow: 0 12px 48px #0008; }
.cookie-consent h2 { margin-bottom: .65rem; font-size: 1.35rem; }
.cookie-consent p { font-size: .9375rem; line-height: 1.6; color: #ccc; }
.cookie-consent .cookie-choice:not(:empty) { margin-top: .5rem; }
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.1rem; }
.cookie-actions button { min-height: 44px; padding: .6rem .7rem; border: 1px solid #929292; border-radius: .3rem; background: transparent; font-size: .9375rem; }
.cookie-actions button:hover { background: #303030; border-color: #fff; }
.cookie-privacy { display: block; min-height: 44px; margin-top: .5rem; font-size: .875rem; text-decoration: underline; text-underline-offset: .2em; }
.footer-bottom > div { flex-wrap: wrap; }

/* Shared spacing keeps the page hierarchy calm and predictable. */
.film-toolbar { min-height: 0; padding-block: 1.25rem; }
.film-caption { margin-top: .875rem; line-height: 1.5; }
.brand-proof { padding-top: 1.5rem; padding-bottom: 3rem; }
.about-proof { align-items: center; margin-top: 2.5rem; }
.about-copy p + p { margin-top: 1.25rem; }
.audience-content p { line-height: 1.65; max-width: 58ch; }
.audience-examples { margin-block: 1.25rem 1.5rem; gap: .75rem; }
.contact-copy p { max-width: 44ch; line-height: 1.65; }
@media (max-width: 800px) {
 .about-proof { align-items: start; }
 .film-toolbar { padding-block: 1rem; }
 .brand-proof { padding-bottom: 2.5rem; }
}

/* One moving, coloured preview at a time; the cards themselves stay still. */
.film-card .film-media { filter: grayscale(1) brightness(.7); transition: filter .6s ease; }
.film-card.is-playing .film-media { filter: grayscale(0) brightness(1); }
@media (prefers-reduced-motion: reduce) {
 .film-card .film-media { filter: none; transition: none; }
}

/* Draw the interaction frame inside the card so the scrolling rail cannot clip it. */
.film-media:hover, .film-media:focus-visible { box-shadow: none; }
.film-media:focus-visible { outline: none; }
.film-media::before { content: ''; position: absolute; inset: 0; z-index: 3; border: 2px solid transparent; border-radius: inherit; pointer-events: none; }
.film-media:hover::before { border-color: #ffffff80; }
.film-media:focus-visible::before { border-color: #fff; }

@media (max-width: 620px) {
  :root { --section-space: 3.5rem; }
  .hero { padding-bottom: var(--section-space); }
  .brand-proof { padding-block: var(--section-space); }
  .about-section { padding-top: var(--section-space); }
  .about-proof { margin-top: var(--section-space); }
  .contact-section { padding-block: var(--section-space); }
}
