/* ============================================================
   TENDER ECHO SESSIONS — style.css
   Palette: parchment / warm cream / dusty mauve / amber gold
   Type: Lora (display/serif) + Nunito (ui/body)
   ============================================================ */

:root {
  --parchment:   #F5EFE0;
  --cream:       #FBF7EF;
  --warm-white:  #FFFDF8;
  --mauve:       #7B5EA7;
  --mauve-dim:   rgba(123, 94, 167, 0.15);
  --amber:       #C8813A;
  --amber-warm:  #E8A05A;
  --ink:         #2C2118;
  --ink-mid:     #5C4A38;
  --ink-soft:    #8C7A68;
  --ink-faint:   #C4B8A8;
  --border:      rgba(123, 94, 167, 0.2);

  --font-display: 'Lora', Georgia, serif;
  --font-ui:      'Nunito', system-ui, sans-serif;

  --max-w: 1160px;
  --section-pad: clamp(80px, 10vw, 130px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ---- NAV ---- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}

#nav.scrolled {
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--ink-faint);
  box-shadow: 0 1px 16px rgba(44,33,24,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  flex-shrink: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  flex: 1;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-stream { display: flex; gap: 10px; margin-left: auto; }

.stream-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid var(--ink-faint);
  color: var(--ink-soft);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.stream-btn.spotify:hover { border-color: #1DB954; color: #1DB954; }

/* ---- HAMBURGER ---- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  position: relative;
  z-index: 200;
}

.burger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
  transform-origin: center;
}
.menu-toggle.is-open .burger-line:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle.is-open .burger-line:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.is-open { pointer-events: all; visibility: visible; }

.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background: rgba(251, 247, 239, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(200,129,58,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.mobile-menu.is-open .mobile-menu-bg { opacity: 1; }

.mobile-menu-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 36px 48px;
}

.mobile-nav-list { list-style: none; display: flex; flex-direction: column; }

.mobile-nav-item {
  border-bottom: 1px solid var(--ink-faint);
  overflow: hidden;
}

.mobile-nav-link {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  text-decoration: none;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.is-open .mobile-nav-link { opacity: 1; transform: translateY(0); }
.mobile-nav-link[data-index="0"] { transition-delay: 0.10s; }
.mobile-nav-link[data-index="1"] { transition-delay: 0.17s; }
.mobile-nav-link[data-index="2"] { transition-delay: 0.24s; }
.mobile-nav-link[data-index="3"] { transition-delay: 0.31s; }

.mobile-nav-num {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.mobile-nav-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(44px, 13vw, 72px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  transition: color 0.2s;
}
.mobile-nav-link:hover .mobile-nav-text { color: var(--mauve); }

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1) 0.42s, opacity 0.5s cubic-bezier(0.4,0,0.2,1) 0.42s;
}
.mobile-menu.is-open .mobile-menu-footer { opacity: 1; transform: translateY(0); }

.mobile-stream { display: flex; gap: 12px; }
.mobile-stream-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 9px 18px;
  border: 1px solid var(--ink-faint);
  border-radius: 24px;
  transition: border-color 0.2s, color 0.2s;
}
.mobile-stream-link:hover { border-color: #1DB954; color: #1DB954; }

.mobile-menu-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-faint);
}

body.menu-open { overflow: hidden; }

/* ---- HERO ---- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img-mask {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* warm gradient over image — lighter at bottom to let parchment sections connect */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(44,33,24,0.62) 0%, rgba(44,33,24,0.2) 60%, transparent 100%),
    linear-gradient(to top, rgba(251,247,239,0.5) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--amber-warm);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.12;
  color: var(--warm-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(44,33,24,0.3);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-warm);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,253,248,0.82);
  margin-bottom: 36px;
  max-width: 360px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--amber);
  color: var(--warm-white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 24px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--amber-warm); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border: 1px solid rgba(255,253,248,0.45);
  color: rgba(255,253,248,0.85);
  font-size: 0.82rem;
  font-weight: 400;
  border-radius: 24px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--warm-white); color: var(--warm-white); }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255,253,248,0.45);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,253,248,0.4), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ---- SECTION SHARED ---- */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section-header { margin-bottom: 52px; }

.section-header h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.section-lead {
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ---- MUSIC ---- */
#music {
  padding: var(--section-pad) 0;
  background: var(--parchment);
  position: relative;
}
#music::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  pointer-events: none;
}

.releases-shelf {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.release { display: flex; flex-direction: column; }

.release-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink-faint);
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(44,33,24,0.12);
}
.release-art img {
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.release:hover .release-art img { transform: scale(1.05); opacity: 0.75; }

.release-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.release:hover .release-overlay { opacity: 1; }

.play-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 20px;
  background: var(--amber);
  color: var(--warm-white);
  transition: background 0.2s;
}
.play-link:hover { background: var(--amber-warm); }

.release-year {
  font-size: 0.68rem;
  color: var(--amber);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 5px;
}
.release-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
  line-height: 1.3;
}
.release-type {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.release-desc {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.stream-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 36px;
  border-top: 1px solid var(--ink-faint);
}
.stream-bar p { font-size: 0.82rem; color: var(--ink-soft); }

.stream-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 24px;
  border: 1px solid var(--ink-faint);
  color: var(--ink-soft);
  transition: border-color 0.2s, color 0.2s;
}
.spotify-badge:hover { border-color: #1DB954; color: #1DB954; }

/* ---- TOUR ---- */
#tour {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.tour-list { border-top: 1px solid var(--ink-faint); }

.tour-row {
  display: grid;
  grid-template-columns: 70px 1fr 160px 120px;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink-faint);
  transition: background 0.2s;
}
.tour-row--upcoming:hover { background: rgba(200,129,58,0.04); }
.tour-row--past { opacity: 0.4; }

.tour-day {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  display: block;
}
.tour-month {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  display: block;
}
.tour-venue { font-size: 0.95rem; font-weight: 500; margin-bottom: 3px; }
.tour-location { font-size: 0.78rem; color: var(--ink-soft); }
.tour-note { font-size: 0.78rem; color: var(--ink-soft); font-style: italic; }

.tour-ticket {
  display: inline-flex;
  justify-content: center;
  padding: 9px 20px;
  border: 1px solid var(--amber);
  border-radius: 20px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.tour-ticket:hover { background: var(--amber); color: var(--warm-white); }

.tour-past-label {
  font-size: 0.72rem;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  text-align: right;
}

/* ---- ABOUT ---- */
#about {
  padding: var(--section-pad) 0;
  background: var(--parchment);
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-img-col { position: sticky; top: 100px; }

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 10px;
  box-shadow: 0 12px 48px rgba(44,33,24,0.15);
}

.about-text-col h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 28px;
}

.about-body {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 52ch;
}

.about-listen { margin-top: 36px; }

/* ---- CONTACT ---- */
#contact {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-faint);
  border: 1px solid var(--ink-faint);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--parchment);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 500;
}

.contact-card a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.contact-card a:hover { color: var(--ink); }

.social-row {
  display: flex;
  gap: 28px;
  padding-top: 36px;
  border-top: 0;
}
.social-row a {
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.social-row a:hover { color: var(--ink); }

/* ---- FOOTER ---- */
footer {
  background: var(--ink);
  padding: 28px 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-faint);
}
.footer-copy { font-size: 0.72rem; color: var(--ink-soft); }
.footer-credit { font-size: 0.72rem; color: var(--ink-soft); }
.footer-credit a { color: var(--amber-warm); transition: color 0.2s; }
.footer-credit a:hover { color: var(--warm-white); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  #nav { padding: 16px 24px; }
  #nav.scrolled { padding: 12px 24px; }
  .nav-links, .nav-stream { display: none; }
  .menu-toggle { display: flex; }
  .hero-content, .section-inner { padding: 0 24px; }
  .releases-shelf { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .tour-row { grid-template-columns: 60px 1fr 100px; }
  .tour-note { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .about-img-col { position: static; }
  .about-img { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
  footer { padding: 24px; }
}

@media (max-width: 600px) {
  .releases-shelf { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .tour-row { grid-template-columns: 50px 1fr 80px; gap: 12px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .stream-bar { flex-wrap: wrap; }
  .social-row { flex-wrap: wrap; gap: 16px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

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

/* ============================================================
   EDITORIAL REFRESH — warm indie record journal
   ============================================================ */
:root {
  --parchment: #efe6d3;
  --cream: #f8f3e9;
  --warm-white: #fffaf0;
  --mauve: #5a3d59;
  --amber: #bd713d;
  --amber-warm: #edb06d;
  --ink: #281c22;
  --ink-mid: #5c4d4e;
  --ink-soft: #817174;
  --ink-faint: #c9baad;
  --border: rgba(90,61,89,.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Manrope', system-ui, sans-serif;
  --max-w: 1240px;
  --section-pad: clamp(96px, 11vw, 160px);
}

body { overflow-x: hidden; }
::selection { background: var(--mauve); color: var(--warm-white); }
.page-grain {
  position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Navigation is legible over the artwork, then becomes parchment on scroll. */
#nav {
  z-index: 200;
  padding: 18px clamp(24px,4vw,52px);
  background: linear-gradient(to bottom, rgba(27,18,28,.78), rgba(27,18,28,.2), transparent);
}
#nav::after {
  content: ''; position: absolute; left: clamp(24px,4vw,52px); right: clamp(24px,4vw,52px); bottom: 0;
  height: 1px; background: rgba(255,250,240,.22);
}
#nav.scrolled {
  background: rgba(248,243,233,.92); color: var(--ink); border: 0;
  padding: 12px clamp(24px,4vw,52px); box-shadow: 0 8px 34px rgba(40,28,34,.08);
}
#nav.scrolled::after { left: 0; right: 0; background: rgba(90,61,89,.16); }
.nav-inner { max-width: var(--max-w); }
.nav-logo { color: var(--warm-white); font-size: 1.4rem; font-weight: 600; letter-spacing: -.025em; }
.nav-links a { color: rgba(255,250,240,.76); text-transform: uppercase; letter-spacing: .14em; font-size: .64rem; }
.nav-links a:hover { color: var(--warm-white); }
.stream-btn { color: var(--warm-white); border-color: rgba(255,250,240,.35); text-transform: uppercase; letter-spacing: .1em; }
.burger-line { background: var(--warm-white); }
#nav.scrolled .nav-logo, #nav.scrolled .nav-links a, #nav.scrolled .stream-btn { color: var(--ink); }
#nav.scrolled .stream-btn { border-color: rgba(40,28,34,.25); }
#nav.scrolled .burger-line { background: var(--ink); }
body.menu-open #nav .nav-logo { color: var(--ink); }
body.menu-open #nav .burger-line { background: var(--ink); }
body.menu-open #nav { background: transparent; box-shadow: none; }
body.menu-open #nav::after { background: rgba(40,28,34,.16); }

/* Hero */
#hero { min-height: 720px; height: 100svh; align-items: flex-end; isolation: isolate; }
.hero-img { object-position: center 48%; transform: scale(1.015); animation: tenderHero 1.4s cubic-bezier(.22,1,.36,1) both; }
.hero-img-mask::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 12px rgba(255,250,240,.12);
  pointer-events: none;
}
.hero-overlay {
  background:
    linear-gradient(to top, rgba(30,18,30,.9) 0%, rgba(42,25,39,.46) 43%, rgba(30,18,30,.08) 78%),
    linear-gradient(to right, rgba(34,20,32,.5), transparent 60%);
}
.hero-content { max-width: var(--max-w); padding: 0 clamp(24px,5vw,72px) clamp(82px,9vh,118px); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px;
  color: var(--amber-warm); text-transform: uppercase; letter-spacing: .2em; font-size: .62rem;
}
.hero-eyebrow::before { content: ''; width: 34px; height: 1px; background: currentColor; }
.hero-title {
  max-width: 850px; font-size: clamp(58px,7.4vw,110px); line-height: .88; letter-spacing: -.045em;
  font-weight: 500; margin-bottom: 28px; text-shadow: 0 4px 36px rgba(24,13,23,.45);
}
.hero-title em { color: var(--warm-white); font-weight: 400; }
.hero-sub { max-width: 430px; font-size: clamp(.95rem,1.3vw,1.1rem); line-height: 1.7; }
.btn-primary, .btn-ghost { border-radius: 0; min-height: 50px; padding: 0 23px; text-transform: uppercase; letter-spacing: .12em; font-size: .66rem; }
.btn-primary { background: var(--amber-warm); color: var(--ink); }
.btn-primary:hover { background: var(--warm-white); }
.hero-note {
  position: absolute; right: clamp(24px,5vw,72px); bottom: clamp(84px,9vh,118px); z-index: 2;
  width: 250px; padding: 18px 0 0; border-top: 1px solid rgba(255,250,240,.55); color: var(--warm-white);
}
.hero-note span { display: block; margin-bottom: 10px; color: var(--amber-warm); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; }
.hero-note strong { font: italic 400 1.42rem/1.15 var(--font-display); }
.hero-scroll-hint { left: auto; right: 42px; bottom: 22px; flex-direction: row; transform: rotate(90deg); transform-origin: right center; }
.scroll-line { width: 44px; height: 1px; background: rgba(255,250,240,.35); }
@keyframes tenderHero { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1.015); } }

/* Shared editorial headings */
.section-header { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; margin-bottom: clamp(52px,7vw,88px); }
.section-kicker { grid-column: 1/-1; color: var(--amber); text-transform: uppercase; letter-spacing: .18em; font-size: .61rem; margin-bottom: 17px; }
.section-header h2, .about-text-col h2 { font-size: clamp(56px,8vw,100px); line-height: .82; letter-spacing: -.045em; font-weight: 500; }
.section-lead { max-width: 280px; padding-left: 24px; border-left: 1px solid var(--ink-faint); }

/* Music: larger art and an intentional 2 + 1 / 3 rhythm. */
#music { background: var(--cream); }
#music::before { display: none; }
.releases-shelf { grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(30px,4vw,54px) clamp(20px,3vw,38px); }
.release:first-child { grid-column: span 2; }
.release-art { border-radius: 0; margin-bottom: 19px; box-shadow: 0 15px 42px rgba(40,28,34,.12); }
.release-art::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,250,240,.28); pointer-events: none; }
.release-art img { transition: transform .7s cubic-bezier(.22,1,.36,1), filter .7s; }
.release:hover .release-art img { opacity: 1; transform: scale(1.045); filter: brightness(.7) saturate(.8); }
.release-overlay { background: rgba(40,28,34,.12); }
.play-link { border-radius: 0; background: var(--warm-white); color: var(--ink); text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; }
.release-meta { position: relative; padding-left: 42px; }
.release-year { position: absolute; left: 0; top: 3px; color: var(--amber); }
.release-title { font-size: clamp(1.2rem,2vw,1.65rem); line-height: 1.05; font-weight: 500; letter-spacing: -.025em; }
.release:first-child .release-title { font-size: clamp(1.8rem,3vw,2.7rem); }
.release-type { text-transform: uppercase; letter-spacing: .11em; font-size: .58rem; margin-top: 8px; }
.release-desc { max-width: 42ch; margin-top: 11px; }
.stream-bar { margin-top: 70px; }
.stream-bar p { margin-right: auto; text-transform: uppercase; letter-spacing: .12em; font-size: .66rem; }

/* Shows */
#tour { background: var(--mauve); color: var(--warm-white); }
#tour .section-kicker { color: var(--amber-warm); }
#tour .section-header h2 { color: var(--warm-white); }
#tour .section-lead { color: rgba(255,250,240,.65); border-color: rgba(255,250,240,.25); }
.tour-list { border-color: rgba(255,250,240,.23); }
.tour-row { min-height: 112px; padding: 22px 20px; border-color: rgba(255,250,240,.2); transition: background .3s,color .3s,padding .3s; }
.tour-row--upcoming:hover { background: var(--warm-white); color: var(--ink); padding-inline: 30px; }
.tour-day { color: inherit; font-size: 2.2rem; font-weight: 500; }
.tour-month, .tour-location, .tour-note { color: rgba(255,250,240,.58); }
.tour-row--upcoming:hover .tour-month, .tour-row--upcoming:hover .tour-location, .tour-row--upcoming:hover .tour-note { color: var(--ink-soft); }
.tour-venue { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.tour-ticket { border-radius: 0; border-color: var(--amber-warm); color: var(--amber-warm); text-transform: uppercase; letter-spacing: .1em; font-size: .62rem; }
.tour-row--upcoming:hover .tour-ticket { color: var(--mauve); border-color: var(--mauve); }

/* About */
#about { background: var(--parchment); }
.about-inner { max-width: var(--max-w); grid-template-columns: 1.13fr .87fr; gap: clamp(50px,8vw,120px); padding: 0 clamp(24px,5vw,72px); }
.about-img { border-radius: 0; aspect-ratio: 4/5; box-shadow: 18px 18px 0 rgba(90,61,89,.13); }
.about-text-col { padding-top: 30px; }
.about-text-col .section-kicker { display: block; }
.about-text-col h2 { margin-bottom: 44px; }
.about-body { font-size: clamp(.96rem,1.2vw,1.07rem); }
.about-body:first-of-type::first-letter { float: left; font: 500 4.7rem/.72 var(--font-display); color: var(--mauve); margin: 12px 10px 0 0; }

/* Contact */
#contact { background: var(--cream); }
.contact-grid { border-radius: 0; background: transparent; border: 0; border-top: 1px solid var(--ink-faint); }
.contact-card { background: transparent; padding: 30px 24px 30px 0; border-bottom: 1px solid var(--ink-faint); }
.contact-card + .contact-card { padding-left: 24px; border-left: 1px solid var(--ink-faint); }
.contact-label { text-transform: uppercase; letter-spacing: .15em; font-size: .6rem; }
.contact-card a { color: var(--ink); font: 500 clamp(1rem,1.7vw,1.3rem) var(--font-display); }
.social-row a { border: 1px solid var(--ink-faint); border-radius: 99px; padding: 9px 16px; text-transform: uppercase; letter-spacing: .1em; font-size: .6rem; }
.social-row a:hover { background: var(--mauve); border-color: var(--mauve); color: var(--warm-white); }

footer { background: var(--ink); }
.footer-name { color: var(--warm-white); font-size: 1.1rem; }

/* Reveal rules used by the existing script. */
.reveal-ready .release,.reveal-ready .tour-row,.reveal-ready .about-img-col,.reveal-ready .about-text-col,.reveal-ready .contact-card { opacity: 0; transform: translateY(28px); transition: opacity .75s,transform .75s cubic-bezier(.22,1,.36,1); }
.reveal-ready .is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  #nav, #nav.scrolled { padding-left: 24px; padding-right: 24px; }
  #nav::after { left: 24px; right: 24px; }
  .hero-content { padding: 0 24px 76px; }
  .hero-note { display: none; }
  .hero-title { font-size: clamp(54px,11vw,82px); max-width: 680px; }
  .releases-shelf { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .release:first-child { grid-column: span 2; }
  .tour-row { grid-template-columns: 70px minmax(0,1fr) 100px; }
  .about-inner { padding-inline: 24px; grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 16/10; box-shadow: 12px 12px 0 rgba(90,61,89,.13); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card,.contact-card+.contact-card { padding: 24px 0; border-left: 0; }
}

@media (max-width: 600px) {
  html,body { max-width: 100%; overflow-x: hidden; }
  #hero { min-height: 700px; }
  .hero-img { object-position: 55% center; }
  .hero-overlay { background: linear-gradient(to top,rgba(30,18,30,.94),rgba(42,25,39,.4) 62%,rgba(30,18,30,.16)); }
  .hero-content { padding-bottom: 64px; }
  .hero-title { font-size: clamp(49px,14vw,64px); line-height: .91; }
  .hero-sub { max-width: 310px; margin-bottom: 28px; }
  .hero-ctas { align-items: stretch; max-width: 275px; }
  .hero-ctas a { justify-content: center; }
  .hero-scroll-hint { display: none; }
  .section-header { display: block; }
  .section-header h2,.about-text-col h2 { font-size: clamp(54px,18vw,72px); }
  .section-lead { margin-top: 26px; max-width: 100%; }
  .releases-shelf { display: block; }
  .release,.release:first-child { margin-bottom: 52px; }
  .release:first-child .release-title { font-size: 2rem; }
  .release-meta { padding-left: 36px; }
  .stream-bar { margin-top: 15px; }
  .tour-row { grid-template-columns: 54px minmax(0,1fr) 74px; padding-inline: 0; gap: 10px; }
  .tour-row--upcoming:hover { padding-inline: 10px; }
  .tour-day { font-size: 1.8rem; }
  .tour-ticket { padding-inline: 7px; }
  .about-img { aspect-ratio: 4/5; }
  .about-text-col { padding-top: 15px; }
  .contact-card a { font-size: clamp(1rem,5vw,1.2rem); overflow-wrap: anywhere; }
  .mobile-menu-inner { padding-inline: 24px; }
  .mobile-nav-text { font-size: clamp(44px,15vw,62px); }
}

/* High-contrast navigation and fail-safe menu close control */
#nav,
#nav.scrolled {
  padding: 14px clamp(18px,3vw,34px);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
#nav::after,
#nav.scrolled::after { display: none; }
.nav-inner {
  max-width: var(--max-w);
  min-height: 54px;
  padding: 10px 14px 10px 20px;
  border: 1px solid rgba(255,250,240,.26);
  border-radius: 8px;
  background: rgba(34,22,33,.82);
  box-shadow: 0 10px 32px rgba(24,14,23,.22);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}
.nav-logo,
#nav.scrolled .nav-logo { color: #fffaf0; text-shadow: 0 1px 10px rgba(0,0,0,.25); }
.nav-links a,
#nav.scrolled .nav-links a { color: rgba(255,250,240,.86); font-weight: 500; }
.nav-links a:hover,
#nav.scrolled .nav-links a:hover { color: #fff; }
.stream-btn,
#nav.scrolled .stream-btn {
  color: #fffaf0;
  border-color: rgba(255,250,240,.55);
  background: rgba(255,250,240,.1);
  font-weight: 600;
}
.stream-btn.spotify:hover,
#nav.scrolled .stream-btn.spotify:hover { color: #16251c; border-color: #bde8c9; background: #bde8c9; }
.burger-line,
#nav.scrolled .burger-line { background: #fffaf0; }

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(40,28,34,.3);
  border-radius: 50%;
  background: rgba(255,250,240,.75);
  cursor: pointer;
}
.mobile-menu-close span {
  position: absolute;
  left: 11px;
  top: 21px;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
}
.mobile-menu-close span:first-child { transform: rotate(45deg); }
.mobile-menu-close span:last-child { transform: rotate(-45deg); }
.mobile-menu-close:hover { background: var(--mauve); border-color: var(--mauve); }
.mobile-menu-close:hover span { background: var(--warm-white); }

body.menu-open #nav { visibility: hidden; }

@media (min-width: 901px) {
  .mobile-menu-close { display: none; }
}

@media (max-width: 900px) {
  #nav,
  #nav.scrolled { padding: 12px 14px; }
  .nav-inner { min-height: 52px; padding: 8px 10px 8px 16px; }
  .nav-logo { font-size: 1.28rem; }
  .menu-toggle { display: flex; }
}

/* ---- SHOWS: atmospheric image treatment ---- */
#tour {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(48, 29, 48, 0.78) 0%, rgba(48, 29, 48, 0.84) 48%, rgba(38, 24, 39, 0.91) 100%),
    url('images/band-portrait.webp') center 38% / cover no-repeat;
}

#tour::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 38%, rgba(232,160,90,.10), transparent 42%),
    linear-gradient(90deg, rgba(32,20,32,.30), transparent 22%, transparent 78%, rgba(32,20,32,.34));
  pointer-events: none;
}

#tour .section-inner {
  position: relative;
  z-index: 1;
}

#tour .tour-list {
  text-shadow: 0 1px 18px rgba(25, 15, 25, .22);
}

#tour .tour-row--upcoming:hover {
  background: rgba(255,253,248,.94);
  text-shadow: none;
}

@media (max-width: 700px) {
  #tour {
    background-position: 58% center;
    background-image:
      linear-gradient(180deg, rgba(48, 29, 48, 0.82) 0%, rgba(48, 29, 48, 0.88) 100%),
      url('images/band-portrait.webp');
  }
}
