:root {
  --color-ink: #16201c;
  --color-muted: #5a625d;
  --color-paper: #fbfaf6;
  --color-panel: #ffffff;
  --color-sage: #dbe7dc;
  --color-deep: #163b31;
  --color-gold: #c99532;
  --color-red: #9a3328;
  --color-blue: #315c7a;
  --shadow-soft: 0 20px 55px rgba(22, 32, 28, 0.13);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--color-ink);
  background: var(--color-paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--color-ink);
  color: #fff;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(22, 32, 28, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--max-width));
  min-height: 76px;
  margin: 0 auto;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-deep);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

.brand small {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  color: #2d3934;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: var(--color-sage);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(22, 32, 28, 0.14);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - 76px);
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 26, 23, 0.86) 0%, rgba(15, 26, 23, 0.48) 58%, rgba(15, 26, 23, 0.24) 100%),
    url("assets/hero-band.svg") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(180deg, rgba(251, 250, 246, 0), var(--color-paper));
  content: "";
}

.hero-content {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 7rem 0 8rem;
}

.eyebrow,
.card-kicker {
  margin: 0 0 0.65rem;
  color: var(--color-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 10vw, 7.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.72rem 1rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--color-gold);
  color: #1f1608;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.section,
.intro-band {
  padding: 5.5rem 0;
}

.section-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.lead-copy p,
.section-heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.media-card {
  display: grid;
  gap: 1rem;
  background: var(--color-panel);
  border: 1px solid rgba(22, 32, 28, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(22, 32, 28, 0.06);
}

.media-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card > div,
.media-card-link > div {
  padding: 0 1rem 1.15rem;
}

.media-card p:not(.card-kicker),
.media-card-link p:not(.card-kicker) {
  margin: 0.45rem 0 0;
  color: var(--color-muted);
}

.media-card-link {
  display: grid;
  gap: 1rem;
  color: inherit;
  text-decoration: none;
}

.media-card-link:focus-visible,
.album-card a:focus-visible {
  outline: 3px solid rgba(201, 149, 50, 0.5);
  outline-offset: 3px;
}

.section-muted {
  background: #eef3ee;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 1rem;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  overflow: hidden;
  background: var(--color-panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.video-placeholder {
  display: grid;
  place-items: center;
  min-height: 340px;
  background:
    linear-gradient(135deg, rgba(22, 59, 49, 0.65), rgba(49, 92, 122, 0.55)),
    url("assets/video-placeholder.svg") center / cover no-repeat;
}

.play-symbol {
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 42px solid #fff;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.video-copy {
  align-self: center;
  padding: 2rem;
}

.video-copy p:not(.card-kicker) {
  color: var(--color-muted);
}

.video-list {
  display: grid;
  gap: 0.75rem;
}

.video-list a {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 1rem;
  border: 1px solid rgba(22, 32, 28, 0.08);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-ink);
  font-weight: 750;
  text-decoration: none;
}

.song-list {
  display: grid;
  gap: 0.75rem;
}

.song-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 88px;
  padding: 1rem;
  border: 1px solid rgba(22, 32, 28, 0.08);
  border-radius: var(--radius);
  background: #fff;
}

.track-number {
  color: var(--color-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.song-row p {
  margin: 0.25rem 0 0;
  color: var(--color-muted);
}

.mini-button {
  min-width: 96px;
  background: var(--color-deep);
  color: #fff;
}

.section-dark {
  color: #fff;
  background: var(--color-deep);
}

.section-dark .eyebrow {
  color: #e4b45d;
}

.event-list {
  display: grid;
  gap: 1rem;
}

.event-list article {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.event-list time {
  color: #e4b45d;
  font-weight: 800;
}

.event-list p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 1.5rem;
  border-left: 4px solid var(--color-gold);
  background: #fff;
  font-style: normal;
  box-shadow: 0 12px 26px rgba(22, 32, 28, 0.06);
}

.contact-panel span,
.contact-panel a {
  color: var(--color-muted);
}

.site-footer {
  padding: 2rem 0;
  color: rgba(255, 255, 255, 0.8);
  background: #101713;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.page-hero {
  padding: 6rem 0 4rem;
  background:
    linear-gradient(90deg, rgba(22, 59, 49, 0.92), rgba(22, 59, 49, 0.72)),
    url("assets/hero-band.svg") center / cover no-repeat;
  color: #fff;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.gallery-section {
  padding-top: 4rem;
}

.gallery-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-toolbar h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.year-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.year-button {
  min-width: 72px;
  min-height: 42px;
  border: 1px solid rgba(22, 32, 28, 0.14);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-ink);
  font-weight: 800;
  cursor: pointer;
}

.year-button:hover,
.year-button:focus-visible,
.year-button.is-active {
  border-color: var(--color-deep);
  background: var(--color-deep);
  color: #fff;
  outline: none;
}

.year-groups {
  display: grid;
  gap: 3rem;
}

.year-group.is-hidden {
  display: none;
}

.year-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(22, 32, 28, 0.12);
  padding-bottom: 0.75rem;
}

.year-heading h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.year-heading p {
  margin: 0;
  color: var(--color-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.album-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22, 32, 28, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 26px rgba(22, 32, 28, 0.06);
}

.album-card a {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.album-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.album-card div {
  padding: 1rem;
}

.album-card h4 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.album-card p:not(.card-kicker) {
  margin: 0.45rem 0 0;
  color: var(--color-muted);
}

.album-meta {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(22, 32, 28, 0.84);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    padding: 0.75rem;
    border: 1px solid rgba(22, 32, 28, 0.08);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    border-radius: var(--radius);
  }

  .hero {
    min-height: 720px;
  }

  .split,
  .album-grid,
  .gallery-grid,
  .video-layout,
  .video-feature {
    grid-template-columns: 1fr;
  }

  .gallery-toolbar,
  .year-heading {
    align-items: start;
    flex-direction: column;
  }

  .year-filter {
    justify-content: flex-start;
  }

  .video-placeholder {
    min-height: 280px;
  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 0.88rem;
  }

  .hero-content {
    padding: 5rem 0 6rem;
  }

  .section,
  .intro-band {
    padding: 4rem 0;
  }

  .song-row {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .song-row .mini-button {
    grid-column: 2;
    justify-self: start;
  }

  .footer-inner {
    display: grid;
  }
}
