* {
  box-sizing: border-box;
}

:root {
  --red: #ef2b26;
  --blue: #0b4b92;
  --black: #080808;
  --off-white: #f4f1ea;
  --white: #ffffff;
  --line: rgba(255,255,255,.18);
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 82px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: .95rem;
  letter-spacing: .04em;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 32px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
}

.site-nav a:hover {
  color: var(--red);
}

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

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

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 150px 5vw 8vw;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.48) 45%, rgba(0,0,0,.25) 100%),
    linear-gradient(0deg, rgba(0,0,0,.82) 0%, transparent 55%);
}

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

.eyebrow,
.section-label,
.show-type {
  color: var(--red);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
}

.hero h1,
.section h2,
.statement h2 {
  font-family: "Archivo Black", Arial, sans-serif;
  margin: 12px 0 20px;
  line-height: .88;
  letter-spacing: -.045em;
}

.hero h1 {
  font-size: clamp(4.2rem, 11vw, 10rem);
}

.hero-copy {
  max-width: 690px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid white;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .06em;
  font-size: .8rem;
}

.button-primary {
  background: var(--red);
  border-color: var(--red);
}

.button-secondary:hover,
.button-primary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--red);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 36px;
  padding: 17px 0;
  animation: ticker 25s linear infinite;
  font-family: "Archivo Black", Arial, sans-serif;
  letter-spacing: .03em;
}

.ticker-track span::after {
  content: "✦";
  margin-left: 36px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 110px 5vw;
  border-bottom: 1px solid var(--line);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 8vw;
  align-items: start;
  margin-top: 45px;
}

.section h2 {
  font-size: clamp(3rem, 7vw, 7rem);
}

.about-copy {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,.75);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading-row p {
  max-width: 430px;
  color: rgba(255,255,255,.62);
}

.show-list {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.show-card {
  display: grid;
  grid-template-columns: 140px 1fr 50px;
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: .25s ease;
}

.show-card:hover {
  padding-left: 18px;
  background: rgba(255,255,255,.025);
}

.show-date {
  display: flex;
  flex-direction: column;
}

.show-date strong {
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: 3.4rem;
  line-height: 1;
}

.show-date span {
  font-size: .72rem;
  letter-spacing: .08em;
  margin-top: 8px;
}

.show-info h3 {
  margin: 4px 0 6px;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(1.9rem, 4vw, 4rem);
}

.show-info p {
  margin: 0;
  color: rgba(255,255,255,.63);
}

.show-arrow {
  font-size: 2rem;
  text-align: right;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 45px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.project-grid article {
  min-height: 280px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-grid article span {
  color: var(--red);
  font-size: .8rem;
  font-weight: 700;
}

.project-grid h3 {
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  margin: 60px 0 14px;
}

.project-grid p {
  max-width: 440px;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}

.statement {
  min-height: 55vh;
  padding: 8vw 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-white);
  color: var(--black);
}

.statement p {
  color: var(--red);
  font-weight: 800;
  letter-spacing: .11em;
  font-size: .8rem;
}

.statement h2 {
  font-size: clamp(4rem, 10vw, 10rem);
}

.contact-links {
  display: flex;
  flex-direction: column;
}

.contact-links a {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-links span {
  display: block;
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.contact-links strong {
  font-size: clamp(1rem, 2vw, 1.4rem);
  word-break: break-word;
}

.contact-grid > div:first-child p {
  max-width: 500px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

footer {
  padding: 34px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: .85rem;
}

.footer-brand img {
  width: 42px;
}

.footer-copy {
  display: flex;
  gap: 22px;
  color: rgba(255,255,255,.55);
  font-size: .78rem;
}

@media (max-width: 800px) {
  .site-header {
    height: 70px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 18px 5vw;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 88vh;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 18vw, 6.5rem);
  }

  .about-grid,
  .contact-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    display: block;
  }

  .show-card {
    grid-template-columns: 88px 1fr 30px;
    gap: 16px;
  }

  .show-date strong {
    font-size: 2.6rem;
  }

  .project-grid article {
    min-height: 230px;
  }

  footer,
  .footer-copy {
    flex-direction: column;
    align-items: flex-start;
  }
}
