/* ==========================================================================
   BASHAN MURCHISON — THE MUSIC PLUG [MEGA EDITION]
   Bespoke Author Website Style System
   Independent Design Direction: Urban Music Industry Resource & Directory
   ========================================================================== */

:root {
  /* Core Palette */
  --bg-dark: #090a0d;
  --bg-surface: #12141a;
  --bg-surface-card: #161920;
  --bg-surface-elevated: #1d212b;

  /* Borders & Rules */
  --border-subtle: #232733;
  --border-medium: #2e3444;
  --border-gold: rgba(229, 169, 59, 0.4);
  --border-gold-glow: rgba(229, 169, 59, 0.8);

  /* Brand Accents */
  --gold-primary: #e5a93b;
  --gold-hover: #f3be58;
  --gold-muted: rgba(229, 169, 59, 0.12);
  --gold-gradient: linear-gradient(135deg, #f5c873 0%, #e5a93b 50%, #b87a1a 100%);

  /* Typography Colors */
  --text-primary: #f4f4f7;
  --text-secondary: #a2a8ba;
  --text-muted: #6b7285;
  --text-inverse: #090a0d;

  /* Typography Families */
  --font-display: 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout & Spacing */
  --container-max: 1240px;
  --container-pad: 1.5rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 480px) {
  :root {
    --container-pad: 1rem;
  }
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5, h6, p, span, a, td, th, li {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

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

ul {
  list-style: none;
}

code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background-color: rgba(255, 255, 255, 0.07);
  padding: 0.15em 0.4em;
  border-radius: var(--radius-sm);
  color: var(--gold-primary);
  word-break: break-all;
}

/* Accessibility Focus States */
:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   LAYOUT CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY ELEMENTS
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 3.5rem;
  max-width: 780px;
}

.section-header-compact {
  margin-bottom: 2.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.section-intro {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: normal;
  word-break: normal;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--text-inverse);
  box-shadow: 0 4px 16px rgba(229, 169, 59, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f9d48b 0%, #f3be58 50%, #c9881e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 169, 59, 0.4);
}

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

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background-color: var(--gold-muted);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1.1rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   SITE HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(9, 10, 13, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  height: 72px;
  width: 100%;
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-primary);
  line-height: 1;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.2;
  white-space: nowrap;
}

.brand-tm {
  font-size: 0.6em;
  vertical-align: super;
  color: var(--gold-primary);
}

.site-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  padding: 0.4rem 0;
  position: relative;
}

.nav-link:hover {
  color: var(--gold-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition-fast);
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-medium);
    padding: 1.5rem var(--container-pad);
    display: none;
  }

  .site-nav.is-active {
    display: block;
  }

  .site-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .site-header {
    height: 64px;
  }

  .site-nav {
    top: 64px;
  }

  .brand-sub {
    font-size: 0.56rem;
  }

  .brand-title {
    font-size: 0.96rem;
  }

  .header-actions .btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 360px) {
  .header-actions .btn {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
  border-bottom: 1px solid var(--border-subtle);
  background: radial-gradient(circle at 80% 20%, rgba(229, 169, 59, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(25, 30, 45, 0.3) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.tag-badge {
  background: var(--gold-gradient);
  color: var(--text-inverse);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.tag-label {
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 2vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
  line-height: 1.35;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7.5vw, 5.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  word-break: break-word;
}

.highlight-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tm {
  font-size: 0.35em;
  vertical-align: super;
  color: var(--gold-primary);
  -webkit-text-fill-color: var(--gold-primary);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
  max-width: 620px;
}

.hero-meta-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  max-width: 580px;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.1;
}

.meta-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-divider {
  width: 1px;
  height: 28px;
  background-color: var(--border-medium);
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.affiliate-inline-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Hero Book Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.book-cover-frame {
  position: relative;
  max-width: 380px;
  width: 100%;
  border-radius: 4px;
  box-shadow: -15px 25px 45px rgba(0, 0, 0, 0.85),
              0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform var(--transition-base);
}

.book-cover-frame:hover {
  transform: translateY(-6px);
}

.book-spine-accent {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-book-cover {
  width: 100%;
  height: auto;
  display: block;
}

.cover-badge {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 380px;
  padding: 0.5rem 0.75rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
}

.badge-accent {
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
}

.badge-isbn {
  font-family: var(--font-mono);
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    order: -1;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }

  .cover-badge {
    max-width: 280px;
  }
}

@media (max-width: 600px) {
  .hero-meta-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    max-width: 100%;
  }

  .meta-divider {
    display: none;
  }

  .meta-item {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .cover-badge {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   MISSION SECTION
   -------------------------------------------------------------------------- */
.section-mission {
  background-color: var(--bg-surface);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.mission-card-lead {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 2.2rem;
}

.lead-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

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

.mission-text em {
  color: var(--gold-primary);
  font-style: normal;
  font-weight: 600;
}

.mission-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.point-box {
  display: flex;
  gap: 1.5rem;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: border-color var(--transition-fast);
}

.point-box:hover {
  border-color: var(--border-gold);
}

.point-index {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  padding-top: 0.2rem;
  flex-shrink: 0;
}

.point-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.point-body p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .mission-card-lead {
    padding: 1.4rem 1.1rem;
  }

  .point-box {
    padding: 1.1rem 1rem;
    gap: 1rem;
  }
}

/* --------------------------------------------------------------------------
   DIRECTORY SECTION
   -------------------------------------------------------------------------- */
.directory-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.dir-card {
  background-color: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  min-width: 0;
}

.dir-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.dir-card-header {
  margin-bottom: 1rem;
}

.dir-cat-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.dir-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

.dir-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.dir-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.dir-tag-list li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.directory-banner {
  background: linear-gradient(135deg, var(--bg-surface-elevated) 0%, var(--bg-surface) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.banner-text h4 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.banner-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

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

@media (max-width: 768px) {
  .directory-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .dir-card {
    padding: 1.4rem 1.2rem;
  }

  .directory-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.2rem;
    gap: 1.25rem;
  }

  .directory-banner .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   ABOUT SECTION
   -------------------------------------------------------------------------- */
.section-about {
  background-color: var(--bg-surface);
}

.about-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4.5rem;
  align-items: flex-start;
}

.portrait-frame {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 96px;
  width: 100%;
  max-width: 360px;
}

.about-portrait {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-sm);
  display: block;
  filter: contrast(1.04);
}

.portrait-caption {
  padding-top: 1rem;
  padding-bottom: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: 0.75rem;
}

.caption-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gold-primary);
}

.caption-title {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.bio-prose {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.bio-prose p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.4rem;
}

.bio-prose strong {
  color: var(--text-primary);
}

.publisher-plug {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
}

.pub-badge {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pub-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
}

.pub-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
}

.pub-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .portrait-frame {
    position: static;
    max-width: 290px;
    margin: 0 auto;
  }

  .about-portrait {
    height: 360px;
  }
}

@media (max-width: 480px) {
  .publisher-plug {
    padding: 1.1rem;
  }
}

/* --------------------------------------------------------------------------
   SPECS SECTION
   -------------------------------------------------------------------------- */
.specs-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.specs-table-container {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.specs-table th,
.specs-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table th {
  color: var(--text-secondary);
  font-weight: 600;
  width: 32%;
  background-color: rgba(255, 255, 255, 0.02);
}

.specs-table td {
  color: var(--text-primary);
}

.table-link {
  color: var(--gold-primary);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.table-link:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}

.specs-covers-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.cover-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.cover-card-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.specs-thumb {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 900px) {
  .specs-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .specs-table,
  .specs-table tbody,
  .specs-table tr,
  .specs-table th,
  .specs-table td {
    display: block;
    width: 100%;
  }

  .specs-table th {
    padding: 0.85rem 1rem 0.2rem;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-primary);
    border-bottom: none;
  }

  .specs-table td {
    padding: 0.2rem 1rem 0.85rem;
    font-size: 0.92rem;
    word-break: break-word;
    border-bottom: 1px solid var(--border-subtle);
  }
}

@media (max-width: 520px) {
  .specs-covers-side {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin: 0 auto;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   CTA SECTION
   -------------------------------------------------------------------------- */
.section-cta {
  background: radial-gradient(circle at center, rgba(229, 169, 59, 0.08) 0%, transparent 70%),
              var(--bg-dark);
  text-align: center;
}

.cta-box {
  max-width: 780px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.cta-text {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.facility-notice {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.facility-notice span {
  color: var(--gold-primary);
  font-weight: 600;
}

@media (max-width: 480px) {
  .cta-buttons {
    width: 100%;
  }
  .cta-buttons .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #060708;
  border-top: 1px solid var(--border-subtle);
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
  width: 100%;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 380px;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

.footer-order-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.footer-buy-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-primary);
  transition: color var(--transition-fast);
}

.footer-buy-link:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.affiliate-disclosure {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

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

.creator-credit {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.creator-credit a {
  color: var(--text-secondary);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.creator-credit a:hover {
  color: var(--gold-primary);
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .creator-credit {
    white-space: normal;
  }
}

/* --------------------------------------------------------------------------
   PREFERS-REDUCED-MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
