:root {
  --cream: #faf5ef;
  --plum: #2b1f33;
  --lavender: #cdb8ee;
  --pink: #f3c3d9;
  --sky: #bfe1f0;
  --peach: #f6d3b3;
  --line: rgba(43, 31, 51, 0.14);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--plum);
  font-family: var(--sans);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Ambient background blobs */
.blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: drift 22s ease-in-out infinite alternate;
}
.b1 { width: 46vw; height: 46vw; background: var(--lavender); top: -10%; left: -10%; }
.b2 { width: 38vw; height: 38vw; background: var(--pink); bottom: -12%; right: -8%; animation-delay: -6s; }
.b3 { width: 30vw; height: 30vw; background: var(--sky); top: 40%; left: 55%; animation-delay: -12s; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(4vw, 3vw) scale(1.08); }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem;
  mix-blend-mode: normal;
}

.brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  gap: 1.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.7;
}
.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
  border-color: currentColor;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 30;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--plum);
  display: block;
}

/* Main / panels */
main {
  position: relative;
  z-index: 1;
}

.panel {
  min-height: 100vh;
  display: none;
  padding: 8rem 2rem 6rem;
  align-items: center;
  justify-content: center;
}
.panel.is-active {
  display: flex;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.panel-home {
  text-align: center;
  flex-direction: column;
}
.home-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.kicker {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
}
.sparkle { opacity: 0.9; }

.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.5rem, 12vw, 8.5rem);
  margin: 0.1em 0;
  line-height: 0.95;
}

.tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  opacity: 0.8;
  margin: 0 0 1.4rem;
}

.cta {
  border: 1px solid var(--plum);
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.cta:hover {
  background: var(--plum);
  color: var(--cream);
}

.panel-inner {
  max-width: 780px;
  width: 100%;
}

.panel-index {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0 0 0.4rem;
}

.panel-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 2rem;
}

.bio-note {
  font-size: 0.85rem;
  opacity: 0.55;
  font-style: italic;
  margin-top: 1.2rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: 18px;
}

.about-copy p {
  line-height: 1.6;
  font-size: 1.02rem;
}
.about-copy a {
  border-bottom: 1px solid currentColor;
}

/* Music */
.single-feature {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.single-art {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.single-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0 0 0.2rem;
}
.single-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  margin: 0;
}

.music-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.music-link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.2s ease, transform 0.2s ease;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.music-link:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateX(4px);
}
.music-link span {
  font-family: var(--serif);
  font-size: 1.15rem;
}
.music-link small {
  opacity: 0.6;
  font-size: 0.8rem;
}

/* Shows */
.shows-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.show-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.show-empty {
  display: block;
  opacity: 0.6;
  font-style: italic;
  padding: 1.4rem 0;
}
.show-date { opacity: 0.6; font-size: 0.85rem; letter-spacing: 0.04em; }
.show-venue { font-family: var(--serif); font-size: 1.05rem; }
.show-city { opacity: 0.6; font-size: 0.85rem; }
.show-link {
  border: 1px solid var(--plum);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-tile {
  aspect-ratio: 1;
  border-radius: 14px;
}

/* Contact */
.contact-email a {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  border-bottom: 1px solid currentColor;
}
.social-row {
  display: flex;
  gap: 1.4rem;
  margin-top: 1.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.social-row a {
  border-bottom: 1px solid transparent;
}
.social-row a:hover { border-color: currentColor; }

/* Footer */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  opacity: 0.6;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.lang-switch button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  letter-spacing: 0.04em;
  color: inherit;
  opacity: 0.55;
  cursor: pointer;
}
.lang-switch button.is-active {
  opacity: 1;
  border-bottom: 1px solid currentColor;
}
.lang-switch span { opacity: 0.4; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 31, 51, 0.45);
  backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  max-height: 82vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 24px 70px rgba(43, 31, 51, 0.3);
  transform: translateY(14px);
  transition: transform 0.25s ease;
}
.modal.is-open .modal-card {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: inherit;
  opacity: 0.5;
  cursor: pointer;
}
.modal-close:hover { opacity: 1; }

.platform-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.platform-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease, transform 0.2s ease;
}
.platform-row:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(4px);
}
.platform-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.platform-name {
  font-family: var(--serif);
  font-size: 1rem;
  flex: 1;
}
.platform-action {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.55;
}

/* Mobile nav */
@media (max-width: 640px) {
  .menu-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 25;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.1rem;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-footer {
    flex-wrap: wrap;
    row-gap: 0.6rem;
    justify-content: center;
    text-align: center;
    padding-bottom: 1.2rem;
  }
  .lang-switch { position: static; transform: none; order: -1; flex-basis: 100%; justify-content: center; }
  .show-row { grid-template-columns: 1fr; row-gap: 0.2rem; }
}
