:root {
  --black: #080808;
  --graphite: #141414;
  --bone: #e6dfd3;
  --paper: #f4f0e8;
  --silver: #a9a9a5;
  --amber: #c58b4b;
  --line: rgba(230, 223, 211, .27);
  --pad: clamp(24px, 5vw, 82px);
  --header: 88px;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", Baskerville, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--black); color: var(--bone); font-family: var(--sans); line-height: 1.5; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin-top: 0; }
svg { width: 19px; height: 19px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: square; stroke-linejoin: miter; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 999; padding: 12px 16px; background: var(--bone); color: var(--black); }
.skip-link:focus { top: 16px; }
.section-mark { font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 30; height: var(--header); padding: 0 var(--pad); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 42px; border-bottom: 1px solid var(--line); color: var(--bone); }
.wordmark { display: inline-grid; width: max-content; font-size: .92rem; font-weight: 650; letter-spacing: -.03em; line-height: .83; text-transform: uppercase; }
.wordmark span:last-child { margin-left: 17px; color: var(--amber); }
.desktop-nav { display: flex; align-items: center; gap: clamp(26px, 3vw, 52px); }
.desktop-nav a { position: relative; font-size: .76rem; letter-spacing: .06em; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -9px; width: 100%; height: 1px; background: var(--amber); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.book-link { justify-self: end; min-height: 45px; display: inline-flex; align-items: center; gap: 24px; padding: 0 16px; border: 1px solid rgba(230,223,211,.62); font-size: .75rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.book-link:hover { background: var(--bone); color: var(--black); }
.menu-toggle, .menu-close { display: none; border: 0; background: transparent; padding: 0; }
.mobile-nav { display: none; }

.hero { position: relative; height: 100svh; min-height: 760px; overflow: hidden; color: var(--bone); }
.hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center center; animation: breathe 15s ease-in-out infinite alternate; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.08) 60%), linear-gradient(0deg, rgba(0,0,0,.74) 0%, transparent 55%); }
.hero-meta { position: absolute; z-index: 2; top: calc(var(--header) + 28px); left: var(--pad); right: var(--pad); display: flex; justify-content: space-between; color: rgba(230,223,211,.65); font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; }
.hero-copy { position: absolute; z-index: 2; left: var(--pad); right: var(--pad); bottom: 45px; }
.hero-role { margin-bottom: 25px; font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { margin: 0; display: grid; font-size: clamp(6rem, 13.4vw, 15rem); font-weight: 500; letter-spacing: -.085em; line-height: .68; text-transform: uppercase; }
.hero h1 span:last-child { margin-left: 17vw; color: transparent; -webkit-text-stroke: 1.4px var(--bone); }
.hero-note { position: absolute; right: 0; bottom: 0; margin: 0; text-align: right; font-family: var(--serif); font-size: clamp(1.15rem, 1.8vw, 1.75rem); font-style: italic; line-height: 1.2; }
.hero-book { position: absolute; z-index: 3; right: var(--pad); top: 42%; width: 120px; height: 120px; border-radius: 50%; display: grid; place-items: center; align-content: center; gap: 12px; background: rgba(8,8,8,.72); border: 1px solid rgba(230,223,211,.5); backdrop-filter: blur(7px); transition: transform .3s ease, background .3s ease; }
.hero-book span { font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.hero-book:hover { transform: rotate(6deg) scale(1.05); background: var(--amber); color: var(--black); }
.timecode { position: absolute; z-index: 3; left: 20px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(230,223,211,.55); font-size: .75rem; letter-spacing: .12em; }
.timecode i { width: 1px; height: 38px; background: rgba(230,223,211,.4); }
@keyframes breathe { from { transform: scale(1); } to { transform: scale(1.025); } }

.signal { height: 126px; overflow: hidden; display: flex; align-items: center; border-bottom: 1px solid var(--line); background: var(--black); }
.signal-track { min-width: max-content; display: flex; align-items: center; gap: 38px; animation: marquee 22s linear infinite; }
.signal-track span { font-family: var(--serif); font-size: clamp(3rem, 5.2vw, 5.8rem); font-style: italic; letter-spacing: -.04em; }
.signal-track i { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); }
@keyframes marquee { to { transform: translateX(-50%); } }

.sound { padding: 140px var(--pad); background: var(--paper); color: var(--black); }
.sound-head { display: grid; grid-template-columns: .45fr 1fr .55fr; gap: 5vw; align-items: start; }
.sound-head .section-mark { padding-top: 12px; color: #6a655e; }
.sound h2, .about h2, .dates h2, .booking h2 { font-family: var(--serif); font-size: clamp(4.2rem, 7.5vw, 8.7rem); font-weight: 400; letter-spacing: -.06em; line-height: .88; }
.sound h2 em, .about h2 em, .dates h2 em, .booking h2 em { color: var(--amber); font-weight: 400; }
.sound-head > p:last-child { padding-top: 12px; color: #5e5952; }
.mix-player { margin: 115px 0 60px; min-height: 420px; display: grid; grid-template-columns: 420px 1fr; background: var(--black); color: var(--bone); }
.disc { position: relative; margin: 40px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; background: repeating-radial-gradient(circle, #151515 0 3px, #232323 4px 5px); box-shadow: 0 0 0 1px #2f2f2f; animation: spin 15s linear infinite; animation-play-state: paused; }
.mix-player.is-playing .disc { animation-play-state: running; }
.disc::before { content: ""; width: 33%; height: 33%; border-radius: 50%; background: var(--amber); }
.disc span { position: absolute; z-index: 1; color: var(--black); font-size: .75rem; font-weight: 700; letter-spacing: .1em; }
.disc i { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--black); }
@keyframes spin { to { transform: rotate(360deg); } }
.mix-content { padding: 52px 55px; display: grid; grid-template-columns: 1fr auto; grid-template-rows: 1fr auto auto; gap: 30px 40px; }
.mix-now { display: grid; align-content: start; gap: 9px; }
.mix-now span { color: var(--amber); font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.mix-now strong { max-width: 630px; font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4.6rem); font-weight: 400; line-height: .96; }
.mix-now small { color: #98928a; font-size: .75rem; }
.equalizer { grid-row: 1; grid-column: 2; height: 92px; display: flex; align-items: end; gap: 6px; }
.equalizer i { width: 3px; height: 22%; background: var(--amber); }
.mix-player.is-playing .equalizer i { animation: level .7s ease-in-out infinite alternate; }
.mix-player.is-playing .equalizer i:nth-child(2n) { animation-delay: -.3s; }
.mix-player.is-playing .equalizer i:nth-child(3n) { animation-delay: -.5s; }
@keyframes level { to { height: 100%; } }
.play-toggle { grid-column: 1; justify-self: start; padding: 0; display: flex; align-items: center; gap: 14px; border: 0; background: transparent; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.play-icon { width: 38px; height: 38px; border: 1px solid #6d6a65; border-radius: 50%; position: relative; }
.play-icon::after { content: ""; position: absolute; left: 15px; top: 12px; border-left: 8px solid var(--bone); border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.mix-player.is-playing .play-icon::after { left: 13px; top: 12px; width: 9px; height: 12px; border: 0; border-left: 3px solid var(--bone); border-right: 3px solid var(--bone); }
.spotify-link { grid-column: 2; display: inline-flex; align-items: center; gap: 15px; padding-bottom: 7px; border-bottom: 1px solid var(--bone); font-size: .75rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; }
.tracklist { border-top: 1px solid #a59f95; }
.track { width: 100%; min-height: 96px; padding: 0; display: grid; grid-template-columns: 60px 1.2fr 1fr auto; align-items: center; gap: 28px; border: 0; border-bottom: 1px solid #a59f95; background: transparent; text-align: left; cursor: pointer; transition: padding .25s ease, background .25s ease, color .25s ease; }
.track:hover, .track.is-active { padding-inline: 18px; background: var(--black); color: var(--bone); }
.track > span { color: var(--amber); font-size: .75rem; }
.track strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.track small { color: #706a61; }
.track:hover small, .track.is-active small { color: #9f9a92; }
.track time { font-size: .75rem; }

.about { min-height: 980px; display: grid; grid-template-columns: 42% 58%; background: var(--graphite); color: var(--bone); }
.about-portrait { min-height: 980px; overflow: hidden; }
.about-portrait img { height: 100%; object-fit: cover; object-position: 61% center; filter: grayscale(1) contrast(1.08); transition: filter .7s ease, transform .9s ease; }
.about:hover .about-portrait img { filter: grayscale(.3) contrast(1.03); transform: scale(1.02); }
.about-copy { padding: 120px var(--pad); display: flex; flex-direction: column; }
.about-copy .section-mark { color: var(--silver); margin-bottom: 65px; }
.about h2 { font-size: clamp(4rem, 6.4vw, 7.4rem); }
.about-text { max-width: 650px; margin: 60px 0 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
.about-text p { margin: 0; color: #a7a29a; }
.about-text p:first-child { color: var(--bone); font-family: var(--serif); font-size: 1.25rem; }
.credentials { margin: auto 0 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.credentials div { padding: 18px 20px 0 0; }
.credentials dt { color: var(--amber); font-size: .75rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; }
.credentials dd { margin: 8px 0 0; font-size: .76rem; }

.dates { padding: 140px var(--pad); background: var(--bone); color: var(--black); }
.dates-head { display: grid; grid-template-columns: .4fr 1fr; gap: 7vw; }
.dates-head .section-mark { padding-top: 12px; color: #645f58; }
.dates h2 em { color: #72533a; }
.date-list { margin-top: 105px; border-top: 1px solid var(--black); }
.date-list article { min-height: 150px; display: grid; grid-template-columns: 155px 1fr 180px 52px; gap: 32px; align-items: center; border-bottom: 1px solid rgba(8,8,8,.38); transition: background .25s ease, padding .25s ease; }
.date-list article:hover { padding-inline: 18px; background: var(--paper); }
.date-list time { display: flex; align-items: baseline; gap: 12px; }
.date-list time strong { font-family: var(--serif); font-size: 3.2rem; font-weight: 400; }
.date-list time span { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.date-list h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.date-list p { margin: 0; color: #625c54; font-size: .82rem; }
.date-type { font-size: .75rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; }
.date-list a { width: 50px; height: 50px; border: 1px solid rgba(8,8,8,.5); border-radius: 50%; display: grid; place-items: center; }
.date-list a:hover { background: var(--black); color: var(--bone); }
.date-note { margin: 30px 0 0 auto; width: max-content; color: #645f58; font-size: .75rem; }

.booking { position: relative; min-height: 820px; padding: 140px var(--pad); display: grid; grid-template-columns: 1fr .42fr; gap: 8vw; align-items: end; overflow: hidden; background: var(--amber); color: var(--black); }
.booking-orbit { position: absolute; right: -140px; top: -160px; width: 540px; height: 540px; border: 1px solid rgba(8,8,8,.35); border-radius: 50%; animation: orbit 18s linear infinite; }
.booking-orbit span { position: absolute; left: 50%; top: -8px; transform: translateX(-50%); width: max-content; font-size: .75rem; font-weight: 650; letter-spacing: .18em; }
@keyframes orbit { to { transform: rotate(360deg); } }
.booking-copy { position: relative; z-index: 1; }
.booking .section-mark { margin-bottom: 55px; }
.booking h2 { max-width: 880px; font-size: clamp(4.7rem, 8.5vw, 9.8rem); }
.booking h2 em { color: var(--paper); }
.booking-copy > p:not(.section-mark) { max-width: 520px; margin: 55px 0 40px; }
.booking-copy > a { display: inline-flex; align-items: center; gap: 30px; padding-bottom: 8px; border-bottom: 1px solid var(--black); font-family: var(--serif); font-size: clamp(1.4rem, 2.3vw, 2.4rem); }
.booking-facts { position: relative; z-index: 1; border-top: 1px solid var(--black); }
.booking-facts div { padding: 19px 0; display: grid; grid-template-columns: 110px 1fr; gap: 20px; border-bottom: 1px solid rgba(8,8,8,.35); }
.booking-facts span { font-size: .75rem; font-weight: 650; letter-spacing: .11em; text-transform: uppercase; }
.booking-facts strong { font-family: var(--serif); font-size: 1.08rem; font-weight: 400; }

.site-footer { padding: 65px var(--pad) 28px; display: grid; grid-template-columns: 1fr auto 1fr auto; gap: 50px; align-items: start; background: var(--black); color: var(--bone); }
.site-footer > div { display: flex; gap: 25px; font-size: .75rem; }
.site-footer > p { justify-self: center; color: var(--silver); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.top-link { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.site-footer small { grid-column: 1 / -1; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line); color: #696967; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --pad: 22px; --header: 76px; }
  .site-header { padding: 0 20px; grid-template-columns: 1fr auto; background: linear-gradient(180deg, rgba(0,0,0,.62), transparent); }
  .desktop-nav, .book-link { display: none; }
  .menu-toggle { width: 44px; height: 44px; display: grid; align-content: center; gap: 7px; }
  .menu-toggle span { display: block; width: 31px; height: 1px; background: var(--bone); }
  .mobile-nav { position: fixed; inset: 0; z-index: 100; min-height: 100dvh; padding: 0 22px 26px; display: flex; flex-direction: column; overflow-y: auto; background: #080808; color: var(--bone); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .25s ease, visibility .25s, transform .25s ease; }
  .mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav-head { height: var(--header); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
  .menu-close { width: 44px; height: 44px; display: block; position: relative; }
  .menu-close span { position: absolute; left: 6px; top: 21px; width: 31px; height: 1px; background: var(--bone); }
  .menu-close span:first-child { transform: rotate(45deg); }
  .menu-close span:last-child { transform: rotate(-45deg); }
  .mobile-links { margin-top: 36px; border-top: 1px solid var(--line); }
  .mobile-links a { min-height: 84px; display: flex; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(2.1rem, 10vw, 3.25rem); }
  .mobile-links small { width: 24px; color: var(--amber); font-family: var(--sans); font-size: .75rem; }
  .mobile-nav > p { margin: auto 0 0; padding-top: 42px; color: var(--silver); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }

  .hero { min-height: 720px; }
  .hero > img { object-position: 61% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.04) 48%, rgba(0,0,0,.9) 88%, rgba(0,0,0,.98) 100%); }
  .hero-meta { top: calc(var(--header) + 22px); font-size: .75rem; }
  .hero-meta span:last-child { display: none; }
  .hero-copy { left: 20px; right: 20px; bottom: 76px; }
  .hero-role { margin-bottom: 18px; font-size: .75rem; }
  .hero h1 { font-size: clamp(4.3rem, 21vw, 7rem); line-height: .75; }
  .hero h1 span:last-child { margin-left: 8vw; -webkit-text-stroke-width: 1px; }
  .hero-note { position: static; margin-top: 26px; text-align: left; font-size: 1.08rem; }
  .hero-book, .timecode { display: none; }
  .signal { height: 92px; }
  .signal-track { gap: 25px; }
  .signal-track span { font-size: 2.8rem; }

  .sound { padding: 90px var(--pad); }
  .sound-head { grid-template-columns: 1fr; gap: 32px; }
  .sound h2, .about h2, .dates h2, .booking h2 { font-size: clamp(3.7rem, 16.8vw, 6rem); }
  .sound-head > p:last-child { max-width: 430px; }
  .mix-player { margin: 65px 0 45px; min-height: 0; grid-template-columns: 1fr; }
  .disc { width: min(74vw, 310px); margin: 36px auto 10px; }
  .mix-content { padding: 34px 24px 38px; grid-template-columns: 1fr; grid-template-rows: auto; gap: 28px; }
  .mix-now strong { font-size: 2.65rem; }
  .equalizer { grid-row: auto; grid-column: 1; height: 54px; }
  .play-toggle, .spotify-link { grid-column: 1; }
  .spotify-link { justify-self: start; }
  .track { min-height: 118px; padding: 18px 0; grid-template-columns: 32px 1fr auto; gap: 14px; }
  .track:hover, .track.is-active { padding-inline: 12px; }
  .track strong { font-size: 1.18rem; }
  .track small { grid-column: 2; }
  .track time { grid-column: 3; grid-row: 1; }

  .about { min-height: 0; grid-template-columns: 1fr; }
  .about-portrait { min-height: 0; aspect-ratio: 4 / 5; }
  .about-portrait img { object-position: 62% center; }
  .about-copy { padding: 88px var(--pad); }
  .about-copy .section-mark { margin-bottom: 38px; }
  .about-text { margin: 48px 0 60px; grid-template-columns: 1fr; gap: 24px; }
  .credentials { grid-template-columns: 1fr; }
  .credentials div { padding: 16px 0; border-bottom: 1px solid var(--line); }

  .dates { padding: 90px var(--pad); }
  .dates-head { grid-template-columns: 1fr; gap: 30px; }
  .date-list { margin-top: 60px; }
  .date-list article { min-height: 170px; padding: 20px 0; grid-template-columns: 88px 1fr 44px; gap: 14px; }
  .date-list article:hover { padding-inline: 10px; }
  .date-list time { display: grid; gap: 0; }
  .date-list time strong { font-size: 2.65rem; }
  .date-list h3 { font-size: 1.42rem; }
  .date-type { grid-column: 2; }
  .date-list a { grid-column: 3; grid-row: 1 / 3; width: 42px; height: 42px; }
  .date-note { width: auto; }

  .booking { min-height: 760px; padding: 90px var(--pad); grid-template-columns: 1fr; gap: 70px; }
  .booking-orbit { width: 330px; height: 330px; right: -140px; top: -110px; }
  .booking .section-mark { margin-bottom: 38px; }
  .booking-copy > p:not(.section-mark) { margin: 42px 0 34px; }
  .booking-copy > a { max-width: 100%; gap: 16px; overflow-wrap: anywhere; font-size: 1.3rem; }
  .booking-facts div { grid-template-columns: 95px 1fr; }

  .site-footer { padding: 56px var(--pad) 26px; grid-template-columns: 1fr auto; gap: 32px; }
  .site-footer > div { grid-column: 1 / -1; }
  .site-footer > p { grid-column: 1 / -1; justify-self: start; }
  .top-link { grid-column: 2; grid-row: 1; }
}

@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; }
}
