:root {
  --ink: #050a08;
  --ink-soft: #07120f;
  --emerald: #0e3328;
  --emerald-light: #1c4b3d;
  --gold: #c89a42;
  --gold-light: #edcb7c;
  --cream: #f5e7c4;
  --cream-muted: #cfc2a4;
  --burgundy: #8c2031;
  --line: rgba(200, 154, 66, 0.32);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Josefin Sans", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  content: "";
  opacity: 0.04;
  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='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 11000;
  padding: 0.6rem 1rem;
  background: var(--cream);
  color: var(--ink);
  transition: top 0.2s ease;
}

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

.navbar {
  min-height: 5rem;
  padding-block: 1rem;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(5, 10, 8, 0.92), rgba(5, 10, 8, 0.55), transparent);
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}

.navbar.scrolled {
  padding-block: 0.7rem;
  border-bottom-color: var(--line);
  background: rgba(5, 10, 8, 0.96);
  backdrop-filter: blur(12px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--gold-light);
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  background: var(--cream);
  content: "";
  transform-origin: bottom center;
}

.brand-mark::before {
  height: 0.48rem;
  transform: translate(-50%, -100%) rotate(-35deg);
}

.brand-mark::after {
  height: 0.36rem;
  transform: translate(-50%, -100%) rotate(48deg);
}

.nav-link {
  color: var(--cream-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--gold-light) !important;
}

.navbar-toggler {
  border-color: var(--line);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(237, 203, 124, 0.25);
}

.btn {
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.btn-lg {
  padding: 0.95rem 1.6rem;
}

.btn-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

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

.btn-outline-cream {
  border-color: rgba(245, 231, 196, 0.7);
  background: transparent;
  color: var(--cream);
}

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

.hero {
  min-height: 100svh;
  padding: 8rem 0 7rem;
  background:
    radial-gradient(circle at 50% 25%, rgba(28, 75, 61, 0.72), transparent 34%),
    linear-gradient(145deg, #030604 0%, var(--ink-soft) 55%, #13090b 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  left: 50%;
  width: min(92vw, 86rem);
  height: min(92vw, 86rem);
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.hero::before {
  top: 8%;
}

.hero::after {
  top: 15%;
  width: min(76vw, 70rem);
  height: min(76vw, 70rem);
  border-color: rgba(200, 154, 66, 0.14);
}

.hero-rays {
  position: absolute;
  inset: 10% 0 auto 50%;
  width: min(95vw, 75rem);
  height: 30rem;
  opacity: 0.17;
  background: repeating-conic-gradient(from 246deg at 50% 100%, var(--gold) 0 0.55deg, transparent 0.55deg 7deg);
  clip-path: polygon(0 0, 100% 0, 62% 100%, 38% 100%);
  transform: translateX(-50%);
}

.hero-content {
  z-index: 2;
}

.eyebrow {
  margin-bottom: 1.2rem;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-logo {
  display: block;
  width: min(100%, 66rem);
  margin: 0 auto;
  filter: drop-shadow(0 1.5rem 2rem rgba(0, 0, 0, 0.42));
}

.hero-lead {
  max-width: 48rem;
  color: #e4d7b9;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.35;
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  z-index: 3;
  width: 1px;
  height: 3rem;
  overflow: hidden;
  background: rgba(245, 231, 196, 0.18);
}

.scroll-cue span {
  display: block;
  width: 100%;
  height: 45%;
  background: var(--gold-light);
  animation: cue 2s ease-in-out infinite;
}

@keyframes cue {
  0% { transform: translateY(-110%); }
  55%, 100% { transform: translateY(230%); }
}

.identity-strip {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--line);
  background: #0b1813;
}

.identity-item {
  padding: 1.45rem 1rem;
}

.identity-item + .identity-item {
  border-top: 1px solid var(--line);
}

.identity-kicker {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.identity-item strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.section-padding {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

h2 em {
  color: var(--gold-light);
  font-weight: 500;
}

.lead,
.section-intro {
  color: #e1d4b7;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.55;
}

.sound-section {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(200, 154, 66, 0.07) 50%, transparent 50.1%),
    var(--ink);
}

.deco-panel {
  position: relative;
  padding: clamp(1.7rem, 4vw, 3.2rem);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(14, 51, 40, 0.55), rgba(14, 51, 40, 0.09));
}

.deco-panel::before,
.deco-panel::after {
  position: absolute;
  width: 2rem;
  height: 2rem;
  border-color: var(--gold);
  content: "";
}

.deco-panel::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid;
  border-left: 3px solid;
}

.deco-panel::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid;
  border-bottom: 3px solid;
}

.event-card {
  position: relative;
  padding: 2rem 1.5rem 1.7rem;
  border-top: 1px solid var(--gold);
  background: linear-gradient(180deg, rgba(14, 51, 40, 0.25), transparent);
}

.event-card h3,
.musician-card h3 {
  margin: 0.7rem 0 0.8rem;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 700;
}

.event-card p,
.musician-card p {
  margin-bottom: 0;
  color: var(--cream-muted);
  line-height: 1.65;
}

.card-number {
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.band-section {
  border-block: 1px solid rgba(200, 154, 66, 0.19);
  background:
    radial-gradient(circle at 80% 20%, rgba(140, 32, 49, 0.17), transparent 28%),
    linear-gradient(160deg, #0b211a, #06100d 65%);
}

.deco-orbit {
  position: absolute;
  border: 1px solid rgba(200, 154, 66, 0.12);
  border-radius: 50%;
}

.deco-orbit-one {
  top: -25rem;
  right: -22rem;
  width: 50rem;
  height: 50rem;
}

.deco-orbit-two {
  right: -9rem;
  bottom: -18rem;
  width: 34rem;
  height: 34rem;
}

.musician-card {
  position: relative;
  min-height: 26rem;
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(4, 12, 9, 0.58);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.musician-card:hover {
  border-color: rgba(237, 203, 124, 0.62);
  background: rgba(7, 25, 19, 0.82);
  transform: translateY(-0.4rem);
}

.instrument-monogram {
  display: grid;
  width: 6.2rem;
  height: 6.2rem;
  margin-bottom: 2.4rem;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 3.2rem;
  line-height: 1;
}

.member-role {
  color: var(--gold) !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.member-bio {
  max-width: 38rem;
}

.member-link {
  display: inline-block;
  margin-top: 1.35rem;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration-color: rgba(237, 203, 124, 0.45);
  text-underline-offset: 0.3rem;
  text-transform: uppercase;
}

.member-link:hover,
.member-link:focus {
  color: var(--cream);
  text-decoration-color: var(--cream);
}

.repertoire-section {
  background:
    linear-gradient(rgba(5, 10, 8, 0.95), rgba(5, 10, 8, 0.95)),
    repeating-linear-gradient(45deg, var(--gold) 0 1px, transparent 1px 12px);
}

.repertoire-frame {
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.repertoire-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.8rem 1rem;
  align-items: center;
  padding: 1.35rem 0.8rem;
  border-bottom: 1px solid var(--line);
}

.repertoire-row:last-child {
  border-bottom: 0;
}

.repertoire-row span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.repertoire-row strong {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
}

.repertoire-row small {
  color: var(--cream-muted);
  font-size: 0.82rem;
}

.booking-section {
  padding: clamp(6.5rem, 12vw, 10rem) 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(7, 18, 15, 0.75), rgba(7, 18, 15, 0.97)),
    radial-gradient(circle at 50% 85%, var(--burgundy), transparent 48%);
}

.booking-fan {
  position: absolute;
  bottom: -12rem;
  left: 50%;
  width: min(130vw, 82rem);
  height: 42rem;
  opacity: 0.16;
  background: repeating-conic-gradient(from 247deg at 50% 100%, var(--gold) 0 0.7deg, transparent 0.7deg 6.5deg);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 40% 100%);
  transform: translateX(-50%);
}

.booking-copy {
  max-width: 48rem;
  margin-top: 2rem;
  color: var(--cream-muted);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
}

.booking-card {
  max-width: 38rem;
  margin-top: 2.5rem;
  padding: 1.4rem 1.8rem;
  border: 1px solid var(--gold);
  background: rgba(5, 10, 8, 0.78);
}

.booking-card p {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-card strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 600;
}

.booking-email {
  color: var(--cream);
  text-decoration-color: rgba(237, 203, 124, 0.65);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}

.booking-email:hover,
.booking-email:focus {
  color: var(--gold-light);
}

.booking-button {
  margin-top: 1.4rem;
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  background: #030604;
  color: #9f967f;
  font-size: 0.82rem;
}

.footer-brand {
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(1.3rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 768px) {
  .identity-item + .identity-item {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .repertoire-row {
    grid-template-columns: 2.5rem 1.1fr 1fr;
    gap: 1.2rem;
  }

  .repertoire-row span {
    grid-row: auto;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.8rem;
    padding: 1rem;
    border: 1px solid var(--line);
    background: rgba(5, 10, 8, 0.98);
  }

  .navbar .btn {
    display: inline-block;
    margin-top: 0.55rem;
  }

  .hero {
    min-height: 55rem;
  }

  .hero-logo {
    margin-block: 1rem;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.08rem;
  }

  .hero {
    min-height: 49rem;
    padding-top: 7.5rem;
  }

  .hero::before,
  .hero::after {
    width: 42rem;
    height: 42rem;
  }

  .hero-logo {
    width: 118%;
    max-width: none;
    margin-left: -9%;
  }

  .event-card {
    padding-inline: 0;
  }

  .musician-card {
    min-height: 0;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
