@font-face {
  font-family: "TAN Buster";
  src: url("/assets/fonts/tan-buster-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #040404;
  --bg-elevated: #0d0d0d;
  --bg-panel: rgba(15, 15, 15, 0.9);
  --text: #f5f1ea;
  --muted: #beb4a5;
  --accent: #ded1b7;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.22);
  --shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius-card: 1rem;
  --radius-pill: 999px;
  --content-max: 1200px;
  --font-body: "Epilogue", sans-serif;
  --font-display: "TAN Buster", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top, rgba(124, 94, 67, 0.1), transparent 34%),
    var(--bg);
  color: var(--text);
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.section-label {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--accent);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.62);
  color: var(--text);
  backdrop-filter: blur(10px);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.site-social-link:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  opacity: 0.9;
}

.site-social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.site-social-link.imdb-badge {
  width: auto;
  min-width: 3.35rem;
  padding: 0 0.72rem;
  border-color: rgba(0, 0, 0, 0.18);
  background: #f5c518;
  color: #111;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: none;
}

.site-social-link.imdb-badge:hover {
  border-color: rgba(0, 0, 0, 0.24);
  opacity: 1;
}

.site-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
}

.site-logo {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-transform: uppercase;
}

.site-subtitle {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-toggle {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.32rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(12, 12, 12, 0.62);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.menu-toggle span {
  width: 1rem;
  height: 1px;
  margin: 0 auto;
  background: var(--text);
}

.site-header-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 1.25rem;
  min-width: 12rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem;
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid var(--line);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 0.7rem 0.4rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  transition: opacity 0.25s ease;
}

.site-nav a:hover {
  opacity: 0.7;
}

.hero-banner {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 2.2rem;
  background: url("/assets/images/home/banner.webp") center/cover no-repeat;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-banner::after {
  content: none;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0 1rem;
  text-align: center;
  transform: translateY(var(--hero-shift, 0px));
}

.hero-content h1,
.about-content h2,
.page-banner-title,
.recent-work-title,
.contact-shell h1 {
  margin: 0;
  font-family: var(--font-display);
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.6vw, 4.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 0.92;
  text-align: center;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 3.5rem 1.5rem 4rem;
  justify-content: center;
  background:
    radial-gradient(circle at 22% 18%, rgba(146, 112, 76, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.98), rgba(5, 5, 5, 0.98));
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 72px;
  background: linear-gradient(to bottom, rgba(4, 4, 4, 0.12), transparent);
  pointer-events: none;
}

.about-section::after {
  content: none;
}

.about-section .about-header,
.about-section .about-copy,
.about-section .about-photo-column,
.recent-work-header,
.recent-work-grid {
  position: relative;
  z-index: 1;
}

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

.motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-photo-column {
  max-width: 28rem;
  width: 100%;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.about-photo,
.about-photo-placeholder {
  aspect-ratio: 4 / 5;
  width: 100%;
  display: block;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  object-fit: cover;
  background:
    linear-gradient(145deg, rgba(222, 209, 183, 0.15), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--bg-elevated);
  box-shadow: var(--shadow-soft);
  filter: none;
  image-rendering: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.about-photo-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.about-header {
  width: 100%;
  max-width: 44rem;
  display: grid;
  gap: 0.35rem;
}

.about-header h2 {
  font-size: clamp(1.35rem, 2.7vw, 2.1rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.015em;
  margin-bottom: 0;
  font-family: var(--font-display);
  max-width: 100%;
  text-wrap: balance;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 54ch;
}

.about-copy {
  width: 100%;
}

.homepage-recent-work {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 4.35rem 1.5rem 4.5rem;
  background:
    radial-gradient(circle at top center, rgba(87, 59, 34, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(4, 4, 4, 1));
  overflow: hidden;
}

.homepage-recent-work::before {
  content: none;
}

.homepage-recent-work::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, rgba(4, 4, 4, 0.98));
  pointer-events: none;
}

.recent-work-header {
  max-width: var(--content-max);
  margin: 0 auto 3rem;
  text-align: center;
}

.recent-work-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.recent-work-scroll {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 1rem 0.5rem;
}

.recent-work-scroll::-webkit-scrollbar {
  display: none;
}

.recent-work-grid {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(0.75rem, 1.6vw, 1.35rem);
  width: max-content;
  margin: 0;
  overflow: visible;
  flex: 0 0 auto;
}

.recent-project,
.catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #111;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.recent-project {
  flex: 0 1 clamp(160px, 22vw, 240px);
  width: clamp(160px, 22vw, 240px);
  aspect-ratio: 2 / 3;
  animation: cardFloat 8.5s ease-in-out infinite;
  position: relative;
}

.recent-project:nth-child(2) {
  animation-delay: 1.2s;
}

.recent-project:nth-child(3) {
  animation-delay: 2.4s;
}

.recent-project:hover,
.catalog-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-strong);
}

.project-image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.recent-project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s ease;
  pointer-events: none;
}

.recent-project:hover .project-image {
  transform: scale(1.02);
  filter: brightness(0.8);
}

.recent-project:hover::after {
  background: rgba(0, 0, 0, 0.12);
}

@keyframes heroPulse {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, -1.5%, 0) scale(1.04);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.page-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8.5rem 1.5rem 4.75rem;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.6)),
    rgba(0, 0, 0, 0.18);
}

.page-banner-title {
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.catalog-page {
  padding: 4rem 1.25rem 5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    var(--bg);
}

.catalog-grid {
  width: min(var(--content-max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-grid.landscape-grid {
  grid-template-columns: 1fr;
}

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

.catalog-card {
  position: relative;
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    filter 0.35s ease;
}

.catalog-card.landscape-card img {
  aspect-ratio: 16 / 9;
}

.catalog-card:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.catalog-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 0.95rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

.catalog-card-title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.catalog-card-meta {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
}

.contact-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 7rem 1.5rem 4rem;
  background:
    linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
    url("/assets/images/contact/background.png")
      center/cover no-repeat;
}

.contact-shell {
  width: min(100%, 760px);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.contact-shell h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 500;
}

.contact-mark {
  width: min(200px, 42vw);
  margin: 0 auto 2rem;
}

.contact-block {
  margin: 0 auto 2rem;
}

.contact-name {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.contact-detail {
  margin: 0;
  color: var(--text);
  line-height: 1.9;
}

.contact-detail a {
  color: inherit;
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.resume-copy {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 0 0 1rem;
}

.resume-copy p {
  margin: 0 0 1.35rem;
  color: var(--text);
  line-height: 1.85;
}

.resume-copy p:last-child {
  margin-bottom: 0;
}

.project-page {
  padding: 7rem 1.25rem 5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    var(--bg);
}

.project-shell {
  width: min(1400px, 100%);
  margin: 0 auto;
}

.project-video {
  width: min(860px, calc(100% - 7rem));
  margin: 0 auto 3rem;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow-soft);
}

.project-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.project-video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.project-poster-hero {
  width: min(460px, calc(100% - 8rem));
  height: clamp(420px, 62vw, 610px);
  margin: 0 auto 2.2rem;
  overflow: hidden;
}

.project-poster-hero img {
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #111;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  object-position: center top;
}

.project-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.project-poster-hero + .project-info-grid {
  position: relative;
  z-index: 2;
  margin-top: -4.25rem;
  padding-top: 4.25rem;
  background: linear-gradient(to bottom, var(--bg) 0 72%, transparent 100%);
}

.project-info-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.9rem;
}

.project-info-item.span-full {
  grid-column: 1 / -1;
}

.project-info-label {
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.project-info-content {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}

.project-info-item.logline .project-info-content {
  font-size: 1.05rem;
  line-height: 1.65;
  font-style: italic;
  color: #ccc;
}

.festival-laurels {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.4rem;
}

.festival-laurel {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.project-link-row {
  display: flex;
  justify-content: center;
  margin: 0 auto 2.2rem;
}

.project-press-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto 1.6rem;
}

.project-press-card {
  position: relative;
  display: block;
  width: min(100%, 450px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #161616;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.project-press-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-strong);
}

.project-press-card::after {
  content: "↗";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-press-card:hover::after {
  opacity: 1;
}

.project-press-info {
  padding: 1rem;
}

.project-press-source {
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.project-press-title {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--text);
}

.project-press-date {
  font-size: 0.78rem;
  color: #777;
  font-style: italic;
}

.imdb-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #f5c518;
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(245, 197, 24, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.imdb-pill:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.5);
}

.imdb-pill svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}

.project-section-title {
  margin: 2.2rem auto 1.25rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-display);
}

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

.project-gallery-item {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #111;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.project-gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-strong);
}

.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.project-gallery-item:hover img {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: rgba(0, 0, 0, 0.95);
}

.lightbox.is-open {
  display: block;
}

.lightbox-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lightbox-track img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 95%;
  max-height: 95%;
  user-select: none;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-counter {
  position: absolute;
  z-index: 10000;
  color: white;
}

.lightbox-close {
  top: 20px;
  right: 28px;
  border: 0;
  background: transparent;
  font-size: 48px;
  cursor: pointer;
  opacity: 0.8;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  font-size: 60px;
  cursor: pointer;
  opacity: 0.7;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.95rem;
  opacity: 0.75;
}

@media (min-width: 900px) {
  .site-header {
    padding: 1.2rem 2rem;
    align-items: center;
  }

  .site-nav {
    position: static;
    min-width: auto;
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    margin-left: auto;
  }

  .site-socials {
    position: static;
    margin-left: 0;
  }

  .menu-toggle {
    display: none;
  }

  .about-section {
    grid-template-columns: minmax(420px, 500px) minmax(560px, 760px);
    align-items: start;
    gap: clamp(1.15rem, 1.8vw, 1.6rem);
    padding: 4.75rem 4rem;
    justify-content: center;
  }

  .about-section::after {
    content: none;
  }

  .about-photo-column {
    width: min(100%, 500px);
    justify-self: start;
    align-self: start;
    margin-top: 0.2rem;
    grid-column: 1;
    grid-row: 1 / span 3;
  }

  .about-header {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: start;
    max-width: 760px;
  }

  .about-header h2 {
    font-size: clamp(1.45rem, 1.9vw, 1.95rem);
    max-width: 100%;
  }

  .about-copy-intro {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    justify-self: start;
    max-width: 760px;
    margin-top: -0.45rem;
  }

  .about-copy-full {
    grid-column: 2;
    grid-row: 3;
    margin-top: 0.1rem;
    justify-self: start;
    max-width: 760px;
  }

  .about-copy-intro p,
  .about-copy-full p {
    max-width: 62ch;
  }


  .catalog-page {
    padding: 5rem 2rem 6rem;
  }

  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .catalog-grid.poster-grid {
    width: min(1080px, 100%);
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .catalog-card-overlay {
    padding: 1.25rem 1.1rem;
  }

  .catalog-card-title {
    font-size: 1.1rem;
  }

  .catalog-card-meta {
    font-size: 0.82rem;
  }

  .contact-shell {
    padding: 3rem 2rem;
  }
}

@media (max-width: 900px) {
  .homepage-recent-work {
    padding: 3.75rem 1.25rem 3.25rem;
  }

  .recent-work-grid {
    max-width: none;
    margin: 0;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    padding-left: calc(50% - 90px);
  }

  .recent-project {
    width: 180px;
    scroll-snap-align: center;
    animation: none;
  }

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

  .project-video {
    width: 100%;
  }

  .project-poster-hero {
    width: min(420px, 100%);
    height: clamp(380px, 72vw, 560px);
  }

  .project-poster-hero + .project-info-grid {
    margin-top: -3.5rem;
    padding-top: 3.5rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 0.5rem;
    padding: 0.8rem 0.9rem;
    align-items: flex-start;
  }

  .site-brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 0.18rem;
    max-width: calc(100% - 7.4rem);
  }

  .site-logo {
    font-size: clamp(0.92rem, 4.9vw, 1.2rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    max-width: 100%;
  }

  .site-subtitle {
    max-width: 100%;
    font-size: 0.42rem;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }

  .site-header-right {
    gap: 0.45rem;
    flex: 0 0 auto;
  }

  .site-socials {
    gap: 0.35rem;
  }

  .site-social-link {
    width: 2.2rem;
    height: 2.2rem;
  }

  .site-social-link.imdb-badge {
    min-width: 2.9rem;
    padding: 0 0.58rem;
    font-size: 0.72rem;
  }

  .menu-toggle {
    width: 2.55rem;
    height: 2.55rem;
  }

  .hero-banner {
    min-height: 74vh;
    padding: 6.4rem 1rem 2rem;
  }

  .hero-content {
    padding: 0;
    display: flex;
    justify-content: center;
  }

  .hero-content h1 {
    width: 100%;
    max-width: 92vw;
    font-size: clamp(1.6rem, 8.8vw, 2.35rem);
    line-height: 0.94;
    letter-spacing: 0.02em;
    text-align: center;
    white-space: normal;
  }

  .page-banner {
    min-height: 220px;
    padding-top: 6rem;
    padding-bottom: 2.5rem;
  }

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

  .project-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .project-video {
    width: 100%;
  }

  .project-poster-hero {
    width: min(100%, 340px);
    height: clamp(320px, 96vw, 460px);
  }

  .project-poster-hero + .project-info-grid {
    margin-top: -2.75rem;
    padding-top: 2.75rem;
  }

  .project-info-grid,
  .project-gallery,
  .project-press-grid {
    grid-template-columns: 1fr;
  }

  .project-press-grid {
    display: grid;
  }

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }

  .festival-laurel {
    height: 56px;
  }
}
