/* Production polish layered over the generated Pages artifact. */
:root {
  /* Swabbies Custom Brand Palette: Blend beachy gold, sunset crimson, and rich deep riverfront greens */
  --color-primary: #cba052 !important; /* Famous Swabbies Gold */
  --color-primary-light: #e6c587 !important;
  --color-primary-dark: #8c6a2f !important;
  --color-accent: #9a2b2b !important; /* Sunset Crimson */
  
  /* Elegant transition to a rich, organic deep forest green-black background scale */
  --color-bg-primary: #060b06 !important;   /* Subtle riverfront forest green tone */
  --color-bg-secondary: #0b120c !important; /* Card background scales */
  --color-bg-tertiary: #121e13 !important;  /* Section backgrounds */
  --color-bg-card: #0d170e !important;
  --color-bg-elevated: #162618 !important;
  --color-bg-input: #080d08 !important;
  --color-border: rgba(203, 160, 82, 0.15) !important;
  --color-border-subtle: rgba(203, 160, 82, 0.08) !important;

  --color-swabbies-green: #1e3f20;
  --color-swabbies-green-light: #2d5a27;
  --color-swabbies-green-dark: #122513;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero__title,
.genre-title,
.songs-title,
.artist__name {
  letter-spacing: 0 !important;
}

.site-footer .footer__nav:last-child ul {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.footer__contact-note {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.hero {
  min-height: 92dvh !important;
}

.video-showcase {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(203, 160, 82, .34);
  background: #080808;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .55);
}

.video-showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
}

.video-showcase__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .04), rgba(5, 5, 5, .86)),
    linear-gradient(90deg, rgba(5, 5, 5, .88), rgba(5, 5, 5, .18) 72%);
}

.video-showcase__kicker,
.gallery-caption__label,
.song-request__kicker {
  display: block;
  margin-bottom: .55rem;
  color: var(--color-primary);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.video-showcase__title {
  max-width: 12ch;
  margin: 0 0 .75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: .94;
  text-transform: uppercase;
}

.video-showcase__copy {
  max-width: 48ch;
  color: rgba(255, 255, 255, .78);
  font-size: var(--text-base);
}

.video-showcase__badge {
  flex: 0 0 auto;
  min-width: 8.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .52);
  text-align: center;
  backdrop-filter: blur(14px);
}

.video-showcase__badge strong {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
}

.video-showcase__badge span {
  color: rgba(255, 255, 255, .72);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gallery-item--pro {
  align-items: stretch !important;
  justify-content: stretch !important;
  color: #fff !important;
}

.gallery-item--pro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.05);
  transition: transform .5s var(--ease-out), opacity .5s var(--ease-out);
}

.gallery-item--pro:hover img {
  transform: scale(1.035);
  opacity: .82;
}

.gallery-item--pro:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .82));
}

.gallery-item--pro:hover:after {
  display: none;
}

.gallery-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
}

.gallery-caption strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.song-request--pro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-xl);
  border: 1px solid rgba(203, 160, 82, .26);
  background:
    linear-gradient(135deg, rgba(203, 160, 82, .11), rgba(154, 43, 43, .08)),
    #0a0a0a;
}

.song-request--pro h2 {
  margin-bottom: .65rem;
  font-size: var(--text-3xl);
}

.song-request--pro p {
  color: rgba(255, 255, 255, .72);
}

.song-request__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-end;
}

.songs-page .controls__inner,
.party-controls,
.login-panel,
.queue-modal__content,
.host-app .panel,
.setup-panel,
.code-panel {
  border-color: rgba(255, 255, 255, .12) !important;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .42);
}

.songs-page .song {
  min-height: 3.9rem;
}

.songs-page .song:hover {
  border-color: rgba(203, 160, 82, .18);
}

.song__add-btn,
.avatar-choice,
.song__select-btn,
.queue-action {
  min-width: 2.4rem;
}

.avatar-choice--selected {
  box-shadow: inset 0 0 0 1px var(--avatar-accent), 0 10px 24px rgba(0, 0, 0, .26);
}

.party-hero p,
.join-copy,
.fine-print {
  color: rgba(255, 255, 255, .72) !important;
}

.host-app--display .quick-actions,
.host-app--display .dash-sidebar {
  opacity: .06;
  transition: opacity .2s ease;
}

.host-app--display .quick-actions:hover,
.host-app--display .dash-sidebar:hover {
  opacity: 1;
}

.form-success,
#contact-success {
  border: 1px solid rgba(74, 124, 89, .42);
  background: rgba(74, 124, 89, .14);
}

@media (max-width: 760px) {
  .video-showcase__overlay,
  .song-request--pro {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .video-showcase__overlay {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .video-showcase__badge {
    min-width: 0;
  }

  .masonry-gallery {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 260px !important;
  }

  .gallery-item {
    grid-row: span 1 !important;
  }

  .song-request__actions {
    justify-content: stretch;
  }

  .song-request__actions .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .more-drawer__content[data-astro-cid-ltxpr5xc] {
    max-height: min(82vh, 720px);
    display: flex;
    flex-direction: column;
  }

  .more-drawer__list[data-astro-cid-ltxpr5xc] {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-sm);
  }

  .bottom-nav__label[data-astro-cid-ltxpr5xc] {
    font-size: 0.6rem;
  }
}

.tools-hero {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.72), var(--color-bg-primary)),
    url("/images/photos/swabbies-stage.png") center / cover;
}

.tools-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: var(--space-2xl);
  align-items: end;
  min-height: min(68vh, 720px);
}

.tools-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.tools-hero__panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-lg);
  display: grid;
  gap: var(--space-sm);
}

.tools-hero__panel span {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tools-hero__panel span:last-child {
  border-bottom: 0;
  color: var(--color-primary-light);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
}

.tool-card {
  min-height: 280px;
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  color: var(--color-text-primary);
  transition:
    transform var(--duration-normal) var(--ease-out),
    border-color var(--duration-normal) var(--ease-out),
    background var(--duration-normal) var(--ease-out);
}

.tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(203, 160, 82, 0.7);
  background: linear-gradient(180deg, rgba(203, 160, 82, 0.12), rgba(255, 255, 255, 0.02));
}

.tool-card--primary {
  border-color: rgba(203, 160, 82, 0.55);
  background: linear-gradient(180deg, rgba(203, 160, 82, 0.16), rgba(255, 255, 255, 0.02));
}

.tool-card__eyebrow {
  color: var(--color-primary-light);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.tool-card h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.tool-card p {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.tool-card__cta {
  margin-top: auto;
  padding-top: var(--space-lg);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

@media (max-width: 768px) {
  .tools-hero__layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: var(--space-xl);
  }

  .tools-hero__actions .btn {
    width: 100%;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .tool-card {
    min-height: 220px;
  }
}

/* Announcement Bar Styles */
.announcement-bar {
  background: linear-gradient(90deg, #9a2b2b 0%, #cba052 50%, #8c6a2f 100%);
  color: #ffffff;
  padding: 0.65rem 1rem;
  font-size: var(--text-sm);
  text-align: center;
  position: relative;
  z-index: var(--z-sticky);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.announcement-bar__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: var(--container-xl);
  margin: 0 auto;
}

.announcement-bar__badge {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 0.15rem 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.62rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.announcement-bar__text {
  font-weight: 500;
  letter-spacing: 0.03em;
}

.announcement-bar__link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.2s ease;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.announcement-bar__link:hover {
  opacity: 0.85;
  color: #ffffff;
}

/* Partnership Badge in Hero */
.partnership-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  background: rgba(5, 5, 5, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 1.35rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.8s var(--ease-out);
}

.partnership-badge__kicker {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-transform: uppercase;
  line-height: 1;
}

.partnership-badge__logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.partnership-logo-ri {
  height: 22px;
  width: auto;
}

.partnership-x {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-base);
  font-weight: 300;
}

.partnership-logo-swabbies {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Residency Section */
.swabbies-residency {
  background: 
    radial-gradient(circle at 100% 0%, rgba(203, 160, 82, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(154, 43, 43, 0.06) 0%, transparent 40%),
    var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-section);
}

.swabbies-residency::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: var(--texture-grain);
  opacity: 0.02;
  pointer-events: none;
}

.residency-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-2xl);
  align-items: center;
}

.residency-title {
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 0.96;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, #ffffff 0%, var(--color-secondary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.residency-lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.residency-lead strong {
  color: var(--color-primary-light);
}

.residency-copy {
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

.residency-copy strong {
  color: #ffffff;
}

.residency-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.residency-feature {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.residency-feature__icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.residency-feature div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.residency-feature div strong {
  font-size: var(--text-base);
  color: #ffffff;
  font-family: var(--font-body);
}

.residency-feature div span {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.residency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

/* Calendar Card */
.residency-calendar-card {
  background: 
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%),
    rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(203, 160, 82, 0.35);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.residency-calendar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #9a2b2b, #cba052);
}

.residency-calendar-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: var(--space-md);
}

.residency-calendar-logo {
  height: 70px;
  width: auto;
  margin: 0 auto var(--space-sm) auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.residency-calendar-header h3 {
  font-size: var(--text-2xl);
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.residency-calendar-header p {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-light);
  margin: 0 auto;
}

.calendar-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.calendar-item {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-sm) var(--space-md);
  transition: all 0.3s var(--ease-out);
}

.calendar-item:hover {
  background: rgba(203, 160, 82, 0.05);
  border-color: rgba(203, 160, 82, 0.2);
  transform: translateX(4px);
}

.calendar-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 60px;
  height: 60px;
  text-align: center;
}

.calendar-month {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  line-height: 1;
}

.calendar-day {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.calendar-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calendar-details h4 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  color: #ffffff;
  text-transform: none;
}

.calendar-details p {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
}

.calendar-status {
  align-self: flex-start;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1px 6px;
  margin-top: 2px;
}

.calendar-status--upcoming {
  color: #ffffff;
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 10px rgba(154, 43, 43, 0.4);
}

.calendar-footer {
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.calendar-footer p {
  font-size: 0.68rem;
  color: var(--color-text-muted);
  margin: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 968px) {
  .residency-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}



/*
 ==============================================================================
   RIVER IDOL — PREMIUM RESIDENCY DESIGN SYSTEM UPGRADES
   Specialized Premium Web Designer & CSS Architect: Antigravity
   
   Incorporating Swabbies' forest green (#1e3f20), palm green (#2d5a27),
   famous gold (#cba052), and sunset crimson (#9a2b2b) into a sleek dark 
   riverfront luxury layout.
 ==============================================================================
*/

:root {
  /* Rich Brand Theme & Depth Variables */
  --color-swabbies-gold-raw: 203, 160, 82;
  --color-swabbies-green-raw: 30, 63, 32;
  --color-swabbies-palm-raw: 45, 90, 39;
  --color-swabbies-crimson-raw: 154, 43, 43;

  /* Premium Glowing Shadows */
  --shadow-glow-emerald: 0 0 30px rgba(var(--color-swabbies-palm-raw), 0.25);
  --shadow-glow-gold: 0 0 25px rgba(var(--color-swabbies-gold-raw), 0.2);
  --shadow-glow-crimson: 0 0 25px rgba(var(--color-swabbies-crimson-raw), 0.15);
  
  /* Easing Functions */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1); /* Out-expo luxury cubic-bezier curve */
}

/* ==============================================================================
   1. CUSTOM GOLD-FADE SCROLLBARS (STANDARD & WEBKIT FALLBACKS)
   ============================================================================== */

/* Native scrollbar parameters for compatible modern browsers */
html, 
.queue-modal__body, 
.more-drawer__list {
  --scrollbar-thumb: #cba052;
  --scrollbar-track: #060b06;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
}

/* Legacy WebKit fallback with glowing gold fade gradient */
@supports not (scrollbar-color: auto) {
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #060b06;
    border-left: 1px solid rgba(var(--color-swabbies-gold-raw), 0.05);
  }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #e6c587 0%, #cba052 50%, #8c6a2f 100%);
    border-radius: 4px;
    border: 1px solid rgba(6, 11, 6, 0.5);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
  }
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffffff 0%, #e6c587 50%, #cba052 100%);
    box-shadow: 0 0 10px rgba(var(--color-swabbies-gold-raw), 0.5);
  }
}

/* ==============================================================================
   2. GLASSMORPHISM OVERLAYS & CARD DEPTHS
   ============================================================================== */

/* The VIP Reservation Form Card Upgrade */
.book-form.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(var(--color-swabbies-gold-raw), 0.03) 100%), rgba(11, 18, 12, 0.8) !important;
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(var(--color-swabbies-gold-raw), 0.22) !important;
  border-radius: 12px !important;
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.06),
    var(--shadow-glow-emerald) !important;
}

/* Schedule Residency Calendar Card */
.residency-calendar-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(var(--color-swabbies-green-raw), 0.06) 100%), rgba(6, 11, 6, 0.85) !important;
  backdrop-filter: blur(20px) saturate(115%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(115%) !important;
  border: 1px solid rgba(var(--color-swabbies-gold-raw), 0.35) !important;
  border-radius: 16px !important;
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.9), 
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05),
    var(--shadow-glow-gold) !important;
  position: relative;
  overflow: hidden;
}

.residency-calendar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #9a2b2b, #cba052, #2d5a27) !important;
  z-index: 10;
}

/* Premium Glassmorphic Badges */
.badge {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 4px !important;
  padding: 0.35rem 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  transition: all 0.3s var(--ease-premium) !important;
}

.badge--accent {
  background: rgba(var(--color-swabbies-gold-raw), 0.06) !important;
  border-color: rgba(var(--color-swabbies-gold-raw), 0.35) !important;
  color: var(--color-primary-light) !important;
  box-shadow: 0 2px 10px rgba(var(--color-swabbies-gold-raw), 0.1);
}

.badge--accent:hover {
  background: rgba(var(--color-swabbies-gold-raw), 0.12) !important;
  border-color: rgba(var(--color-swabbies-gold-raw), 0.6) !important;
  transform: translateY(-1px);
}

.badge--secondary {
  background: rgba(var(--color-swabbies-palm-raw), 0.08) !important;
  border-color: rgba(var(--color-swabbies-palm-raw), 0.35) !important;
  color: #a7e0b7 !important;
  box-shadow: 0 2px 10px rgba(var(--color-swabbies-palm-raw), 0.1);
}

.badge--secondary:hover {
  background: rgba(var(--color-swabbies-palm-raw), 0.15) !important;
  border-color: rgba(var(--color-swabbies-palm-raw), 0.6) !important;
  transform: translateY(-1px);
}

/* ==============================================================================
   3. RESPONSIVE MICRO-ANIMATIONS & TRANSITIONS
   ============================================================================== */

/* Buttons transition with Out-Expo easing and ambient gold outline glows */
.btn {
  transition: 
    transform 0.4s var(--ease-premium), 
    box-shadow 0.4s var(--ease-premium), 
    background-color 0.4s var(--ease-premium),
    border-color 0.4s var(--ease-premium) !important;
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.015) !important;
  box-shadow: 
    0 15px 30px rgba(var(--color-swabbies-gold-raw), 0.3),
    0 0 20px rgba(var(--color-swabbies-palm-raw), 0.15) !important;
}

.btn--secondary:hover {
  transform: translateY(-3px) scale(1.015) !important;
  background: rgba(var(--color-swabbies-gold-raw), 0.08) !important;
  box-shadow: 
    0 15px 30px rgba(var(--color-swabbies-palm-raw), 0.25),
    0 0 20px rgba(var(--color-swabbies-gold-raw), 0.1) !important;
}

/* Header Links Interactive Underline Expansion */
.header__link {
  position: relative;
  transition: color 0.4s var(--ease-premium) !important;
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #cba052, #2d5a27);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-premium);
}

.header__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Calendar Schedule List Hover Lift */
.calendar-item {
  border-radius: 8px !important;
  transition: 
    transform 0.4s var(--ease-premium),
    background-color 0.4s var(--ease-premium),
    border-color 0.4s var(--ease-premium),
    box-shadow 0.4s var(--ease-premium) !important;
}

.calendar-item:hover {
  transform: translateY(-3px) translateX(2px) !important;
  background: rgba(var(--color-swabbies-green-raw), 0.15) !important;
  border-color: rgba(var(--color-swabbies-gold-raw), 0.4) !important;
  box-shadow: 
    0 15px 35px -10px rgba(0, 0, 0, 0.9),
    0 0 25px rgba(var(--color-swabbies-palm-raw), 0.25),
    0 0 15px rgba(var(--color-swabbies-gold-raw), 0.15) !important;
}

/* Animate Calendar Date Badge internally on hover */
.calendar-date {
  border-radius: 6px !important;
  transition: 
    transform 0.4s var(--ease-premium),
    background-color 0.4s var(--ease-premium),
    border-color 0.4s var(--ease-premium) !important;
}

.calendar-item:hover .calendar-date {
  border-color: rgba(var(--color-swabbies-gold-raw), 0.5) !important;
  background: rgba(var(--color-swabbies-palm-raw), 0.25) !important;
  transform: scale(1.05);
}

/* ==============================================================================
   4. VISUAL ACCENTS & DEPTH
   ============================================================================== */

/* Premium label glow */
.section__label {
  color: var(--color-primary-light) !important;
  text-shadow: 0 0 15px rgba(var(--color-swabbies-gold-raw), 0.35);
  font-weight: 700;
  letter-spacing: 0.2em !important;
}

/* Stunning text clip color blend gradient for headings */
.residency-title {
  background: linear-gradient(135deg, #ffffff 0%, #cba052 50%, #2d5a27 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}

/* Smooth organic transition divider */
.divider {
  background: linear-gradient(90deg, 
    transparent, 
    rgba(var(--color-swabbies-gold-raw), 0.2) 20%, 
    rgba(var(--color-swabbies-palm-raw), 0.3) 50%, 
    rgba(var(--color-swabbies-gold-raw), 0.2) 80%, 
    transparent) !important;
  height: 1px !important;
  border: none !important;
  margin-block: var(--space-2xl) !important;
}

/* Mobile drawer glassmorphism container */
.more-drawer__content {
  background: rgba(6, 11, 6, 0.88) !important;
  backdrop-filter: blur(24px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(120%) !important;
  border-left: 1px solid rgba(var(--color-swabbies-gold-raw), 0.18) !important;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.95) !important;
}

/* ==============================================================================
   5. PREMIUM FORM INPUTS & KEYBOARD FOCUS SENSITIVITY
   ============================================================================== */

/* Tactile inputs that react dynamically */
.form-input, 
.form-textarea, 
.form-select {
  background: rgba(5, 8, 5, 0.75) !important;
  border: 1px solid rgba(var(--color-swabbies-gold-raw), 0.16) !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  padding: 1.1rem 1.35rem !important;
  font-size: var(--text-sm) !important;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.6) !important;
  transition: 
    background-color 0.4s var(--ease-premium),
    border-color 0.4s var(--ease-premium),
    box-shadow 0.4s var(--ease-premium),
    transform 0.4s var(--ease-premium) !important;
}

.form-input:hover, 
.form-textarea:hover, 
.form-select:hover {
  border-color: rgba(var(--color-swabbies-gold-raw), 0.4) !important;
}

.form-input:focus, 
.form-textarea:focus, 
.form-select:focus {
  outline: none !important;
  background: rgba(var(--color-swabbies-green-raw), 0.12) !important;
  border-color: var(--color-primary-light) !important;
  box-shadow: 
    0 0 0 5px rgba(var(--color-swabbies-gold-raw), 0.15), 
    inset 0 2px 4px rgba(0, 0, 0, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.4) !important;
  transform: translateY(-2px);
}

/* Bold and atmospheric form labels */
.form-label {
  color: var(--color-primary-light) !important;
  letter-spacing: 0.12em !important;
  font-weight: 700 !important;
  text-shadow: 0 0 8px rgba(var(--color-swabbies-gold-raw), 0.15);
  margin-bottom: 0.6rem !important;
}

/* Clearly defined :focus-visible offset for a11y compliance */
.form-input:focus-visible, 
.form-textarea:focus-visible, 
.form-select:focus-visible, 
.btn:focus-visible, 
a:focus-visible {
  outline: 2px solid var(--color-primary) !important;
  outline-offset: 3px !important;
}

/* Elegant styled details block (VIP mini FAQ accordion) */
.mini-faq {
  background: rgba(11, 18, 12, 0.6) !important;
  border: 1px solid rgba(var(--color-swabbies-gold-raw), 0.15) !important;
  border-radius: 6px !important;
  transition: all 0.3s var(--ease-premium) !important;
}

.mini-faq:hover {
  border-color: rgba(var(--color-swabbies-gold-raw), 0.4) !important;
  background: rgba(var(--color-swabbies-green-raw), 0.08) !important;
}

.mini-faq summary {
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 1.1rem !important;
  transition: color 0.2s ease;
}

.mini-faq summary:hover {
  color: var(--color-primary-light) !important;
}


/* ==============================================================================
   SIZING & RESPONSIVE FIXES — May 2026 Audit
   ============================================================================== */

/* Prevent any horizontal overflow at the page level */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* Fix hero title overflow on small screens */
.hero__title {
  font-size: clamp(2.2rem, 8vw, 5.5rem) !important;
  line-height: 0.95 !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

/* Fix hero subtitle max-width so it doesn't stretch edge-to-edge */
.hero__subtitle {
  max-width: 56ch;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem) !important;
  line-height: 1.65 !important;
}

/* Fix partnership badge overflow on narrow viewports */
@media (max-width: 480px) {
  .partnership-badge {
    padding: 0.6rem 0.85rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 1rem !important;
  }
  .partnership-badge__logos {
    gap: 0.4rem !important;
  }
  .partnership-logo-ri {
    height: 16px !important;
  }
  .partnership-logo-swabbies {
    height: 32px !important;
  }
  .partnership-badge__kicker {
    font-size: 0.5rem !important;
  }
  .hero__eyebrow {
    font-size: 0.7rem !important;
  }
}

/* Fix announcement bar text wrapping/overflow on mobile */
@media (max-width: 600px) {
  .announcement-bar {
    padding: 0.5rem 0.65rem !important;
    font-size: 0.72rem !important;
  }
  .announcement-bar__container {
    gap: 0.35rem !important;
  }
  .announcement-bar__badge {
    font-size: 0.52rem !important;
    padding: 0.1rem 0.35rem !important;
  }
  .announcement-bar__text {
    display: none !important;
  }
  .announcement-bar__link {
    font-size: 0.65rem !important;
  }
}

/* Fix trust bar items squishing on mobile */
@media (max-width: 480px) {
  .trust-bar__inner {
    gap: var(--space-sm) !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .trust-bar__value {
    font-size: clamp(1.2rem, 4.5vw, 1.6rem) !important;
  }
  .trust-bar__label {
    font-size: 0.6rem !important;
  }
}

/* Fix residency calendar card min-width causing horizontal overflow */
.residency-calendar-card {
  min-width: 0 !important;
  overflow: hidden !important;
}

@media (max-width: 480px) {
  .residency-grid {
    gap: var(--space-lg) !important;
  }
  .residency-title {
    font-size: clamp(1.6rem, 6vw, 2.4rem) !important;
  }
  .residency-lead {
    font-size: var(--text-base) !important;
  }
  .residency-actions {
    flex-direction: column !important;
  }
  .residency-actions .btn {
    width: 100% !important;
    text-align: center !important;
  }
  .calendar-item {
    padding: var(--space-xs) var(--space-sm) !important;
  }
  .calendar-date {
    min-width: 48px !important;
    height: 48px !important;
  }
  .calendar-day {
    font-size: var(--text-lg) !important;
  }
  .calendar-details h4 {
    font-size: var(--text-sm) !important;
  }
}

/* Fix gallery images consistent aspect-ratio on all screen sizes */
.masonry-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-auto-rows: 320px !important;
  gap: var(--space-sm) !important;
}

.gallery-item--pro {
  position: relative !important;
  overflow: hidden !important;
  border-radius: var(--radius-md) !important;
}

@media (max-width: 968px) {
  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 280px !important;
  }
}

/* Fix editorial block image sizing on tablet */
@media (max-width: 968px) {
  .editorial-block {
    grid-template-columns: 1fr !important;
  }
  .editorial-block__image {
    max-height: 400px !important;
    overflow: hidden !important;
  }
  .editorial-block__image img {
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* Fix hero section height / content cutoff on mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 100dvh !important;
    min-height: 100vh !important;
  }
  .hero__content {
    padding-top: 6rem !important;
    padding-bottom: 3rem !important;
  }
  .hero__actions {
    flex-direction: column !important;
    width: 100% !important;
  }
  .hero__actions .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

/* Fix CTA band section spacing on mobile */
@media (max-width: 480px) {
  .cta__title {
    font-size: clamp(1.4rem, 5.5vw, 2rem) !important;
  }
  .cta__sub {
    font-size: var(--text-sm) !important;
    max-width: 42ch;
    margin-inline: auto;
  }
}

/* Fix video showcase aspect ratio on very small screens */
@media (max-width: 480px) {
  .video-showcase {
    aspect-ratio: 4 / 3 !important;
  }
  .video-showcase__title {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
  }
}

/* Fix bottom nav icon sizing consistency */
.bottom-nav__icon svg {
  width: 20px !important;
  height: 20px !important;
}

/* Fix section heading sizes on mobile */
@media (max-width: 480px) {
  .section__header h2,
  .section h2 {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
  }
  .card__title {
    font-size: var(--text-base) !important;
  }
}

/* Custom cue button styling for Ableton sync */
.cue-action {
  border: 1px solid rgba(203, 160, 82, 0.45) !important;
  color: #f3d492 !important;
  background: rgba(203, 160, 82, 0.12) !important;
}
.cue-action:hover {
  background: rgba(203, 160, 82, 0.25) !important;
}


/* Summer 2026 calendar: next show + River Idol debut emphasis */
.calendar-item--next {
  background: rgba(var(--color-swabbies-green-raw), 0.22) !important;
  border-color: rgba(var(--color-swabbies-gold-raw), 0.35) !important;
}
.calendar-item--next .calendar-date {
  background: rgba(var(--color-swabbies-palm-raw), 0.3) !important;
  border-color: rgba(var(--color-swabbies-gold-raw), 0.45) !important;
}
.calendar-item--debut .calendar-day,
.calendar-item--debut .calendar-month {
  color: var(--color-primary-light);
}
.calendar-status--debut {
  color: #161006;
  background: linear-gradient(120deg, #e6c587, #cba052);
  border-color: rgba(203, 160, 82, 0.8);
  box-shadow: 0 0 12px rgba(203, 160, 82, 0.35);
}


/* --- Wishlist feature: taken-song "save for later" + host recall --- */
.song__wish-btn{display:inline-flex;align-items:center;justify-content:center;width:100%;min-height:2.35rem;margin-top:.4rem;padding:.55rem .8rem;border-radius:6px;font-size:.72rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;border:1px solid rgba(203,160,82,.5);background:transparent;color:var(--color-primary-light);cursor:pointer;transition:background .15s,color .15s,border-color .15s}
.song__wish-btn:hover{border-color:rgba(203,160,82,.9);background:rgba(203,160,82,.12)}
.song__wish-btn--saved{background:rgba(203,160,82,.92);color:#050505;border-color:var(--color-primary)}
.song--wished .song__taken-label{opacity:.65}
.preview-item--wish{border-style:dashed;border-color:rgba(203,160,82,.45);background:rgba(203,160,82,.06)}
.preview-item--wish .preview-rank{color:var(--color-primary-light)}
.wishlist-card{margin-top:1.25rem;border:1px solid rgba(203,160,82,.28);border-radius:10px;background:#ffffff08;padding:1rem 1.1rem}
.wishlist-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:.75rem}
.wishlist-head h3{margin:0;font-size:1rem;letter-spacing:.04em;text-transform:uppercase;color:var(--color-primary)}
.wishlist-count{min-width:1.6rem;text-align:center;padding:.15rem .5rem;border-radius:999px;background:rgba(203,160,82,.18);color:var(--color-primary-light);font-weight:900;font-size:.8rem}
.wishlist-items{display:flex;flex-direction:column;gap:.6rem}
.wishlist-empty{color:#ffffff80;font-size:.85rem}
.wishlist-item{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:.35rem .8rem;align-items:center;padding:.7rem .8rem;border:1px solid rgba(255,255,255,.08);border-radius:8px;background:#ffffff0a}
.wishlist-avatar{width:2.2rem;height:2.2rem;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.1rem;background:#ffffff14;grid-row:1 / span 2}
.wishlist-copy{display:flex;flex-direction:column;min-width:0}
.wishlist-name{font-weight:800;font-size:.92rem;color:#fff}
.wishlist-song{font-size:.82rem;color:#ffffffc0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.wish-badge{justify-self:start;font-size:.62rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;padding:.1rem .45rem;border-radius:999px}
.wish-badge--free{background:rgba(120,200,120,.18);color:#9be29b}
.wish-badge--taken{background:rgba(255,255,255,.1);color:#ffffff90}
.wishlist-actions{display:flex;gap:.4rem;grid-column:3;grid-row:1 / span 2}
.wish-recall{border:1px solid rgba(203,160,82,.72);background:var(--color-primary);color:#050505}
.wish-recall:disabled{opacity:.4;cursor:not-allowed;background:transparent;color:#ffffff70}
.wish-dismiss{border:1px solid rgba(255,255,255,.18);background:transparent;color:#ffffffb0}
.song--taken{opacity:1}
.song--taken .song__info{opacity:.5}
.song--taken .song__actions{flex-direction:column;align-items:stretch}
