@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Cinzel:wght@600;700;800&family=Outfit:wght@600;700;800&display=swap');

/* @font-face definition for Momo Trust Display header typography */
@font-face {
  font-family: 'Momo Trust Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/MomoTrustDisplay-Regular.ttf') format('truetype');
}

/* ==========================================================
   DESIGN TOKENS
========================================================== */
:root {
  --obsidian:   #0E0F12;
  --surface:    #16181F;
  --surface-2:  #20242D;
  --parchment:  #F9F8F3;
  --muted:      #9E9EA6;
  --secondary:       #1B4EF5;
  --secondary-dim:   #1539C4;
  --secondary-light: #7B9CFF;
  --purple:          #9333EA;
  --purple-dim:      #7E22CE;
  --purple-light:    #C084FC;
  --burgundy:   #7A2234;
  --border:     rgba(249,248,243,.09);

  --font-display: 'Momo Trust Display', 'Cormorant Garamond', 'Cinzel', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.5rem;
  --text-4xl:  3.5rem;
  --text-5xl:  5rem;
  --text-6xl:  7rem;

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --nav-h: 68px;
  --container: 1180px;
  --radius: 2px;

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--obsidian);
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
address { font-style: normal; }
svg { display: inline-block; }

/* ==========================================================
   LAYOUT UTILITIES
========================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

/* ==========================================================
   TYPOGRAPHY
========================================================== */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--secondary-light), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-4);
}

h1, h2, h3, h4, h5, h6,
.hero-name,
.section-title,
.page-hero-title,
.album-title,
.tour-event-title,
.tracklist-title,
.milestone-featured-year,
.milestone-title {
  font-family: var(--font-display);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--parchment);
  margin-bottom: var(--space-6);
}

.section-intro {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--muted);
  max-width: 55ch;
  line-height: 1.8;
  margin-bottom: var(--space-12);
}

/* Center header + intro for ATFOTC section */
.section-atfotc .section-label,
.section-atfotc .section-title,
.section-atfotc .section-intro {
  text-align: center;
}

.section-atfotc .section-intro {
  margin-inline: auto;
}

/* ==========================================================
   BUTTONS
========================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-8);
  border: 1px solid transparent;
  border-radius: 8px;
  text-align: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--purple));
  color: var(--parchment);
  border: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--secondary-dim), var(--purple-dim));
  border: none;
  outline: none;
}

.btn-secondary {
  background: transparent;
  color: var(--parchment);
  border-color: rgba(244,244,240,.35);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  border-color: var(--parchment);
  outline: none;
}

/* ==========================================================
   NAVIGATION
========================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(14, 15, 18, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* Logo is white - visible on the dark nav naturally */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(135deg, var(--secondary), var(--purple));
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link:focus-visible { color: var(--parchment); outline: none; }
.nav-link:hover::after,
.nav-link:focus-visible::after { width: 100%; }

.nav-link.nav-cta {
  color: var(--secondary-light);
  border: 1px solid rgba(27,78,245,.35);
  padding: var(--space-2) var(--space-4);
}
.nav-link.nav-cta:hover { border-color: var(--secondary-light); color: var(--secondary-light); }
.nav-link.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--parchment);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100vh;
    background: var(--obsidian);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: var(--space-12);
    gap: var(--space-8);
    font-size: var(--text-base);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 99;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-link { font-size: var(--text-sm); }
}

/* ==========================================================
   HERO
========================================================== */
.section-hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-16);
  overflow: hidden;
  background: var(--obsidian);
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (min-width: 768px) {
  .hero-image img {
    object-position: 75% 20%;
  }
}
@media (min-width: 1200px) {
  .hero-image img {
    object-position: 80% 25%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 80% 30%, rgba(27, 78, 245, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(122, 34, 52, 0.22) 0%, transparent 60%),
    linear-gradient(to right, rgba(14, 15, 18, 0.94) 0%, rgba(14, 15, 18, 0.6) 45%, rgba(14, 15, 18, 0.1) 100%),
    linear-gradient(to top, rgba(14, 15, 18, 0.88) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.hero-prelude {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: var(--space-4);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 7.5vw, var(--text-5xl));
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--parchment);
  margin-bottom: var(--space-6);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  font-weight: 300;
  color: rgba(244,244,240,.7);
  margin-bottom: var(--space-10);
  max-width: 40ch;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ==========================================================
   ATFOTC SECTION
========================================================== */
.section-atfotc {
  padding-block: var(--space-32);
  background: var(--obsidian);
}

/* ---- ATFOTC Hero Layout ---- */
.atfotc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

@media (max-width: 820px) {
  .atfotc-hero {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

.atfotc-hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-6);
}

.atfotc-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  font-weight: 700;
  line-height: 1.1;
  color: var(--parchment);
  margin: 0;
  margin-bottom: var(--space-4);
}

.atfotc-hero-sub {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.8;
  max-width: 44ch;
  margin: 0;
}

.atfotc-hero-sub em {
  color: var(--parchment);
  font-style: italic;
}

/* Image column */
.atfotc-hero-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.atfotc-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge overlay */
.atfotc-hero-img-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(14, 15, 18, 0.80);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(27, 78, 245, 0.35);
  border-radius: 8px;
  padding: var(--space-3) var(--space-4);
}

.atfotc-badge-year {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--secondary-light);
  line-height: 1;
}

.atfotc-badge-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--parchment);
}

/* Timeline */
.timeline-wrapper {
  margin-bottom: var(--space-24);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) transparent;
}
.timeline-wrapper::-webkit-scrollbar { height: 3px; }
.timeline-wrapper::-webkit-scrollbar-track { background: transparent; }
.timeline-wrapper::-webkit-scrollbar-thumb { background: var(--secondary-dim); }

.timeline-track {
  display: flex;
  gap: 0;
  min-width: min-content;
  padding-bottom: var(--space-6);
}

.timeline-node {
  flex: 0 0 200px;
  padding: var(--space-6) var(--space-6) var(--space-6) 0;
  position: relative;
}
.timeline-node::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 0;
  right: -1px;
  height: 1px;
  background: var(--border);
}
.timeline-node:last-child::before { right: 100%; }

.timeline-year {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--muted);
  margin-bottom: var(--space-4);
  transition: color var(--transition);
}
.timeline-node:hover .timeline-year { color: var(--secondary-light); }

.timeline-marker {
  width: 8px;
  height: 8px;
  border: 1px solid var(--secondary-dim);
  border-radius: 50%;
  margin-bottom: var(--space-4);
  background: var(--obsidian);
  transition: background var(--transition), border-color var(--transition);
}
.timeline-node:hover .timeline-marker { background: linear-gradient(135deg, var(--secondary), var(--purple)); border-color: var(--secondary-light); }

.timeline-note {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  max-width: 18ch;
}

.timeline-node--landmark .timeline-year { color: var(--secondary-light); }
.timeline-node--landmark .timeline-marker { background: linear-gradient(135deg, var(--secondary), var(--purple)); border-color: var(--secondary-light); }
.timeline-node--landmark .timeline-note { color: var(--parchment); }

.timeline-badge {
  position: absolute;
  top: 0;
  right: var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--secondary-light);
  opacity: .15;
  line-height: 1;
  pointer-events: none;
}

/* Gallery */
.gallery-intro {
  margin-bottom: var(--space-8);
}
.gallery-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--parchment);
  margin-bottom: var(--space-2);
}
.gallery-intro p {
  font-size: var(--text-sm);
  color: var(--muted);
}

.gallery-masonry {
  columns: 2;
  column-gap: var(--space-3);
}
@media (min-width: 640px) { .gallery-masonry { columns: 3; } }
@media (min-width: 900px) { .gallery-masonry { columns: 4; } }

.gallery-item {
  display: block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: var(--space-3);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.03); filter: brightness(0.85); }
.gallery-item:focus-visible { outline: 2px solid var(--secondary); outline-offset: 2px; }

.gallery-placeholder {
  width: 100%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,244,240,.15);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
}
/* Vary placeholder heights for masonry feel */
.gallery-item:nth-child(1) .gallery-placeholder { height: 280px; }
.gallery-item:nth-child(2) .gallery-placeholder { height: 200px; }
.gallery-item:nth-child(3) .gallery-placeholder { height: 320px; }
.gallery-item:nth-child(4) .gallery-placeholder { height: 240px; }
.gallery-item:nth-child(5) .gallery-placeholder { height: 180px; }
.gallery-item:nth-child(6) .gallery-placeholder { height: 300px; }
.gallery-item:nth-child(7) .gallery-placeholder { height: 220px; }
.gallery-item:nth-child(8) .gallery-placeholder { height: 260px; }

/* ==========================================================
   MUSIC SECTION
========================================================== */
.section-music {
  padding-block: var(--space-32);
  background: var(--surface);
}

.section-music .section-label,
.section-music .section-title,
.section-music .section-intro {
  text-align: center;
}

.section-music .section-intro {
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.featured-releases-container {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: var(--space-6);
  align-items: stretch;
  margin-bottom: var(--space-8);
}

@media (max-width: 960px) {
  .featured-releases-container {
    grid-template-columns: 1fr;
  }
}

.releases-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (max-width: 600px) {
  .releases-cards-grid {
    grid-template-columns: 1fr;
  }
}

.featured-release-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.featured-release-card:hover {
  transform: translateY(-3px);
  border-color: rgba(27, 78, 245, 0.4);
}

.featured-release-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
}

.featured-release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.featured-release-card:hover .featured-release-cover img {
  transform: scale(1.04);
}

.featured-release-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4);
  background: var(--surface-2);
}

.featured-release-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary-light);
  font-weight: 700;
}

.featured-release-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--parchment);
  line-height: 1.3;
  margin-block: 0;
}

.featured-release-artist {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-block: 0;
}

.spotify-embed {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.spotify-embed iframe {
  width: 100%;
  flex: none;
  height: 180px;
  display: block;
  border: none;
}

.platform-label {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-4);
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--parchment);
  border: 1px solid var(--border);
  padding: var(--space-3) var(--space-6);
  transition: border-color var(--transition), color var(--transition);
}
.platform-link:hover, .platform-link:focus-visible {
  border-color: var(--secondary-light);
  color: var(--secondary-light);
  outline: none;
}
.platform-link--muted { color: var(--muted); }

.platform-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.platform-link-note {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-left: var(--space-1);
}

/* ==========================================================
   ABOUT SECTION
========================================================== */
.section-about {
  padding-block: var(--space-32);
  background: var(--obsidian);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-20);
    align-items: start;
  }
}

.about-portrait { position: relative; }

.portrait-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,244,240,.15);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
}
.portrait-placeholder span { writing-mode: vertical-rl; text-orientation: mixed; text-transform: uppercase; }

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-pullquote {
  font-family: var(--font-display);
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  font-weight: 300;
  font-style: italic;
  color: var(--secondary-light);
  line-height: 1.5;
  border-left: 2px solid var(--secondary);
  padding-left: var(--space-6);
  margin-block: var(--space-8);
}

.about-bio p {
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}
.about-bio p:last-child { margin-bottom: 0; }
.about-bio em { color: var(--parchment); font-style: italic; }

/* ==========================================================
   CONNECT SECTION
========================================================== */
.section-connect {
  padding-block: var(--space-32);
  background: var(--surface);
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.social-item {
  border-top: 1px solid var(--border);
}
.social-item:last-child { border-bottom: 1px solid var(--border); }

.social-link {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding-block: var(--space-6);
  transition: color var(--transition);
}
.social-link:hover, .social-link:focus-visible {
  color: var(--secondary-light);
  outline: none;
}
.social-link:focus-visible { outline: 2px solid var(--secondary); outline-offset: -2px; }

.social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
  color: var(--muted);
  transition: color var(--transition);
}
.social-link:hover .social-icon { color: var(--secondary-light); }

.social-handle {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  font-weight: 300;
  flex-grow: 1;
}

.social-platform {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: auto;
}

/* ==========================================================
   CONTACT SECTION
========================================================== */
.section-contact {
  padding-block: var(--space-32);
  background: var(--obsidian);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-20);
    align-items: start;
  }
}

.contact-intro p {
  color: var(--muted);
  margin-bottom: var(--space-6);
}

.contact-address { margin-top: var(--space-8); }
.contact-email {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--parchment);
  border-bottom: 1px solid var(--secondary);
  padding-bottom: var(--space-1);
  transition: color var(--transition), border-color var(--transition);
}
.contact-email:hover, .contact-email:focus-visible {
  color: var(--secondary-light);
  border-color: var(--secondary-dim);
  outline: none;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  padding: var(--space-4);
  width: 100%;
  transition: border-color var(--transition);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--secondary-light);
}
.form-input::placeholder { color: var(--muted); opacity: 0.6; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A84' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
  cursor: pointer;
}
.form-select option { background: var(--surface); }

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

.form-submit { align-self: flex-start; }

.form-note {
  font-size: var(--text-sm);
  color: var(--secondary-light);
  min-height: 1.4em;
}

/* ==========================================================
   FOOTER
========================================================== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block: var(--space-12);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}

.footer-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--parchment);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-8);
}

.footer-link {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-link:hover, .footer-link:focus-visible {
  color: var(--parchment);
  outline: none;
}

.footer-copy {
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* ==========================================================
   LIGHTBOX
========================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 17, 30, .97);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-caption {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: var(--space-4);
}

.lightbox-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color var(--transition);
}
.lightbox-close svg { width: 24px; height: 24px; }
.lightbox-close:hover, .lightbox-close:focus-visible { color: var(--parchment); outline: none; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-2xl);
  color: var(--muted);
  padding: var(--space-4);
  transition: color var(--transition);
}
.lightbox-prev:hover, .lightbox-prev:focus-visible,
.lightbox-next:hover, .lightbox-next:focus-visible { color: var(--parchment); outline: none; }
.lightbox-prev { left: var(--space-4); }
.lightbox-next { right: var(--space-4); }

:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ==========================================================
   FOOTER LOGO (image version)
========================================================== */
.footer-logo {
  height: 32px;
  width: auto;
  opacity: 0.7;
}
/* Keep .footer-name for any legacy text use */
.footer-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--parchment);
}

/* ==========================================================
   PAGE HERO (inner pages - not full-screen)
========================================================== */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--space-20));
  padding-bottom: var(--space-20);
  background: var(--obsidian);
  border-bottom: 1px solid var(--border);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 8vw, var(--text-6xl));
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--parchment);
  margin-bottom: var(--space-6);
}

.page-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  max-width: 50ch;
  line-height: 1.7;
}

/* Inner page sections don't need the full padding of home sections */
.inner-section {
  padding-block: var(--space-24);
}

/* ==========================================================
   ACTIVE NAV STATE
========================================================== */
.nav-link--active {
  color: var(--parchment) !important;
}
.nav-link--active::after {
  width: 100% !important;
}

/* ==========================================================
   ATFOTC YEAR-BY-YEAR CHAPTERS
========================================================== */
.atfotc-chapters {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-24);
}

.atfotc-chapter {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
}

@media (min-width: 768px) {
  /* Alternate image left/right each row */
  .atfotc-chapter {
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
  }
  .atfotc-chapter:nth-child(even) .chapter-image { order: 2; }
  .atfotc-chapter:nth-child(even) .chapter-body  { order: 1; }
}

/* Last chapter gets an accent border top */
.atfotc-chapter:last-child {
  border-bottom: 1px solid var(--border);
}

/* ---- Image panel ---- */
.chapter-image {
  overflow: hidden;
  background: var(--surface-2);
  min-height: 260px;
}
@media (min-width: 768px) {
  .chapter-image { min-height: 360px; }
}

.chapter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.atfotc-chapter:hover .chapter-image img { transform: scale(1.03); }

.chapter-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .chapter-img-placeholder { min-height: 360px; }
}

/* ---- Text body ---- */
.chapter-body {
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--obsidian);
}
@media (min-width: 1024px) {
  .chapter-body { padding: var(--space-16) var(--space-12); }
}

.chapter-edition {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: var(--space-3);
  display: block;
}

.chapter-year {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1;
  color: var(--parchment);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
  /* Subtle ghost effect on the year number */
  position: relative;
}

.chapter-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
  font-weight: 400;
  font-style: italic;
  color: var(--secondary-light);
  margin-bottom: var(--space-6);
  line-height: 1.3;
}

.chapter-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 52ch;
}

.chapter-action-btn {
  margin-top: var(--space-6);
  align-self: flex-start;
}

/* ---- Variant: dark (2020) ---- */
.atfotc-chapter--dark .chapter-body {
  background: #060B14;
}
.atfotc-chapter--dark .chapter-year { color: rgba(248,246,240,.4); }

/* ---- Variant: landmark (2024) ---- */
.atfotc-chapter--landmark {
  border-top: 1px solid var(--secondary);
}
.atfotc-chapter--landmark .chapter-body {
  background: #141C33;
}
.atfotc-chapter--landmark .chapter-year { color: var(--secondary-light); }
.atfotc-chapter--landmark .chapter-edition { color: var(--parchment); }

.chapter-landmark-badge {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700;
  color: var(--secondary-light);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* ==========================================================
   PARTNER & SPONSORS PAGE
========================================================== */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-top: var(--space-12);
}
@media (min-width: 768px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

.partner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
}
.partner-card--featured {
  background: var(--surface-2);
  border-color: rgba(27,78,245,.3);
}

.partner-card-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: var(--space-3);
}

.partner-card-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: var(--space-4);
}

.partner-card-text {
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.partner-details {
  border-top: 1px solid var(--border);
  padding-top: var(--space-6);
  margin-top: auto;
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
  color: var(--muted);
}
.partner-details strong {
  color: var(--parchment);
}

.detail-code {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  color: var(--secondary-light);
}

.partner-list {
  margin-top: var(--space-2);
  padding-left: var(--space-4);
  list-style: disc;
}
.partner-list li {
  margin-bottom: var(--space-1);
}

.card-btn {
  align-self: flex-start;
}

/* ==========================================================
   10-YEAR MILESTONE SHOWCASE (HOME PAGE)
========================================================== */
.milestone-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  margin-bottom: var(--space-20);
}

.milestone-featured {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--surface-2);
  border: 1px solid rgba(27,78,245,.3);
  overflow: hidden;
}
@media (min-width: 860px) {
  .milestone-featured {
    grid-template-columns: 1.1fr 1fr;
    min-height: 400px;
  }
}

.milestone-featured-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  background: #0B162C;
}
.milestone-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.milestone-featured-body {
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) {
  .milestone-featured-body {
    padding: var(--space-12) var(--space-10);
  }
}

.milestone-badge-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: var(--space-2);
}

.milestone-featured-year {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--parchment);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.milestone-featured-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
  font-weight: 400;
  font-style: italic;
  color: var(--secondary-light);
  margin-bottom: var(--space-2);
}

.milestone-featured-date {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-6);
}

.milestone-featured-text {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  max-width: 48ch;
}

/* ATFOTC Timeline */
.atfotc-timeline {
  list-style: none;
  padding: 0;
  margin: var(--space-12) 0 0;
  position: relative;
}

/* ==========================================================
   ATFOTC TIMELINE
========================================================== */
.atfotc-timeline {
  list-style: none;
  padding: 0;
  margin: var(--space-12) 0 0;
  position: relative;
}

/* Spine - thin vertical line dead centre */
.atfotc-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(249, 248, 243, 0.12) 8%,
    rgba(249, 248, 243, 0.12) 92%,
    transparent 100%
  );
  pointer-events: none;
}

/* ---- Row layout ---- */
/*  [card] [node] [spacer]   → right variant (card on LEFT of spine)  */
/*  [spacer] [node] [card]   → left variant  (card on RIGHT of spine) */
.atfotc-tl-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: flex-start;
  gap: 0;
  margin-bottom: var(--space-10);
  position: relative;
}

/* Centre node column: dot + year stacked */
.atfotc-tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding-top: var(--space-2);
  position: relative;
  z-index: 1;
}

.atfotc-tl-dot {
  width: 14px;
  height: 14px;
  background: var(--surface-2);
  border: 2px solid rgba(249, 248, 243, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.25s;
}

.atfotc-tl-row:hover .atfotc-tl-dot {
  border-color: var(--secondary-light);
}

.atfotc-tl-dot--secondary {
  background: linear-gradient(135deg, var(--secondary), var(--purple));
  border-color: var(--secondary-light);
  box-shadow: 0 0 0 5px rgba(27, 78, 245, 0.18);
  width: 18px;
  height: 18px;
}

.atfotc-tl-year {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: center;
  line-height: 1;
}

.atfotc-tl-year--secondary {
  color: var(--secondary-light);
  font-size: var(--text-sm);
}

/* Card */
.atfotc-tl-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: var(--space-5) var(--space-6);
  text-align: left;
  transition: border-color 0.25s, transform 0.25s;
}

.atfotc-tl-row:hover .atfotc-tl-card {
  border-color: rgba(27, 78, 245, 0.35);
  transform: translateY(-2px);
}

.atfotc-tl-card--pinnacle {
  border-color: rgba(27, 78, 245, 0.45);
  background: linear-gradient(135deg, rgba(27, 78, 245, 0.07) 0%, var(--surface-2) 55%);
  text-align: center;
}

.atfotc-tl-edition {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: var(--space-2);
}

.atfotc-tl-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--parchment);
  line-height: 1.25;
  margin-bottom: var(--space-2);
}

.atfotc-tl-desc {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Right variant: card fills col-1, spacer in col-3 */
.atfotc-tl-row--right .atfotc-tl-card  { grid-column: 1; padding-right: var(--space-8); }
.atfotc-tl-row--right .atfotc-tl-node  { grid-column: 2; }
.atfotc-tl-row--right .atfotc-tl-spacer { grid-column: 3; }

/* Left variant: spacer in col-1, card fills col-3 */
.atfotc-tl-row--left .atfotc-tl-spacer { grid-column: 1; }
.atfotc-tl-row--left .atfotc-tl-node   { grid-column: 2; }
.atfotc-tl-row--left .atfotc-tl-card   { grid-column: 3; padding-left: var(--space-8); }

/* Pinnacle: spans full width, card centred below node */
.atfotc-tl-row--pinnacle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.atfotc-tl-row--pinnacle .atfotc-tl-card {
  width: 100%;
  max-width: 540px;
}

/* Mobile: single column, dot + year on the left */
@media (max-width: 680px) {
  .atfotc-timeline::before {
    left: 24px;
  }

  .atfotc-tl-row,
  .atfotc-tl-row--right,
  .atfotc-tl-row--left {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto;
  }

  .atfotc-tl-row--right .atfotc-tl-card,
  .atfotc-tl-row--left .atfotc-tl-card {
    grid-column: 2;
    grid-row: 1;
    padding: var(--space-5) var(--space-5);
    text-align: left;
  }

  .atfotc-tl-row--right .atfotc-tl-node,
  .atfotc-tl-row--left .atfotc-tl-node {
    grid-column: 1;
    grid-row: 1;
  }

  .atfotc-tl-row--right .atfotc-tl-spacer,
  .atfotc-tl-row--left .atfotc-tl-spacer {
    display: none;
  }

  .atfotc-tl-row--pinnacle {
    flex-direction: row;
    align-items: flex-start;
  }

  .atfotc-tl-row--pinnacle .atfotc-tl-card {
    max-width: none;
    text-align: left;
  }
}

/* ==========================================================
   MUSICIAN PLATFORM - ENHANCED UI & AUDIO PLAYER
========================================================== */

/* Hero Streaming Badge & Music Trigger */
.hero-stream-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-4);
  background: rgba(27, 78, 245, 0.12);
  border: 1px solid rgba(27, 78, 245, 0.35);
  border-radius: 40px;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
}

.stream-pulse-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--secondary), var(--purple));
  border-radius: 50%;
  box-shadow: 0 0 10px var(--secondary);
  animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.hero-music-quickplay {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding: var(--space-4) var(--space-6);
  background: rgba(22, 24, 31, 0.85);
  border: 1px solid rgba(249, 248, 243, 0.12);
  border-radius: 6px;
  backdrop-filter: blur(12px);
  max-width: 460px;
}

.hero-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--purple));
  color: var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--transition), background var(--transition);
  flex-shrink: 0;
}
.hero-play-btn:hover {
  transform: scale(1.08);
  background: #f1ba55;
  box-shadow: 0 0 20px rgba(27, 78, 245, 0.5);
}

.hero-track-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-track-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--parchment);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-track-subtitle {
  font-size: var(--text-xs);
  color: var(--muted);
}

/* Equalizer Visualizer Bars */
.eq-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}
.eq-bar {
  width: 3px;
  background: linear-gradient(135deg, var(--secondary), var(--purple));
  border-radius: 2px;
  height: 4px;
}
.is-playing .eq-bar:nth-child(1) { animation: eqPulse 0.6s infinite ease-in-out alternate; }
.is-playing .eq-bar:nth-child(2) { animation: eqPulse 0.8s infinite ease-in-out alternate 0.2s; }
.is-playing .eq-bar:nth-child(3) { animation: eqPulse 0.5s infinite ease-in-out alternate 0.4s; }
.is-playing .eq-bar:nth-child(4) { animation: eqPulse 0.9s infinite ease-in-out alternate 0.1s; }

@keyframes eqPulse {
  0% { height: 3px; }
  100% { height: 18px; }
}

/* Interactive Discography Player Grid */
.discography-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}
@media (min-width: 900px) {
  .discography-layout {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}

.player-main-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: var(--space-8);
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.player-main-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(27,78,245,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.featured-art-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: var(--space-6);
  background: #0B162C;
}
.featured-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,15,18,0.9), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
}

.canvas-visualizer {
  width: 100%;
  height: 50px;
  display: block;
  margin-bottom: var(--space-4);
  background: rgba(14,15,18,0.4);
  border-radius: 4px;
}

/* Interactive Tracklist */
.tracklist-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: var(--space-6);
  border-radius: 4px;
}
.tracklist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border);
}
.tracklist-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--parchment);
}

.track-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  border: 1px solid transparent;
  margin-bottom: var(--space-2);
}
.track-item:hover {
  background: rgba(249, 248, 243, 0.04);
}
.track-item.is-active {
  background: rgba(27, 78, 245, 0.12);
  border-color: rgba(27, 78, 245, 0.3);
}

.track-num {
  font-size: var(--text-sm);
  color: var(--muted);
  width: 20px;
}
.track-item.is-active .track-num {
  color: var(--secondary-light);
}

.track-play-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(249,248,243,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--parchment);
  transition: background var(--transition), color var(--transition);
}
.track-item:hover .track-play-icon,
.track-item.is-active .track-play-icon {
  background: linear-gradient(135deg, var(--secondary), var(--purple));
  color: var(--obsidian);
}

.track-meta {
  flex: 1;
}
.track-name {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--parchment);
}
.track-sub {
  font-size: var(--text-xs);
  color: var(--muted);
}
.track-duration {
  font-size: var(--text-xs);
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* Discography Album Cards Grid */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.album-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.album-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 78, 245, 0.4);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.album-cover-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: #12141A;
  overflow: hidden;
}
.album-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.album-card:hover .album-cover-img {
  transform: scale(1.05);
}

.album-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: linear-gradient(135deg, var(--secondary), var(--purple));
  color: var(--obsidian);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.album-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 15, 18, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.album-card:hover .album-play-overlay {
  opacity: 1;
}

.album-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--purple));
  color: var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transform: scale(0.8);
  transition: transform var(--transition);
}
.album-card:hover .album-play-btn {
  transform: scale(1);
}

.album-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.album-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: var(--space-1);
}
.album-release-info {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-bottom: var(--space-3);
}

/* LIVE MINISTRY & TOUR SCHEDULE SECTION */
.section-tour {
  padding-block: var(--space-24);
  background: linear-gradient(180deg, var(--obsidian) 0%, #12141C 50%, var(--obsidian) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.tour-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
@media (min-width: 768px) {
  .tour-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.tour-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.tour-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: var(--space-6) var(--space-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: center;
  transition: border-color var(--transition), background var(--transition);
}
@media (min-width: 768px) {
  .tour-item {
    grid-template-columns: 120px 1fr 200px auto;
  }
}
.tour-item:hover {
  border-color: rgba(27, 78, 245, 0.4);
  background: var(--surface-2);
}

.tour-date-box {
  display: flex;
  flex-direction: column;
}
.tour-date-day {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1;
  color: var(--secondary-light);
}
.tour-date-month {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--parchment);
}

.tour-event-details {
  display: flex;
  flex-direction: column;
}
.tour-event-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--parchment);
}
.tour-venue {
  font-size: var(--text-sm);
  color: var(--muted);
}

.tour-location {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--parchment);
}
.tour-location svg {
  color: var(--secondary-light);
}

.tour-action {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}


.tour-badge-status {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: 4px;
  font-weight: 500;
}
.tour-badge-status.upcoming {
  background: rgba(46, 204, 113, 0.12);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}
.tour-badge-status.sold-out {
  background: rgba(231, 76, 60, 0.12);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* ==========================================================
   VIDEO HIGHLIGHTS REEL
========================================================== */
.section-video {
  padding-block: var(--space-20);
  background: var(--surface);
}
.section-video .section-title,
.section-video .section-intro {
  text-align: center;
}
.section-video .section-intro {
  margin-bottom: var(--space-12);
  margin-inline: auto;
  max-width: 60ch;
}

/* Featured Video Player */
.yt-main-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: var(--space-8);
  background: #000;
  border: 1px solid rgba(255,255,255,0.05);
}
.yt-main-player iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Video Thumbnail Grid */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}

@media (max-width: 680px) {
  .yt-grid {
    grid-template-columns: 1fr;
  }
}

/* Individual video card */
.yt-card {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}
.yt-card:hover {
  border-color: rgba(27, 78, 245, 0.4);
  transform: translateY(-2px);
}

.yt-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.yt-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.yt-card:hover .yt-card-thumb img {
  opacity: 1;
}

.yt-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  background: rgba(14, 15, 18, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--parchment);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.yt-play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}
.yt-card:hover .yt-play-btn {
  background: linear-gradient(135deg, var(--secondary), var(--purple));
  color: var(--obsidian);
  transform: scale(1.1);
}

.yt-card-label {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-xs);
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.yt-card:hover .yt-card-label {
  color: var(--secondary-light);
}

/* CTA row */
.yt-cta {
  text-align: center;
}

.yt-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay-trigger {
  position: absolute;
  inset: 0;
  background: rgba(14, 15, 18, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  cursor: pointer;
  transition: background var(--transition);
}
.video-overlay-trigger:hover {
  background: rgba(14, 15, 18, 0.25);
}

.video-play-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--purple));
  color: var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(27, 78, 245, 0.6);
  transition: transform 0.3s ease;
}
.video-overlay-trigger:hover .video-play-ring {
  transform: scale(1.12);
}
.video-caption-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--parchment);
  letter-spacing: -0.01em;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.video-modal[hidden] {
  display: none;
}
.video-modal-inner {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  position: relative;
}
.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  color: var(--parchment);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* PERSISTENT BOTTOM MUSIC PLAYER DOCK */
.music-player-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(14, 15, 18, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(249, 248, 243, 0.12);
  padding: var(--space-3) var(--space-6);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.6);
}

.dock-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.dock-track-info {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  min-width: 220px;
}
.dock-thumb {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  object-fit: cover;
  background: var(--surface-2);
}
.dock-text {
  display: flex;
  flex-direction: column;
}
.dock-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--parchment);
  white-space: nowrap;
}
.dock-artist {
  font-size: var(--text-xs);
  color: var(--muted);
}

.dock-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  flex: 1;
  max-width: 520px;
}

.dock-buttons {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.dock-btn {
  background: none;
  border: none;
  color: var(--parchment);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dock-btn:hover {
  color: var(--secondary-light);
}
.dock-btn-play {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--purple));
  color: var(--obsidian);
  font-size: 1rem;
}
.dock-btn-play:hover {
  background: #f1ba55;
  color: var(--obsidian);
  transform: scale(1.05);
}

.dock-progress-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
}
.dock-time {
  font-size: var(--text-xs);
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  width: 35px;
}
.dock-slider {
  flex: 1;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(249,248,243,0.15);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.dock-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--purple));
  cursor: pointer;
}

.dock-extras {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
@media (max-width: 768px) {
  .dock-extras {
    display: none;
  }
}
.dock-volume-slider {
  width: 80px;
  height: 4px;
  accent-color: var(--secondary-light);
}


/* ==========================================================
   MOBILE RESPONSIVENESS OVERRIDES
========================================================== */
@media (max-width: 480px) {
  .btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-xs);
  }
  
  .partner-card {
    padding: var(--space-6) var(--space-5);
  }
  
  .album-body {
    padding: var(--space-4);
  }
  
  .contact-grid,
  .footer-inner {
    gap: var(--space-8);
  }

  .tour-item {
    padding: var(--space-4) var(--space-5);
  }
}

/* Enhance YouTube Subscribe button */
.yt-cta .btn {
  
  padding-block: var(--space-5);
}

@media (max-width: 767px) {
  .yt-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Hero actions styling for mobile */
@media (max-width: 767px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .hero-actions .btn {
    
  }
}

/* Enhance tour item layout on mobile */
@media (max-width: 767px) {
  .tour-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    height: auto;
    border-radius: 8px;
  }
  
  .tour-date-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
  }
  
  .tour-date-day {
    font-size: 1.75rem;
    line-height: 1;
  }
  
  .tour-date-month {
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
  
  .tour-event-title {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
  }
  
  .tour-venue, .tour-location {
    font-size: 0.95rem;
  }
  
  .tour-action {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.music-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 767px) {
  .music-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .music-cta-actions .btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .atfotc-hero-text .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================
   MEET THE TEAM SECTION
========================================================== */
.section-team {
  padding-block: var(--space-20);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-8) var(--space-6);
  transition: transform var(--transition), border-color var(--transition);
}

.team-member:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 78, 245, 0.3);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  color: var(--muted);
  border: 2px solid var(--border);
}

.team-avatar svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.team-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: var(--space-2);
}

.team-role {
  font-size: var(--text-sm);
  color: var(--secondary-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
