/* ===== TOKENS ===== */
:root {
  --fb: 'DM Sans', sans-serif;
  --fh: 'Sora', sans-serif;
  --fm: 'Roboto Mono', monospace;
  --fk: 'Caveat', cursive;

  /* Palette — pulled from teal/olive poster + gold logo */
  --bg:        #0d1a18;
  --bg2:       #111f1c;
  --bg3:       #162420;
  --surface:   #1a2e2a;
  --surface2:  #203530;
  --border:    #2a4040;
  --gold:      #d4a830;
  --gold-lt:   #e8c05a;
  --teal:      #3a8a78;
  --teal-lt:   #4db8a0;
  --warm:      #c97b5a;
  --text:      #e8e0d0;
  --text-muted:#8fa89e;
  --text-dim:  #567068;
  --white:     #f5ede0;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow: 0 4px 24px rgba(0,0,0,.45);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.6);

  --transition: .25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ===== UTIL ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.hidden { display: none !important; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,26,24,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled { background: rgba(13,26,24,.98); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 1.25rem;
  height: 60px;
}
.nav__logo { display: flex; align-items: baseline; gap: .4rem; }
.nav__abbr {
  font-family: var(--fh);
  font-weight: 700; font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .04em;
}
.nav__year {
  font-family: var(--fm);
  font-size: .7rem; color: var(--text-muted);
}
.nav__links {
  display: flex; align-items: center; gap: 1.5rem;
}
.nav__links a {
  font-size: .82rem; font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__watch {
  background: var(--gold) !important;
  color: var(--bg) !important;
  padding: .4rem .9rem;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: .8rem !important;
  transition: background var(--transition) !important;
}
.nav__watch:hover { background: var(--gold-lt) !important; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,26,24,.3) 0%,
    rgba(13,26,24,.55) 45%,
    rgba(13,26,24,.95) 85%,
    var(--bg) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; padding: 0 1.25rem;
  width: 100%;
}
.hero__tag {
  display: inline-block;
  font-family: var(--fm); font-size: .7rem;
  color: var(--teal-lt); letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--teal);
  padding: .25rem .7rem; border-radius: 100px;
  margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--fh);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: .6rem;
}
.hero__sub {
  font-family: var(--fb);
  font-size: clamp(.95rem, 2.5vw, 1.25rem);
  color: var(--gold);
  font-weight: 500;
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.hero__tagline {
  font-family: var(--fk);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.hero__meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: .5rem;
  font-size: .82rem; color: var(--text-muted);
  font-family: var(--fm);
  margin-bottom: 2rem;
}
.dot { color: var(--teal); }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-family: var(--fm); font-size: .65rem;
  color: var(--text-dim); letter-spacing: .1em;
  text-transform: uppercase;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4;transform:translateY(0)} 50%{opacity:1;transform:translateY(4px)} }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.5rem;
  border-radius: 100px;
  font-size: .88rem; font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--bg);
}
.btn--primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn--ghost {
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-lt); }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-label {
  font-family: var(--fm);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-lt);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--fh);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-sub {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

/* ===== TELUGU BANNER ===== */
.telugu-banner {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
}
.telugu-quote {
  font-family: var(--fk);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--gold);
  margin-bottom: .5rem;
  line-height: 1.5;
}
.telugu-sub {
  font-family: var(--fb);
  font-size: .82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== ABOUT ===== */
.about__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}
.about__poster {
  position: sticky; top: 80px;
}
.about__poster img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.about__desc {
  color: var(--text-muted);
  font-size: .92rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about__desc strong { color: var(--white); font-weight: 600; }
.about__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.5rem;
}
.fact {
  display: flex; flex-direction: column; gap: .2rem;
  padding: .75rem 1rem;
  background: var(--surface);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}
.fact__label { font-family: var(--fm); font-size: .65rem; color: var(--teal-lt); text-transform: uppercase; letter-spacing: .1em; }
.fact__val { font-size: .85rem; color: var(--white); font-weight: 500; }
.fact__val a { color: var(--gold); }
.fact__val a:hover { color: var(--gold-lt); }

/* ===== TIMELINE ===== */
.timeline-section { background: var(--bg2); }
.timeline {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.tl-item {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; min-width: 140px;
  padding: 0 .5rem;
  position: relative;
}
.tl-date {
  font-family: var(--fm);
  font-size: .65rem; color: var(--text-muted);
  margin-bottom: .75rem;
  text-align: center;
}
.tl-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--teal);
  margin-bottom: .75rem;
  position: relative; z-index: 1;
  transition: var(--transition);
}
.tl-item.highlight .tl-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(212,168,48,.5);
  width: 16px; height: 16px;
}
.tl-text {
  font-size: .8rem; text-align: center;
  color: var(--text-muted);
  line-height: 1.4;
}
.tl-item.highlight .tl-text { color: var(--gold); font-weight: 600; }

/* ===== STORY ===== */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.story__text p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.story__chars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.char-card {
  padding: 1.2rem;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.char-card:hover { border-color: var(--teal); }
.char-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.char-card h4 { font-family: var(--fh); font-size: .92rem; color: var(--white); margin-bottom: .3rem; }
.char-card p { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }

/* ===== CAST ===== */
.cast-section { background: var(--bg2); }
.cast__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.cast-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.cast-card:hover { transform: translateY(-3px); border-color: var(--teal); box-shadow: var(--shadow); }
.cast-card.main-cast { grid-column: span 1; }
.cast-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
}
.cast-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .4s ease; }
.cast-card:hover .cast-img-wrap img { transform: scale(1.05); }
.cast-img-wrap.placeholder {
  background: linear-gradient(135deg, var(--surface2), var(--bg3));
}
.cast-img-wrap.placeholder span {
  font-family: var(--fh); font-size: 1.8rem; font-weight: 700;
  color: var(--teal); opacity: .6;
}
.cast-info { padding: .75rem; }
.cast-info h4 { font-family: var(--fh); font-size: .82rem; font-weight: 600; color: var(--white); margin-bottom: .2rem; }
.cast-info span { font-size: .72rem; color: var(--teal-lt); }

/* Crew */
.crew__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.crew-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 1.25rem .75rem;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.crew-item:hover { border-color: var(--gold); }
.crew-img-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
  border: 2px solid var(--border);
}
.crew-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.crew-img-wrap.placeholder span {
  font-family: var(--fm); font-size: .85rem; font-weight: 700; color: var(--gold); opacity: .7;
}
.crew-item h4 { font-family: var(--fh); font-size: .8rem; font-weight: 600; color: var(--white); margin-bottom: .25rem; }
.crew-item span { font-size: .72rem; color: var(--text-muted); }

/* ===== SONGS ===== */
.songs__tabs {
  display: flex; gap: .75rem;
  margin-bottom: 2rem;
}
.tab {
  padding: .5rem 1.2rem;
  border-radius: 100px;
  font-size: .82rem; font-weight: 600;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.tab.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.songs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.song-card {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.song-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow); }
.song-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.song-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.song-card:hover .song-thumb img { transform: scale(1.06); }
.song-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.4);
  opacity: 0;
  transition: opacity var(--transition);
}
.song-card:hover .song-play-btn { opacity: 1; }
.song-play-btn svg { width: 48px; height: 48px; color: var(--white); }
.song-meta { padding: .9rem 1rem; }
.song-meta h4 { font-family: var(--fh); font-size: .88rem; color: var(--white); margin-bottom: .3rem; }
.song-meta span { font-size: .74rem; color: var(--text-muted); }

/* Audio list */
.audio-list { display: flex; flex-direction: column; gap: .75rem; }
.audio-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.audio-item:hover { border-color: var(--teal); }
.audio-num { font-family: var(--fm); font-size: .75rem; color: var(--teal-lt); min-width: 24px; }
.audio-info { flex: 1; }
.audio-info h4 { font-family: var(--fh); font-size: .88rem; color: var(--white); margin-bottom: .2rem; }
.audio-info span { font-size: .75rem; color: var(--text-muted); }
.audio-upload-hint { font-family: var(--fm); font-size: .68rem; color: var(--text-dim); white-space: nowrap; }
audio { width: 180px; height: 32px; accent-color: var(--gold); }

/* ===== TRAILERS ===== */
.trailers-section { background: var(--bg2); }
.trailers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.trailer-card {
  cursor: pointer;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.trailer-card:hover { transform: translateY(-3px); border-color: var(--warm); box-shadow: var(--shadow); }
.trailer-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.trailer-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.trailer-card:hover .trailer-thumb img { transform: scale(1.05); }
.trailer-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.45);
}
.trailer-play svg { width: 54px; height: 54px; color: var(--white); opacity: .85; transition: transform var(--transition); }
.trailer-card:hover .trailer-play svg { transform: scale(1.1); opacity: 1; }
.trailer-label {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--warm);
  color: #fff;
  font-family: var(--fm); font-size: .62rem;
  padding: .2rem .6rem; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .08em;
}
.trailer-meta { padding: 1rem 1.25rem; }
.trailer-meta h4 { font-family: var(--fh); font-size: .9rem; color: var(--white); margin-bottom: .3rem; }
.trailer-meta span { font-size: .75rem; color: var(--text-muted); font-family: var(--fm); }

/* ===== GALLERY ===== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.placeholder-gallery {
  background: var(--surface2);
  border: 1px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition);
}
.placeholder-gallery:hover { border-color: var(--teal); }
.gph {
  font-family: var(--fm); font-size: .7rem;
  color: var(--text-dim); text-align: center;
}

/* ===== LOVE ===== */
.love-section { background: var(--bg2); }
.love__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.love-item {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.love-item:hover { border-color: var(--gold); }
.love-item span { color: var(--gold); font-size: 1rem; margin-top: .1rem; flex-shrink: 0; }
.love-item p { font-size: .84rem; color: var(--text-muted); line-height: 1.5; }

/* ===== MEMORIES ===== */
.memories__form-wrap { max-width: 640px; margin-top: 2rem; }
.memories__form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; font-family: var(--fm); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--white);
  font-family: var(--fb);
  font-size: .88rem;
  padding: .65rem .9rem;
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group select { appearance: none; }
.form-note { font-size: .75rem; color: var(--text-dim); margin-top: .25rem; }
.memory-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--teal);
}
.success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.memory-success h4 { font-family: var(--fh); font-size: 1.2rem; color: var(--white); margin-bottom: .75rem; }
.memory-success p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ===== CLOSING ===== */
.closing-section {
  padding: 5rem 0;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.closing-telugu {
  font-family: var(--fk);
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  color: var(--gold);
  margin-bottom: .75rem;
  line-height: 1.5;
}
.closing-eng {
  font-size: .92rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto .75rem;
  line-height: 1.75;
}
.closing-caveat {
  font-family: var(--fk);
  font-size: 1.1rem;
  color: var(--teal-lt);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  font-family: var(--fh);
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold);
  margin-bottom: .75rem;
}
.footer__brand p {
  font-size: .82rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer__social { display: flex; gap: .75rem; }
.footer__social a {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer__social a svg { width: 16px; height: 16px; color: var(--text-muted); transition: color var(--transition); }
.footer__social a:hover { border-color: var(--gold); }
.footer__social a:hover svg { color: var(--gold); }
.footer__links h5 { font-family: var(--fh); font-size: .82rem; color: var(--white); margin-bottom: 1rem; letter-spacing: .04em; }
.footer__links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__links a { font-size: .82rem; color: var(--text-muted); transition: color var(--transition); }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer__bottom p { font-size: .72rem; color: var(--text-dim); }
.footer__domain { font-family: var(--fm); color: var(--teal-lt) !important; }

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  align-items: center; justify-content: center;
}
.modal.open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
}
.modal__box {
  position: relative; z-index: 1;
  width: min(920px, 95vw);
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.modal__close {
  position: absolute; top: .75rem; right: .75rem; z-index: 2;
  width: 36px; height: 36px;
  background: rgba(0,0,0,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.modal__close:hover { background: rgba(0,0,0,.8); }
.modal__close svg { width: 20px; height: 20px; color: #fff; }
.modal__video { aspect-ratio: 16/9; }
.modal__video iframe { width: 100%; height: 100%; }

/* ===== SCROLL REVEAL ===== */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.rv.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__poster { position: static; max-width: 200px; }
  .story__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav__links {
    display: none;
    position: fixed; inset: 60px 0 0;
    background: var(--bg);
    flex-direction: column; align-items: flex-start;
    padding: 2rem 1.5rem; gap: 1.25rem;
    overflow-y: auto;
    border-top: 1px solid var(--border);
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: .95rem; }
  .nav__burger { display: flex; }
  .nav__watch { margin-top: .5rem; }

  .hero { padding-bottom: 3.5rem; min-height: 100svh; }
  .hero__title { font-size: clamp(1.9rem, 9vw, 3rem); }

  .section { padding: 3.5rem 0; }

  .about__facts { grid-template-columns: 1fr; }
  .story__chars { grid-template-columns: 1fr; }
  .cast__grid { grid-template-columns: repeat(2, 1fr); }
  .crew__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .songs__grid { grid-template-columns: 1fr; }
  .trailers__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  .timeline { gap: 0; }
  .tl-item { min-width: 110px; }

  .hero__scroll { display: none; }
  .hero__cta { gap: .75rem; }
  .btn { padding: .6rem 1.2rem; font-size: .83rem; }

  .section-title { font-size: 1.5rem; }
  .love__grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .cast__grid { grid-template-columns: repeat(2, 1fr); }
  .songs__grid { grid-template-columns: 1fr; }
  .hero__meta { font-size: .75rem; }
}
