:root {
  --ink: #f2f0ec;
  --muted: #9a9893;
  --black: #080808;
  --panel: #111111;
  --line: rgba(255,255,255,.16);
  --signal: #e84424;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img { display: block; width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.3vw;
  mix-blend-mode: difference;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; font-size: .75rem; letter-spacing: -.05em; }
.brand-name { font-size: .92rem; }
nav { display: flex; align-items: center; gap: 30px; font-size: .84rem; }
nav a { transition: opacity .25s ease; }
nav a:hover { opacity: .6; }
.nav-contact { border-bottom: 1px solid rgba(255,255,255,.8); padding-bottom: 2px; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { height: 100%; object-fit: cover; object-position: center 48%; filter: brightness(.82) saturate(.82) contrast(1.05); transform: scale(1.03); animation: heroIn 1.4s cubic-bezier(.22,.61,.36,1) forwards; }
.hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.28) 58%, rgba(0,0,0,.12)), linear-gradient(0deg, rgba(0,0,0,.8) 0%, transparent 56%); }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 0 8vw 8vh; }
.eyebrow, .section-no { text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 600; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 4vh; }
.eyebrow span { display: inline-block; width: 30px; height: 2px; background: var(--signal); }
h1, h2, .lead, .contact-inner a { font-family: "Manrope", sans-serif; letter-spacing: -.06em; font-weight: 500; }
h1 { font-size: clamp(4.2rem, 10.3vw, 10.5rem); line-height: .79; margin: 0; max-width: 1100px; }
h1 em, h2 em, .lead em { color: var(--signal); font-style: normal; }
.hero-bottom { margin-top: 7vh; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.hero-bottom > p { max-width: 370px; margin: 0; color: rgba(255,255,255,.72); font-size: .96rem; }
.play-feature { border: 0; background: none; padding: 0; display: flex; align-items: center; gap: 15px; text-align: left; cursor: pointer; }
.play-feature small { display: block; color: rgba(255,255,255,.56); margin-bottom: 3px; }
.play-icon { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; display: grid; place-items: center; padding-left: 3px; transition: .25s ease; }
.play-feature:hover .play-icon { background: var(--signal); border-color: var(--signal); transform: scale(1.08); }
.scroll-cue { position: absolute; z-index: 3; right: 3.3vw; bottom: 4vh; display: none; align-items: center; gap: 10px; font-size: .75rem; }

.work-section { padding: 15vh 8vw 11vh; }
.section-heading { display: grid; grid-template-columns: .65fr 2fr 1fr; gap: 4vw; align-items: end; margin-bottom: 13vh; }
.section-no { color: var(--muted); margin: 0; align-self: start; }
h2 { font-size: clamp(3.2rem, 6vw, 7rem); line-height: .98; margin: 0; }
.section-intro { max-width: 260px; color: var(--muted); margin: 0; }
.projects { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 3.2vw; row-gap: 13vh; align-items: start; }
.project { position: relative; isolation: isolate; }
.project::before { content: ""; position: absolute; z-index: -1; left: 6%; right: 6%; top: 24%; bottom: 2%; background: radial-gradient(ellipse at center, rgba(34, 58, 160, .42) 0%, rgba(15, 31, 98, .25) 42%, transparent 74%); filter: blur(38px); opacity: .72; pointer-events: none; }
.project-wide { grid-column: 1 / -1; }
.project-offset { margin-top: 0; }
.project-poster { position: relative; width: 100%; padding: 0; border: 0; border-radius: 22px; background: #151515; overflow: hidden; cursor: pointer; aspect-ratio: 16/10; box-shadow: 0 24px 64px rgba(12, 27, 99, .28), 0 8px 24px rgba(22, 44, 138, .18); }
.project-wide .project-poster { aspect-ratio: 16/8.4; }
.project-poster img { height: 100%; object-fit: cover; filter: saturate(.82); transition: filter .35s ease; }
.project-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.62), transparent 45%); opacity: .4; transition: opacity .4s ease; }
.project-poster:hover img { filter: saturate(1); }
.project-poster:hover::after { opacity: .8; }
.project-play { position: absolute; z-index: 2; left: 50%; top: 50%; translate: -50% -50%; width: 66px; height: 66px; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; display: grid; place-items: center; padding-left: 4px; opacity: 0; transform: scale(.85); transition: .3s ease; backdrop-filter: blur(8px); }
.project-poster:hover .project-play { opacity: 1; transform: scale(1); }
.watch-label { position: absolute; z-index: 2; left: 22px; bottom: 18px; font-size: .76rem; text-transform: uppercase; letter-spacing: .15em; opacity: 0; transform: translateY(8px); transition: .3s ease; }
.project-poster:hover .watch-label { opacity: 1; transform: none; }
.project-meta { position: relative; z-index: 1; padding-top: 17px; }
.project-meta > div { display: flex; justify-content: space-between; color: var(--muted); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }
.project-meta h3 { font-family: "Manrope", sans-serif; font-size: clamp(1.4rem, 2.2vw, 2.2rem); line-height: 1.08; letter-spacing: -.045em; font-weight: 500; margin: 8px 0 0; }
.project-more { display: none; }
.projects.show-all .project-more { display: block; }
.shorts-group { grid-column: 1 / -1; margin-top: 8vh; }
.shorts-heading { display: flex; justify-content: space-between; align-items: end; padding-bottom: 22px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.shorts-heading span { font-family: "Manrope", sans-serif; font-size: clamp(2rem, 4vw, 4.5rem); letter-spacing: -.05em; }
.shorts-heading p { max-width: 230px; margin: 0; color: var(--muted); font-size: .85rem; }
.shorts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2vw; align-items: start; }
.project-short .project-poster { aspect-ratio: 9 / 16; }
.project-short .project-meta h3 { font-size: clamp(1.1rem, 1.6vw, 1.55rem); }
.playlist-link { width: 100%; margin: 20vh 0 2vh; padding: 23px 0; display: flex; justify-content: space-between; align-items: center; color: var(--ink); background: transparent; border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: clamp(1.15rem, 1.8vw, 1.8rem); text-align: left; cursor: pointer; transition: color .25s ease; }
.playlist-link b { font-weight: 400; font-size: 1.4em; transition: transform .25s ease; }
.playlist-link:hover { color: var(--signal); }
.playlist-link:hover b { transform: translate(5px,-5px); }
.playlist-link[aria-expanded="true"] b { transform: rotate(180deg); }

.about { padding: 15vh 8vw 17vh; background: var(--ink); color: var(--black); display: grid; grid-template-columns: .65fr 2fr 1fr; gap: 4vw; }
.about-label { text-transform: uppercase; font-size: .72rem; letter-spacing: .18em; }
.about-label span { color: var(--signal); display: block; margin-bottom: 20px; }
.about-label p { margin: 0; }
.about-copy .lead { font-size: clamp(2.6rem, 4.3vw, 5.2rem); line-height: 1.04; margin: 0 0 8vh; }
.about-copy > p:last-child { max-width: 600px; color: #4b4b48; font-size: 1.05rem; }
.about-facts { align-self: end; }
.about-facts div { border-top: 1px solid rgba(0,0,0,.18); padding: 14px 0 20px; }
.about-facts span { display: block; color: #77736d; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 5px; }
.about-facts strong { font-weight: 500; }

.contact { min-height: 86vh; padding: 12vh 8vw 5vh; display: flex; flex-direction: column; }
.contact-inner { margin: auto 0; }
.contact-inner p { margin: 0 0 1vh; color: var(--muted); font-size: clamp(1.3rem, 2.5vw, 2.8rem); }
.contact-inner a { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--ink); font-size: clamp(4rem, 10vw, 10rem); line-height: 1.04; transition: color .25s ease, border-color .25s ease; }
.contact-inner a span { font-family: "DM Sans"; font-weight: 400; font-size: .5em; }
.contact-inner a:hover { color: var(--signal); border-color: var(--signal); }
.contact-foot { display: flex; justify-content: space-between; color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }

.project-poster.is-playing { cursor: default; background: #000; }
.project-poster.is-playing::after { display: none; }
.project-poster.is-playing iframe { width: 100%; height: 100%; border: 0; display: block; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes heroIn { from { transform: scale(1.12); opacity: .65; } to { transform: scale(1.03); opacity: 1; } }

@media (max-width: 850px) {
  .site-header { height: 68px; padding: 0 5vw; }
  .brand-name { display: none; }
  nav { gap: 18px; }
  nav a:nth-child(2) { display: none; }
  .hero-content { padding: 0 5vw 7vh; }
  .hero-media img { object-position: center 48%; }
  h1 { font-size: clamp(4rem, 18vw, 7rem); line-height: .83; }
  .hero-bottom { display: block; margin-top: 5vh; }
  .hero-bottom > p { margin-bottom: 28px; }
  .play-feature { font-size: .85rem; }
  .work-section { padding: 12vh 5vw 10vh; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 8vh; }
  .section-intro { max-width: 320px; }
  .projects { grid-template-columns: 1fr; row-gap: 8vh; }
  .project-wide { grid-column: auto; }
  .project-offset { margin-top: 0; }
  .project-wide .project-poster, .project-poster { aspect-ratio: 16/10; }
  .project-poster { border-radius: 15px; }
  .project::before { left: 3%; right: 3%; filter: blur(28px); opacity: .62; }
  .shorts-group { margin-top: 3vh; }
  .shorts-heading { display: block; }
  .shorts-heading p { margin-top: 10px; }
  .shorts-grid { grid-template-columns: repeat(2, 1fr); gap: 7vh 4vw; }
  .project-short .project-poster { aspect-ratio: 9/16; }
  .project-play { opacity: 1; width: 54px; height: 54px; background: rgba(0,0,0,.24); }
  .playlist-link { margin-top: 10vh; }
  .about { grid-template-columns: 1fr; padding: 11vh 5vw 13vh; }
  .about-copy .lead { margin: 3vh 0 5vh; }
  .about-facts { margin-top: 7vh; }
  .contact { min-height: 70vh; padding: 10vh 5vw 4vh; }
  .contact-inner a { font-size: clamp(3.4rem, 16vw, 6rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
