* {
  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;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 28px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.hero-video,
.hero::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  background: url("assets/hero.jpg") center/cover no-repeat;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.7));
  z-index: 1;
}

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

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

h1,
h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 500;
  max-width: 900px;
  margin: 0;
}

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

.hero-copy {
  max-width: 600px;
  margin-top: 32px;
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(244,240,232,.85);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.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;
}

.section {
  padding: 110px 5vw;
}

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

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

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

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

.work-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  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-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: -0.04em;
}

.capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.capabilities span {
  border: 1px solid rgba(244,240,232,.25);
  border-radius: 999px;
  padding: 14px 18px;
  color: #ded7cc;
}

.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 {
  padding: 40px 5vw;
  border-top: 1px solid rgba(244,240,232,.15);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  color: #a9a093;
  font-size: 14px;
  line-height: 1.5;
}

footer p {
  max-width: 650px;
  margin: 0;
}

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

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

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

  .section-heading {
    display: block;
  }

  footer {
    display: block;
  }

  footer span {
    display: block;
    margin-top: 24px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 20px 22px;
  }

  .logo img {
    height: 32px;
  }

  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;
  }
}