:root {
  --gold: #e2af00;
  --gold-hover: #ffd84d;
  --section-green: #001309;
  --panel: rgba(0, 0, 0, 0.85);
  --panel-soft: rgba(0, 0, 0, 0.68);
  --header-height: 129px;
}

html {
  scroll-padding-top: var(--header-height);
}

body {
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--gold-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible {
  box-shadow: none;
  outline: 3px solid rgba(226, 175, 0, 0.45);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

.skip-link {
  background: #fff;
  color: #000;
  left: 1rem;
  padding: 0.5rem 0.75rem;
  position: absolute;
  top: 1rem;
  transform: translateY(-150%);
  transition: transform 160ms ease;
  z-index: 2000;
}

.skip-link:focus {
  transform: translateY(0);
}

#site-header {
  background: #000;
  border-bottom: 1px solid var(--gold);
  padding: 1.65rem 0 1.35rem;
}

#site-header .container {
  padding-left: 0;
  padding-right: 0;
}

.header-wrapper {
  align-items: flex-start;
  gap: 2.5rem;
}

.logo-img {
  display: block;
  height: 80px;
  max-width: 190px;
  object-fit: contain;
  width: auto;
}

.header-right {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  padding-top: 0.1rem;
}

.social-bar {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  line-height: 1;
  min-height: 1.7rem;
}

.social-bar a {
  color: #fff;
  display: inline-block;
  margin-left: 1.25rem;
}

.social-bar a:hover,
.social-bar a:focus {
  color: var(--gold);
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 1rem 1.45rem 0.2rem;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: var(--gold);
}

.hero-section {
  background: url("../images/hero-oursong.webp") center center / cover no-repeat;
  min-height: 600px;
  position: relative;
}

.hero-section::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.12) 60%, rgba(0, 0, 0, 0));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  min-height: 600px;
  position: relative;
  z-index: 1;
}

.hero-content>.row {
  min-height: inherit;
}

.hero-title,
.section-title,
.meet-mags-title,
.news-article h2 {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-title {
  color: #fff;
  font-size: clamp(3.25rem, 4.5vw, 4.8rem);
  margin-bottom: 0.65rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.hero-subtitle {
  color: #fff;
  font-size: clamp(1.35rem, 1.6vw, 1.65rem);
  margin-bottom: 1.5rem;
}

.btn-listen {
  --bs-btn-bg: #40aa40;
  --bs-btn-border-color: #40aa40;
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: #51bf51;
  --bs-btn-hover-border-color: #51bf51;
  --bs-btn-hover-color: #fff;
  border-radius: 8px;
  font-weight: 700;
  padding: 0.75rem 2rem;
}

.btn-primary {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-color: #000;
  --bs-btn-hover-bg: var(--gold-hover);
  --bs-btn-hover-border-color: var(--gold-hover);
  --bs-btn-hover-color: #000;
  --bs-btn-disabled-bg: #8f720f;
  --bs-btn-disabled-border-color: #8f720f;
  --bs-btn-disabled-color: rgba(0, 0, 0, 0.75);
  font-weight: 700;
}

.store-section {
  background: var(--section-green);
}

.section-title,
.meet-mags-title,
.news-article h2 {
  color: #fff;
  font-size: clamp(2.25rem, 3vw, 3rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.album-link {
  color: inherit;
  display: block;
  height: 100%;
}

.album-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.album-link:hover .album-card,
.album-link:focus .album-card {
  transform: translateY(-3px);
}

.album-cover {
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  width: 100%;
}

.album-title {
  color: #fff;
  font-size: 1.15rem;
}

.amazon-badge {
  font-size: 0.9rem;
  min-height: 1.4rem;
}

.video-container {
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid #2a2a2a;
  width: 100%;
}

.video-container iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.parallax-section {
  background: url("../images/violin.webp") center center / cover no-repeat fixed;
  min-height: 420px;
  position: relative;
}

.parallax-overlay {
  background: rgba(0, 0, 0, 0.28);
  inset: 0;
  position: absolute;
}

.meet-mags-section {
  background: var(--section-green);
}

.meet-mags-row {
  min-height: 620px;
}

.meet-mags-text {
  align-items: center;
  background: var(--section-green);
  display: flex;
}

.meet-mags-title {
  margin-bottom: 1.5rem;
}

.meet-mags-bio {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.03rem;
  max-width: 640px;
}

.meet-mags-image {
  min-height: 420px;
}

.bio-image-fill {
  background: url("../images/mags-bio.webp") center center / cover no-repeat;
  height: 100%;
  min-height: 100%;
}

.news-section,
.interior-page main {
  background: #000;
}

.interior {
  background: var(--panel);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.news-section .interior {
  background: transparent;
}

.news-article,
.content-page {
  margin-inline: auto;
  max-width: 980px;
}

.content-page h1,
.content-page h2 {
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.news-article h2 {
  margin-bottom: 1.5rem;
}

.footer-section {
  background: #232323;
  color: #fff;
}

.footer-heading {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.footer-logo {
  display: inline-block;
  height: auto;
  max-width: 160px;
  width: 100%;
}

.footer-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}

.newsletter-signup {
  max-width: 280px;
}

.newsletter-signup[aria-busy="true"] {
  cursor: wait;
}

.newsletter-signup .form-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.newsletter-signup .form-control {
  background: #111;
  border: 1px solid #444;
  border-radius: 4px;
  color: #fff;
  padding: 0.5rem 0.625rem;
}

.newsletter-signup .btn {
  width: 100%;
}

.newsletter-signup__trap {
  height: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.newsletter-signup__message {
  margin-bottom: 1rem;
}

.back-to-top {
  bottom: 1rem;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 1rem;
  transform: translateY(0.5rem);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 1030;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 126px;
  }

  #site-header .container {
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
  }

  .header-wrapper {
    align-items: center;
  }

  .logo-img {
    height: 74px;
    max-width: 176px;
  }

  .social-bar {
    font-size: 1rem;
    max-width: 260px;
  }

  .navbar-dark .navbar-nav .nav-link {
    padding: 0.55rem 0.85rem;
  }

  .hero-section,
  .hero-content {
    min-height: 560px;
  }

  .navbar-collapse {
    background: #000;
    padding-top: 1rem;
    width: 100%;
  }

  .meet-mags-row {
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  :root {
    --header-height: 108px;
  }

  #site-header {
    padding: 1rem 0;
  }

  .header-wrapper {
    gap: 1rem;
  }

  .logo-img {
    height: 58px;
    max-width: 140px;
  }

  .social-bar {
    font-size: 0.9rem;
  }

  .social-bar a {
    margin-left: 0.55rem;
  }

  .hero-section,
  .hero-content {
    min-height: 500px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 14vw, 3.75rem);
  }

  .parallax-section {
    background-attachment: scroll;
    min-height: 320px;
  }
}
