:root {
  --bg: #0b0b0b;
  --bg-soft: #111111;
  --text: #f1eee8;
  --muted: #969696;
  --line: rgba(255,255,255,.16);
  --accent-rgb: 215, 205, 190;
  --header-height: 82px;
  --pad-x: clamp(24px, 5vw, 88px);
  --pad-y: clamp(96px, 12vh, 160px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

::selection {
  background: rgba(var(--accent-rgb), .28);
  color: #fff;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .025;
  background-image:
    radial-gradient(circle at 20% 20%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, #fff 0 1px, transparent 1px);
  background-size: 19px 19px, 23px 23px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height);
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  mix-blend-mode: difference;
  color: white;
}

.brand {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.05em;
  font-size: 1.15rem;
}

.main-nav {
  display: flex;
  gap: clamp(18px, 2.2vw, 34px);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .14em;
}

.main-nav a {
  opacity: .72;
  transition: opacity .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: #fff;
  margin: 7px 0;
  transition: transform .25s ease;
}

.panel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.section-pad {
  padding: var(--pad-y) var(--pad-x);
}

.section-index {
  position: absolute;
  top: calc(var(--header-height) + 12px);
  left: var(--pad-x);
  z-index: 3;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.kicker,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: rgba(255,255,255,.58);
}

.hero {
  min-height: 100svh;
  padding: calc(var(--header-height) + 34px) var(--pad-x) 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  width: 62vw;
  height: 62vw;
  max-width: 900px;
  max-height: 900px;
  right: -14vw;
  top: 10vh;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 0 100px rgba(var(--accent-rgb), .03),
    inset 0 0 100px rgba(var(--accent-rgb), .03);
  z-index: -1;
}

.hero-glow {
  position: absolute;
  width: 52vw;
  height: 52vw;
  right: -8vw;
  top: 18vh;
  background: radial-gradient(circle, rgba(var(--accent-rgb), .08), transparent 67%);
  filter: blur(20px);
  z-index: -1;
}

.hero-content {
  margin-top: auto;
  margin-bottom: 10vh;
}

.hero-title {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .78;
  margin: 0;
  font-size: clamp(5.1rem, 16.2vw, 15rem);
}

.hero-title span {
  display: block;
}

.hero-title span:last-child {
  margin-left: 7vw;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-top: clamp(40px, 7vh, 90px);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.hero-role,
.hero-statement {
  margin: 0;
  max-width: 540px;
}

.hero-role {
  color: var(--muted);
}

.hero-statement {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.25;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  right: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-size: .65rem;
  letter-spacing: .18em;
  color: var(--muted);
}

.scroll-line {
  display: inline-block;
  width: 52px;
  height: 1px;
  background: rgba(255,255,255,.35);
}

.about {
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 90% 30%, rgba(var(--accent-rgb), .08), transparent 28%),
    #0e0e0e;
}

.about-grid,
.digital-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
}

.display-heading {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .93;
  font-size: clamp(3.5rem, 8.3vw, 8.5rem);
}

.display-heading em,
.world-title em {
  font-weight: 300;
  color: rgba(var(--accent-rgb), .75);
}

.about-copy,
.digital-copy {
  max-width: 580px;
  color: #aaa;
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.75;
}

.lead {
  margin-top: 0;
  color: var(--text);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.4;
}

.world {
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  align-items: flex-end;
  background-color: #101010;
}

.world::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scale(1.04);
  transition: transform 1.5s cubic-bezier(.2,.8,.2,1);
  background-size: cover;
  background-position: center;
  filter: saturate(.65) contrast(1.05);
}

.world.in-view::before {
  transform: scale(1);
}

.world-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,7,7,.96) 0%, rgba(7,7,7,.78) 44%, rgba(7,7,7,.20) 100%),
    linear-gradient(0deg, rgba(7,7,7,.85), transparent 55%);
}

.books::before {
  background-image:
    radial-gradient(circle at 74% 35%, rgba(155,136,112,.18), transparent 24%),
    linear-gradient(120deg, #13110f 0%, #17130f 55%, #0b0b0b 100%);
}

.music::before {
  background-image:
    radial-gradient(circle at 76% 30%, rgba(90,110,150,.18), transparent 22%),
    linear-gradient(120deg, #0b0d11 0%, #10151d 56%, #090909 100%);
}

.visual::before {
  background-image:
    radial-gradient(circle at 72% 28%, rgba(130,140,145,.16), transparent 20%),
    linear-gradient(120deg, #101112 0%, #151719 55%, #0b0b0b 100%);
}

.world-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1450px);
}

.world-content.split {
  display: grid;
  grid-template-columns: 1fr minmax(320px, .78fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
}

.world-title {
  margin: 14px 0 clamp(45px, 9vh, 90px);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: .82;
  letter-spacing: -.07em;
  font-weight: 500;
}

.project-list {
  width: min(100%, 760px);
}

.project-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: 110px;
  border-top: 1px solid rgba(255,255,255,.22);
  transition: padding .25s ease, background .25s ease;
}

.project-row:last-child {
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.project-row:hover {
  padding-left: 16px;
  padding-right: 16px;
  background: rgba(255,255,255,.025);
}

.project-row > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-name {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2.5rem);
  letter-spacing: -.035em;
}

.project-meta {
  color: rgba(255,255,255,.48);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.arrow {
  font-size: 1.6rem;
  color: rgba(255,255,255,.6);
  transition: transform .25s ease;
}

.project-row:hover .arrow,
.big-link:hover span,
.cta:hover span {
  transform: translate(5px, -5px);
}

.visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 46px;
}

.visual-tags span {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 10px 16px;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.big-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 4.8rem);
  letter-spacing: -.04em;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 8px;
}

.big-link span,
.cta span {
  display: inline-block;
  transition: transform .25s ease;
}

.digital {
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #0c0d0e;
  background-size: 60px 60px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 15px 22px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  transition: background .25s ease;
}

.cta:hover {
  background: rgba(255,255,255,.06);
}

.next {
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 35% 45%, rgba(var(--accent-rgb), .09), transparent 28%),
    #080808;
}

.next-inner {
  width: 100%;
}

.next-title {
  margin: 12px 0 clamp(55px, 10vh, 110px);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(5rem, 13vw, 13rem);
  letter-spacing: -.075em;
  line-height: .72;
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.ticker span {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .14em;
}

.contact {
  min-height: 85svh;
  padding: var(--pad-y) var(--pad-x) 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #e8e4dc;
  color: #111;
}

.contact .section-index,
.contact .kicker {
  color: rgba(0,0,0,.5);
}

.contact-title {
  margin: 20px 0 70px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(6rem, 17vw, 16rem);
  letter-spacing: -.08em;
  line-height: .72;
}

.contact-links {
  width: min(100%, 780px);
  display: flex;
  flex-direction: column;
}

.contact-links a {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,.3);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 2.5rem);
}

.contact-links a:last-child {
  border-bottom: 1px solid rgba(0,0,0,.3);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 100px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,.2);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .85s ease,
    transform .85s cubic-bezier(.2,.8,.2,1);
}

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

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background: #0b0b0b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10vw;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }

  .main-nav a {
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(2.4rem, 9vw, 5rem);
    letter-spacing: -.04em;
    text-transform: none;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero-title {
    font-size: clamp(4.2rem, 20vw, 9rem);
  }

  .hero-title span:last-child {
    margin-left: 0;
  }

  .hero-bottom,
  .about-grid,
  .digital-grid,
  .world-content.split {
    grid-template-columns: 1fr;
  }

  .hero-bottom {
    gap: 22px;
  }

  .about-grid,
  .digital-grid {
    gap: 56px;
  }

  .world-overlay {
    background:
      linear-gradient(0deg, rgba(7,7,7,.93) 0%, rgba(7,7,7,.68) 75%, rgba(7,7,7,.36) 100%);
  }

  .project-row {
    min-height: 94px;
  }
}

@media (max-width: 620px) {
  :root {
    --pad-x: 20px;
    --pad-y: 100px;
  }

  .section-index {
    top: calc(var(--header-height) + 16px);
  }

  .hero {
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }

  .hero-content {
    margin-bottom: 14vh;
  }

  .hero-title {
    font-size: clamp(3.9rem, 22vw, 7rem);
    line-height: .82;
  }

  .hero-statement {
    font-size: 1.15rem;
  }

  .scroll-cue {
    left: var(--pad-x);
    right: auto;
  }

  .display-heading {
    font-size: clamp(3rem, 15vw, 5.6rem);
  }

  .world {
    padding-top: 125px;
  }

  .world-title {
    font-size: clamp(3.6rem, 18vw, 6rem);
    margin-bottom: 48px;
  }

  .project-name {
    font-size: 1.35rem;
  }

  .project-meta {
    font-size: .68rem;
  }

  .next-title {
    font-size: clamp(4.5rem, 21vw, 7rem);
  }

  .contact-title {
    font-size: clamp(5rem, 24vw, 8rem);
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
