/* ===========================
   SHAMILA NAZARI — PORTFOLIO
   v3 · Lengsfeld-Inspired
   =========================== */

:root {
  --bg:       #111111;
  --bg2:      #0d0d0d;
  --bg3:      #1a1a1a;
  --surface:  #222222;
  --white:    #ffffff;
  --gray:     #aaaaaa;
  --gray-d:   #777777;
  --orange:   #E8871E;
  --orange-d: #D4791A;
  --orange-l: #f09840;
  --green:    #4CAF50;
  --font-h:   'Montserrat','Arial',sans-serif;
  --font-b:   'Open Sans','Helvetica',sans-serif;
  --ease:     cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-out: cubic-bezier(0.16,1,0.3,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  background:var(--bg);
  color:var(--white);
  font-family:var(--font-b);
  font-weight:300;
  line-height:1.7;
  overflow-x:hidden;
  cursor:none;
}
img { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; cursor:none; }
button { cursor:none; font-family:var(--font-h); }

.container { max-width:1160px; margin:0 auto; padding:0 32px; }

/* ─── SCROLL PROGRESS ─────────────────── */
.scroll-progress {
  position:fixed; top:0; left:0;
  height:3px;
  background:var(--orange);
  width:0%;
  z-index:200;
  transition:width 0.1s linear;
}

/* ─── CUSTOM CURSOR ───────────────────── */
.cursor {
  position:fixed;
  width:36px; height:36px;
  border:1.5px solid rgba(232,135,30,0.7);
  border-radius:50%;
  pointer-events:none;
  z-index:9998;
  transform:translate(-50%,-50%);
  transition:width 0.3s var(--ease), height 0.3s var(--ease),
             background 0.3s, border-color 0.3s;
}
.cursor-dot {
  position:fixed;
  width:5px; height:5px;
  background:var(--orange);
  border-radius:50%;
  pointer-events:none;
  z-index:9999;
  transform:translate(-50%,-50%);
}
.cursor.is-hovered { width:60px; height:60px; border-color:var(--orange); background:rgba(232,135,30,0.08); }
body:not(.cursor-ready) .cursor,
body:not(.cursor-ready) .cursor-dot { opacity:0; }

/* ─── REVEAL ANIMATION ─────────────────── */
.reveal-up {
  opacity:0;
  transform:translateY(36px);
  transition:opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal-up.visible {
  opacity:1;
  transform:translateY(0);
}
@media (max-width:768px) {
  .reveal-up { opacity:1; transform:none; transition:none; }
}

/* ─── SECTION HEADING STYLE ───────────── */
.section-head { text-align:center; margin-bottom:60px; }
.section-heading {
  font-family:var(--font-h);
  font-size:clamp(1.8rem,4vw,2.8rem);
  font-weight:800;
  letter-spacing:0.12em;
  color:var(--white);
  margin-bottom:16px;
  text-transform:uppercase;
}
.heading-bar {
  width:60px; height:3px;
  background:var(--orange);
  margin:0 auto;
}

/* ─── BUTTONS ─────────────────────────── */
.btn {
  display:inline-block;
  padding:14px 42px;
  font-family:var(--font-h);
  font-size:0.75rem;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
  transition:all 0.3s var(--ease);
  cursor:none;
}
.btn-ghost {
  background:transparent;
  color:var(--white);
  border:1.5px solid rgba(255,255,255,0.7);
}
.btn-ghost:hover {
  background:rgba(255,255,255,0.1);
  border-color:var(--white);
}
.btn-orange {
  background:var(--orange);
  color:var(--white);
  border:none;
  border-radius:3px;
}
.btn-orange:hover { background:var(--orange-l); }
.btn-send {
  background:var(--green);
  color:var(--white);
  border:none;
  border-radius:3px;
  width:100%;
  text-align:center;
  padding:16px;
}
.btn-send:hover { background:#5dbf61; }

/* ─── NAV ─────────────────────────────── */
#nav {
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 40px;
  transition:background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
#nav.scrolled {
  background:rgba(13,13,13,0.95);
  backdrop-filter:blur(12px);
  padding:14px 40px;
  border-bottom:1px solid rgba(232,135,30,0.15);
}
.nav-logo {
  font-family:var(--font-h);
  font-size:0.82rem;
  letter-spacing:0.28em;
  display:flex;
  gap:5px;
  align-items:baseline;
}
.logo-thin { font-weight:300; }
.logo-bold { font-weight:800; }

.nav-links {
  display:flex;
  align-items:center;
  gap:6px;
  list-style:none;
}
.nav-sep { color:var(--gray-d); font-size:0.65rem; padding:0 2px; }
.nav-link {
  font-family:var(--font-h);
  font-size:0.68rem;
  font-weight:600;
  letter-spacing:0.12em;
  color:var(--gray);
  transition:color 0.25s;
  padding:4px 6px;
  position:relative;
}
.nav-link:hover,
.nav-link.active { color:var(--orange); }

.nav-socials {
  display:flex;
  gap:16px;
  align-items:center;
}
.social-icon {
  width:20px; height:20px;
  display:block;
  color:var(--gray);
  transition:color 0.25s;
}
.social-icon:hover { color:var(--orange); }
.social-icon svg { width:100%; height:100%; }

.nav-toggle {
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:4px;
  cursor:none;
}
.nav-toggle span {
  display:block;
  width:24px; height:1.5px;
  background:var(--white);
  transition:0.3s;
}
.nav-toggle.active span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity:0; }
.nav-toggle.active span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
  display:none;
  position:fixed; inset:0;
  background:rgba(0,0,0,0.7);
  z-index:98;
}

/* ─── HERO ────────────────────────────── */
.hero {
  position:relative;
  height:100vh; min-height:580px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  text-align:center;
}
.hero-bg { position:absolute; inset:0; }
.hero-img {
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 30%;
  will-change:transform;
  filter:brightness(0.55) saturate(0.8);
}
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    to bottom,
    rgba(13,13,13,0.1) 0%,
    rgba(13,13,13,0.4) 50%,
    rgba(13,13,13,0.85) 90%,
    #111 100%
  );
}
.hero-content { position:relative; z-index:2; padding:0 24px; }

.hero-subtitle {
  font-family:var(--font-h);
  font-size:0.65rem;
  font-weight:400;
  letter-spacing:0.42em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.75);
  margin-bottom:32px;
  display:block;
}

/* Typewriter */
.hero-typewriter {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-bottom:44px;
}
.tw-prefix {
  font-family:var(--font-h);
  font-size:clamp(2.8rem,8vw,6.5rem);
  font-weight:900;
  letter-spacing:0.08em;
  color:var(--white);
  text-transform:uppercase;
}
.tw-bars {
  width:3px;
  height:clamp(2.8rem,8vw,6.5rem);
  background:var(--white);
  opacity:0;
  animation:twBlink 0.8s step-end infinite;
  flex-shrink:0;
}
.tw-bar-right { animation-delay:0.1s; }
@keyframes twBlink { 0%,100%{opacity:1} 50%{opacity:0} }
.tw-word {
  font-family:var(--font-h);
  font-size:clamp(2.8rem,8vw,6.5rem);
  font-weight:900;
  letter-spacing:0.08em;
  color:var(--orange);
  text-transform:uppercase;
  min-width:2ch;
  display:inline-block;
}

.hero-cta { margin-top:0; }

.hero-scroll-ind {
  position:absolute;
  bottom:36px; left:50%;
  transform:translateX(-50%);
  z-index:2;
}
.hs-line {
  display:block;
  width:1px; height:60px;
  background:linear-gradient(to bottom, transparent, rgba(232,135,30,0.8));
  animation:hsPulse 2s ease-in-out infinite;
}
@keyframes hsPulse {
  0%,100%{opacity:0.4;transform:scaleY(0.6)} 50%{opacity:1;transform:scaleY(1)}
}

/* ─── AWARDS BAR ──────────────────────── */
.awards-bar {
  background:var(--bg2);
  border-top:1px solid rgba(232,135,30,0.2);
  border-bottom:1px solid rgba(232,135,30,0.2);
  padding:16px 0;
  overflow:hidden;
}
.marquee-track { width:100%; overflow:hidden; }
.marquee-content {
  display:flex;
  align-items:center;
  gap:24px;
  white-space:nowrap;
  animation:marquee 28s linear infinite;
}
.marquee-content:hover { animation-play-state:paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.aw-item {
  font-family:var(--font-h);
  font-size:0.68rem;
  font-weight:600;
  letter-spacing:0.1em;
  color:rgba(255,255,255,0.6);
  flex-shrink:0;
}
.aw-dot { color:var(--orange); opacity:0.5; font-size:1rem; flex-shrink:0; }

/* ─── SECTIONS ─────────────────────────── */
.section { padding:100px 0; }

/* ─── ABOUT ───────────────────────────── */
.about-section { background:var(--bg); text-align:center; }
.about-portrait {
  margin:0 auto 36px;
  width:fit-content;
}
.portrait-circle {
  width:180px; height:180px;
  border-radius:50%;
  object-fit:cover;
  object-position:center top;
  border:3px solid var(--orange);
  filter:grayscale(20%);
  transition:filter 0.4s, transform 0.4s var(--ease);
}
.portrait-circle:hover { filter:grayscale(0%); transform:scale(1.04); }
.about-bio {
  max-width:680px;
  margin:0 auto 36px;
  text-align:center;
}
.about-bio p {
  font-size:0.97rem;
  color:var(--gray);
  line-height:1.85;
  margin-bottom:16px;
}
.about-cta { text-align:center; }

/* ─── LAURELS ─────────────────────────── */
.laurels-section {
  background:var(--bg2);
  padding:60px 0;
  border-top:1px solid rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.laurels-row {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:60px;
  flex-wrap:wrap;
}
.laurel {
  text-align:center;
  padding:20px 30px;
  border:1px solid rgba(232,135,30,0.25);
  transition:border-color 0.3s, background 0.3s;
  min-width:160px;
}
.laurel:hover { border-color:rgba(232,135,30,0.6); background:rgba(232,135,30,0.05); }
.laurel-icon { font-size:2rem; margin-bottom:10px; }
.laurel-name {
  font-family:var(--font-h);
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--white);
  line-height:1.4;
  margin-bottom:6px;
}
.laurel-year {
  font-size:0.65rem;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--orange);
  font-weight:600;
}

/* ─── FILMS ───────────────────────────── */
.films-section { background:var(--bg3); }
.films-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.film-card {
  background:var(--bg);
  transition:transform 0.4s var(--ease-out);
}
.film-card:hover { transform:translateY(-8px); }

.film-thumb {
  position:relative;
  aspect-ratio:16/10;
  overflow:hidden;
  background:#000;
}
.film-img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transition:opacity 0.5s, transform 0.6s var(--ease);
  z-index:1;
}
.film-video-wrapper {
  position:absolute; inset:0;
  z-index:2;
  opacity:0;
  transition:opacity 0.45s;
}
.film-video { width:100%; height:100%; object-fit:cover; }
.film-video-bars { position:absolute; inset:0; pointer-events:none; z-index:3; }
.bar { position:absolute; left:0; right:0; height:0; background:#000; transition:height 0.4s var(--ease-out); }
.bar--top { top:0; }
.bar--bottom { bottom:0; }
.film-play-ring {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  z-index:4;
  opacity:0;
  transition:opacity 0.3s 0.1s;
}
.film-play-ring svg {
  width:48px; height:48px;
  color:var(--orange);
  border:1.5px solid var(--orange);
  border-radius:50%;
  padding:10px;
  margin-left:3px;
  transform:scale(0.75);
  transition:transform 0.4s var(--ease-out);
}
.film-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.65));
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  padding:12px 16px;
  z-index:5;
  transition:opacity 0.3s;
}
.film-tag {
  font-family:var(--font-h);
  font-size:0.58rem;
  font-weight:700;
  letter-spacing:0.18em;
  color:var(--orange);
  background:rgba(0,0,0,0.5);
  padding:3px 8px;
}
.film-year-tag {
  font-family:var(--font-h);
  font-size:0.62rem;
  font-weight:600;
  letter-spacing:0.1em;
  color:rgba(255,255,255,0.65);
}

/* Film card hover */
.film-card:hover .film-img { opacity:0; transform:scale(1.06); }
.film-card:hover .film-video-wrapper { opacity:1; }
.film-card:hover .bar--top { height:8%; }
.film-card:hover .bar--bottom { height:8%; }
.film-card:hover .film-play-ring { opacity:1; }
.film-card:hover .film-play-ring svg { transform:scale(1); }
.film-card:hover .film-overlay { opacity:0; }

.film-info { padding:20px 22px 24px; }
.film-title {
  font-family:var(--font-h);
  font-size:1.05rem;
  font-weight:700;
  letter-spacing:0.03em;
  color:var(--white);
  margin-bottom:10px;
  transition:color 0.3s;
}
.film-card:hover .film-title { color:var(--orange); }
.film-desc {
  font-size:0.82rem;
  color:var(--gray);
  line-height:1.75;
  margin-bottom:14px;
}
.film-meta {
  display:flex;
  gap:8px;
  font-family:var(--font-h);
  font-size:0.62rem;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--gray-d);
}

/* ─── CINEMATIC DIVIDER ───────────────── */
.cinematic-divider {
  position:relative;
  height:320px;
  overflow:hidden;
}
.cinematic-divider img {
  width:100%; height:100%;
  object-fit:cover;
  filter:brightness(0.4) saturate(0.6);
}
.cd-overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    to bottom,
    var(--bg3) 0%,
    transparent 20%,
    transparent 80%,
    var(--bg) 100%
  );
}

/* ─── VISION / QUOTE ──────────────────── */
.vision-section { background:var(--bg); }
.quote-block {
  max-width:820px;
  margin:0 auto 80px;
  text-align:center;
}
.quote-mark {
  font-family:var(--font-h);
  font-size:6rem;
  line-height:0.6;
  color:var(--orange);
  margin-bottom:20px;
  display:block;
  font-weight:900;
}
.big-quote {
  font-family:var(--font-h);
  font-size:clamp(0.95rem,2.2vw,1.3rem);
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--white);
  line-height:1.75;
  quotes:none;
  margin-bottom:20px;
}
.q-highlight { color:var(--orange); }
.quote-attr {
  font-family:var(--font-h);
  font-size:0.7rem;
  font-weight:600;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:var(--gray-d);
}
.vision-pillars {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
  margin-top:0;
}
.pillar {
  padding:36px 32px;
  background:var(--bg3);
  text-align:center;
  transition:background 0.3s, transform 0.4s var(--ease-out);
}
.pillar:hover { background:var(--surface); transform:translateY(-4px); }
.pillar-num {
  font-family:var(--font-h);
  font-size:2.2rem;
  font-weight:900;
  color:rgba(232,135,30,0.25);
  margin-bottom:12px;
  line-height:1;
}
.pillar-title {
  font-family:var(--font-h);
  font-size:0.75rem;
  font-weight:800;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:14px;
}
.pillar p { font-size:0.84rem; color:var(--gray); line-height:1.7; }

/* ─── PRESSE ──────────────────────────── */
.presse-section { background:var(--bg2); }
.press-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-bottom:64px;
}
.press-quote {
  background:var(--bg3);
  padding:32px 28px;
  border-top:3px solid var(--orange);
  transition:transform 0.4s var(--ease-out);
}
.press-quote:hover { transform:translateY(-6px); }
.pq-mark {
  font-size:3.5rem;
  font-weight:900;
  line-height:0.7;
  color:var(--orange);
  margin-bottom:12px;
  display:block;
  font-family:var(--font-h);
}
.press-quote p {
  font-size:0.86rem;
  color:var(--gray);
  line-height:1.8;
  margin-bottom:16px;
}
.press-quote cite {
  font-family:var(--font-h);
  font-size:0.65rem;
  font-weight:700;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--orange);
  font-style:normal;
}
.logos-row {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:48px;
  flex-wrap:wrap;
  padding-top:48px;
  border-top:1px solid rgba(255,255,255,0.07);
}
.press-logo {
  font-family:var(--font-h);
  font-size:0.7rem;
  font-weight:700;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--gray-d);
  transition:color 0.3s, transform 0.3s;
}
.press-logo:hover { color:var(--orange); transform:translateY(-2px); }

/* ─── KONTAKT ─────────────────────────── */
.kontakt-section {
  position:relative;
  padding:100px 0;
}
.kontakt-bg { position:absolute; inset:0; z-index:0; }
.kontakt-bg img { width:100%; height:100%; object-fit:cover; filter:brightness(0.25) saturate(0.5); }
.kontakt-overlay {
  position:absolute; inset:0;
  background:rgba(13,13,13,0.85);
}
.kontakt-section .container { position:relative; z-index:2; }
.kontakt-lead {
  text-align:center;
  font-family:var(--font-h);
  font-size:clamp(1.2rem,3vw,1.9rem);
  font-weight:300;
  color:var(--white);
  margin-bottom:60px;
  letter-spacing:0.02em;
}
.kontakt-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:start;
}
.kontakt-subhead {
  font-family:var(--font-h);
  font-size:0.82rem;
  font-weight:800;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--white);
  margin-bottom:20px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.kontakt-info p { font-size:0.88rem; color:var(--gray); line-height:1.75; margin-bottom:24px; }
.contact-list { list-style:none; margin-bottom:28px; }
.contact-list li {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:0.86rem;
  color:var(--gray);
  margin-bottom:12px;
}
.contact-list a { color:var(--orange); transition:color 0.2s; }
.contact-list a:hover { color:var(--orange-l); }
.cl-icon { font-size:1rem; }
.booking-note {
  font-size:0.78rem;
  color:var(--gray-d);
  line-height:1.7;
}
.booking-note strong { color:var(--gray); font-weight:600; }

/* FORM */
.kontakt-form { display:flex; flex-direction:column; gap:14px; }
.form-group input,
.form-group textarea {
  width:100%;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  color:var(--white);
  padding:15px 18px;
  font-family:var(--font-b);
  font-size:0.88rem;
  font-weight:300;
  outline:none;
  transition:border-color 0.3s, background 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus {
  border-color:var(--orange);
  background:rgba(255,255,255,0.09);
}
.form-group textarea { resize:vertical; min-height:120px; }

/* ─── FOOTER ──────────────────────────── */
.footer {
  background:var(--bg2);
  padding:64px 0 0;
  border-top:1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:48px;
  margin-bottom:48px;
}
.footer-logo {
  font-family:var(--font-h);
  font-size:0.9rem;
  letter-spacing:0.28em;
  display:flex;
  gap:5px;
  margin-bottom:12px;
}
.footer-tagline {
  font-size:0.75rem;
  color:var(--gray-d);
  letter-spacing:0.08em;
}
.footer-head {
  font-family:var(--font-h);
  font-size:0.68rem;
  font-weight:800;
  letter-spacing:0.24em;
  text-transform:uppercase;
  color:var(--white);
  margin-bottom:20px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(232,135,30,0.3);
}
.footer-links { list-style:none; }
.footer-links li { margin-bottom:8px; }
.footer-links a {
  font-size:0.78rem;
  color:var(--gray-d);
  transition:color 0.25s, padding-left 0.25s;
  display:block;
}
.footer-links a:hover { color:var(--orange); padding-left:6px; }
.footer-contact {
  font-size:0.78rem;
  color:var(--gray-d);
  margin-bottom:6px;
  line-height:1.6;
}
.footer-socials {
  display:flex;
  gap:16px;
  margin-top:16px;
}
.footer-socials a {
  font-family:var(--font-h);
  font-size:0.65rem;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--gray-d);
  transition:color 0.25s;
}
.footer-socials a:hover { color:var(--orange); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.06);
  padding:20px 32px;
  text-align:center;
}
.footer-bottom p {
  font-size:0.7rem;
  color:var(--gray-d);
}
.footer-bottom a { color:var(--gray-d); transition:color 0.25s; }
.footer-bottom a:hover { color:var(--orange); }

/* ─── RESPONSIVE ──────────────────────── */
@media (max-width:1024px) {
  .films-grid { grid-template-columns:repeat(2,1fr); }
  .kontakt-grid { grid-template-columns:1fr; gap:40px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  body { cursor:auto; }
  .cursor, .cursor-dot { display:none; }
  a, button { cursor:pointer; }
  #nav { padding:16px 20px; }
  #nav.scrolled { padding:12px 20px; }
  .nav-links {
    display:none;
    position:fixed;
    top:0; right:0; bottom:0;
    width:min(300px,82vw);
    background:var(--bg2);
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    padding:80px 36px;
    gap:8px;
    z-index:99;
    border-left:1px solid rgba(232,135,30,0.2);
  }
  .nav-links.open { display:flex; }
  .nav-sep { display:none; }
  .nav-link { font-size:1rem; padding:10px 0; }
  .nav-socials { display:none; }
  .nav-toggle { display:flex; }
  .nav-overlay.open { display:block; }

  .tw-prefix, .tw-word { font-size:clamp(2rem,12vw,3.5rem); }
  .tw-bars { height:clamp(2rem,12vw,3.5rem); }
  .hero-subtitle { font-size:0.55rem; letter-spacing:0.22em; }

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

  /* Disable video hover on touch */
  .film-card:hover .film-img { opacity:1; transform:none; }
  .film-card:hover .film-video-wrapper { opacity:0; }
  .film-card:hover .film-overlay { opacity:1; }
  .film-card:hover .bar--top, .film-card:hover .bar--bottom { height:0; }
  .film-card:hover .film-play-ring { opacity:0; }

  .vision-pillars { grid-template-columns:1fr; gap:2px; }
  .press-grid { grid-template-columns:1fr; gap:16px; }
  .laurels-row { gap:24px; }
  .laurel { min-width:120px; padding:16px 20px; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .kontakt-lead { font-size:1.1rem; }
}
