/* Band Capricio — cinematic, warm gold on deep charcoal */
:root {
  --bg: #0c0a09;
  --bg-elevated: #161311;
  --surface: #1c1917;
  --text: #faf7f2;
  --muted: #a8a29e;
  --accent: #c9a227;
  --accent-soft: rgba(201, 162, 39, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #e4c45c;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg);
  z-index: 1000;
  border-radius: 4px;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem clamp(1rem, 2vw, 1.5rem);
  background: linear-gradient(to bottom, rgba(12, 10, 9, 0.95), transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.site-header.is-scrolled {
  background: rgba(12, 10, 9, 0.92);
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  display: block;
  height: clamp(2.2rem, 4vw, 2.9rem);
  width: auto;
  background: transparent;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem clamp(0.7rem, 1.5vw, 1.25rem);
  align-items: center;
}

nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  min-height: 42px;
}

.btn-primary {
  background: linear-gradient(135deg, #c9a227, #9a7b1a);
  color: var(--bg);
  box-shadow: 0 4px 20px var(--accent-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.35);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ——— Hero ——— */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding: clamp(5.5rem, 8vw, 7rem) clamp(1rem, 2vw, 1.5rem) clamp(3rem, 5vw, 4rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg) 0%,
    rgba(12, 10, 9, 0.85) 40%,
    rgba(12, 10, 9, 0.35) 100%
  );
  z-index: 1;
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--muted);
  max-width: 38ch;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Sections ——— */
section {
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 2vw, 1.5rem);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

/* ——— Band intro ——— */
.band-intro {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.band-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 72ch;
  margin: 0;
}

/* ——— About: main film ——— */
.about-main-video {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Space and divider before member grid; width stays default .section-inner (same as before) */
.section-inner.about-members-wrap {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding-top: clamp(2.25rem, 4.5vw, 4rem);
  border-top: 1px solid var(--border);
  box-sizing: border-box;
}

.about-main-video-inner {
  text-align: center;
  max-width: 62rem;
  margin: 0 auto;
}

/* 16:9 “TV” frame — portrait footage is center-cropped to look widescreen */
.about-video-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.about-video-frame video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.about-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(8, 8, 12, 0.45);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.about-video-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(8, 8, 12, 0.62);
}

.about-video-frame.is-playing .about-video-play {
  opacity: 0;
  pointer-events: none;
}

/* ——— Upcoming ——— */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.show-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.show-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
  color: var(--text);
}

.show-card .date {
  color: var(--muted);
  font-size: 0.95rem;
}

.show-card a.link-out {
  margin-top: auto;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ——— Members ——— */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.member-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.member-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-2px);
}

.member-card .photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface);
}

.member-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card .info {
  padding: 1.1rem 1.25rem 1.25rem;
}

.member-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.25rem;
}

.member-card .role {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

/* About page specific member layout */
.members-grid.members-grid--about {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 1400px) {
  .members-grid.members-grid--about {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .members-grid.members-grid--about {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .members-grid.members-grid--about {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ——— Timeline (achievements) ——— */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(var(--accent), transparent);
  border-radius: 1px;
}

.year-block {
  padding-left: 1.75rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.year-block::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg);
}

.year-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.year-block ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.year-block li {
  margin-bottom: 0.5rem;
}

.timeline .year-block {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 0.6rem 1.45rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.timeline .year-block:hover {
  transform: translateY(-2px);
}

/* Milestones page card layout */
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.milestone-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.milestone-card h3 {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.milestone-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.milestone-card li {
  margin-bottom: 0.4rem;
}

.lists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-list h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.info-list ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

/* ——— Gallery ——— */
.gallery-intro {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 1.75rem;
}

.gallery-intro p {
  color: var(--muted);
  margin: 0;
}

.gallery-container {
  max-width: 56rem;
  margin: 0 auto;
}

.gallery-slider {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.gallery-slide {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

.gallery-slider-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  min-width: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  padding: 0;
  font-size: 1.15rem;
  line-height: 1;
  backdrop-filter: blur(2px);
}

.gallery-nav-btn[data-gallery-prev] {
  left: 0.7rem;
}

.gallery-nav-btn[data-gallery-next] {
  right: 0.7rem;
}

.gallery-native-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  vertical-align: top;
}

@media (max-width: 700px) {
  .gallery-nav-btn {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1rem;
  }
}

/* ——— Chai page ——— */
.chai-top-section {
  box-sizing: border-box;
  max-width: 100%;
}

.chai-hero {
  padding-top: 7rem;
  padding-bottom: 3rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.chai-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.5rem;
}

.chai-hero .tagline {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

/* Hero sits under a banner image: drop extra padding so the tagline leads into the copy */
.chai-hero--with-image {
  padding-top: 0;
  padding-bottom: 0.35rem;
}

.chai-hero--with-image .tagline {
  margin-bottom: 0.4rem;
}

.chai-body {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
}

.chai-body--flush {
  padding-top: 0;
}

.chai-body--flush > p {
  margin: 0 0 0.9rem;
}

.chai-body--flush > p:first-of-type {
  margin-top: 0;
}

.expect-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.expect-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.chai-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 1.1rem 0 0.4rem;
}

.chai-box h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.chai-paused-note {
  margin: 2.25rem auto 0.5rem;
  max-width: 44rem;
  text-align: center;
}

.chai-paused-note h2 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  margin: 0 0 0.7rem;
  color: var(--text);
}

.chai-paused-note p {
  margin: 0 auto;
  max-width: 40rem;
  color: var(--muted);
}

.chai-cta {
  text-align: center;
  padding: 0.9rem 1.5rem 5rem;
  margin-top: 0;
}

.chai-cta .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.chai-cta .fineprint {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 1rem 0 0;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ——— Contact ——— */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-card p {
  margin: 0.35rem 0;
  color: var(--muted);
}

.contact-page {
  padding-top: 5.5rem;
  padding-bottom: 4rem;
}

.contact-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.contact-intro p {
  color: var(--muted);
  margin: 0;
}

.contact-card-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.contact-card--details {
  position: sticky;
  top: 6.5rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-info-item a {
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-info-item a:hover {
  color: var(--accent);
}

.contact-card--form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent), var(--surface);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-card--details {
    position: static;
  }
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  background: var(--bg-elevated);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-social a:hover {
  color: var(--accent);
}

.copyright {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ——— Nav mobile ——— */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 280px);
    height: 100vh;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    padding: 4rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  nav.is-open {
    transform: translateX(0);
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
}

body.nav-open {
  overflow: hidden;
}

/* ——— Responsive tune-ups by device size ——— */
@media (min-width: 1600px) {
  :root {
    --max: 1320px;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 88vh;
  }

  .contact-layout {
    gap: 1.5rem;
  }

  .milestone-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 82vh;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .chai-cta .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Allow long paused-state heading to wrap on small devices */
  .chai-paused-note h2 {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 2.2rem;
  }

  nav {
    width: 100%;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .show-card,
  .contact-card {
    padding: 1rem;
  }
}

/* ——— Artistic motion layer (non-destructive skin) ——— */
:root {
  --pop-pink: #d95f9c;
  --pop-violet: #6c5ce7;
  --pop-cyan: #27d6c5;
}

body::before {
  content: "";
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 55vh;
  z-index: -2;
  pointer-events: none;
  opacity: 0.28;
  filter: blur(60px);
  background:
    radial-gradient(circle at 15% 30%, rgba(217, 95, 156, 0.45), transparent 38%),
    radial-gradient(circle at 85% 10%, rgba(108, 92, 231, 0.38), transparent 42%),
    radial-gradient(circle at 55% 60%, rgba(39, 214, 197, 0.22), transparent 38%);
  animation: popGlowShift 14s ease-in-out infinite alternate;
}

@keyframes popGlowShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, 18px, 0) scale(1.08);
  }
}

.site-header {
  transition: border-color 0.3s, background 0.35s, box-shadow 0.35s;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

nav a {
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0));
  transition: transform 0.25s ease;
}

nav a:hover::after,
nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero-bg img {
  transform: scale(1.03);
  animation: heroPulse 12s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.08);
  }
}

.hero-overlay {
  background:
    linear-gradient(to top, rgba(10, 8, 8, 0.95) 0%, rgba(10, 8, 8, 0.82) 43%, rgba(10, 8, 8, 0.28) 100%),
    radial-gradient(circle at 16% 20%, rgba(217, 95, 156, 0.2), transparent 38%),
    radial-gradient(circle at 82% 22%, rgba(108, 92, 231, 0.16), transparent 36%);
}

.hero-content {
  animation: riseIn 0.9s ease both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  transition: transform 0.22s, box-shadow 0.25s, background 0.22s, filter 0.22s;
}

.btn:hover {
  filter: saturate(1.08);
}

.btn-primary {
  background: linear-gradient(135deg, #d6b13a, #aa8420 60%, #8f6f18 100%);
}

.section-title {
  text-wrap: balance;
}

.show-card,
.member-card,
.milestone-card,
.gallery-slider,
.about-video-frame,
.chai-box {
  position: relative;
  overflow: hidden;
}

.show-card::before,
.member-card::before,
.milestone-card::before,
.gallery-slider::before,
.about-video-frame::before,
.chai-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 162, 39, 0.75) 35%, transparent 100%);
  pointer-events: none;
}

.show-card,
.member-card,
.milestone-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.show-card:hover,
.member-card:hover,
.milestone-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.33);
}

.gallery-nav-btn {
  background: rgba(12, 10, 9, 0.55);
  border-color: rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-nav-btn:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(12, 10, 9, 0.78);
}

/* Reveal on scroll hook */
.motion-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.motion-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .motion-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   V2: Vibrant pop skin (full visual override)
   ========================================================= */
:root {
  --bg: #101b1f;
  --bg-elevated: #16262b;
  --surface: #1d3036;
  --text: #f3fcff;
  --muted: #cbe2df;
  --accent: #ffe2a8;
  --accent-soft: rgba(255, 226, 168, 0.35);
  --border: rgba(222, 246, 243, 0.2);
  --radius: 18px;
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 214, 182, 0.24), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(161, 236, 228, 0.24), transparent 32%),
    radial-gradient(circle at 54% 88%, rgba(188, 228, 255, 0.2), transparent 35%),
    linear-gradient(145deg, #101b1f 0%, #132328 35%, #183036 100%);
  color: var(--text);
}

.site-header {
  background: linear-gradient(to bottom, rgba(19, 36, 41, 0.92), rgba(19, 36, 41, 0.45), transparent);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled {
  background: rgba(21, 42, 48, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 34px rgba(9, 6, 23, 0.5);
}

nav a {
  color: #f3e8ff;
  font-weight: 600;
}

nav a:hover,
nav a[aria-current="page"] {
  color: #fff0c7;
}

.hero-overlay {
  background:
    linear-gradient(to top, rgba(13, 26, 30, 0.92) 0%, rgba(13, 26, 30, 0.68) 48%, rgba(13, 26, 30, 0.2) 100%),
    radial-gradient(circle at 18% 18%, rgba(255, 214, 182, 0.22), transparent 38%),
    radial-gradient(circle at 78% 16%, rgba(161, 236, 228, 0.2), transparent 36%);
  background-size: 100% 100%, 120% 120%, 120% 120%;
  animation: heroAuraShift 14s ease-in-out infinite alternate;
}

.hero-eyebrow {
  color: #ffeac2;
}

.hero h1 {
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.hero-lead,
.band-intro p,
.section-label + .section-title + p,
.show-card .date,
.milestone-card ul,
.info-list ul,
.contact-card p,
.copyright {
  color: var(--muted);
}

.btn-primary {
  background: linear-gradient(135deg, #ffd35c 0%, #ffb34f 45%, #ff8f6e 100%);
  color: #201323;
  box-shadow: 0 12px 30px rgba(255, 143, 110, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(255, 143, 110, 0.52);
  transform: translateY(-2px) scale(1.01);
}

.btn-primary::after {
  content: none;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(13, 25, 30, 0.35);
  color: #ffffff;
}

.btn-ghost:hover {
  border-color: #ffd35c;
  color: #ffd35c;
  background: rgba(255, 211, 92, 0.12);
}

.band-intro {
  background:
    linear-gradient(180deg, rgba(255, 214, 182, 0.08), rgba(161, 236, 228, 0.06)),
    var(--bg-elevated);
  border-top-color: rgba(255, 255, 255, 0.14);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.show-card,
.member-card,
.milestone-card,
.gallery-slider,
.about-video-frame,
.chai-box,
.contact-card,
.info-list,
.contact-form-wrap {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01) 45%),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 34px rgba(7, 4, 20, 0.42);
}

.show-card:hover,
.member-card:hover,
.milestone-card:hover {
  border-color: rgba(255, 240, 199, 0.5);
  box-shadow: 0 20px 40px rgba(10, 5, 29, 0.55);
  animation: cardBreathe 1.7s ease-in-out infinite alternate;
}

.section-label,
.member-card .role,
.show-card a.link-out,
.year-block h3,
.milestone-card h3,
.info-list h3 {
  color: #fff0c7;
}

.timeline::before {
  background: linear-gradient(#fff0c7, rgba(255, 255, 255, 0));
}

.year-block::before {
  background: #fff0c7;
  box-shadow: 0 0 0 4px rgba(22, 38, 43, 0.95);
}

.gallery-slide {
  background: #13242a;
}

.gallery-slide img,
.gallery-native-video {
  background: #13242a;
}

.gallery-nav-btn {
  background: rgba(18, 10, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff7ff;
}

.gallery-nav-btn:hover {
  background: rgba(180, 222, 217, 0.4);
}

.chai-hero .tagline,
.chai-cta .price {
  color: #fff0c7;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 214, 182, 0.08), rgba(161, 236, 228, 0.05)),
    #132228;
  border-top-color: rgba(255, 255, 255, 0.14);
}

.footer-social a {
  color: #f1e4ff;
}

.footer-social a:hover {
  color: #fff0c7;
}

/* playful floating accents */
body::after {
  content: "";
  position: fixed;
  right: -40px;
  bottom: 8vh;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(168, 226, 220, 0.28) 0%, rgba(168, 226, 220, 0) 70%);
  filter: blur(2px);
  animation: popDot 11s ease-in-out infinite alternate;
}

@keyframes popDot {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-20px) scale(1.08);
  }
}

/* Final override: keep transitions/motion, return to black theme */
:root {
  --bg: #0b0b0e;
  --bg-elevated: #121218;
  --surface: #1a1a24;
  --text: #f7f7fb;
  --muted: #d8d8e2;
  --accent: #ffe45e;
  --accent-soft: rgba(255, 228, 94, 0.28);
  --border: rgba(255, 255, 255, 0.14);
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 214, 182, 0.12), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(161, 236, 228, 0.11), transparent 32%),
    linear-gradient(145deg, #0b0b0e 0%, #0f1118 38%, #11131c 100%);
}

.site-header {
  background: linear-gradient(to bottom, rgba(12, 12, 18, 0.92), rgba(12, 12, 18, 0.45), transparent);
}

.site-header.is-scrolled {
  background: rgba(14, 14, 22, 0.9);
}

.hero-overlay {
  background:
    linear-gradient(to top, rgba(8, 8, 12, 0.93) 0%, rgba(8, 8, 12, 0.7) 48%, rgba(8, 8, 12, 0.24) 100%),
    radial-gradient(circle at 18% 18%, rgba(255, 214, 182, 0.13), transparent 38%),
    radial-gradient(circle at 78% 16%, rgba(161, 236, 228, 0.1), transparent 36%);
}

.show-card,
.member-card,
.milestone-card,
.gallery-slider,
.about-video-frame,
.chai-box,
.contact-card,
.info-list,
.contact-form-wrap {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01) 45%),
    var(--surface);
}

.gallery-slide,
.gallery-slide img,
.gallery-native-video {
  background: #0e0e15;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 214, 182, 0.05), rgba(161, 236, 228, 0.04)),
    #0d0d12;
}

/* Final cleanup: pure black background, no glow patches */
body {
  background: #0b0b0e !important;
}

body::before,
body::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}

/* Final polish: logo visibility + new milestones style */
.logo img {
  height: clamp(2.4rem, 4.6vw, 3.2rem);
  width: auto;
  filter: brightness(1.15) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 10px rgba(0, 0, 0, 0.45));
}

.site-header {
  background: linear-gradient(to bottom, rgba(8, 8, 12, 0.72), rgba(8, 8, 12, 0.36), transparent);
}

/* Milestones v3: setlist rows (year + highlights) */
.timeline {
  max-width: 980px;
  margin: 0 auto;
}

.timeline::before {
  content: none;
}

.timeline .year-block {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.1rem;
  align-items: start;
  margin: 0;
  padding: 1rem 0 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  transform: none;
}

.timeline .year-block:last-child {
  border-bottom: none;
}

.year-block::before {
  content: none;
}

.year-block h3 {
  margin: 0;
  padding-top: 0.1rem;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--accent-bright) !important;
}

.year-block ul {
  margin: 0;
  padding-left: 1rem;
}

.year-block li {
  margin-bottom: 0.45rem;
  color: var(--text);
}

@media (max-width: 720px) {
  .timeline .year-block {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.9rem 0 1rem;
  }

  .year-block h3 {
    font-size: 1.15rem;
  }
}

/* Final override: strong logo visibility + milestones redesign */
.site-header {
  background: linear-gradient(to bottom, rgba(8, 8, 12, 0.88), rgba(8, 8, 12, 0.42), rgba(8, 8, 12, 0.08), transparent) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 12, 0.95) !important;
}

.header-inner {
  min-height: 70px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: clamp(3rem, 5.2vw, 4.2rem) !important;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.85));
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 64px;
  }

  .logo img {
    height: clamp(2.35rem, 7vw, 3rem) !important;
  }
}

/* Milestones v4: spotlight blocks (less technical) */
.timeline {
  max-width: 980px;
  margin: 0 auto;
}

.timeline .year-block {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  align-items: start;
  margin: 0;
  padding: 1rem 0 1.2rem;
  border: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
  background: transparent;
}

.timeline .year-block:last-child {
  border-bottom: none;
}

.timeline .year-block:hover {
  transform: none;
}

.year-block h3 {
  margin: 0;
  padding: 0;
  font-size: clamp(1.65rem, 3vw, 2rem);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--accent-bright) !important;
}

.year-block ul {
  margin: 0;
  padding-left: 1.1rem;
}

.year-block li {
  margin-bottom: 0.45rem;
  color: var(--text);
}

@media (max-width: 760px) {
  .timeline .year-block {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .year-block h3 {
    font-size: 1.35rem;
  }
}

/* V2 readability + layout tuning */
:root {
  --text: #f8feff;
  --muted: #eff9f7;
}

p,
li,
label,
input,
textarea {
  color: var(--text);
}

.hero-lead,
.band-intro p,
.show-card .date,
.milestone-card ul,
.info-list ul,
.contact-card p,
.copyright,
.chai-cta .fineprint,
.chai-paused-note p {
  color: var(--muted);
}

/* Brighten small labels and utility text across pages */
.section-label {
  color: #fff2cf !important;
  opacity: 1;
}

.show-card .date {
  color: #f5fcfb !important;
}

.show-card a.link-out {
  color: #ffe39f !important;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.show-card a.link-out:hover {
  color: #fff1c5 !important;
}

.member-card .role,
.contact-card p,
.copyright,
.footer-social a {
  color: #eaf7f4;
}

.footer-social a:hover {
  color: #fff2cf;
}

/* Accent text normalization: bright yellow everywhere */
:root {
  --accent-bright: #ffe45e;
}

.section-label,
.member-card .role,
.show-card a.link-out,
.year-block h3,
.milestone-card h3,
.info-list h3,
.chai-hero .tagline,
.chai-cta .price {
  color: var(--accent-bright) !important;
}

/* Member profession lines under names */
.member-card .role {
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Years in milestones: plain bright heading text */
.milestone-card h3 {
  background: none;
  border: none;
  color: var(--accent-bright) !important;
  font-weight: 700;
  text-shadow: none;
}

/* Milestones: year in strong box, rest normal/readable */
.milestone-card {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.milestone-card h3 {
  display: block;
  min-width: 0;
  margin: 0 0 0.9rem;
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--accent-bright) !important;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
}

.milestone-card ul {
  margin-top: 0;
  padding-left: 1.05rem;
}

.milestone-card li {
  line-height: 1.6;
}

/* Chai spacing fix: avoid payment/details overlap */
.chai-top-section {
  position: relative;
  z-index: 0;
}

.chai-box {
  margin: 1.45rem 0 1.9rem;
}

.chai-cta {
  position: relative;
  z-index: 0;
  margin-top: 0.9rem;
  padding-top: 1.1rem;
  background: transparent;
  border-top: none;
}

@keyframes heroAuraShift {
  0% {
    background-position: center center, 0% 0%, 100% 0%;
  }
  100% {
    background-position: center center, 8% 12%, 92% 10%;
  }
}

@keyframes btnShine {
  0% {
    left: -35%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  35% {
    left: 130%;
    opacity: 0;
  }
  100% {
    left: 130%;
    opacity: 0;
  }
}

@keyframes cardBreathe {
  0% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(-6px);
  }
}

/* ===== FINAL ENFORCED OVERRIDES (logo + home header + milestones) ===== */
.site-header {
  border-bottom: none !important;
  box-shadow: none !important;
  background: linear-gradient(to bottom, rgba(8, 8, 12, 0.82), rgba(8, 8, 12, 0.35), transparent) !important;
}

.site-header.is-scrolled {
  border-bottom: none !important;
  background: rgba(8, 8, 12, 0.9) !important;
}

.header-inner {
  min-height: 72px !important;
}

.logo img {
  height: 38px !important;
  max-height: none !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.9));
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 62px !important;
  }

  .logo img {
    height: 32px !important;
  }
}

.hero .hero-bg img {
  object-position: center 10% !important;
  transform: translateY(18px) scale(1.02) !important;
  animation: none !important;
}

/* Distinct milestones look: big year + clean narrative list */
.timeline {
  max-width: 980px !important;
  margin: 0 auto !important;
}

.timeline::before,
.year-block::before {
  content: none !important;
}

.timeline .year-block {
  display: grid !important;
  grid-template-columns: 150px 1fr !important;
  align-items: start !important;
  gap: 1rem !important;
  margin: 0 !important;
  padding: 1.1rem 0 1.3rem !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: transparent !important;
  border-radius: 0 !important;
  transform: none !important;
}

.timeline .year-block:last-child {
  border-bottom: none !important;
}

.year-block h3 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 2rem !important;
  line-height: 1 !important;
  letter-spacing: 0.04em !important;
  color: var(--accent-bright) !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
}

.year-block ul {
  margin: 0 !important;
  padding-left: 1.05rem !important;
}

.year-block li {
  margin-bottom: 0.42rem !important;
}

@media (max-width: 760px) {
  .timeline .year-block {
    grid-template-columns: 1fr !important;
    gap: 0.45rem !important;
    padding: 0.95rem 0 1.05rem !important;
  }

  .year-block h3 {
    font-size: 1.4rem !important;
  }
}

/* ===== User-requested final corrections ===== */
.logo img {
  height: 58px !important;
}

@media (max-width: 768px) {
  .logo img {
    height: 44px !important;
  }
}

/* Bring back hero motion while keeping faces visible */
.hero .hero-bg img {
  object-position: center 6% !important;
  transform: translateY(6px) scale(1.08) !important;
  animation: none !important;
  will-change: transform;
}

@keyframes heroFloatSafe {
  0% {
    transform: translate3d(-1.2%, 2px, 0) scale(1.06);
  }
  100% {
    transform: translate3d(1.2%, 12px, 0) scale(1.11);
  }
}

/* Contact cards: reduce gap between left and right blocks */
.contact-layout {
  gap: 1.25rem !important;
}

/* Milestones bottom 4 boxes in one line on desktop */
.lists-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}

@media (max-width: 1200px) {
  .lists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  .lists-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Force visible home hero motion even when reduced-motion is enabled */
@media (prefers-reduced-motion: reduce) {
  .hero .hero-bg img {
    animation: none !important;
    transform: translateY(6px) scale(1.08) !important;
  }
}

/* Contact page: reduce vertical gap between intro and cards */
.contact-page .contact-intro {
  margin: 0 auto 0.6rem !important;
}

.contact-page .contact-layout {
  margin-top: 0 !important;
  padding-top: 0.4rem !important;
}

/* Restore milestones to original card layout look */
.timeline {
  display: block !important;
  max-width: unset !important;
  margin: 0 !important;
}

.timeline::before,
.year-block::before {
  content: none !important;
}

.timeline .year-block {
  display: block !important;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

.milestone-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 1rem !important;
  margin-bottom: 2rem !important;
}

.milestone-card {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 1.15rem 1.25rem !important;
  box-shadow: none !important;
}

.milestone-card h3 {
  margin: 0 0 0.5rem !important;
  padding: 0 !important;
  font-size: 1.35rem !important;
  color: var(--accent-bright) !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  display: block !important;
}

.milestone-card ul {
  margin: 0 !important;
  padding-left: 1rem !important;
}
