@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  --black: #050505;
  --white: #fff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-36: rgba(255, 255, 255, 0.36);
  --white-16: rgba(255, 255, 255, 0.16);
  --green: #07c42c;
  --shell: min(1360px, calc(100% - 80px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Figtree", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, figure { margin: 0; }
::selection { color: var(--black); background: var(--green); }
.shell { width: var(--shell); margin-inline: auto; }
.eyebrow {
  color: var(--white-70);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1 span, h2 span, .project-mark span { color: var(--green); }

.wave-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.wave-terrain {
  position: absolute;
  inset: -5%;
  background: url("./hero-wave-terrain.webp") center 58% / cover no-repeat;
  transform-origin: 54% 66%;
  transition: opacity 900ms ease;
}
.wave-terrain-back { opacity: 0.22; filter: blur(18px) saturate(1.24); transform: scale(1.1); }
.wave-terrain-front { opacity: 0.76; filter: saturate(0.94) contrast(1.05); transform: scale(1.03); }
.wave-motion {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 10px rgba(76, 225, 178, 0.16));
  transition: opacity 900ms ease;
}
.terrain-motion-ready .wave-motion { opacity: 0.92; }
.terrain-motion-ready .wave-terrain { opacity: 0; }
.wave-sheen {
  position: absolute;
  inset: -28% -12%;
  opacity: 0.26;
  background:
    radial-gradient(ellipse at 72% 62%, rgba(115, 105, 255, 0.2), transparent 34%),
    radial-gradient(ellipse at 49% 58%, rgba(14, 219, 148, 0.2), transparent 31%);
  mix-blend-mode: screen;
  filter: blur(46px);
}

.site-header {
  width: var(--shell);
  height: 82px;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}
.project-mark {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-header nav { display: flex; gap: clamp(20px, 3vw, 46px); }
.site-header nav a {
  color: var(--white-70);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.site-header nav a:hover { color: var(--green); }

main, .site-footer { position: relative; z-index: 1; }
.section-mask { position: relative; isolation: isolate; }
.section-mask::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero {
  min-height: 760px;
  height: min(900px, 100svh);
  display: grid;
  align-items: center;
}
.hero::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.22) 55%, rgba(5, 5, 5, 0.5)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.64), transparent 48%, rgba(5, 5, 5, 0.32));
}
.hero-grid {
  padding-top: 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  margin: 24px 0 28px;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}
.lead { max-width: 420px; color: var(--white-70); font-size: clamp(17px, 1.5vw, 21px); }
.button {
  min-height: 44px;
  margin-top: 36px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  color: var(--black);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.button:hover { color: var(--white); background: transparent; transform: translateY(-2px); }
.hero-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--white-16);
  border-radius: 34px;
  background: #131413;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 48%);
}
.hero-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; filter: saturate(0.82) contrast(1.04); }
.hero-image figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: var(--white-70);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro { padding: 118px 0 90px; }
.intro::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.54) 64%, rgba(5, 5, 5, 0.4)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.46), transparent 40%, rgba(5, 5, 5, 0.36));
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 64px;
}
.intro h2, .section-heading h2, .project h2 {
  max-width: 900px;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 450;
  letter-spacing: -0.05em;
  line-height: 1;
}
.intro-lead {
  max-width: 780px;
  margin: 44px 0 24px;
  color: var(--white);
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.45;
}
.intro-grid > div > p:last-child { max-width: 760px; color: var(--white-70); }
.audiences {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--white-36);
  border-bottom: 1px solid var(--white-16);
}
.audiences article { min-height: 340px; padding: 24px 30px 36px; border-right: 1px solid var(--white-16); }
.audiences article:last-child { border-right: 0; }
.audiences article > span, .number { display: block; color: var(--green); font-size: 11px; font-weight: 800; }
.audiences h3 { margin: 52px 0 14px; font-size: 24px; font-weight: 500; letter-spacing: -0.03em; }
.audiences p { max-width: 520px; color: var(--white-70); font-size: 14px; }

.collections { padding: 92px 0; }
.collections::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.66), rgba(5, 5, 5, 0.86) 58%, rgba(5, 5, 5, 0.56)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.54), transparent 36%, rgba(5, 5, 5, 0.46));
}
.section-heading {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  align-items: end;
  gap: 64px;
}
.collection-list { border-top: 1px solid var(--white-36); }
.collection {
  min-height: 350px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 42px 190px minmax(260px, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: clamp(24px, 3.6vw, 54px);
  border-bottom: 1px solid var(--white-16);
}
.number { align-self: start; padding-top: 8px; color: var(--white-70); }
.cover {
  width: 190px;
  height: 248px;
  object-fit: contain;
  filter: saturate(0.84);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.category {
  margin-bottom: 15px;
  color: var(--white-70);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.collection h3 { font-size: clamp(30px, 3vw, 44px); font-weight: 500; letter-spacing: -0.055em; line-height: 0.95; }
.collection-copy > p:last-child { max-width: 520px; margin-top: 18px; color: var(--white-70); font-size: 14px; }
.embed, .wide-embed { overflow: hidden; border: 1px solid var(--white-16); border-radius: 22px; background: #111; }
.embed { aspect-ratio: 16 / 9; }
.embed iframe, .wide-embed iframe { width: 100%; height: 100%; display: block; border: 0; }

.listen { padding: 100px 0; }
.listen::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.48) 60%, rgba(5, 5, 5, 0.68)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.56), transparent 46%, rgba(5, 5, 5, 0.36));
}
.listening-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 28px; }
.wide-embed { height: 352px; }
.wide-embed.video { height: 520px; grid-column: 1 / -1; }
.external-listen {
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  border-top: 1px solid var(--white-16);
}
.external-listen a { color: var(--white-70); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.external-listen a:hover { color: var(--green); }

.project { padding: 110px 0 90px; }
.project::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.84) 67%, rgba(5, 5, 5, 0.74)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.6), transparent 42%, rgba(5, 5, 5, 0.38));
}
.project-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: clamp(70px, 10vw, 150px); }
.project h2 { margin-top: 24px; }
.project-copy { padding-top: 36px; }
.project-copy p { max-width: 720px; margin-bottom: 24px; color: var(--white-70); font-size: 16px; }
.project-copy p:first-child { color: var(--white); font-size: 20px; }
.project-copy .thanks { font-size: 13px; }
.acknowledgements {
  margin-top: 78px;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 64px;
  border-top: 1px solid var(--white-36);
  border-bottom: 1px solid var(--white-16);
}
.acknowledgements > div { max-width: 860px; }
.acknowledgements p { margin-bottom: 18px; color: var(--white-70); }
.acknowledgements .signature { margin: 34px 0 0; color: var(--white); text-align: right; }
.funding {
  margin-top: 78px;
  padding: 36px 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1.3fr;
  align-items: center;
  gap: 64px;
  border-top: 1px solid var(--white-36);
  border-bottom: 1px solid var(--white-16);
}
.funding img { width: 100%; max-width: 560px; }
.funding p { max-width: 650px; color: var(--white-70); font-size: 13px; }

.site-footer { padding: 80px 0 44px; }
.site-footer::before { background: linear-gradient(0deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.58)); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 90px; }
.site-footer h2 { margin-top: 22px; font-size: clamp(30px, 3.7vw, 48px); font-weight: 500; letter-spacing: -0.05em; }
.footer-contact { min-width: 320px; display: grid; gap: 14px; color: var(--white-70); font-size: 12px; }
.footer-contact strong, .footer-contact a { color: var(--white); }
.footer-contact a:hover { color: var(--green); }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 48px, 860px); }
  .site-header nav a:nth-child(-n+3) { display: none; }
  .hero { height: auto; padding: 120px 0 80px; }
  .hero-grid { padding-top: 0; grid-template-columns: 0.72fr 1.28fr; gap: 48px; }
  .intro-grid, .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .collection { grid-template-columns: 34px 150px 1fr; }
  .cover { width: 150px; height: 208px; }
  .embed { grid-column: 3; width: 100%; max-width: 560px; }
  .listening-grid { grid-template-columns: 1fr; }
  .wide-embed { height: 430px; }
  .wide-embed:first-child { height: 352px; }
  .wide-embed.video { height: 430px; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 32px); }
  .site-header { height: 72px; }
  .project-mark { font-size: 11px; }
  .site-header nav a:last-child { font-size: 10px; }
  .hero { min-height: 0; padding: 108px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero h1 { font-size: clamp(38px, 12vw, 52px); }
  .hero-image { border-radius: 24px; }
  .intro, .collections, .listen, .project { padding: 82px 0; }
  .intro h2, .section-heading h2, .project h2 { font-size: 32px; }
  .audiences { margin-top: 62px; grid-template-columns: 1fr; }
  .audiences article { min-height: 0; padding: 24px 0 30px; border-right: 0; border-bottom: 1px solid var(--white-16); }
  .audiences h3 { margin-top: 34px; }
  .section-heading { margin-bottom: 40px; }
  .collection { padding: 26px 0 34px; grid-template-columns: 28px 1fr; gap: 18px; }
  .cover { grid-column: 2; width: 128px; height: 170px; }
  .collection-copy, .embed { grid-column: 2; }
  .embed { margin-top: 6px; }
  .wide-embed { height: 352px; border-radius: 18px; }
  .wide-embed.video { height: 250px; }
  .project-grid, .acknowledgements, .funding, .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .project-copy { padding-top: 0; }
  .funding { gap: 28px; }
  .footer-contact { min-width: 0; }
  .wave-terrain { inset: -2% -58%; background-position: 58% 58%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
