/*
  Synthetic fallback for Cormorant Garamond — adjusts Georgia's metrics to
  match so the async font swap causes no visible layout shift (CLS fix).
*/
@font-face {
  font-family: 'Cormorant Garamond Fallback';
  src: local('Georgia'), local('Georgia-Regular');
  size-adjust: 97%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

:root {
  --cream: #FCF8ED;
  --gold: #E0AF29;
  --forest: #404B3F;
  --deep: #192420;
  --black: #141414;
  --gold-dim: rgba(224, 175, 41, 0.15);
  --cream-dim: rgba(252, 248, 237, 0.07);
}

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

html { scroll-behavior: smooth; font-size: 18px; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  overflow-x: hidden;
}

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


/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 50;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.25rem 3rem;
  mix-blend-mode: normal;
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(25, 36, 32, 0.68);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(224, 175, 41, 0.25);
  z-index: -1;
}

.nav-logo img {
  height: clamp(2rem, 4vw, 3.2rem);
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a, .mobile-menu a, .nav-hamburger {
  -webkit-tap-highlight-color: transparent;
}

.nav-links a {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(252,248,237,0.5);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active { color: var(--cream); }
.nav-links a.active::after { width: 100%; }

/* ── LANG SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(252,248,237,0.45);
  transition: color 0.3s;
  padding: 0;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.lang-btn.active { color: var(--gold); }
.lang-btn:hover:not(.active) { color: var(--cream); }
.lang-sep {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.6rem;
  color: rgba(252,248,237,0.2);
  line-height: 1;
  user-select: none;
}

/* ── NAV DROPDOWN ── */
.nav-dropdown-wrapper {
  position: relative;
}
.nav-dropdown-wrapper > a svg {
  width: 8px;
  height: 8px;
  margin-left: 0.35em;
  vertical-align: middle;
  position: relative;
  top: -1px;
  transition: transform 0.3s;
  opacity: 0.5;
}
.nav-dropdown-wrapper:hover > a svg,
.nav-dropdown-wrapper.open > a svg { transform: rotate(180deg); opacity: 1; }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding-top: 1rem;
  list-style: none;
  min-width: 170px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 300;
}
.nav-dropdown-wrapper:hover .nav-dropdown,
.nav-dropdown-wrapper.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li {
  background: rgba(18, 28, 24, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(224, 175, 41, 0.2);
  border-top: none;
}
.nav-dropdown li:first-child {
  border-top: 1px solid rgba(224, 175, 41, 0.2);
}
.nav-dropdown li a {
  display: block;
  padding: 0.55rem 1.4rem;
  white-space: nowrap;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(252,248,237,0.5);
  transition: color 0.2s;
}
.nav-dropdown li a::after { display: none; }
.nav-dropdown li a:hover { color: var(--gold); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.35s, opacity 0.35s, width 0.35s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 6rem;
  padding-bottom: 2rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  width: fit-content;
}

.mobile-menu ul li.mobile-sub {
  text-align: left;
}

.mobile-menu ul li {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s, transform 0.4s;
}

.mobile-menu.open ul li { opacity: 1; transform: translateY(0); }
.mobile-menu.open ul li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open ul li:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open ul li:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open ul li:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open ul li:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open ul li:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu.open ul li:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu.open ul li:nth-child(8) { transition-delay: 0.40s; }

.mobile-menu ul li a {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: clamp(2.4rem, 10vw, 3.8rem);
  font-weight: 300;
  color: rgba(252,248,237,0.7);
  display: block;
  padding: 0.3rem 0;
  line-height: 1.1;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active { color: var(--gold); }

.mobile-menu-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,248,237,0.2);
  margin-top: 3rem;
}

/* ── SECTION BASE ── */
section { padding: 7rem 3rem; scroll-margin-top: 5rem; }

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: rgba(252,248,237,0.5);
}

/* ── GALLERY ── */
.gallery {
  background: var(--black);
  padding: calc(clamp(2rem, 4vw, 3.2rem) + 4.5rem) 0 0;
}

.gallery-header {
  padding: 3rem 3rem 2rem;
}

.gallery-title-line {
  display: block;
  font-size: 10px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  #gallery-section-label {
    white-space: nowrap !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.12em !important;
  }
  #gallery-section-label::before {
    display: none !important;
  }
}


.hero .gallery-header {
  padding: 2rem 3rem 0.35rem;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 12/5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.82);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Lightbox */
.lightbox {
  display: flex;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox.active { visibility: visible; pointer-events: auto; }

.lightbox-stage {
  position: relative;
  overflow: hidden;
  width: 90vw;
  height: 82vh;
}

.lightbox-stage img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 10;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  transition: color 0.2s;
}

.lightbox-close:hover { color: var(--cream); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: none;
  border: 1px solid rgba(252,248,237,0.15);
  color: var(--cream);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--gold);
  background: rgba(224,175,41,0.1);
}

.lightbox-prev svg,
.lightbox-next svg { width: 16px; height: 16px; }

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 2; aspect-ratio: unset; }
  .gallery-header { padding: 1.25rem 1.5rem 2rem; }
}

/* ── HERO ── */
.hero {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--black);
  padding: 3rem 0 0;
}

.hero-reel-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 235/100;
  background: var(--black);
}

.hero-reel-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--forest) 0%, var(--deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-reel-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(252,248,237,0.015) 20px,
      rgba(252,248,237,0.015) 21px
    );
}

.hero-reel-placeholder-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,248,237,0.25);
  position: relative;
  z-index: 1;
}

.hero-image-placeholder {
  display: none;
}

.hero-reel-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  position: relative;
  z-index: 2;
  gap: 2rem;
  border-top: 1px solid rgba(252,248,237,0.07);
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 0;
  font-weight: 400;
  white-space: nowrap;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
}

.hero-subtitle {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(252,248,237,0.4);
  margin-top: 0.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.75rem 1.5rem;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-cta:hover {
  background: var(--cream);
  transform: translateX(4px);
}

.hero-cta svg { width: 14px; height: 14px; }

.hero-right {
  display: none;
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--forest) 0%, var(--deep) 40%, var(--black) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(252,248,237,0.015) 2px,
      rgba(252,248,237,0.015) 4px
    );
}

.hero-reel-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.75rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,248,237,0.5);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  pointer-events: none;
}

.hero-play-btn {
  width: 72px; height: 72px;
  border: 1px solid rgba(252,248,237,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  z-index: 2;
}

.hero-play-btn:hover {
  border-color: var(--gold);
  transform: scale(1.08);
}

.hero-play-btn svg { color: var(--cream); width: 22px; height: 22px; margin-left: 4px; }

.hero-counter {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  text-align: right;
  z-index: 2;
}

.hero-counter-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: rgba(252,248,237,0.08);
  line-height: 1;
}

.hero-counter-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(252,248,237,0.25);
}

/* ── TICKER ── */
.ticker {
  background: #192420;
  padding: 0.6rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 22s linear infinite;
}

.ticker-item {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FCF8ED;
  padding: 0 3rem;
}

.ticker-sep {
  color: rgba(252,248,237,0.3);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-left {
  display: flex;
  flex-direction: column;
}

.about-image {
  background: linear-gradient(160deg, var(--forest) 0%, var(--deep) 100%);
  position: relative;
}

.about-image picture {
  display: block;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
}


.about-image-border {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(224, 175, 41, 0.15);
  pointer-events: none;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(252,248,237,0.06);
  margin-top: 1px;
}

.stat {
  padding: 1.5rem;
  background: var(--black);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.1rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(252,248,237,0.4);
}

.about-divider {
  width: 2.5rem;
  height: 1px;
  background: rgba(224, 175, 41, 0.35);
  margin: 2rem 0;
}

.about-text p {
  color: rgba(252,248,237,0.78);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.about-text p strong {
  color: var(--cream);
  font-weight: 400;
}

.about-imdb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.75rem 1.5rem;
  margin-top: 1px;
  width: 50%;
  transition: background 0.3s, transform 0.2s;
}

.about-imdb:hover {
  background: var(--cream);
  transform: translateX(4px);
}

.about-imdb svg { width: 14px; height: 14px; }

/* ── FTS hero ── */
.fts-hero {
  background: var(--black);
  padding: 10rem 0 2rem;
  text-align: center;
}
.fts-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin: 0;
  line-height: 1;
}

/* ── FTS about section padding ── */
.fts-about { padding-top: 3rem; padding-bottom: 4rem; }

/* ── 4th Dan production grid ── */
.production-about .about-left   { grid-column: 1; grid-row: 1 / span 2; }
.production-about .production-title { grid-column: 2; grid-row: 1; }
.production-about .production-body  { grid-column: 2; grid-row: 2; }

/* ── CREDITS ACCORDION (mobile-only) ── */
.credits-accordion .ars-poetica-header { display: none; }
.credits-accordion .ars-poetica-body { max-height: none; overflow: visible; margin-top: 0; transition: none; }

/* ── ARS POETICA (expandable) ── */
.ars-poetica-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(252,248,237,0.07);
}

.ars-poetica-header strong {
  color: var(--gold);
  font-weight: 400;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.ars-poetica:hover .ars-poetica-header strong { color: var(--gold); }

.ars-poetica-icon {
  color: rgba(252,248,237,0.25);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.35s, color 0.35s;
  user-select: none;
  flex-shrink: 0;
}

.ars-poetica.open .ars-poetica-icon { transform: rotate(45deg); color: var(--gold); }
.ars-poetica.open .ars-poetica-header strong { color: var(--gold); }

.ars-poetica-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              margin-top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 0;
}

.ars-poetica.open .ars-poetica-body { max-height: 1200px; margin-top: 1.2rem; }

.ars-poetica-body p { margin-bottom: 1.2rem; }
.ars-poetica-body p:last-child { margin-bottom: 0; }

.festival-list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.5;
}
.festival-list li {
  padding-left: 1.4em;
  margin-bottom: 0.45rem;
}
.festival-list li:last-child { margin-bottom: 0; }
.festival-list li::before {
  content: '🌿';
  margin-left: -1.4em;
  margin-right: 0.4em;
}

.award-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0 0.2rem;
}
.award-list li {
  padding-left: 1.6em;
  margin-bottom: 0.25rem;
  opacity: 0.85;
}
.award-list li:last-child { margin-bottom: 0; }
.award-list li::before {
  content: '🏆';
  margin-left: -1.6em;
  margin-right: 0.4em;
}

/* ── BEHIND THE SCENES ── */
.bts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.bts-item {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.bts-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.bts-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* ── CREDIT LINK ── */
.credit-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.credit-link:hover { color: var(--gold); }

/* ── BEFORE / AFTER SLIDER ── */
.before-after {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.before-after img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  -webkit-user-drag: none;
}
.before-after__img-b {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 50% 0 0);
}
.before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  pointer-events: none;
}
.before-after__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--black);
}

/* ── WATCH MOBILE THUMBNAIL ── */
.watch-mobile-thumb {
  display: none;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
}
.watch-mobile-thumb picture { display: block; width: 100%; height: 100%; }
.watch-mobile-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.watch-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 1px solid rgba(252,248,237,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.4);
  transition: border-color 0.3s, background 0.3s;
  pointer-events: none;
}
.watch-play-btn svg { color: var(--cream); width: 20px; height: 20px; margin-left: 4px; }
.watch-mobile-thumb:hover .watch-play-btn { background: var(--gold-dim); border-color: var(--gold); }

.watch-iframe-wrapper { position: relative; aspect-ratio: 2.35/1; }

/* ── CAST & CREW ── */
.cast-video-placeholder {
  aspect-ratio: 16/9;
  background: var(--cream-dim);
  border: 1px solid rgba(224, 175, 41, 0.15);
  position: relative;
  width: 100%;
}

.cast-video-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── WORK / PORTFOLIO ── */
.work { background: var(--deep); }

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--forest);
  transition: background-color 0.4s;
}

.work-item:nth-child(1) { grid-column: span 7; }
.work-item:nth-child(2) { grid-column: span 5; }
.work-item:nth-child(3) { grid-column: span 12; }
.work-item:nth-child(4) { grid-column: span 4; }
.work-item:nth-child(5) { grid-column: span 8; }
.work-item:nth-child(6) { grid-column: span 7; }
.work-item:nth-child(7) { grid-column: span 5; }
.work-item:nth-child(8) { grid-column: span 4; }
.work-item:nth-child(9) { grid-column: span 8; }

.work-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--forest) 0%, var(--deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-item:nth-child(1) .work-thumb { aspect-ratio: 6/5; }
.work-item:nth-child(2) .work-thumb,
.work-item:nth-child(4) .work-thumb { aspect-ratio: 4/5; }
.work-item:nth-child(6) .work-thumb { aspect-ratio: 6/5; }
.work-item:nth-child(7) .work-thumb,
.work-item:nth-child(8) .work-thumb { aspect-ratio: 4/5; }
.work-item:nth-child(3) .work-thumb { aspect-ratio: 21/9; }

.work-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(252,248,237,0.015) 20px,
      rgba(252,248,237,0.015) 21px
    );
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,1) 10%, transparent 70%);
  opacity: 1;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.work-item:hover .work-thumb { transform: scale(1.04); }
.work-item:hover .work-meta { opacity: 0; transform: translateY(-100%); }
.work-item:hover { background-color: transparent; }

.work-item--link::after {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(224, 175, 41, 0);
  pointer-events: none;
  z-index: 3;
  transition: border-color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.work-item--link:hover::after {
  border-color: rgba(224, 175, 41, 0.45);
}

.work-play-btn {
  position: absolute;
  top: calc(50% - 1.1rem);
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(252,248,237,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s, transform 0.35s, opacity 0.35s;
  cursor: pointer;
}

.work-play-btn svg {
  color: var(--cream);
  width: 20px;
  height: 20px;
  margin-left: 4px;
}

.work-item:hover .work-play-btn {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.work-play-btn:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.work-info { width: 100%; }

.work-cat {
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.work-name {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin: 0;
}

.work-desc {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(252,248,237,0.73);
  line-height: 1.5;
  margin-top: 0.4rem;
}

.work-meta {
  padding: 0.5rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 2.2rem;
  overflow: hidden;
  transition: opacity 0.8s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-meta-title {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 0.95rem;
  color: rgba(252,248,237,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.work-meta-year {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(252,248,237,0.3);
}

.view-all-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: gap 0.3s;
  white-space: nowrap;
}

.view-all-link::after {
  content: '→';
  font-size: 1rem;
}

.view-all-link:hover { gap: 1.25rem; }

/* ── SERVICES ── */
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
}

.services-list { display: flex; flex-direction: column; }

.services-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.75rem 1.5rem;
  margin-top: 2rem;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
}
.services-cta:hover {
  background: var(--cream);
  transform: translateX(4px);
}

.service-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(252,248,237,0.07);
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 1.5rem;
  align-items: start;
  transition: background 0.3s;
  cursor: default;
}

.service-item:first-child { border-top: 1px solid rgba(252,248,237,0.07); }

.service-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: transparent;
  padding-top: 4px;
}

.service-name {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  margin: 0 0 0.4rem;
  transition: color 0.3s;
}

.service-desc {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(252,248,237,0.82);
  line-height: 1.75;
}

.service-arrow {
  color: rgba(252,248,237,0.15);
  font-size: 1.2rem;
  padding-top: 2px;
  transition: color 0.3s, transform 0.3s;
}

.service-item:hover .service-name { color: var(--gold); }
.service-item:hover .service-arrow { color: var(--gold); transform: translateX(4px); }

.service-item--expandable { cursor: pointer; }

.service-expand-icon {
  color: rgba(252,248,237,0.25);
  font-size: 1.4rem;
  line-height: 1;
  padding-top: 4px;
  transition: transform 0.35s, color 0.35s;
  user-select: none;
  flex-shrink: 0;
}

.service-item--expandable.open .service-expand-icon { transform: rotate(45deg); color: var(--gold); }
.service-item--expandable.open .service-name { color: var(--gold); }

.service-packages {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              margin-top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 0;
}

.service-item--expandable.open .service-packages { max-height: 1200px; margin-top: 1.5rem; }

.package-row {
  padding: 1.1rem 1.25rem;
  margin-bottom: 1px;
  background: rgba(64,75,63,0.35);
  border-left: 2px solid rgba(64,75,63,0.8);
}

.package-row--featured {
  background: rgba(64,75,63,0.55);
  border-left-color: rgba(224,175,41,0.35);
}

.package-row-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.package-row-name {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.package-row-price {
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.package-row-desc {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(252,248,237,0.78);
  line-height: 1.75;
}

.package-badge {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  color: var(--gold);
  background: rgba(224,175,41,0.12);
  border: 1px solid rgba(224,175,41,0.25);
}

.package-badge--discount { /* inherits .package-badge */ }

.price-new {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  color: var(--gold);
  background: rgba(224,175,41,0.12);
  border: 1px solid rgba(224,175,41,0.25);
}

.package-badge--prestige {
  color: var(--gold);
  background: rgba(224,175,41,0.12);
  border-color: rgba(224,175,41,0.25);
}

.service-fine-print {
  display: block;
  margin-top: 0.55rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(252,248,237,0.48);
  line-height: 1.65;
}

.service-img {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--forest) 0%, var(--deep) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
}

.service-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(252,248,237,0.015) 20px,
    rgba(252,248,237,0.015) 21px
  );
}

.service-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── REEL SECTION ── */
.reel-section {
  background: var(--deep);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 8rem 3rem;
}

.reel-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 18vw;
  color: rgba(252,248,237,0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}

.reel-inner { position: relative; z-index: 2; }

.reel-play {
  width: 100px; height: 100px;
  border: 1px solid rgba(224, 175, 41, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem auto;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative;
}

.reel-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(224, 175, 41, 0.1);
  border-radius: 50%;
  transition: inset 0.3s;
}

.reel-play:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: scale(1.06);
}

.reel-play svg { color: var(--cream); width: 28px; height: 28px; margin-left: 5px; }

.reel-caption {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,248,237,0.3);
}

/* ── TESTIMONIALS ── */
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 3.5rem;
}

.testimonials-carousel {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.testimonials-track-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.testimonials-track {
  display: flex;
  gap: 0.6rem;
  will-change: transform;
}

.tst-arrow {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(252, 248, 237, 0.15);
  background: none;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.tst-arrow:hover {
  border-color: var(--gold);
  background: rgba(224, 175, 41, 0.1);
}

.tst-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.testimonial-card {
  background: rgba(64, 75, 63, 0.18);
  border-top: 1px solid rgba(224, 175, 41, 0.25);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  list-style: none;
}


.testimonial-quote {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  color: rgba(252, 248, 237, 0.82);
  line-height: 1.75;
  flex: 1;
  quotes: '\2018' '\2019';
}

.testimonial-quote::before { content: open-quote; }
.testimonial-quote::after  { content: close-quote; }

.testimonial-attribution {
  margin-top: 1.75rem;
}

.testimonial-divider {
  width: 2rem;
  height: 1px;
  background: rgba(224, 175, 41, 0.35);
  margin-bottom: 1rem;
}

.testimonial-name {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.testimonial-byline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(64, 75, 63, 0.55);
  border: 1px solid rgba(224, 175, 41, 0.2);
  flex-shrink: 0;
}

.testimonial-role {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(252, 248, 237, 0.4);
}

.testimonial-role-link {
  color: inherit;
  transition: color 0.3s;
}

.testimonial-role-link:hover { color: var(--gold); }

@media (max-width: 900px) {
  .testimonials-carousel { gap: 0.6rem; flex-wrap: wrap; }
  .testimonials-track-wrap { flex: 0 0 100%; order: 0; }
  .tst-prev { order: 1; flex: 1; height: 2.25rem; }
  .tst-next { order: 2; flex: 1; height: 2.25rem; }
  .testimonial-card { border: 1px solid rgba(224, 175, 41, 0.25); }
}

/* ── CONTACT ── */
.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 0; }

.form-field {
  position: relative;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(252,248,237,0.1);
}

.form-field:first-child { border-top: 1px solid rgba(252,248,237,0.1); }

.form-field label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(252,248,237,0.55);
  padding: 1.2rem 0 0.3rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 300;
  padding: 0 0 1.2rem;
  resize: none;
}

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

.form-field select option { background: var(--deep); }

.form-submit {
  margin-top: 2.5rem;
  background: transparent;
  border: 1px solid rgba(224,175,41,0.4);
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  width: fit-content;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.form-status {
  margin-top: 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}
.form-status--success { color: #8fbf8f; }
.form-status--error   { color: #c97a6a; }

.contact-info { padding-top: 0.5rem; }

.contact-detail {
  margin-bottom: 2rem;
}

.contact-detail-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(252,248,237,0.55);
  margin-bottom: 0.4rem;
}

.contact-detail-value {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(252,248,237,0.78);
}

.contact-detail-value a:hover { color: var(--gold); }

.contact-socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(252,248,237,0.07);
}

.social-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(252,248,237,0.55);
  transition: color 0.3s;
}

.social-link:hover { color: var(--gold); }

/* ── VIDEO MODAL ── */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.video-modal.active { display: flex; }

.video-modal-inner {
  position: relative;
  width: min(90vw, 1100px);
}

.video-modal-ratio {
  position: relative;
  padding-top: 56.25%;
}

.video-modal-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(252,248,237,0.5);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
}

.video-modal-close:hover { color: var(--cream); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(252,248,237,0.05);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: rgba(252,248,237,0.5);
}

.footer-logo span { color: rgba(224,175,41,0.4); }

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(252,248,237,0.5);
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top::before {
  content: '';
  display: block;
  width: 1px;
  height: 2rem;
  background: rgba(252,248,237,0.5);
  transition: background 0.3s, height 0.3s;
}

.back-to-top:hover::before {
  background: var(--gold);
  height: 2.6rem;
}

.back-to-top span {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,248,237,0.65);
  transition: color 0.3s;
}

.back-to-top:hover span { color: var(--gold); }

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── HERO LOAD ANIMATION ── */
.hero-reel-wrap {
  opacity: 0;
  animation: heroReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
}

.hero-left {
  opacity: 0;
  animation: heroReveal 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-left { padding: 1.25rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-title { white-space: normal; font-size: clamp(1rem, 4vw, 1.4rem); }
  section { padding: 5rem 1.5rem; }
  .about { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-left { gap: 1.5rem; }
  .work-item:nth-child(1),
  .work-item:nth-child(2),
  .work-item:nth-child(3),
  .work-item:nth-child(4),
  .work-item:nth-child(5),
  .work-item:nth-child(6),
  .work-item:nth-child(7),
  .work-item:nth-child(8),
  .work-item:nth-child(9) { grid-column: span 12; }
  .services-inner { grid-template-columns: 1fr; gap: 2rem; }
  .service-num { display: none; }
  .service-item { grid-template-columns: 1fr auto; }
  .service-name .package-badge--discount { display: table; margin-top: 0.35rem; }
  .package-row-header { flex-direction: column; gap: 0.25rem; align-items: flex-start; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }

  /* ── credits accordion: mobile only ── */
  .credits-accordion .ars-poetica-header { display: flex; }
  .credits-accordion .ars-poetica-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                margin-top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .credits-accordion.open .ars-poetica-body { max-height: 600px; margin-top: 1.2rem; }

  /* ── father-to-son.html mobile fixes ── */
  .fts-hero { padding-top: 6rem; }
  .watch-mobile-thumb { display: block; }
  .watch-iframe-wrapper { display: none; }
  .fts-about { padding-top: 2rem; padding-bottom: 2rem; }
  .fts-about .about-stats { margin-top: -1rem !important; }
  #watch { padding: 2rem 1.5rem !important; }
  #cast-crew { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  #cast-crew .about { grid-template-columns: 1fr !important; }
  #bts { padding: 4rem 1.5rem !important; }
  .bts-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .bts-grid--4col { grid-template-columns: repeat(2, 1fr) !important; }
  #production { padding: 4rem 1.5rem !important; }
  .production-about { display: flex !important; flex-direction: column; gap: 1.5rem; }
  .production-about .production-title { order: 1; }
  .production-about .about-left       { order: 2; }
  .production-about .production-body  { order: 3; }
  #making-of { padding: 4rem 1.5rem !important; }
  #making-of .about { grid-template-columns: 1fr !important; }
  #making-of .about + .about-text { margin-top: 1.5rem !important; }
  #screenings { padding: 4rem 1.5rem !important; }
  #screenings .bts-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .about-left > div[style*="display:flex"] { padding-left: 0 !important; flex-direction: row; }
  .fts-about .services-cta { display: flex; width: calc(50% - 0.5rem); box-sizing: border-box; justify-content: center; padding-left: 0 !important; padding-right: 0 !important; }
}
