﻿/* Design tokens and global foundations */
:root {
  --ink:#090909;
  --paper:#eeeae2;
  --red:#e32620;
  --muted:#aaa39a;
  --line:rgba(238,234,226,.15);
  --shell:min(1180px,calc(100% - 64px))
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:82px
}

body {
  margin:0;
  background:var(--ink);
  color:var(--paper);
  font:400 16px/1.6 Inter,sans-serif;
  overflow-x:hidden
}

body::after {
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:20;
  opacity:.025;
  background:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

img {
  display:block;
  max-width:100%
}

a {
  color:inherit;
  text-decoration:none
}

button,input {
  font:inherit
}

.shell {
  width:var(--shell);
  margin:auto
}

.skip {
  position:fixed;
  top:8px;
  left:8px;
  z-index:100;
  padding:10px;
  background:var(--paper);
  color:var(--ink);
  transform:translateY(-150%)
}

.skip:focus {
  transform:none
}

/* Fixed header and navigation */
.header {
  position:fixed;
  inset:0 0 auto;
  z-index:30;
  height:82px;
  padding:0 max(32px,calc((100vw - 1180px)/2));
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid transparent;
  transition:.25s
}

.header.scrolled,.header.open {
  background:rgba(9,9,9,.94);
  border-color:var(--line);
  backdrop-filter:blur(12px)
}

.brand img {
  width:112px;
  height:48px;
  object-fit:contain
}

.header nav {
  display:flex;
  gap:34px;
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase
}

.header nav a {
  position:relative;
  padding:12px 0
}

.header nav a::after {
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:5px;
  height:2px;
  background:var(--red);
  transition:.2s
}

.header nav a:hover::after,.header nav a.active::after {
  right:0
}

.menu {
  display:none;
  color:inherit;
  background:none;
  border:0
}

/* Hero */
.hero {
  min-height:760px;
  height:100svh;
  position:relative;
  display:flex;
  align-items:flex-end;
  isolation:isolate
}

.hero-bg,.hero-shade {
  position:absolute;
  inset:0;
  width:100%;
  height:100%
}

.hero-bg {
  z-index:-2;
  object-fit:cover;
  object-position:50% 42%;
  filter:saturate(.72) contrast(1.12)
}

.hero-shade {
  z-index:-1;
  background:linear-gradient(90deg,rgba(9,9,9,.9),rgba(9,9,9,.42) 55%,rgba(9,9,9,.1)),linear-gradient(0deg,rgba(9,9,9,.82),transparent 48%)
}

.hero-copy {
  padding-bottom:clamp(72px,10vh,120px)
}

.kicker {
  margin:0 0 14px;
  color:#d3cec6;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase
}

h1,h2,h3 {
  font-family:"Barlow Condensed",sans-serif;
  text-transform:uppercase;
  line-height:.9;
  margin:0
}

h1 {
  font-size:clamp(4.7rem,10.5vw,9.5rem);
  letter-spacing:-.035em
}

h2 {
  font-size:clamp(3.5rem,7vw,6.5rem);
  letter-spacing:-.025em
}

h3 {
  font-size:2rem
}

.hero-copy>p:not(.kicker) {
  max-width:570px;
  margin:28px 0 0;
  color:#d9d4cc;
  font-size:clamp(1rem,1.6vw,1.18rem)
}

.actions {
  display:flex;
  align-items:center;
  gap:28px;
  margin-top:32px
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 22px;
  border:1px solid var(--red);
  border-radius:0;
  background:var(--red);
  color:#fff;
  cursor:pointer;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  transition:.2s
}

.button:hover {
  background:#ff382f;
  transform:translateY(-2px)
}

.text-link {
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase
}

.hero>small {
  position:absolute;
  right:24px;
  bottom:25px;
  color:#aaa;
  font-size:.65rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  writing-mode:vertical-rl
}

/* Shared sections and show listing */
.section {
  padding-block:clamp(90px,12vw,160px)
}

.heading {
  max-width:680px
}

.heading>p:last-child,.music-copy>p,.contact p {
  color:var(--muted);
  max-width:560px
}

.heading-row {
  max-width:none;
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:50px
}

.heading-row>p {
  max-width:400px;
  margin:0 0 8px
}

.show {
  margin-top:55px;
  padding:26px 0;
  display:grid;
  grid-template-columns:180px 1fr auto;
  gap:28px;
  align-items:center;
  border-block:1px solid var(--line)
}

.show>div:first-child {
  display:flex;
  flex-direction:column
}

.show strong {
  font:700 2.4rem/1 "Barlow Condensed"
}

.show span,.show p {
  color:var(--muted)
}

.show p {
  margin:8px 0 0
}

.outline {
  background:transparent;
  border-color:var(--line)
}

/* Music and Spotify feature */
.music {
  display:grid;
  grid-template-columns:1fr 1fr;
  background:#121010
}

.music-art {
  min-height:610px;
  padding:40px;
  display:grid;
  place-items:center;
  align-content:center;
  background:radial-gradient(circle,rgba(227,38,32,.45),transparent 48%),linear-gradient(135deg,#230d0c,#080707);
  position:relative
}

.music-art::before {
  content:"";
  position:absolute;
  inset:28px;
  border:1px solid #ffffff29
}

.music-art img {
  width:min(80%,490px);
  position:relative
}

.music-art span {
  position:absolute;
  bottom:52px;
  font-size:.68rem;
  letter-spacing:.2em;
  text-transform:uppercase
}

.music-copy {
  padding:clamp(60px,9vw,130px);
  display:flex;
  flex-direction:column;
  justify-content:center
}

.music-copy>p {
  font-size:1.05rem
}

.music-copy .status {
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid var(--line);
  color:#ccc;
  font-size:.75rem;
  letter-spacing:.1em;
  text-transform:uppercase
}

.status::first-letter {
  color:var(--red)
}

/* Live gallery */
.gallery {
  margin-top:55px;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  grid-template-rows:repeat(2,330px);
  gap:16px
}

.gallery figure {
  margin:0;
  position:relative;
  overflow:hidden;
  background:#171414
}

.gallery .wide {
  grid-row:1/3
}

.gallery img {
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.72);
  transition:.5s
}

.gallery figure:hover img {
  filter:saturate(1);
  transform:scale(1.02)
}

figcaption {
  position:absolute;
  inset:auto 18px 15px;
  font-size:.65rem;
  font-weight:600;
  letter-spacing:.15em;
  text-transform:uppercase;
  text-shadow:0 2px 10px #000
}

/* Contact and mailing list */
.contact {
  background:var(--paper);
  color:var(--ink)
}

.contact-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(60px,10vw,140px);
  align-items:end
}

.contact .kicker {
  color:#6d6861
}

.contact p {
  color:#625e58
}

.mail {
  display:inline-block;
  margin-top:20px;
  font-weight:600;
  border-bottom:1px solid
}

.signup label {
  display:block;
  margin-bottom:15px;
  font-weight:600
}

.signup>div {
  display:grid;
  grid-template-columns:1fr auto
}

.signup input {
  min-width:0;
  border:1px solid #aaa49b;
  border-right:0;
  border-radius:0;
  padding:0 16px;
  background:transparent
}

.signup small {
  display:block;
  margin-top:10px;
  color:#77716a
}

/* Footer */
.footer {
  min-height:180px;
  padding-block:46px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:25px
}

.footer img {
  width:105px;
  height:50px;
  object-fit:contain
}

.footer>div {
  display:flex;
  gap:26px;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase
}

.footer p {
  justify-self:end;
  color:var(--muted);
  font-size:.7rem
}

/* Scroll reveal animation */
.reveal {
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s,transform .7s
}

.reveal.visible {
  opacity:1;
  transform:none
}

/* Tablet and compact navigation */
@media(max-width:900px) {
  /* Design tokens and global foundations */
:root {
    --shell:min(calc(100% - 40px),720px)
  }

  /* Fixed header and navigation */
.header {
    padding-inline:20px
  }

  .menu {
    display:flex;
    align-items:center;
    gap:12px;
    z-index:2;
    font-size:.7rem;
    letter-spacing:.15em;
    text-transform:uppercase
  }

  .menu i,.menu i::after {
    display:block;
    width:24px;
    height:1px;
    background:currentColor;
    content:"";
    transition:.2s
  }

  .menu i::after {
    transform:translateY(6px)
  }

  .header.open .menu i {
    transform:rotate(45deg)
  }

  .header.open .menu i::after {
    transform:rotate(90deg)
  }

  .header nav {
    position:fixed;
    inset:0;
    padding:110px 28px;
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
    background:var(--ink);
    visibility:hidden;
    opacity:0;
    transform:translateY(-10px);
    transition:.2s
  }

  .header nav a {
    font:700 clamp(3.2rem,12vw,5rem)/1 "Barlow Condensed";
    letter-spacing:-.02em
  }

  .header.open nav {
    visibility:visible;
    opacity:1;
    transform:none
  }

  body.menu-open {
    overflow:hidden
  }

  /* Music and Spotify feature */
.music {
    grid-template-columns:1fr
  }

  .music-art {
    min-height:500px
  }

  .music-copy {
    min-height:480px
  }

  /* Live gallery */
.gallery {
    grid-template-columns:1fr 1fr;
    grid-template-rows:460px 280px
  }

  .gallery .wide {
    grid-column:1/3;
    grid-row:auto
  }

  .contact-inner {
    grid-template-columns:1fr
  }

  /* Footer */
.footer {
    grid-template-columns:1fr auto
  }

  .footer p {
    grid-column:1/3;
    justify-self:start;
    margin:0
  }

  
}

/* Phone layout */
@media(max-width:600px) {
  /* Design tokens and global foundations */
:root {
    --shell:calc(100% - 32px)
  }

  /* Fixed header and navigation */
.header {
    height:70px;
    padding-inline:16px
  }

  .brand img {
    width:94px
  }

  /* Hero */
.hero {
    min-height:680px
  }

  .hero-bg {
    object-position:58% center
  }

  .hero-shade {
    background:linear-gradient(0deg,rgba(9,9,9,.96),rgba(9,9,9,.35) 75%)
  }

  h1 {
    font-size:clamp(4rem,21vw,6rem)
  }

  .hero-copy {
    padding-bottom:64px
  }

  .actions {
    align-items:flex-start;
    flex-direction:column;
    gap:20px
  }

  .hero>small {
    display:none
  }

  /* Shared sections and show listing */
.section {
    padding-block:82px
  }

  .show {
    grid-template-columns:1fr;
    margin-top:36px
  }

  .show .button {
    justify-self:start
  }

  .music-art {
    min-height:390px
  }

  .music-copy {
    min-height:410px;
    padding:64px 24px
  }

  .heading-row {
    display:block
  }

  .heading-row>p {
    margin-top:24px
  }

  /* Live gallery */
.gallery {
    margin-top:36px;
    grid-template-columns:1fr;
    grid-template-rows:420px 300px 300px
  }

  .gallery .wide {
    grid-column:auto
  }

  .signup>div {
    grid-template-columns:1fr;
    gap:10px
  }

  .signup input {
    height:50px;
    border-right:1px solid #aaa49b
  }

  /* Footer */
.footer {
    min-height:220px;
    grid-template-columns:1fr;
    justify-items:start
  }

  .footer>div {
    flex-wrap:wrap;
    gap:16px 22px
  }

  .footer p {
    grid-column:auto
  }

  
}

/* Respect accessibility motion preferences */
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }

  *,*::before,*::after {
    transition:none!important
  }

  /* Scroll reveal animation */
.reveal {
    opacity:1;
    transform:none
  }

  
}

.music-art iframe {
  position:relative;
  z-index:1;
  width:min(88%,520px);
  height:352px;
  border:0;
  border-radius:12px;
  box-shadow:0 25px 70px rgba(0,0,0,.45)
}

.music-copy .actions {
  flex-wrap:wrap
}

.about {
  border-bottom:1px solid var(--line)
}

.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(50px,9vw,130px);
  align-items:start
}

.about-copy {
  padding-top:8px
}

.about-copy p {
  margin:0 0 20px;
  color:var(--muted);
  font-size:1.05rem
}

.about-copy .text-link {
  display:inline-block;
  margin-top:12px;
  border-bottom:1px solid var(--red);
  padding-bottom:4px
}

/* Tablet and compact navigation */
@media(max-width:900px) {
  .about-grid {
    grid-template-columns:1fr;
    gap:35px
  }

  
}

/* Phone layout */
@media(max-width:600px) {
  .music-art iframe {
    width:100%;
    height:352px
  }

  .music-art {
    padding-inline:28px
  }

  .music-copy .actions {
    align-items:flex-start
  }

  
}

