@font-face {
  font-family: 'Argumentum Sans Black';
  src: url('fonts/ArgentumSans-Black.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1b120b;
  --paper: #f6efe2;
  --sunset: #f4a261;
  --poppy: #e76f51;
  --teal: #2a9d8f;
  --olive: #80906c;
  --red: var(--sunset);
  --black: var(--ink);
  --white: var(--paper);
  --grey: #a79a8c;
  --psych-purple: rgba(109, 76, 125, 0.5);
  --line: rgba(246, 239, 226, 0.22);
  --glow: rgba(244, 162, 97, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Argumentum Sans Black', sans-serif;
}

body {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: var(--black);
  background-image:
    radial-gradient(900px circle at 15% 5%, rgba(244, 162, 97, 0.12), transparent 60%),
    radial-gradient(800px circle at 85% 15%, rgba(42, 157, 143, 0.12), transparent 55%),
    radial-gradient(700px circle at 50% 90%, rgba(109, 76, 125, 0.12), transparent 55%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto;
  color: var(--white);
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='160' height='160' filter='url(%23n)' opacity='0.3'/></svg>");
  opacity: 0.28;
  mix-blend-mode: overlay;
  animation: grainFlicker 6s steps(6) infinite;
  z-index: 0;
}

body::before,
body::after {
  background-size: 160px 160px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.45) 100%),
    linear-gradient(180deg, rgba(244, 162, 97, 0.08), rgba(42, 157, 143, 0.06)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='1' stitchTiles='stitch'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='0.2'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.55;
  animation: grainFlickerAlt 7s steps(6) infinite;
  z-index: 0;
}

@keyframes grainFlicker {
  0% { opacity: 0.24; }
  25% { opacity: 0.28; }
  50% { opacity: 0.22; }
  75% { opacity: 0.26; }
  100% { opacity: 0.24; }
}

@keyframes grainFlickerAlt {
  0% { opacity: 0.5; }
  30% { opacity: 0.56; }
  60% { opacity: 0.48; }
  100% { opacity: 0.52; }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
  }
}

input,
textarea,
iframe {
  text-transform: none;
}

img,
iframe {
  max-width: 100%;
}
p,
li {
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
button,
.navbar_link,
.footer-links a {
  letter-spacing: 0.08em;
}

/* ===== Reveal motion ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =====================
   NAVBAR (fixed)
   ===================== */
.navbar {
  background: rgba(27, 18, 11, 0.96);
  border-bottom: 1px solid rgba(246, 239, 226, 0.12);
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.navbar_logo {
  color: var(--white);
  text-decoration: none;
  padding: 2rem;
  font-size: 1.5rem;
}

/* Hover */
.navbar_logo:hover {
  color: var(--red);
}




.navbar_link {
  color: var(--white);
  text-decoration: none;
  padding: 0rem 2rem;
}

.navbar_link:hover {
  color: var(--red);
}

/* =====================
   MOBILE NAV
   ===================== */
@media screen and (max-width: 768px) {
  body.active {
    overflow-y: hidden;
    overflow-x: hidden;
  }

  .navbar_link {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar_logo-img {
  height: 24px;
}


  .navbar_menu {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 90px;
    position: fixed;
    width: 100%;
    top: -1000px;
    left: 0;
  }

  .navbar_menu.active {
    top: 60px;
    opacity: 1;
    z-index: 99;
    height: calc(100vh - 60px);
    font-size: 1.5rem;
    background: var(--black);
    overflow-y: auto;
  }

  .navbar_toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: var(--white);
    display: block;
    cursor: pointer;
  }

  #mobile-menu {
    position: absolute;
    top: 15%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* =====================
   HERO (home)
   ===================== */
.hero {
  height: 100vh;
  background: url('./pictures/sleeping.JPG');
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at 65% 25%, rgba(244, 162, 97, calc(0.08 + var(--hero-glow, 0))), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(27, 18, 11, 0.32) 10%,
    rgba(27, 18, 11, 0.12) 55%,
    rgba(27, 18, 11, 0.38) 100%
  );
}

.hero_content {
  color: var(--white);
  padding: 5rem 2rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.hero_content h1 {
  font-size: clamp(1vw, 10vw, 10vw);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow:
    0 0 3px rgba(231, 111, 81, 0.08);
}

.hero_content p {
  font-size: clamp(1rem, 4vw, 2.5rem);
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-shadow:
    0 0 2px rgba(231, 111, 81, 0.06);
}

/* =====================
   MUSIC PAGE
   ===================== */
.music-page {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  margin-top: 60px;
  height: calc(100vh - 60px);

  padding: 2rem;
  gap: 2rem;

  background: var(--black);
  background-image:
    radial-gradient(700px circle at 0% 0%, rgba(244, 162, 97, 0.1), transparent 55%),
    radial-gradient(700px circle at 100% 0%, rgba(42, 157, 143, 0.08), transparent 55%);
  color: var(--white);
  overflow: hidden;
}

/* Typography — Sleek + Psychedelic */
.music-title {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  text-shadow:
    0 0 3px rgba(231, 111, 81, 0.08);
}

.music-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.25;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-top: 0.35rem;
  max-width: 34ch;
  text-shadow:
    0 0 2px rgba(231, 111, 81, 0.06);
}

.music-quote {
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  line-height: 1.25;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.25rem;
  text-shadow:
    0 0 2px rgba(231, 111, 81, 0.05);
}

/* Left column: fill space + let text expand */
.music-left {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.music-text {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 0;
  font-size: 0.95rem;
  line-height: 1.55;

  flex: 1;             /* fill remaining space */
  overflow-y: auto;    /* scroll only if needed */
}

/* Right column */
.music-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-height: 100%;
  overflow: hidden;
}

.music-artwork {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.music-artwork img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.music-artwork img.zoomed {
  transform: scale(1.5);
  z-index: 10;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Spotify heights (your working fix) */
.music-spotify {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  height: calc(50vh - 60px);
}

.music-playlist {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  height: calc(50vh - 60px);
}

.music-spotify iframe,
.music-playlist iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 6px;
}

/* =====================
   LIVE PAGE (layout lock)
   ===================== */
.live-page {
  margin-top: 60px;
  min-height: calc(100vh - 60px);
  background: var(--black);
  background-image:
    radial-gradient(900px circle at 20% 0%, rgba(244, 162, 97, 0.1), transparent 60%),
    radial-gradient(900px circle at 80% 10%, rgba(109, 76, 125, 0.12), transparent 60%);
  color: var(--white);
  padding: 2rem;
  overflow-x: hidden;
}

/* =====================
   LSD PAGE
   ===================== */
.lsd-page {
  margin-top: 60px;
  min-height: calc(100vh - 60px);
  background: var(--black);
  background-image:
    radial-gradient(900px circle at 10% 0%, rgba(42, 157, 143, 0.1), transparent 60%),
    radial-gradient(900px circle at 90% 0%, rgba(244, 162, 97, 0.12), transparent 60%);
  color: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.lsd-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.lsd-hero__media {
  position: relative;
  height: 48vh;
  overflow: hidden;
  border-radius: 0;
}

.lsd-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.03) contrast(0.98) saturate(1.1) sepia(0.08);
}

.lsd-hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 55%,
    rgba(0,0,0,0.5) 78%,
    rgba(0,0,0,0.85) 100%
  );
  pointer-events: none;
}

.lsd-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
}

.lsd-title {
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow:
    0 0 3px rgba(231, 111, 81, 0.08);
}

.lsd-tagline {
  margin-top: 0.35rem;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
  max-width: 44ch;
}

.lsd-subline {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.lsd-hero__copy {
  margin-top: 0.6rem;
  max-width: 46ch;
}

.lsd-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.lsd-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lsd-h2 {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

.lsd-p {
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.95;
}

.lsd-quote {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
  opacity: 0.85;
  padding-left: 1rem;
  border-left: 2px solid rgba(244, 162, 97, 0.7);
}

.lsd-quote__by {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.lsd-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 226, 0.2);
  background: rgba(246, 239, 226, 0.04);
}

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

/* =====================
   THERETONE PAGE
   ===================== */
.theretone-page {
  margin-top: 60px;
  min-height: calc(100vh - 60px);
  background: var(--black);
  background-image:
    radial-gradient(900px circle at 12% 0%, rgba(42, 157, 143, 0.1), transparent 60%),
    radial-gradient(900px circle at 88% 0%, rgba(244, 162, 97, 0.12), transparent 60%);
  color: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.theretone-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: end;
}

.theretone-hero__media {
  position: relative;
  height: 48vh;
  overflow: hidden;
}

.theretone-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.03) contrast(0.98) saturate(1.1) sepia(0.08);
}

.theretone-hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 55%,
    rgba(0,0,0,0.5) 78%,
    rgba(0,0,0,0.85) 100%
  );
  pointer-events: none;
}

.theretone-hero__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.theretone-title {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow:
    0 0 3px rgba(231, 111, 81, 0.08);
}

.theretone-tagline {
  margin-top: 0.35rem;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
  max-width: 44ch;
  text-shadow:
    0 0 2px rgba(231, 111, 81, 0.06);
}

.theretone-subline {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  text-shadow:
    0 0 2px rgba(231, 111, 81, 0.05);
}

.theretone-hero__copy {
  margin-top: 0.6rem;
  max-width: 46ch;
}

.theretone-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.theretone-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.theretone-h2 {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

.theretone-p {
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.95;
}

.theretone-quote {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
  opacity: 0.85;
  padding-left: 1rem;
  border-left: 2px solid rgba(244, 162, 97, 0.7);
}

.theretone-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 226, 0.2);
  background: rgba(246, 239, 226, 0.04);
}

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

.theretone-shop {
  border-top: 1px solid rgba(246, 239, 226, 0.16);
  padding-top: 1.25rem;
}

.theretone-shop__embed {
  margin-top: 0.75rem;
  border: 1px dashed rgba(246, 239, 226, 0.28);
  border-radius: 6px;
  padding: 1rem;
  background: rgba(246, 239, 226, 0.03);
}

.theretone-shop__card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
}

.theretone-shop__card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

.theretone-shop__info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.theretone-shop__name {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.theretone-shop__price {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.theretone-shop__button {
  display: inline-block;
  width: fit-content;
  margin-top: 0.35rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(246, 239, 226, 0.45);
  border-radius: 2px;
  text-decoration: none;
  color: var(--white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.theretone-shop__button:hover {
  color: var(--sunset);
  border-color: rgba(244, 162, 97, 0.7);
  transform: translateY(-1px);
}

.theretone-shop__link {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(246, 239, 226, 0.35);
}

.theretone-shop__link:hover {
  color: var(--sunset);
  border-bottom-color: rgba(244, 162, 97, 0.7);
}

/* =====================
   MERCH PAGE
   ===================== */
.merch-page {
  margin-top: 60px;
  min-height: calc(100vh - 60px);
  background: var(--black);
  background-image:
    radial-gradient(900px circle at 12% 0%, rgba(42, 157, 143, 0.1), transparent 60%),
    radial-gradient(900px circle at 88% 0%, rgba(244, 162, 97, 0.12), transparent 60%);
  color: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.merch-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: end;
}

.merch-hero__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 52ch;
}

.merch-title {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow:
    0 0 3px rgba(231, 111, 81, 0.08);
}

.merch-tagline {
  margin-top: 0.35rem;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
  max-width: 44ch;
  text-shadow:
    0 0 2px rgba(231, 111, 81, 0.06);
}

.merch-subline {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  text-shadow:
    0 0 2px rgba(231, 111, 81, 0.05);
}

.merch-hero__copy {
  margin-top: 0.6rem;
  max-width: 46ch;
}

.merch-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.merch-section {
  border-top: 1px solid rgba(246, 239, 226, 0.16);
  padding-top: 1.25rem;
}

.merch-h2 {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.9rem;
}

.merch-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.merch-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: start;
  border: 1px solid rgba(246, 239, 226, 0.16);
  border-radius: 6px;
  padding: 1rem;
  background: rgba(246, 239, 226, 0.03);
}

.merch-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.merch-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.merch-card__name {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.merch-card__price {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.merch-card__button {
  display: inline-block;
  width: fit-content;
  margin-top: 0.35rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(246, 239, 226, 0.45);
  border-radius: 2px;
  text-decoration: none;
  color: var(--white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.merch-card__button:hover {
  color: var(--sunset);
  border-color: rgba(244, 162, 97, 0.7);
  transform: translateY(-1px);
}

/* =====================
   PROJECT PAGE
   ===================== */
.project-page {
  margin-top: 60px;
  min-height: calc(100vh - 60px);
  background: var(--black);
  background-image:
    radial-gradient(900px circle at 12% 0%, rgba(42, 157, 143, 0.1), transparent 60%),
    radial-gradient(900px circle at 88% 0%, rgba(244, 162, 97, 0.12), transparent 60%);
  color: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.project-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: end;
}

.project-hero__media {
  position: relative;
  height: 48vh;
  overflow: hidden;
}

.project-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.03) contrast(0.98) saturate(1.1) sepia(0.08);
}

.project-hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 55%,
    rgba(0,0,0,0.5) 78%,
    rgba(0,0,0,0.85) 100%
  );
  pointer-events: none;
}

.project-hero__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 52ch;
}

.project-title {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow:
    0 0 3px rgba(231, 111, 81, 0.08);
}

.project-tagline {
  margin-top: 0.35rem;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
  max-width: 44ch;
  text-shadow:
    0 0 2px rgba(231, 111, 81, 0.06);
}

.project-subline {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  text-shadow:
    0 0 2px rgba(231, 111, 81, 0.05);
}

.project-hero__copy {
  margin-top: 0.6rem;
  max-width: 46ch;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.project-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.project-p {
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.95;
}

.project-quote {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
  opacity: 0.85;
  padding-left: 1rem;
  border-left: 2px solid rgba(244, 162, 97, 0.7);
}

.project-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  filter: brightness(1.03) contrast(0.98) saturate(1.1) sepia(0.08);
}

.project-cta {
  border-top: 1px solid rgba(246, 239, 226, 0.16);
  padding-top: 1.25rem;
}

.project-h2 {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

.project-cta__button {
  display: inline-block;
  width: fit-content;
  margin-top: 0.6rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(246, 239, 226, 0.45);
  border-radius: 2px;
  text-decoration: none;
  color: var(--white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.project-cta__button:hover {
  color: var(--sunset);
  border-color: rgba(244, 162, 97, 0.7);
  transform: translateY(-1px);
}

/* HERO: keep 2-column layout but let image push into the title area */
.live-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;

  position: relative;
  max-width: 100%;
}

/* The image extends into the right column */
.live-hero__media--fade {
  position: relative;
  height: 44vh;
  overflow: hidden;

  /* extend into the gap + into the title column */
  width: 100%;
  margin-right: 0;
  max-width: 100%;
}

/* Image stays punchy */
.live-hero__media--fade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* The fade that blends into the title */
.live-hero__fade {
  position: absolute;
  inset: 0;

  /* fade to the page background as we move right */
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,0.65) 78%,
    rgba(0,0,0,1) 92%
  );

  pointer-events: none;
}

/* Make sure text sits above the bleed */
.live-hero__text {
  position: relative;
  z-index: 2;
  max-width: 38ch;
  width: 100%;
  min-width: 0;
}


.live-hero__media {
  height: 44vh;
  overflow: hidden;
  max-width: 100%;
}

.live-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-title {
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.12em;   /* BIG change */
  text-transform: uppercase;
  text-shadow:
    0 0 3px rgba(231, 111, 81, 0.08);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.live-tagline {
  margin-top: 0.6rem;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
  max-width: 40ch;
  line-height: 1.3;
  text-wrap: balance;
  text-shadow:
    0 0 2px rgba(231, 111, 81, 0.06);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.live-subline {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  line-height: 1.3;
  text-wrap: balance;
  text-shadow:
    0 0 2px rgba(231, 111, 81, 0.05);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.live-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
  max-width: 100%;
}

.live-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.live-block {
  border-top: 1px solid rgba(246, 239, 226, 0.16);
  padding-top: 1rem;
}

.live-h2 {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.live-p {
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 0.75rem;
}

.live-link {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 239, 226, 0.35);
  word-break: break-word;
}

.live-link:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Upcoming empty state */
.live-empty__title {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.9;
  margin-bottom: 0.35rem;
}

.live-empty__text {
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

/* =====================
   NEWSLETTER (nice first)
   ===================== */

.newsletter {
  position: relative;
  padding: 1.5rem 1.5rem 1.6rem;
  margin-top: 1.75rem;

  border: 1px solid rgba(246, 239, 226, 0.2);
  border-radius: 4px;

  background: rgba(246, 239, 226, 0.04);
}

.newsletter__copy {
  opacity: 0.9;
  margin-bottom: 0.9rem;
  max-width: 42ch;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* label matches your editorial uppercase language */
.newsletter__label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* input + button row */
.newsletter__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

/* sleek, minimal input */
.newsletter__input {
  width: 100%;
  background: rgba(246, 239, 226, 0.04);
  color: var(--white);
  border: 1px solid rgba(246, 239, 226, 0.2);
  padding: 0.95rem 1rem;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.newsletter__input::placeholder {
  color: rgba(246, 239, 226, 0.5);
}

.newsletter__input:focus {
  border-color: rgba(246, 239, 226, 0.45);
  background: rgba(246, 239, 226, 0.08);
}

/* button feels “poster stamp”, but still sleek */
.newsletter__button {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(246, 239, 226, 0.38);
  padding: 0.95rem 1.05rem;
  border-radius: 4px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.newsletter .live-h2 {
  margin-bottom: 0.6rem;
}

.newsletter:hover {
  border-color: rgba(246, 239, 226, 0.28);
}

.newsletter__button:hover {
  color: var(--sunset);
  border-color: rgba(244, 162, 97, 0.65);
  transform: translateY(-1px);
}

.newsletter__button:active {
  transform: translateY(0px);
}

.newsletter__fineprint {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.72;
}


/* Optional gigs list */
.live-shows {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.live-show {
  display: grid;
  grid-template-columns: 6ch 1fr auto;
  gap: 1rem;
  align-items: baseline;
}

.live-show__date {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}

.live-show__meta {
  opacity: 0.92;
}

.live-show__cta {
  text-decoration: none;
  color: var(--white);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}

.live-show__cta:hover {
  color: var(--red);
}

.live-show__cta.is-muted {
  opacity: 0.6;
  cursor: default;
}

/* Highlights list */
.live-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  opacity: 0.95;
}

.live-bullets li::before {
  content: "— ";
  opacity: 0.65;
}

/* EPK table */
.live-epk {
  display: grid;
  gap: 0.6rem;
  min-width: 0;
}

.live-epk__row {
  display: grid;
  grid-template-columns: 12ch 1fr;
  gap: 1rem;
  opacity: 0.95;
  min-width: 0;
}

.live-epk__row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.live-epk__row span:first-child {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Media column */
.live-media {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 100%;
}

.live-media__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.live-credit {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.55;
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 239, 226, 0.2);
}

.live-credit:hover {
  color: var(--white);
  border-bottom-color: rgba(246, 239, 226, 0.4);
}

.live-h2--media {
  margin-bottom: 0.5rem;
}

/* Photo grid */
.live-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 100%;
}

.live-photos img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.live-photos img {
  filter: brightness(1.02) contrast(0.98) saturate(1.08) sepia(0.06);
}

/* =====================
   FOOTER — refined, human
   ===================== */

.site-footer {
  background: var(--black);
  background-image:
    radial-gradient(800px circle at 10% 100%, rgba(42, 157, 143, 0.1), transparent 60%),
    radial-gradient(800px circle at 90% 100%, rgba(244, 162, 97, 0.12), transparent 60%);
  border-top: 1px solid rgba(246, 239, 226, 0.16);
  padding: 3.5rem 2rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
}

/* ===== Newsletter ===== */

.footer-newsletter {
  max-width: 520px;
}

.footer-newsletter {
  order: 2;
}

.footer-meta {
  order: 1;
}

.footer-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-lead {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.45;
  margin-bottom: 1.1rem;
  max-width: 36ch;
  color: var(--white);
  opacity: 0.95;
}

/* Make footer newsletter lighter than page version */
.footer-newsletter .newsletter__form {
  gap: 0.55rem;
}

.footer-newsletter .newsletter__input {
  background: rgba(246, 239, 226, 0.03);
  border-color: rgba(246, 239, 226, 0.18);
}

.footer-newsletter .newsletter__input:focus {
  border-color: rgba(246, 239, 226, 0.45);
}

.footer-newsletter .newsletter__button {
  border-color: rgba(246, 239, 226, 0.32);
}

.footer-newsletter .newsletter__button:hover {
  border-color: var(--red);
}

/* ===== Contact + Socials ===== */

.footer-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-contact {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 34ch;
  color: var(--white);
  opacity: 0.95;
}

.footer-contact a {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 239, 226, 0.35);
}

.footer-contact a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Social links — calm, editorial */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.footer-links a {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  color: var(--white);
  text-decoration: none;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--red);
}



/* ===== Mobile ===== */
@media screen and (max-width: 900px) {
  .site-footer {
    padding: 3rem 1.25rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-links {
    margin-top: 1.75rem;
  }
}



/* =====================
   MOBILE (music + live)
   ===================== */
@media screen and (max-width: 900px) {
  html,
  body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
  }

  /* MUSIC */
  .music-page {
    grid-template-columns: 1fr;
    margin-top: 60px;
    height: auto;
    padding: 1.25rem;
    gap: 1.25rem;
    overflow: visible;
    width: 100%;
  }

  .music-left {
    height: auto;
    overflow: visible;
    min-width: 0;
  }

  .music-title {
    font-size: clamp(2.6rem, 9vw, 3.6rem);
    line-height: 0.95;
    letter-spacing: 0.05em;
  }

  .music-subtitle {
    font-size: clamp(1rem, 3.4vw, 1.25rem);
    letter-spacing: 0.12em;
    margin-top: 0.45rem;
    max-width: 36ch;
  }

  .music-quote {
    font-size: clamp(0.9rem, 3.1vw, 1.05rem);
    letter-spacing: 0.16em;
    margin-top: 0.3rem;
  }

  .music-text {
    width: 100%;
    margin-top: 0.25rem;
    padding: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.55;
    border-radius: 12px;
    flex: initial;
    overflow: visible;
    max-width: 100%;
  }

  .music-text p + p {
    margin-top: 1rem;
  }

  .music-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: visible;
    max-height: none;
    min-width: 0;
    width: 100%;
  }

  .music-artwork {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    overflow: hidden;
    pointer-events: none;
    height: auto;
    max-width: 100%;
  }

  .music-artwork img {
    height: 26vh;
    width: auto;
    flex: 0 0 auto;
    object-fit: contain;
    border-radius: 0;
  }

  .music-spotify iframe,
  .music-playlist iframe {
    height: 45vh;
    border-radius: 12px;
    display: block;
  }

  .music-playlist {
    margin-top: 0.75rem;
  }

  /* LIVE */
  .live-page {
    padding: 1.25rem;
    width: 100%;
    overflow-x: hidden;
  }

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

.newsletter__button {
  width: 100%;
}

.newsletter {
  padding: 1.25rem;
}

  .live-hero {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    width: 100%;
    min-width: 0;
  }

  .live-hero__text {
    width: 100%;
    min-width: 0;
  }

  .live-hero__media {
    height: 38vh;
    width: 100%;
    max-width: 100%;
  }

  .live-title {
    font-size: clamp(2.6rem, 9vw, 3.6rem);
    letter-spacing: 0.05em;
  }

  .live-tagline {
    font-size: clamp(1rem, 3.4vw, 1.25rem);
    letter-spacing: 0.12em;
    max-width: 42ch;
  }

  .live-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
    min-width: 0;
  }

  .live-media {
    width: 100%;
    min-width: 0;
  }

  .live-photos {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .live-hero__media--fade {
    max-width: 100%;
  }

  /* LSD */
  .lsd-page {
    padding: 1.25rem;
  }

  .lsd-hero {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .lsd-hero__media {
    height: 36vh;
  }

  .lsd-hero__fade {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.0) 60%
    );
  }


  .lsd-title {
    font-size: clamp(2.6rem, 9vw, 3.6rem);
    letter-spacing: 0.05em;
  }

  .lsd-tagline {
    font-size: clamp(1rem, 3.4vw, 1.25rem);
    letter-spacing: 0.12em;
  }

  .lsd-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .theretone-page {
    padding: 1.25rem;
  }

  .theretone-hero {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .theretone-hero__media {
    height: 36vh;
  }

  .theretone-title {
    font-size: clamp(2.6rem, 9vw, 3.6rem);
    letter-spacing: 0.05em;
  }

  .theretone-tagline {
    font-size: clamp(1rem, 3.4vw, 1.25rem);
    letter-spacing: 0.12em;
  }

  .theretone-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .theretone-shop__card {
    grid-template-columns: 1fr;
  }

  .merch-page {
    padding: 1.25rem;
  }

  .merch-hero {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .merch-title {
    font-size: clamp(2.6rem, 9vw, 3.6rem);
    letter-spacing: 0.05em;
  }

  .merch-tagline {
    font-size: clamp(1rem, 3.4vw, 1.25rem);
    letter-spacing: 0.12em;
  }

  .merch-cards {
    grid-template-columns: 1fr;
  }

  .merch-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .merch-card__info {
    align-items: flex-start;
  }

  .merch-card__button {
    width: 100%;
    text-align: center;
  }

  .project-page {
    padding: 1.25rem;
  }

  .project-hero {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .project-hero__media {
    height: 36vh;
  }

  .project-title {
    font-size: clamp(2.6rem, 9vw, 3.6rem);
    letter-spacing: 0.05em;
  }

  .project-tagline {
    font-size: clamp(1rem, 3.4vw, 1.25rem);
    letter-spacing: 0.12em;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .project-media {
    grid-template-columns: 1fr;
  }

  .project-cta__button {
    width: 100%;
    text-align: center;
  }

  .live-hero__media--fade {
  width: 100%;
  margin-right: 0;
  height: 38vh;
  max-width: 100%;
}

.live-hero__fade {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.0) 60%
  );
}

}
