/* ============================================
   UNTITLED FILMMAKERS — design tokens
   Poster-club identity: brand yellow (from the
   logo), black, white. Bold, high-contrast,
   festival-programme structure underneath.
   ============================================ */

:root {
  --yellow: #f9d024;
  --yellow-deep: #e4b906;
  --ink: #0b0b0b;
  --paper: #ffffff;
  --paper-soft: #f5f3ea;
  --paper-dim: #55524a;
  --paper-faint: #6b6656;
  --rule: rgba(11, 11, 11, 0.14);
  --rule-bright: rgba(11, 11, 11, 0.28);
  --rule-inverse: rgba(255, 255, 255, 0.22);

  --font-display: "Anton", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "Space Mono", monospace;
  --font-label: "DM Sans", sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  background: var(--ink);
  overscroll-behavior-y: none;
}

html, body {
  margin: 0;
  padding: 0;
  color: var(--ink);
}

body {
  background: var(--paper);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

section[id] { scroll-margin-top: 92px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 4px;
  display: inline-block;
}

.eyebrow--inverse { color: var(--paper); }

.dim { color: var(--paper-dim); }

.hairline {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

section[id] { scroll-margin-top: 92px; }

/* ---------- focus ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--yellow-deep);
  outline-offset: 2px;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--yellow);
}

.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 16px;
  padding: 10px 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--ink);
  flex-shrink: 0;
  transition: font-size 0.3s ease, gap 0.3s ease;
}

/* Shrink nav logo when scrolling */
.nav__logo.shrink {
  font-size: 24px;
  gap: 10px;
}

.nav__logo img {
  height: 80px;
  width: 80px;
  border-radius: 4px;
  transition: height 0.3s ease, width 0.3s ease;
}

/* Shrink logo image when scrolling */
.nav__logo.shrink img {
  height: 72px;
  width: 72px;
}

@media (max-width: 760px) {
  .nav__row { min-height: 56px; }
  .nav__logo { font-size: 18px; gap: 10px; }
  .nav__logo img { height: 48px; width: 48px; }
  .nav__toggle { padding: 12px 16px; }
}

.nav__logo span { color: var(--ink); }

.nav__links {
  display: flex;
  gap: 30px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__links a {
  color: rgba(11, 11, 11, 0.62);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav__links a:hover,
.nav__links a.is-current,
.nav__links a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--yellow-deep);
  transform: translateY(-2px);
}

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 8px 12px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}

@media (max-width: 760px) {
  .nav__links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--yellow);
    border-bottom: 3px solid var(--ink);
    flex-direction: column;
    gap: 0;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a {
    padding: 16px 32px;
    border-bottom: 1px solid var(--rule);
    width: 100%;
  }
  .nav__toggle { display: block; }
}

/* ---------- hero (the bold yellow moment) ---------- */
.hero {
  padding: 20px 0 60px;
  background: var(--yellow);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: flex-start;
}

@media (max-width: 640px) {
  .hero { padding: 24px 0 32px; }
}

/* Mobile: fill the whole first viewport with the homepage hero so
   the next (white) section never peeks in above the fold — falls
   back to vh on older browsers, prefers svh (smallest viewport) on
   newer ones so it still holds true with the address bar expanded.
   Scoped to .hero--full (the homepage only) — every other page's
   hero is short by design and should just size to its own content. */
@media (max-width: 760px) {
  .hero--full {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-start;
    padding: 20px 0 32px;
  }
  .hero--full .wrap { width: 100%; }
}

.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}


.hero__logo {
  width: 340px;
  height: 340px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: contain;
}

/* ============================================
   Logo Animation Variations
   ============================================ */

/* Variation 1: Fade + Gentle Scale */
@keyframes logoFadeScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__logo.animate-v1 {
  animation: logoFadeScale 1.5s ease-out;
}

/* Variation 2: Pulse Breathing */
@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.hero__logo.animate-v2 {
  animation: logoPulse 3s ease-in-out infinite;
}

/* Variation 3: Subtle Rotate + Glow */
@keyframes logoRotateGlow {
  0% {
    transform: rotate(0deg);
    filter: drop-shadow(0 0 0 rgba(249, 208, 36, 0));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(249, 208, 36, 0.4));
  }
  100% {
    transform: rotate(360deg);
    filter: drop-shadow(0 0 0 rgba(249, 208, 36, 0));
  }
}

.hero__logo.animate-v3 {
  animation: logoRotateGlow 8s linear infinite;
}

@media (max-width: 900px) {
  .hero__logo { width: 220px; height: 220px; }
}

/* Mobile: put the logo first, centered, directly in the flex flow
   (rather than absolutely positioned with guessed padding) so the
   layout stays tight with no leftover dead space above it. */
@media (max-width: 760px) {
  .hero__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero__logo {
    order: -1;
    align-self: center;
    width: 158px;
    height: 158px;
    border-radius: 10px;
  }
}

.hero__logo--sm {
  width: 72px;
  height: 72px;
  border-radius: 5px;
  position: absolute;
  top: 88px;
  right: 40px;
}

@media (max-width: 700px) {
  .hero__logo--sm { display: none; }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.94;
  margin: 18px 0 22px;
  text-wrap: balance;
}

@media (max-width: 480px) {
  .hero__title { margin: 12px 0 14px; }
}

.hero__title em {
  font-style: normal;
  -webkit-text-stroke: 2px var(--ink);
  color: var(--yellow);
  paint-order: stroke fill;
}

/* -webkit-text-stroke has no effect in Firefox, so give it a text-shadow
   fallback outline built from offset copies of the ink color. */
@supports not (-webkit-text-stroke: 1px black) {
  .hero__title em {
    text-shadow:
      -2px -2px 0 var(--ink), 2px -2px 0 var(--ink),
      -2px  2px 0 var(--ink), 2px  2px 0 var(--ink),
      -2px  0   0 var(--ink), 2px  0   0 var(--ink),
       0   -2px 0 var(--ink), 0    2px 0 var(--ink);
  }
}

@media (max-width: 480px) {
  .hero__title em {
    -webkit-text-stroke: 2.5px var(--ink);
  }

  @supports not (-webkit-text-stroke: 1px black) {
    .hero__title em {
      text-shadow:
        -2.5px -2.5px 0 var(--ink), 2.5px -2.5px 0 var(--ink),
        -2.5px  2.5px 0 var(--ink), 2.5px  2.5px 0 var(--ink),
        -2.5px  0     0 var(--ink), 2.5px  0     0 var(--ink),
         0     -2.5px 0 var(--ink), 0      2.5px 0 var(--ink);
    }
  }
}

.hero__sub {
  max-width: 48ch;
  font-size: 18px;
  color: #211c05;
}

.hero__stats {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-top: 18px;
  color: #4a4310;
}

@media (max-width: 480px) {
  .hero__sub { font-size: 15px; line-height: 1.45; }
  .hero__stats { margin-top: 12px; }
}

/* One prominent primary action plus lightweight secondary links reads
   cleaner than three equal-weight buttons, and packs into far less
   vertical space on small screens. */
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 10px 22px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero__link {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 3px;
  transition: opacity 0.15s ease;
}

.hero__link:hover { opacity: 0.6; }

@media (max-width: 480px) {
  .hero__ctas { margin-top: 18px; }
  .hero__ctas .btn--primary { width: 100%; text-align: center; }
}

/* ---------- poster wall (signature element) ---------- */
.poster-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 22px;
  padding: 40px 0 20px;
  align-items: start;
}

.poster-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--ink);
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s ease;
}

.poster-card:hover { border-color: var(--yellow); }

.poster-card__visual {
  position: relative;
  aspect-ratio: 2 / 3;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.poster-card:hover .poster-card__visual { transform: translateY(-4px); }

.poster-card__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(11, 11, 11, 0.82);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.poster-card:hover .poster-card__scrim { opacity: 1; }

.poster-card__hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 16px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--yellow);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.poster-card__hover img,
.catalog-entry__poster .poster-card__hover img { width: 40px; height: auto; flex-shrink: 0; }

.poster-card:hover .poster-card__hover {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .poster-card__hover { transition: none; }
}

.poster-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.poster-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(0deg, rgba(11,11,11,0.4) 0%, rgba(11,11,11,0) 22%),
    linear-gradient(180deg, rgba(11,11,11,0) 8%, rgba(11,11,11,0.55) 40%, rgba(11,11,11,0.95) 62%, rgba(11,11,11,0.97) 100%);
}

.poster-card__index {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--yellow);
  z-index: 1;
  font-variant-numeric: tabular-nums;
}

.poster-card__title {
  position: relative;
  z-index: 1;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.05;
  color: var(--paper);
}

.poster-card__title .arrow { display: inline-block; font-size: 15px; vertical-align: middle; transition: transform 0.25s ease; margin-left: 4px; }
.poster-card.is-expanded .poster-card__title .arrow { transform: rotate(180deg); }

.poster-card__meta {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #cfcabd;
  margin-top: 8px;
  text-transform: uppercase;
}

.poster-card__dir { color: #8a8474; text-transform: none; letter-spacing: 0.02em; }

.poster-card__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.poster-card.is-expanded .poster-card__details { opacity: 1; }

@media (min-width: 700px) {
  .poster-card.is-expanded {
    grid-column: 1 / -1;
    order: -1;
    flex-direction: row;
    align-items: flex-start;
  }

  .poster-card.is-expanded .poster-card__visual {
    max-width: 220px;
    flex-shrink: 0;
  }

  .poster-card.is-expanded .poster-card__details {
    max-height: 2000px;
    flex: 1;
    min-width: 0;
  }

  .poster-card__details-inner {
    padding: 24px;
    background: var(--paper);
    border-left: 1px solid var(--rule);
    height: 100%;
    display: block;
  }
}

@media (max-width: 699px) {
  .poster-card.is-expanded .poster-card__details { max-height: 2000px; }

  .poster-card__details-inner {
    padding: 20px 4px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid var(--rule);
  }
}

.laurel-badge {
  position: absolute;
  top: 10px;
  left: 12px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--yellow);
  background: rgba(11,11,11,0.78);
  padding: 4px 9px;
  border-radius: 2px;
}

.laurel-badge img { width: 24px; height: auto; }

/* ---------- sections ---------- */
.section { padding: 72px 0; }
.section--tight { padding: 40px 0; }
.section--black { background: var(--ink); color: var(--paper); }
.section--yellow { background: var(--yellow); color: var(--ink); }
.section__heading { font-size: clamp(30px, 4.4vw, 44px); margin-bottom: 10px; font-weight: 400; }
.section__lede { max-width: 60ch; color: var(--paper-dim); font-size: 17px; }
.section--black .section__lede { color: #c9c5b8; }
.section--yellow .section__lede { color: #4a4310; }
.section--yellow .status-card,
.section--yellow .contact-card { border-color: var(--ink); }

/* Films section - sleek horizontal scroll design */
#films { background: #fafafa; }

/* ---------- films stats icons ---------- */
.films-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 36px;
  padding: 0;
}

.films-stat {
  text-align: center;
  padding: 28px 20px;
  background: white;
  border-radius: 16px;
  border: 2px solid rgba(11, 11, 11, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.films-stat::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.films-stat:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: 0 8px 24px rgba(249, 208, 36, 0.12);
}

.films-stat:hover::before {
  transform: scaleX(1);
}

.films-stat__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(249, 208, 36, 0.08), rgba(249, 208, 36, 0.03));
  border-radius: 50%;
  border: 2px solid rgba(249, 208, 36, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.films-stat:hover .films-stat__icon {
  transform: scale(1.08) rotate(-5deg);
  background: linear-gradient(135deg, var(--yellow), rgba(249, 208, 36, 0.85));
  border-color: var(--yellow);
}

.films-stat__icon svg {
  width: 32px;
  height: 32px;
  color: var(--ink);
  transition: all 0.3s ease;
}

.films-stat:hover .films-stat__icon svg {
  transform: scale(1.1);
}

.films-stat__icon--image {
  background: white !important;
  border: 2px solid rgba(11, 11, 11, 0.1) !important;
}

.films-stat__icon--image img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.films-stat:hover .films-stat__icon--image {
  background: white !important;
  border-color: var(--yellow) !important;
}

.films-stat:hover .films-stat__icon--image img {
  transform: scale(1.1);
}

.films-stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-bottom: 6px;
}

.films-stat__value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
}

@media (max-width: 768px) {
  .films-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .films-stat {
    padding: 24px 20px;
  }
}

/* ---------- status badges ---------- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
}

.status-badge--circuit { background: var(--yellow); color: var(--ink); }
.status-badge--post { background: var(--ink); color: var(--yellow); border: 1px solid var(--yellow); }
.status-badge--production { background: var(--yellow); color: var(--ink); border: 1px solid var(--ink); }

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 8px;
}

.status-badge .status-dot { margin-right: 0; }

/* ---------- catalog carousel (Films) ---------- */
.catalog-scroller {
  position: relative;
  margin: 0 -40px;
  padding: 0 40px;
}

.catalog {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-left: 40px;
  padding: 24px 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) #ddd;
}

.catalog-entry {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border: none;
  border-radius: 16px;
  padding: 18px;
  background: white;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, flex-basis 0.3s ease;
}

.catalog-entry__body { display: contents; }

@media (min-width: 700px) {
  .catalog-entry.is-expanded {
    flex-basis: 780px;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
  }

  .catalog-entry.is-expanded .catalog-entry__poster {
    width: 200px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .catalog-entry.is-expanded .catalog-entry__body {
    display: block;
    flex: 1;
    min-width: 0;
  }

}

.catalog-entry:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.catalog-entry__poster {
  aspect-ratio: 2/3;
  width: 100%;
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  background: var(--ink);
  margin-bottom: 16px;
  cursor: pointer;
}

.catalog-entry__poster:hover .poster-card__scrim { opacity: 1; }
.catalog-entry__poster:hover .poster-card__hover { opacity: 1; transform: translateY(0); }

.catalog-entry__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-scroller__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--font-label);
  font-size: 18px;
}

.catalog-scroller__nav--prev { left: 4px; }
.catalog-scroller__nav--next { right: 4px; }

@media (max-width: 700px) {
  .catalog-scroller { margin: 0; padding: 0; }
  .catalog-scroller__nav { display: none; }
  .catalog { scroll-padding-left: 0; }
}

.catalog-entry__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.catalog-entry.is-expanded .catalog-entry__details { max-height: 2000px; opacity: 1; }

.catalog-entry__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}

.catalog-entry__num {
  font-family: var(--font-mono);
  color: var(--paper-faint);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.catalog-entry__title {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 6px 0 4px;
  text-wrap: balance;
}

.catalog-entry__title .arrow { display: inline-block; font-size: 15px; vertical-align: middle; transition: transform 0.25s ease; margin-left: 4px; }
.catalog-entry.is-expanded .catalog-entry__title .arrow { transform: rotate(180deg); }

.catalog-entry__format {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 4px 0 10px;
}

.catalog-entry__dir { color: var(--paper-faint); text-transform: none; letter-spacing: 0.02em; }

.catalog-entry__logline {
  cursor: pointer;
  color: var(--paper-dim);
  font-size: 14px;
  white-space: pre-line;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.catalog-entry.is-expanded .catalog-entry__logline {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.catalog-entry__stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: clamp(11px, 2.5vw, 12.5px);
  color: var(--paper-faint);
}

.catalog-entry__stats strong { color: var(--ink); font-weight: 700; }

.catalog-entry__collab {
  font-family: var(--font-body);
  font-size: clamp(12px, 2.5vw, 13.5px);
  font-style: italic;
  color: #6b6450;
  margin-top: 10px;
}

/* ---------- credits list (department-grouped, compact wrapping chips) ---------- */
.credit-groups {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.credit-group__label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: clamp(11px, 2.5vw, 12.5px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-faint);
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--rule-bright);
}

.credit-group__rows {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.credit-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: var(--paper-soft);
  font-size: clamp(12px, 3vw, 14px);
  line-height: 1.3;
}

.credit-row__role {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: clamp(11px, 2.5vw, 13px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--paper-faint);
  max-width: 180px;
}

.credit-row__name {
  font-family: var(--font-body);
  color: var(--ink);
}

.credit-row--plain { font-style: italic; }
.credit-row--plain .credit-row__name { color: var(--paper-dim); }

/* ---------- design enhancements ---------- */

/* Hover states for buttons and links */
.btn,
a.btn--primary,
a.btn--ghost,
button[type="submit"] {
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
a.btn--primary:hover,
a.btn--ghost:hover,
button[type="submit"]:hover {
  background-color: var(--yellow-deep);
  color: var(--ink);
}

.btn--primary:hover {
  background-color: var(--yellow-deep);
  border-color: var(--yellow-deep);
}

.btn--ghost:hover {
  background: transparent;
  color: var(--yellow-deep);
  border-color: var(--yellow-deep);
}

/* Focus-visible improvements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

/* Tap target improvements for mobile */
@media (max-width: 760px) {
  button,
  input[type="submit"],
  a[role="button"] {
    min-width: 44px;
    min-height: 44px;
    padding: 12px;
  }

  .field--full label,
  .field label {
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
  }

  input,
  select,
  textarea {
    min-height: 44px;
    font-size: 16px;
  }
}

/* Subtle motion for hero logo on desktop */
@media (min-width: 761px) {
  .hero__logo {
    transition: transform 0.3s ease;
  }
  .hero__logo:hover {
    transform: scale(1.05);
  }
}

/* Status badge hover */
.status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.status-badge:hover {
  cursor: pointer;
}

/* Loading state */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Improved form labels */
.field label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: var(--ink);
}

/* Improved tap targets */
@media (max-width: 760px) {
  .field input,
  .field select,
  .field textarea {
    min-height: 48px;
    font-size: 16px;
  }
}

/* ---------- Scroll reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* Staggered reveal for child elements */
.reveal-group .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-group .reveal:nth-child(2) { transition-delay: 80ms; }
.reveal-group .reveal:nth-child(3) { transition-delay: 160ms; }
.reveal-group .reveal:nth-child(4) { transition-delay: 240ms; }
.reveal-group .reveal:nth-child(5) { transition-delay: 320ms; }
.reveal-group .reveal:nth-child(6) { transition-delay: 400ms; }
.reveal-group .reveal:nth-child(7) { transition-delay: 480ms; }
.reveal-group .reveal:nth-child(8) { transition-delay: 560ms; }

/* Poster card hover effect */
.poster-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Catalog entry hover */
.catalog-entry {
  transition: box-shadow 0.3s ease;
}

.catalog-entry:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Credit row hover */
.credit-row:hover {
  background-color: var(--yellow);
  border-color: var(--yellow-deep);
}

/* Nav link underline animation */
.nav__links a {
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--ink);
  transition: width 0.2s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

/* Loading skeleton animation */
@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: calc(200px + 100%) 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--paper-soft) 8%, var(--paper) 18%, var(--paper-soft) 33%);
  background-size: 200px 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: 4px;
}

.skeleton--text {
  height: 14px;
  margin-bottom: 8px;
}

.skeleton--title {
  height: 24px;
  margin-bottom: 12px;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .btn,
  a,
  button,
  .poster-card,
  .catalog-entry,
  .credit-row,
  .nav__links a::after {
    transition: none;
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- global overflow safety ---------- */
/* Prevent horizontal scroll on any viewport */
@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }
  .wrap {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .credit-row__role {
    max-width: 100%;
  }
}

/* ---------- laurels / festival results (full-width strip below credits) ---------- */
.laurels {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-bright);
}

/* ---------- Instagram feed ---------- */
.instagram-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.instagram-feed__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
  transition: transform 0.3s ease;
}

.instagram-feed__item:hover {
  transform: scale(1.03);
}

.instagram-feed__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instagram-feed__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: var(--paper);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
}

.instagram-feed__icon {
  font-size: 14px;
  margin-bottom: 2px;
}

.instagram-feed__meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 760px) {
  .instagram-feed {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .instagram-feed {
    grid-template-columns: 1fr;
  }
}

.laurels__heading {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}

.laurel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.laurel-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--paper-soft);
}

.laurel-row img,
.laurel-row .wreath-icon { width: 24px; height: auto; flex-shrink: 0; }

.laurel-row__name {
  min-width: 0;
  max-width: 260px;
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.3;
  color: var(--ink);
}

.laurel-row__result {
  flex-shrink: 0;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}

.laurel-row__result--winner { background: var(--yellow); color: var(--ink); }
.laurel-row__result--finalist,
.laurel-row__result--runner-up { background: var(--ink); color: var(--yellow); }

/* ---------- festival trust strip (homepage) ---------- */
.festival-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ink);
  background: var(--paper-soft);
  border: 1px solid var(--rule-bright);
  padding: 8px 14px;
  border-radius: 2px;
}

.festival-chip img { width: 18px; height: auto; flex-shrink: 0; }

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--rule-bright);
  color: var(--paper-dim);
  padding: 3px 9px;
  border-radius: 2px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}

.filter-bar button {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--rule-bright);
  color: var(--paper-dim);
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-bar button.is-active,
.filter-bar button:hover {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn--primary { background: var(--ink); color: var(--yellow); }
.btn--primary:hover { background: var(--yellow-deep); color: var(--ink); border-color: var(--ink); }

.btn--ghost { background: none; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--yellow); }

.btn--email { text-transform: none; letter-spacing: 0; font-size: 13.5px; }

.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-row svg { width: 18px; height: 18px; }
.social-row:hover { color: var(--ink); }

.social-row--ig svg {
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease;
}
.social-row--ig:hover svg { transform: scale(1.06); }

.section--black .btn--ghost { color: var(--paper); border-color: var(--paper); }
.section--black .btn--ghost:hover { background: var(--paper); color: var(--ink); }

/* ---------- status card ---------- */
.status-card {
  border: 1px solid var(--rule-bright);
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}

.section--black .status-card { border-color: var(--rule-inverse); }

.status-card--yellow {
  background: var(--yellow);
  border-color: var(--ink);
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.meta-grid__value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  margin-top: 6px;
}

/* ---------- production icons ---------- */
.production-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 40px;
}

.production-icon {
  background: white;
  border: 2px solid rgba(11, 11, 11, 0.08);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.production-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(249, 208, 36, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.production-icon:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 12px 32px rgba(249, 208, 36, 0.15);
}

.production-icon:hover::after {
  opacity: 1;
}

.production-icon__visual {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 208, 36, 0.06);
  border-radius: 50%;
  border: 2px solid rgba(249, 208, 36, 0.15);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.production-icon:hover .production-icon__visual {
  transform: scale(1.12) rotate(8deg);
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 4px 16px rgba(249, 208, 36, 0.3);
}

.production-icon__visual svg {
  width: 30px;
  height: 30px;
  color: var(--ink);
  transition: all 0.3s ease;
}

.production-icon:hover .production-icon__visual svg {
  transform: scale(1.08);
}

.production-icon__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-bottom: 5px;
}

.production-icon__value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .production-icons {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .production-icon {
    padding: 20px 16px;
  }
}

/* ---------- production tabs (Current Production) ---------- */
.production-tabs__nav {
  display: flex;
  gap: 2px;
  border: 1px solid var(--rule-bright);
  background: var(--rule-bright);
}

.production-tabs__btn {
  flex: 1;
  background: var(--paper);
  border: none;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s ease;
}

.production-tabs__btn:hover { background: var(--paper-soft); }

.production-tabs__btn.is-active {
  background: var(--ink);
}

.production-tabs__btn .eyebrow {
  border-bottom-color: var(--yellow);
  font-size: 11px;
}

.production-tabs__btn.is-active .eyebrow { color: var(--yellow); }

.production-tabs__btn__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  margin-top: 6px;
  color: var(--ink);
}

.production-tabs__btn.is-active .production-tabs__btn__title { color: var(--paper); }

.production-tabs__panel { display: none; }
.production-tabs__panel.is-active { display: block; }

/* ---------- production card (Current Production) ---------- */
.production {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--rule);
}

.production:first-child { border-top: none; }

@media (max-width: 640px) {
  .production-tabs__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    border: none;
    background: none;
  }

  .production-tabs__btn {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border: 1px solid var(--rule-bright);
  }

  .production-tabs__btn .eyebrow {
    font-size: 0;
    border-bottom: none;
  }

  .production-tabs__btn .status-dot { margin-right: 0; }

  .production-tabs__btn__title {
    margin-top: 0;
    font-size: 14px;
  }

  .production-tabs__btn.is-active {
    background: var(--yellow);
  }

  .production-tabs__btn.is-active .production-tabs__btn__title,
  .production-tabs__btn.is-active .eyebrow { color: var(--ink); }

  .production { grid-template-columns: 1fr; }
  .production__poster { max-width: 220px; }
}

.production__poster {
  aspect-ratio: 2/3;
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.production__poster img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 640px) {
  .production { grid-template-columns: 140px 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .production { grid-template-columns: 1fr; gap: 20px; }
  .production__poster { max-width: 220px; margin: 0 auto; }
  .meta-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 20px; }
}

/* ---------- team section (About) ---------- */
.team-section {
  background: var(--yellow);
  padding: 72px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
  }
}

.team-card {
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.team-card__meta { width: 100%; }

@media (min-width: 641px) {
  .team-card.is-open {
    grid-column: 1 / -1;
    order: -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }

  .team-card.is-open .team-card__photo { flex-shrink: 0; width: 140px; }
  .team-card.is-open .team-card__meta { width: 150px; flex-shrink: 0; }
}

.team-card__badge {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--yellow);
  padding: 4px 8px;
  border-radius: 2px;
}

.team-card__bio {
  max-height: 0;
  max-width: 0;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: #4a4310;
  margin-top: 0;
  opacity: 0;
  transition: max-width 0.4s ease, max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.team-card__bio p { margin: 0 0 14px; }
.team-card__bio p:last-child { margin-bottom: 0; }

.team-card__bio-strength {
  border-left: 3px solid var(--yellow-deep);
  padding-left: 12px;
}

.team-card__bio-strength strong {
  color: var(--ink);
  font-weight: 700;
}

.team-card.is-open .team-card__bio {
  max-height: 420px;
  margin-top: 10px;
  opacity: 1;
}

@media (min-width: 641px) {
  .team-card.is-open .team-card__bio {
    max-width: 420px;
    max-height: none;
    margin-top: 0;
    padding-top: 2px;
  }
}

.team-card__bio--placeholder {
  font-style: italic;
  color: #8a8060;
}

.team-card__photo { position: relative; }

.team-card__photo::after {
  content: "+";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.team-card.is-open .team-card__photo::after { transform: rotate(45deg); }

.team-card__photo {
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  overflow: hidden;
  background: var(--paper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(1.2);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.team-card:hover .team-card__photo img {
  filter: grayscale(0) contrast(1.02) brightness(1.08);
  transform: scale(1.04);
}

.team-card__photo svg { width: 56%; height: 56%; color: var(--ink); opacity: 0.35; }

.team-card__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.15;
}

.team-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a4310;
  margin-top: 4px;
}

/* ---------- timeline (About) ---------- */
.timeline-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 20px 0 20px 16px;
  border-top: 1px solid var(--rule);
  border-left: 3px solid var(--yellow);
}

.timeline-row:last-child { border-bottom: 1px solid var(--rule); }

.timeline-row__when {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-faint);
}

.timeline-row__what {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
}

/* ---------- about cards with interactive icons ---------- */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.about-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid rgba(11, 11, 11, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: var(--yellow);
  box-shadow: 0 16px 48px rgba(249, 208, 36, 0.15);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(249, 208, 36, 0.1), rgba(249, 208, 36, 0.05));
  border-radius: 50%;
  border: 2px solid rgba(249, 208, 36, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover .about-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--yellow), rgba(249, 208, 36, 0.8));
  border-color: var(--yellow);
}

.about-card__icon svg {
  width: 40px;
  height: 40px;
  color: var(--ink);
  transition: all 0.4s ease;
}

.about-card:hover .about-card__icon svg {
  color: var(--ink);
  transform: scale(1.15);
}

.about-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 20px;
  color: var(--ink);
}

.about-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.about-card__list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--paper-dim);
}

.about-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.about-card:hover .about-card__list li::before {
  transform: rotate(45deg);
}

.about-card__list li strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-card {
    padding: 32px 24px;
  }
}

/* ---------- contact grid ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.contact-card {
  background: var(--paper);
  padding: 32px;
  box-shadow: inset 0 0 0 0 var(--yellow);
  transition: box-shadow 0.2s ease;
}

.contact-card:hover { box-shadow: inset 0 3px 0 0 var(--yellow); }

.contact-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 23px;
  margin: 12px 0;
}

/* ---------- form (Talent Network) ---------- */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.form .field--full { grid-column: 1 / -1; }

.field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Login/signup only: simpler, slightly larger labels than the
   monospace small-caps used elsewhere (e.g. the Talent Network form). */
#login-form label,
#signup-form label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule-bright);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 8px 2px;
  min-width: 0;
}

.field textarea { resize: vertical; min-height: 80px; }

/* Phone field layout */
.field--phone .phone-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.field--phone .phone-row input {
  flex: 1 1 auto;
  min-width: 0;
}

.field--phone .phone-row input[type="text"] {
  flex: 0 0 auto;
  max-width: 80px;
}

/* WhatsApp opt-in checkbox */
.field--phone .whatsapp-optin {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--paper-dim);
  text-transform: none;
  letter-spacing: 0;
}

.field--phone .whatsapp-optin input[type="checkbox"] {
  width: auto;
  min-width: 20px;
  min-height: 20px;
}

/* Responsive: single column on mobile */
@media (max-width: 760px) {
  .form {
    grid-template-columns: 1fr;
  }
}

.field input::placeholder,
.field textarea::placeholder { color: var(--paper-faint); }

@media (max-width: 640px) {
  .form { grid-template-columns: 1fr; }
  .catalog-entry { grid-template-columns: 96px 1fr; }
}

/* ---------- account / admin pages ---------- */
.form-message {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 4px;
}

.form-message--error { background: #fdeceb; color: #a03d2e; }
.form-message--success { background: #eef7ee; color: #2f6b3a; }
.form-message--info { background: var(--paper-soft); color: var(--paper-dim); }

.directory-table-wrap { overflow-x: auto; }

.directory-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 14px;
  min-width: 720px;
}

.directory-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-dim);
  padding: 10px 12px;
  border-bottom: 2px solid var(--rule-bright);
}

.directory-table td {
  padding: 12px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

.directory-search {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.directory-search input,
.directory-search select {
  background: transparent;
  border: 1px solid var(--rule-bright);
  border-radius: 4px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
}

.directory-search input { flex: 1; min-width: 200px; }

/* ---------- club life gallery (Talent Network) — filmstrip contact sheet ---------- */
.gallery-frame {
  background: var(--ink);
  margin-bottom: 56px;
}

.gallery-sprockets {
  height: 16px;
  background-image: repeating-linear-gradient(to right, var(--yellow) 0, var(--yellow) 10px, transparent 10px, transparent 26px);
  background-position: 13px center;
  background-repeat: repeat-x;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  grid-auto-flow: dense;
  gap: 10px;
  padding: 10px;
}

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 100px; }
}

@media (max-width: 560px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .gallery__tile--big, .gallery__tile--wide { grid-column: span 2; }
  .gallery__tile--tall { grid-row: span 1; }
}

.gallery__tile {
  overflow: hidden;
  background: var(--paper-soft);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__tile:hover {
  transform: scale(1.5);
  z-index: 5;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}

.gallery__tile--wide { grid-column: span 2; }
.gallery__tile--tall { grid-row: span 2; }
.gallery__tile--big { grid-column: span 2; grid-row: span 2; }

.gallery__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05) brightness(1.4);
  transition: filter 0.4s ease;
}

.gallery__tile:hover img {
  filter: grayscale(0%) contrast(1.05) brightness(1.1);
}

/* portrait originals cropped into shorter cells — bias the crop up so faces aren't cut off */
.gallery__tile:nth-child(4) img,
.gallery__tile:nth-child(6) img,
.gallery__tile:nth-child(14) img {
  object-position: center 18%;
}

.gallery__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 0 var(--yellow);
  transition: box-shadow 0.25s ease;
  pointer-events: none;
}

.gallery__tile:hover::after {
  box-shadow: inset 0 0 0 3px var(--yellow);
}

.gallery__tile__num {
  position: absolute;
  left: 8px;
  bottom: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--paper);
  background: rgba(11, 11, 11, 0.6);
  padding: 2px 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery__tile:hover .gallery__tile__num {
  opacity: 1;
  transform: translateY(0);
}

.gallery__tile--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__tile--placeholder svg {
  width: 32px;
  height: 32px;
  color: var(--paper-faint);
  opacity: 0.6;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 44px 0;
  margin-top: 80px;
  border-top: 3px solid var(--yellow);
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #a8a396;
}

.footer__links { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.footer__links a:hover { color: var(--yellow); }

.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__logo { width: 34px; height: 34px; border-radius: 4px; flex-shrink: 0; object-fit: contain; }

/* ---------- preview badge ---------- */
.preview-badge {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(11,11,11,0.86);
  border: 1px solid var(--yellow);
  padding: 6px 10px;
  border-radius: 2px;
  pointer-events: none;
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .poster-card, .poster-card:hover { transition: none; }
}

/* ---------- Team section (temporarily hidden, can be restored) ---------- */
.team-section { display: none; }

/* ---------- Modern Modal ---------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal.is-open .modal__content {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 11, 0.90);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  background: white;
  max-width: 540px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(11, 11, 11, 0.05);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal__close:hover {
  background: rgba(11, 11, 11, 0.1);
  transform: rotate(90deg);
}

.modal__header {
  padding: 48px 48px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(11, 11, 11, 0.08);
}

@media (max-width: 640px) {
  .modal__header {
    padding: 36px 24px 24px;
  }
}

.modal__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.modal__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4.5vw, 36px);
  margin: 0 0 12px;
  line-height: 1.1;
  white-space: nowrap;
}

.modal__lede {
  color: var(--paper-dim);
  font-size: 16px;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}

.modal__form {
  padding: 32px 48px 48px;
}

@media (max-width: 640px) {
  .modal__form {
    padding: 24px;
  }
}

.modal__form .field {
  margin-bottom: 20px;
}

.modal__form .field label {
  display: block;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.modal__form .field input,
.modal__form .field select,
.modal__form .field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1.5px solid rgba(11, 11, 11, 0.12);
  border-radius: 10px;
  background: white;
  transition: all 0.2s ease;
}

.modal__form .field input:focus,
.modal__form .field select:focus,
.modal__form .field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(249, 208, 36, 0.1);
}

.modal__form .field textarea {
  min-height: 100px;
  resize: vertical;
}

.modal__form .phone-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
}

.modal__form .whatsapp-optin {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.modal__form .whatsapp-optin input[type="checkbox"] {
  width: auto;
  margin: 0;
  cursor: pointer;
}

.modal__form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}
/* ============================================
   MODERN ENHANCEMENTS - Contact Cards & Interactions
   ============================================ */

/* Contact Section Icon Card Hover Effects */
.section--yellow > .wrap > div > div {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.section--yellow > .wrap > div > div:hover {
  transform: translateY(-8px);
  background: rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Icon circle hover effect */
.section--yellow > .wrap > div > div:hover > div:first-child {
  transform: scale(1.1) rotate(5deg);
  background: var(--yellow-deep) !important;
  box-shadow: 0 8px 24px rgba(249, 208, 36, 0.4);
}

/* Icon SVG hover animation */
.section--yellow > .wrap > div > div:hover svg {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Button hover enhancements */
.btn--primary {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  box-shadow: 0 4px 16px rgba(249, 208, 36, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249, 208, 36, 0.5);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(249, 208, 36, 0.3);
}

.btn--ghost {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* About cards hover enhancement */
.about-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 208, 36, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
  pointer-events: none;
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about-card:hover .about-card__icon {
  transform: scale(1.05) rotate(5deg);
}

/* Film stats hover */
.films-stat {
  transition: all 0.3s ease;
}

.films-stat:hover {
  transform: translateY(-4px);
}

.films-stat:hover .films-stat__icon {
  transform: scale(1.1);
  color: var(--yellow-deep);
}

/* Hero links hover */
.hero__link {
  transition: all 0.2s ease;
  position: relative;
}

.hero__link::after {
  content: '→';
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.hero__link:hover::after {
  transform: translateX(4px);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}
/* ============================================
   FAQ PAGE - Modern Accordion Design
   ============================================ */

.faq-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
}

.faq-item {
  background: white;
  border: 2px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: var(--yellow);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item[open] {
  border-color: var(--ink);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  transition: all 0.3s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background: rgba(249, 208, 36, 0.05);
}

.faq-item[open] .faq-question {
  background: var(--yellow);
  padding-bottom: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--yellow-deep);
  transition: all 0.3s ease;
}

.faq-item[open] .faq-icon {
  color: var(--ink);
  transform: scale(1.1);
}

.faq-question span {
  flex: 1;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--paper-dim);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
  color: var(--ink);
}

.faq-answer {
  padding: 0 24px 24px 64px;
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--paper-dim);
  margin: 0;
}

.faq-answer a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.faq-answer a:hover {
  color: var(--yellow-deep);
}

.faq-cta {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(249, 208, 36, 0.1), rgba(249, 208, 36, 0.05));
  border-radius: 16px;
  border: 2px dashed var(--rule);
}

.faq-cta p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--paper-dim);
}

/* Mobile responsive */
@media (max-width: 640px) {
  .faq-question {
    font-size: 18px;
    padding: 16px 20px;
    gap: 12px;
  }

  .faq-item[open] .faq-question {
    padding-bottom: 12px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-arrow {
    width: 18px;
    height: 18px;
  }

  .faq-answer {
    padding: 0 20px 20px 52px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .faq-cta {
    padding: 32px 20px;
  }
}

/* FAQ Page Hero - Left Aligned */
.hero--page {
  text-align: left !important;
}

.hero--page .wrap {
  text-align: left !important;
}

.hero--page .eyebrow,
.hero--page .hero__title {
  text-align: left !important;
}

/* Override hero flex for FAQ page */
.hero--page {
  display: block !important;
}

.hero--page .wrap {
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* Fix extreme left - restore normal wrap margins */
.hero--page .wrap {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ============================================
   MOBILE RESPONSIVE FIXES
   ============================================ */

/* Contact Section - 3 Column Grid → Stack on Mobile */
@media (max-width: 768px) {
  /* Contact cards grid - stack on mobile/tablet */
  .section--yellow > .wrap > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  /* Reduce padding on contact cards */
  .section--yellow > .wrap > div > div {
    padding: 24px 20px !important;
  }
}

/* Production Icons - Stack on Mobile */
@media (max-width: 768px) {
  .production-icons {
    grid-template-columns: 1fr !important;
  }
}

/* About Cards - Stack on Mobile */
@media (max-width: 768px) {
  .about-cards {
    grid-template-columns: 1fr !important;
  }
}

/* Hero - Better Mobile Spacing */
@media (max-width: 768px) {
  .hero__row {
    flex-direction: column;
  }
  
  .hero__logo {
    max-width: 200px;
    margin: 32px auto 0;
  }
  
  .hero__title {
    font-size: clamp(32px, 8vw, 48px) !important;
  }
  
  .hero__ctas {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero__ctas .btn {
    width: 100%;
    text-align: center;
  }
}

/* Film Stats - Stack on Mobile */
@media (max-width: 768px) {
  .films-stats {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* Team Grid - 2 Columns on Tablet, 1 on Mobile */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Modal - Full Screen on Mobile */
@media (max-width: 768px) {
  .modal__content {
    width: 95% !important;
    max-width: 95% !important;
    padding: 24px !important;
    margin: 20px !important;
  }
  
  .modal__form {
    gap: 16px !important;
  }
}

/* Production Tabs - Stack on Mobile */
@media (max-width: 768px) {
  .production-tabs__nav {
    flex-direction: column !important;
  }
  
  .production-tabs__btn {
    width: 100% !important;
  }
  
  .production {
    flex-direction: column !important;
  }
  
  .production__poster {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto 24px !important;
  }
}

/* Footer - Stack on Mobile */
@media (max-width: 768px) {
  .footer__row {
    flex-direction: column !important;
    text-align: center !important;
    gap: 20px !important;
  }
  
  .footer__links {
    flex-direction: column !important;
    gap: 12px !important;
  }
}

/* General Mobile Typography */
@media (max-width: 768px) {
  .section__heading {
    font-size: clamp(28px, 6vw, 42px) !important;
  }
  
  .section__lede {
    font-size: 16px !important;
  }
  
  body {
    font-size: 15px !important;
  }
}

/* Prevent Horizontal Scroll */
@media (max-width: 768px) {
  body, html {
    overflow-x: hidden !important;
  }
  
  * {
    max-width: 100% !important;
  }
  
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* Contact Grid - Better Selector */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .contact-grid {
    gap: 16px !important;
  }
}
