* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: white;
}
a { color: inherit; text-decoration: none; 
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  color: white;
  background: transparent;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;

  font-weight: 800;
  letter-spacing: .18em;
  font-size: 14px;

  color: white;
  text-decoration: none;
}

.logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.nav-links a {
  opacity: .82;
  transition: opacity .25s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.social {
  font-size: 18px;
  letter-spacing: 0;
}

.social img {
  width: 18px;
  height: 18px;
  display: block;
}

.nav,
.logo,
.nav-links,
.nav-links a,
.social {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.nav a:focus,
.nav a:active {
  outline: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 8vw 11vh;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 2s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.25));
}

.hero-slide.active {
  opacity: 1;
}
.grain {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0, rgba(0,0,0,.55) 72%);
  z-index: -1;
}
.hero-content { max-width: 820px; }
.eyebrow {
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
h1 {
  font-size: clamp(54px, 9vw, 132px);
  line-height: .88;
  letter-spacing: -.07em;
  max-width: 1000px;
}
.hero-copy {
  margin-top: 28px;
  max-width: 520px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.6;
}
.button {
  display: inline-block;
  margin-top: 34px;
  border: 1px solid rgba(255,255,255,.5);
  padding: 15px 22px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;

  background: transparent;
  color: white;
  text-decoration: none;

  transition: all .35s ease;
}

.button:hover {
  background: white;
  color: #101010;
  border-color: white;
}

.projects-section, .about-section {
  padding: 130px 8vw;
  background: #060505;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 44px;
}
h2 {
  font-size: clamp(42px, 7vw, 94px);
  letter-spacing: -.06em;
}
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-card {
  position: relative;
  display: block;
  height: 420px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 25px;
  color: white;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: .65;
  transform: scale(1.03);
  transition: filter .6s ease, opacity .6s ease, transform .6s ease;
}

.project-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.07);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.85));
  z-index: 1;
}

.project-info {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
}

.project-info small {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

.project-info span {
  display: block;
  font-size: 32px;
  letter-spacing: -.05em;
}

.branding-card {
  background: linear-gradient(135deg, #161616, #070707);
}

.branding-placeholder {
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.poster-card {
  grid-column: span 1;
}

.gallery-page {
  padding: 130px 8vw;
}
.back-link {
  display: inline-block;
  margin-bottom: 60px;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
}
.project-gallery {
  columns: 3 280px;
  column-gap: 22px;
  max-width: 1400px;
  margin: 60px auto 0;
}

.project-gallery img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 22px;
  break-inside: avoid;
  background: #111;
  border-radius: 20px;
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;

  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  cursor: zoom-out;

  transform: scale(.94);
  transition: transform .35s ease;
}

.lightbox.active img {
  transform: scale(1);
}

@media (max-width: 760px) {
  .editorial-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    height: 360px;
  }
}
