@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --black: #0b0b0b;
  --ink: #151515;
  --cream: #e9e6dc;
  --paper: #f2f0e8;
  --grey: #b9b7ae;
  --line: rgba(10, 10, 10, 0.22);
  --white: #f7f6f1;
  --red: #ef3b24;
  --dark-red: #c92818;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--black);
  font-family: "Archivo", sans-serif;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}


/* =========================
   LOADER
========================= */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  color: var(--paper);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.loader-top,
.loader-bottom {
  display: flex;
  justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.loader-center {
  display: flex;
  align-items: center;
  gap: 20px;
}

.loader-number {
  font-size: clamp(80px, 18vw, 250px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.09em;
}

.loader-line {
  height: 2px;
  background: var(--red);
  width: 0;
}

.loader-text {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
}


/* =========================
   TOP STRIP
========================= */

.top-strip {
  min-height: 30px;
  padding: 7px 20px;
  background: var(--black);
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.07em;
}


/* =========================
   HEADER
========================= */

.header {
  height: 76px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 25px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 240, 232, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: baseline;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.07em;
  width: max-content;
}

.brand b {
  color: var(--red);
  font-size: 18px;
  margin-left: 2px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 35px;
}

.main-nav a,
.header-contact {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  position: relative;
}

.main-nav a::after,
.header-contact::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.header-contact:hover::after {
  width: 100%;
}

.header-contact {
  justify-self: end;
}

.header-contact span {
  color: var(--red);
  font-size: 14px;
}


/* =========================
   HERO
========================= */

.hero {
  min-height: calc(100vh - 106px);
  position: relative;
  padding: 40px 25px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 2;
}

.hero-title {
  position: relative;
  z-index: 2;
  margin-top: 50px;
}

.hero-title div {
  font-size: clamp(80px, 16vw, 245px);
  font-weight: 900;
  line-height: 0.76;
  letter-spacing: -0.09em;
}

.hero-title-offset {
  margin-left: 11vw;
  color: transparent;
  -webkit-text-stroke: 2px var(--black);
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: end;
  gap: 30px;
  margin-top: 80px;
}

.hero-bottom p {
  max-width: 380px;
  font-size: 14px;
  line-height: 1.5;
}

.hero-coordinate {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.scroll-link {
  justify-self: end;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 7px;
}

.scroll-link span {
  color: var(--red);
  margin-left: 15px;
}

.hero-grid-lines {
  position: absolute;
  inset: 0 25px;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-grid-lines span {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-grid-lines span:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}


/* =========================
   MANIFESTO
========================= */

.manifesto {
  padding: 140px 25px;
  background: var(--black);
  color: var(--paper);
}

.section-index {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.manifesto-content {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  margin-top: 90px;
}

.manifesto h2 {
  max-width: 1050px;
  font-size: clamp(55px, 9vw, 145px);
  line-height: 0.84;
  letter-spacing: -0.075em;
  font-weight: 800;
}

.manifesto h2 span {
  margin-left: 10vw;
}

.manifesto h2 em {
  color: var(--red);
  font-style: normal;
}

.manifesto-side {
  padding-top: 20px;
}

.red-square {
  width: 24px;
  height: 24px;
  background: var(--red);
  margin-bottom: 30px;
}

.manifesto-side p {
  font-size: 14px;
  line-height: 1.6;
  color: #d2d0c7;
  margin-bottom: 40px;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}


/* =========================
   WORK
========================= */

.work {
  padding: 130px 25px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: 35px;
}

.section-heading h2 {
  font-size: clamp(65px, 10vw, 155px);
  line-height: 0.8;
  letter-spacing: -0.08em;
  margin-top: 50px;
}

.heading-note {
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}


/* PROJECT */

.project {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 45px;
  align-items: start;
}

.project-reverse {
  grid-template-columns: 0.65fr 1.35fr;
}

.project-image {
  position: relative;
  overflow: hidden;
  background: #d1cec4;
}

.project-large .project-image {
  min-height: 650px;
}

.project-reverse .project-image {
  min-height: 570px;
}

.project-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1);
}

.project:hover .project-image img {
  transform: scale(1.035);
}

.image-label {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px 15px;
  background: rgba(11, 11, 11, 0.9);
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.project-info {
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-number {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--red);
}

.project-title-block h3 {
  font-size: clamp(50px, 6vw, 100px);
  line-height: 0.82;
  letter-spacing: -0.08em;
  font-weight: 800;
}

.project-title-block p {
  margin-top: 22px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.project-description {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 13px;
  line-height: 1.55;
}

.project-description p {
  max-width: 280px;
}

.project-description span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}


/* =========================
   RED BREAK
========================= */

.red-break {
  background: var(--red);
  color: var(--black);
  padding: 40px 25px 45px;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.red-break-top,
.red-break-bottom {
  display: flex;
  justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.red-break-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.red-break-title span {
  font-size: clamp(50px, 7vw, 100px);
}

.red-break-title strong {
  font-size: clamp(120px, 23vw, 350px);
  color: transparent;
  -webkit-text-stroke: 3px var(--black);
}

.red-break-bottom p {
  max-width: 300px;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  line-height: 1.45;
}


/* =========================
   STUDIO
========================= */

.studio {
  padding: 140px 25px;
}

.studio-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 0.7fr 1.1fr 0.8fr;
  gap: 25px;
  align-items: start;
}

.studio-title h2 {
  font-size: clamp(50px, 6vw, 90px);
  line-height: 0.83;
  letter-spacing: -0.08em;
}

.studio-title h2 span {
  color: var(--red);
}

.studio-image {
  position: relative;
}

.studio-image img {
  height: 650px;
  object-fit: cover;
  filter: grayscale(100%);
}

.studio-caption {
  position: absolute;
  left: 15px;
  bottom: 15px;
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.studio-copy {
  padding-top: 5px;
}

.large-copy {
  font-size: 25px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em;
}

.studio-copy > p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 55px;
}

.studio-list {
  border-top: 1px solid var(--line);
}

.studio-list div {
  display: grid;
  grid-template-columns: 35px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.studio-list span {
  color: var(--red);
}


/* =========================
   APPROACH
========================= */

.approach {
  background: #d6d3c8;
  padding: 140px 25px;
}

.approach-header {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 50px;
}

.approach-header h2 {
  font-size: clamp(60px, 10vw, 150px);
  line-height: 0.78;
  letter-spacing: -0.085em;
}

.approach-header h2 span {
  color: var(--red);
}

.approach-steps {
  margin-top: 120px;
  border-top: 2px solid var(--black);
}

.approach-step {
  min-height: 150px;
  border-bottom: 1px solid rgba(0,0,0,.3);
  display: grid;
  grid-template-columns: 80px 1fr 30px;
  align-items: center;
  gap: 30px;
}

.approach-step > span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: var(--red);
}

.approach-step h3 {
  font-size: 32px;
  letter-spacing: -0.05em;
}

.approach-step p {
  max-width: 500px;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 8px;
}

.approach-step b {
  font-size: 22px;
  font-weight: 400;
}


/* =========================
   NUMBERS
========================= */

.numbers {
  background: var(--black);
  color: var(--paper);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #333;
}

.number-cell {
  min-height: 260px;
  padding: 35px 25px;
  border-right: 1px solid #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.number-cell:last-child {
  border-right: none;
}

.number-cell strong {
  font-size: clamp(70px, 8vw, 125px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.number-cell span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  color: #aaa;
}


/* =========================
   MATERIAL
========================= */

.material {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--cream);
}

.material-image {
  min-height: 750px;
  position: relative;
  overflow: hidden;
}

.material-image img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
}

.material-overlay {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.material-overlay span {
  padding: 8px 11px;
  background: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.material-copy {
  padding: 80px 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.material-copy h2 {
  font-size: clamp(55px, 7vw, 110px);
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.material-copy h2 span {
  color: var(--red);
}

.material-copy p {
  max-width: 390px;
  font-size: 14px;
  line-height: 1.6;
}

.material-line {
  border-top: 1px solid var(--line);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}


/* =========================
   CLIENT CTA
========================= */

.client-cta {
  background: var(--red);
  padding: 30px 25px 35px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta-top,
.cta-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.cta-main {
  position: relative;
}

.cta-small {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  margin-bottom: 35px;
}

.cta-main h2 {
  font-size: clamp(100px, 18vw, 280px);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.7;
}

.cta-main h2 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--black);
}

.cta-button {
  position: absolute;
  right: 3vw;
  bottom: 10px;
  width: 155px;
  height: 155px;
  border: 1px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  padding: 25px;
  transition: 0.4s ease;
}

.cta-button span {
  font-size: 16px;
  margin-left: 7px;
}

.cta-button:hover {
  background: var(--black);
  color: var(--red);
  transform: rotate(8deg);
}

.cta-bottom {
  align-items: end;
}

.cta-bottom p {
  max-width: 340px;
  line-height: 1.5;
}


/* =========================
   FOOTER
========================= */

.footer {
  background: var(--black);
  color: var(--paper);
  padding: 60px 25px 20px;
}

.footer-brand {
  font-size: clamp(90px, 17vw, 270px);
  line-height: 0.72;
  font-weight: 900;
  letter-spacing: -0.1em;
  margin-bottom: 100px;
}

.footer-brand span {
  color: var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.footer-grid > div {
  padding: 25px 20px 25px 0;
  border-right: 1px solid #333;
}

.footer-grid > div:last-child {
  border-right: none;
}

.footer-grid span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  color: #888;
}

.footer-grid p {
  font-size: 12px;
  line-height: 1.7;
  margin-top: 20px;
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  color: #888;
}


/* =========================
   REVEAL
========================= */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .header {
    grid-template-columns: 1fr 1fr;
  }

  .main-nav {
    display: none;
  }

  .hero-title-offset {
    margin-left: 5vw;
  }

  .hero-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .scroll-link {
    justify-self: start;
  }

  .manifesto-content {
    grid-template-columns: 1fr;
  }

  .manifesto-side {
    max-width: 400px;
  }

  .project,
  .project-reverse {
    grid-template-columns: 1fr;
  }

  .project-reverse .project-image {
    order: -1;
  }

  .project-large .project-image,
  .project-reverse .project-image {
    min-height: 500px;
  }

  .project-info {
    min-height: 430px;
  }

  .studio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .studio-title {
    grid-column: 1 / -1;
  }

  .studio-image img {
    height: 600px;
  }

  .approach-header {
    grid-template-columns: 1fr;
  }

  .material {
    grid-template-columns: 1fr;
  }

  .material-image {
    min-height: 600px;
  }

  .material-copy {
    min-height: 550px;
  }

  .cta-button {
    width: 130px;
    height: 130px;
  }
}


@media (max-width: 650px) {

  .top-strip div:nth-child(2) {
    display: none;
  }

  .top-strip {
    justify-content: space-between;
  }

  .header {
    padding: 0 16px;
  }

  .header-contact {
    font-size: 8px;
  }

  .hero {
    padding: 25px 16px 18px;
    min-height: calc(100vh - 106px);
  }

  .hero-title {
    margin-top: 30px;
  }

  .hero-title div {
    font-size: 22vw;
  }

  .hero-title-offset {
    -webkit-text-stroke: 1px var(--black);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .scroll-link {
    justify-self: start;
  }

  .manifesto,
  .work,
  .studio,
  .approach {
    padding-left: 16px;
    padding-right: 16px;
  }

  .manifesto {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .manifesto h2 {
    font-size: 16vw;
  }

  .manifesto h2 span {
    margin-left: 4vw;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 18vw;
  }

  .heading-note {
    justify-self: start;
    margin-top: 30px;
  }

  .project {
    padding: 50px 0;
    gap: 25px;
  }

  .project-large .project-image,
  .project-reverse .project-image {
    min-height: 400px;
  }

  .project-title-block h3 {
    font-size: 18vw;
  }

  .project-info {
    min-height: 370px;
  }

  .red-break {
    min-height: 65vh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .red-break-title strong {
    font-size: 35vw;
  }

  .red-break-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .studio {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .studio-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .studio-title h2 {
    font-size: 18vw;
  }

  .studio-image img {
    height: 450px;
  }

  .approach {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .approach-header h2 {
    font-size: 18vw;
  }

  .approach-steps {
    margin-top: 70px;
  }

  .approach-step {
    min-height: 140px;
    grid-template-columns: 35px 1fr 20px;
    gap: 12px;
  }

  .approach-step h3 {
    font-size: 24px;
  }

  .numbers {
    grid-template-columns: 1fr 1fr;
  }

  .number-cell {
    min-height: 180px;
    padding: 25px 16px;
    border-bottom: 1px solid #333;
  }

  .number-cell:nth-child(2) {
    border-right: none;
  }

  .number-cell strong {
    font-size: 18vw;
  }

  .material-image {
    min-height: 450px;
  }

  .material-copy {
    padding: 60px 16px;
    min-height: 500px;
  }

  .material-copy h2 {
    font-size: 18vw;
  }

  .client-cta {
    min-height: 75vh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .cta-main h2 {
    font-size: 25vw;
  }

  .cta-button {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 60px;
    width: 115px;
    height: 115px;
  }

  .cta-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-brand {
    font-size: 25vw;
    margin-bottom: 70px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div {
    border-bottom: 1px solid #333;
  }

  .footer-grid > div:nth-child(2) {
    border-right: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

}