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

body {
  background: #050505;
  color: #f4f1eb;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  height: 72px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #030303;
  border-bottom: 1px solid rgba(207, 160, 65, 0.25);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo span {
  font-size: 28px;
  letter-spacing: 8px;
  display: block;
}

.logo small {
  color: #d5a742;
  letter-spacing: 4px;
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
}

.nav a:hover,
.lang {
  color: #d5a742;
}

.lang span {
  color: #aaa;
  margin-left: 8px;
}

.lang span {
  cursor: pointer;
  transition: 0.2s ease;
}

.lang span:hover {
  color: #d5a742;
}

.hero {
  min-height: 560px;
  padding: 7% 6%;
  display: flex;
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.98) 0%,
      rgba(0,0,0,0.82) 35%,
      rgba(0,0,0,0.18) 100%
    ),
    url("assets/images/director-chair.png");

  background-size: cover;
  background-repeat: no-repeat;

  /* CHAIR POSITION */
  background-position: right -320px center;

  border-bottom: 1px solid rgba(207, 160, 65, 0.35);
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  color: #d5a742;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.hero-text {
  max-width: 560px;
  margin: 24px 0;
  font-size: 18px;
  line-height: 1.5;
}

.buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 34px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  border: 1px solid #d5a742;
}

.gold {
  background: linear-gradient(135deg, #e1b654, #b88425);
  color: #050505;
}

.outline {
  border-color: #ddd;
}

.section {
  padding: 34px 6%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.section-header h2,
.info-box h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-header a {
  color: #d5a742;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.film-card {
  background: #101010;
  border: 1px solid rgba(207, 160, 65, 0.55);
  transition: 0.25s ease;
}

.film-card:hover {
  transform: translateY(-6px);
  border-color: #d5a742;
}

.film-card img {
  width: 100%;
  aspect-ratio: 2 / 3;

  object-fit: cover;

  object-position: top;

  display: block;

  background: #000;
}

.film-card h3 {
  padding: 14px 14px 4px;
  font-size: 16px;
}

.film-card p,
.film-card span {
  display: block;
  padding: 0 14px;
  color: #cfcfcf;
  font-size: 14px;
}

.film-card span {
  padding-bottom: 14px;
  color: #aaa;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: stretch;
}

.info-box {
  background: #050505;
  border-right: 1px solid rgba(207, 160, 65, 0.35);

  padding: 42px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 460px;
}

.director {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 34px;
  align-items: center;
}

.director img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.director-text {
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.awards {
  text-align: center;
}

.info-box h2 {
  margin-bottom: 18px;
}

.info-box h4 {
  color: #d5a742;
  margin-bottom: 22px;
}

.info-box p {
  line-height: 1.7;
  color: #ddd;
}

.small-btn {
  display: inline-block;

  margin-top: 26px;

  padding: 14px 24px;

  border: 1px solid #d5a742;

  color: #d5a742;

  text-transform: uppercase;

  font-size: 12px;

  font-weight: bold;

  width: fit-content;
}

.cta {
  padding: 22px 6%;
  background: linear-gradient(90deg, #3b0503, #111);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta h2 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 20px;
}

.cta p {
  color: #ddd;
  margin-top: 6px;
}

.footer {
  padding: 22px 6%;
  background: #030303;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #aaa;
  font-size: 13px;
}

@media (max-width: 768px) {

  .film-card img {

    object-fit: contain;

    height: auto;

    max-height: 420px;

    background: #000;
  }

  .hero {
    background-position: center;
  }

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

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

  .cta,
  .footer {
    flex-direction: column;
    text-align: center;
  }
  .lang {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang span {
  cursor: pointer;
  transition: 0.2s ease;
}

.lang span:hover,
.lang span.active {
  color: #d5a742;
}

.lang .divider {
  color: #d5a742;
  cursor: default;
}

@media (max-width: 768px) {
  .header {
    height: auto;
    padding: 18px 6%;
    gap: 14px;
  }

  .logo span {
    font-size: 34px;
    letter-spacing: 9px;
  }

  .logo small {
    font-size: 13px;
    letter-spacing: 6px;
  }

  .lang {
    font-size: 22px;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding: 48px 6% 70px;
    background-position: 58% center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: 7px;
  }

  .hero-text {
    font-size: 25px;
    line-height: 1.45;
    max-width: 100%;
  }

  .buttons {
    flex-direction: column;
    gap: 16px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 18px 24px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 42px;
    letter-spacing: 6px;
  }

  .hero-text {
    font-size: 22px;
  }

  .eyebrow {
    font-size: 13px;
    line-height: 1.5;
  }
@media (max-width: 768px) {
  .header {
    height: auto;
    padding: 22px 6%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .logo {
    grid-column: 1;
  }

  .lang {
    grid-column: 2;
    align-self: center;
    font-size: 18px;
    white-space: nowrap;
  }

  .nav {
    grid-column: 1 / -1;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    font-size: 13px;
  }

  .hero {
    padding: 42px 6% 64px;
    background-position: 63% center;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: 6px;
  }

  .hero-text {
    font-size: 22px;
    line-height: 1.45;
  }
}

@media (max-width: 430px) {
  .logo span {
    font-size: 40px;
    letter-spacing: 10px;
  }

  .logo small {
    font-size: 13px;
    letter-spacing: 7px;
  }

  .hero h1 {
    font-size: 38px;
    letter-spacing: 5px;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.5;
  }
}
