@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  --bg: #0a0a0a;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --zinc-950: #09090b;
  --yellow: #eab308;
  --white: #fff;
  --black: #000;
  --font-sans: "Inter", sans-serif;
  --font-serif: "Playfair Display", serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--zinc-200);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--zinc-700);
  color: var(--white);
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; }
a { color: inherit; text-decoration: none; }
img, video, iframe, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; cursor: pointer; }
ul { list-style: none; }

.film-grain {
  pointer-events: none;
  z-index: 50;
  opacity: 0.05;
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  width: 300%;
  height: 300%;
  position: fixed;
  top: -100%;
  left: -100%;
  animation: 8s steps(10, end) infinite grain;
}

.film-scratches {
  pointer-events: none;
  z-index: 51;
  opacity: 0.2;
  background: linear-gradient(90deg, transparent 49.9%, #ffffff08, transparent 50.1%) 0 0 / 200% 100%;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  animation: 0.5s step-end infinite scratches;
}

.vignette {
  pointer-events: none;
  z-index: 52;
  background: radial-gradient(circle, transparent 60%, #0009);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

@keyframes grain {
  0%, 100% { transform: translate(0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%); }
  70% { transform: translateY(15%); }
  80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
}

@keyframes scratches {
  0% { transform: translate(0); }
  20% { transform: translate(-1%); }
  40% { transform: translate(1%); }
  60% { transform: translate(-2%); }
  80% { transform: translate(2%); }
  100% { transform: translate(0); }
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s;
}

.nav.scrolled {
  background: #000c;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #ffffff0d;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: -0.05em;
  font-style: italic;
}

.nav-links {
  display: none;
  gap: 2rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: var(--zinc-400);
}

.nav-links a:hover { color: var(--white); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.socials-desktop { display: none; gap: 1rem; align-items: center; }

.icon-btn {
  color: var(--zinc-500);
  border: 1px solid #edb2004d;
  border-radius: 0.375rem;
  padding: 0.375rem;
  transition: all 0.3s;
  display: flex;
}

.icon-btn:hover {
  color: var(--white);
  border-color: #edb20099;
}

.icon-btn svg { width: 1.25rem; height: 1.25rem; }

.hire-btn {
  display: none;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid #fff3;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
}

.hire-btn:hover {
  background: var(--white);
  color: var(--black);
}

.menu-toggle {
  display: flex;
  color: var(--zinc-400);
  padding: 0.5rem;
}
.menu-toggle:hover { color: var(--white); }
.menu-toggle svg { width: 1.5rem; height: 1.5rem; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: #000000f2;
  backdrop-filter: blur(24px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 500;
  color: var(--zinc-400);
}

.mobile-menu nav a:hover { color: var(--white); }

.mobile-socials { display: flex; gap: 1.5rem; }
.mobile-socials .icon-btn { padding: 0.75rem; }
.mobile-socials .icon-btn svg { width: 1.5rem; height: 1.5rem; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

.kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--zinc-500);
  margin-bottom: 1rem;
  display: block;
}

.hero h1 {
  font-size: 3rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.hero-tagline {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 0.875rem;
  color: var(--zinc-400);
  line-height: 1.625;
  font-weight: 300;
  letter-spacing: 0.025em;
}

.scroll-hint {
  position: absolute;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s 1s both;
}

.scroll-hint span {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--zinc-600);
}

.scroll-hint svg {
  width: 1rem;
  height: 1rem;
  color: var(--zinc-600);
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(-25%); }
  50% { transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* SECTIONS */
.section {
  padding: 6rem 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

.section-wide {
  padding: 8rem 0;
}

.section-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 1.5rem;
}

.eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--zinc-500);
  margin-bottom: 0.5rem;
  display: block;
}

.eyebrow.dim {
  letter-spacing: 0.4em;
  color: var(--zinc-600);
  margin-bottom: 1rem;
}

.section h2 {
  font-size: 2.25rem;
  font-style: italic;
}

.section h2.display {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1;
}

.lede {
  max-width: 28rem;
  font-size: 0.75rem;
  color: var(--zinc-500);
  line-height: 1.625;
}

.reel-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--zinc-900);
  overflow: hidden;
  border: 1px solid #ffffff0d;
}

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

/* AI */
.band { width: 100%; }
.band-ai { background: #09090b80; }
.band .section { padding-top: 6rem; padding-bottom: 6rem; }

.ai-intro {
  position: relative;
  max-width: 46rem;
  margin-bottom: 3rem;
}

.ai-card {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: #18181b80;
  border: 1px solid #ffffff0d;
  position: relative;
  overflow: hidden;
}

.ai-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--zinc-700);
  transition: background 0.5s;
}

.ai-card:hover::before { background: var(--white); }

.ai-card h2 { font-size: 2.25rem; font-style: italic; margin-bottom: 2rem; }

.ai-copy {
  color: var(--zinc-400);
  margin-bottom: 2rem;
  line-height: 1.625;
  font-weight: 300;
}

.feature-list { display: flex; flex-direction: column; gap: 1.5rem; }

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  padding: 0.5rem;
  background: var(--zinc-900);
  border: 1px solid #ffffff0d;
  flex-shrink: 0;
}

.feature-icon svg { width: 1rem; height: 1rem; color: var(--zinc-400); }

.feature h4 { font-family: var(--font-sans); font-size: 0.875rem; font-weight: 500; margin-bottom: 0.25rem; }
.feature p { font-size: 0.75rem; color: var(--zinc-500); font-style: italic; }

.workflows { display: grid; gap: 2rem; }

.workflow { display: flex; flex-direction: column; gap: 1rem; }

.workflow-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.workflow-tabs::-webkit-scrollbar { display: none; }

.tab {
  padding: 0.375rem 0.75rem;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid #ffffff1a;
  color: var(--zinc-500);
  background: transparent;
  white-space: nowrap;
  transition: all 0.3s;
}

.tab:hover { border-color: #ffffff4d; color: var(--zinc-300); }
.tab.active { background: var(--white); color: var(--black); border-color: var(--white); }

.player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--zinc-900);
  border: 1px solid #ffffff0d;
  overflow: hidden;
  min-height: 200px;
}

.player video,
.player .poster-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
}

.player .poster-bg {
  z-index: 0;
}

.player video {
  z-index: 1;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
}

.player:hover .player-overlay:not(.hidden) {
  background: #0006;
}

.player-overlay.hidden { display: none; }

.play-btn {
  width: 4rem;
  height: 4rem;
  border: 1px solid #fff3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0009;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, background 0.3s;
}

.player:hover .play-btn {
  transform: scale(1.1);
  background: #000c;
}

.play-btn svg { width: 1.25rem; height: 1.25rem; fill: var(--white); margin-left: 2px; }

.workflow-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 4;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #0009;
  padding: 0.25rem 0.5rem;
  border: 1px solid #ffffff0d;
  pointer-events: none;
}

.player-missing {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--zinc-950);
  color: var(--zinc-600);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 1rem;
}

/* EXPERIENCE */
.exp-grid {
  display: grid;
  gap: 4rem;
}

.section-title {
  font-size: 1.875rem;
  font-style: italic;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-title svg { width: 1.5rem; height: 1.5rem; color: var(--zinc-600); }

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: var(--zinc-800);
}

.job {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 3rem;
}

.job:last-child { margin-bottom: 0; }

.job-dot {
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 23px;
  height: 23px;
  background: var(--bg);
  border: 1px solid var(--zinc-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-dot i {
  width: 6px;
  height: 6px;
  background: var(--zinc-400);
  border-radius: 50%;
  display: block;
}

.job-period {
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--zinc-500);
  margin-bottom: 0.25rem;
  display: block;
  text-transform: uppercase;
}

.job h4 {
  font-size: 1.125rem;
  font-style: italic;
}

.job-company {
  font-size: 0.75rem;
  color: var(--zinc-400);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.job-desc {
  font-size: 0.875rem;
  color: var(--zinc-500);
  font-weight: 300;
  line-height: 1.625;
}

.skill { margin-bottom: 1.5rem; }

.skill-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.skill-name {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--zinc-400);
}

.skill-pct {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--zinc-500);
}

.skill-track {
  height: 1px;
  width: 100%;
  background: var(--zinc-800);
  position: relative;
  overflow: hidden;
}

.skill-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--zinc-400);
  width: 0;
  transition: width 1.5s cubic-bezier(0, 0.55, 0.45, 1);
}

.skill.in-view .skill-fill { width: var(--level); }

.edu-box,
.tpn-box {
  padding: 2rem;
  background: #18181b4d;
  border: 1px solid #ffffff0d;
}

.edu-box { margin-bottom: 0; }

.edu-box h3,
.side-block h3 {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.edu-box h3 svg,
.side-block h3 svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--zinc-600);
}

.edu-item { margin-bottom: 1.5rem; }
.edu-item:last-child { margin-bottom: 0; }
.edu-item h4 { font-family: var(--font-sans); font-size: 0.875rem; font-weight: 500; font-style: normal; }
.edu-item p { font-size: 0.75rem; color: var(--zinc-500); font-style: italic; }

.tpn-box {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.tpn-box svg { width: 2rem; height: 2rem; color: var(--zinc-600); flex-shrink: 0; }

.tpn-box h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-style: normal;
  font-family: var(--font-sans);
  color: var(--zinc-400);
  margin-bottom: 0.25rem;
}

.tpn-box p { font-size: 0.75rem; color: var(--zinc-500); font-style: italic; }

/* FILMOGRAPHY */
#filmography {
  background: var(--black);
  padding: 8rem 0;
}

.film-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 5rem;
  gap: 2rem;
}

.imdb-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--zinc-500);
  transition: color 0.3s;
}

.imdb-link:hover { color: var(--white); }

.imdb-logo { width: 3rem; height: 1.5rem; opacity: 0.5; transition: opacity 0.3s; }
.imdb-link:hover .imdb-logo { opacity: 1; }

.film-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 3rem;
  row-gap: 4rem;
}

.film-card {
  border-bottom: 1px solid #ffffff0d;
  padding-bottom: 2rem;
  transition: border-color 0.3s;
}

.film-card:hover { border-color: #fff3; }

.film-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.film-year {
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--zinc-600);
  letter-spacing: 0.1em;
}

.film-card svg {
  width: 1rem;
  height: 1rem;
  color: var(--zinc-800);
  transition: color 0.3s;
}

.film-card:hover svg { color: var(--zinc-400); }

.film-card h4 {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.film-role {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--zinc-500);
  font-weight: 500;
}

/* GALLERY */
#gallery {
  background: var(--zinc-950);
  padding: 8rem 0;
  border-top: 1px solid #ffffff0d;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.gallery-card {
  background: #18181b4d;
  border: 1px solid #ffffff0d;
  overflow: hidden;
  cursor: pointer;
}

.gallery-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gallery-card:hover .gallery-thumb img { transform: scale(1.1); }

.gallery-more {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: #0009;
  backdrop-filter: blur(12px);
  padding: 0.25rem 0.5rem;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid #ffffff1a;
}

.gallery-card .meta { padding: 1.5rem; }
.gallery-card h4 { font-size: 1.125rem; font-style: italic; color: var(--white); margin-bottom: 0.5rem; }
.gallery-card p { font-size: 0.875rem; color: var(--zinc-400); font-weight: 300; line-height: 1.625; font-style: italic; }

.gallery-empty {
  grid-column: 1 / -1;
  padding: 6rem 1rem;
  border: 1px dashed #ffffff1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--zinc-600);
}

.gallery-empty svg { width: 3rem; height: 3rem; margin-bottom: 1rem; opacity: 0.2; }
.gallery-empty p { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #000000e6;
  backdrop-filter: blur(24px);
}

.lightbox.open { display: flex; }

.lightbox-inner { max-width: 72rem; width: 100%; }

.lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  margin: 0 auto;
}

.lightbox-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  color: var(--zinc-400);
}

.lightbox-close {
  color: var(--zinc-500);
  padding: 0.5rem;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-close svg { width: 1.5rem; height: 1.5rem; }

/* CONTACT / FOOTER */
#contact {
  background: var(--zinc-950);
  padding: 6rem 1.5rem;
  border-top: 1px solid #ffffff0d;
}

.contact-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 4rem;
}

#contact h2 {
  font-size: 3rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.contact-copy {
  color: var(--zinc-500);
  margin-bottom: 3rem;
  max-width: 28rem;
  line-height: 1.625;
}

.contact-list { display: flex; flex-direction: column; gap: 1rem; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--zinc-400);
  transition: color 0.3s;
}

a.contact-row:hover { color: var(--white); }
a.contact-row:hover svg { transform: scale(1.1); }

.contact-row svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.contact-row span { font-size: 0.875rem; font-weight: 300; }

.tpn-inline {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--zinc-500);
}

.tpn-inline svg { width: 1.25rem; height: 1.25rem; color: var(--zinc-600); }
.tpn-inline p:first-child {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--zinc-400);
}
.tpn-inline p:last-child {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--zinc-600);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.contact-socials {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.social-lg {
  padding: 1rem;
  background: var(--zinc-900);
  border: 1px solid #edb2004d;
  border-radius: 0.375rem;
  transition: all 0.5s;
}

.social-lg:hover {
  border-color: #edb20099;
  background: var(--white);
  color: var(--black);
}

.social-lg svg { width: 1.25rem; height: 1.25rem; }

.version {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--zinc-700);
  margin-bottom: 0.5rem;
}

.version-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--zinc-500);
  font-style: italic;
}

.to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  padding: 1rem;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  box-shadow: 0 25px 50px -12px #00000040;
  display: none;
  transition: background 0.3s;
}

.to-top:hover { background: var(--zinc-200); }
.to-top.visible { display: flex; }
.to-top svg { width: 1.5rem; height: 1.5rem; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (min-width: 640px) {
  .socials-desktop { display: flex; }
  .hire-btn { display: block; }
  .player { min-height: 240px; }
}

@media (min-width: 768px) {
  .nav { padding-left: 3rem; padding-right: 3rem; }
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }

  .hero h1 { font-size: 6rem; }
  .hero-tagline { font-size: 1rem; }

  .section { padding-left: 3rem; padding-right: 3rem; }
  .section-inner { padding-left: 3rem; padding-right: 3rem; }
  .section h2 { font-size: 3.75rem; }
  .section h2.display { font-size: 6rem; }

  .section-head {
    flex-direction: row;
    align-items: flex-end;
  }

  .section-head .lede { text-align: right; }

  .ai-intro { max-width: 46rem; }

  .exp-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4rem; }
  .exp-left { grid-column: span 7; }
  .exp-right { grid-column: span 5; }

  .film-head { flex-direction: row; align-items: flex-end; }
  .film-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  #contact { padding-left: 3rem; padding-right: 3rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  #contact h2 { font-size: 4.5rem; }
  .contact-aside { align-items: flex-end; }
  .contact-aside .version,
  .contact-aside .version-sub { text-align: right; }
}

@media (min-width: 1024px) {
  .film-grid { grid-template-columns: 1fr 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr 1fr; }
}
