@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Special+Elite&display=swap');

:root {
  --parchment:       #ECE4D2;
  --parchment-deep:  #DDD0AE;
  --parchment-shadow:#C9BB94;
  --ink:             #28201A;
  --ink-soft:        #564B39;
  --accent:          #6E5A36;
  --accent-dim:      #8A7A56;
  --night:           #0A0D0A;
  --moonlight:       #E2E9DA;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --distressed: 'Special Elite', 'Courier New', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* shared aged-paper grain */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

/* ============================================
   COVER TITLE
   ============================================ */
.cover-title-wrap {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.cover-title-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center 52%,
    rgba(4, 6, 4, 0.55) 0%,
    rgba(4, 6, 4, 0.25) 40%,
    transparent 72%
  );
  pointer-events: none;
}

.cover-eyebrow {
  font-family: var(--distressed);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--moonlight);
  opacity: 0;
  animation: rise-in 1.8s 0.4s ease-out forwards;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9), 0 2px 20px rgba(0,0,0,0.7);
}

.cover-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.6rem, 8vw, 6rem);
  color: var(--parchment);
  letter-spacing: 0.02em;
  margin: 14px 0 6px;
  text-shadow:
    0 1px 4px  rgba(0,0,0,1),
    0 2px 16px rgba(0,0,0,0.85),
    0 4px 40px rgba(0,0,0,0.6);
  opacity: 0;
  animation: rise-in 2s 0.9s ease-out forwards;
}

.cover-sub {
  font-family: var(--distressed);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: rgba(226, 233, 218, 0.7);
  opacity: 0;
  animation: rise-in 2s 1.6s ease-out forwards;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--distressed);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(226, 233, 218, 0.55);
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  opacity: 0;
  animation: rise-in 2s 2.4s ease-out forwards,
             cue-bob 2.4s 4s ease-in-out infinite;
  transition: color 0.3s ease;
}

.scroll-cue:hover { color: rgba(226, 233, 218, 0.9); }

@keyframes cue-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

@media (prefers-reduced-motion: reduce) {
  .cover-eyebrow, .cover-title, .cover-sub, .scroll-cue {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* ============================================
   BAND PHOTOGRAPHS
   ============================================ */
.band-reveal {
  background: var(--night);
  position: relative;
}

.band-label {
  font-family: var(--distressed);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(226, 233, 218, 0.18);
  text-align: center;
  padding: 52px 0 20px;
  margin: 0;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 56vh 38vh 46vh 38vh;
  gap: 6px;
  padding: 0 6px;
}

.band-photo {
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity   1.3s ease-out calc(var(--i, 0) * 150ms),
    transform 1.5s ease-out calc(var(--i, 0) * 150ms);
}

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

.band-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease-out;
}

.band-photo:hover img { transform: scale(1.04); }

/* Editorial layout — desktop */
.band-photo:nth-child(1) { grid-column: 1 / 8;  grid-row: 1; }
.band-photo:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.band-photo:nth-child(3) { grid-column: 1 / 5;  grid-row: 2; }
.band-photo:nth-child(4) { grid-column: 5 / 9;  grid-row: 2; }
.band-photo:nth-child(5) { grid-column: 9 / 13; grid-row: 2; }
.band-photo:nth-child(6) { grid-column: 1 / 7;  grid-row: 3; }
.band-photo:nth-child(7) { grid-column: 7 / 13; grid-row: 3; }
.band-photo:nth-child(8) { grid-column: 1 / 5;  grid-row: 4; }
.band-photo:nth-child(9) { grid-column: 5 / 9;  grid-row: 4; }
.band-photo:nth-child(10){ grid-column: 9 / 13; grid-row: 4; }

/* Night → parchment transition */
.night-to-parchment {
  height: 80px;
  background: linear-gradient(to bottom, var(--night), var(--parchment));
}

/* Mobile */
@media (max-width: 640px) {
  .band-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 4px;
    padding: 0 4px;
  }
  .band-photo { aspect-ratio: 4/3; }
  .band-photo:nth-child(1) { grid-column: 1 / 3; aspect-ratio: 16/9; }
  .band-photo:nth-child(2) { grid-column: auto; }
  .band-photo:nth-child(3) { grid-column: auto; }
  .band-photo:nth-child(4) { grid-column: auto; }
  .band-photo:nth-child(5) { grid-column: auto; }
  .band-photo:nth-child(6) { grid-column: auto; }
  .band-photo:nth-child(7) { grid-column: auto; }
  .band-photo:nth-child(8) { grid-column: auto; }
  .band-photo:nth-child(9) { grid-column: auto; }
  .band-photo:nth-child(10){ grid-column: 1 / 3; aspect-ratio: 16/9; }
}

@media (prefers-reduced-motion: reduce) {
  .band-photo {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================
   CHAPTERS — page-feel scroll
   ============================================ */
.chapter {
  position: relative;
  padding: 110px 24px 120px;
  max-width: 760px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

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

.chapter + .chapter {
  border-top: 1px solid var(--parchment-shadow);
  box-shadow: 0 -18px 30px -24px rgba(40, 32, 26, 0.35) inset;
}

.chapter-eyebrow {
  display: block;
  font-family: var(--distressed);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 10px;
}

.chapter-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 28px;
}

.chapter p {
  color: var(--ink-soft);
  margin-bottom: 1.1em;
  max-width: 62ch;
}

.placeholder-note {
  font-family: var(--distressed);
  font-size: 0.85rem;
  color: var(--accent-dim);
  border: 1px dashed var(--parchment-shadow);
  padding: 14px 18px;
  display: inline-block;
  background: rgba(255,255,255,0.25);
}

/* ============================================
   RECORDS — album cards
   ============================================ */
.album-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

.album-card {
  border: 1px solid var(--parchment-shadow);
  background: rgba(255, 252, 240, 0.35);
  padding: 28px;
  position: relative;
}

.album-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.album-merch-tag {
  font-family: var(--distressed);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 16px;
}

.embed-slot {
  width: 100%;
  min-height: 120px;
  border: 1px dashed var(--parchment-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--distressed);
  font-size: 0.78rem;
  color: var(--ink-soft);
  background: rgba(0,0,0,0.03);
  margin-bottom: 16px;
  text-align: center;
  padding: 18px;
}

.buy-btn {
  font-family: var(--distressed);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--parchment);
  border: none;
  padding: 12px 22px;
  cursor: pointer;
}
.buy-btn:hover { background: var(--accent); }

/* ============================================
   ART
   ============================================ */
.art-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.art-gallery .art-item {
  aspect-ratio: 1;
  overflow: hidden;
  margin: 0;
}

.art-gallery .art-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.art-gallery .art-placeholder {
  aspect-ratio: 1;
  border: 1px dashed var(--parchment-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--distressed);
  font-size: 0.65rem;
  color: var(--ink-soft);
  text-align: center;
  padding: 8px;
}

.art-portal-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  border: 1px solid var(--parchment-shadow);
  padding: 20px 24px;
  margin: 0 24px;
  transition: border-color 0.25s, background 0.25s;
}

.art-portal-link:hover {
  border-color: var(--accent);
  background: rgba(110, 90, 54, 0.06);
}

.art-portal-label {
  font-family: var(--distressed);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.art-portal-cta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--accent);
}

/* ============================================
   REACH HER
   ============================================ */
.reach-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin-bottom: 40px;
}

.reach-form input,
.reach-form textarea {
  font-family: var(--serif);
  font-size: 1rem;
  background: rgba(255,255,255,0.4);
  border: 1px solid var(--parchment-shadow);
  padding: 12px 14px;
  color: var(--ink);
}

.reach-form button { align-self: flex-start; }

.social-links {
  display: flex;
  gap: 18px;
  font-family: var(--distressed);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-links a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--parchment-shadow);
}
.social-links a:hover { color: var(--accent); }

footer.site-foot {
  text-align: center;
  padding: 40px 24px 60px;
  font-family: var(--distressed);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  opacity: 0.6;
}

/* ============================================
   BIO SECTION
   ============================================ */
.bio-section {
  background: var(--night);
  position: relative;
  padding: 100px 24px 110px;
}

.bio-inner {
  max-width: 680px;
  margin: 0 auto;
}

.bio-text {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
  color: rgba(226, 233, 218, 0.72);
  margin-bottom: 1.5em;
}

.bio-text em {
  font-style: italic;
  color: rgba(226, 233, 218, 0.88);
}

.bio-pull {
  margin-top: 2.4em;
  padding-top: 2em;
  border-top: 1px solid rgba(226, 233, 218, 0.1);
  font-style: italic;
  color: rgba(226, 233, 218, 0.55);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
}

/* ============================================
   MOON / RECORDS SECTION
   ============================================ */
.moon-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #060809;
}

.moon-content {
  position: relative;
  z-index: 4;
  padding: 110px 24px 130px;
  max-width: 860px;
  margin: 0 auto;
}

.moon-heading {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--parchment);
  margin-bottom: 64px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.8);
}

.album-list { display: flex; flex-direction: column; }

.album-entry {
  border-top: 1px solid rgba(226, 233, 218, 0.12);
  padding: 40px 0;
}

.album-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--parchment);
  margin-bottom: 6px;
}

.album-avail {
  display: block;
  font-family: var(--distressed);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(226, 233, 218, 0.38);
  margin-bottom: 20px;
}

.bandcamp-embed {
  border: 0;
  width: 100%;
  height: 470px;
  display: block;
}

.moon-section .embed-slot {
  border: 1px solid rgba(226, 233, 218, 0.12);
  border-style: solid;
  color: rgba(226, 233, 218, 0.28);
  background: rgba(255,255,255,0.03);
}

/* ============================================
   DARK → PARCHMENT + ART SECTION
   ============================================ */
.dark-to-parchment {
  height: 90px;
  background: linear-gradient(to bottom, #060809, var(--parchment));
}

.art-section { background: var(--parchment); }

.art-inner {
  padding: 20px 0 100px;
  max-width: 860px;
  margin: 0 auto;
}

.art-inner .section-heading {
  padding: 0 24px;
}

.art-inner .art-portal-link {
  display: block;
  padding: 0 24px;
  margin-top: 24px;
}

/* ============================================
   ART CAROUSEL
   ============================================ */
.art-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

.art-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.art-carousel-track::-webkit-scrollbar { display: none; }

.art-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.art-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.art-slide:hover img { transform: scale(1.03); }

.art-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(10, 13, 10, 0.55);
  color: var(--parchment);
  border: 1px solid rgba(226, 233, 218, 0.25);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
}

.art-carousel-arrow:hover {
  background: rgba(110, 90, 54, 0.75);
  border-color: rgba(226, 233, 218, 0.5);
}

.art-carousel-prev { left: 12px; }
.art-carousel-next { right: 12px; }

.art-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 18px 0 6px;
}

.art-carousel-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--parchment-shadow);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.art-carousel-dots button.is-active {
  background: var(--accent);
  transform: scale(1.5);
}

.art-gallery {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.section-heading {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 36px;
}

/* ============================================
   REACH HER SECTION
   ============================================ */
.reach-section {
  background: var(--parchment);
  border-top: 1px solid var(--parchment-shadow);
  box-shadow: 0 -18px 30px -24px rgba(40, 32, 26, 0.35) inset;
}

.reach-inner {
  padding: 0 24px 100px;
  max-width: 600px;
  margin: 0 auto;
}

.reach-art {
  margin: 0 -24px 52px;
  overflow: hidden;
  max-height: 44vh;
}

.reach-art img {
  width: 100%;
  max-height: 44vh;
  object-fit: cover;
  display: block;
}

.reach-label {
  font-family: var(--distressed);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin: 48px 0 14px;
}

.reach-inline {
  flex-direction: row;
  max-width: none;
  margin-bottom: 48px;
}

.reach-inline input { flex: 1; }

.send-btn {
  font-family: var(--distressed);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--parchment);
  border: none;
  padding: 12px 22px;
  cursor: pointer;
}
.send-btn:hover { background: var(--accent); }

/* ============================================
   GENERIC SCROLL REVEAL
   ============================================ */
.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   0.9s ease-out calc(var(--i, 0) * 130ms),
    transform 1.1s ease-out calc(var(--i, 0) * 130ms);
}

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

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