* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
  /* font-family: "Akkurat Trial TT"; */
}

html,
body {
  width: 100vw;
  height: 400vh;
  background-color: #d6d6d6;
  color: #1f1f1f;
  overflow-x: hidden;
}

h1 {
  text-transform: uppercase;
  font-size: 225px;
  font-weight: 400;
  line-height: 0.85;
}

a,
p {
  text-decoration: none;
  color: #1f1f1f;
  font-size: 13px;
  font-weight: 400;
  line-height: 0.9;
}

p span {
  font-family: "Gascogne Serial";
}

.model {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

nav {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  text-transform: uppercase;
}

section {
  width: 100vw;
  height: 100vh;
}

.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em;
}

.header-row {
  display: flex;
  gap: 12em;
  align-items: center;
}

.header-row p {
  text-transform: uppercase;
  line-height: 1rem;
  width: 20%;
}

.archive {
  height: 200vh;
  display: flex;
  flex-direction: column;
  gap: 3em;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.archive-header p {
  font-family: "Gascogne Serial";
  font-style: italic;
}

.archive h2 {
  font-family: "Gascogne Serial";
  font-size: 120px;
  font-weight: 300;
  color: #cacaca;
}

.archive-info {
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.archive-info p {
  text-transform: uppercase;
  color: #dadada;
}

.archive-item {
  position: relative;
  z-index: 10;
  transition: color 0.4s ease, transform 0.4s ease;
  cursor: pointer;
}

.archive-item h2,
.archive-item .archive-info p {
  transition: color 0.4s ease;
}

.archive-item:hover h2,
.archive-item:hover .archive-info p {
  color: #1f1f1f; /* soft white, not full #ffffff */
}

.archive-item:hover {
  transform: translateY(-4px); /* subtle lift on hover */
}

.outro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6em 2em 2em 2em;
}

.outro-copy h2 {
  width: 75%;
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5em;
}

.outro-copy h2 .line {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
  display: block;
}

.outro-copy h2 .line span {
  position: relative;
  will-change: transform;
  display: flex;
  transform: translateY(70px);
}

.outro-copy p {
  display: flex;
  margin: 1em 0;
  gap: 2em;
  text-transform: uppercase;
}

.outro-copy p span {
  font-family: "Akkurat Trial TT";
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-transform: uppercase;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.lenis.lenis-autoToggle {
  transition-property: overflow;
  transition-duration: 1ms;
  transition-behavior: allow-discrete;
}

.h1-mobile {
  display: none;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 120px;
  }

  .h1-mobile {
    display: block;
    font-size: 23vw;
    line-height: 6rem;
    position: relative;
    z-index: 99;
  }

  .header-row {
    display: none;
    flex-direction: column;
    gap: 2em;
    align-items: flex-start;
  }

  .header-row p {
    width: 100%;
    font-size: 14px;
    line-height: 1.2;
  }

  .archive h2 {
    font-size: 64px;
  }

  .archive-info {
    flex-direction: column;
    gap: 0.5em;
  }

  .outro-copy h2 {
    font-size: 36px;
    width: 100%;
    position: relative;
    z-index: 99;
  }

  .outro-copy p {
    flex-direction: column;
    gap: 0.5em;
  }

  .footer {
    flex-direction: column;
    gap: 1em;
    align-items: flex-start;
  }

  nav {
    padding: 1em;
  }
}
