:root {
  --cream: #faf6f0;
  --blush: #f5ddd6;
  --petal: #e8c9c0;
  --dusty-rose: #c9908a;
  --sage: #b5c4b1;
  --sage-deep: #7a9c77;
  --ink: #2a2017;
  --ink-light: #5c4f3a;
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --white: #fffdf9;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Cormorant Garamond', 'Libre Baskerville', serif;
  overflow-x: hidden;
  cursor: none;
}

/* =====================
   Custom Cursor
===================== */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--dusty-rose);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid var(--dusty-rose);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.4s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

/* =====================
   Navigation
===================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  mix-blend-mode: multiply;
}


.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--dusty-rose);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* =====================
   Hero
===================== */
#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--white) 0%, var(--blush) 40%, var(--cream) 80%, #ede4d6 100%);
}

#petals-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
  animation: ringPulse 8s ease-in-out infinite;
}

.ring-1 {
  width: 500px;
  height: 500px;
  border-color: rgba(201, 144, 138, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring-2 {
  width: 700px;
  height: 700px;
  border-color: rgba(201, 144, 138, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -2s;
}

.ring-3 {
  width: 900px;
  height: 900px;
  border-color: rgba(181, 196, 177, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -4s;
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03);
  }
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(4.5rem, 12vw, 11rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--ink);
  line-height: 0.9;
  text-align: center;
  position: relative;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.6s forwards;
}

.hero-title span {
  display: inline-block;
  background: linear-gradient(135deg, var(--ink) 0%, #7a5c3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  margin-top: 2rem;
  text-align: center;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.9s forwards;
}

.hero-jp {
  font-family: 'Zen Old Mincho', serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--sage-deep);
  margin-top: 0.75rem;
  opacity: 0;
  animation: fadeUp 1.2s ease 1.1s forwards;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-top: 3.5rem;
  opacity: 0;
  animation: fadeUp 1.2s ease 1.3s forwards;
}

/* =====================
   Buttons
===================== */
.btn-primary {
  padding: 0.85rem 2.5rem;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dusty-rose);
  transform: translateX(-101%);
  transition: transform 0.35s ease;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  padding: 0.85rem 2.5rem;
  background: transparent;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--petal);
  transition: all 0.35s ease;
}

.btn-outline:hover {
  border-color: var(--ink);
  background: var(--blush);
}

/* =====================
   Scroll Hint
===================== */
.scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1.2s ease 1.6s forwards;
}

.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--petal);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--petal), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================
   Section Base
===================== */
section {
  padding: 8rem 4rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.section-title em {
  font-style: italic;
  color: var(--dusty-rose);
}

/* =====================
   Music Section
===================== */
#music {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

#music::before {
  content: '音';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Zen Old Mincho', serif;
  font-size: 30vw;
  font-weight: 900;
  color: var(--blush);
  opacity: 0.4;
  pointer-events: none;
  line-height: 1;
}

.music-header {
  max-width: 1200px;
  margin: 0 auto 5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.releases-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.release-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--blush);
  cursor: none;
}

.release-card:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.release-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Zen Old Mincho', serif;
  transition: transform 0.6s ease;
  position: relative;
}

.release-card:hover .release-art {
  transform: scale(1.04);
}

.art-1 {
  background: url('assets/Intricate Album Cover Final.png') center/cover no-repeat;
}

.art-2 {
  background: url('assets/I Thought We Had a Future Cover 3000*3000.png') center/cover no-repeat;
}

.art-3 {
  background: url('assets/Heartbeat Cover.png') center/cover no-repeat;
}

.art-4 {
  background: url('assets/Memories Album Cover.png') center/cover no-repeat;
}

.art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 32, 23, 0.7) 0%, rgba(42, 32, 23, 0) 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.release-card:hover .art-overlay {
  opacity: 1;
}

.art-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgba(42, 32, 23, 0.25);
  pointer-events: none;
}

.art-text .art-kanji {
  font-family: 'Zen Old Mincho', serif;
  font-size: 5rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.release-card:first-child .art-text .art-kanji {
  font-size: 10rem;
}

.release-info {
  color: var(--cream);
}

.release-info .r-tag {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  margin-bottom: 0.3rem;
}

.release-info .r-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.release-card:first-child .release-info .r-title {
  font-size: 2rem;
}

.release-info .r-year {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.25rem;
  font-style: italic;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.release-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.play-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--ink);
  margin-left: 3px;
}

/* =====================
   About Section
===================== */
#about {
  background: var(--cream);
  position: relative;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #e8d4c0 0%, #d4c0b4 30%, #c0b4c8 60%, #b4c8c0 100%);
  position: relative;
  overflow: hidden;
}

.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42, 32, 23, 0.3) 100%);
}

.photo-kanji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Zen Old Mincho', serif;
  font-size: 12rem;
  font-weight: 900;
  color: rgba(42, 32, 23, 0.12);
  line-height: 1;
}

.frame-accent {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  border: 1px solid var(--petal);
  z-index: -1;
}

.member-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -2rem;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 1.5rem;
  z-index: 10;
}

.member-badge .mb-name {
  font-family: 'Zen Old Mincho', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  display: block;
}

.member-badge .mb-role {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 0.2rem;
  display: block;
}

.about-content {
  padding-top: 2rem;
}

.about-content .big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
  margin: 2.5rem 0;
  padding-left: 2rem;
  border-left: 2px solid var(--petal);
}

.about-content .body-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blush);
}

.stat-item .stat-num {
  font-family: 'Zen Old Mincho', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-top: 0.4rem;
  display: block;
}

/* =====================
   Members Section
===================== */
#members {
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

#members::before {
  content: '人';
  position: absolute;
  left: -3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Zen Old Mincho', serif;
  font-size: 35vw;
  font-weight: 900;
  color: rgba(201, 144, 138, 0.08);
  pointer-events: none;
  line-height: 1;
}

.members-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.members-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 5rem;
}

.member-card {
  position: relative;
}

.member-photo {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}

.member-photo-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.member-card:hover .member-photo-inner {
  transform: scale(1.03);
}

.m-photo-1 {
  background: url('assets/Steven.png') center/cover no-repeat;
}

.m-photo-2 {
  background: url('assets/Will.jpg') center/cover no-repeat;
}

.member-photo-kanji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Zen Old Mincho', serif;
  font-size: 9rem;
  font-weight: 900;
  color: rgba(42, 32, 23, 0.1);
  line-height: 1;
  pointer-events: none;
}

.member-card:nth-child(2) {
  padding-top: 4rem;
}

.m-name {
  font-family: 'Zen Old Mincho', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.m-name-jp {
  font-family: 'Zen Old Mincho', serif;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--sage-deep);
  margin-bottom: 0.5rem;
  display: block;
}

.m-role {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  display: block;
  margin-bottom: 1.2rem;
}

.m-bio {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ink-light);
}

.m-instruments {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.tag {
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--petal);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* =====================
   Live Section
===================== */
#live {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

#live::before {
  content: 'LIVE';
  position: absolute;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Zen Old Mincho', serif;
  font-size: 30vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  line-height: 1;
}

#live .section-label {
  color: var(--petal);
}

#live .section-title {
  color: var(--cream);
}

.shows-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.shows-list {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.show-item {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
  position: relative;
}

.show-item::before {
  content: '';
  position: absolute;
  inset: 0 -4rem;
  background: rgba(201, 144, 138, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.show-item:hover::before {
  opacity: 1;
}

.show-date {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.show-date span {
  display: block;
  font-size: 0.7rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
  font-weight: 400;
}

.show-venue {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--cream);
}

.show-venue span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.3rem;
  font-weight: 400;
}

.show-city {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.show-ticket {
  padding: 0.65rem 1.5rem;
  border: 1px solid rgba(201, 144, 138, 0.4);
  color: var(--petal);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.show-ticket:hover {
  background: var(--dusty-rose);
  border-color: var(--dusty-rose);
  color: var(--cream);
}


/* =====================
   Contact / Newsletter
===================== */
#contact {
  background: var(--blush);
  text-align: center;
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '心';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Zen Old Mincho', serif;
  font-size: 60vw;
  font-weight: 900;
  color: rgba(201, 144, 138, 0.06);
  pointer-events: none;
  line-height: 1;
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.contact-inner .section-title {
  margin-bottom: 1rem;
}

.contact-inner p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-light);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.signup-form {
  display: flex;
  border: 1px solid var(--petal);
  background: var(--white);
  overflow: hidden;
}

.signup-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  background: transparent;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
}

.signup-form input::placeholder {
  color: var(--petal);
  letter-spacing: 0.1em;
}

.signup-form button {
  padding: 1rem 2rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.3s ease;
}

.signup-form button:hover {
  background: var(--dusty-rose);
}

/* =====================
   Social Links
===================== */
.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  justify-content: center;
}

.social-link {
  min-width: 42px;
  padding: 0 0.5rem;
  height: 42px;
  border: 1px solid var(--petal);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 700;
}

.social-link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

/* =====================
   Marquee Tape
===================== */
.tape {
  background: var(--ink);
  overflow: hidden;
  padding: 0.85rem 0;
}

.tape-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tapeMarch 20s linear infinite;
}

.tape-text {
  flex-shrink: 0;
  padding: 0 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.tape-dot {
  color: var(--dusty-rose);
  margin: 0 1rem;
}

@keyframes tapeMarch {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =====================
   Footer
===================== */
footer {
  background: var(--ink);
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: var(--cream);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--petal);
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.1em;
}

/* =====================
   Scroll Reveal
===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* =====================
   Mobile Navigation (Hamburger & Overlay)
===================== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  /* Above overlay */
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: left center;
}

/* Hamburger Open State (X) */
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 1000;
  display: none;
  /* hidden by default */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-mobile-overlay.open {
  display: flex;
  opacity: 1;
}

.mobile-nav-link {
  font-family: 'Zen Old Mincho', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--dusty-rose);
}

/* =====================
   Responsive Adjustments
===================== */

@media (max-width: 768px) {

  .release-card:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
    aspect-ratio: 1;
  }

  /* Cursor */
  .cursor,
  .cursor-ring {
    display: none !important;
  }

  body,
  a,
  button {
    cursor: auto !important;
  }

  /* Nav */
  nav {
    padding: 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  #hero {
    padding: 0 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 1rem;
  }

  .hero-cta>a {
    width: 100%;
    text-align: center;
  }

  .ring-1 {
    width: 280px;
    height: 280px;
  }

  .ring-2 {
    width: 380px;
    height: 380px;
  }

  .ring-3 {
    width: 480px;
    height: 480px;
  }

  /* General Section */
  section {
    padding: 5rem 1.5rem;
  }

  /* Music */
  .music-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

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

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-visual {
    max-width: 340px;
    margin: 0 auto;
  }

  .member-badge {
    right: -1rem;
  }

  .frame-accent {
    right: -1rem;
    bottom: -1rem;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 2rem 1.5rem;
  }

  .stat-item {
    min-width: calc(50% - 0.75rem);
  }

  /* Members */
  .members-grid {
    grid-template-columns: 1fr;
  }

  .member-card:nth-child(2) {
    padding-top: 0;
  }

  /* Live Shows */
  .show-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 1rem;
    padding: 1.5rem 0;
  }

  .show-item::before {
    inset: 0 -1.5rem;
  }

  .show-date {
    width: 100%;
    font-size: 1.4rem;
  }

  .show-venue {
    flex: 1;
    font-size: 0.95rem;
    min-width: 0;
  }

  .show-city {
    width: 100%;
    font-size: 0.7rem;
    opacity: 0.5;
  }

  .show-ticket {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    font-size: 0.6rem;
    align-self: flex-start;
    margin-top: 0.25rem;
  }

  /* Contact / Sign up */
  .signup-form {
    flex-direction: column;
  }

  .signup-form input,
  .signup-form button {
    width: 100%;
  }

  /* Footer */
  footer {
    padding: 3rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {

  /* Font size clamp overrrides if needed */
  .hero-title {
    font-size: clamp(3.5rem, 15vw, 4.5rem);
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  /* Music Grid */
  .releases-grid {
    grid-template-columns: 1fr;
  }

  .release-card:first-child {
    grid-column: 1;
    aspect-ratio: 1;
  }

  .release-art {
    background-size: contain !important;
  }

  /* Live Shows Stacking */
  .show-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .show-venue {
    margin-top: 0.5rem;
    white-space: normal;
    word-break: break-word;
    font-size: 1rem;
  }

  .show-city {
    display: none;
  }

  .show-ticket {
    margin-top: 0.5rem;
  }
}