:root {
  --ink: #183a36;
  --paper: #f7f2e8;
  --fog: #b9c8db;
  --acid: #e5aa27;
  --aqua: #28a7b1;
  --blue: #1f6f92;
  --orange: #ef5b34;
  --pink: #db5ca5;
  --green: #17976b;
  --red: #e44d45;
  --line-dark: rgba(24, 58, 54, .2);
  --line-light: rgba(255, 255, 255, .2);
  --pad: clamp(22px, 4.5vw, 72px);
  --display: "Merriweather", "Shippori Mincho B1", Georgia, serif;
  --heading: "Stardos Stencil", "Shippori Mincho B1", Georgia, serif;
  --body: "Merriweather", "Shippori Mincho B1", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-noise {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  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='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: height .35s ease, color .35s ease, background .35s ease, border-color .35s ease;
}

.site-header.is-scrolled {
  height: 68px;
  color: var(--ink);
  background: rgba(247, 242, 232, .92);
  border-color: var(--line-dark);
  backdrop-filter: blur(16px);
}

.wordmark {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: baseline;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
}

.wordmark i {
  color: var(--acid);
  font-style: normal;
}

.is-scrolled .wordmark i {
  color: var(--orange);
}

.wordmark-suffix {
  opacity: .45;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 2.2vw, 42px);
  margin-left: auto;
  margin-right: clamp(24px, 3vw, 50px);
}

.desktop-nav a,
.lang-link {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.desktop-nav a::after,
.lang-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.lang-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-button {
  display: none;
  width: 34px;
  height: 34px;
  padding: 8px 3px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .25s ease;
}

.menu-open .menu-button span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-button span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 2;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--pad) 40px;
  color: var(--paper);
  background: var(--ink);
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}

.mobile-nav a {
  padding: 8px 0;
  font-family: var(--display);
  font-size: clamp(35px, 10vw, 64px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.05;
  border-bottom: 1px solid var(--line-light);
}

.menu-open .mobile-nav {
  visibility: visible;
  opacity: 1;
}

.menu-open .site-header {
  color: var(--paper);
  background: transparent;
  border-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 118px var(--pad) 48px;
  color: var(--paper);
  background: var(--ink);
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(24, 58, 54, .96) 0%, rgba(24, 58, 54, .82) 37%, rgba(24, 58, 54, .2) 76%, rgba(24, 58, 54, .08) 100%),
    linear-gradient(0deg, rgba(24, 58, 54, .5), transparent 52%);
}

.hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(.96) contrast(1.02);
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  top: -10vw;
  left: 25%;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: rgba(219, 92, 165, .24);
  filter: blur(80px);
  animation: drift 12s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

.signal-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .48;
}

.hero-kicker,
.hero-copy,
.hero-foot {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1 / -1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(229, 170, 39, .72);
  animation: pulse 2.5s ease-in-out infinite;
}

.hero-copy {
  align-self: end;
  max-width: 1100px;
  padding: 6vh 0 3vh;
  grid-column: 1 / -1;
}

.hero-index {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(73px, 12.3vw, 196px);
  font-weight: 800;
  letter-spacing: -.085em;
  line-height: .74;
  text-transform: lowercase;
}

.hero h1 span {
  color: var(--acid);
  text-shadow: 0 0 35px rgba(229, 170, 39, .28);
}

.hero-statement {
  max-width: 560px;
  margin: clamp(28px, 4vh, 50px) 0 0 30%;
  font-size: clamp(15px, 1.5vw, 21px);
  line-height: 1.8;
  letter-spacing: .08em;
}

.hero-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  grid-column: 1 / -1;
}

.hero-foot > p {
  margin: 0 0 6px;
  font-size: 10px;
  letter-spacing: .11em;
  line-height: 1.8;
  text-align: right;
  text-transform: uppercase;
}

.round-link {
  display: flex;
  width: 106px;
  height: 106px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.round-link b {
  font-size: 20px;
  font-weight: 400;
}

.round-link:hover {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  transform: rotate(-4deg) scale(1.04);
}

.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 17px 0 14px;
  color: var(--ink);
  background: var(--acid);
  border-block: 1px solid var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 28s linear infinite;
}

.ticker span {
  padding: 0 28px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
}

.ticker i {
  font-size: 22px;
  font-style: normal;
}

section {
  position: relative;
  padding: clamp(90px, 12vw, 180px) var(--pad);
}

.section-dark {
  color: var(--paper);
  background: var(--ink);
}

.section-light {
  color: var(--ink);
  background: var(--fog);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(145px, .32fr) 1fr;
  column-gap: 40px;
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(55px, 8.6vw, 136px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .82;
}

.section-intro {
  max-width: 610px;
  margin: 42px 0 0;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.9;
  grid-column: 2;
}

.sound {
  overflow: hidden;
}

.sound::before {
  content: "";
  position: absolute;
  top: 5%;
  right: -16vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(229, 170, 39, .3);
  border-radius: 50%;
  box-shadow: inset 0 0 120px rgba(229,170,39,.09);
}

.sound-grid {
  position: relative;
  display: grid;
  margin-top: clamp(70px, 9vw, 130px);
  gap: clamp(45px, 6vw, 90px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
}

.featured-player {
  align-self: start;
  padding: clamp(25px, 4vw, 55px);
  color: var(--ink);
  background: var(--acid);
  transform: rotate(-1.2deg);
}

.player-meta > p:first-child {
  margin: 0 0 55px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.player-meta h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 75px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .9;
}

.player-meta h3 sup {
  font-size: .22em;
  letter-spacing: .05em;
  vertical-align: top;
}

.player-description {
  max-width: 570px;
  margin: 28px 0 36px;
  font-size: 14px;
  line-height: 1.9;
}

.featured-player iframe {
  display: block;
  width: 100%;
  height: 166px;
  margin: 0;
  background: #fff;
  border: 0;
}

.text-link {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-top: 1px solid rgba(24,58,54,.38);
}

.sound-list {
  align-self: center;
}

.sound-list > a {
  display: grid;
  align-items: center;
  padding: 25px 0;
  transition: color .25s ease, padding .25s ease;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 54px 1fr auto;
  gap: 16px;
}

.sound-list > a:first-child {
  border-top: 1px solid var(--line-light);
}

.sound-list > a:hover {
  padding-left: 12px;
  color: var(--acid);
}

.sound-number {
  font-size: 10px;
  letter-spacing: .1em;
  opacity: .55;
}

.sound-list b,
.sound-list small {
  display: block;
}

.sound-list b {
  font-family: var(--display);
  font-size: clamp(17px, 2vw, 24px);
  letter-spacing: -.02em;
  line-height: 1.2;
}

.sound-list small {
  margin-top: 7px;
  font-size: 10px;
  letter-spacing: .08em;
  opacity: .6;
}

.sound-list i {
  font-size: 21px;
  font-style: normal;
}

.platforms {
  display: flex;
  align-items: center;
  margin-top: clamp(70px, 9vw, 130px);
  padding-top: 22px;
  gap: clamp(18px, 3vw, 48px);
  border-top: 1px solid var(--line-light);
  flex-wrap: wrap;
}

.platforms span {
  margin-right: auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  opacity: .55;
  text-transform: uppercase;
}

.platforms a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
}

.platforms a:hover {
  color: var(--acid);
}

.projects {
  color: var(--ink);
  background: var(--paper);
}

.project-stack {
  margin-top: clamp(70px, 10vw, 150px);
}

.project-card {
  display: grid;
  min-height: 540px;
  align-items: stretch;
  margin-top: -1px;
  overflow: hidden;
  border-block: 1px solid var(--line-dark);
  grid-template-columns: minmax(0, 1.3fr) minmax(370px, .7fr);
}

.project-art {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #ddd;
}

.project-art::before,
.project-art::after,
.project-art span {
  content: "";
  position: absolute;
}

.project-art-one {
  background:
    linear-gradient(135deg, rgba(31,111,146,.1), rgba(219,92,165,.16)),
    url("/assets-2026/hiiragi-collage-2026.jpg") center / cover no-repeat;
}

.project-art-one::before {
  top: -20%;
  left: 20%;
  width: 60%;
  height: 140%;
  border: 1px solid rgba(255,255,255,.6);
  transform: rotate(28deg);
  box-shadow: 0 0 80px rgba(255,255,255,.2);
}

.project-art-one::after {
  inset: 8%;
  background: repeating-linear-gradient(90deg, transparent 0 20px, rgba(24,58,54,.1) 21px);
  border-radius: 50%;
  filter: blur(1px);
}

.project-art-one span {
  right: 9%;
  bottom: 9%;
  width: 26%;
  height: 26%;
  border: 1px solid var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 35px var(--acid);
}

.project-art-two {
  background:
    linear-gradient(120deg, transparent 45%, rgba(239,91,52,.82) 46% 52%, transparent 53%),
    radial-gradient(circle at 38% 45%, #e5aa27, transparent 22%),
    linear-gradient(155deg, #75375f, #db5ca5 52%, #ef8f78);
}

.project-art-two::before {
  inset: -20%;
  background: repeating-radial-gradient(ellipse at center, transparent 0 16px, rgba(255,255,255,.14) 17px 18px);
  transform: rotate(-14deg) scale(1.3);
}

.project-art-two::after {
  top: 14%;
  left: 9%;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
}

.project-art-three {
  background:
    linear-gradient(100deg, rgba(255,255,255,.12), transparent 50%),
    radial-gradient(ellipse at 65% 38%, rgba(31,111,146,.92), transparent 15%),
    radial-gradient(ellipse at 40% 70%, rgba(40,167,177,.88), transparent 28%),
    #183a36;
}

.project-art-three::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 44px 44px;
  perspective: 500px;
  transform: rotate(8deg) scale(1.15);
}

.project-art-three::after {
  right: 10%;
  bottom: 12%;
  width: 45%;
  height: 45%;
  border: 1px solid rgba(229,170,39,.9);
  filter: blur(.5px);
  transform: rotate(35deg);
}

.project-card:hover .project-art {
  filter: saturate(1.25) contrast(1.08);
}

.project-card:hover .project-art::before {
  transform: rotate(32deg) scale(1.05);
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(35px, 5vw, 75px);
  border-left: 1px solid var(--line-dark);
}

.project-copy > p:first-child {
  margin: 0 0 auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 50px 0 28px;
  font-family: var(--display);
  font-size: clamp(45px, 5vw, 75px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .82;
}

.project-copy h3 small {
  font-size: .32em;
  font-weight: 600;
  letter-spacing: .08em;
}

.project-copy h3 + p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.project-link {
  margin-top: auto;
  padding-top: 36px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.youtube-section {
  overflow: hidden;
  color: var(--ink);
  background: var(--pink);
}

.youtube-section::before {
  content: "";
  position: absolute;
  top: -12vw;
  right: -8vw;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(247,242,232,.48);
  border-radius: 50%;
  box-shadow:
    0 0 0 4vw rgba(247,242,232,.07),
    0 0 0 8vw rgba(247,242,232,.045);
}

.youtube-stage {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  margin-top: clamp(70px, 9vw, 130px);
  padding: clamp(16px, 2.2vw, 30px);
  background: var(--paper);
  border: 1px solid rgba(24,58,54,.3);
  box-shadow: 18px 18px 0 var(--acid);
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: clamp(22px, 3vw, 48px);
}

.youtube-primary {
  min-width: 0;
}

.youtube-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}

.youtube-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-current {
  min-height: 3.8em;
  margin: 0;
  padding: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 700;
  line-height: 1.4;
}

.youtube-current small {
  display: block;
  margin-top: 7px;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  opacity: .58;
  text-transform: uppercase;
}

.youtube-list {
  border-top: 1px solid var(--line-dark);
}

.youtube-loading {
  margin: 0;
  padding: 22px 0;
  font-size: 12px;
  letter-spacing: .06em;
  opacity: .65;
}

.youtube-item {
  display: grid;
  min-width: 0;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: minmax(96px, 128px) minmax(0, 1fr) auto;
  gap: 16px;
  transition: color .25s ease, transform .25s ease;
}

.youtube-item:hover {
  color: var(--blue);
  transform: translateX(6px);
}

.youtube-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}

.youtube-thumb::after {
  content: "▶";
  position: absolute;
  right: 8px;
  bottom: 7px;
  display: grid;
  width: 27px;
  height: 27px;
  color: var(--paper);
  background: rgba(24,58,54,.82);
  border-radius: 50%;
  font-size: 9px;
  place-items: center;
}

.youtube-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .3s ease, transform .3s ease;
}

.youtube-item:hover img {
  filter: saturate(1.2);
  transform: scale(1.035);
}

.youtube-item-copy {
  min-width: 0;
}

.youtube-item-copy b,
.youtube-item-copy small {
  display: block;
}

.youtube-item-copy b {
  overflow: hidden;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.38;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.youtube-item-copy small {
  margin-top: 7px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  opacity: .55;
  text-transform: uppercase;
}

.youtube-item > i {
  font-size: 18px;
  font-style: normal;
}

.youtube-channel-link {
  position: relative;
  z-index: 1;
  margin-top: clamp(62px, 7vw, 100px);
  border-color: rgba(24,58,54,.35);
}

.instagram-section {
  overflow: hidden;
  color: var(--paper);
  background: var(--green);
}

.instagram-section::before {
  content: "";
  position: absolute;
  top: 4%;
  right: -10%;
  width: 45%;
  height: 92%;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 30px,
      rgba(247,242,232,.12) 31px 32px
    );
  transform: skewX(-8deg);
}

.instagram-stage {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: stretch;
  margin-top: clamp(70px, 9vw, 130px);
  grid-template-columns: minmax(270px, .38fr) minmax(0, .62fr);
}

.instagram-note {
  display: flex;
  min-height: 700px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 58px);
  color: var(--paper);
  background: var(--ink);
  border: 1px solid rgba(247,242,232,.28);
}

.instagram-note > p:first-child {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.instagram-note h3 {
  margin: 0 0 24px;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(31px, 3.5vw, 54px);
  letter-spacing: -.055em;
  line-height: .95;
}

.instagram-note h3 + p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  opacity: .72;
}

.instagram-note > a {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  border-top: 1px solid var(--line-light);
  text-transform: uppercase;
}

.instagram-note > a:hover {
  color: var(--acid);
}

.instagram-note > a b {
  font-size: 18px;
}

.instagram-embed-shell {
  min-width: 0;
  padding: clamp(10px, 1.5vw, 20px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(24,58,54,.24);
  box-shadow: 18px 18px 0 var(--acid);
}

.instagram-embed-shell iframe {
  display: block;
  width: 100%;
  height: 660px;
  overflow: hidden;
  background: #fff;
  border: 0;
}

.works-grid {
  display: grid;
  margin-top: clamp(75px, 10vw, 150px);
  gap: clamp(34px, 4vw, 70px) clamp(20px, 3vw, 45px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-card {
  display: block;
}

.work-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}

.work-card:hover .work-cover {
  filter: saturate(1.2);
  transform: translateY(-8px) rotate(-1deg);
}

.cover-syn {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.75), transparent 8%),
    radial-gradient(ellipse at 65% 70%, var(--acid), transparent 35%),
    linear-gradient(145deg, #183a36, #17976b 55%, #c8d8c7);
}

.cover-syn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(circle at 60% 55%, transparent 0 12px, rgba(255,255,255,.16) 13px);
  transform: scale(1.7);
}

.cover-syn span,
.cover-midair span,
.cover-monovel span,
.cover-nature span {
  position: absolute;
  z-index: 2;
  left: 8%;
  bottom: 8%;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 38px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .85;
}

.cover-midair {
  background:
    linear-gradient(135deg, transparent 20%, rgba(255,255,255,.4) 21% 22%, transparent 23%),
    radial-gradient(circle at 25% 72%, var(--orange), transparent 20%),
    linear-gradient(150deg, #1f6f92, #788cac 55%, #e7b7d4);
}

.cover-midair::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
}

.cover-monovel {
  background:
    repeating-linear-gradient(90deg, transparent 0 11%, rgba(24,58,54,.12) 11.5% 12%),
    linear-gradient(135deg, #f4c8d9, #f7f2e8 45%, #e5aa27);
}

.cover-monovel span {
  top: 50%;
  right: 5%;
  bottom: auto;
  left: 5%;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 60px);
  letter-spacing: .13em;
  text-align: center;
  transform: translateY(-50%);
}

.cover-nature {
  background:
    linear-gradient(rgba(22,37,42,.16), rgba(22,37,42,.82)),
    var(--cover) center / cover no-repeat;
}

.cover-nature span {
  letter-spacing: .12em;
}

.image-cover {
  background:
    linear-gradient(rgba(255,255,255,.08), rgba(24,58,54,.08)),
    var(--cover) center / cover no-repeat;
  image-rendering: auto;
}

.work-info {
  padding-top: 20px;
}

.work-info > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  opacity: .58;
  text-transform: uppercase;
}

.work-info h3 {
  margin: 8px 0 2px;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.work-info p {
  margin: 0;
  font-size: 11px;
  opacity: .65;
}

.large-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(75px, 10vw, 145px);
  padding: 34px 0;
  border-block: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: clamp(21px, 3vw, 45px);
  font-weight: 800;
  letter-spacing: -.035em;
}

.large-link b {
  font-size: 1.15em;
  font-weight: 400;
  transition: transform .25s ease;
}

.large-link:hover b {
  transform: translate(5px, -5px);
}

.about {
  display: grid;
  min-height: 100vh;
  padding: 0;
  color: var(--paper);
  background: var(--ink);
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
}

.about-image {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(24,58,54,.58), transparent 45%),
    linear-gradient(90deg, transparent 70%, rgba(24,58,54,.28));
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.about-image > span {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  font-size: 9px;
  letter-spacing: .11em;
  opacity: .7;
  text-transform: uppercase;
}

.about-copy {
  padding: clamp(90px, 10vw, 150px) var(--pad);
}

.about .section-heading {
  display: block;
}

.about .section-heading h2 {
  margin-top: 32px;
}

.bio {
  max-width: 720px;
  margin-top: clamp(65px, 8vw, 110px);
}

.bio p {
  margin: 0 0 30px;
  color: rgba(247,242,232,.74);
  font-size: 14px;
  line-height: 2.05;
}

.bio .bio-lead {
  color: var(--paper);
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.85;
}

.timeline {
  margin: clamp(65px, 8vw, 110px) 0 0;
  border-top: 1px solid var(--line-light);
}

.timeline > div {
  display: grid;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 80px 1fr;
}

.timeline dt {
  color: var(--acid);
  font-family: var(--display);
  font-weight: 800;
}

.timeline dd {
  margin: 0;
  font-size: 12px;
  opacity: .7;
}

.contact {
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
}

.contact::before {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -45%;
  width: 60vw;
  height: 60vw;
  border: 1px solid rgba(24,58,54,.28);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(24,58,54,.045), 0 0 0 70px rgba(24,58,54,.03), 0 0 0 105px rgba(24,58,54,.02);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 60px;
  gap: clamp(55px, 8vw, 130px);
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, .85fr);
}

.contact-copy {
  align-self: end;
  max-width: 650px;
}

.contact-copy > p:first-child {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.9;
}

.contact-copy ul {
  margin: 42px 0 52px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(24,58,54,.28);
}

.contact-copy li {
  padding: 10px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(24,58,54,.28);
  text-transform: uppercase;
}

.mail-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 0;
  border-block: 2px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 37px);
  font-weight: 800;
  letter-spacing: -.035em;
}

.mail-link b {
  font-size: 1.15em;
  font-weight: 400;
  transition: transform .25s ease;
}

.mail-link:hover b {
  transform: translate(5px, -5px);
}

.contact-note {
  margin: 10px 0 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-align: right;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  align-items: end;
  padding: 70px var(--pad) 30px;
  color: var(--paper);
  background: var(--ink);
  grid-template-columns: 1fr auto;
  gap: 50px;
}

.footer-mark {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 140px);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .75;
}

.footer-mark span {
  color: var(--acid);
}

.footer-socials {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-socials a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-socials a:hover {
  color: var(--acid);
}

.site-footer > p {
  margin: 25px 0 0;
  font-size: 9px;
  letter-spacing: .1em;
  opacity: .5;
  grid-column: 1 / -1;
  text-align: right;
  text-transform: uppercase;
}

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

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

.hero .reveal:nth-child(1) { transition-delay: .05s; }
.hero .reveal:nth-child(2) { transition-delay: .12s; }
.hero .reveal:nth-child(3) { transition-delay: .2s; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.7); }
}

@keyframes drift {
  from { transform: translate(-6%, -4%) scale(.9); }
  to { transform: translate(10%, 7%) scale(1.15); }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-image {
    inset: 0;
    width: 100%;
    opacity: 1;
  }

  .hero-statement {
    margin-left: 20%;
  }

  .sound-grid,
  .youtube-stage,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sound-list {
    margin-top: 10px;
  }

  .youtube-stage {
    box-shadow: 12px 12px 0 var(--acid);
  }

  .instagram-stage {
    grid-template-columns: minmax(230px, .36fr) minmax(0, .64fr);
  }

  .instagram-note {
    min-height: 590px;
  }

  .instagram-embed-shell {
    box-shadow: 12px 12px 0 var(--acid);
  }

  .instagram-embed-shell iframe {
    height: 550px;
  }

  .project-card {
    grid-template-columns: 1.1fr .9fr;
  }

  .project-copy {
    padding: 35px;
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about {
    grid-template-columns: .85fr 1.15fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 70px;
  }

  .wordmark {
    font-size: 20px;
  }

  .hero {
    min-height: 880px;
    padding-top: 100px;
    padding-bottom: 26px;
  }

  .hero-image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 62% center;
    opacity: 1;
  }

  .hero-glow {
    top: 18%;
    left: 2%;
    width: 80vw;
    height: 80vw;
  }

  .hero-copy {
    align-self: center;
    padding-top: 12vh;
  }

  .hero h1 {
    font-size: clamp(66px, 20.5vw, 108px);
    line-height: .78;
  }

  .hero-statement {
    margin: 32px 0 0;
    font-size: 14px;
    letter-spacing: .04em;
  }

  .round-link {
    width: 84px;
    height: 84px;
  }

  .hero-foot > p {
    max-width: 190px;
    font-size: 8px;
  }

  .ticker {
    padding-block: 11px 9px;
  }

  section {
    padding-block: 88px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 28px;
    font-size: clamp(54px, 17vw, 90px);
  }

  .section-intro {
    margin-top: 28px;
  }

  .sound-grid {
    margin-top: 60px;
  }

  .featured-player {
    transform: none;
  }

  .player-meta > p:first-child {
    margin-bottom: 34px;
  }

  .featured-player iframe {
    height: 196px;
  }

  .platforms {
    align-items: flex-start;
    flex-direction: column;
  }

  .platforms span {
    margin-bottom: 5px;
  }

  .project-stack {
    margin-top: 58px;
  }

  .project-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .project-art {
    min-height: 340px;
  }

  .project-copy {
    min-height: 410px;
    padding: 28px 0 42px;
    border-left: 0;
  }

  .project-copy h3 {
    margin-top: 70px;
  }

  .youtube-stage {
    margin-top: 58px;
    padding: 12px;
    gap: 22px;
  }

  .youtube-current {
    min-height: 0;
    padding: 15px 3px 2px;
  }

  .youtube-item {
    grid-template-columns: 105px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .youtube-item-copy b {
    font-size: 12px;
  }

  .instagram-stage {
    display: block;
    margin-top: 58px;
  }

  .instagram-note {
    min-height: 360px;
    padding: 30px 24px;
  }

  .instagram-embed-shell {
    padding: 8px;
    box-shadow: 10px 10px 0 var(--acid);
  }

  .instagram-embed-shell iframe {
    height: 430px;
  }

  .works-grid {
    margin-top: 60px;
    gap: 45px 14px;
  }

  .work-info h3 {
    font-size: 18px;
  }

  .work-info > span {
    font-size: 7px;
  }

  .about {
    display: block;
  }

  .about-image {
    position: relative;
    height: 75vh;
    min-height: 560px;
  }

  .about-image img {
    object-position: 45% center;
  }

  .about-copy {
    padding: 88px var(--pad);
  }

  .contact-grid {
    margin-top: 45px;
  }

  .contact h2 {
    font-size: clamp(54px, 16vw, 88px);
  }

  .site-footer {
    display: block;
    padding-top: 70px;
  }

  .footer-socials {
    margin-top: 55px;
    justify-content: flex-start;
  }

  .site-footer > p {
    margin-top: 55px;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .lang-link {
    font-size: 10px;
  }

  .hero-kicker {
    font-size: 9px;
  }

  .hero-foot > p {
    display: none;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .work-info h3 {
    font-size: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

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

@media print {
  .site-header,
  .ticker,
  .signal-canvas,
  .page-noise {
    display: none !important;
  }

  .hero {
    min-height: 0;
  }

  section {
    break-inside: avoid;
  }
}
