* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #080808;
  color: #f4f0e8;
  font-family: 'Manrope', sans-serif;
}

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

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  pointer-events: none;
}

.corner-logo {
  position: fixed;
  top: 24px;
  left: 5vw;
  height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(8,8,8,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: auto;
}

.corner-logo img {
  height: 26px;
  width: auto;
  display: block;
}

.pill-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  height: 52px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(8,8,8,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: auto;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Hero */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 5vw 0;
  overflow: hidden;
}

.hero-video {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.55), rgba(0,0,0,.25)),
    linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.70)),
    url("assets/hero.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 55% 45%, rgba(255,255,255,.04), transparent 32%),
    radial-gradient(circle at center, transparent 20%, rgba(0,0,0,.35) 100%);
  z-index: 1;
}

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

.eyebrow {
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c8bfae;
}

h1,
h2 {
  margin: 0;
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 500;
  max-width: 900px;
  margin: 0;
  text-shadow:
    0 2px 12px rgba(0,0,0,.4),
    0 12px 50px rgba(0,0,0,.5);
}

h2 {
  font-size: clamp(42px, 7vw, 100px);
}

.hero-copy {
  max-width: none;
  width: max-content;
  white-space: nowrap;
  margin-top: 32px;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.5;
  color: rgba(244,240,232,.85);
  text-shadow: 0 8px 30px rgba(0,0,0,.55);
}

.collage-section {
  background: #080808;
  padding-top: 90px;
  padding-bottom: 90px;
}

.image-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.image-collage img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;

  filter: grayscale(100%);
  opacity: .82;

  transition:
    filter .45s ease,
    opacity .45s ease,
    transform .45s ease;
}

.image-collage img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.015);
}

@media (max-width: 900px) {
  .image-collage {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, opacity .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: #f4f0e8;
  color: #080808;
}

.secondary {
  border: 1px solid rgba(244,240,232,.5);
  color: #f4f0e8;
}

/* Sections */

.section {
  padding: 110px 5vw;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 850px;
}

/* Work */

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 22px;
  background: #151515;
}

.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform .7s ease, opacity .7s ease;
}

.work-card:hover img {
  transform: scale(1.04);
  opacity: .9;
}

.work-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent 60%);
}

.work-card p {
  margin: 0 0 8px;
  font-size: 24px;
}

.work-card span {
  color: #d3cabd;
  line-height: 1.4;
}

/* Approach */

.approach-section {
  background: #f4f0e8;
  color: #080808;
}

.approach-text {
  max-width: 980px;
}

.approach-section .eyebrow {
  color: #6f6659;
}

.approach-text p:last-child {
  margin-top: 34px;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -.04em;
}

/* Capabilities */

.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;

  margin-top: 50px;

  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.08);
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.08);
}

.capabilities span {
  display: flex;
  align-items: center;
  min-height: 110px;
  padding: 28px 32px;
  background: #080808;
  color: rgba(244,240,232,.45);
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: -0.03em;
  transition: color .35s ease, background .35s ease, transform .35s ease;
}

.capabilities span:hover {
  color: #f4f0e8;
  background: #101010;
  transform: translateX(6px);
}

/* Contact */

.contact-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.contact-section h2 {
  max-width: 980px;
  margin-bottom: 36px;
}

/* Footer */

footer {
  padding: 80px 5vw;
  border-top: 1px solid rgba(244,240,232,.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #a9a093;
  font-size: 14px;
  line-height: 1.6;
}

.footer-logo {
  height: 160px;
  width: auto;
  margin-bottom: 20px;
  opacity: .6;
}

footer p {
  max-width: 700px;
  margin: 0 auto 16px;
}

footer span {
  display: block;
}

/* Video Modal */

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 100000;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  width: 90vw;
  max-width: 1400px;
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.video-close {
  position: absolute;
  top: -50px;
  right: 0;

  background: none;
  border: none;

  color: white;
  font-size: 42px;
  cursor: pointer;
}
/* Tablet */

@media (max-width: 900px) {
  .pill-nav {
    gap: 16px;
    font-size: 11px;
  }

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

  .work-card {
    min-height: 420px;
  }

  .section-heading {
    display: block;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .corner-logo {
    top: 18px;
    left: 22px;
    height: 44px;
    padding: 0 14px;
  }

  .corner-logo img {
    height: 22px;
  }

  .pill-nav {
    display: none;
  }

  .hero,
  .section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-title {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
  }

  .hero-copy {
  font-size: 1.05rem;
  width: auto;
  white-space: normal;
}
}