:root {
  --black: #080706;
  --ink: #11100e;
  --cream: #f7efe3;
  --paper: #fff8eb;
  --muted: #7e7263;
  --line: #ded0bd;
  --gold: #d9a441;
  --amber: #f0c56b;
  --red: #c94332;
  --charcoal: #171311;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(247, 239, 227, .16);
  background: rgba(8, 7, 6, .94);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 52px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0;
  line-height: 0;
}

.brand img {
  display: block;
  width: 118px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 8px;
  margin-left: auto;
}

.main-nav a,
.language-pill,
.menu-button,
.button {
  border: 1px solid rgba(247, 239, 227, .48);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: var(--cream);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.main-nav a,
.language-pill,
.menu-button {
  min-height: 34px;
  padding: 9px 13px;
}

.main-nav a:hover,
.language-pill:hover,
.menu-button:hover,
.button:hover {
  border-color: var(--amber);
  background: rgba(217, 164, 65, .18);
  transform: translateY(-1px);
}

.language-pill {
  background: var(--gold);
  border-color: var(--gold);
  color: #11100e;
}

.menu-button {
  display: none;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 120px 24px 78px;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, .94), rgba(8, 7, 6, .46) 48%, rgba(8, 7, 6, .7)),
    var(--hero-image) center / cover no-repeat;
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(transparent, var(--black));
  pointer-events: none;
}

.hero-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(217, 164, 65, .12) 42%, transparent 58%);
  transform: translateX(-60%);
  animation: sheen 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.kicker {
  display: inline-flex;
  margin: 0;
  padding: 8px 13px;
  border: 1px solid rgba(217, 164, 65, .6);
  border-radius: 999px;
  background: rgba(217, 164, 65, .14);
  color: #ffd27a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin: 22px 0;
  color: #fff;
  font-size: clamp(48px, 7vw, 100px);
  line-height: .94;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.12;
}

.lead {
  max-width: 820px;
  margin: 0;
  color: #dfd2c2;
  font-size: 21px;
  line-height: 1.55;
}

.lead.dark {
  color: #5f554b;
}

.paper .lead.dark {
  color: var(--ink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 17px;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #11100e;
}

.button.primary:hover {
  border-color: var(--amber);
  background: var(--amber);
  color: #11100e;
}

.dark-button {
  color: var(--ink);
  border-color: rgba(17, 16, 14, .32);
  background: rgba(17, 16, 14, .05);
}

.dark-button:hover {
  color: var(--ink);
  background: rgba(217, 164, 65, .22);
}

.disabled-button {
  border-color: rgba(126, 114, 99, .38);
  background: rgba(126, 114, 99, .12);
  color: rgba(126, 114, 99, .92);
  cursor: default;
}

.disabled-button:hover {
  border-color: rgba(126, 114, 99, .38);
  background: rgba(126, 114, 99, .12);
  color: rgba(126, 114, 99, .92);
  transform: none;
}

.sound-lines {
  position: absolute;
  right: 8%;
  bottom: 18%;
  display: flex;
  align-items: end;
  gap: 8px;
  opacity: .5;
}

.sound-lines span {
  width: 8px;
  height: 42px;
  border-radius: 999px;
  background: var(--gold);
  animation: pulseLine 1.6s ease-in-out infinite;
}

.sound-lines span:nth-child(2) {
  height: 70px;
  animation-delay: .18s;
}

.sound-lines span:nth-child(3) {
  height: 54px;
  animation-delay: .34s;
}

.sound-lines span:nth-child(4) {
  height: 86px;
  animation-delay: .48s;
}

.section {
  padding: 78px 24px;
  scroll-margin-top: 80px;
}

.section > *,
.site-footer {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.paper {
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.burn {
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: radial-gradient(circle at 18% 0%, rgba(201, 67, 50, .2), transparent 34%), linear-gradient(135deg, #15110f, #080706);
  color: var(--cream);
}

.section.dark {
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: #11100e;
  color: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 34px;
  align-items: center;
}

.feature-image,
.video-frame,
.member-card,
.gallery-item,
.feature-card,
.gig-card {
  border-radius: 10px;
}

.feature-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

.feature-image img {
  display: block;
  width: 100%;
  min-height: 390px;
  object-fit: cover;
}

.card-row,
.members-grid,
.gallery-grid,
.gigs-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.card-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.gig-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .55);
}

.feature-card p,
.gig-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

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

.member-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.member-card:hover {
  border-color: rgba(217, 164, 65, .52);
  background: rgba(255, 255, 255, .08);
  transform: translateY(-4px);
}

.member-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: contrast(1.04) saturate(.96);
}

.member-card div {
  padding: 16px;
}

.member-card p {
  margin: 0;
  color: #cdbcaa;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-row {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
  gap: 24px;
  align-items: center;
  margin-top: 30px;
}

.video-actions {
  margin-top: 16px;
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #0d0a08;
}

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

.music-row {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
  gap: 24px;
  align-items: center;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .045);
}

.music-row p {
  margin: 0;
  color: #cdbcaa;
  line-height: 1.45;
}

.music-samples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}

.music-sample {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(247, 239, 227, .18);
  border-radius: 999px;
  background: rgba(8, 7, 6, .42);
  color: var(--cream);
  cursor: pointer;
  text-align: left;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.music-sample:hover,
.music-sample.is-active {
  border-color: var(--gold);
  background: rgba(217, 164, 65, .16);
  transform: translateY(-1px);
}

.sample-play {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.gallery-title {
  margin-top: 36px;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: #0d0a08;
  color: var(--cream);
  cursor: zoom-in;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform .36s ease, filter .36s ease;
}

.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(8, 7, 6, .72);
  font-size: 13px;
  font-weight: 850;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.gallery-item:hover span,
.gallery-item:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.gigs-grid {
  grid-template-columns: 1fr;
  gap: 34px;
}

.gig-subsection {
  display: grid;
  gap: 16px;
}

.subhead {
  color: var(--amber);
  margin-bottom: 0;
}

.gig-list {
  display: grid;
  gap: 14px;
}

.gig-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 14px;
  align-items: stretch;
  min-height: auto;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .055);
}

.gig-card.upcoming {
  border-color: rgba(217, 164, 65, .58);
  box-shadow: 0 0 0 1px rgba(217, 164, 65, .12), 0 24px 80px rgba(217, 164, 65, .08);
}

.gig-card.past {
  opacity: .58;
}

.gig-card h3 {
  margin-top: 5px;
}

.gig-copy {
  min-width: 0;
}

.gig-map {
  width: 100%;
  min-height: 132px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  filter: grayscale(.25) contrast(.94) brightness(.82);
}

.gig-date {
  color: var(--amber) !important;
  font-weight: 900;
}

.muted {
  color: #b9aa99 !important;
}

.booking .button-row {
  margin-top: 24px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 32px 24px;
  color: #cdbcaa;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--cream);
  font-weight: 900;
}

.site-footer a {
  color: var(--amber);
  text-decoration: none;
}

.music-player {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  max-width: min(280px, calc(100vw - 28px));
}

.music-player-button {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 58px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(217, 164, 65, .58);
  border-radius: 999px;
  background: rgba(17, 13, 9, .9);
  color: var(--cream);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .42);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.music-player-button:hover {
  border-color: var(--amber);
  background: rgba(30, 22, 13, .95);
  transform: translateY(-2px);
}

.music-player-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.music-wave {
  display: grid;
  grid-template-columns: repeat(5, 3px);
  align-items: center;
  gap: 3px;
  width: 27px;
  height: 24px;
  flex: 0 0 auto;
  opacity: .32;
  transition: opacity .18s ease;
}

.music-wave span {
  width: 3px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe29a, var(--gold));
  box-shadow: 0 0 10px rgba(217, 164, 65, .18);
  transform: scaleY(.38);
  transform-origin: center;
}

.music-wave span:nth-child(2) {
  height: 18px;
}

.music-wave span:nth-child(3) {
  height: 22px;
}

.music-wave span:nth-child(4) {
  height: 16px;
}

.music-wave span:nth-child(5) {
  height: 10px;
}

.music-is-playing .music-wave {
  opacity: 1;
}

.music-is-playing .music-wave span {
  animation: miniWave .82s ease-in-out infinite;
}

.music-is-playing .music-wave span:nth-child(2) {
  animation-delay: .12s;
}

.music-is-playing .music-wave span:nth-child(3) {
  animation-delay: .24s;
}

.music-is-playing .music-wave span:nth-child(4) {
  animation-delay: .36s;
}

.music-is-playing .music-wave span:nth-child(5) {
  animation-delay: .48s;
}

.music-player-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.music-player-copy strong,
.music-player-copy small {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.music-player-copy strong {
  font-size: 13px;
}

.music-player-copy small {
  color: #cdbcaa;
  font-size: 12px;
}

.disabled-social {
  color: #8b8072;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .58s ease, transform .58s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  width: min(1080px, calc(100vw - 28px));
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background: rgba(8, 7, 6, .96);
  color: var(--cream);
  padding: 18px;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  display: block;
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: #cdbcaa;
  font-weight: 800;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(8, 7, 6, .78);
  color: var(--cream);
  cursor: pointer;
}

.lightbox-close {
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  font-size: 28px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 42px;
  height: 56px;
  transform: translateY(-50%);
  font-size: 34px;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.admin-body {
  background: linear-gradient(135deg, #0d0a08, #171311);
}

.admin-shell {
  width: min(1100px, calc(100% - 28px));
  margin: 0 auto;
  padding: 34px 0 64px;
}

.admin-login,
.admin-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
}

.admin-login {
  max-width: 440px;
  margin: 12vh auto;
}

.admin-login h1 {
  margin: 0 0 20px;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.04;
}

.admin-login form {
  gap: 16px;
}

.admin-login .password-label {
  margin-top: 12px;
}

.admin-login button[type="submit"] {
  margin-top: 8px;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.admin-card {
  margin-top: 18px;
}

.admin-accordion {
  padding: 0;
  overflow: hidden;
}

.admin-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 18px 20px;
  color: var(--cream);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  list-style: none;
}

.admin-accordion summary::-webkit-details-marker {
  display: none;
}

.admin-accordion summary::after {
  content: "+";
  color: var(--amber);
  font-size: 28px;
  line-height: 1;
}

.admin-accordion[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.admin-accordion[open] summary::after {
  content: "-";
}

.admin-accordion > form,
.admin-accordion > .admin-list {
  margin: 20px;
}

.stack-form,
.grid-form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: #cdbcaa;
  font-size: 13px;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(0, 0, 0, .22);
  color: var(--cream);
  padding: 9px 11px;
  font: inherit;
}

textarea {
  min-height: 92px;
  resize: vertical;
  line-height: 1.45;
}

.full {
  grid-column: 1 / -1;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.form-actions .action-left {
  justify-self: start;
  grid-column: 1;
}

.form-actions .action-center {
  justify-self: center;
  grid-column: 2;
}

.form-actions .action-right {
  justify-self: end;
  grid-column: 3;
}

.admin-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(0, 0, 0, .18);
}

.admin-row p {
  margin: 0;
  color: #cdbcaa;
}

.activity-panel {
  display: grid;
  gap: 18px;
  margin: 20px;
}

.owner-tool {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(217, 164, 65, .28);
  border-radius: 8px;
  background: rgba(217, 164, 65, .08);
}

.owner-tool h2,
.activity-panel h2 {
  margin: 0 0 7px;
  color: var(--cream);
  font-size: 20px;
}

.owner-tool p,
.activity-panel .muted {
  margin: 0;
  color: #cdbcaa;
}

.activity-row span {
  justify-self: end;
  padding: 7px 10px;
  border: 1px solid rgba(247, 239, 227, .22);
  border-radius: 999px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}

.music-admin-list audio {
  display: block;
  width: min(360px, 100%);
  margin-top: 8px;
}

.music-row-admin {
  align-items: start;
}

.music-row-admin .admin-actions {
  justify-content: flex-end;
}

.music-edit-button {
  border-color: rgba(232, 190, 83, .46);
  background: rgba(232, 190, 83, .14);
  color: #ffe4a3;
}

.music-delete-button {
  border-color: rgba(221, 104, 104, .42);
  background: rgba(221, 104, 104, .14);
  color: #ffd4cc;
}

.music-edit-button:hover {
  border-color: rgba(244, 205, 105, .7);
  background: rgba(232, 190, 83, .22);
}

.music-delete-button:hover {
  border-color: rgba(239, 127, 127, .66);
  background: rgba(221, 104, 104, .22);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.copy-editor {
  display: grid;
  gap: 18px;
}

.copy-language {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(0, 0, 0, .14);
  overflow: hidden;
}

.copy-language summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 12px 14px;
  color: #dfd2c2;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

.copy-language summary::-webkit-details-marker {
  display: none;
}

.copy-language summary::after {
  content: "+";
  color: #cdbcaa;
  font-size: 22px;
  line-height: 1;
}

.copy-language[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.copy-language[open] summary::after {
  content: "-";
}

.copy-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.photo-admin-list {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  align-items: stretch;
  max-height: calc((320px * 4) + 30px);
  overflow-y: auto;
  padding-right: 6px;
  overscroll-behavior: contain;
}

.photo-tile {
  display: grid;
  grid-template-rows: auto minmax(54px, auto) auto;
  gap: 10px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(0, 0, 0, .18);
}

.photo-tile.is-dragging {
  opacity: .48;
}

.photo-tile.drop-target {
  border-color: var(--amber);
  box-shadow: 0 0 0 2px rgba(217, 164, 65, .18);
}

.photo-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: 7px;
  object-fit: cover;
}

.photo-tile strong {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
}

.photo-tile p {
  min-height: 18px;
  margin: 2px 0 0;
  color: #cdbcaa;
  font-size: 12px;
}

.photo-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.photo-delete-button {
  grid-column: 1 / 2;
  border-color: rgba(221, 104, 104, .42);
  background: rgba(221, 104, 104, .14);
  color: #ffd4cc;
}

.photo-edit-button {
  grid-column: 2 / 3;
  border-color: rgba(232, 190, 83, .46);
  background: rgba(232, 190, 83, .14);
  color: #ffe4a3;
}

.photo-download-button {
  grid-column: 3 / 4;
  border-color: rgba(127, 190, 126, .46);
  background: rgba(127, 190, 126, .14);
  color: #d9f3cc;
}

.photo-delete-button:hover {
  border-color: rgba(239, 127, 127, .66);
  background: rgba(221, 104, 104, .22);
}

.photo-edit-button:hover {
  border-color: rgba(244, 205, 105, .7);
  background: rgba(232, 190, 83, .22);
}

.photo-download-button:hover {
  border-color: rgba(150, 214, 140, .7);
  background: rgba(127, 190, 126, .22);
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 30px;
  padding: 7px 6px;
  font-size: 12px;
}

.admin-message {
  min-height: 20px;
  color: var(--amber);
}

@keyframes miniWave {
  0%, 100% {
    transform: scaleY(.34);
  }
  45% {
    transform: scaleY(1);
  }
}

@keyframes sheen {
  0%, 72% {
    transform: translateX(-70%);
  }
  100% {
    transform: translateX(70%);
  }
}

@keyframes pulseLine {
  0%, 100% {
    transform: scaleY(.72);
    opacity: .5;
  }
  45% {
    transform: scaleY(1.08);
    opacity: .95;
  }
}

@media (prefers-reduced-motion: reduce) {
  .music-is-playing .music-wave span {
    animation: none;
    transform: scaleY(.7);
  }
}

@media (max-width: 900px) {
  .header-inner {
    width: min(1180px, calc(100% - 24px));
    min-height: 50px;
    gap: 10px;
  }

  .brand img {
    width: 104px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .main-nav {
    position: fixed;
    inset: 50px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(247, 239, 227, .16);
    border-radius: 10px;
    background: rgba(8, 7, 6, .98);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 620px;
    padding: 92px 14px 58px;
  }

  h1 {
    font-size: 45px;
  }

  .lead {
    font-size: 18px;
  }

  .section {
    padding: 62px 14px;
  }

  .split,
  .video-row,
  .music-row,
  .gigs-grid {
    grid-template-columns: 1fr;
  }

  .gig-card {
    grid-template-columns: 1fr;
  }

  .gig-map {
    min-height: 170px;
  }

  .feature-image img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 10px;
  }

  .member-card img {
    height: 360px;
  }

  .sound-lines {
    display: none;
  }

  .site-footer {
    padding: 28px 14px;
  }

  .grid-form,
  .copy-field-grid {
    grid-template-columns: 1fr;
  }

  .owner-tool,
  .activity-row {
    grid-template-columns: 1fr;
  }

  .activity-row span {
    justify-self: start;
  }

  .photo-admin-list {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  }

  .music-player {
    right: 12px;
    bottom: 12px;
  }

  .music-player-copy strong {
    max-width: 138px;
  }
}
