/* ============================================
   THE QUADRIVIUM ORDER — Design System
   Unified visual language across all pages
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  /* Core palette */
  --bg-primary: #0a0a0c;
  --bg-secondary: #111114;
  --bg-tertiary: #18181c;
  --bg-card: #13131700;
  --bg-card-hover: #1a1a1f;
  --bg-elevated: #1e1e24;
  
  /* Text */
  --text-primary: #e8e6e1;
  --text-secondary: #a09d94;
  --text-tertiary: #6b6860;
  --text-muted: #4a4843;
  
  /* Accent */
  --gold: #b8960c;
  --gold-light: #d4af37;
  --gold-dim: #8a7209;
  --gold-glow: rgba(184, 150, 12, 0.15);
  
  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(184, 150, 12, 0.25);
  
  /* Spacing */
  --section-gap: 8rem;
  --content-max: 1100px;
  --content-narrow: 780px;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  
  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-serif: 'Libre Baskerville', serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

a { color: var(--gold-light); text-decoration: none; transition: color 0.3s var(--ease-out); }
a:hover { color: var(--text-primary); }

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

/* --- Grain Overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease-out);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.9rem 2.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-brand-mark {
  width: 48px;
  height: 48px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-out);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after { width: 100%; }

/* Shop CTA — distinct from other nav links */
.nav-links a.nav-shop {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  letter-spacing: 0.18em;
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.nav-links a.nav-shop::after { display: none; }
.nav-links a.nav-shop:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 151, 62, 0.06);
}
.nav-links a.nav-shop[aria-disabled="true"] {
  cursor: default;
  opacity: 0.85;
}
.nav-links a.nav-shop[aria-disabled="true"]:hover {
  border-color: var(--gold-dim);
  color: var(--gold-light);
  background: transparent;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-secondary);
  transition: all 0.3s var(--ease-out);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2.5rem auto;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}

.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section-gap) 2rem;
  position: relative;
}

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

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

.section-header {
  margin-bottom: 4rem;
}

.section-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.section-lead {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  max-width: 600px;
  line-height: 1.8;
}

/* ============================================
   CARDS
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.card:hover::before { opacity: 1; }

.card-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   ENTITY CARDS (Structure page)
   ============================================ */
.entity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

.entity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  transition: all 0.4s var(--ease-out);
}

.entity-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.entity-flag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.entity-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.entity-location {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
}

.entity-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.entity-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.entity-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.entity-meta-label { color: var(--text-tertiary); }
.entity-meta-value { color: var(--text-secondary); }

/* ============================================
   QUOTES / SCRIPTURE
   ============================================ */
.quote-block {
  border-left: 2px solid var(--gold-dim);
  padding: 2rem 2.5rem;
  margin: 3rem 0;
  background: linear-gradient(135deg, var(--gold-glow), transparent);
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.8;
}

.quote-source {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-top: 1rem;
  display: block;
}

/* ============================================
   FLOW / TIMELINE
   ============================================ */
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.flow-list::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-dim), var(--border-subtle), transparent);
}

.flow-item {
  display: flex;
  gap: 2rem;
  padding: 1.75rem 0;
  position: relative;
}

.flow-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg-primary);
  z-index: 1;
}

.flow-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.flow-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   DISSOLUTION / ACCENT BLOCKS
   ============================================ */
.dissolution-block {
  border: 1px solid var(--border-gold);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(184, 150, 12, 0.04), transparent);
}

.dissolution-block::before,
.dissolution-block::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
}

.dissolution-block::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.dissolution-block::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

.dissolution-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
}

.dissolution-source {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-top: 1.5rem;
  display: block;
}

/* ============================================
   BLOCKCHAIN PAGE — Specific
   ============================================ */
.tier-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.tier-block {
  padding: 1.5rem 2rem;
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.tier-block:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.tier-block + .tier-block { border-top: none; }

.tier-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 0.25rem;
}

.tier-connector {
  width: 1px;
  height: 24px;
  background: var(--gold-dim);
  margin: 0 auto;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--border-subtle);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-light);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-tertiary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-tertiary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s var(--ease-out);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold-dim);
}

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

.form-submit {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--gold);
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.form-submit:hover {
  background: var(--gold-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-motto {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-tertiary);
}

.footer-legal {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ============================================
   MUSIC PAGES
   ============================================ */
.music-hero {
  min-height: 70vh;
}

.placeholder-notice {
  border: 1px dashed var(--border-medium);
  padding: 3rem;
  text-align: center;
  margin: 2rem 0;
}

.placeholder-notice p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-tertiary);
  font-size: 0.95rem;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  :root {
    --section-gap: 5rem;
  }
  
  .nav-links { 
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 12, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  
  .nav-links.open { display: flex; }
  
  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }
  
  .nav-toggle { display: flex; z-index: 1001; }
  
  .card-grid,
  .entity-grid {
    grid-template-columns: 1fr;
  }
  
  .hero { padding: 5rem 1.5rem 3rem; }
  .section { padding: var(--section-gap) 1.5rem; }
  
  .quote-block { padding: 1.5rem; }
  .dissolution-block { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .nav { padding: 1rem 1.25rem; }
  .nav-brand-mark { width: 40px; height: 40px; }
  .nav-brand-text { font-size: 0.7rem; letter-spacing: 0.1em; }
}

@media (max-width: 360px) {
  .nav-brand-text { display: none; }
}

/* ============================================
   LABEL & ARTIST PAGES — BYT and Godwin
   ============================================ */

/* Image-backed hero — shared base */
.label-hero, .godwin-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.label-hero-image, .godwin-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark gradient overlay so type stays legible */
.label-hero-image::after, .godwin-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,12,0.35) 0%,
    rgba(10,10,12,0.55) 40%,
    rgba(10,10,12,0.92) 100%);
}

.label-hero-content, .godwin-hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 900px;
}

/* Roster card — BYT page */
.roster-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  text-decoration: none;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  overflow: hidden;
}

.roster-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}

.roster-card-image {
  background-size: cover;
  background-position: center;
  min-height: 280px;
}

.roster-card-content {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roster-card-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.roster-card-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.roster-card-meta {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-tertiary);
  margin: 0 0 1.25rem;
}

.roster-card-cta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  align-self: flex-start;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.25rem;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.roster-card:hover .roster-card-cta {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (max-width: 640px) {
  .roster-card { grid-template-columns: 1fr; }
  .roster-card-image { min-height: 220px; }
  .roster-card-content { padding: 1.75rem 1.5rem; }
  .roster-card-name { font-size: 1.6rem; }
}

/* Album showcase — Godwin page */
.album-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.album-art-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border-subtle);
  background: #000;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
}

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

.album-info {
  padding: 1rem 0;
}

.album-meta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.album-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin: 0 0 0.4rem;
}

.album-artist {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  margin: 0 0 1.5rem;
}

.album-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 720px) {
  .album-showcase { grid-template-columns: 1fr; gap: 2rem; }
  .album-art-wrap { max-width: 380px; margin: 0 auto; }
  .album-info { text-align: center; }
  .album-meta { display: inline-block; }
  .album-title { font-size: 1.7rem; }
}

/* Streaming platform link grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border-subtle);
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle);
}

.platform-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: var(--bg-primary);
  text-decoration: none;
  transition: background 0.3s var(--ease-out);
}

.platform-link:hover {
  background: var(--bg-surface);
}

.platform-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease-out);
}

.platform-arrow {
  font-family: var(--font-mono);
  color: var(--gold-dim);
  font-size: 1rem;
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.platform-link:hover .platform-name { color: var(--text-primary); }
.platform-link:hover .platform-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

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