@font-face {
  font-family: "Nohemi";
  src: url("fonts/Nohemi-Medium.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --page-pad: clamp(20px, 2vw, 36px);
  --black: #050505;
  --white: #ffffff;
  --green: #A0A780;
}

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

html {
  scroll-behavior: smooth;
}

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

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

img,
video {
  max-width: 100%;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  font-size: clamp(38px, 3.1vw, 56px);
  line-height: 1;
  color: #fff;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  padding: clamp(18px, 1.6vw, 28px) var(--page-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  background: transparent;
  mix-blend-mode: difference;
}

.logo {
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 800;
  color: #fff;
}

.nav {
  display: flex;
  gap: clamp(24px, 2.2vw, 40px);
}

.nav a {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .01em;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  color: #000;
  font-size: 32px;
  font-weight: 400;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.menu-btn.is-close {
  font-size: 56px;
  font-weight: 300;
  color: #000;
}

.project-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: clamp(46px, 3.4vw, 64px) var(--page-pad);
  overflow: hidden;
  color: #fff;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.58));
  z-index: 1;
}

.services-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(60px, 6vw, 120px);
  align-items: end;
  padding-bottom: clamp(8px, 2vw, 34px);
}

.about-content h1 {
  font-family: "Nohemi", Arial, Helvetica, sans-serif;
  font-size: clamp(80px, 4vw, 100px);
  line-height: .84;
  letter-spacing: -.01em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: clamp(34px, 4.2vw, 76px);
}

.about-content p {
  max-width: 720px;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.28;
}

.services-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-self: end;
  text-align: right;
  width: fit-content;
  margin-left: auto;
}

.services-list p {
  width: fit-content;
  margin-left: auto;
  text-align: right;
  font-size: clamp(30px, 3.05vw, 58px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -.02em;
  opacity: 0;
  transform: translateX(300px);
  transition: transform .9s cubic-bezier(.22,1,.36,1), opacity .9s ease;
}

.services-list p.visible {
  opacity: 1;
  transform: translateX(0);
}

.project-gallery {
  width: 100%;
  background: #fff;
}

.project-image {
  width: 100%;
  background: var(--green);
  line-height: 0;
}

.project-image img,
.project-image video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-top {
  background: #000;
  color: #fff;
  padding: clamp(50px, 4vw, 70px) var(--page-pad) clamp(92px, 8vw, 130px);
  display: grid;
  grid-template-columns: 1.2fr .45fr .45fr;
  gap: clamp(48px, 6vw, 90px);
}

.footer-top p {
  max-width: 430px;
  font-size: clamp(21px, 1.6vw, 26px);
  line-height: 1.25;
  margin-bottom: 32px;
}

.white-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  background: #fff;
  color: #000;
  border: none;
}

footer {
  background: #000;
  color: #fff;
  overflow: hidden;
  padding-bottom: 40px;
}

.marquee {
  display: flex;
  gap: clamp(48px, 5vw, 80px);
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee span {
  font-size: clamp(80px, 14vw, 230px);
  line-height: .8;
  letter-spacing: -.08em;
  text-transform: uppercase;
  font-weight: 900;
  white-space: nowrap;
}

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

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

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

@media (max-width: 1600px) {
  .about-content h1 {
    font-size: clamp(80px, 7vw, 100px);
  }

  .services-list p {
    font-size: clamp(28px, 2.85vw, 50px);
  }
}

@media (max-width: 1280px) {
  .services-bottom {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 30vw);
  }
}

@media (max-width: 900px) {
  :root {
    --page-pad: 20px;
  }

  .custom-cursor {
    display: none;
  }

  .header {
    padding: 22px 20px;
    grid-template-columns: 1fr auto;
    color: #fff;
    mix-blend-mode: normal;
  }

  .logo {
    position: relative;
    z-index: 3001;
    color: #fff;
  }

  .menu-btn {
    display: block;
    position: relative;
    z-index: 3001;
    color: #fff;
  }

  .menu-btn.is-close {
    color: #000;
  }

  .nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .35s ease;
    z-index: 3000;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    text-align: center;
    color: #000;
    font-size: clamp(36px, 10vw, 66px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -.07em;
  }

  .project-hero {
    min-height: 100svh;
    padding: 120px 20px 70px;
  }

  .services-bottom,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .services-bottom {
    gap: 50px;
    padding-bottom: 0;
  }

  .about-content h1 {
    font-size: clamp(42px, 13vw, 78px);
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.3;
  }

  .services-list {
    align-items: flex-start;
    justify-self: start;
    text-align: left;
    width: 100%;
    margin-left: 0;
  }

  .services-list p {
    width: 100%;
    margin-left: 0;
    text-align: left;
    font-size: clamp(31px, 10vw, 58px);
  }

  html,
  body,
  a,
  button {
    cursor: auto;
  }
}