
:root {
  --page-background: #FBF9ED;
  --text: #181713;
  --muted-text: #686458;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page-background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing-page {
  position: relative;
  min-height: 240vh;
}

.hero-section {
  min-height: 118vh;
  overflow: hidden;
  pointer-events: none;
  position: relative;
  top: 0;
}

.hero-lockup {
  color: #CD2B29;
  backface-visibility: hidden;
  left: 50%;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 120ms linear, transform 120ms linear;
  white-space: nowrap;
  will-change: opacity, transform;
}

.hero-primary {
  transition: opacity 120ms linear, transform 120ms linear;
  will-change: opacity, transform;
}

.hero-name {
  color: #CD2B29;
  font-family: "Bebas Neue Pro", "Bebas Neue", Impact, sans-serif;
  font-size: clamp(180px, 25vw, 420px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.78;
  margin: 0;
}

.hero-surname {
  color: #CD2B29;
  font-family: "Didot", "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6vw, 116px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: 36px 0 0;
}

.hero-discipline {
  color: #CD2B29;
  font-family: "Bebas Neue Pro", "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(24px, 2.35vw, 46px);
  font-weight: 300;
  letter-spacing: 0.035em;
  line-height: 1;
  margin: 42px 0 0;
  text-transform: none;
}

.projects-section {
  margin-top: -37vh;
  min-height: 122vh;
  padding: 48px clamp(48px, 7vw, 140px) 140px;
  position: relative;
  z-index: 2;
}

.projects-strip {
  align-items: start;
  display: grid;
  column-gap: clamp(48px, 7vw, 110px);
  row-gap: clamp(70px, 9vw, 130px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
  opacity: 0.18;
  transform: translateY(90px);
  transition: opacity 120ms linear, transform 120ms linear;
  will-change: opacity, transform;
}

.project-item {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(160px, 0.82fr) minmax(190px, 1fr);
  justify-items: stretch;
  min-width: 0;
}

.project-copy {
  color: #050505;
  min-width: 0;
  text-align: left;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 100%;
}

.project-title {
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(26px, 2.05vw, 40px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.03;
  margin: 0;
  overflow-wrap: normal;
}

.project-note {
  color: #5F6774;
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(18px, 1.38vw, 27px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.12;
  margin: 8px 0 0;
  max-width: 330px;
  text-align: left;
}

.project-image {
  display: block;
  aspect-ratio: 1.08 / 1;
  max-height: none;
  object-fit: contain;
  position: relative;
  transition: filter 220ms ease, transform 220ms ease;
  width: 100%;
  will-change: transform;
  z-index: 1;
}

.project-swatch {
  aspect-ratio: 1.08 / 1;
  position: relative;
  transition: transform 220ms ease;
  width: 100%;
  z-index: 1;
}

.project-item:has(.project-image:hover) .project-copy,
.project-item:has(.project-swatch:hover) .project-copy {
  opacity: 0.22;
  transform: translateY(8px);
}

.project-image:hover,
.project-swatch:hover {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(2);
  z-index: 6;
}

.scroll-car {
  height: auto;
  opacity: 0.18;
  pointer-events: none;
  position: fixed;
  right: -84px;
  top: 0;
  transition: opacity 120ms linear, transform 120ms linear;
  width: clamp(140px, 16vw, 300px);
  will-change: opacity, transform;
  z-index: 3;
}

@media (max-width: 900px) {
  .hero-lockup {
    width: min(92vw, 720px);
    white-space: normal;
  }

  .hero-name {
    font-size: clamp(132px, 39vw, 260px);
  }

  .hero-surname {
    font-size: clamp(44px, 12vw, 78px);
    margin-top: 26px;
  }

  .hero-discipline {
    font-size: clamp(18px, 5vw, 30px);
    line-height: 1.08;
    margin-top: 28px;
  }

  .projects-section {
    margin-top: -37vh;
    padding-left: 24px;
    padding-right: 24px;
  }

  .projects-strip,
  .project-item {
    grid-template-columns: 1fr;
  }

  .project-item {
    gap: 18px;
    max-width: 520px;
    margin: 0 auto;
  }

  .project-copy {
    width: 100%;
  }

  .scroll-car {
    right: -68px;
    top: 0;
    width: clamp(118px, 30vw, 180px);
  }
}
