:root {
  color-scheme: dark;
  --ink: #f4f1ea;
  --muted: #bdb6aa;
  --panel: #171513;
  --panel-strong: #211d19;
  --line: rgba(244, 241, 234, 0.16);
  --amber: #d8a24a;
  --red: #a64235;
  --green: #6f8b6d;
  --blue: #526f91;
  --shadow: rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0e0d0c;
  color: var(--ink);
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  background: rgba(216, 162, 74, 0.96);
  border-bottom: 1px solid transparent;
  display: flex;
  gap: 36px;
  justify-content: space-between;
  left: 0;
  padding: 27px clamp(22px, 4.6vw, 78px);
  position: fixed;
  right: 0;
  top: 0;
  transition: border-color 180ms ease, background 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(216, 162, 74, 0.98);
  border-color: rgba(18, 16, 14, 0.24);
}

.brand {
  align-items: center;
  aspect-ratio: 1;
  background: #12100e;
  color: var(--amber);
  display: inline-flex;
  font-size: 1.38rem;
  font-weight: 800;
  justify-content: center;
  width: 63px;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 1.32rem;
  font-weight: 700;
}

.nav a,
.header-cta {
  color: #17110a;
  transition: color 160ms ease;
}

.nav a:hover,
.header-cta:hover {
  color: #fff8e8;
}

.header-cta {
  border: 1px solid rgba(18, 16, 14, 0.34);
  font-size: 1.32rem;
  font-weight: 800;
  padding: 16px 22px;
}

.hero {
  background: #0e0d0c;
  display: grid;
  margin-top: 117px;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-scrim,
.hero-content,
.hero-links {
  grid-area: 1 / 1;
}

.hero-media {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.75;
  width: 100%;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(14, 13, 12, 0.98) 0%, rgba(14, 13, 12, 0.9) 54%, rgba(14, 13, 12, 0.72) 100%),
    linear-gradient(0deg, rgba(14, 13, 12, 0.9) 0%, rgba(14, 13, 12, 0.62) 100%);
}

.hero-content {
  align-self: start;
  max-width: 760px;
  padding: 156px clamp(20px, 6vw, 76px) 34px;
  position: relative;
}

.hero-text {
  min-width: 0;
}

.eyebrow {
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.95;
  margin-bottom: 18px;
  max-width: 980px;
}

.hero-role {
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 3.1rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-copy {
  color: #fff;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  line-height: 1.6;
  max-width: 680px;
}

.hero-links {
  align-self: start;
  display: grid;
  gap: 10px;
  justify-self: end;
  margin-right: clamp(20px, 6vw, 76px);
  margin-top: 156px;
  position: relative;
  width: 74px;
}

.hero-logo {
  align-items: center;
  border: 1px solid rgba(244, 241, 234, 0.28);
  color: var(--ink);
  display: flex;
  font-weight: 900;
  height: 74px;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  width: 74px;
}

.hero-logo-imdb {
  background: #f5c518;
  color: #111;
  font-size: 0.98rem;
}

.hero-logo-linkedin {
  background: #0a66c2;
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.hero-logo-avid {
  background: #fff;
  padding: 5px;
}

.hero-logo-avid img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.button.primary {
  background: var(--amber);
  border-color: var(--amber);
  color: #17110a;
}

.button.secondary {
  background: rgba(244, 241, 234, 0.08);
  color: var(--ink);
}

.intro-band {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.intro-band a {
  background: #12100f;
  border-right: 1px solid var(--line);
  min-height: 112px;
  padding: clamp(16px, 2vw, 22px);
  transition: background 160ms ease;
}

.intro-band a:hover {
  background: var(--panel);
}

.intro-band a:last-child {
  border-right: 0;
}

.intro-band span,
.approach-grid span {
  color: var(--amber);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.intro-band strong {
  display: block;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.1;
  margin-bottom: 8px;
}

.intro-band small,
.work-category p,
.approach-grid p,
.about-copy p,
.project-info li,
.reel-frame p {
  color: var(--muted);
  line-height: 1.6;
}

.reel-section,
.work-section,
.approach-section,
.about-contact {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 70px);
}

.section-heading {
  max-width: none;
}

.reel-section .section-heading {
  text-align: center;
}

.section-title-large {
  color: var(--amber);
  font-size: clamp(2.3rem, 7.2vw, 6.8rem);
  font-weight: 900;
  line-height: 0.9;
  margin: 0 0 38px;
  text-transform: uppercase;
}

.reel-title-large {
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  margin-bottom: 46px;
}

#reel-title {
  white-space: nowrap;
}

.section-heading h2:not(.section-title-large) {
  font-size: clamp(2.15rem, 4.6vw, 4.6rem);
  line-height: 1;
  margin-bottom: 38px;
}

.reel-frame {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: #050505;
  border: 1px solid var(--line);
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
  overflow: hidden;
  position: relative;
  width: min(100%, 67vw);
}

.reel-frame iframe {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.play-button {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 24px 70px var(--shadow);
  cursor: pointer;
  display: flex;
  height: 84px;
  justify-content: center;
  position: relative;
  width: 84px;
  z-index: 2;
}

.play-button span {
  border-bottom: 15px solid transparent;
  border-left: 22px solid #11100f;
  border-top: 15px solid transparent;
  margin-left: 5px;
}

.timeline-strip {
  bottom: 28px;
  display: flex;
  gap: 8px;
  left: 28px;
  position: absolute;
  right: 28px;
}

.timeline-strip span {
  background: rgba(244, 241, 234, 0.76);
  height: 8px;
  width: var(--w);
}

.reel-frame p {
  left: 28px;
  margin: 0;
  position: absolute;
  top: 26px;
}

.work-section {
  background: #12100f;
}

.work-category {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  padding: clamp(42px, 6vw, 76px) 0;
}

.work-category:last-child {
  padding-bottom: 0;
}

.category-copy {
  position: sticky;
  top: 96px;
  align-self: start;
}

.category-copy h3 {
  font-size: clamp(1.6rem, 3.2vw, 3.1rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

#short-films {
  display: block;
}

#short-films .category-copy {
  margin-bottom: clamp(24px, 4vw, 44px);
  max-width: 880px;
  position: static;
}

#short-films .category-copy h3 {
  margin-bottom: clamp(22px, 4vw, 44px);
}

#short-films .category-copy > p:last-child {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 620px;
}

.project-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#social .project-grid {
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nbc-logo-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px auto 0;
  max-width: 320px;
}

.nbc-logo-grid a {
  display: block;
}

.nbc-logo-grid img {
  aspect-ratio: 1;
  background: #f4f1ea;
  border: 1px solid rgba(244, 241, 234, 0.2);
  height: 100%;
  object-fit: contain;
  padding: 10px;
  width: 100%;
}

#social .project-info {
  padding: 15px;
}

#social .project-info h4 {
  font-size: 1.02rem;
  margin-bottom: 0;
}

#social .project-info p {
  font-size: 0.7rem;
}

#social .project-link {
  font-size: 0.78rem;
  margin: 15px -15px -15px;
  min-height: 42px;
  padding: 0 15px;
}

.short-film-list {
  display: grid;
  gap: clamp(30px, 4vw, 52px);
}

.coming-soon-heading {
  color: var(--amber);
  font-size: clamp(1.35rem, 2.6vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
  margin: clamp(6px, 1.5vw, 18px) 0 -16px;
  text-transform: uppercase;
}

.film-slot {
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: minmax(190px, 0.48fr) minmax(360px, 1.28fr) minmax(180px, 0.44fr);
  overflow: hidden;
}

.film-poster,
.film-scene {
  min-height: 330px;
  position: relative;
}

.film-poster {
  align-items: end;
  background: #080706;
  display: flex;
  height: 100%;
  padding: 16px;
}

.film-poster img {
  height: 100%;
  inset: 0;
  object-fit: contain;
  position: absolute;
  width: 100%;
}

.film-poster span {
  background: rgba(14, 13, 12, 0.72);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 8px 10px;
  text-transform: uppercase;
}

.film-scene {
  align-items: center;
  aspect-ratio: 16 / 9;
  display: flex;
  justify-content: center;
}

.film-scene iframe,
.film-scene img {
  border: 0;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.scene-slideshow {
  height: 100%;
  inset: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.scene-slideshow img {
  animation: slideshowFade 40s infinite;
  opacity: 0;
}

.scene-slideshow img:nth-child(1) {
  animation-delay: 0s;
}

.scene-slideshow img:nth-child(2) {
  animation-delay: 4s;
}

.scene-slideshow img:nth-child(3) {
  animation-delay: 8s;
}

.scene-slideshow img:nth-child(4) {
  animation-delay: 12s;
}

.scene-slideshow img:nth-child(5) {
  animation-delay: 16s;
}

.scene-slideshow img:nth-child(6) {
  animation-delay: 20s;
}

.scene-slideshow img:nth-child(7) {
  animation-delay: 24s;
}

.scene-slideshow img:nth-child(8) {
  animation-delay: 28s;
}

.scene-slideshow img:nth-child(9) {
  animation-delay: 32s;
}

.scene-slideshow img:nth-child(10) {
  animation-delay: 36s;
}

@keyframes slideshowFade {
  0%,
  13% {
    opacity: 1;
  }

  18%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene-slideshow img {
    animation: none;
    opacity: 0;
  }

  .scene-slideshow img:first-child {
    opacity: 1;
  }
}

.film-copy {
  align-self: center;
  padding: clamp(16px, 2vw, 24px);
}

.film-copy > p:first-child {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.film-copy h4 {
  font-size: clamp(1.24rem, 1.8vw, 1.72rem);
  line-height: 1.08;
  margin-bottom: 8px;
}

.film-director {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  text-transform: none;
}

.film-copy > p:last-child {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
  margin-bottom: 0;
}

.scene-play {
  align-items: center;
  background: rgba(244, 241, 234, 0.94);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.scene-play span {
  border-bottom: 10px solid transparent;
  border-left: 15px solid #12100e;
  border-top: 10px solid transparent;
  margin-left: 4px;
}

.film-poster-a {
  background: #dededd;
}

.film-poster-b {
  background: #020202;
}

.film-poster-c {
  background: #050505;
}

.film-poster-d {
  background: #1e3332;
}

.film-poster-e {
  background: linear-gradient(145deg, #1c171d, #a64235);
}

.film-poster-f {
  background: #050505;
}

.film-poster-g {
  background: #1f2c1f;
}

.film-scene-a {
  background: linear-gradient(135deg, rgba(82, 111, 145, 0.65), rgba(14, 13, 12, 0.72));
}

.film-scene-b {
  background: linear-gradient(135deg, rgba(166, 66, 53, 0.62), rgba(14, 13, 12, 0.72));
}

.film-scene-c {
  background: linear-gradient(135deg, rgba(111, 139, 109, 0.62), rgba(14, 13, 12, 0.72));
}

.film-scene-d {
  background: linear-gradient(135deg, rgba(216, 162, 74, 0.62), rgba(14, 13, 12, 0.72));
}

.film-scene-e {
  background: linear-gradient(135deg, rgba(36, 31, 28, 0.9), rgba(82, 111, 145, 0.52));
}

.film-scene-f {
  background: linear-gradient(135deg, rgba(87, 38, 23, 0.72), rgba(14, 13, 12, 0.82));
}

.film-scene-g {
  background: linear-gradient(135deg, rgba(31, 44, 31, 0.88), rgba(14, 13, 12, 0.82));
}

#social .project-grid article:nth-child(1) {
  order: 1;
}

#social .project-grid article:nth-child(2) {
  order: 10;
}

#social .project-grid article:nth-child(3) {
  order: 2;
}

#social .project-grid article:nth-child(4) {
  order: 3;
}

#social .project-grid article:nth-child(5) {
  order: 4;
}

#social .project-grid article:nth-child(6) {
  order: 5;
}

#social .project-grid article:nth-child(7) {
  order: 11;
}

#social .project-grid article:nth-child(8) {
  order: 12;
}

#social .project-grid article:nth-child(9) {
  order: 13;
}

#social .project-grid article:nth-child(10) {
  order: 6;
}

#social .project-grid article:nth-child(11) {
  order: 7;
}

#social .project-grid article:nth-child(12) {
  order: 14;
}

#social .project-grid article:nth-child(13) {
  order: 15;
}

#social .project-grid article:nth-child(14) {
  order: 8;
}

#social .project-grid article:nth-child(15) {
  order: 9;
}

.project-card {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.project-thumb {
  align-items: end;
  aspect-ratio: 4 / 3;
  display: flex;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

#social .project-thumb {
  aspect-ratio: 9 / 16;
}

#social .project-thumb > span,
#social .project-info ul {
  display: none;
}

.project-thumb span {
  background: rgba(14, 13, 12, 0.72);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 8px 10px;
  position: relative;
  text-transform: uppercase;
  z-index: 3;
}

.preview-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 1;
  position: absolute;
  transition: opacity 180ms ease;
  width: 100%;
  z-index: 1;
}

.preview-poster {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: opacity 180ms ease;
  width: 100%;
  z-index: 2;
}

.preview-card.is-previewing .preview-video {
  opacity: 1;
}

.preview-card.is-previewing .preview-poster {
  opacity: 0;
}

.sound-toggle {
  align-items: center;
  background: rgba(14, 13, 12, 0.72);
  border: 1px solid rgba(244, 241, 234, 0.22);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  height: 38px;
  padding: 0;
  position: absolute;
  right: 14px;
  top: 14px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
  width: 38px;
  z-index: 3;
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  background: rgba(244, 241, 234, 0.94);
  border-color: rgba(244, 241, 234, 0.94);
  color: #12100e;
  outline: none;
}

.sound-toggle[aria-pressed="true"] {
  background: rgba(216, 162, 74, 0.18);
  border-color: var(--amber);
  color: var(--amber);
}

.speaker-icon {
  background: currentColor;
  display: block;
  height: 24px;
  -webkit-mask: url("assets/speaker-icon.png") center / contain no-repeat;
  mask: url("assets/speaker-icon.png") center / contain no-repeat;
  width: 24px;
}

.sound-toggle[aria-pressed="false"] .speaker-icon {
  opacity: 0.72;
}

.thumb-film-a {
  background: linear-gradient(135deg, #2e2b26, #724039);
}

.thumb-film-b {
  background: linear-gradient(135deg, #1e2827, #6f8b6d);
}

.thumb-social-a {
  background: linear-gradient(135deg, #10233d, #526f91);
}

.thumb-social-b {
  background: linear-gradient(135deg, #401615, #a64235);
}

.thumb-social-c {
  background: linear-gradient(135deg, #1f162f, #6f8b6d);
}

.thumb-social-d {
  background: linear-gradient(135deg, #151b24, #526f91);
}

.thumb-free-a {
  background: linear-gradient(135deg, #332715, #d8a24a);
}

.thumb-free-b {
  background: linear-gradient(135deg, #20211d, #7e7f74);
}

.project-info {
  padding: 20px;
}

.project-info p {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.project-info h4 {
  font-size: 1.28rem;
  line-height: 1.25;
  margin-bottom: 18px;
}

.project-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.project-info li {
  border: 1px solid var(--line);
  font-size: 0.83rem;
  padding: 7px 9px;
}

.project-link {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  font-size: 0.86rem;
  font-weight: 800;
  justify-content: space-between;
  margin: 20px -20px -20px;
  min-height: 48px;
  padding: 0 20px;
  transition: background 160ms ease, color 160ms ease;
}

.project-link::after {
  content: "Open";
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-link:hover {
  background: rgba(244, 241, 234, 0.08);
  color: var(--amber);
}

.freelance-client-list {
  display: grid;
  gap: 24px;
}

#freelance {
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1.44fr);
}

.freelance-client {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.freelance-client-heading {
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
}

.freelance-client-heading p {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.freelance-client-heading h4 {
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  line-height: 1.05;
  margin: 0;
}

.freelance-client-heading .freelance-client-blurb {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 760px;
  text-transform: none;
}

.freelance-media-grid {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.gutcheck-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gutcheck-grid .slot-wide {
  grid-column: span 6;
}

.gutcheck-grid .slot-vertical {
  grid-column: span 4;
}

.vertical-trio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wide-pair-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.freelance-video-slot {
  align-items: end;
  background:
    linear-gradient(135deg, rgba(216, 162, 74, 0.24), rgba(82, 111, 145, 0.14)),
    #11100f;
  border: 1px solid var(--line);
  display: flex;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.slot-wide {
  aspect-ratio: 16 / 9;
}

.slot-vertical {
  aspect-ratio: 9 / 16;
}

.freelance-video-slot span {
  background: rgba(14, 13, 12, 0.72);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 8px 10px;
  text-transform: uppercase;
}

.freelance-video-slot iframe,
.freelance-video-slot video {
  border: 0;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.youtube-card {
  color: var(--ink);
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.youtube-card img {
  filter: saturate(0.92) contrast(1.04);
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.youtube-card::after {
  background: linear-gradient(180deg, rgba(14, 13, 12, 0.08), rgba(14, 13, 12, 0.72));
  content: "";
  inset: 0;
  position: absolute;
}

.youtube-play {
  background: var(--amber);
  height: 50px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  z-index: 2;
}

.youtube-play::before {
  border-bottom: 12px solid transparent;
  border-left: 18px solid #11100f;
  border-top: 12px solid transparent;
  content: "";
  left: 26px;
  position: absolute;
  top: 13px;
}

.youtube-card-title {
  bottom: 12px;
  font-size: 0.78rem;
  font-weight: 900;
  left: 12px;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.youtube-card:hover .youtube-play {
  background: var(--ink);
}

.assistant-gallery {
  display: grid;
  gap: 18px;
}

#assistant-editing {
  display: block;
}

#assistant-editing .category-copy {
  margin-bottom: clamp(24px, 4vw, 44px);
  max-width: 900px;
  position: static;
}

#assistant-editing .category-copy h3 {
  font-size: clamp(1.8rem, 3.4vw, 3.45rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

#assistant-editing .category-copy > p:last-child {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 660px;
}

.assistant-item {
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(320px, 1fr);
  overflow: hidden;
}

.assistant-image {
  aspect-ratio: 2 / 3;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.assistant-image::after {
  background:
    linear-gradient(135deg, rgba(216, 162, 74, 0.12), rgba(82, 111, 145, 0.16)),
    rgba(14, 13, 12, 0.18);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.assistant-image-bg,
.assistant-image-main {
  inset: 0;
  position: absolute;
}

.assistant-image-bg {
  filter: blur(18px) saturate(1.12) brightness(0.72);
  height: 112%;
  object-fit: cover;
  transform: scale(1.14);
  width: 112%;
  z-index: 1;
}

.assistant-image-main {
  height: 100%;
  object-fit: contain;
  padding: 10px;
  width: 100%;
  z-index: 3;
}

.assistant-item-compact {
  grid-template-columns: minmax(120px, 0.26fr) minmax(280px, 1fr);
}

.assistant-item-compact .assistant-image {
  min-height: 170px;
}

.assistant-item-compact .assistant-copy {
  padding: clamp(18px, 2.3vw, 28px);
}

.assistant-item-compact .assistant-copy h4 {
  font-size: clamp(1.16rem, 1.7vw, 1.55rem);
  margin-bottom: 10px;
}

.assistant-item-compact .assistant-copy > p:last-child {
  font-size: 0.92rem;
  line-height: 1.5;
}

.assistant-image-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.assistant-image-grid .assistant-image {
  aspect-ratio: 1;
  min-height: 0;
}

.assistant-image-grid .assistant-image-main {
  padding: 8px;
}

.assistant-item-featured {
  grid-template-columns: minmax(420px, 1.35fr) minmax(260px, 0.65fr);
}

.assistant-item-featured .assistant-copy {
  padding: clamp(28px, 3.4vw, 44px);
}

.assistant-item-featured .assistant-copy h4 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.assistant-image-a {
  background: linear-gradient(135deg, #20211d, #526f91);
}

.assistant-image-b {
  background: linear-gradient(135deg, #2b251b, #d8a24a);
}

.assistant-image-c {
  background: linear-gradient(135deg, #1e2827, #a64235);
}

.assistant-image-d {
  background: linear-gradient(135deg, #151b24, #526f91);
}

.assistant-image-e {
  background: linear-gradient(135deg, #211915, #724039);
}

.assistant-image-f {
  background: linear-gradient(135deg, #20211d, #6f8b6d);
}

.assistant-image-g {
  background: linear-gradient(135deg, #2b251b, #d8a24a);
}

.assistant-image-h {
  background: linear-gradient(135deg, #1c171d, #a64235);
}

.color-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#color {
  display: block;
}

#color .category-copy {
  margin-bottom: clamp(24px, 4vw, 44px);
  max-width: 900px;
  position: static;
}

#color .category-copy h3 {
  font-size: clamp(1.8rem, 3.4vw, 3.45rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

#color .category-copy > p:last-child {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 680px;
}

.color-still {
  align-items: end;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  display: flex;
  margin: 0;
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.color-still video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.color-still figcaption {
  background: rgba(14, 13, 12, 0.72);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 8px 10px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.color-still-a {
  background: linear-gradient(135deg, #101820, #526f91 52%, #d8a24a);
}

.color-still-b {
  background: linear-gradient(135deg, #1f1513, #a64235 56%, #f4f1ea);
}

.color-still-c {
  background: linear-gradient(135deg, #111915, #6f8b6d 58%, #d8a24a);
}

.color-still-d {
  background: linear-gradient(135deg, #201914, #724039 55%, #526f91);
}

.color-still-e {
  background: linear-gradient(135deg, #151b24, #20211d 48%, #a64235);
}

.color-still-f {
  background: linear-gradient(135deg, #0e0d0c, #2b251b 54%, #6f8b6d);
}

.assistant-copy {
  align-self: center;
  padding: clamp(24px, 3vw, 38px);
}

.assistant-copy > p:first-child {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.assistant-copy h4 {
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.assistant-copy .dailies-title {
  line-height: 1.02;
}

.assistant-copy h4 a {
  color: inherit;
}

.assistant-copy h4 a:hover {
  color: var(--amber);
}

.assistant-copy > p:last-child {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.approach-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.approach-grid article {
  background: var(--panel-strong);
  min-height: 280px;
  padding: clamp(24px, 3vw, 36px);
}

.approach-grid h3 {
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  margin-bottom: 14px;
}

.about-contact {
  background: var(--ink);
  color: #151210;
  display: grid;
  gap: clamp(34px, 7vw, 90px);
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
}

.about-contact .eyebrow {
  color: var(--red);
}

.about-copy h2 {
  font-size: clamp(2.15rem, 5vw, 5rem);
  line-height: 0.98;
  margin-bottom: 22px;
}

.about-copy p {
  color: #544b42;
  font-size: 1.04rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  color: #302820;
  display: grid;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 8px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid rgba(21, 18, 16, 0.24);
  color: #151210;
  font: inherit;
  min-height: 48px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  outline: 2px solid rgba(166, 66, 53, 0.12);
}

.contact-form .button {
  cursor: pointer;
  justify-self: start;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav {
    flex-basis: 100%;
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .intro-band,
  .work-category,
  .approach-grid,
  .about-contact {
    grid-template-columns: 1fr;
  }

  .intro-band a {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 118px;
  }

  .category-copy {
    position: static;
  }

  #freelance {
    grid-template-columns: 1fr;
  }

  .film-slot {
    grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  }

  .film-copy {
    grid-column: 1 / -1;
  }

  #social .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assistant-item {
    grid-template-columns: 1fr;
  }

  .assistant-image {
    aspect-ratio: 16 / 10;
  }

  .assistant-image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .color-gallery {
    grid-template-columns: 1fr;
  }

  .gutcheck-grid,
  .vertical-trio-grid,
  .wide-pair-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gutcheck-grid .slot-wide {
    grid-column: span 2;
  }

  .gutcheck-grid .slot-vertical {
    grid-column: span 1;
  }

  .reel-frame {
    aspect-ratio: 4 / 3;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .brand {
    font-size: 0.98rem;
    width: 44px;
  }

  .nav {
    flex-wrap: nowrap;
    font-size: 0.82rem;
    gap: 14px;
    margin-left: -14px;
    margin-right: -14px;
    padding: 0 14px 4px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    margin-top: 96px;
    min-height: 470px;
  }

  .hero-content {
    align-self: start;
    max-width: none;
    padding: 74px 18px 128px;
  }

  .hero-links {
    align-self: end;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 54px);
    justify-self: start;
    margin: 0 0 24px 18px;
    width: auto;
  }

  .hero-logo {
    height: 54px;
    width: 54px;
  }

  .hero-logo-imdb {
    font-size: 0.72rem;
  }

  .hero-logo-linkedin {
    font-size: 1.1rem;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
    margin-bottom: 12px;
  }

  .hero-role {
    font-size: clamp(1.25rem, 7vw, 2rem);
    margin-bottom: 16px;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.48;
    max-width: 22rem;
  }

  .intro-band a {
    min-height: auto;
    padding: 18px;
  }

  .reel-section,
  .work-section,
  .about-contact {
    padding: 52px 16px;
  }

  .section-title-large {
    font-size: clamp(2.25rem, 13vw, 4.2rem);
    line-height: 0.94;
    margin-bottom: 28px;
  }

  .reel-title-large {
    font-size: clamp(2rem, 11vw, 3.2rem);
    white-space: normal;
  }

  .reel-frame {
    aspect-ratio: 16 / 9;
    width: 100%;
  }

  .work-category {
    gap: 24px;
    padding: 44px 0;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  #social .project-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  #social .project-card {
    width: min(100%, 330px);
  }

  #social .project-info h4 {
    font-size: 1rem;
  }

  .film-slot {
    grid-template-columns: 1fr;
  }

  .film-poster {
    aspect-ratio: 2 / 3;
    min-height: 0;
  }

  .film-scene {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .film-copy,
  .assistant-copy {
    padding: 20px;
  }

  .gutcheck-grid,
  .vertical-trio-grid,
  .wide-pair-grid {
    grid-template-columns: 1fr;
  }

  .gutcheck-grid .slot-wide,
  .gutcheck-grid .slot-vertical {
    grid-column: span 1;
  }

  .slot-vertical {
    aspect-ratio: 9 / 16;
    justify-self: center;
    max-width: 280px;
    width: 100%;
  }

  .slot-wide {
    width: 100%;
  }

  .freelance-client-heading {
    padding: 18px;
  }

  .freelance-media-grid {
    gap: 10px;
    padding: 10px;
  }

  .assistant-image {
    min-height: 220px;
  }

  .assistant-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assistant-image-grid .assistant-image {
    min-height: 0;
  }

  .assistant-item-compact {
    grid-template-columns: 1fr;
  }

  .assistant-item-featured {
    grid-template-columns: 1fr;
  }

  .color-gallery {
    gap: 12px;
  }

  .about-contact {
    gap: 28px;
  }

  .about-copy h2 {
    font-size: clamp(2rem, 12vw, 3.6rem);
  }

  .contact-form .button {
    justify-self: stretch;
  }

}

@media (max-width: 380px) {
  .section-title-large {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .hero-links {
    grid-template-columns: repeat(3, 48px);
  }

  .hero-logo {
    height: 48px;
    width: 48px;
  }
}
