@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600&family=Syne:wght@700;800&display=swap');

:root {
  --black: #000;
  --white: #fff;
  --ink: #111;
  --line: #d8d8d8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter Tight", Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 28px;
  background: var(--black);
  color: var(--white);
}

.brand {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -.08em;
}

nav {
  display: flex;
  gap: 24px;
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
}

nav a {
  transition: opacity .2s ease;
}

nav a:hover,
nav a:focus-visible {
  opacity: .6;
}

nav .active {
  border-bottom: 1px solid currentColor;
}

.marquee {
  width: 100%;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee span {
  flex: none;
  padding: 18px 20px 16px;
  font-size: clamp(2.2rem, 5.5vw, 5.8rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.about-section,
.contact-section {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 24px;
  padding: 100px 58px;
}

.about-section {
  padding-right: clamp(70px, 7vw, 140px);
}

.section-label,
footer {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.section-label {
  margin: 8px 0 0;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(240px, .85fr) minmax(320px, 1.15fr);
  align-items: start;
  gap: clamp(30px, 4vw, 70px);
}

.about-portrait {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  background: #ededed;
}

.about-copy {
  max-width: 700px;
}

.about-copy p {
  margin: 0 0 28px;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -.01em;
}
.about-copy a.film-link {
  color: #b11226;
  text-decoration: none;
}

.about-copy a.film-link:hover {
  color: #e32636;
}
.about-copy p:last-child {
  margin-bottom: 0;
}
.about-copy p.closing-line {
  margin-top: 48px;
}

.contact-section {
  border-top: 1px solid var(--line);
}

.contact-links {
  border-top: 1px solid var(--ink);
}

.contact-links a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  letter-spacing: -.03em;
  transition: padding .25s ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  padding-left: 12px;
  padding-right: 12px;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 22px 28px;
  border-top: 1px solid var(--line);
}

@media (max-width: 700px) {
  .site-header {
    padding: 0 16px;
  }

  nav {
    gap: 14px;
  }

  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 70px 16px;
  }

  .about-content {
    grid-template-columns: minmax(220px, .8fr) minmax(300px, 1.2fr);
    gap: 28px;
  }

  .contact-links a {
    align-items: flex-end;
  }

  .contact-links a span:last-child {
    text-align: right;
  }

  footer {
    padding: 18px 16px;
  }
}

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    width: min(100%, 460px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }

  .contact-links a {
    transition: none;
  }
}
