/*
Theme Name:  Nefeli Dimakea
Theme URI:   https://nefelidimakea.com
Author:      Nefeli Dimakea
Description: Custom portfolio theme — minimal, editorial, A24-inspired.
Version:     5.0
*/

:root {
  --black:  #080808;
  --white:  #f0f0f0;
  --gray:   #a9a8a8;
  --border: rgba(240,240,240,.08);
  --font:   'Space Grotesk', sans-serif;
  --hfont:  'Helvetica Neue', Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── HEADER (transparent on top, sticky black on scroll) ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  z-index: 500;
  padding: 0 40px;
  display: flex;
  align-items: center;
  background: transparent;
  pointer-events: none;
  transition: background .35s ease;
}
.site-header > * { pointer-events: all; }
.site-header.is-sticky { background: #080808; }

/* ── MENU TRIGGER ── */
.menu-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: var(--white);
  z-index: 510;
}
.menu-trigger__lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-trigger__lines span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
}
.menu-trigger__word {
  font-family: var(--hfont);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
}

/* ── LOGO (centered in header) ── */
.hero-title {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 80px;
  z-index: 505;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  pointer-events: all;
}
.hero-title__name {
  display: block;
  font-family: var(--hfont);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.hero-title__role {
  display: block;
  font-family: var(--hfont);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .2em;
  color: var(--white);
  margin-top: 8px;
}

/* ── CLOSE BUTTON (same row as menu trigger, when menu open) ── */
.menu-close {
  position: fixed;
  top: 0;
  left: 40px;
  height: 80px;
  z-index: 600;
  display: none;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: var(--white);
}
body.menu-open .menu-close   { display: flex; }
body.menu-open .menu-trigger { opacity: 0; pointer-events: none; }

.menu-close__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.menu-close__icon::before,
.menu-close__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 20px; height: 2px;
  background: var(--white);
}
.menu-close__icon::before { transform: translateY(-50%) rotate(45deg); }
.menu-close__icon::after  { transform: translateY(-50%) rotate(-45deg); }
.menu-close__word {
  font-family: var(--hfont);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(240,240,240,.55);
}

/* ── LEFT PANEL MENU ── */
.menu-panel {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 530px;
  z-index: 250;
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  transform: translateX(-100%);
  transition: transform .55s cubic-bezier(.77,0,.175,1);
}
.menu-panel.open { transform: translateX(0); }

.panel-nav {
  list-style: none;
  flex: 1;
  margin-top: 40px;
}
.panel-nav a {
  display: block;
  font-family: var(--hfont);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.18;
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}
.panel-nav a:hover { color: var(--gray); }
.panel-nav .current-menu-item a {
  color: var(--gray);
  pointer-events: none;
}

/* ── SOCIAL ICONS ── */
.panel-social {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding-top: 24px;
  border-top: 1px solid rgba(240,240,240,.1);
}
.panel-social a {
  display: flex;
  align-items: center;
  color: rgba(240,240,240,.5);
  transition: color .2s;
  text-decoration: none;
}
.panel-social a:hover { color: var(--white); }
.panel-social svg { width: 22px; height: 22px; fill: currentColor; }
.panel-social__imdb {
  display: inline-block;
  background: rgba(240,240,240,.5);
  color: #080808;
  padding: 3px 6px;
  font-family: var(--hfont);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.02em;
  border-radius: 3px;
  line-height: 1;
  transition: background .2s;
}
.panel-social a:hover .panel-social__imdb { background: #fff; }

/* ── HERO (homepage video) ── */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.hero video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  opacity: .85;
}
.hero-showreel {
  position: absolute;
  bottom: 80px;
  left: 40px;
  z-index: 10;
  font-family: var(--hfont);
  font-size: clamp(3rem, 4.5vw, 86px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--white);
  text-decoration: none;
  transition: color .25s;
}
.hero-showreel:hover { color: var(--gray); }

/* ── INNER PAGES (default) ── */
.inner-page {
  background: #fff;
  color: #111;
  min-height: 100vh;
  padding-top: 120px;
}
.page-eyebrow {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: .75rem;
}
.page-headline {
  font-size: clamp(2.2rem,5vw,4.5rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: #111;
}

/* ── PLACEHOLDER PAGES (Films archive, Showreel, etc.) ── */
.placeholder-page {
  background: #080808;
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.placeholder-page__inner {
  text-align: center;
}
.placeholder-page__title {
  font-family: var(--hfont);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}
.placeholder-page__sub {
  font-family: var(--hfont);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(240,240,240,.5);
}

/* ── FOOTER ── */
.site-footer {
  padding: 1.25rem 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--black);
}
.footer-copy {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray);
}
.footer-copy a {
  color: inherit;
  border-bottom: 1px solid rgba(240,240,240,.2);
  transition: border-color .2s, color .2s;
}
.footer-copy a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* ─────────────────────────────
   SINGLE FILM PAGE
   ───────────────────────────── */
.film-page { background: #080808; }

/* HERO — black zone, image always full visible */
.film-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.film-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vw - 200px);
  height: calc(100vh - 200px);
  background-image: var(--film-hero-bg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* PLAY BUTTON (filled white triangle) */
.film-play {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, opacity .25s ease;
  z-index: 5;
}
.film-play:hover { transform: scale(1.08); opacity: .9; }
.film-play-icon {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 32px 0 32px 54px;
  border-color: transparent transparent transparent #ffffff;
  font-size: 0;
  line-height: 0;
}

/* VIDEO MODAL */
.film-video-modal {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.film-video-modal.open { display: flex; }
.film-video-frame {
  position: relative;
  width: 100%;
  height: 100%;
}
.film-video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.film-video-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: #f0f0f0;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}

/* BODY (white zone) */
.film-body {
  background: #fafaf8;
  color: #111;
  padding: 100px 6% 100px;
}
.film-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.film-eyebrow {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 14px;
}
.film-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: .95;
  color: #111;
  margin: 0 0 36px;
}
.film-synopsis {
  font-size: 15px;
  line-height: 1.85;
  color: #222;
  margin-bottom: 56px;
}
.film-synopsis p { margin: 0 0 1em; }
.film-synopsis p:last-child { margin-bottom: 0; }
.film-section { margin-bottom: 56px; }
.film-h {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 18px;
  font-weight: 400;
}
.film-cast {
  font-size: 15px;
  line-height: 2;
  color: #222;
}
.film-crew-line {
  font-size: 14.5px;
  line-height: 1.95;
  color: #222;
}
.film-crew-role { color: #888; }
.film-awards { margin-top: 4px; }
.film-award {
  margin-bottom: 18px;
  font-size: 14.5px;
  line-height: 1.55;
}
.film-award strong {
  display: block;
  color: #111;
  font-weight: 600;
  letter-spacing: -.005em;
}
.film-award span {
  color: #666;
  font-size: 13.5px;
}

/* RIGHT GALLERY */
.film-gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.film-gallery img {
  width: 100%;
  display: block;
}
.film-bts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* FOOT (award photo + interview) */
.film-foot {
  max-width: 1400px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 0.7fr 2.5fr;
  gap: 32px;
  align-items: center;
}
.film-foot-img {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
}
.film-foot-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.film-foot-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #080808;
}
.film-foot-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* BADGES */
.film-badges {
  max-width: 1400px;
  margin: 56px auto 0;
  padding-top: 36px;
  border-top: .5px solid rgba(0,0,0,.12);
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
}
.film-badge {
  padding: 11px 20px;
  border: .5px solid rgba(0,0,0,.2);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  border-radius: 2px;
  transition: background .2s ease, color .2s ease;
}
.film-badge:hover { background: #111; color: #fff; }
.film-badge-imdb {
  background: #f5c518;
  border-color: #f5c518;
  color: #000;
  font-weight: 700;
}
.film-badge-imdb:hover { background: #000; color: #f5c518; }

/* ─────────────────────────────
   FILM PAGE — NEXT / PREVIOUS NAV
   ───────────────────────────── */
.film-nav {
  max-width: 1400px;
  margin: 50px auto 0;
  padding-top: 28px;
  border-top: .5px solid rgba(0,0,0,.08);
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}
.film-nav-link {
  font-family: var(--hfont);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(0,0,0,.4);
  text-decoration: none;
  transition: color .2s ease;
}
.film-nav-link:hover { color: rgba(0,0,0,.85); }

@media (max-width: 768px) {
  .film-nav {
    margin: 36px auto 0;
    padding: 22px 24px 0;
    gap: 20px;
  }
  .film-nav-link {
    font-size: 10px;
    letter-spacing: .18em;
  }
}

/* ─────────────────────────────
   ABOUT PAGE
   ───────────────────────────── */

/* Header solid black from top */
.page-template-page-about .site-header { background: #080808; }

.about-page {
  background: #fafaf8;
  color: #111;
  min-height: 100vh;
  padding: 140px 6% 120px;
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* PORTRAIT — left */
.about-portrait {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #080808;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TEXT — right */
.about-text { max-width: 100%; }

.about-eyebrow {
  font-family: var(--hfont);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
}
.about-headline {
  font-family: var(--hfont);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: .95;
  color: #111;
  margin: 0 0 14px;
}
.about-role {
  font-family: var(--hfont);
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 50px;
}
.about-body {
  font-size: 16px;
  line-height: 1.85;
  color: #222;
}
.about-body p { margin: 0 0 1.4em; }
.about-body p:last-child { margin-bottom: 0; }
.about-lead {
  font-size: 21px !important;
  line-height: 1.5 !important;
  font-weight: 400;
  color: #111 !important;
  margin-bottom: 1.6em !important;
  letter-spacing: -.005em;
}
.about-body em { font-style: italic; }

.about-divider {
  width: 60px;
  height: 1px;
  background: rgba(0,0,0,.2);
  margin: 50px 0;
}
.about-section { margin-bottom: 50px; }
.about-h {
  font-family: var(--hfont);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 18px;
  font-weight: 400;
}
.about-credits {
  font-size: 15px;
  line-height: 1.85;
  color: #222;
  margin: 0;
}
.about-credits a {
  color: #111;
  border-bottom: 1px solid rgba(0,0,0,.3);
  transition: border-color .2s;
}
.about-credits a:hover { border-bottom-color: #111; }

.about-cta {
  margin-top: 60px;
  padding-top: 36px;
  border-top: .5px solid rgba(0,0,0,.12);
}
.about-cta-link {
  font-family: var(--hfont);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #111;
  font-weight: 700;
  transition: opacity .2s;
}
.about-cta-link:hover { opacity: .6; }

/* ─────────────────────────────
   FILMS ARCHIVE PAGE
   ───────────────────────────── */
.films-page {
  background: #080808;
  margin: 0;
  padding: 0;
}

/* Each film = 100vw × 100vh full-screen card */
.film-card {
  position: relative;
  display: block;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #080808;
  text-decoration: none;
  color: #f0f0f0;
}

/* Image fills the screen */
.film-card-img,
.film-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.film-card-video {
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.film-card.is-hover .film-card-video { opacity: 1; }

/* Subtle vignette so text reads */
.film-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Title block — centered */
.film-card-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  pointer-events: none;
  transition: opacity .35s ease, transform .5s ease;
}
.film-card-title {
  font-family: var(--hfont);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: #f0f0f0;
  text-transform: none;
}
.film-card-cat {
  font-family: var(--hfont);
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(240,240,240,.75);
  margin-top: 18px;
}

/* Hover effect — title slightly lifts */
.film-card:hover .film-card-overlay {
  transform: translate(-50%, -55%);
}

/* ─────────────────────────────
   SHOWREEL PAGE
   ───────────────────────────── */
.showreel-page { background: #080808; }

.showreel-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.showreel-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vw - 200px);
  height: calc(100vh - 200px);
  background-image: url('https://nefelidimakea.com/wp-content/uploads/2026/04/Showreel-page-main-photo.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* ─────────────────────────────
   CREDITS PAGE
   ───────────────────────────── */
body.page-template-page-credits-php .site-header,
body.page-template-page-credits-php .site-header.is-sticky { background: #080808 !important; }

.credits-page {
  background: #fafaf8;
  color: #111;
  min-height: 100vh;
  padding: 140px 6% 120px;
}
.credits-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* HEADER */
.credits-header {
  margin-bottom: 100px;
  padding-bottom: 50px;
  border-bottom: .5px solid rgba(0,0,0,.12);
}
.credits-eyebrow {
  font-family: var(--hfont);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 18px;
}
.credits-headline {
  font-family: var(--hfont);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: .95;
  color: #111;
  margin: 0;
}

/* SECTIONS */
.credits-section { margin-bottom: 90px; }
.credits-section:last-child { margin-bottom: 0; }
.credits-h {
  font-family: var(--hfont);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #888;
  font-weight: 400;
  margin: 0 0 30px;
  padding-bottom: 16px;
  border-bottom: .5px solid rgba(0,0,0,.12);
}

/* YEAR GROUP HEADING (inside Credits) */
.credit-year-group {
  font-family: var(--hfont);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #111;
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: .5px solid rgba(0,0,0,.06);
}
.credit-year-group:first-child { margin-top: 0; }

/* ROW */
.credit-row {
  display: grid;
  grid-template-columns: 140px 1fr 2fr 24px;
  gap: 24px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: .5px solid rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;
  transition: background .2s ease, padding .2s ease;
}
.credit-row:last-child { border-bottom: none; }

.credit-year {
  font-family: var(--hfont);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .15em;
  color: #888;
}
.credit-role {
  font-family: var(--hfont);
  font-size: 14px;
  font-weight: 600;
  color: #111;
  letter-spacing: -.005em;
}
.credit-project {
  font-family: var(--hfont);
  font-size: 14.5px;
  font-weight: 400;
  color: #222;
  letter-spacing: -.005em;
}
.credit-meta {
  display: block;
  font-size: 12.5px;
  color: #888;
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0;
}
.credit-arrow {
  font-family: var(--hfont);
  font-size: 16px;
  color: #888;
  text-align: right;
  transition: color .2s ease, transform .2s ease;
}

/* Hover state for clickable rows */
.credit-link { cursor: pointer; }
.credit-link:hover {
  background: rgba(0,0,0,.025);
  padding-left: 12px;
  padding-right: 12px;
}
.credit-link:hover .credit-arrow {
  color: #111;
  transform: translate(2px, -2px);
}
.credit-link:hover .credit-project { color: #111; }

/* In Experience section, year column uses range — center it nicely */
.credits-section:first-of-type .credit-year { font-weight: 500; color: #111; }

/* ─────────────────────────────
   CONTACT PAGE
   ───────────────────────────── */
body.page-template-page-contact-php .site-header,
body.page-template-page-contact-php .site-header.is-sticky { background: #080808 !important; }

.contact-page {
  background: #080808;
  color: var(--white);
  min-height: 100vh;
  padding: 140px 6% 120px;
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.contact-header {
  margin-bottom: 80px;
  padding-bottom: 50px;
  border-bottom: .5px solid rgba(240,240,240,.1);
}
.contact-eyebrow {
  font-family: var(--hfont);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(240,240,240,.5);
  margin-bottom: 18px;
}
.contact-headline {
  font-family: var(--hfont);
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: .95;
  color: var(--white);
  margin: 0 0 18px;
}
.contact-sub {
  font-family: var(--hfont);
  font-size: 16px;
  color: rgba(240,240,240,.6);
  margin: 0;
  letter-spacing: -.005em;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

/* LEFT INFO */
.contact-info { padding-top: 6px; }
.contact-block { margin-bottom: 44px; }
.contact-block:last-child { margin-bottom: 0; }
.contact-h {
  font-family: var(--hfont);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(240,240,240,.5);
  margin-bottom: 14px;
  font-weight: 400;
}
.contact-email {
  font-family: var(--hfont);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.01em;
  border-bottom: 1px solid rgba(240,240,240,.3);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.contact-email:hover { border-bottom-color: var(--white); }
.contact-rep {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(240,240,240,.85);
  margin: 0;
  letter-spacing: -.005em;
}
.contact-rep a {
  color: var(--white);
  border-bottom: 1px solid rgba(240,240,240,.3);
  transition: border-color .2s;
}
.contact-rep a:hover { border-bottom-color: var(--white); }

.contact-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.contact-icons a {
  display: flex;
  align-items: center;
  color: rgba(240,240,240,.55);
  transition: color .2s;
  text-decoration: none;
}
.contact-icons a:hover { color: var(--white); }
.contact-icons svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.contact-icons__imdb {
  display: inline-block;
  background: rgba(240,240,240,.55);
  color: #080808;
  padding: 3px 6px;
  font-family: var(--hfont);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.02em;
  border-radius: 3px;
  line-height: 1;
  transition: background .2s;
}
.contact-icons a:hover .contact-icons__imdb { background: #fff; }

/* RIGHT FORM */
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.contact-field { display: flex; flex-direction: column; gap: 8px; }
.contact-field label {
  font-family: var(--hfont);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(240,240,240,.5);
  font-weight: 400;
}
.contact-field input,
.contact-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(240,240,240,.2);
  padding: 8px 0;
  color: var(--white);
  font-family: var(--hfont);
  font-size: 15.5px;
  font-weight: 400;
  letter-spacing: -.005em;
  resize: none;
  transition: border-color .2s;
  outline: none;
}
.contact-field input:focus,
.contact-field textarea:focus { border-bottom-color: var(--white); }
.contact-field textarea { line-height: 1.6; }

.contact-submit {
  align-self: flex-start;
  margin-top: 16px;
  background: transparent;
  border: 1px solid rgba(240,240,240,.5);
  padding: 14px 28px;
  font-family: var(--hfont);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.contact-submit:hover { background: var(--white); color: #080808; border-color: var(--white); }
.contact-submit:disabled { opacity: .4; cursor: wait; }

.contact-status {
  margin-top: 16px;
  font-family: var(--hfont);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.contact-status.is-success { color: #9adfb1; }
.contact-status.is-error   { color: #ef9a9a; }

/* ─────────────────────────────
   MOBILE — BATCH 1: Header & Menu
   ───────────────────────────── */
@media (max-width: 768px) {

  /* Header — 55px height, solid black from top */
  .site-header {
    height: 55px;
    padding: 0 20px;
    background: #080808;
  }

  /* Hide MENU / CLOSE words on mobile */
  .menu-hide-mobile { display: none !important; }

  /* Logo — smaller, centered, fits 55px header */
  .hero-title { height: 55px; }
  .hero-title__name {
    font-size: 13px;
    letter-spacing: .22em;
  }
  .hero-title__role {
    font-size: 9.5px;
    letter-spacing: .18em;
    margin-top: 4px;
  }

  /* Menu trigger — same row as 55px header */
  .menu-trigger__lines { gap: 5px; }
  .menu-trigger__lines span { width: 22px; }

  /* Close button — full alignment with menu trigger position */
  .menu-close {
    height: 55px;
    left: 20px;
  }
  .menu-close__icon { width: 18px; height: 18px; }
  .menu-close__icon::before,
  .menu-close__icon::after { width: 18px; }

  /* Menu panel — full width, smaller text, tighter padding */
  .menu-panel {
    width: 100vw;
    padding: 55px 28px 28px;
  }
  .panel-nav { margin-top: 24px; }
  .panel-nav a {
    font-size: 44px;
    line-height: 1.25;
  }

  /* Social icons row — slightly tighter */
  .panel-social {
    gap: 20px;
    padding-top: 20px;
  }
  .panel-social svg { width: 20px; height: 20px; }

}

/* ─────────────────────────────
   MOBILE — BATCH 2: Homepage hero video
   ───────────────────────────── */
@media (max-width: 768px) {

  /* iOS Safari/Chrome — use dynamic viewport height */
  .hero {
    height: 100vh;        /* fallback */
    height: 100svh;       /* small viewport — never overflows under URL bar */
    height: 100dvh;       /* dynamic — adjusts as URL bar appears/disappears */
  }

  /* Video — fill mobile portrait without ugly stretch */
  .hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Showreel link — repositioned so it never gets cut */
  .hero-showreel {
    bottom: 60px;
    left: 24px;
    font-size: clamp(48px, 14vw, 72px);
    line-height: .95;
  }

}

/* ─────────────────────────────
   MOBILE — BATCH 3: Films archive
   ───────────────────────────── */
@media (max-width: 768px) {

  /* Each film fills mobile viewport correctly */
  .film-card {
    height: 100vh;
    height: 100svh;
    height: 100dvh;
  }

  /* Title scaled down for mobile */
  .film-card-title {
    font-size: clamp(40px, 11vw, 64px);
  }
  .film-card-cat {
    font-size: 11px;
    letter-spacing: .25em;
    margin-top: 14px;
  }

}

/* ─────────────────────────────
   MOBILE — BATCH 4: Single Film page
   ───────────────────────────── */
@media (max-width: 768px) {

  /* HERO — keep image fully visible with smaller margins */
  .film-hero {
    height: 100vh;
    height: 100svh;
    height: 100dvh;
  }
  .film-hero::before {
    width: calc(100vw - 40px);
    height: calc(100vh - 200px);
    height: calc(100svh - 200px);
    height: calc(100dvh - 200px);
  }

  /* Play button — slightly smaller on mobile */
  .film-play { width: 70px; height: 70px; }
  .film-play-icon {
    border-width: 24px 0 24px 40px;
  }

  /* WHITE BODY — single column, tighter padding */
  .film-body { padding: 60px 24px 60px; }
  .film-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* TITLE & TEXT — scale down */
  .film-title {
    font-size: 36px;
    margin-bottom: 24px;
  }
  .film-eyebrow { font-size: 10px; margin-bottom: 10px; }
  .film-synopsis { font-size: 14.5px; margin-bottom: 40px; }
  .film-section { margin-bottom: 40px; }

  /* GALLERY — stays single column on mobile (already does because parent is single col) */
  .film-bts-row { gap: 12px; }
  .film-gallery { gap: 12px; }

  /* FOOT — stack vertically (award photo above interview) */
  .film-foot {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 50px auto 0;
  }
  .film-foot-img {
    max-width: 240px;
    margin: 0 auto;
  }

  /* BADGES — wrap nicely */
  .film-badges {
    flex-wrap: wrap;
    gap: 14px;
    margin: 40px auto 0;
    padding-top: 28px;
  }
  .film-badge {
    padding: 10px 18px;
    font-size: 10px;
  }

  /* MODAL — full-screen video iframe */
  .film-video-close {
    top: 16px;
    right: 20px;
    font-size: 32px;
  }

}

/* ─────────────────────────────
   MOBILE LANDSCAPE — Single Film hero margins
   ───────────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  .film-hero::before {
    width: calc(100vw - 80px);
    height: calc(100vh - 60px);
  }
}

/* ─────────────────────────────
   MOBILE — BATCH 5: Inner pages
   ───────────────────────────── */
@media (max-width: 768px) {

  /* ─── ABOUT ─── */
  .about-page { padding: 90px 40px 60px; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Order: text first, then portrait (per request) */
  .about-text   { order: 1; }
  .about-portrait { order: 2; }

  /* Portrait — narrower, with side margins (40px on each side) */
  .about-portrait {
    width: calc(100% - 80px);
    margin: 0 auto;
    aspect-ratio: 4/5;
  }

  .about-headline { font-size: 36px; }
  .about-role { margin-bottom: 30px; font-size: 12px; }
  .about-body { font-size: 15.5px; }
  .about-lead { font-size: 19px !important; }
  .about-divider { margin: 36px 0; width: 50px; }
  .about-cta { margin-top: 40px; padding-top: 28px; }

  /* ─── CREDITS ─── */
  .credits-page { padding: 90px 24px 60px; }
  .credits-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
  }
  .credits-headline { font-size: 32px; line-height: 1.05; }
  .credits-section { margin-bottom: 60px; }
  .credits-h {
    font-size: 13px;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .credits-section { margin-bottom: 50px; }

  /* Tighter vertical credit row layout */
  .credit-row {
    grid-template-columns: 1fr 24px;
    grid-template-areas:
      "role arrow"
      "project arrow";
    gap: 6px 12px;
    padding: 14px 0;
  }
  .credit-year { display: none; }      /* hidden — year is now header above */
  .credit-role {
    grid-area: role;
    font-size: 13.5px;
    font-weight: 600;
    color: #111;
  }
  .credit-project {
    grid-area: project;
    font-size: 14px;
  }
  .credit-meta {
    font-size: 11.5px;
    margin-top: 3px;
  }
  .credit-arrow {
    grid-area: arrow;
    align-self: center;
    font-size: 14px;
  }
  .credit-link:hover {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }

  /* Year-group header (the "2026 / 2025 / 2024" chunks) — tighter */
  .credit-year-group {
    margin: 18px 0 6px;
    font-size: 14px;
    letter-spacing: .2em;
  }

  /* Experience block — show date inline as small meta */
  .credits-section:first-of-type .credit-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "role"
      "project";
  }
  .credits-section:first-of-type .credit-row::before {
    content: attr(data-year);
  }

  /* ─── CONTACT ─── */
  .contact-page { padding: 90px 24px 60px; }
  .contact-header {
    margin-bottom: 40px;
    padding-bottom: 28px;
  }
  .contact-headline { font-size: 38px; }
  .contact-sub { font-size: 14.5px; }

  /* Single column — form first, then info */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-form-wrap { order: 1; }
  .contact-info { order: 2; padding-top: 0; }

  .contact-block { margin-bottom: 32px; }
  .contact-email { font-size: 17px; }
  .contact-rep { font-size: 14px; }

  /* ─── SHOWREEL ─── */
  .showreel-hero {
    height: 100vh;
    height: 100svh;
    height: 100dvh;
  }
  .showreel-hero::before {
    width: calc(100vw - 40px);
    height: calc(100vh - 200px);
    height: calc(100svh - 200px);
    height: calc(100dvh - 200px);
  }
}

/* Showreel landscape — same logic as single film */
@media (max-height: 500px) and (orientation: landscape) {
  .showreel-hero::before {
    width: calc(100vw - 80px);
    height: calc(100vh - 60px);
  }
}

/* ─────────────────────────────
   FILMS — Scroll hint indicator
   ───────────────────────────── */
.films-scroll-hint {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(240,240,240,.7);
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s ease, transform .6s ease;
}
.films-scroll-hint.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.films-scroll-hint.is-hidden {
  opacity: 0;
  transform: translateY(8px);
}
.films-scroll-hint__text {
  font-family: var(--hfont);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 400;
}
.films-scroll-hint__arrow {
  font-family: var(--hfont);
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
  animation: scrollHintBounce 1.8s ease-in-out infinite;
}
@keyframes scrollHintBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* Mobile — smaller, lower right */
@media (max-width: 768px) {
  .films-scroll-hint {
    bottom: 22px;
    right: 22px;
    gap: 8px;
  }
  .films-scroll-hint__text {
    font-size: 10px;
    letter-spacing: .22em;
  }
  .films-scroll-hint__arrow {
    font-size: 14px;
  }
}

/* ─────────────────────────────
   LEGAL PAGES (Privacy etc.)
   ───────────────────────────── */
body.page-template-page-privacy-php .site-header,
body.page-template-page-privacy-php .site-header.is-sticky { background: #080808 !important; }

.legal-page {
  background: #fafaf8;
  color: #111;
  min-height: 100vh;
  padding: 140px 6% 120px;
}
.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}
.legal-header {
  margin-bottom: 60px;
  padding-bottom: 36px;
  border-bottom: .5px solid rgba(0,0,0,.12);
}
.legal-eyebrow {
  font-family: var(--hfont);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}
.legal-headline {
  font-family: var(--hfont);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: .95;
  color: #111;
  margin: 0 0 14px;
}
.legal-updated {
  font-family: var(--hfont);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #888;
  margin: 0;
}
.legal-body {
  font-size: 15.5px;
  line-height: 1.85;
  color: #222;
}
.legal-body p { margin: 0 0 1.4em; }
.legal-lead {
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: #111 !important;
  margin-bottom: 2em !important;
}
.legal-body h2 {
  font-family: var(--hfont);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #888;
  font-weight: 400;
  margin: 36px 0 14px;
}
.legal-body a {
  color: #111;
  border-bottom: 1px solid rgba(0,0,0,.3);
  transition: border-color .2s;
}
.legal-body a:hover { border-bottom-color: #111; }

@media (max-width: 768px) {
  .legal-page { padding: 90px 24px 60px; }
  .legal-headline { font-size: 30px; }
  .legal-body { font-size: 14.5px; }
  .legal-lead { font-size: 16px !important; }
}

/* Critical fix — header buttons must remain clickable */
.site-header,
.menu-trigger,
.menu-trigger * {
  pointer-events: auto !important;
}

/* ─────────────────────────────
   FILMS — Outro paragraph (GEO/SEO)
   1120px centered block, 50px vertical padding
   ───────────────────────────── */
body .films-outro {
  display: block;
  background: #080808;
  color: #f0f0f0;
  width: 100%;
  padding: 50px 0;
  border-top: 1px solid rgba(240,240,240,.08);
  box-sizing: border-box;
}
body .films-outro .films-outro__inner {
  max-width: 1120px !important;
  width: 100%;
  margin: 0 auto !important;
  padding: 0;
  box-sizing: border-box;
}
body .films-outro p {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: .02em;
  color: #f0f0f0;
  opacity: .78;
  max-width: none !important;
  margin: 0;
  font-weight: 300;
}
body .films-outro p strong { font-weight: 500; opacity: 1; }
body .films-outro p em     { font-style: italic; opacity: 1; }

/* Narrow viewports — keep block from touching screen edges */
@media (max-width: 1199px) {
  body .films-outro .films-outro__inner { padding: 0 24px; }
}
@media (max-width: 768px) {
  body .films-outro    { padding: 40px 0; }
  body .films-outro p  { font-size: 13px; line-height: 1.75; }
}

/* ─────────────────────────────
   ABOUT — Real H1 (Nefeli Dimakea) + subtitle
   Visual hierarchy intentionally subordinate to "About" eyebrow
   ───────────────────────────── */
.about-name {
  font-family: var(--hfont);
  font-size: 14pt;
  font-weight: 500;
  letter-spacing: .01em;
  color: #111;
  margin: 0 0 6px;
  line-height: 1.3;
}
.about-subtitle {
  font-family: var(--hfont);
  font-size: 12pt;
  font-weight: 400;
  color: #666;
  letter-spacing: .02em;
  margin: 0 0 30px;
  line-height: 1.4;
}