/* ============================================================
   asha — production company site
   Tokens
   ============================================================ */
:root{
  --black:        #0b0b0d;
  --near-black:   #111217;
  --panel:        rgba(10,10,12,0.58);
  --red:          #e11d2a;
  --red-dim:      #a3151f;
  --white:        #f6f5f2;
  --grey:         #b9b8b6;
  --grey-dim:     #7c7b7a;
  --line:         rgba(246,245,242,0.14);

  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container:    1240px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3{ margin:0; font-family:var(--font-display); }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; }

::selection{ background:var(--red); color:var(--white); }

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

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--white);
  border-bottom:1px solid rgba(0,0,0,0.08);
}
.site-header__inner{
  max-width:var(--container);
  margin:0 auto;
  padding:52px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{
  display:block;
}
.logo img{
  height:34px;
  width:auto;
  display:block;
}
.nav{
  display:flex;
  gap:36px;
}
.nav a{
  color:var(--black);
  font-size:13px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  padding-bottom:4px;
  border-bottom:2px solid transparent;
  transition:border-color .2s ease, color .2s ease;
}
.nav a:hover{ border-color:var(--red); }
.nav a.is-active{ border-color:var(--red); color:var(--red); }

.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.nav-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:var(--black);
  margin:5px 0;
}

@media (max-width:760px){
  .nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:var(--white);
    flex-direction:column;
    gap:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .25s ease;
    border-bottom:1px solid rgba(0,0,0,0.08);
  }
  .nav.is-open{ max-height:260px; }
  .nav a{
    padding:16px 32px;
    width:100%;
    border-bottom:1px solid rgba(0,0,0,0.06);
  }
  .nav-toggle{ display:block; }
}

/* ============================================================
   Page intro (used on development / contact)
   ============================================================ */
.page-intro{
  max-width:var(--container);
  margin:0 auto;
  padding:88px 32px 40px;
}
.page-intro__eyebrow{
  color:var(--red);
  font-size:12px;
  font-weight:700;
  letter-spacing:0.22em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.page-intro h1{
  font-style:italic;
  font-size:clamp(40px,6vw,72px);
  line-height:0.98;
  letter-spacing:-1px;
}
.page-intro p{
  margin-top:18px;
  max-width:560px;
  color:var(--grey);
  font-size:16px;
}

/* ============================================================
   Film block (completed films — full-bleed hero style)
   ============================================================ */
.film{
  position:relative;
  min-height:760px;
  display:flex;
  align-items:center;
  background-color:var(--near-black);
  border-top:1px solid rgba(255,255,255,0.06);
  overflow:hidden;
}
.film__bg{
  position:absolute;
  inset:0;
  z-index:0;
  background-size:cover;
  background-position:center;
}
.film__bg--blur{
  filter:blur(38px) brightness(0.48) saturate(1.05);
  transform:scale(1.2);
}
.film::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg, rgba(6,6,8,0.32) 0%, rgba(6,6,8,0.18) 40%, rgba(6,6,8,0.48) 100%);
}
.film__inner{
  position:relative;
  z-index:2;
  max-width:var(--container);
  width:100%;
  margin:0 auto;
  padding:64px 32px;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:end;
  gap:40px;
}
.film__title-block{
  align-self:center;
}
.film__title{
  font-style:italic;
  font-size:clamp(44px,6.4vw,88px);
  line-height:0.95;
  letter-spacing:-1.5px;
  text-transform:uppercase;
  text-shadow:0 2px 18px rgba(0,0,0,0.55);
}
.film__meta{
  margin-top:16px;
  font-size:13px;
  font-weight:500;
  letter-spacing:0.02em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.82);
  text-shadow:0 1px 10px rgba(0,0,0,0.5);
}

.film__card{
  width:315px;
  max-width:88vw;
  background:transparent;
  padding:0;
  border:none;
}
.film__poster{
  width:110px;
  aspect-ratio:2/3;
  object-fit:cover;
  background:linear-gradient(160deg,#26262c,#0c0c0e);
  margin-bottom:22px;
  border:none;
}
.film__crew{
  font-size:14px;
  color:rgba(255,255,255,0.94);
  margin-bottom:18px;
  text-shadow:0 1px 10px rgba(0,0,0,0.5);
}
.film__crew div{ margin-bottom:3px; }
.film__crew span{ color:inherit; font-weight:400; }

.film__synopsis{
  font-style:italic;
  font-weight:700;
  font-size:14px;
  line-height:1.55;
  color:#fff;
  margin-bottom:20px;
  max-width:320px;
  text-shadow:0 1px 10px rgba(0,0,0,0.5);
}

.film__festivals{
  margin-bottom:20px;
}
.film__festivals-label{
  font-size:14px;
  font-weight:400;
  letter-spacing:0;
  text-transform:none;
  color:rgba(255,255,255,0.94);
  margin-bottom:4px;
  text-shadow:0 1px 10px rgba(0,0,0,0.5);
}
.film__festivals ul li{
  font-size:14px;
  color:rgba(255,255,255,0.94);
  padding:1px 0;
  text-shadow:0 1px 10px rgba(0,0,0,0.5);
}

.btn-screener{
  display:block;
  width:100%;
  text-align:left;
  background:var(--red);
  color:var(--white);
  font-size:14px;
  font-weight:500;
  letter-spacing:0;
  padding:12px 16px;
  border:none;
  cursor:pointer;
  transition:background .2s ease;
}
.btn-screener:hover{ background:var(--red-dim); }

@media (max-width:820px){
  .film__inner{
    grid-template-columns:1fr;
  }
  .film{ min-height:0; padding-top:20px; }
  .film__card{ width:100%; }
}

.film__bg--pattern{
  background-image:
    radial-gradient(circle at 20% 20%, rgba(225,29,42,0.10), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05), transparent 40%);
  background-color:#0e0e11;
}

.section-divider{
  max-width:var(--container);
  margin:0 auto;
  padding:56px 32px 8px;
  border-top:1px solid rgba(255,255,255,0.08);
}
.section-divider__eyebrow{
  color:var(--red);
  font-size:12px;
  font-weight:700;
  letter-spacing:0.22em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.section-divider h2{
  font-style:italic;
  font-size:clamp(28px,4vw,40px);
  letter-spacing:-0.5px;
}

/* ============================================================
   Development page — card grid
   ============================================================ */
.dev-grid{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px 100px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
  gap:1px;
  background:var(--line);
}
.dev-card{
  background:var(--black);
  padding:34px 30px;
  display:flex;
  flex-direction:column;
}
.dev-card__status{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--red);
  margin-bottom:14px;
}
.dev-card__still{
  width:100%;
  max-width:280px;
  height:auto;
  display:block;
  border:1px solid var(--line);
  margin-bottom:20px;
}
.dev-card h3{
  font-style:italic;
  font-size:26px;
  margin-bottom:6px;
}
.dev-card__format{
  font-size:12px;
  color:var(--grey-dim);
  letter-spacing:0.08em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.dev-card__logline{
  color:var(--grey);
  font-size:14.5px;
  flex-grow:1;
}
.dev-card__foot{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--line);
  font-size:12.5px;
  color:var(--grey-dim);
}

/* ============================================================
   Contact page
   ============================================================ */
.contact{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px 110px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
}
@media (max-width:820px){
  .contact{ grid-template-columns:1fr; gap:50px; }
}

.contact-info dl{ margin-top:6px; }
.contact-block{ margin-bottom:34px; }
.contact-block__label{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--red);
  margin-bottom:8px;
}
.contact-block__value{
  font-size:17px;
  color:var(--white);
}
.contact-block__value a{ border-bottom:1px solid var(--line); }
.contact-block__value a:hover{ border-color:var(--red); color:var(--red); }

.field{
  margin-bottom:20px;
}
.field label{
  display:block;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--grey);
  margin-bottom:8px;
}
.field input,
.field select,
.field textarea{
  width:100%;
  background:transparent;
  border:1px solid var(--line);
  color:var(--white);
  padding:12px 14px;
  font-family:var(--font-body);
  font-size:14.5px;
}
.field textarea{ resize:vertical; min-height:120px; }
.field input:focus, .field textarea:focus, .field select:focus{
  border-color:var(--red);
  outline:none;
}
.form-submit{
  background:var(--red);
  color:var(--white);
  border:none;
  padding:14px 30px;
  font-size:13.5px;
  font-weight:700;
  letter-spacing:0.04em;
  cursor:pointer;
  transition:background .2s ease;
}
.form-submit:hover{ background:var(--red-dim); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:34px 32px;
}
.site-footer__inner{
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  color:var(--grey-dim);
  font-size:12.5px;
  letter-spacing:0.04em;
}
.site-footer a:hover{ color:var(--red); }

/* ============================================================
   Modal (screener request)
   ============================================================ */
.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.72);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:100;
  padding:24px;
}
.modal-overlay.is-open{ display:flex; }
.modal{
  background:var(--near-black);
  border:1px solid var(--line);
  max-width:440px;
  width:100%;
  padding:34px;
  position:relative;
}
.modal__close{
  position:absolute;
  top:14px;
  right:14px;
  background:none;
  border:none;
  color:var(--grey);
  font-size:22px;
  cursor:pointer;
  line-height:1;
  padding:6px;
}
.modal__close:hover{ color:var(--red); }
.modal h3{
  font-style:italic;
  font-size:26px;
  margin-bottom:6px;
}
.modal p{
  color:var(--grey);
  font-size:14px;
  margin-bottom:22px;
}
