:root {
  --ink: #11100f;
  --paper: #f1ede5;
  --muted: #a8a198;
  --dusk: #b8673f;
  --burnt: #6f341f;
  --line: rgba(241, 237, 229, 0.24);
  --pad-x: clamp(22px, 4vw, 70px);
  --header-h: 86px;
  --footer-h: 58px;
  --ease: cubic-bezier(.22,.76,.2,1);
}

* { box-sizing: border-box; }
html { background: var(--ink); color: var(--paper); scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 10px;
  z-index: 10000;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }

.grain {
  position: fixed;
  inset: -50%;
  z-index: 9000;
  pointer-events: none;
  opacity: .075;
  mix-blend-mode: soft-light;
  animation: grainShift 0.18s steps(2) infinite;
  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='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
@keyframes grainShift {
  0% { transform: translate3d(0,0,0); }
  25% { transform: translate3d(-2%,2%,0); }
  50% { transform: translate3d(2%,-1%,0); }
  75% { transform: translate3d(1%,2%,0); }
  100% { transform: translate3d(-1%,-2%,0); }
}

.hud {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  padding: 0 var(--pad-x);
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.brand {
  justify-self: start;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .24em;
  white-space: nowrap;
}
.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.3vw, 58px);
}
.nav-link {
  position: relative;
  font-size: 11px;
  letter-spacing: .22em;
  opacity: .52;
  transition: opacity .25s ease;
}
.nav-link:hover, .nav-link:focus-visible, .nav-link.is-active { opacity: 1; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: .22em;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-link.is-active::after { transform: scaleX(1); }
.menu-toggle { display: none; }

.site-shell {
  position: relative;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
}
.panel {
  position: absolute;
  inset: 0;
  min-height: 100dvh;
  padding: var(--header-h) var(--pad-x) var(--footer-h);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.018);
  transition: opacity .62s var(--ease), transform .8s var(--ease), visibility 0s linear .8s;
}
.panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  transition-delay: 0s;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 10px;
  letter-spacing: .32em;
  font-weight: 600;
}
.text-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  letter-spacing: .18em;
  transition: opacity .25s ease, gap .25s ease;
}
.text-cta:hover { opacity: .72; gap: 16px; }

/* HOME */
.panel-home { padding: 0; background: #242424; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: grayscale(1) contrast(1.02) brightness(.78);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,12,12,.66) 0%, rgba(12,12,12,.2) 42%, rgba(12,12,12,.08) 70%, rgba(12,12,12,.32) 100%),
    linear-gradient(0deg, rgba(5,5,5,.42) 0%, transparent 36%, rgba(5,5,5,.12) 100%);
}
.hero-copy {
  position: absolute;
  left: var(--pad-x);
  bottom: clamp(100px, 13vh, 160px);
  z-index: 3;
  max-width: 720px;
}
.hero-title {
  margin: 0 0 28px;
  font-size: clamp(68px, 9.7vw, 164px);
  line-height: .78;
  letter-spacing: -.06em;
  font-weight: 500;
}
.hero-index, .panel-index {
  position: absolute;
  right: var(--pad-x);
  bottom: calc(var(--footer-h) + 32px);
  z-index: 3;
  font-size: 10px;
  letter-spacing: .24em;
  opacity: .58;
}
.hero-caption {
  position: absolute;
  right: var(--pad-x);
  top: calc(var(--header-h) + 34px);
  z-index: 3;
  margin: 0;
  font-size: 9px;
  letter-spacing: .3em;
  writing-mode: vertical-rl;
  opacity: .55;
}

/* MUSIC */
.panel-music { background: #c06d43; color: #17120f; overflow: hidden; }
.music-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 83% 18%, rgba(247,216,179,.58), transparent 28%),
    radial-gradient(circle at 12% 95%, rgba(80,33,20,.28), transparent 32%),
    linear-gradient(135deg, #d28a5e, #af5f3e 55%, #8e4a32);
}
.music-backdrop::after {
  content: "NEED YOU";
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%,-50%) rotate(-90deg);
  font-size: clamp(110px, 22vw, 370px);
  letter-spacing: -.06em;
  font-weight: 650;
  color: rgba(61,25,15,.065);
  white-space: nowrap;
}
.music-layout {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(330px, 46vw) minmax(300px, 1fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: center;
  padding: 2vh 4vw 0 4vw;
}
.release-art-wrap {
  position: relative;
  justify-self: end;
  width: min(68vh, 620px);
  aspect-ratio: 1;
  box-shadow: 0 40px 85px rgba(68,30,17,.25);
  transform: rotate(-1.3deg);
  transition: transform .65s var(--ease);
}
.release-art-wrap:hover { transform: rotate(0deg) scale(1.012); }
.release-art { width: 100%; height: 100%; object-fit: cover; display: block; }
.release-number {
  position: absolute;
  left: -42px;
  bottom: 0;
  font-size: 10px;
  letter-spacing: .25em;
  transform: rotate(-90deg);
  transform-origin: bottom left;
}
.release-copy { max-width: 510px; align-self: center; }
.release-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-weight: 500;
  font-size: clamp(66px, 7.8vw, 132px);
  line-height: .8;
  letter-spacing: -.065em;
}
.release-meta { margin: 26px 0 30px; font-size: 10px; letter-spacing: .24em; }
.listen-links { border-top: 1px solid rgba(23,18,15,.35); }
.listen-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  border-bottom: 1px solid rgba(23,18,15,.35);
  font-size: 11px;
  letter-spacing: .18em;
  transition: padding .3s var(--ease), background .3s ease;
}
.listen-links a:hover { padding-left: 12px; background: rgba(255,255,255,.1); }
.release-note { max-width: 430px; margin: 24px 0 0; font-size: 12px; line-height: 1.6; opacity: .68; }
.panel-music .panel-index { color: #17120f; }

/* ABOUT */
.panel-about {
  background: #eee9df;
  color: #151311;
  display: grid;
  grid-template-columns: 56% 44%;
  overflow: hidden;
}
.about-image-stack { position: relative; height: 100%; min-height: 0; }
.about-frame { position: absolute; margin: 0; overflow: hidden; background: #c8b8a8; }
.about-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.frame-main {
  width: min(42vw, 610px);
  height: min(76vh, 760px);
  left: 2vw;
  top: 50%;
  transform: translateY(-49%);
}
.frame-main img { object-position: center 28%; filter: saturate(.78) contrast(.96); }
.frame-secondary {
  width: min(20vw, 270px);
  aspect-ratio: .76;
  right: 0;
  bottom: 4vh;
  border: 8px solid #eee9df;
  box-shadow: 0 18px 46px rgba(25,17,12,.16);
}
.frame-secondary img { object-position: 50% 42%; }
.about-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 540px;
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: 2vw;
}
.about-copy h2 { margin-bottom: 34px; }
.bio { max-width: 500px; font-size: clamp(15px, 1.35vw, 19px); line-height: 1.6; letter-spacing: -.01em; }
.bio + .bio { margin-top: 14px; }
.about-copy .text-cta { margin-top: 24px; }
.about-sunset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 19vh;
  background: linear-gradient(rgba(238,233,223,.7), rgba(238,233,223,.25)), url('assets/sunset.jpg') center 56%/cover;
  opacity: .27;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.panel-about .panel-index { color: #151311; }

/* CONTACT */
.panel-contact {
  background: #14110f;
  color: #f2eee7;
  display: grid;
  grid-template-columns: 49% 51%;
  overflow: hidden;
}
.contact-photo {
  position: relative;
  margin: calc(var(--header-h) * -1) 0 calc(var(--footer-h) * -1) calc(var(--pad-x) * -1);
  overflow: hidden;
}
.contact-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, #14110f 100%);
}
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(.65) contrast(1.04) brightness(.78);
}
.contact-copy { align-self: center; max-width: 650px; padding-left: clamp(30px, 6vw, 100px); padding-right: clamp(22px, 4vw, 60px); }
.contact-copy h2 { margin-bottom: 34px; }
.contact-intro { font-size: clamp(15px, 1.4vw, 20px); line-height: 1.5; max-width: 460px; opacity: .72; }
.contact-links { width: min(100%, 560px); margin-top: 38px; border-top: 1px solid var(--line); }
.contact-link {
  display: grid;
  grid-template-columns: minmax(105px, .7fr) minmax(0, 1.5fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease), opacity .3s ease;
}
.contact-link:hover { padding-left: 10px; opacity: .76; }
.contact-label { font-size: 9px; letter-spacing: .2em; opacity: .55; }
.contact-address { font-size: clamp(12px, 1.1vw, 15px); letter-spacing: .02em; overflow-wrap: anywhere; }
.contact-arrow { font-size: 14px; }

.social-bar {
  position: fixed;
  z-index: 130;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--footer-h);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: 0 var(--pad-x);
  border-top: 1px solid rgba(255,255,255,.08);
  transition: opacity .35s var(--ease), visibility .35s var(--ease), transform .35s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.social-bar a {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  opacity: .58;
  transition: opacity .2s ease, transform .2s var(--ease);
}
.social-bar a:hover { opacity: 1; transform: translateY(-1px); }
.social-icon { width: 18px; height: 18px; display: block; }
body:not([data-route="home"]) .social-bar { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(100%); }
body[data-theme="light"] .hud { color: #151311; border-color: rgba(21,19,17,.14); }
body[data-theme="orange"] .hud { color: #17120f; border-color: rgba(23,18,15,.16); }

/* RELEASE SPLASH */
.release-splash {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  background: #8d4b31;
  color: #f2eee7;
  transition: opacity .6s var(--ease), visibility .6s var(--ease), transform .65s var(--ease);
}
.release-splash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.18), transparent 35%, rgba(0,0,0,.1)),
    url('assets/sunset.jpg') center/cover;
  opacity: .22;
  filter: blur(2px) saturate(.85);
  transform: scale(1.04);
}
.release-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  pointer-events: none;
}
.splash-close {
  position: absolute;
  z-index: 5;
  right: max(26px, 4vw);
  top: max(20px, 3vw);
  border: 0;
  background: transparent;
  font-size: 36px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  opacity: .75;
}
.splash-card {
  position: relative;
  z-index: 2;
  width: min(1080px, 86vw);
  display: grid;
  grid-template-columns: minmax(300px, 530px) minmax(270px, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}
.splash-art-shell {
  box-shadow: 0 40px 100px rgba(40,18,10,.38);
  transform: rotate(-1.2deg);
  overflow: hidden;
}
.splash-art { width: 100%; display: block; }
.splash-copy h2 {
  margin: 0;
  font-size: clamp(68px, 8.3vw, 132px);
  line-height: .83;
  letter-spacing: -.065em;
  font-weight: 500;
}
.splash-copy > p:not(.eyebrow) { font-size: 14px; line-height: 1.55; opacity: .72; margin: 20px 0 30px; }
.splash-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.button {
  border: 1px solid rgba(255,255,255,.56);
  background: transparent;
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 10px;
  letter-spacing: .18em;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.button-light { background: #f2eee7; color: #16120f; border-color: #f2eee7; }
.button-light:hover { background: transparent; color: #f2eee7; }
.button-ghost:hover { background: rgba(255,255,255,.12); }
.splash-platforms { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; font-size: 9px; letter-spacing: .16em; opacity: .6; }
.splash-wordmark {
  position: absolute;
  left: var(--pad-x);
  bottom: 24px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: .28em;
  opacity: .58;
}

@media (max-width: 900px) {
  :root { --header-h: 70px; --footer-h: 52px; }
  .hud { grid-template-columns: 1fr auto; }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 0 10px 14px;
    border: 0;
    background: transparent;
    font-size: 9px;
    letter-spacing: .18em;
    cursor: pointer;
  }
  .menu-line { width: 17px; height: 1px; background: currentColor; display: block; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 var(--footer-h) 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 3.4vh;
    padding: 0 var(--pad-x);
    background: rgba(17,16,15,.96);
    backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
  }
  body.menu-open .site-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-link { font-size: clamp(36px, 10vw, 68px); letter-spacing: -.035em; font-weight: 500; opacity: .36; }
  .nav-link::after { display: none; }
  body.menu-open[data-theme="light"] .site-nav,
  body.menu-open[data-theme="orange"] .site-nav { background: rgba(17,16,15,.96); color: #f2eee7; }

  .hero-video { object-position: center 48%; }
  .hero-copy { bottom: 105px; }
  .hero-title { font-size: clamp(62px, 20vw, 100px); }
  .hero-caption { display: none; }
  .hero-index, .panel-index { bottom: calc(var(--footer-h) + 20px); }

  .music-layout {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 3vh 0 0;
  }
  .release-art-wrap { width: min(48vw, 480px); justify-self: center; }
  .release-copy h2, .about-copy h2, .contact-copy h2 { font-size: clamp(60px, 11vw, 94px); }

  .panel-about { grid-template-columns: 52% 48%; }
  .frame-main { width: 44vw; }
  .frame-secondary { width: 19vw; }
  .about-copy { padding-left: 24px; }

  .panel-contact { grid-template-columns: 46% 54%; }
  .contact-copy { padding-left: 34px; }

  .splash-card { width: min(92vw, 760px); grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 650px) {
  body { overflow: hidden; }
  :root { --pad-x: 20px; }
  .brand { font-size: 12px; }
  .social-bar { justify-content: flex-start; gap: 14px; }

  .hero-video { object-position: 51% 50%; }
  .hero-scrim { background: linear-gradient(0deg, rgba(5,5,5,.62) 0%, rgba(5,5,5,.12) 55%, rgba(5,5,5,.28) 100%); }
  .hero-copy { left: var(--pad-x); bottom: 98px; }
  .hero-title { font-size: clamp(68px, 22vw, 96px); margin-bottom: 22px; }
  .hero-index { right: 20px; }

  .panel-music { padding-left: 20px; padding-right: 20px; }
  .music-layout {
    height: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 16px;
    padding-top: 18px;
    align-items: start;
  }
  .release-art-wrap { width: min(56vh, 82vw); max-width: 360px; justify-self: center; }
  .release-number { left: -30px; }
  .release-copy { align-self: start; width: 100%; }
  .release-copy h2 { font-size: clamp(56px, 17vw, 80px); }
  .release-meta { margin: 15px 0 14px; }
  .listen-links { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 0; gap: 6px; }
  .listen-links a { min-height: 42px; justify-content: center; padding: 0 4px; border: 1px solid rgba(23,18,15,.28); font-size: 8px; text-align: center; }
  .listen-links a span { display: none; }
  .release-note { display: none; }
  .music-backdrop::after { font-size: 160px; left: 85%; }

  .panel-about {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-image-stack { position: absolute; inset: var(--header-h) 0 42% 0; height: auto; }
  .frame-main {
    width: 100%; height: 100%; left: 0; top: 0; transform: none;
  }
  .frame-main img { object-position: center 28%; }
  .frame-main::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(0deg, #eee9df 0%, transparent 48%);
  }
  .frame-secondary { display: none; }
  .about-copy {
    position: absolute;
    left: 20px; right: 20px; bottom: 38px;
    padding: 0;
    max-width: none;
  }
  .about-copy h2 { font-size: clamp(58px, 17vw, 82px); margin-bottom: 20px; }
  .bio { font-size: 13px; line-height: 1.52; margin: 0; }
  .bio + .bio { margin-top: 8px; }
  .about-copy .text-cta { margin-top: 16px; }
  .about-sunset { display: none; }

  .panel-contact { display: block; padding: 0; }
  .contact-photo { position: absolute; inset: 0; margin: 0; }
  .contact-photo::after { background: linear-gradient(0deg, #14110f 3%, rgba(20,17,15,.62) 50%, rgba(20,17,15,.1) 100%); }
  .contact-photo img { object-position: 48% 44%; }
  .contact-copy {
    position: absolute;
    left: 20px; right: 20px; bottom: 42px;
    z-index: 2;
    padding: 0;
  }
  .contact-copy h2 { font-size: clamp(68px, 19vw, 92px); margin-bottom: 20px; }
  .contact-intro { font-size: 14px; max-width: 330px; }
  .contact-links { margin-top: 22px; }
  .contact-link { grid-template-columns: 1fr auto; gap: 6px 14px; min-height: 58px; padding: 9px 0; }
  .contact-label { grid-column: 1 / 2; font-size: 8px; }
  .contact-address { grid-column: 1 / 2; font-size: 12px; }
  .contact-arrow { grid-column: 2 / 3; grid-row: 1 / 3; align-self: center; }

  .release-splash { overflow-y: auto; padding: 64px 20px 30px; }
  .splash-card {
    width: min(86vw, 420px);
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .splash-art-shell { width: min(76vw, 330px); }
  .splash-copy { width: 100%; text-align: center; }
  .splash-copy h2 { font-size: clamp(58px, 18vw, 86px); }
  .splash-copy > p:not(.eyebrow) { margin: 12px 0 20px; }
  .splash-actions { justify-content: center; }
  .splash-platforms { justify-content: center; gap: 14px; margin-top: 22px; }
  .splash-wordmark { display: none; }
}

@media (max-height: 700px) and (min-width: 651px) {
  .release-art-wrap { width: min(61vh, 500px); }
  .release-copy h2, .about-copy h2, .contact-copy h2 { font-size: clamp(58px, 7vw, 104px); }
  .frame-main { height: 68vh; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .grain { animation: none; }
  .hero-video { display: none; }
  .panel-home { background: url('assets/lake-portrait.jpg') center 45%/cover; }
}
