:root {
  --ink: #111111;
  --paper: #e8e4da;
  --paper-light: #f2efe7;
  --line: rgba(17, 17, 17, 0.22);
  --muted: #77756e;
  --accent: #ff5a1f;
  --white: #f7f4ec;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}


/* =========================
   LOADER
========================= */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  color: var(--paper-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.loader-top,
.loader-bottom {
  display: flex;
  justify-content: space-between;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.loader-number {
  font-size: clamp(100px, 20vw, 300px);
  line-height: 0.8;
  font-weight: 800;
  letter-spacing: -0.08em;
  align-self: center;
}

.loader-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}


/* =========================
   HEADER
========================= */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  z-index: 50;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 34px;

  mix-blend-mode: difference;
  color: white;
}

.brand {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/*
IMPORTANT:
RIGHT SIDE IS COMPLETELY EMPTY.
NO CONTACT.
NO MENU.
NO BUTTON.
NO TEXT.
*/

.header-empty {
  width: 100px;
  height: 1px;
}


/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  padding: 130px 34px 30px;
  position: relative;
  background: var(--paper);
}

.hero-grid {
  min-height: calc(100vh - 160px);

  display: grid;
  grid-template-columns: 90px 0.85fr 1.15fr;
  gap: 25px;
}

.hero-index {
  font-family: "DM Mono", monospace;
  font-size: 14px;
  padding-top: 10px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0 70px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  line-height: 1.5;
  max-width: 240px;
  letter-spacing: 0.08em;
  margin-bottom: 38px;
}

.hero h1 {
  font-size: clamp(70px, 9vw, 155px);
  line-height: 0.79;
  letter-spacing: -0.085em;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  margin-left: 0.6em;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.hero h1 strong {
  display: block;
  color: var(--accent);
  font-weight: 800;
}

.hero-copy p {
  max-width: 340px;
  margin-top: 55px;
  margin-left: 15%;
  font-size: 14px;
  line-height: 1.7;
}

.hero-link {
  width: fit-content;
  margin-top: 35px;
  margin-left: 15%;

  display: flex;
  align-items: center;
  gap: 25px;

  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;

  border-bottom: 1px solid var(--ink);
  padding-bottom: 9px;
}

.hero-link span {
  font-size: 17px;
}

.hero-image-wrap {
  position: relative;
  height: 82vh;
  overflow: hidden;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}

.hero-image-wrap:hover .hero-image {
  transform: scale(1.04);
}

.image-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;

  display: flex;
  justify-content: space-between;

  color: white;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.hero-bottom-line {
  border-top: 1px solid var(--line);
  margin-top: 25px;
  padding-top: 13px;

  display: flex;
  justify-content: space-between;

  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}


/* =========================
   STATEMENT
========================= */

.statement {
  min-height: 85vh;
  padding: 150px 8vw;
  background: var(--ink);
  color: var(--paper-light);

  display: grid;
  grid-template-columns: 20% 80%;
}

.statement-small {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #999;
}

.statement-main {
  max-width: 1050px;
}

.statement-main p {
  font-size: clamp(34px, 5vw, 78px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.statement-main p i {
  color: var(--accent);
  font-style: normal;
}

.statement-large {
  margin-top: 35px;
  font-weight: 800;
}

.statement-large span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px var(--paper-light);
}


/* =========================
   PROJECTS
========================= */

.projects {
  padding: 140px 34px;
  background: var(--paper-light);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding-bottom: 100px;
}

.section-number {
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.section-heading h2 {
  margin-top: 30px;
  font-size: clamp(65px, 10vw, 150px);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.section-heading p {
  align-self: end;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  line-height: 1.7;
  max-width: 220px;
}

.project-list {
  border-top: 1px solid var(--ink);
}

.project {
  min-height: 150px;
  border-bottom: 1px solid var(--line);

  display: grid;
  grid-template-columns: 100px 1fr 280px 50px;
  align-items: center;

  cursor: pointer;
  transition: background .35s ease, color .35s ease;
}

.project:hover,
.project.active {
  background: var(--ink);
  color: var(--paper-light);
  padding-left: 20px;
}

.project-number {
  font-family: "DM Mono", monospace;
  font-size: 11px;
}

.project-name h3 {
  font-size: clamp(28px, 4vw, 58px);
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.project-name span,
.project-meta,
.project-arrow {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.project-arrow {
  font-size: 24px;
}

.project-visual {
  height: 75vh;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  background: #222;
}

.project-visual img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: opacity .4s ease, transform 1s ease;
}

.project-overlay {
  position: absolute;
  inset: auto 25px 25px 25px;

  display: flex;
  justify-content: space-between;

  color: white;
}

.project-overlay div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.project-overlay span {
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.project-overlay strong {
  font-size: 30px;
  letter-spacing: -0.04em;
}


/* =========================
   NUMBERS
========================= */

.numbers {
  background: var(--accent);
  padding: 100px 34px;
}

.numbers-title {
  display: flex;
  justify-content: space-between;

  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;

  padding-bottom: 80px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.number-item {
  border-left: 1px solid rgba(0,0,0,.3);
  padding: 0 25px;
}

.number-item:first-child {
  border-left: none;
  padding-left: 0;
}

.number-item strong {
  display: block;
  font-size: clamp(70px, 9vw, 150px);
  line-height: .8;
  letter-spacing: -0.08em;
}

.number-item span {
  display: block;
  margin-top: 25px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  line-height: 1.5;
}


/* =========================
   PROCESS
========================= */

.process {
  background: var(--paper);
  padding: 150px 34px;
}

.process-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  margin-bottom: 120px;
}

.process-head span {
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.process-head h2 {
  max-width: 1000px;
  font-size: clamp(65px, 10vw, 150px);
  line-height: .8;
  letter-spacing: -.08em;
}

.process-head em {
  color: var(--accent);
  font-style: normal;
}

.process-head strong {
  display: block;
}

.process-list {
  border-top: 1px solid var(--ink);
}

.process-item {
  min-height: 170px;
  border-bottom: 1px solid var(--line);

  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
}

.process-item > span {
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.process-item h3 {
  font-size: clamp(32px, 5vw, 70px);
  letter-spacing: -.06em;
}

.process-item p {
  max-width: 400px;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 10px;
  color: var(--muted);
}


/* =========================
   IMAGE STATEMENT
========================= */

.image-statement {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #111;
}

.image-statement img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: .72;
}

.image-statement-text {
  position: absolute;
  inset: 0;
  padding: 55px;

  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-statement-text span {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  margin-bottom: 35px;
}

.image-statement-text h2 {
  font-size: clamp(75px, 11vw, 180px);
  line-height: .78;
  letter-spacing: -.09em;
}

.image-statement-text i {
  color: var(--accent);
  font-style: normal;
}


/* =========================
   CAPABILITIES
========================= */

.capabilities {
  background: var(--paper-light);
  padding: 150px 34px;
}

.cap-title {
  display: grid;
  grid-template-columns: 120px 1fr;
  margin-bottom: 100px;
}

.cap-title span {
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.cap-title h2 {
  font-size: clamp(65px, 9vw, 140px);
  line-height: .8;
  letter-spacing: -.08em;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.cap {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.cap span {
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.cap h3 {
  font-size: clamp(32px, 5vw, 65px);
  margin-top: 65px;
  letter-spacing: -.06em;
}

.cap p {
  max-width: 350px;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 20px;
  color: var(--muted);
}


/* =========================
   ABOUT
========================= */

.about {
  min-height: 90vh;
  background: var(--ink);
  color: var(--paper-light);

  padding: 120px 34px;

  display: grid;
  grid-template-columns: 120px 1fr;
}

.about-number {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: #777;
}

.about-content {
  max-width: 1000px;
}

.about-content > span {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .1em;
}

.about-content h2 {
  margin-top: 60px;
  font-size: clamp(65px, 10vw, 150px);
  line-height: .8;
  letter-spacing: -.08em;
}

.about-content h2 strong {
  color: var(--accent);
}

.about-content p {
  max-width: 650px;
  margin-top: 60px;
  font-size: 16px;
  line-height: 1.8;
  color: #aaa;
}

.about-content p + p {
  margin-top: 25px;
}

.about-content p strong {
  color: var(--paper-light);
}


/* =========================
   CTA
========================= */

.cta {
  min-height: 90vh;
  background: var(--accent);
  padding: 45px 34px 70px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta-top {
  display: flex;
  justify-content: space-between;

  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .1em;
}

.cta h2 {
  font-size: clamp(85px, 14vw, 230px);
  line-height: .72;
  letter-spacing: -.1em;
}

.cta h2 i {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.cta-button {
  width: 100%;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);

  padding: 25px 0;

  display: flex;
  justify-content: space-between;

  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: .1em;
}

.cta-button span:last-child {
  font-size: 25px;
}

.cta p {
  max-width: 600px;
  font-size: 12px;
  line-height: 1.7;
}

.cta p strong {
  font-family: "DM Mono", monospace;
}


/* =========================
   FOOTER
========================= */

.footer {
  background: var(--ink);
  color: var(--paper-light);
  padding: 50px 34px 25px;
}

.footer-brand {
  font-size: clamp(80px, 16vw, 260px);
  line-height: .7;
  letter-spacing: -.1em;
  font-weight: 800;
}

.footer-info {
  border-top: 1px solid rgba(255,255,255,.2);
  margin-top: 80px;
  padding-top: 15px;

  display: flex;
  justify-content: space-between;

  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.footer-bottom {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;

  font-family: "DM Mono", monospace;
  font-size: 9px;
  color: #777;
}


/* =========================
   REVEAL
========================= */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .header {
    padding: 0 20px;
  }

  .hero {
    padding: 110px 20px 25px;
  }

  .hero-grid {
    grid-template-columns: 35px 1fr;
  }

  .hero-image-wrap {
    grid-column: 2;
    height: 60vh;
    margin-top: 30px;
  }

  .hero-copy {
    grid-column: 2;
  }

  .hero h1 {
    font-size: clamp(58px, 15vw, 110px);
  }

  .hero-copy p,
  .hero-link {
    margin-left: 0;
  }

  .statement {
    padding: 100px 25px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .projects,
  .process,
  .capabilities {
    padding: 100px 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .project {
    min-height: 130px;
    grid-template-columns: 45px 1fr 35px;
  }

  .project-meta {
    display: none;
  }

  .project:hover,
  .project.active {
    padding-left: 10px;
  }

  .project-visual {
    height: 55vh;
  }

  .numbers {
    padding: 80px 20px;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 0;
  }

  .number-item:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }

  .process-head,
  .cap-title,
  .about {
    grid-template-columns: 50px 1fr;
  }

  .process-head {
    margin-bottom: 70px;
  }

  .process-item {
    grid-template-columns: 50px 1fr;
    padding: 35px 0;
  }

  .cap-grid {
    grid-template-columns: 1fr;
  }

  .cap {
    min-height: 260px;
  }

  .image-statement {
    height: 75vh;
  }

  .image-statement-text {
    padding: 30px;
  }

  .about {
    padding: 100px 20px;
  }

  .cta {
    min-height: 75vh;
    padding: 30px 20px 50px;
  }

  .footer {
    padding: 40px 20px 20px;
  }

  .footer-info,
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}


@media (max-width: 600px) {

  .loader {
    padding: 20px;
  }

  .loader-top,
  .loader-bottom {
    font-size: 8px;
  }

  .hero-grid {
    display: block;
  }

  .hero-index {
    margin-bottom: 35px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-image-wrap {
    height: 55vh;
    margin-top: 45px;
  }

  .hero-bottom-line {
    flex-direction: column;
    gap: 10px;
  }

  .section-heading h2,
  .cap-title h2 {
    font-size: 65px;
  }

  .project-name h3 {
    font-size: 29px;
  }

  .project-number {
    font-size: 9px;
  }

  .project-arrow {
    font-size: 18px;
  }

  .project-visual {
    height: 52vh;
    margin-top: 45px;
  }

  .project-overlay {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .project-overlay strong {
    font-size: 20px;
  }

  .number-item {
    padding: 0 15px;
  }

  .number-item strong {
    font-size: 65px;
  }

  .process-head h2 {
    font-size: 65px;
  }

  .image-statement-text h2 {
    font-size: 70px;
  }

  .about-content h2 {
    font-size: 65px;
  }

  .cta h2 {
    font-size: 75px;
  }

  .footer-brand {
    font-size: 70px;
  }
}