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

html {
  scroll-behavior: smooth;
}

body {
  background: #090a12;
  color: #e9dce5;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-dark {
  background:
    radial-gradient(circle at 80% 10%, rgba(71, 38, 75, .14), transparent 26%),
    #090a12;
}

/* NAV */

.topbar {
  min-height: 90px;
  padding: 30px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(232, 202, 218, .08);
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: .17em;
  text-decoration: none;
  color: #e7c9d9;
}

nav {
  display: flex;
  gap: 31px;
}

nav a {
  text-decoration: none;
  font-size: 9px;
  letter-spacing: .24em;
  color: rgba(235,218,228,.60);
  padding-bottom: 7px;
}

nav a.active {
  color: #e8cbd9;
  border-bottom: 1px solid rgba(232, 203, 217, .7);
}

.eyebrow {
  font-size: 9px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(235, 218, 228, .50);
}

/* FILMS INTRO */

.films-intro {
  min-height: 68vh;
  padding: 78px 5vw 95px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
  align-items: center;
}

.films-intro h1 {
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(80px, 11vw, 165px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.055em;
  color: #e7c8d8;
}

.intro-copy {
  max-width: 460px;
  margin-top: 48px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.6;
  color: rgba(239,225,233,.78);
}

.films-intro-photo {
  height: min(58vh, 580px);
  overflow: hidden;
}

.films-intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.films-grid-wrap {
  padding: 10px 5vw 145px;
}

.films-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 82px 30px;
}

.film-image {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.film-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.film-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8,6,12,0);
  transition: background .3s ease;
}

.hover-more {
  position: absolute;
  z-index: 3;
  left: 22px;
  bottom: 18px;
  opacity: 0;
  transform: translateY(7px);
  font-size: 9px;
  letter-spacing: .3em;
  color: #f0dbe6;
  transition: opacity .3s ease, transform .3s ease;
}

@media (hover:hover) and (pointer:fine) {
  .film-image:hover::after {
    background: rgba(7,5,10,.43);
  }

  .film-image:hover img {
    transform: scale(1.025);
  }

  .film-image:hover .hover-more {
    opacity: 1;
    transform: translateY(0);
  }
}

.film-card h2 {
  margin-top: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.18;
  color: #e7cad9;
}

.film-card h2 span {
  font-size: 14px;
  opacity: .58;
}

.film-card p {
  margin-top: 11px;
  font-size: 9px;
  line-height: 1.65;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(235,220,230,.52);
}

/* GENERIC EDITORIAL HERO */

.editorial-hero {
  padding: 75px 5vw 65px;
}

.editorial-hero h1 {
  margin-top: 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 9vw, 145px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.04em;
  color: #e5c7d6;
}

.subtitle {
  margin-top: 25px;
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(235,218,228,.60);
}

/* COLLABORATION PAGE */

.collaboration-page {
  padding-bottom: 130px;
}

.roles-grid-editorial {
  padding: 10px 3.5vw 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 22px;
}

.role-image {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #121116;
}

.role-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.role-number {
  display: block;
  margin-top: 22px;
  font-size: 9px;
  letter-spacing: .34em;
  color: rgba(232, 202, 218, .50);
}

.role-card h2 {
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.1vw, 33px);
  font-weight: 400;
  line-height: 1;
  color: #e2c4d3;
}

.role-card p {
  margin-top: 16px;
  max-width: 270px;
  font-size: 11px;
  line-height: 1.7;
  color: rgba(236,220,228,.60);
}

.editorial-projects {
  margin: 130px 5vw 0;
  padding-top: 55px;
  border-top: 1px solid rgba(232,202,218,.14);
  display: grid;
  grid-template-columns: .55fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.selected-projects-title h2 {
  margin-top: 15px;
  max-width: 270px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 400;
  line-height: .98;
  color: #e4c6d5;
}

.project-video {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}

.project-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card h3 {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.3;
  color: #e4c8d6;
}

.project-card p {
  margin-top: 10px;
  font-size: 9px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(235,218,228,.50);
}

/* FESTIVAL PAGE */

.festival-page {
  padding-bottom: 145px;
}

.festival-list {
  padding: 0 5vw;
}

.festival-entry {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 7vw;
  align-items: center;
}

.festival-entry + .festival-entry {
  margin-top: 120px;
  padding-top: 100px;
  border-top: 1px solid rgba(232,202,218,.13);
}

.festival-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.festival-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.festival-year {
  font-size: 10px;
  letter-spacing: .35em;
  color: #b692a6;
}

.festival-info h2 {
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.7vw, 70px);
  font-weight: 400;
  line-height: .98;
  color: #e5c6d6;
}

.festival-role {
  margin-top: 22px;
  font-size: 10px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(235,218,228,.70);
}

.festival-description {
  max-width: 560px;
  margin-top: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(239,225,233,.72);
}

.discover-label {
  margin-top: 40px;
  font-size: 8px;
  letter-spacing: .36em;
  color: rgba(235,218,228,.46);
}

.external-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.external-links a {
  min-height: 52px;
  padding: 9px 18px 9px 9px;
  border: 1px solid rgba(229,199,214,.25);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 8px;
  letter-spacing: .24em;
}

.external-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(229,199,214,.32);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* CONTACT PAGE */

.contact-page {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 6vw;
}

.contact-center {
  width: min(520px, 100%);
  text-align: center;
}

.contact-small-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: .23em;
  color: #e3c5d4;
}

.contact-mini-links {
  margin-top: 36px;
  border-top: 1px solid rgba(232,202,218,.15);
}

.contact-mini-links a {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-bottom: 1px solid rgba(232,202,218,.15);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(239,222,231,.72);
}

.contact-mini-links img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.mail-mini {
  font-size: 18px;
}

/* DETAIL FILM */

.film-detail {
  padding: 65px 6vw 130px;
}

.back {
  display: inline-block;
  margin-bottom: 70px;
  font-size: 9px;
  letter-spacing: .3em;
  text-decoration: none;
  color: rgba(230,205,219,.62);
}

.detail-top {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  gap: 8vw;
  align-items: center;
}

.detail-year {
  font-size: 11px;
  letter-spacing: .4em;
  color: #b898aa;
}

.detail-text h1 {
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 6vw, 95px);
  line-height: .93;
  font-weight: 400;
  color: #e7c7d7;
}

.detail-roles {
  margin-top: 28px;
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(231,212,223,.55);
  line-height: 1.8;
}

.synopsis {
  max-width: 550px;
  margin-top: 60px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(239,225,233,.80);
}

.detail-image-link {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.detail-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  color: white;
  background: rgba(0,0,0,.22);
}

.watch-label {
  margin-top: 15px;
  text-align: right;
  font-size: 8px;
  letter-spacing: .35em;
  opacity: .58;
}

.festival-section {
  margin-top: 135px;
  padding: 58px;
  background: #cdbec9;
  color: #19151b;
}

.festival-header {
  display: flex;
  align-items: center;
  gap: 30px;
}

.festival-header h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 55px);
  color: #241c25;
}

.festival-line {
  height: 1px;
  flex: 1;
  background: rgba(25,20,25,.25);
}

.awards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 25px;
}

.award-card {
  min-height: 115px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-top: 1px solid rgba(20,15,20,.25);
}

.award-card img {
  width: 80px;
  max-height: 68px;
  object-fit: contain;
}

.award-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.45;
  color: #251d26;
}

/* TABLETTE */

@media (max-width: 1050px) {
  nav { gap: 18px; }
  .roles-grid-editorial { grid-template-columns: repeat(2,1fr); row-gap: 55px; }
  .editorial-projects { grid-template-columns: 1fr 1fr; }
  .selected-projects-title { grid-column: 1/-1; }
}

/* MOBILE */

@media (max-width: 780px) {
  .topbar {
    min-height: 70px;
    padding: 22px 6vw;
  }

  .topbar nav {
    display: flex !important;
    width: 100%;
    gap: 10px 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .topbar nav a {
    font-size: 8px;
    letter-spacing: .14em;
    padding-bottom: 5px;
  }

  .films-intro {
    min-height: auto;
    padding: 55px 6vw 78px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .films-intro h1 {
    font-size: 20vw;
  }

  .intro-copy {
    margin-top: 32px;
    font-size: 19px;
  }

  .films-intro-photo {
    height: auto;
    aspect-ratio: 4/3;
  }

  .films-grid-wrap {
    padding: 0 6vw 95px;
  }

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

  .hover-more {
    opacity: 1;
    transform: none;
    bottom: 15px;
  }

  .film-image::after {
    background: linear-gradient(180deg, transparent 55%, rgba(7,5,10,.55));
  }

  .editorial-hero {
    padding: 55px 6vw 50px;
  }

  .editorial-hero h1 {
    font-size: 16vw;
  }

  .subtitle {
    line-height: 1.7;
  }

  .roles-grid-editorial {
    padding: 0 6vw;
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .role-image {
    aspect-ratio: 4/3;
  }

  .role-card h2 {
    font-size: 28px;
  }

  .editorial-projects {
    margin: 90px 6vw 0;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .selected-projects-title {
    grid-column: auto;
  }

  .festival-list {
    padding: 0 6vw;
  }

  .festival-entry {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .festival-entry + .festival-entry {
    margin-top: 85px;
    padding-top: 72px;
  }

  .festival-info h2 {
    font-size: 11.5vw;
  }

  .external-links {
    flex-direction: column;
  }

  .external-links a {
    width: 100%;
  }

  .contact-page {
    min-height: calc(100vh - 70px);
  }

  .film-detail {
    padding: 45px 6vw 90px;
  }

  .back {
    margin-bottom: 45px;
  }

  .detail-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .detail-text h1 {
    font-size: 13vw;
  }

  .synopsis {
    margin-top: 38px;
    font-size: 18px;
  }

  .festival-section {
    margin-top: 85px;
    padding: 38px 6vw;
  }

  .festival-header {
    display: block;
  }

  .festival-line {
    width: 50px;
    margin-top: 18px;
  }

  .awards {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .award-card {
    padding: 18px 0;
    min-height: auto;
  }

  .award-card img {
    width: 62px;
  }
}


/* MOBILE NAV — correction */
@media (max-width: 780px) {
  .topbar {
    min-height: auto;
    padding: 20px 6vw 16px;
    flex-wrap: wrap;
    gap: 14px;
  }

  .topbar nav {
    display: flex !important;
    width: 100%;
    gap: 10px 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .topbar nav a {
    display: inline-block;
    font-size: 8px;
    letter-spacing: .14em;
    padding-bottom: 5px;
  }
}
