:root {
  --ink: #3e2d22;
  --paper: #f6efdf;
  --paper-deep: #eadfc8;
  --gold: #b8893f;
  --burgundy: #6c2c33;
  --moss: #4f634e;
  --surface: rgba(255, 248, 236, 0.76);
  --surface-strong: rgba(255, 245, 229, 0.9);
  --shadow: 0 14px 30px rgba(41, 23, 10, 0.14);
  --shadow-soft: 0 18px 36px rgba(41, 23, 10, 0.1);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only::before,
.sr-only::after {
  display: none !important;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.6;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  background: #fcf4e5;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 16%, rgba(184, 137, 63, 0.27), transparent 46%),
    radial-gradient(circle at 86% 20%, rgba(108, 44, 51, 0.18), transparent 44%),
    radial-gradient(circle at 52% 82%, rgba(184, 137, 63, 0.15), transparent 47%),
    linear-gradient(125deg, #fff9ec 0%, #faedcf 30%, #f6e8cf 52%, #f1e0df 72%, #f9efd8 100%);
  background-size: 180% 180%, 170% 170%, 150% 150%, 220% 220%;
  animation: gradient-drift 22s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background:
    repeating-linear-gradient(22deg, rgba(120, 82, 49, 0.05) 0 1px, transparent 1px 10px),
    repeating-linear-gradient(-20deg, rgba(102, 66, 42, 0.035) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 1px 1px, rgba(93, 60, 39, 0.07) 0 0.8px, transparent 0.9px),
    radial-gradient(circle at 2px 2px, rgba(255, 253, 245, 0.14) 0 0.8px, transparent 0.9px);
  background-size: auto, auto, 9px 9px, 13px 13px;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.wave-bg {
  position: absolute;
  inset: 0 0 auto;
  height: 86svh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.wave-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 34%,
    rgba(252, 244, 229, 0.76) 0%,
    rgba(252, 244, 229, 0.32) 20%,
    rgba(252, 244, 229, 0) 44%
  );
}

.wave {
  position: absolute;
  left: calc(-16% + var(--scroll-shift, 0px));
  width: 132%;
  z-index: 1;
  display: block;
  transform: translateX(-90%);
  opacity: 0;
  filter: drop-shadow(0 8px 14px rgba(62, 45, 34, 0.12)) saturate(1.28);
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 54%,
    rgba(0, 0, 0, 0.72) 76%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 54%,
    rgba(0, 0, 0, 0.72) 76%,
    rgba(0, 0, 0, 0) 100%
  );
}

.wave path {
  fill: currentColor;
}

.wave-1 {
  top: 22svh;
  height: 30svh;
  color: rgba(246, 213, 146, 0.84);
  animation: wave-sweep 980ms cubic-bezier(0.2, 0.68, 0.2, 1) 80ms forwards, wave-float-a 10s ease-in-out 1160ms infinite;
}

.wave-2 {
  top: 35svh;
  height: 31svh;
  color: rgba(205, 145, 48, 0.82);
  animation: wave-sweep 1100ms cubic-bezier(0.2, 0.68, 0.2, 1) 220ms forwards, wave-float-b 13s ease-in-out 1320ms infinite;
}

.wave-3 {
  top: 46svh;
  height: 35svh;
  left: calc(-32% + var(--scroll-shift, 0px));
  width: 164%;
  color: rgba(100, 26, 43, 0.86);
  animation: wave-sweep 1220ms cubic-bezier(0.2, 0.68, 0.2, 1) 340ms forwards, wave-float-c 16s ease-in-out 1560ms infinite;
}

figcaption,
.nav-list a {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  letter-spacing: 0.02em;
}

h1,
h2,
.section-copy {
  font-family: "Caveat", "Bradley Hand", "Segoe Script", "Snell Roundhand", cursive;
}

a {
  color: var(--burgundy);
  transition: color 220ms ease;
}

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

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: saturate(125%) blur(10px);
  background: rgba(253, 245, 232, 0.7);
  border-bottom: 1px solid rgba(108, 44, 51, 0.12);
  transition: transform 260ms ease, opacity 220ms ease, background-color 220ms ease;
}

.site-header.is-hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}

.header-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 44px;
  max-width: 24vw;
  height: auto;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: clamp(4px, 1.2vw, 12px);
}

.nav-list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(0.75rem, 1.1vw, 0.9rem);
  line-height: 1;
  padding: 5px 8px;
  border-radius: 999px;
  transition: background-color 220ms ease, color 220ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: rgba(108, 44, 51, 0.12);
}

.section {
  padding: clamp(54px, 7vw, 80px) 0;
  animation: rise-in 680ms ease both;
}

.hero {
  min-height: calc(100svh - 74px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  position: relative;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 4svh 6vw auto;
  height: 34svh;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: clamp(5px, 0.8vw, 10px);
  aspect-ratio: 1;
  background: rgba(255, 248, 222, 0.9);
  box-shadow: 0 0 10px rgba(255, 232, 169, 0.7);
  opacity: 0;
  transform: rotate(45deg);
  animation: diamond-twinkle 5.8s ease-in-out infinite;
}

.hero-particles span:nth-child(1) { left: 8%; top: 18%; animation-delay: -1.1s; }
.hero-particles span:nth-child(2) { left: 19%; top: 47%; animation-delay: -3.4s; }
.hero-particles span:nth-child(3) { left: 31%; top: 12%; animation-delay: -0.6s; }
.hero-particles span:nth-child(4) { left: 43%; top: 38%; animation-delay: -4.2s; }
.hero-particles span:nth-child(5) { left: 55%; top: 18%; animation-delay: -2.1s; }
.hero-particles span:nth-child(6) { left: 67%; top: 51%; animation-delay: -5.1s; }
.hero-particles span:nth-child(7) { left: 77%; top: 14%; animation-delay: -2.8s; }
.hero-particles span:nth-child(8) { left: 90%; top: 39%; animation-delay: -0.2s; }
.hero-particles span:nth-child(9) { left: 13%; top: 70%; animation-delay: -4.8s; }
.hero-particles span:nth-child(10) { left: 84%; top: 68%; animation-delay: -1.8s; }

.hero-particles span:nth-child(2),
.hero-particles span:nth-child(4),
.hero-particles span:nth-child(6),
.hero-particles span:nth-child(8),
.hero-particles span:nth-child(9) {
  width: clamp(3px, 0.48vw, 6px);
  box-shadow: 0 0 7px rgba(255, 232, 169, 0.62);
}

.hero-center {
  width: min(760px, 92vw);
  text-align: center;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.eyebrow {
  margin: 0;
  font-weight: 700;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

h1 {
  margin: 8px 0 14px;
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

h1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: clamp(140px, 24vw, 260px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(139, 43, 62, 0) 0%,
    rgba(139, 43, 62, 0.45) 24%,
    rgba(184, 137, 63, 0.72) 50%,
    rgba(139, 43, 62, 0.45) 76%,
    rgba(139, 43, 62, 0) 100%
  );
}

h2 {
  margin-top: 0;
  font-size: clamp(2.1rem, 4.8vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  position: relative;
  padding-bottom: 0px;
}

h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2px;
  width: clamp(96px, 18vw, 186px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(184, 137, 63, 0) 0%,
    rgba(184, 137, 63, 0.72) 50%,
    rgba(184, 137, 63, 0) 100%
  );
}

h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  bottom: -3px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(108, 44, 51, 0.55);
  background: rgba(255, 247, 226, 0.8);
}

.section-copy {
  margin-top: -30px;
  margin-bottom: 20px;
  font-size: clamp(1.24rem, 2.3vw, 1.58rem);
  line-height: 1.24;
  text-align: center;
  letter-spacing: 0.01em;
  position: relative;
  width: min(66ch, 94vw);
  margin-inline: auto;
  padding: 0 0px;
}

.section-copy::before,
.section-copy::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  transform: rotate(45deg);
  background: rgba(184, 137, 63, 0.35);
  border: 1px solid rgba(108, 44, 51, 0.34);
}

.section-copy::before {
  left: 2px;
}

.section-copy::after {
  right: 2px;
}

.gallery-item,
.shows-list {
  margin: 0;
  background: var(--surface);
  border: 1px solid rgba(62, 45, 34, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(7px);
}

.hero-figure {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-figure-main {
  width: min(650px, 62vw);
  margin-bottom: 4px;
}

.hero-figure img {
  display: block;
  width: 100%;
  border-radius: 0;
  border: 0;
}

.hero-copy {
  margin: 0;
  max-width: 62ch;
}

.band-photo {
  position: relative;
  width: 100%;
  margin: clamp(-72px, -6vw, -24px) 0 0;
  padding: 0;
  overflow: hidden;
}

.band-photo img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 26px 44px rgba(41, 23, 10, 0.2);
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.16) 7%,
    rgba(0, 0, 0, 0.5) 14%,
    rgba(0, 0, 0, 0.9) 24%,
    rgba(0, 0, 0, 1) 30%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.16) 7%,
    rgba(0, 0, 0, 0.5) 14%,
    rgba(0, 0, 0, 0.9) 24%,
    rgba(0, 0, 0, 1) 30%
  );
}

.shows-list {
  list-style: none;
  padding: 10px;
}

.past-shows {
  margin-top: 28px;
  opacity: 0.62;
}

.past-shows h3 {
  margin: 0 0 10px;
  color: var(--moss);
  font-size: 1.2rem;
  text-align: center;
}

.show-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 12px;
  border-bottom: 1px dashed rgba(62, 45, 34, 0.2);
  transition: background-color 220ms ease;
}

.show-item:hover {
  background: rgba(255, 255, 255, 0.38);
}

.show-item:last-child {
  border-bottom: 0;
}

.show-item time {
  font-weight: 700;
  color: var(--moss);
}

.music-embeds-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.music-embed {
  margin: 0;
  background: var(--surface);
  border: 1px solid rgba(62, 45, 34, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(7px);
  padding: 10px;
}

.music-embed iframe {
  display: block;
  width: min(100%, 350px);
  max-width: 350px;
  height: auto;
  aspect-ratio: 350 / 470;
  margin: 0 auto;
  border: 0;
  border-radius: 10px;
}

.collage {
  --collage-gap: 8px;
  display: grid;
  gap: var(--collage-gap);
}

.collage-row {
  display: flex;
  gap: var(--collage-gap);
  min-width: 0;
}

.collage-item {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.collage button.collage-item {
  cursor: zoom-in;
}

.collage-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.collage-item:focus-visible {
  outline: 3px solid var(--burgundy);
  outline-offset: 3px;
}

.collage-lightbox {
  width: min(1100px, 96vw);
  max-width: none;
  max-height: 94svh;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.collage-lightbox::backdrop {
  background: rgba(16, 12, 10, 0.88);
}

.collage-lightbox-image {
  display: block;
  width: auto;
  max-width: 96vw;
  height: auto;
  max-height: 84svh;
  margin: auto;
  object-fit: contain;
}

.collage-lightbox-credit {
  margin: 10px 54px 0;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}

.collage-lightbox-credit a {
  color: inherit;
}

.collage-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  background: rgba(16, 12, 10, 0.72);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.collage-lightbox-close:hover,
.collage-lightbox-close:focus-visible {
  background: var(--burgundy);
}

.media-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.media-links a {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(62, 45, 34, 0.2);
  border-radius: 999px;
  color: var(--burgundy);
  background: rgba(255, 255, 255, 0.5);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.media-links svg {
  width: 24px;
  height: 24px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.media-links .media-icon-fill {
  fill: currentColor;
  stroke: none;
}

.media-links a:hover,
.media-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(108, 44, 51, 0.38);
  background: rgba(255, 255, 255, 0.78);
  color: #8a2745;
}

.email-button {
  display: table;
  margin: 20px auto 0;
  padding: 8px 14px;
  border: 1px solid rgba(108, 44, 51, 0.38);
  border-radius: var(--radius);
  color: var(--burgundy);
  background: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.email-button:hover,
.email-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(108, 44, 51, 0.62);
  background: rgba(255, 255, 255, 0.78);
  color: #8a2745;
}

.site-footer {
  border-top: 1px solid rgba(62, 45, 34, 0.14);
  background: var(--surface-strong);
  backdrop-filter: blur(5px);
}

.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

main .section:nth-of-type(2) {
  animation-delay: 120ms;
}

main .section:nth-of-type(3) {
  animation-delay: 220ms;
}

main .section:nth-of-type(4) {
  animation-delay: 320ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wave-sweep {
  from {
    opacity: 0;
    transform: translateX(-90%) scaleX(1.04);
  }
  to {
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }
}

@keyframes wave-float-a {
  0% {
    transform: translateX(0) translateY(0) scaleY(1);
  }
  35% {
    transform: translateX(2.8%) translateY(-10px) scaleY(1.025);
  }
  70% {
    transform: translateX(-2.2%) translateY(5px) scaleY(0.985);
  }
  100% {
    transform: translateX(0) translateY(0) scaleY(1);
  }
}

@keyframes wave-float-b {
  0% {
    transform: translateX(0) translateY(0) scaleY(1);
  }
  42% {
    transform: translateX(-3.2%) translateY(9px) scaleY(0.98);
  }
  76% {
    transform: translateX(1.5%) translateY(-5px) scaleY(1.02);
  }
  100% {
    transform: translateX(0) translateY(0) scaleY(1);
  }
}

@keyframes wave-float-c {
  0% {
    transform: translateX(0) translateY(0) scaleY(1);
  }
  38% {
    transform: translateX(3.4%) translateY(-9px) scaleY(1.025);
  }
  74% {
    transform: translateX(-2.6%) translateY(7px) scaleY(0.98);
  }
  100% {
    transform: translateX(0) translateY(0) scaleY(1);
  }
}

@keyframes gradient-drift {
  0% {
    background-position: 0% 10%, 100% 12%, 46% 100%, 0% 50%;
  }
  50% {
    background-position: 18% 24%, 82% 8%, 52% 86%, 52% 46%;
  }
  100% {
    background-position: 6% 14%, 96% 26%, 58% 74%, 100% 52%;
  }
}

@keyframes diamond-twinkle {
  0%,
  100% {
    opacity: 0.18;
    transform: translateY(3px) rotate(45deg) scale(0.72);
  }
  50% {
    opacity: 0.92;
    transform: translateY(-4px) rotate(45deg) scale(1.12);
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 52px;
    gap: 8px;
  }

  .brand-logo {
    width: 34px;
    max-width: none;
  }

  .nav-list {
    gap: 4px;
  }

  .nav-list a {
    font-size: 0.72rem;
    padding: 4px 6px;
  }

  .wave-bg {
    height: 78svh;
  }

  .wave-bg::after {
    background: radial-gradient(
      circle at 50% 34%,
      rgba(252, 244, 229, 0.94) 0%,
      rgba(252, 244, 229, 0.62) 28%,
      rgba(252, 244, 229, 0) 56%
    );
  }

  .wave {
    left: calc(-30% + var(--scroll-shift, 0px));
    width: 168%;
  }

  .wave-1 {
    top: 20svh;
    height: 20svh;
  }

  .wave-2 {
    top: 31svh;
    height: 21svh;
  }

  .wave-3 {
    left: calc(-56% + var(--scroll-shift, 0px));
    width: 220%;
    top: 39svh;
    height: 27svh;
  }

  .band-photo {
    margin-top: -28px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-particles {
    inset: 3svh 4vw auto;
    height: 26svh;
  }

  .hero-figure-main {
    width: min(400px, 78vw);
  }

  .section-copy {
    width: min(60ch, 60vw);
  }

  .section-copy::before {
    left: -18px;
  }

  .section-copy::after {
    right: -18px;
  }

  .show-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .music-embeds-grid {
    grid-template-columns: 1fr;
  }

  .media-links {
    gap: 12px;
  }

  .media-links a {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(1080px, 95vw);
  }

  .nav-list a {
    font-size: 0.68rem;
    padding: 3px 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .wave,
  .wave-1,
  .wave-2,
  .wave-3,
  .hero-particles span,
  .section,
  main .section:nth-of-type(2),
  main .section:nth-of-type(3),
  main .section:nth-of-type(4) {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0ms !important;
  }
}
