:root {
  --ink: #f1efe9;
  --muted: #9b9992;
  --line: #2a2927;
  --bg: #090909;
  --accent: #c9ff53;
  --serif: georgia, 'Times New Roman', serif;
  --sans: arial, helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 99;
  top: -80px;
  left: 1rem;
  background: var(--accent);
  color: #000;
  padding: 0.8rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3vw;
  mix-blend-mode: difference;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
}

.brand span {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 2rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  color: white;
  background: none;
  border: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 20vh 6vw 6vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, #25331a 0, transparent 30%),
    radial-gradient(circle at 20% 80%, #261718 0, transparent 32%);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.hero h1,
.section h2,
.contact h2 {
  font-size: clamp(3.5rem, 9vw, 9.2rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  margin: 0;
  max-width: 1200px;
}

.hero h1 em,
.section h2 em,
.contact h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.hero-bottom > p {
  max-width: 430px;
  color: #c3c1ba;
  line-height: 1.6;
}

.circle-link {
  border: 1px solid #777;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.3s;
}

.circle-link:hover {
  background: var(--accent);
  color: #000;
  transform: rotate(-8deg);
}

.section {
  padding: 9rem 6vw;
  border-top: 1px solid var(--line);
}

.section-label {
  display: flex;
  gap: 2rem;
  color: var(--muted);
  margin-bottom: 6rem;
}

.section-label span {
  color: var(--accent);
}

.about {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 3vw;
}

.about-copy h2 {
  font-size: clamp(3.2rem, 7vw, 7.5rem);
}

.lead {
  font-size: clamp(1.3rem, 2.3vw, 2.2rem);
  line-height: 1.35;
  max-width: 850px;
  margin: 4rem 0;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  color: #b7b5ae;
  line-height: 1.75;
}

.signature {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 5rem;
}

.section-heading h2 {
  font-size: clamp(3rem, 7vw, 7rem);
}

.section-heading p {
  color: var(--muted);
}

.tracks {
  border-top: 1px solid var(--line);
}

.track {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  color: var(--ink);
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 1rem;
  text-align: left;
  padding: 1.4rem 0;
  align-items: center;
  cursor: pointer;
  transition: 0.25s;
}

.track:hover,
.track:focus-visible {
  padding-left: 1.2rem;
  color: #000;
  background: var(--accent);
}

.track .number {
  font-size: 0.7rem;
  color: var(--muted);
}

.track strong {
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 400;
}

.play {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-image {
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background-size: cover;
  background-position: center;
  filter: saturate(0.65);
  transition: 0.4s;
}

.project:hover .project-image {
  filter: saturate(1);
  transform: scale(0.985);
}

.project-one {
  background-image:
    linear-gradient(20deg, #4b3323aa, #2222),
    url('assets/8BBBD35D-7E73-4244-8F25-461ED1AF6AEF/thumbnail.jpeg');
}

.project-two {
  background-image:
    linear-gradient(20deg, #4b1825aa, #2222),
    url('assets/8BBBD35D-7E73-4244-8F25-461ED1AF6AEF/thumbnail.jpeg');
}

.project-three {
  background-image:
    linear-gradient(20deg, #183f36aa, #2222),
    url('assets/8BBBD35D-7E73-4244-8F25-461ED1AF6AEF/thumbnail.jpeg');
}

.project-image span {
  font-size: 3rem;
  font-family: var(--serif);
}

.project > p {
  color: var(--accent);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 1.5rem 0 0.5rem;
}

.project h3 {
  font-size: 1.8rem;
  margin: 0.4rem 0;
}

.project small {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 4rem;
  border-bottom: 1px solid;
  padding-bottom: 0.4rem;
}

.contact {
  padding: 13rem 6vw 5rem;
  background: var(--ink);
  color: #0c0c0c;
}

.contact h2 {
  font-size: clamp(3.4rem, 8vw, 8.2rem);
  margin: 2rem 0 5rem;
}

.email {
  font-size: clamp(1.1rem, 3vw, 3rem);
  border-bottom: 2px solid;
}

.contact-meta {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 2rem 6vw;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

dialog {
  width: min(880px, 92vw);
  background: #111;
  color: var(--ink);
  border: 1px solid #444;
  padding: 3rem;
}

dialog::backdrop {
  background: #000d;
  backdrop-filter: blur(8px);
}

dialog h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4.5rem);
  margin: 1rem 0 2rem;
}

dialog video {
  display: block;
  width: 100%;
  max-height: 60vh;
  background: #000;
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  background: none;
  border: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}

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

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

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

@media (width <= 760px) {
  .site-header {
    padding: 1.2rem 5vw;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 3.8rem;
    right: 5vw;
    flex-direction: column;
    background: #111;
    padding: 1.5rem;
    mix-blend-mode: normal;
  }

  nav.open {
    display: flex;
  }

  .hero {
    padding: 19vh 5vw 5vh;
  }

  .hero h1 {
    font-size: 16vw;
  }

  .hero-bottom > p {
    max-width: 60%;
    font-size: 0.9rem;
  }

  .circle-link {
    width: 82px;
    height: 82px;
  }

  .section {
    padding: 6rem 5vw;
  }

  .about {
    display: block;
  }

  .section-label {
    margin-bottom: 3rem;
  }

  .lead {
    margin: 3rem 0;
  }

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

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 2rem;
  }

  .track {
    grid-template-columns: 2rem 1fr auto;
  }

  .contact {
    padding: 8rem 5vw 4rem;
  }

  .contact-meta,
  footer {
    flex-direction: column;
    gap: 1rem;
  }

  dialog {
    padding: 2rem 1rem;
  }
}
