/* ---------- tokens ---------- */
:root {
  --bg: #09080a;
  --bg-alt: #121014;
  --text: #ece6e3;
  --text-muted: #948d92;
  --accent: #8a1229;
  --accent-bright: #c23a52;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(.19,1,.22,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: url("../cursor/cursor.cur"), auto;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--accent); color: #fff; }

/* ---------- film grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw;
  background: linear-gradient(180deg, rgba(9,8,10,0.55), transparent);
  transition: background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s;
}

.site-header.scrolled {
  background: rgba(9,8,10,0.86);
  backdrop-filter: blur(8px);
  padding: 16px 6vw;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--text);
}

.site-nav {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
}

.site-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color .3s;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent-bright);
  transition: width .35s var(--ease);
}

.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after { width: 100%; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.85) contrast(1.05);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,8,10,0.55) 0%, rgba(9,8,10,0.35) 40%, rgba(9,8,10,0.92) 100%),
    radial-gradient(ellipse at center 40%, rgba(9,8,10,0.1), rgba(9,8,10,0.75) 78%);
}

/* pin the hero photo to the viewport so it stays put while later
   sections scroll up and cover it; disabled on touch/small screens
   where fixed backgrounds are janky */
@media (min-width: 801px) {
  .hero-media, .hero-media img, .hero-scrim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin: 0 0 18px;
}

.eyebrow.center { text-align: center; }

.hero-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(4.5rem, 14vw, 9rem);
  line-height: 0.9;
  margin: 0;
  color: #f5efec;
  text-shadow: 0 0 60px rgba(194,58,82,0.35), 0 2px 30px rgba(0,0,0,0.6);
}

.tagline {
  margin: 22px 0 0;
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 54px;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--accent-bright) 40%, transparent);
  animation: scrollpulse 2.2s ease-in-out infinite;
}

@keyframes scrollpulse {
  0% { transform: translateY(-100%); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

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

.hero-content .reveal { transition-delay: .15s; }
.hero-content .hero-title.reveal { transition-delay: .3s; }
.hero-content .tagline.reveal { transition-delay: .45s; }

/* ---------- section shell ---------- */
section, .full-bleed { position: relative; }

.eyebrow, .section-title { text-align: left; }
.section-title.center, .eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0 0 48px;
  color: #f5efec;
}

/* ---------- bio ---------- */
.bio {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 14vw, 160px) 6vw;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.bio-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.bio-text {
  font-size: 1.05rem;
  color: #d8d2d3;
  margin: 0 0 20px;
}

.bio-text em { font-style: italic; color: var(--text); }

.influence-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
}

.influence-list li {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px;
}

/* ---------- full bleed image breaks ---------- */
.full-bleed {
  width: 100%;
  max-height: 82vh;
  overflow: hidden;
  margin: 0;
}

.full-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

/* ---------- quote ---------- */
.quote-section {
  background: var(--bg-alt);
  padding: clamp(90px, 14vw, 150px) 6vw;
}

.quote-section blockquote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.5;
  color: #f0eae7;
  margin: 0 0 26px;
}

.quote-section cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.quote-section cite span {
  color: var(--text-muted);
  margin-left: 6px;
}

/* ---------- music ---------- */
.music, .contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 14vw, 150px) 6vw;
  text-align: center;
}

.music-links, .contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
  margin-top: 12px;
}

.music-links a, .contact-links a {
  text-decoration: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--text);
  position: relative;
  padding-bottom: 6px;
}

.music-links a::after, .contact-links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent-bright);
  transition: width .4s var(--ease), left .4s var(--ease);
}

.music-links a:hover, .contact-links a:hover { color: #fff; }
.music-links a:hover::after, .contact-links a:hover::after { width: 100%; left: 0; }

/* ---------- shows ---------- */
.shows {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 14vw, 150px) 6vw;
  display: grid;
  gap: clamp(60px, 8vw, 100px);
}

.show-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 18px;
  padding: 26px 28px;
  border: 1px solid rgba(138,18,41,0.4);
  background: linear-gradient(135deg, rgba(138,18,41,0.12), transparent);
}

.show-date {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent-bright);
}

.show-place {
  font-size: 1.05rem;
  color: var(--text);
}

.show-tag {
  margin-left: auto;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.previous-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.previous-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}

.previous-list .show-date {
  font-size: 0.95rem;
  min-width: 130px;
  color: var(--text-muted);
  font-style: normal;
  font-family: var(--sans);
  letter-spacing: 0.5px;
}

.previous-list .show-place { color: #d8d2d3; }

/* ---------- footer ---------- */
.site-footer {
  text-align: center;
  padding: 40px 6vw 56px;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: #4d484b;
}

/* ---------- responsive ---------- */
@media (max-width: 800px) {
  .bio { grid-template-columns: 1fr; }
  .bio-image img { aspect-ratio: 16 / 11; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 0.68rem; letter-spacing: 1px; }
  .show-tag { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
  html { scroll-behavior: auto; }
}
