:root {
  --ink: #0b090a;
  --ink-soft: #141013;
  --paper: #f4ead9;
  --muted: #b7aa9b;
  --gold: #f0a41a;
  --gold-bright: #ffc247;
  --magenta: #c92e67;
  --line: rgba(244, 234, 217, 0.18);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--magenta);
  color: #fff;
}

.site-container {
  max-width: 1540px;
  padding-inline: clamp(1.25rem, 4vw, 4.5rem);
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  z-index: 1040;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(11, 9, 10, 0.91);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 92px;
  padding-block: 0;
}

.navbar-brand {
  width: 128px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.navbar-brand img {
  width: 138px;
  height: auto;
  display: block;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  padding: 0.75rem 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  right: 0.9rem;
  bottom: 0.4rem;
  left: 0.9rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link:focus::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  padding: 0.58rem 0.7rem;
  box-shadow: none !important;
}

.btn-social,
.btn-primary-vm,
.btn-ghost-vm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-social {
  padding: 0.72rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}

.btn-social:hover,
.btn-social:focus {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 760px;
  isolation: isolate;
  background: #0d0b0c;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(90deg, rgba(8, 6, 7, 0.98) 0%, rgba(8, 6, 7, 0.86) 31%, rgba(8, 6, 7, 0.24) 66%, rgba(8, 6, 7, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 6, 7, 0.8) 0%, transparent 38%),
    url("../assets/img/hero-band.webp");
  background-position: center, center, 62% center;
  background-size: cover;
  transform: scale(1.025);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content .row {
  min-height: 760px;
  padding-top: 9rem;
  padding-bottom: clamp(2rem, 5vh, 5rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
  color: var(--gold-bright);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 1200px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.25rem, 8.5vw, 8.5rem);
  font-weight: 900;
  line-height: 0.79;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--gold-bright);
  font-style: italic;
  text-shadow: 4px 4px 0 var(--magenta);
}

.hero-lead {
  max-width: 650px;
  margin: 2.1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.btn-primary-vm,
.btn-ghost-vm {
  min-height: 54px;
  padding: 0.82rem 1.35rem;
}

.btn-primary-vm {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.btn-primary-vm:hover,
.btn-primary-vm:focus {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  color: var(--ink);
  transform: translateY(-3px);
}

.btn-ghost-vm {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.btn-ghost-vm:hover,
.btn-ghost-vm:focus {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 3.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.hero-scroll span {
  width: 52px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

section[id] {
  scroll-margin-top: 80px;
}

.signal-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(11, 9, 10, 0.22);
  background: var(--gold);
  color: var(--ink);
}

.signal-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1rem;
  animation: signal-marquee 28s linear infinite;
}

.signal-track span {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-track i {
  width: 8px;
  height: 8px;
  display: block;
  background: var(--magenta);
  transform: rotate(45deg);
}

@keyframes signal-marquee {
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  padding-block: clamp(6rem, 10vw, 10rem);
}

.section-heading {
  margin-bottom: clamp(3rem, 6vw, 5.75rem);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
  color: var(--magenta);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-kicker span {
  min-width: 34px;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid currentColor;
}

.section-heading h2,
.lyrics-section h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 7.5vw, 7.5rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.section-heading h2 em,
.lyrics-section h2 em,
.final-cta h2 em {
  color: var(--magenta);
  font-style: italic;
}

.section-intro {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.75;
}

.section-about {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 4%, rgba(240, 164, 26, 0.17), transparent 26%),
    var(--paper);
  color: var(--ink);
}

.section-about::before {
  content: "MOJO";
  position: absolute;
  top: 2rem;
  right: -0.04em;
  color: rgba(11, 9, 10, 0.035);
  font-family: var(--display);
  font-size: clamp(8rem, 23vw, 25rem);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.about-stage {
  position: relative;
  z-index: 1;
  box-shadow: 0 32px 75px rgba(47, 30, 20, 0.18);
}

.about-figure {
  position: relative;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  background: #2f251e;
}

.about-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.about-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.72, 0, 1);
}

.about-figure:hover img {
  transform: scale(1.025);
}

.about-figure figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.65rem 0.8rem;
  background: rgba(11, 9, 10, 0.82);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 4vw, 4.5rem);
  background: var(--ink-soft);
  color: var(--paper);
}

.about-copy h3 {
  margin: 1.6rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.sound-bars {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sound-bars span {
  width: 4px;
  height: 18px;
  background: var(--gold);
  animation: soundbar 1.2s ease-in-out infinite alternate;
}

.sound-bars span:nth-child(2) { height: 35px; animation-delay: -0.25s; }
.sound-bars span:nth-child(3) { height: 23px; animation-delay: -0.55s; }
.sound-bars span:nth-child(4) { height: 42px; animation-delay: -0.75s; }
.sound-bars span:nth-child(5) { height: 28px; animation-delay: -0.35s; }
.sound-bars span:nth-child(6) { height: 15px; animation-delay: -0.85s; }
.sound-bars span:nth-child(7) { height: 32px; animation-delay: -0.12s; }

@keyframes soundbar {
  from { transform: scaleY(0.42); }
  to { transform: scaleY(1); }
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  color: var(--gold-bright);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, gap 0.2s ease;
}

.text-link:hover,
.text-link:focus {
  gap: 0.85rem;
  color: #fff;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.85rem, 1.7vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 5rem);
}

.member-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.member-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 9, 10, 0.94) 0%, rgba(11, 9, 10, 0.06) 56%);
  pointer-events: none;
}

.member-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
  transition: transform 0.7s cubic-bezier(0.2, 0.72, 0, 1), filter 0.5s ease;
}

.member-card:nth-child(2) img {
  object-position: center 38%;
}

.member-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.member-card-content {
  position: absolute;
  right: 1.5rem;
  bottom: 1.3rem;
  left: 1.5rem;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--paper);
}

.member-card-content h3 span {
  display: block;
  margin-top: 0.7rem;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
}

.member-card-content h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.25rem, 4vw, 4.3rem);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
}

.section-news {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 52px 52px;
}

.section-news .section-heading h2 em,
.lyrics-section h2 em {
  color: var(--gold-bright);
}

.section-news .section-intro {
  color: var(--muted);
}

.news-visual {
  position: relative;
  height: 100%;
  min-height: 620px;
  overflow: hidden;
}

.news-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 9, 10, 0.75), transparent 58%);
  pointer-events: none;
}

.news-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.06);
  transition: transform 0.8s cubic-bezier(0.2, 0.72, 0, 1);
}

.news-visual:hover img {
  transform: scale(1.035);
}

.news-visual-label {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  padding-top: 1rem;
}

.news-visual-label span {
  color: var(--gold-bright);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-visual-label strong {
  font-family: var(--display);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.news-list {
  height: 100%;
  border-top: 1px solid var(--line);
}

.news-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(140px, 0.75fr) minmax(0, 2fr) 80px;
  gap: clamp(1rem, 2.4vw, 2.25rem);
  min-height: 190px;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s ease, background-color 0.3s ease;
}

.news-item:hover {
  padding-left: 1rem;
  background: rgba(255, 255, 255, 0.025);
}

.news-meta {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-meta span:last-child {
  color: var(--muted);
}

.news-body h3 {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.news-body p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.news-number {
  color: rgba(255, 255, 255, 0.095);
  font-family: var(--display);
  font-size: 3.9rem;
  font-weight: 900;
  line-height: 1;
  text-align: right;
}

.news-follow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3.75rem);
  padding: 1.5rem 0;
  border-block: 1px solid var(--line);
}

.news-follow p {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-follow p i {
  margin-right: 0.45rem;
  color: var(--magenta);
}

.news-follow .text-link {
  margin-top: 0;
}

.lyrics-section {
  position: relative;
  isolation: isolate;
  padding-block: clamp(7rem, 12vw, 12rem);
  overflow: hidden;
  background-image: url("../assets/img/guitar-detail.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.lyrics-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 9, 10, 0.97) 0%, rgba(11, 9, 10, 0.85) 52%, rgba(11, 9, 10, 0.53) 100%),
    linear-gradient(0deg, rgba(11, 9, 10, 0.8), transparent 50%);
}

.section-kicker-light {
  color: var(--gold-bright);
}

.lyrics-section h2 {
  max-width: 930px;
}

.lyrics-section p {
  max-width: 660px;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.12rem;
  line-height: 1.75;
}

.lyrics-card {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  padding: clamp(2rem, 5vw, 4.25rem);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 18px 20px 0 rgba(201, 46, 103, 0.78);
  transform: rotate(1.5deg);
}

.lyrics-status {
  display: inline-block;
  padding: 0.4rem 0.65rem;
  background: var(--ink);
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lyrics-quote {
  position: absolute;
  top: 1rem;
  right: 1.75rem;
  color: rgba(201, 46, 103, 0.2);
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
}

.lyrics-card h3 {
  position: relative;
  margin: 3rem 0 2.5rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.lyrics-lines {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.lyrics-lines span {
  width: 100%;
  height: 1px;
  background: rgba(11, 9, 10, 0.22);
}

.lyrics-lines span:last-child {
  width: 67%;
}

.lyrics-card small {
  color: rgba(11, 9, 10, 0.58);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-live {
  background: radial-gradient(ellipse at top left, rgba(201, 46, 103, 0.15), transparent 65%), var(--ink-soft);
}

.section-live h2 em {
  color: var(--gold-bright);
}

.live-copy > p + p {
  margin-top: 1.5rem;
  color: var(--muted);
  line-height: 1.75;
}

.live-copy .btn {
  margin-top: 0.75rem;
}

.final-cta {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.38fr 1.5fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  padding: clamp(2.5rem, 5vw, 5rem);
  background: var(--ink-soft);
  color: var(--paper);
  box-shadow: 16px 16px 0 var(--gold);
}

.final-cta-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 110px solid var(--magenta);
  border-left: 110px solid transparent;
}

.final-mark {
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 900;
  line-height: 0.7;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.final-cta h2 em {
  color: var(--gold-bright);
}

.final-cta .eyebrow {
  margin-bottom: 1.35rem;
}

.final-cta-action {
  position: relative;
  z-index: 1;
}

.final-cta-action p {
  margin-bottom: 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-email {
  display: block;
  width: fit-content;
  margin-bottom: 1.5rem;
  color: var(--gold-bright);
  font-weight: 700;
  text-underline-offset: 0.3em;
  overflow-wrap: anywhere;
}

.contact-email:hover,
.contact-email:focus {
  color: #fff;
}

.floating-social {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1030;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(11, 9, 10, 0.9);
  color: #fff;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.25s ease, color 0.25s ease;
  backdrop-filter: blur(15px);
}

.floating-social.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-social i {
  color: var(--gold-bright);
  font-size: 1.15rem;
}

.floating-social:hover,
.floating-social:focus {
  background: var(--gold);
  color: var(--ink);
}

.floating-social:hover i,
.floating-social:focus i {
  color: var(--ink);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #080607;
  color: var(--paper);
}

.footer-main {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.footer-brand {
  width: 190px;
  height: 115px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.footer-brand img {
  width: 210px;
  height: auto;
}

.footer-main p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.footer-main h2 {
  margin-bottom: 1.15rem;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-main ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-main li + li {
  margin-top: 0.55rem;
}

.footer-main li a,
.footer-social,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-main li a:hover,
.footer-main li a:focus,
.footer-social:hover,
.footer-social:focus,
.footer-bottom a:hover,
.footer-bottom a:focus {
  color: var(--gold-bright);
}

.footer-social-wrap {
  text-align: right;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-social .bi-facebook {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 80px;
  }

  .navbar-brand {
    width: 110px;
    height: 65px;
  }

  .navbar-brand img {
    width: 123px;
  }

  .navbar-collapse {
    margin-inline: calc(clamp(1.25rem, 4vw, 4.5rem) * -1);
    padding: 1.5rem clamp(1.25rem, 4vw, 4.5rem) 1.75rem;
    background: rgba(11, 9, 10, 0.98);
    border-top: 1px solid var(--line);
  }

  .navbar-dark .navbar-nav .nav-link {
    padding: 0.75rem 0;
    font-size: 1.25rem;
  }

  .navbar-dark .navbar-nav .nav-link::after {
    right: auto;
    left: 0;
    bottom: 0.45rem;
    width: 34px;
  }

  .btn-social {
    width: 100%;
    margin-top: 1rem;
  }

  .hero-image {
    background-image:
      linear-gradient(0deg, rgba(8, 6, 7, 0.98) 0%, rgba(8, 6, 7, 0.78) 49%, rgba(8, 6, 7, 0.12) 82%),
      url("../assets/img/hero-band.webp");
    background-position: center, 52% center;
  }

  .hero h1 {
    font-size: clamp(4rem, 15vw, 7.3rem);
  }

  .hero-lead {
    max-width: 560px;
  }

  .hero-scroll {
    display: none;
  }

  .about-figure {
    min-height: 460px;
  }

  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .member-card:last-child {
    grid-column: 1 / -1;
  }

  .member-card {
    min-height: 430px;
  }

  .member-card:last-child {
    min-height: 500px;
  }

  .news-visual {
    min-height: 520px;
  }

  .lyrics-section {
    background-attachment: scroll;
  }

  .lyrics-card {
    margin-inline: 0;
  }

  .final-cta-inner {
    grid-template-columns: 0.2fr 1fr;
  }

  .final-cta-action {
    grid-column: 2;
  }
}

@media (max-width: 575.98px) {
  .hero,
  .hero-content .row {
    min-height: 700px;
  }

  .hero-content .row {
    align-items: end !important;
    padding-top: 9rem;
    padding-bottom: 2rem;
  }

  .hero-image {
    background-size: cover, 100% auto;
    background-repeat: no-repeat;
    background-position: center top, 51% 4.75rem;
  }

  .eyebrow {
    margin-bottom: 0.9rem;
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 17vw, 5.5rem);
    line-height: 0.82;
  }

  .hero-lead {
    margin-top: 1.35rem;
    font-size: 0.93rem;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 1.4rem;
  }

  .btn-primary-vm,
  .btn-ghost-vm {
    flex: 1 1 100%;
  }

  .signal-track {
    gap: 1rem;
    padding-block: 0.75rem;
  }

  .signal-track span {
    font-size: 1rem;
  }

  .section {
    padding-block: 5.5rem;
  }

  .section-heading h2,
  .lyrics-section h2,
  .final-cta h2 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .section-intro,
  .lyrics-section p {
    font-size: 1rem;
  }

  .about-figure {
    min-height: 330px;
  }

  .about-copy {
    padding: 2rem 1.4rem;
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .member-card,
  .member-card:last-child {
    min-height: 370px;
    grid-column: auto;
  }

  .member-card:nth-child(2) {
    min-height: 470px;
  }

  .news-visual {
    min-height: 390px;
  }

  .news-visual-label {
    align-items: start;
    flex-direction: column;
  }

  .news-item {
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
  }

  .news-meta {
    grid-column: 1;
  }

  .news-body {
    grid-column: 1 / -1;
  }

  .news-number {
    grid-column: 2;
    grid-row: 1;
    font-size: 2.9rem;
  }

  .news-follow {
    align-items: flex-start;
    flex-direction: column;
  }

  .lyrics-section {
    padding-block: 6.5rem;
  }

  .lyrics-card {
    margin-right: 8px;
    padding: 2rem 1.5rem;
    box-shadow: 9px 10px 0 rgba(201, 46, 103, 0.78);
  }

  .lyrics-card h3 {
    margin-top: 2.5rem;
  }

  .final-cta {
    padding-inline: 0.5rem;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    padding: 2.25rem 1.4rem;
    box-shadow: 8px 8px 0 var(--gold);
  }

  .final-mark {
    display: none;
  }

  .final-cta-action {
    grid-column: auto;
  }

  .final-cta-action .btn {
    width: 100%;
  }

  .floating-social {
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.8rem;
  }

  .floating-social span {
    display: none;
  }

  .floating-social i {
    font-size: 1.3rem;
  }

  .footer-social-wrap {
    text-align: left;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .signal-track {
    animation: none;
  }
}
