* { box-sizing: border-box; }

:root {
  --black: #050505;
  --panel: #080808;
  --line: #2a2a2a;
  --offwhite: #e6e6e6;
  --gray: #7a7a7a;
  --dim: #565656;
  --gutter: clamp(28px, 6vw, 96px);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--offwhite);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site {
  min-height: 100vh;
  background: var(--black);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.85) 33%, rgba(0,0,0,.22) 72%, rgba(0,0,0,.05) 100%),
    url("assets/hero-museum-concrete.jpg") center center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.nav {
  position: absolute;
  z-index: 5;
  top: 36px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 22px;
  letter-spacing: .42em;
  font-weight: 700;
  color: var(--offwhite);
}

.nav-links {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--offwhite);
}

.construction {
  position: absolute;
  z-index: 4;
  top: 108px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 900px);
  text-align: center;
  color: var(--offwhite);
  font-size: clamp(15px, 1.45vw, 24px);
  font-weight: 700;
  letter-spacing: .22em;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  left: var(--gutter);
  top: 50%;
  transform: translateY(-38%);
  width: min(560px, 48vw);
}

.hero h1 {
  margin: 0 0 42px;
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(64px, 8vw, 132px);
  line-height: .86;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong { display: block; }

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

.hero h1 strong {
  color: var(--offwhite);
  font-weight: 700;
}

.text-link {
  display: inline-block;
  color: var(--offwhite);
  font-size: 13px;
  letter-spacing: .16em;
  border-bottom: 1px solid rgba(230,230,230,.7);
  padding-bottom: 7px;
}

.truth {
  display: grid;
  grid-template-columns: .9fr 1.6fr;
  gap: clamp(60px, 8vw, 130px);
  padding: 72px var(--gutter) 76px;
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.truth h2 {
  margin: 0 0 26px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(34px, 3.4vw, 64px);
  line-height: .98;
  letter-spacing: -.02em;
  color: #9f9f9f;
  text-transform: uppercase;
}

.truth p {
  margin: 0 0 20px;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.35;
  color: var(--offwhite);
}

.truth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.truth-grid article {
  min-height: 150px;
  padding-left: clamp(28px, 4vw, 56px);
  border-left: 1px solid #333;
}

.truth-grid .num {
  margin-bottom: 22px;
  color: #a0a0a0;
  font-size: 14px;
  letter-spacing: .08em;
}

.truth-grid p {
  margin: 0;
  font-size: clamp(24px, 2vw, 40px);
  line-height: 1.22;
}

.featured {
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 60px var(--gutter);
  background:
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.92) 34%, rgba(0,0,0,.34) 100%),
    url("assets/featured-work.jpg") center center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin-bottom: 30px;
  color: #9e9e9e;
  font-size: 13px;
  letter-spacing: .28em;
}

.featured h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.04em;
}

.featured p {
  margin: 24px 0 22px;
  font-size: 18px;
  color: var(--offwhite);
}

.build-line {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  color: var(--offwhite);
  font-size: 13px;
  letter-spacing: .28em;
}

.choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 330px;
  border-bottom: 1px solid var(--line);
}

.choice {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  align-items: center;
  padding: var(--gutter);
  background-size: cover;
  background-position: center;
}

.choice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.2));
  z-index: 0;
}

.choice + .choice { border-left: 1px solid var(--line); }

.film { background-image: url("assets/film.jpg"); }
.live { background-image: url("assets/live.jpg"); }

.choice-copy {
  position: relative;
  z-index: 1;
}

.choice strong {
  display: block;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(54px, 5vw, 92px);
  line-height: 1;
}

.choice em {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: clamp(18px, 1.5vw, 28px);
}

.choice b {
  display: block;
  margin-top: 32px;
  font-size: 42px;
  font-weight: 300;
}

.footer {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--gutter);
  color: #aaa;
  font-size: 12px;
  letter-spacing: .22em;
}

.footer nav {
  display: flex;
  gap: 46px;
}

@media (max-width: 760px) {
  .nav-links { display: none; }

  .construction {
    top: 88px;
    font-size: 12px;
    letter-spacing: .14em;
  }

  .hero {
    min-height: 720px;
    background-position: 58% center;
  }

  .hero-copy {
    width: calc(100% - 56px);
    top: auto;
    bottom: 90px;
    transform: none;
  }

  .hero h1 { font-size: 58px; }

  .truth {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 44px 28px 52px;
  }

  .truth-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .truth-grid article {
    min-height: auto;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid #333;
  }

  .truth-grid p { font-size: 28px; }

  .featured {
    min-height: 410px;
    padding: 48px 28px;
  }

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

  .choice + .choice {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
  }

  .footer nav {
    gap: 22px;
    flex-wrap: wrap;
  }
}
