:root {
  --ink: #111827;
  --muted: #647082;
  --paper: #fbf6ed;
  --paper-2: #f2e8da;
  --night: #08111f;
  --night-2: #111d31;
  --brass: #c8963e;
  --brass-2: #e3c47d;
  --blue: #2d5d7c;
  --line: rgba(17, 24, 39, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 17, 31, 0.14);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 150, 62, 0.12), transparent 30rem),
    linear-gradient(180deg, #fffaf1 0%, var(--paper) 46%, #fff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

code {
  padding: 0.15rem 0.35rem;
  border-radius: 8px;
  background: rgba(8, 17, 31, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 {
  max-width: 790px;
  margin-bottom: 1.35rem;
  font-size: clamp(3.35rem, 7.8vw, 7.6rem);
}

h2 {
  margin-bottom: 1rem;
  color: var(--night);
  font-size: clamp(2rem, 4.5vw, 4rem);
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.28rem;
}

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

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.eyebrow-logo img {
  height: clamp(105px, 14vw, 220px);
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.35));
}

.eyebrow-logo-booking {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.eyebrow-logo-booking img {
  height: clamp(105px, 14vw, 220px);
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.35));
}

/* Header */
.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.86);
  box-shadow: 0 18px 50px rgba(8, 17, 31, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    top 260ms cubic-bezier(.2, .8, .2, 1),
    width 260ms cubic-bezier(.2, .8, .2, 1),
    padding 260ms cubic-bezier(.2, .8, .2, 1),
    border-radius 260ms cubic-bezier(.2, .8, .2, 1),
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

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

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 10px 22px rgba(8, 17, 31, 0.18);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--night);
  font-size: 0.98rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  color: rgba(17, 24, 39, 0.76);
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, padding 260ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(8, 17, 31, 0.07);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  color: var(--paper);
  background: var(--night);
}

.site-nav .nav-cta:hover {
  color: var(--paper);
  background: var(--blue);
}

.brand-logo,
.brand-text strong,
.brand-text small,
.nav-toggle {
  transition:
    width 260ms cubic-bezier(.2, .8, .2, 1),
    height 260ms cubic-bezier(.2, .8, .2, 1),
    color 220ms ease,
    opacity 220ms ease,
    transform 260ms cubic-bezier(.2, .8, .2, 1),
    background 220ms ease;
}

.site-header.is-compact {
  top: 0;
  width: 100%;
  padding: 0.28rem max(1rem, calc((100vw - var(--max)) / 2 + 1rem));
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: rgba(8, 17, 31, 0.9);
  box-shadow: 0 12px 30px rgba(8, 17, 31, 0.2);
}

.site-header.is-compact .brand {
  gap: 0.55rem;
}

.site-header.is-compact .brand-logo {
  width: 34px;
  height: 34px;
  box-shadow: none;
}

.site-header.is-compact .brand-text strong {
  color: var(--paper);
  font-size: 0.88rem;
}

.site-header.is-compact .brand-text small {
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  overflow: hidden;
}

.site-header.is-compact .site-nav a {
  padding: 0.48rem 0.74rem;
  color: rgba(255, 250, 241, 0.8);
  font-size: 0.86rem;
}

.site-header.is-compact .site-nav a:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-compact .site-nav .nav-cta {
  color: var(--night);
  background: var(--brass-2);
}

.site-header.is-compact .site-nav .nav-cta:hover {
  color: var(--night);
  background: var(--paper);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: var(--night);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--paper);
}

/*-----------*/
/*   HERO    */
/*-----------*/

.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  min-height: 100svh;
  margin: 0 0 0 calc(-50vw + 50%);
  padding: clamp(7.5rem, 12vw, 10.5rem) 0 clamp(5rem, 8vw, 7rem);
  overflow: hidden;
}

.hero-video-bg,
.hero-video-overlay {
  position: absolute;
  inset: 0;
}

.hero-video-bg {
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
}

.hero-video-overlay {
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.58) 0%, rgba(8, 17, 31, 0.34) 42%, rgba(8, 17, 31, 0.16) 100%),
    linear-gradient(180deg, rgba(8, 17, 31, 0.28) 0%, rgba(8, 17, 31, 0.06) 38%, rgba(8, 17, 31, 0.22) 100%);
}

.hero-video-overlay {
  pointer-events: none;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.35rem, 5.6vw, 5.65rem);
  line-height: 1.05;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  padding-top: clamp(1rem, 4vw, 2rem);
}

.hero-copy>* {
  max-width: 790px;
}

.hero h1,
.hero .hero-lede,
.hero .hero-meta {
  color: var(--paper);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-lede {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-meta {
  margin: 1.3rem 0 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.song-hero-lede {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.hero.section-shell {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.rotating-word {
  position: relative;
  display: block;
  min-height: 1.12em;
  color: var(--brass-2);
  white-space: nowrap;
  line-height: 1.02;
}

.rotating-word span {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translate3d(0, 0.35em, 0);
  white-space: nowrap;
  will-change: opacity, transform;
  animation: rotateWordsMozwell 18s infinite both;
  animation-timing-function: cubic-bezier(.2, .8, .2, 1);
}

.split-section--full {
  grid-template-columns: 1fr !important;
}

.split-section--full .section-intro {
  max-width: 900px;
}

#about.split-section--full {
  grid-template-columns: 1fr !important;
}

#about.split-section--full .section-intro {
  max-width: none;
  width: 100%;
}

#about.split-section--full .content-card {
  max-width: none;
  width: 100%;
}

.feature-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  transition: all 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255, 255, 255, 0.16);
}

.social-links svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.footer-links {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* smoother easing curve (key Mozwell feel) */
@keyframes rotateWordsMozwell {
  0% {
    opacity: 0;
    transform: translate3d(0, 0.35em, 0);
  }

  4.5% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  12% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  15.5% {
    opacity: 0;
    transform: translate3d(0, -0.28em, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -0.28em, 0);
  }
}

.rotating-word span:nth-child(1) {
  animation-delay: 0s;
}

.rotating-word span:nth-child(2) {
  animation-delay: 3s;
}

.rotating-word span:nth-child(3) {
  animation-delay: 6s;
}

.rotating-word span:nth-child(4) {
  animation-delay: 9s;
}

.rotating-word span:nth-child(5) {
  animation-delay: 12s;
}

.rotating-word span:nth-child(6) {
  animation-delay: 15s;
}

/* Buttons */
.hero-actions,
.event-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.1rem;
  border: 0;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--night), var(--blue));
  box-shadow: 0 8px 8px rgba(45, 93, 124, 0.25);
}

.button-secondary {
  color: var(--night);
  background: rgba(8, 17, 31, 0.075);
}

.hero .button-secondary {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.hero .button-secondary:hover {
  background: rgba(255, 255, 255, 0.24);
}

.button-light {
  color: var(--night);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(8, 17, 31, 0.16);
}

.text-button {
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 0.92rem;
  font-weight: 850;
  cursor: pointer;
}

.text-button-light {
  color: var(--brass-2);
  text-decoration: none;
}

.more-videos-action {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.full-calendar-action {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.calendar-event-modal-window {
  position: relative;
  width: min(720px, 96vw);
  max-height: min(88vh, 900px);
  overflow-y: auto;
  border-radius: 18px;
  background:
    linear-gradient(135deg,
      rgba(8, 17, 31, 0.98),
      rgba(17, 29, 49, 0.98));
  color: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.calendar-event-modal-content,
.calendar-event-modal-content h2,
.calendar-event-modal-content p,
.calendar-event-modal-content strong,
.calendar-event-modal-meta p,
.calendar-event-modal-description p {
  color: var(--paper) !important;
}

.calendar-event-modal-meta strong,
.calendar-event-modal-description strong {
  color: var(--brass-2) !important;
}

.calendar-event-modal-content h2 {
  color: var(--paper) !important;
}

@media (max-width: 700px) {
  .calendar-event-modal-window {
    width: calc(100vw - 1rem);
    max-height: calc(100vh - 2rem);
    margin: 1rem;
    border-radius: 16px;
  }

  .calendar-event-modal-content {
    padding:
      1.15rem 1rem 1.25rem;
  }

  .calendar-event-modal-meta {
    grid-template-columns: 1fr;
  }

  .calendar-modal-close {
    top: 0.65rem;
    right: 0.65rem;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }
}

.calendar-event-modal-content {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.calendar-event-modal-content h2 {
  color: var(--paper);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.calendar-event-modal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.calendar-event-modal-meta div,
.calendar-event-modal-description {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-event-modal-meta strong,
.calendar-event-modal-description strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brass-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calendar-event-modal-meta p,
.calendar-event-modal-description p {
  margin: 0;
  color: rgba(255, 250, 241, 0.84);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .calendar-event-modal-meta {
    grid-template-columns: 1fr;
  }

  .calendar-event-modal-window {
    width: 100%;
    max-height: calc(100vh - 2rem);
  }
}

.calendar-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);

  font-size: 1.8rem;
  line-height: 1;

  cursor: pointer;

  transition:
    background 180ms ease,
    transform 180ms ease;
}

.calendar-modal-close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.06);
}

.calendar-modal-close:active {
  transform: scale(0.96);
}

/* Sections */
.marquee-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content:
    center;
  gap: 0.75rem;
  padding: 1rem;
  color: var(--paper);
  background: var(--night);
}

.marquee-strip span {
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.content-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 20px 50px rgba(8, 17, 31, 0.05);
}

.content-card p:last-child {
  margin-bottom: 0;
}

.section-block {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-divider {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(1.6rem, 4vw, 3rem);
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.event-address-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.event-address-link:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.event-address-link:hover span {
  background: rgba(255, 255, 255, 0.16);
  /* box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18); */
}

.event-address-link:active {
  transform: translateY(0);
}

.event-address-link:active span {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

/* ============= */
/*   VIDEO CARD  */
/* ============= */

.video-grid,
.member-grid {
  display: grid;
  gap: 1rem;
}

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

.video-card,
.member-card,
.event-card,
.contact-card,
.contact-form,
.member-portrait-card,
.member-bio-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(8, 17, 31, 0.06);
}

.video-card,
.member-card {
  overflow: hidden;
}

.video-thumb {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 230px;
  place-items: center;
  overflow: hidden;
  border: 0;
  color: var(--paper);
  background: linear-gradient(135deg, rgba(8, 17, 31, 0.92), rgba(45, 93, 124, 0.76));
  cursor: pointer;
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.video-thumb:hover img {
  transform: scale(1.04);
}

.play-button {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.play-button svg {
  width: 54px;
  height: 54px;
  fill: currentColor;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
  transition: transform 180ms ease;
}

.video-thumb:hover .play-button svg {
  transform: scale(1.08);
}

.video-card-body,
.member-info {
  padding: 1.15rem;
}

.video-card-body p,
.member-info p,
.event-main p,
.contact-card p,
.member-bio-card p,
.member-portrait-card p {
  color: var(--muted);
}

.member-info .more-link {
  display: flex;
  justify-content: flex-end;
  width: fit-content;
  margin-left: auto;
}

.member-call-out {
  color: rgba(255, 250, 241, 0.76);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.member-bio-intro {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.member-bio-intro h1 {
  margin: 0.35rem 0 1rem;
}

.member-bio-intro p:not(.eyebrow) {
  margin-bottom: 1.25rem;
}

.member-bio-section-title {
  margin-bottom: 1rem;
}

/* ============== */
/*    CALENDAR    */
/* ============== */

.calendar-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.events-list {
  display: grid;
  gap: 0.9rem;
}

.event-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
}

.event-main-push {
  margin-left: 10px;
}

.event-date {
  display: grid;
  min-height: 104px;
  place-items: center;
  border-radius: 10px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--night), var(--blue));
  text-align: center;
}

.event-date span {
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.event-date small {
  color: rgba(255, 250, 241, 0.76);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 8px;
  color: #414a57;
  background: rgba(236, 236, 236, 0.55);
  font-size: 0.85rem;
  font-weight: 750;
}

.event-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.calendar-icon-button {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.calendar-icon-button svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: none;
  stroke: #777;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-icon-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.calendar-icon-button:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.calendar-date-card {
  width: 118px;
  min-width: 118px;
  overflow: hidden;
  border-radius: 10px;
  background: #fffaf1;
  ;
  color: #1f2528;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.24);
  transform: rotate(-2deg);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.calendar-date-top {
  background: #d95b52;
  color: #fff;
  text-align: center;
  padding: 0.2rem 0.6rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.calendar-date-main {
  /* display: grid; */
  place-items: center;
  padding: 0.3rem 0.35rem 0.25rem;
  background: linear-gradient(180deg, #fffaf1 0%, #eee8dc 100%);
}

.calendar-date-main strong {
  font-size: 3.15rem;
  line-height: 0.95;
  font-weight: 900;
  color: #2f373a;
}

.calendar-date-main small {
  margin-top: 0.4rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(31, 37, 40, 0.62);
}

.calendar-page-event .calendar-date-main {
  display: grid;
  place-items: center;
  text-align: center;
}

.calendar-book-button {
  margin-top: 1rem;
}

#full-calendar {
  background: rgba(255, 255, 255, 0.88);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(8, 17, 31, 0.08);
}

.fc .fc-toolbar-title {
  font-size: 1.8rem;
  font-weight: 800;
}

.fc .fc-button {
  background: #08111f;
  border: none;
}

.fc .fc-button:hover {
  background: #2d5d7c;
}

.fc-event {
  border: none;
  background: #c8963e;
  color: white;
  cursor: pointer;
}

/* ============= */
/*    MEMBERS    */
/* ============= */

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

.member-photo {
  position: relative;
  display: grid;
  min-height: 220px;
  place-items: center;
  overflow: hidden;
  color: var(--paper);
  background: linear-gradient(135deg, var(--night), var(--blue));
  text-decoration: none;
}

.member-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(8, 17, 31, 0.58));
  opacity: 0;
  transition: opacity 220ms ease;
}

.member-card:hover .member-photo::after {
  opacity: 1;
}

.member-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.member-card:hover .member-photo img {
  transform: scale(1.035);
}

.member-photo span {
  position: relative;
  z-index: 1;
  display: none;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: var(--brass-2);
  font-size: 1.6rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.member-photo.missing-image span {
  display: grid;
}

.member-role {
  margin-bottom: 0.75rem;
  color: var(--brass) !important;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.more-link {
  display: inline-flex;
  margin-top: 0.15rem;
  padding: 0.45rem 0.68rem;
  border-radius: 6px;
  color: var(--night);
  background: rgba(200, 150, 62, 0.16);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.more-link:hover {
  background: rgba(200, 150, 62, 0.28);
  transform: translateY(-1px);
}

/* ============= */
/*    BOOKING    */
/* ============= */

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(90deg,
      rgba(8, 17, 31, 0.98) 0%,
      rgba(10, 20, 36, 0.98) 36%,
      #05070b 54%,
      #05070b 100%),
    radial-gradient(circle at top right, rgba(200, 150, 62, 0.18), transparent 20rem);
  box-shadow: var(--shadow);
}

.booking-panel>div:first-child {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.booking-panel h2 {
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 4rem);
}

.booking-panel p {
  color: rgba(255, 250, 241, 0.72);
}

.booking-photo {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  align-self: stretch;
  justify-self: stretch;
  overflow: hidden;
  background: #05070b;
}

.booking-photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: clamp(150px, 30%, 280px);
  z-index: 2;
  pointer-events: none;
}

.booking-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: right center;
  background: #05070b;
}

/* ------- */
/* Contact */
/* ------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem;
}

.contact-card,
.contact-form {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.contact-card a {
  display: block;
  margin-top: 0.6rem;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-links a {
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 17, 31, 0.14);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(45, 93, 124, 0.52);
  box-shadow: 0 0 0 4px rgba(45, 93, 124, 0.12);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-alert {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-weight: 850;
}

.form-alert.success {
  color: #14532d;
  background: #dcfce7;
}

.form-alert.error {
  color: #7f1d1d;
  background: #fee2e2;
}

/* ===================== */
/*  MEMBER DETAIL PAGES  */
/* ===================== */

.member-page-body {
  background: linear-gradient(180deg, #fffaf1 0%, #f6efe4 60%, #fff 100%);
}

.member-page-body main {
  padding-top: clamp(7rem, 10vw, 2rem);
}

.member-detail-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.15fr);
  gap: 1rem;
  align-items: start;
  padding: clamp(2rem, 5vw, 1rem) 0;
}

.member-portrait-card,
.member-bio-card {
  overflow: hidden;
}

.member-portrait-card img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.member-bio-card p a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.member-bio-card p a:hover {
  border-bottom-color: currentColor;
}

.member-portrait-card div,
.member-bio-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.member-portrait-card h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.member-bio-card h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.member-bio-card p {
  font-size: 1.06rem;
}

.credit-box {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border: 1px solid rgba(200, 150, 62, 0.34);
  border-radius: 12px;
  background: rgba(200, 150, 62, 0.11);
  margin-bottom: 2rem;

}

.credit-box h3 {
  margin-bottom: 0.8rem;
}

.credit-box ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #445061;
}

.credit-box li+li {
  margin-top: 0.55rem;
}

.compact-members .member-photo {
  min-height: 170px;
}

.compact-members .member-info p:not(.member-role) {
  display: none;
}

.member-card.is-current {
  outline: 2px solid rgba(200, 150, 62, 0.72);
}

.member-card.is-current .more-link {
  pointer-events: none;
  color: #c0c0c0;
  background: #fff;
}

.credit-box a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.credit-box a:hover {
  border-bottom-color: currentColor;
}

/* ==================== */
/*  FULL CALENDAR PAGE  */
/* ==================== */

.calendar-page-body {
  background:
    radial-gradient(circle at top left, rgba(200, 150, 62, 0.13), transparent 28rem),
    linear-gradient(180deg, #fffaf1 0%, #f6efe4 54%, #fff 100%);
}

.calendar-page-body main {
  padding-top: clamp(7rem, 11vw, 9rem);
}

.calendar-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: end;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.calendar-hero h1 {
  max-width: 840px;
  margin-bottom: 1rem;
  color: var(--night);
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.calendar-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.calendar-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-bottom: 0.4rem;
}

.calendar-page-section {
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.calendar-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: 1rem;
  align-items: start;
}

.calendar-embed-card,
.calendar-sidebar-card {
  border: 1px solid rgba(8, 17, 31, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(8, 17, 31, 0.1);
  overflow: hidden;
}

.calendar-embed-card {
  min-width: 0;
}

.calendar-embed-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--paper);
  background:
    radial-gradient(circle at top right, rgba(200, 150, 62, 0.24), transparent 20rem),
    linear-gradient(135deg, var(--night), var(--night-2) 54%, #05070b 100%);
}

.calendar-embed-header h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
}

.calendar-embed-header .eyebrow {
  margin-bottom: 0.45rem;
}

.calendar-live-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  white-space: nowrap;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.8);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-embed-wrap {
  padding: clamp(0.65rem, 2vw, 1rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 232, 218, 0.58));
}

.calendar-embed-frame {
  display: block;
  width: 100%;
  height: min(76vh, 760px);
  min-height: 640px;
  border: 0;
  border-radius: 12px;
  background: #fff;
}

.calendar-sidebar-card {
  padding: clamp(1.1rem, 3vw, 1.35rem);
}

.calendar-sidebar-card h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.calendar-sidebar-card>p {
  margin-bottom: 1.1rem;
  color: var(--muted);
}

.calendar-page-events {
  display: grid;
  gap: 0.85rem;
}

.calendar-page-event {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.calendar-page-event .calendar-date-card {
  width: 84px;
  min-width: 84px;
  transform: rotate(-1.5deg);
}

.calendar-page-event .calendar-date-top {
  padding: 0.18rem 0.35rem;
  font-size: 0.68rem;
}

.calendar-page-event .calendar-date-main {
  padding: 0.2rem 0.25rem 0.25rem;
}

.calendar-page-event .calendar-date-main strong {
  font-size: 2.15rem;
}

.calendar-page-event .calendar-date-main small {
  display: block;
  font-size: 0.5rem;
}

.calendar-page-event h3 {
  margin-bottom: 0.35rem;
  color: var(--night);
  font-size: 1.03rem;
  line-height: 1.08;
}

.calendar-page-event p {
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.calendar-page-event .event-meta {
  margin-top: 0;
}

.calendar-page-event .event-meta span {
  min-height: 28px;
  font-size: 0.78rem;
}

.calendar-page-event .event-address-link span {
  line-height: 1.25;
}

.calendar-page-event-actions {
  display: flex;
  justify-content: flex-end;
  grid-column: 1 / -1;
}

.calendar-page-note {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  color: rgba(255, 250, 241, 0.78);
  background:
    linear-gradient(135deg, rgba(8, 17, 31, 0.96), rgba(45, 93, 124, 0.76));
}

.calendar-page-note strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--paper);
}

.calendar-page-note p {
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.92rem;
}

.calendar-event-modal-date {
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;

  color: rgba(255, 250, 241, 0.72);

  font-size: 2rem;
  font-weight: 700;

  letter-spacing: 0.02em;
}

.calendar-note {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  max-width: 40rem;
}

/* ======== */
/*  FOOTER  */
/* ======== */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.site-footer div {
  display: grid;
}

.site-footer strong {
  color: var(--night);
}

.site-footer a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

/* =================== */
/*  DEMO DIALOG MODAL  */
/* =================== */

.inline-info-button {
  display: inline;
  margin-left: 0.35rem;
  padding: 0;
  vertical-align: baseline;
}

.demo-info {
  margin-top: 1.5rem;
  max-width: 900px;
}

.demo-info h3 {
  margin-bottom: 0.5rem;
}

.demo-info p {
  margin-bottom: 0.8rem;
}

[data-demo-modal] h2 {
  color: var(--paper);
}

[data-demo-modal] p {
  color: rgba(255, 255, 255, 0.82);
}

/* ============= */
/*  VIDEO MODAL  */
/* ============= */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 1rem;
}

.video-modal.is-open {
  display: grid;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.video-modal-window {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  /* aspect-ratio: 16 / 9; */
  border-radius: 12px;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.video-modal-window.is-video {
  aspect-ratio: 16 / 9;
}

.video-modal-window iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

.video-close {
  position: absolute;
  right: 0;
  top: -3rem;
  border: 0;
  color: var(--paper);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

/* ============= */
/*     MOTION    */
/* ============= */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 150ms;
}

.delay-3 {
  transition-delay: 210ms;
}

@media (max-width: 640px) {
  .eyebrow-logo img {
    height: clamp(88px, 28vw, 132px);
  }

  .hero h1 {
    font-size: clamp(2.05rem, 11vw, 3.45rem);
  }

  .rotating-word {
    font-size: 0.86em;
    white-space: normal;
  }

  .rotating-word span {
    white-space: normal;
  }
}

@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;
  }
}

@media (max-width: 1040px) {

  .calendar-hero,
  .calendar-page-grid {
    grid-template-columns: 1fr;
  }

  .calendar-hero-actions {
    justify-content: flex-start;
  }

  .calendar-sidebar-card {
    order: -1;
  }

  .split-section,
  .booking-panel,
  .contact-grid,
  .member-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .event-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .event-actions {
    grid-column: 2;
    justify-content: flex-start;
  }

  .booking-actions {
    justify-content: flex-start;
  }

  .member-portrait-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.55fr) 1fr;
  }

  .member-portrait-card img {
    height: 100%;
    max-height: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
    border-radius: 18px;
    opacity: 1 !important;
  }

  .site-header.is-compact {
    padding: 0.32rem 0.7rem;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-header.is-compact .nav-toggle {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
  }

  .site-nav {
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    background: rgba(255, 250, 241, 0.96);
    box-shadow: 0 18px 50px rgba(8, 17, 31, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
  }

  .site-header.is-compact .site-nav {
    top: calc(100% + 0.35rem);
    background: rgba(8, 17, 31, 0.96);
  }

  .site-header.is-compact .site-nav a {
    color: rgba(255, 250, 241, 0.86);
  }

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

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

.hero-sound-toggle {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 10;
  pointer-events: auto;
}

.hero-video-link {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;

  z-index: 20;
  pointer-events: auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--paper);
}

.hero-video-link:hover {
  background: rgba(255, 255, 255, 0.22);
}

.more-videos-page-body {
  min-height: 100vh;
}

.more-videos-hero {
  padding-top: 9rem;
  padding-bottom: 2rem;
}

.more-videos-hero .section-heading {
  max-width: 760px;
}

.more-videos-hero h1 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
}

.more-videos-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

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

.more-video-card {
  min-height: 100%;
}

@media (max-width: 1000px) {
  .more-videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .more-videos-grid {
    grid-template-columns: 1fr;
  }

  .more-videos-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {

  .calendar-page-body main {
    padding-top: 6.6rem;
  }

  .calendar-hero h1 {
    font-size: clamp(2.6rem, 15vw, 4.1rem);
  }

  .calendar-embed-header {
    flex-direction: column;
  }

  .calendar-embed-frame {
    height: 680px;
    min-height: 680px;
  }

  .calendar-page-event {
    grid-template-columns: 1fr;
  }

  .calendar-page-event .calendar-date-card {
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .calendar-event-modal-window {
    width: calc(100vw - 1rem);
    max-height: calc(100vh - 2rem);
    margin: 0.5rem;
  }

  .section-shell,
  .site-header,
  .site-footer {
    width: min(100% - 1rem, var(--max));
  }

  .site-header.is-compact {
    width: 100%;
  }

  .brand-text small {
    display: none;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  h1 {
    font-size: clamp(2.75rem, 16vw, 4.2rem);
  }

  .hero-copy {
    width: min(100% - 1rem, var(--max));
  }

  .video-grid,
  .member-grid {
    grid-template-columns: 1fr;
  }

  .event-date {
    min-height: 88px;
  }

  .event-actions {
    grid-column: auto;
  }

  .event-main {
    min-width: 0;
  }

  .event-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
  }

  .event-date {
    min-height: 82px;
  }

  .event-main h3 {
    font-size: 1rem;
    line-height: 1.1;
    margin-bottom: 0.45rem;
  }

  .event-meta {
    margin-top: 0.55rem;
  }

  .event-meta span {
    font-size: 0.74rem;
    min-height: 26px;
    padding: 0.28rem 0.5rem;
  }

  .event-main-push {
    margin-left: 24px;
  }

  .member-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: stretch;
  }

  .member-photo {
    min-height: 100%;
    height: 100%;
  }

  .member-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .member-info h3 {
    margin-bottom: 0.35rem;
    font-size: 1rem;
    line-height: 1.1;
  }

  .member-role {
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
  }

  .member-info p {
    margin-bottom: 0.55rem;
    font-size: 0.9rem;
  }

  .member-info .more-link {
    margin-top: auto;
  }

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

  [data-demo-modal] .video-modal-window {
    aspect-ratio: auto;
    height: auto;
    max-height: 82vh;
    overflow-y: auto;
  }

  .video-modal {
    align-items: flex-start;
    padding-top: 4rem;
    padding-bottom: 2rem;
    overflow-y: auto;
  }

  .video-modal-window {
    width: 100%;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
  }

  .video-close {
    top: 0.75rem;
    right: 0.75rem;
    z-index: 20;
    padding: 0.35rem 0.55rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.55);
  }

  .video-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: stretch;
  }

  .video-thumb {
    min-height: 100%;
    height: 100%;
  }

  .video-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .video-card-body h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }

  .video-card-body p {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
}

.dropdown-menu {
  background: #fffaf1;
  border: 1px solid rgba(200, 150, 62, .20);
  border-radius: 14px;
  padding: .5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.dropdown-item {
  border-radius: 10px;
  padding: .65rem .85rem;
  color: var(--ink);
}

.dropdown-item:hover {
  background: rgba(200, 150, 62, .12);
}

.dropdown-submenu>.dropdown-menu {
  margin-left: .5rem;
}

/* =========================== */
/*   CALENDAR MODAL FINAL FIX  */
/* =========================== */

@media (max-width: 640px) {
  .calendar-sidebar-card {
    display: none;
  }
}

.calendar-event-modal-window {
  position: relative !important;
  /* width: min(720px, 96vw) !important; */
  max-height: min(88vh, 900px) !important;
  overflow-y: auto !important;
  border-radius: 18px !important;
  background:
    linear-gradient(135deg,
      rgba(8, 17, 31, 0.98),
      rgba(17, 29, 49, 0.98)) !important;
  color: var(--paper) !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35) !important;
}

@media (max-width: 640px) {

  .fc .fc-toolbar {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: stretch;
  }

  .fc .fc-toolbar-chunk {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .fc .fc-toolbar-title {
    font-size: 2rem;
    line-height: 0.95;
    text-align: center;
  }

  .fc .fc-button {
    min-height: 38px;
    padding: 0.45rem 0.7rem;
    font-size: 0.9rem;
  }

  .fc .fc-prev-button,
  .fc .fc-next-button {
    min-width: 42px;
  }

  .fc .fc-daygrid-day-number {
    padding: 0.25rem;
    font-size: 0.85rem;
  }

}

@media (max-width: 640px) {
  .calendar-event-modal-window {
    /* width: calc(100vw - 1rem) !important; */
    max-height: calc(100vh - 2rem) !important;
    margin: 0.5rem !important;
    border-radius: 16px !important;
  }

  .calendar-event-modal-content {
    padding:
      1.15rem 1rem 1.25rem !important;
  }

  .calendar-event-modal-meta {
    grid-template-columns: 1fr !important;
  }
}

/* ===== SONG INDEX PAGE STYLES ===== */

:root {
  --ink: #111827;
  --muted: #647082;
  --paper: #fbf6ed;
  --paper-2: #f2e8da;
  --night: #08111f;
  --night-2: #111d31;
  --brass: #c8963e;
  --brass-2: #e3c47d;
  --blue: #2d5d7c;
  --line: rgba(17, 24, 39, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 17, 31, 0.14);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 150, 62, 0.16), transparent 30rem),
    radial-gradient(circle at 85% 8%, rgba(45, 93, 124, 0.12), transparent 25rem),
    linear-gradient(180deg, #fffaf1 0%, var(--paper) 46%, #fff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  min-height: 100vh;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.songIndex-section-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.songIndex-page-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  background:
    radial-gradient(circle at top left, rgba(200, 150, 62, 0.13), transparent 28rem),
    linear-gradient(180deg, #fffaf1 0%, #f6efe4 54%, #fff 100%);
}

.songIndex-page-body main {
  flex: 1;
  padding-top: clamp(7rem, 11vw, 9rem);
}

/* 
	.songIndex-page-body {
	  background:
		radial-gradient(circle at top left, rgba(200, 150, 62, 0.13), transparent 28rem),
		linear-gradient(180deg, #fffaf1 0%, #f6efe4 54%, #fff 100%);
	}
	
	.songIndex-page-body main {
	  padding-top: clamp(7rem, 11vw, 9rem);
	}
 */

.songIndex-site-header {
  position: sticky;
  top: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.86);
  box-shadow: 0 18px 50px rgba(8, 17, 31, 0.08);
  backdrop-filter: blur(18px);
}

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

.songIndex-brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 10px 22px rgba(8, 17, 31, 0.18);
}

.songIndex-brand-text {
  display: grid;
  line-height: 1.1;
}

.songIndex-brand-text strong {
  color: var(--night);
  font-size: 0.98rem;
}

.songIndex-brand-text small {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.songIndex-site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.songIndex-site-nav a {
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  color: rgba(17, 24, 39, 0.76);
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.songIndex-site-nav a:hover {
  color: var(--ink);
  background: rgba(8, 17, 31, 0.07);
  transform: translateY(-1px);
}

.songIndex-site-nav .songIndex-nav-cta {
  color: var(--paper);
  background: var(--night);
}

.songIndex-site-nav .songIndex-nav-cta:hover {
  color: var(--paper);
  background: var(--blue);
}

.songIndex-song-hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(1.5rem, 4vw, 3rem);
}

.songIndex-song-hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.98) 0%, rgba(10, 20, 36, 0.98) 44%, rgba(17, 29, 49, 0.94) 100%),
    radial-gradient(circle at top right, rgba(200, 150, 62, 0.22), transparent 22rem);
  box-shadow: var(--shadow);
}

.songIndex-song-hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 22%, rgba(227, 196, 125, 0.18), transparent 16rem),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 100%);
}

.songIndex-song-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.5rem, 4vw, 3.2rem);
}

.songIndex-song-logo {
  width: clamp(150px, 18vw, 255px);
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.35));
}

.songIndex-eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brass-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.songIndex-song-hero h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: var(--paper);
  font-size: clamp(2.7rem, 7vw, 6rem);
}

.songIndex-song-hero p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.76);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.songIndex-controls-card,
.songIndex-song-card,
.songIndex-property-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(8, 17, 31, 0.06);
}

.songIndex-controls-card {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  margin-bottom: 1.25rem;
}

.songIndex-filter-row,
.songIndex-search-row,
.songIndex-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.songIndex-filter-row {
  justify-content: space-between;
}

.songIndex-filter-pills {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.songIndex-filter-pill,
.songIndex-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 0.95rem;
  border: 0;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.songIndex-filter-pill {
  color: var(--night);
  background: rgba(8, 17, 31, 0.075);
}

.songIndex-filter-pill:hover,
.songIndex-button:hover {
  transform: translateY(-2px);
}

.songIndex-filter-pill.songIndex-is-active {
  color: var(--paper);
  background: linear-gradient(135deg, var(--night), var(--blue));
  box-shadow: 0 8px 8px rgba(45, 93, 124, 0.18);
}

.songIndex-filter-pill.is-active {
  background: rgba(200, 150, 62, 0.16);
  border-color: rgba(255, 255, 255, .45);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}

.songIndex-song-row {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(45, 93, 124, .12);
  background: white;
}

.songIndex-song-row:last-child {
  border-bottom: none;
}

.songIndex-song-list {
  overflow: hidden;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(45, 93, 124, .10);
  margin-top: 1.5rem;
}

.songIndex-button-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--night), var(--blue));
  box-shadow: 0 8px 8px rgba(45, 93, 124, 0.25);
}

.songIndex-button-secondary {
  color: var(--night);
  background: rgba(8, 17, 31, 0.075);
}

.songIndex-search-form {
  display: grid;
  gap: 0.9rem;
}

.songIndex-search-row {
  align-items: stretch;
}

.songIndex-search-input {
  flex: 1 1 280px;
  width: 100%;
  min-height: 48px;
  padding: 0.82rem 0.95rem;
  border: 1px solid rgba(8, 17, 31, 0.12);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.songIndex-search-input:focus {
  border-color: rgba(45, 93, 124, 0.55);
  box-shadow: 0 0 0 4px rgba(45, 93, 124, 0.12);
}

.songIndex-sort-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
  user-select: none;
}

.songIndex-sort-toggle input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--blue);
}

.songIndex-song-count {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.songIndex-song-list {
  display: grid;
  gap: 0;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 18px 44px rgba(8, 17, 31, 0.06);
  border: 1px solid var(--line);
}

.songIndex-song-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  border-radius: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.songIndex-song-card:first-child {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.songIndex-song-card:last-child {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom: none;
}

.songIndex-song-card:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 93, 124, 0.24);
  box-shadow: 0 22px 52px rgba(8, 17, 31, 0.09);
}

.songIndex-song-number {
  display: grid;
  width: 76px;
  min-height: 58px;
  place-items: center;
  border-radius: 10px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--night), var(--blue));
  font-weight: 950;
  letter-spacing: -0.04em;
  box-shadow: 0 10px 24px rgba(45, 93, 124, 0.16);
}

.notice-text {
  text-transform: none;
  font-weight: 400;
  letter-spacing: normal;
}

.notice-text-eyebrow {
  margin: 0 0 0.8rem;
  color: #ff3e3e;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.songIndex-song-main {
  min-width: 0;
  flex: 1;
}

.songIndex-song-title {
  margin-bottom: 0.32rem;
  color: var(--night);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.songIndex-song-style {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.songIndex-song-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  min-width: max-content;
}

.songIndex-song-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.35rem 0.62rem;
  border-radius: 8px;
  color: var(--night);
  background: rgba(200, 150, 62, 0.16);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.songIndex-instrument-pill {
  display: inline-flex;
  align-items: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 93, 124, .18);
  background: rgba(255, 255, 255, .75);
  text-decoration: none;
  color: inherit;
  font-size: .85rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .parts-container .songIndex-button {
    padding: .3rem .6rem;
    font-size: .8rem;
    border-radius: 8px;
    min-height: 10px;
  }
}

.songIndex-song-badge.songIndex-vocal {
  background: #fbcfcf;
}

.songIndex-song-key {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.songIndex-empty-state,
.songIndex-error-state {
  padding: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}

.songIndex-empty-state h2,
.songIndex-error-state h2 {
  margin-bottom: 0.5rem;
  color: var(--night);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.songIndex-empty-state p,
.songIndex-error-state p {
  margin-bottom: 0;
  color: var(--muted);
}

.songIndex-mobile-meta {
  display: none;
}

.songIndex-property-card {
  margin-bottom: clamp(2rem, 6vw, 4rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(8, 17, 31, 0.98), rgba(17, 29, 49, 0.98)),
    radial-gradient(circle at top right, rgba(200, 150, 62, 0.18), transparent 20rem);
  text-align: center;
}

.songIndex-property-logo {
  width: clamp(120px, 20vw, 190px);
  margin: 0 auto 1.15rem;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.35));
}

.songIndex-property-card p {
  margin-bottom: 0.35rem;
  color: rgba(255, 250, 241, 0.72);
}

.songIndex-property-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--paper);
  font-size: 1.05rem;
}

.songIndex-property-card a {
  color: var(--brass-2);
  font-weight: 850;
  text-decoration: none;
}

.songIndex-site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.songIndex-site-footer strong {
  display: block;
  color: var(--night);
}

.songIndex-footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.songIndex-footer-links a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.songIndex-mobile-meta {
  display: none;
}

.songIndex-mobile-right {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.youtube-icon {
  color: #ff0033;
  text-decoration: none;
}

.youtube-icon:hover {
  opacity: 0.8;
}

.songIndex-break {
  margin: 12px;
  padding: .9rem 1.25rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 10px;
  text-transform: uppercase;
  margin: 24px;
  border: 1px solid rgba(200, 150, 62, .35);
  background: rgba(200, 150, 62, .08);
  color: var(--ink);
}

.songIndex-before-break,
.songIndex-before-unlisted {
  border-bottom: none;
}

.songIndex-unlisted {
  margin: 12px;
  padding: .9rem 1.25rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 10px;
  text-transform: uppercase;
  margin: 24px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.08);
  color: var(--ink);
}

.songIndex-filter-pill-export {
  background: #198754;
  color: white;
  border-color: #198754;
}

.songIndex-filter-pill-export:hover {
  background: #157347;
  border-color: #157347;
  color: white;
}

.songIndex-empty-state {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--ink);
}

.songIndex-empty-state i {
  font-size: 4rem;
  opacity: .25;
  margin-bottom: 1rem;
}

.songIndex-empty-state h3 {
  margin: 0 0 .5rem;
  font-size: 1.3rem;
}

.songIndex-empty-state p {
  margin: 0;
  opacity: .7;
}

.songIndex-empty-link {
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.songIndex-empty-link:hover {
  text-decoration: underline;
}

.desktop-label {
  display: inline;
}

.mobile-label {
  display: none;
}

.songIndex-current-setlist-mobile {
  display: none;
}

.songIndex-filter-pill-export i {
  margin-right: .4rem;
}

@media (max-width: 768px) {

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {

  .songIndex-song-style {
    display: none;
  }

  .songIndex-mobile-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .25rem;
  }

  .songIndex-mobile-meta .songIndex-song-key {
    margin: 0;
  }

  .songRow .d-flex.gap-3.align-items-start {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .songIndex-site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .songIndex-site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .songIndex-song-hero-content {
    grid-template-columns: 1fr;
  }

  .songIndex-song-logo {
    width: 145px;
  }

  .songIndex-search-input {
    flex: none;
    width: 100%;
  }

  .songIndex-filter-row,
  .songIndex-meta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .songIndex-song-count {
    margin-left: 0;
  }

  .songIndex-search-row {
    flex-direction: column;
  }

  .songIndex-song-card {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
  }

  .songIndex-song-number {
    width: 56px;
    min-height: 54px;
    font-size: 1.1rem;
  }

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

  .songIndex-footer-links {
    justify-content: flex-start;
  }

  .songIndex-mobile-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .25rem;
  }

  .songIndex-mobile-meta .songIndex-song-badge,
  .songIndex-mobile-meta .songIndex-song-key {
    margin: 0;
  }

  .songRow .songIndex-song-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin-top: .25rem;
  }

  .songIndex-song-style {
    display: block;
  }

}

@media (max-width: 460px) {

  .songIndex-section-shell,
  .songIndex-site-header,
  .songIndex-site-footer {
    width: min(100% - 1rem, var(--max));
  }

  .songIndex-brand-logo {
    width: 46px;
    height: 46px;
  }

  .songIndex-brand-text small {
    display: none;
  }

  .songIndex-site-nav a {
    padding: 0.62rem 0.7rem;
  }

  .songIndex-song-hero h1 {
    font-size: clamp(2.35rem, 14vw, 3.7rem);
  }

  .songIndex-filter-pills {
    display: flex;
    width: 100%;
    gap: .5rem;
  }

  .songIndex-filter-pill {
    flex: 1;
    min-width: 0;
  }

  .songIndex-filter-pill-export {
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {

  .songIndex-filter-pill-export .export-text {
    display: none;
  }

  .songIndex-filter-pill-export {
    min-width: 80px;
  }

  .songIndex-filter-pill-export i {
    margin: 0;
    font-size: 1.2rem;
    margin-right: 0;
  }
}

@media (max-width: 768px) {

  .songIndex-current-setlist-mobile {
    display: block;
    margin-top: .75rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--muted);
  }

  .songIndex-current-setlist-mobile i {
    margin-right: .4rem;
    opacity: .7;
  }
}

@media (max-width: 768px) {

  .songIndex-song-style {
    display: none;
  }

  .songIndex-song-badges {
    display: none;
  }

  .songIndex-band-page .songIndex-song-style {
    display: block;
  }

  .songIndex-band-page .songIndex-song-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin-top: .25rem;
  }

}