:root {
  --black: #050505;
  --dark: #0d0d0d;
  --white: #f5f5f5;
  --gray: #a6a6a6;
  --orange: #f8652c;
  --line: rgba(255,255,255,.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

img, video {
  width: 100%;
  display: block;
}

section {
  padding: 90px 22px;
  scroll-margin-top: 110px;
}

h1, h2, h3 {
  line-height: .92;
  letter-spacing: -2px;
}

h1 { font-size: clamp(52px, 15vw, 92px); }
h2 { font-size: clamp(42px, 12vw, 82px); }

p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.55;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  color: var(--orange);
  border-radius: 999px;
  padding: 15px 24px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn.fill {
  background: var(--orange);
  color: var(--black);
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 96px;
  padding: 18px 22px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5,5,5,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand {
  display: flex;
  align-items: center;
  transform: translateY(3px);
}

.brand img {
  width: 172px;
  height: auto;
}

.menu-toggle {
  width: 38px;
  height: 28px;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: .35s ease;
}

.menu-toggle.active span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

/* Menu */

.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--white);
  color: var(--black);
  transform: translateX(100%);
  transition: .55s cubic-bezier(.76,0,.24,1);
}

.fullscreen-menu.active {
  transform: translateX(0);
}

.menu-inner {
  min-height: 100vh;
  padding: 110px 28px 40px;
  display: flex;
  flex-direction: column;
}

.menu-logo {
  display: none;
}

.fullscreen-menu a {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,.12);
  font-size: clamp(26px, 9vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
}

.fullscreen-menu a span {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0;
  padding-top: 10px;
}

.menu-social {
  margin-top: auto;
  display: flex;
  gap: 24px;
}

.menu-social a {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 0;
  padding: 0;
}

/* Hero */

.hero {
  min-height: 100vh;
  padding: 145px 22px 60px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.hero-media video {
  height: 100%;
  object-fit: cover;
  opacity: .48;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,.1), rgba(5,5,5,.52), #050505 96%);
  z-index: 1;
}

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

.hero h1 { margin-bottom: 30px; }
.hero .btn { margin-top: 8px; }

/* Manifesto */

.manifesto {
  background: linear-gradient(to bottom, #050505, #101010);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.big-text {
  margin-top: 26px;
  font-size: clamp(20px, 6vw, 34px);
  color: #d8d8d8;
}

/* Image statement */

.image-statement {
  min-height: 92vh;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.image-statement img {
  height: 100vh;
  object-fit: cover;
  opacity: .68;
}

.image-statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,.85), rgba(5,5,5,.15));
}

.statement-text {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 70px;
  z-index: 2;
}

/* Work */

.section-head { margin-bottom: 42px; }

.work-grid {
  display: grid;
  gap: 18px;
}

.work-card {
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
}

.work-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 18px;
}

.work-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

/* Services */

.services { background: #0c0c0c; }

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

.service-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.service-item span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.service-item h3 {
  font-size: clamp(40px, 12vw, 70px);
  margin: 12px 0;
  text-transform: uppercase;
}

/* Clients */

.clients {
  padding: 80px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.clients .eyebrow {
  padding-left: 22px;
  padding-right: 22px;
  margin-bottom: 38px;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 55px;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.clients-track img {
  width: auto !important;
  height: 34px !important;
  max-width: 145px !important;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: .85;
  filter: brightness(0) invert(1);
}

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

/* Studio */

.studio-grid {
  display: grid;
  gap: 22px;
}

.studio article {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.studio article img {
  height: 280px;
  object-fit: cover;
}

.studio article h3 {
  font-size: 24px;
  padding: 22px 22px 8px;
}

.studio article p {
  padding: 0 22px 24px;
}

/* Contact */

.contact {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top right, rgba(248,101,44,.18), transparent 35%), #050505;
}

.contact h2 { margin-bottom: 28px; }

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer */

footer {
  padding: 30px 22px;
  border-top: 1px solid var(--line);
  color: #777;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: .8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop */

@media (min-width: 900px) {
  section {
    padding: 130px 6vw;
  }

  .site-header {
    height: 108px;
    padding: 20px 6vw;
  }

  .brand img {
    width: 220px;
  }

  .hero {
    padding: 160px 6vw 90px;
  }

  h1 {
    font-size: clamp(90px, 9vw, 150px);
  }

  h2 {
    font-size: clamp(70px, 7vw, 120px);
  }

  .fullscreen-menu {
    width: 520px;
    left: auto;
    box-shadow: -40px 0 100px rgba(0,0,0,.5);
  }

  .work-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-item {
    display: grid;
    grid-template-columns: 80px 1fr 420px;
    gap: 30px;
    align-items: center;
  }

  .clients {
    padding: 130px 0;
  }

  .clients .eyebrow {
    padding-left: 6vw;
  }

  .clients-track {
    gap: 110px;
    animation-duration: 40s;
  }

  .clients-track img {
    height: 60px !important;
    max-width: 240px !important;
  }

  .studio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .statement-text {
    left: 6vw;
    right: 6vw;
    bottom: 100px;
  }

  footer {
    padding: 34px 6vw;
    display: flex;
    justify-content: space-between;
  }
}