/* =========================================================
   A RETROSPEKTUAL VIEW
   Starter site stylesheet
   ========================================================= */

:root {
  --bg: #090909;
  --panel: #111111;
  --panel-2: #171717;
  --text: #f4f1ea;
  --muted: #aaa59d;
  --line: rgba(255,255,255,.12);
  --accent: #e0b35a;
  --max: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 78px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0,0,0,.75), transparent);
  transition: background .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--text);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  transition: color .25s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 150px 7vw 9vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.52) 48%, rgba(0,0,0,.35) 100%),
    radial-gradient(circle at 75% 36%, rgba(224,179,90,.16), transparent 32%),
    linear-gradient(140deg, #151515 0%, #080808 55%, #1c1a16 100%);
  transform: scale(1.02);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 70px 70px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .23em;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
}

.hero h1 {
  font-size: clamp(4rem, 9.7vw, 9.2rem);
  line-height: .82;
  text-transform: uppercase;
  letter-spacing: -.055em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-copy {
  width: min(550px, 100%);
  color: #c9c4bb;
  font-size: 1.08rem;
  margin: 2rem 0 2.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.6rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 700;
  transition: .25s ease;
}

.btn-primary {
  background: var(--accent);
  color: #101010;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.55);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-scroll {
  position: absolute;
  right: 4vw;
  bottom: 9vh;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg);
  transform-origin: right bottom;
  color: #aaa;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 52px;
  height: 1px;
  background: #aaa;
}

.section {
  width: min(var(--max), 88vw);
  margin: 0 auto;
  padding: 9rem 0;
}

.section-label {
  color: #767676;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 2rem;
}

.intro {
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 8vw;
  align-items: start;
}

.intro h2,
.section-heading h2,
.contact h2 {
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.bio-copy {
  color: #bbb5ab;
  font-size: 1.06rem;
}

.bio-copy p + p {
  margin-top: 1.4rem;
}

.section-heading {
  margin-bottom: 3rem;
}

.division-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  gap: 1px;
  background: var(--line);
}

.division-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  background-position: center;
  background-size: cover;
}

.studio-card {
  background-image:
    linear-gradient(150deg, rgba(0,0,0,.15), rgba(0,0,0,.75)),
    radial-gradient(circle at 70% 30%, #513e1f, #111 50%, #080808);
}

.film-card {
  background-image:
    linear-gradient(150deg, rgba(0,0,0,.12), rgba(0,0,0,.82)),
    radial-gradient(circle at 55% 35%, #27314a, #131313 48%, #080808);
}

.division-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    repeating-linear-gradient(
      115deg,
      transparent 0 45px,
      rgba(255,255,255,.025) 46px,
      transparent 47px 93px
    );
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.division-card:hover::before {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92), transparent 60%);
}

.card-content {
  position: relative;
  z-index: 2;
  transition: transform .35s ease;
}

.division-card:hover .card-content {
  transform: translateY(-8px);
}

.card-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .68rem;
  margin-bottom: 1rem;
}

.division-card h3 {
  font-size: clamp(2.4rem, 4.5vw, 5.3rem);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.05em;
}

.card-services {
  margin: 1.5rem 0 2.5rem;
  color: #bcb7ae;
}

.card-link {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: .35rem;
  border-bottom: 1px solid rgba(255,255,255,.5);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .14em;
}

.card-link span {
  color: var(--accent);
}

.statement {
  text-align: center;
  padding-top: 11rem;
  padding-bottom: 11rem;
}

.statement blockquote {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.05em;
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  border-top: 1px solid var(--line);
}

.contact h2 {
  max-width: 850px;
}

footer {
  padding: 2.5rem 6vw 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: #777;
  font-size: .78rem;
}

footer .brand-name {
  color: #d9d4cb;
  display: block;
  margin-bottom: .35rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealIn .9s .15s forwards ease-out;
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    padding: 1.5rem 5vw 2rem;
    background: rgba(7,7,7,.97);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .hero-scroll {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .division-card {
    min-height: 560px;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand-name {
    font-size: .67rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 19vw, 5rem);
  }

  .section {
    width: 90vw;
    padding: 6.5rem 0;
  }

  .division-card {
    min-height: 500px;
    padding: 2rem;
  }
}
