
:root{
  --bg: #f4f1ec;
  --text: #111;
  --dark: #111;
  --light: #f4f1ec;
  --border: rgba(0,0,0,0.12);
  --borderDark: rgba(255,255,255,0.15);
}
*{ box-sizing: border-box; }
body{
  margin:0;
  font-family: Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.6;
}
.container{ max-width: 1100px; margin:0 auto; }
nav{
  position: sticky;
  top: 0;
  background: var(--bg);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  z-index: 50;
}
nav ul{
  list-style:none;
  display:flex;
  gap:1.15rem;
  padding:0;
  margin:0;
  flex-wrap: wrap;
}
nav a{
  text-decoration:none;
  color: var(--text);
  font-weight:600;
  font-size:0.95rem;
}
section{ padding: 4rem 1.25rem; }
.hero .container{
  display:flex;
  gap:3rem;
  align-items:center;
}
.hero img{
  width: 55%;
  border-radius: 10px;
  display:block;
}

.hero-media{
  width: 55%;
}
.hero-media img{
  width: 100%;
}
.photo-credit{
  font-size: 0.82rem;
  opacity: 0.75;
  margin-top: 0.45rem;
}

.hero-text h1{
  font-size: 3rem;
  margin:0;
  letter-spacing: 0.02em;
}
.hero-text strong{ display:inline-block; margin-top:0.25rem; }
.hero-text p{ margin-top:0.9rem; max-width: 58ch; }

/* Photography page: make the hero more image-forward without affecting other pages */
.hero.hero-split{
  /* slightly tighter than the default hero section */
  padding-top: 3rem;
  padding-bottom: 1.75rem;
}

.hero.hero-split .hero-media{
  width: 70%;
}

.hero.hero-split .hero-media img{
  max-height: 588px; /* 420px * 1.4 */
}

.hero.hero-split .hero-text h1{
  font-size: 2.55rem; /* ~15% smaller than 3rem */
}

@media (max-width: 900px){
  .hero.hero-split .hero-media{ width: 100%; }
}

.section-dark{
  background: var(--dark);
  color: var(--light);
}
.section-dark a{ color: var(--light); }

h2{ margin:0 0 1.25rem 0; letter-spacing: 0.01em; }

.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

/* services tiles (2x2 squares) */
.services-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.service-tile{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap: 0.75rem;
  padding: 1.2rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.28);
  aspect-ratio: 1 / 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.section-dark .service-tile{
  border-color: var(--borderDark);
  background: rgba(255,255,255,0.06);
}
.card-link:hover .service-tile{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.card-link:focus-visible .service-tile{
  box-shadow: 0 0 0 4px rgba(255,255,255,0.14);
}
.service-icon{
  width: 40px;
  height: 40px;
  opacity: 0.9;
}
@media (max-width: 520px){
  .services-grid{ grid-template-columns: 1fr; }
  .service-tile{ aspect-ratio: auto; padding: 1.1rem 1rem; }
}

.card{
  padding: 1.15rem 1.1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.28);
}
.section-dark .card{
  border-color: var(--borderDark);
  background: rgba(255,255,255,0.06);
}

.small-note{ opacity: 0.85; font-size: 0.95rem; }

.bio{
  max-width: 78ch;
}
.bio p{
  margin: 0 0 1.1rem 0;
  font-size: 1.08rem;
}
.bio p:last-child{ margin-bottom: 0; }

.embed{ width:100%; border:0; border-radius: 14px; overflow:hidden; }

.btn{
  display:inline-block;
  margin-top: 0.9rem;
  padding: 0.72rem 1.05rem;
  border-radius: 12px;
  border: 1px solid currentColor;
  color: inherit;
  text-decoration:none;
  font-weight: 700;
}
.section-dark .btn{ border-color: rgba(255,255,255,0.55); }

.embed-wrap{
  position: relative;
  max-width: 560px;
}
.embed-fallback{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 1.25rem;
  text-align:center;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.embed-fallback.show{
  opacity: 1;
  pointer-events: auto;
}
.embed-fallback p{
  margin:0;
  max-width: 52ch;
  color:#111;
  font-weight:600;
}
.embed-fallback .mini{
  display:block;
  margin-top: 0.5rem;
  font-weight:500;
  opacity:0.85;
}

footer{
  background: var(--dark);
  color: var(--light);
  padding: 3rem 1.25rem;
}
footer a{ color: inherit; text-decoration: underline; }

@media (max-width: 900px){
  section{ padding: 3rem 1.25rem; }
  .hero .container{ flex-direction: column; align-items: flex-start; }
  .hero img{ width: 100%; }
  .hero-media{ width: 100%; }
}


/* clickable cards */
.card-link{
  display:block;
  color: inherit;
  text-decoration: none;
}
.card-link:focus-visible{
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 14px;
}

/* socials icons */
.social-row{
  display:flex;
  flex-wrap:wrap;
  gap:0.8rem;
  margin-top: 1rem;
}
.icon-btn{
  display:inline-flex;
  align-items:center;
  gap:0.55rem;
  padding:0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.35);
  color: inherit;
  text-decoration:none;
  font-weight: 700;
  font-size: 0.95rem;
}
.icon{
  width: 18px;
  height: 18px;
  display:inline-block;
}
.section-dark .icon-btn{
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
}


/* socials compact + single row */
#socials {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.social-row {
  flex-wrap: nowrap;
  overflow-x: auto;
}
.social-row::-webkit-scrollbar {
  display: none;
}


/* socials compact */
#home { padding-bottom: 2rem; }
#socials {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
#bio { padding-top: 2rem; }

.social-row{
  flex-wrap: nowrap;
  gap: 0.75rem;
}

.icon-btn{
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
}



/* Live section media */
.live-videos{
  display:flex;
  gap:1rem;
  align-items:stretch;
  justify-content:space-between;
  flex-wrap:nowrap;
}
.video-card{
  display:block; position:relative;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 22px 40px rgba(0,0,0,.18);
  background:transparent;
  aspect-ratio: 16 / 9;
}
.video-card img{
  position:absolute; inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.16);
  filter:saturate(1.05) contrast(1.05);
}
.video-card .play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.15));
}
.video-card .play span{
  width:64px;
  height:64px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.video-card .play span svg{
  width:26px; height:26px;
  transform: translateX(1px);
}

.live-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

/* Uniform tiles so one odd-aspect photo doesn't blow up the grid */
.live-gallery a{
  display:block;
  aspect-ratio:4 / 3;
  overflow:hidden;
  border-radius:12px;
}

.live-gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


/* Photo credits aligned to bottom-right under galleries */
.live-gallery .photo-credit{
  grid-column: 1 / -1;
  justify-self: end;
  text-align: right;
  width: 100%;
  margin-top: 0.45rem;
  font-size: 0.82rem;
  opacity: 0.75;
  color: rgba(255,255,255,.80);
}

/* Horizontal crop option for specific gallery items */
.live-gallery a.crop-wide{ aspect-ratio: 4 / 3; }
.crop-16x9{ aspect-ratio: 16 / 9; }

/* Optional overrides */
.live-gallery a.crop-square{ aspect-ratio:1 / 1; }
.live-gallery a.crop-portrait{ aspect-ratio:3 / 4; }

.live-videos{
  display:flex;
  gap:1rem;
  align-items:stretch;
  justify-content:space-between;
  flex-wrap:nowrap;
}
.video-card{
  display:block; position:relative;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 22px 40px rgba(0,0,0,.18);
  background:transparent;
  aspect-ratio: 16 / 9;
}
.video-card img{
  position:absolute; inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.16);
  filter:saturate(1.05) contrast(1.05);
}
.video-card .play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.15));
}
.video-card .play span{
  width:64px;
  height:64px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.video-card .play span svg{
  width:26px; height:26px;
  transform: translateX(1px);
}

.live-gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:0.75rem;
  margin-top: 1.25rem;
}
.live-gallery a{
  display:block;
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
  background: rgba(0,0,0,.06);
}
/* No cropping: preserve original aspect ratios */

/* Square crop for selected Live gallery tiles */
.live-gallery a.square{
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
}
.live-gallery a.square img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.live-gallery img{
  width:100%;
  height:auto;
  display:block;
}

/* Ensure crop tiles actually crop (override the generic img rule below) */
.live-gallery a.crop-square img,
.live-gallery a.crop-vertical img{
  height: 100%;
  object-fit: cover;
}



@media (max-width: 980px){
  .live-videos{ flex-wrap:wrap; }
  .video-card{ flex: 1 1 calc(50% - 1rem); }
  .live-gallery{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .video-card{ flex: 1 1 100%; }
  .live-gallery{ grid-template-columns: 1fr; }
}

/* Video modal */
.video-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 1.25rem;
  z-index: 9999;
}
.video-modal.is-open{ display:flex; }
.video-modal .frame{
  width: min(1100px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow:hidden;
  background:#000;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  position: relative;
}
.video-modal .close{
  position:absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border:0;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.9);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.video-modal .close svg{ width:18px; height:18px; }
.video-modal iframe{
  width:100%;
  height:100%;
  border:0;
}


/* --- Live section refinements (v2.13) --- */
.video-card{
  /* Clean card (no visible frame) + consistent sizing */
  background: transparent !important;
  border: 0;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 16 / 9;
}
.video-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;

  /* Crop out YouTube thumbnail letterbox bars */
  transform: scale(1.28);
  transform-origin: center;
}

/* Only crop where explicitly requested */
.live-gallery a.crop-square,
.live-gallery a.crop-portrait{
  display:block;
  overflow:hidden;
}

.live-gallery a.crop-square{
  aspect-ratio: 1 / 1;
}

.live-gallery a.crop-portrait{
  aspect-ratio: 3 / 4;
}

.live-gallery a.crop-square img,
.live-gallery a.crop-portrait img{
  width:100%;
  height:100%;
  object-fit: cover;
}


.live-videos .video-frame{background: transparent;}

.live-videos .video-thumb{background: transparent;}

.live-videos iframe{display:block; width:100%; height:100%; border:0; background: transparent;}


/* --- Band pages --- */
.page-title{margin-top:0.5rem}
.page-hero{border-radius:22px; overflow:hidden; box-shadow:0 18px 60px rgba(0,0,0,.18); margin:1rem 0 1.25rem}
.page-hero img{
  width:100%;
  display:block;
  /* Band/service hero images should feel editorial, not overwhelming */
  max-height:380px;
  height:clamp(220px, 40vw, 380px);
  object-fit:cover;
}

/* Band page video grid (click-to-open thumbnails) */

/* Band pages: give the video section a black block background */
.video-section{
  background:#000;
  padding:28px 0;
}

.video-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
  margin-top:14px;
}

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

@media (max-width: 560px){
  .video-grid{grid-template-columns:1fr;}
}

.video-link{
  position:relative;
  display:block;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 14px 40px rgba(0,0,0,.16);
  background:linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.12));
}

.video-thumb{
  width:100%;
  height:100%;
  aspect-ratio:16/9;
  display:block;
  object-fit:cover;
  /* Crop away YouTube thumbnail letterboxing (black bars) */
  transform:scale(1.28);
  transform-origin:center;
}

.play-badge{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:800;
  color:#111;
}

.play-badge span{
  width:66px;
  height:66px;
  border-radius:999px;
  background:rgba(255,255,255,.86);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
}

.video-link:hover .play-badge span{transform:scale(1.02);}
.back-link{display:inline-block; margin:0.25rem 0 0.75rem; color:inherit; text-decoration:none; opacity:.8}
.back-link:hover{opacity:1; text-decoration:underline}
.btn-row{display:flex; flex-wrap:wrap; gap:.6rem; margin-top:.4rem}
.subhead{margin:1.25rem 0 .75rem}
.card.page-card p{margin-top:.6rem}
.card.page-card p:first-child{margin-top:0}
.card strong.one-line{white-space:nowrap; font-size:1.03rem; letter-spacing:-0.01em}
@media (max-width:520px){
  .card strong.one-line{white-space:normal}
}



.nowrap{white-space:nowrap;}

.pill-links{display:flex;flex-wrap:wrap;gap:10px;margin:14px 0 0 0;}
.pill-link{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 14px;
  border:1px solid rgba(0,0,0,.18);
  border-radius:999px;
  text-decoration:none;
  color:inherit;
  background:rgba(255,255,255,.55);
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}
.pill-link:hover{transform:translateY(-1px);box-shadow:0 14px 28px rgba(0,0,0,.10);}


/* Live videos row (click-to-open thumbnails, no borders) */
.live-videos{
  display:flex;
  gap:1rem;
  flex-wrap:nowrap;
  margin-bottom: 1.25rem;
}
.video-tile{
  flex:1 1 0;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow:hidden;
  position:relative;
  display:block;
  text-decoration:none;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  background: transparent;
}
.video-tile img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  transform: scale(1.28); /* crops out any letterbox baked into thumbs */
  transform-origin: center;
}
.video-tile .play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.15));
}
.video-tile .play span{
  width:64px;
  height:64px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.video-tile .play span svg{ width:26px; height:26px; transform: translateX(1px); }
@media (max-width: 980px){
  .live-videos{ flex-wrap:wrap; }
  .video-tile{ flex: 1 1 calc(50% - 1rem); }
}
@media (max-width: 520px){
  .video-tile{ flex: 1 1 100%; }
}



/* --- Live videos carousel (homepage) --- */
.video-carousel{
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.carousel-viewport{
  overflow: hidden;
  width: 100%;
}
.carousel-track{
  display: flex;
  gap: 1rem;
  align-items: stretch;
  justify-content: flex-start;
  scroll-behavior: smooth;
  overflow-x: auto; /* allows JS + touch scroll; scrollbar hidden below */
  padding: 0.15rem; /* keeps shadows from clipping */
}
.carousel-track::-webkit-scrollbar{ display:none; }
.carousel-track{ scrollbar-width: none; -ms-overflow-style: none; }

.video-carousel .video-tile{
  flex: 0 0 calc((100% - 4rem) / 5);
}

.carousel-btn{
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}
.carousel-btn span{
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}
.carousel-btn:disabled{
  opacity: .45;
  cursor: default;
}

@media (max-width: 980px){
  .video-carousel .video-tile{ flex-basis: calc((100% - 1rem) / 2); }
}
@media (max-width: 520px){
  .video-carousel .video-tile{ flex-basis: 100%; }
  .carousel-btn{ width: 40px; height: 40px; }
}


/* Band page video section title */
.video-title{ color:#fff; margin-top:24px; margin-bottom:10px; }


/* === Band page gallery tweaks === */
.crop-square{ aspect-ratio:1 / 1; } /* keep for older pages */
.crop-wide{ aspect-ratio:16 / 9; }

.photo-credit{
  margin-top:8px;
  text-align:right;
  font-size:0.85rem;
  color: rgba(255,255,255,.75);
}

/* Make the "videos open in a new tab" disclaimer readable on dark bg */
.muted{ color: rgba(255,255,255,.78); }


/* Night Fever gallery height fix */
.night-fever-gallery img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}


/* STRUCTURAL FIXES */
.photo-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* HERO IMAGE PHOTO CREDIT (FINAL) */
.hero-credit-overlay {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  z-index: 999;
}


/* HERO PHOTO CREDIT (UNDER IMAGE) */
.hero-media .photo-credit{
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.75;
}


/* Night Fever MKE gallery: hard guarantee square tiles */
body.band-night-fever-mke .live-gallery a { aspect-ratio: 1 / 1 !important; }
body.band-night-fever-mke .live-gallery a img { width:100%; height:100%; object-fit:cover; display:block; }



/* HERO CREDIT UNDER IMAGE (match screenshot style) */
.hero-credit-under{
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.75;
  text-align: left;
}

/* Night Fever gallery: ensure tiles are square and filled */
.live-gallery{
  display: grid;
  gap: 12px;
}

.live-gallery a{
  display:block;
  overflow:hidden;
  border-radius:12px;
}

.live-gallery a.crop-square{
  aspect-ratio: 1 / 1;
}

.live-gallery a.crop-square img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


/* Night Fever MKE gallery sizing override (match other band pages) */
body.band-night-fever-mke .live-gallery{
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1100px){
  body.band-night-fever-mke .live-gallery{ grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 800px){
  body.band-night-fever-mke .live-gallery{ grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 520px){
  body.band-night-fever-mke .live-gallery{ grid-template-columns: 1fr !important; }
}


/* Night Fever MKE: keep ONLY the 12-photo gallery and make tiles landscape */
body.band-night-fever-mke .live-gallery{
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
}
body.band-night-fever-mke .live-gallery a.crop-landscape{
  aspect-ratio: 4 / 3 !important;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}
body.band-night-fever-mke .live-gallery a.crop-landscape img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Photo credit under band photo galleries (match Night Fever styling) */
.gallery-credit{
  margin-top: 8px;
  font-size: 12px;
  color: #999;
  text-align: right;
}

/* credit alignment variants (used only where explicitly applied in HTML) */
.gallery-credit-left{
  text-align: left;
}
.gallery-credit-2row{
  line-height: 1.25;
}
.hero-credit-left{
  text-align: left;
  font-size: 12px;
  color: #999;
  margin-top: 6px;
}



@media (max-width: 1100px){
  body.band-night-fever-mke .live-gallery{ grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 800px){
  body.band-night-fever-mke .live-gallery{ grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 520px){
  body.band-night-fever-mke .live-gallery{ grid-template-columns: 1fr !important; }
}

/* Ensure gallery photo credits stay tucked bottom-right under gallery */
.gallery-credit{
  width: 100%;
  margin-top: 8px;
  font-size: 12px;
  color: #999;
  text-align: right;
}



.hero-credit-below{
  text-align:right;
  font-size:12px;
  color:#999;
  margin:6px 16px 0 0;
}



.hero-photo-credit {
  text-align: right;
  font-size: 12px;
  color: #999;
  margin: 6px 16px 0 0;
}





/* --- Chrome homepage layout polish --- */
/* Give the last row of image grids a little extra breathing room on desktop (prevents perceived cutoff) */
#live, #bands, #weddings { padding-bottom: 5.5rem; }
.live-gallery { margin-bottom: 1.25rem; }

/* Cap service tiles so they don't become huge squares on wide desktop Chrome */
@media (min-width: 900px){
  .services-grid{
    justify-content: center;
  }
  .service-tile{
    max-width: 520px;
    width: 100%;
  }
}


/* --- Chrome/Safari parity patch (do not change design; match Safari rendering) --- */

/* 1) Band hero images should NOT inherit square-crop from generic .photo-item */
.hero-media .photo-item{
  aspect-ratio: auto;
  overflow: visible;
}
.hero-media .photo-item img{
  height: auto;
}

/* Ensure "credit under image" is visible in all browsers */
.hero-credit-under{
  display: block;
}

/* 2) Live galleries: only crop when explicitly requested via class */
.live-gallery a{
  /* override earlier 'uniform tiles' rule that forced 4/3 cropping */
  aspect-ratio: auto;
}
.live-gallery img{
  /* ensure default tiles preserve image proportions */
  height: auto;
  object-fit: cover;
}

/* Re-apply cropping only for tiles that should be cropped */
.live-gallery a.crop-square,
.live-gallery a.crop-portrait,
.live-gallery a.square{
  overflow: hidden;
}
.live-gallery a.crop-square{ aspect-ratio: 1 / 1; }
.live-gallery a.crop-portrait{ aspect-ratio: 3 / 4; }
.live-gallery a.square{ aspect-ratio: 1 / 1; }

.live-gallery a.crop-square img,
.live-gallery a.crop-portrait img,
.live-gallery a.square img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 3) Services tiles: prevent oversized squares on desktop Chromium while keeping the same look */
.service-tile{
  aspect-ratio: auto;
  min-height: 170px;
}


/* Chrome row-height parity fix (Safari already does this) */

.live-gallery {
  align-items: stretch;
}

.live-gallery .photo-item {
  height: 100%;
  display: flex;
}

.live-gallery .photo-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Chrome-only flex alignment parity */

.live-gallery .photo-item {
  align-items: flex-end;
}


/* === Chrome-only fixes (keep Safari design untouched) === */
/* In Chrome, allow non-crop tiles to size naturally like Safari (prevents "all same rectangles"). */
.is-chrome .live-gallery a{
  aspect-ratio: auto !important;
}

.is-chrome .live-gallery img{
  height: auto !important;
  object-fit: unset !important;
}

/* Re-apply cropping ONLY where explicitly requested */
.is-chrome .live-gallery a.crop-square{ aspect-ratio: 1 / 1 !important; overflow:hidden !important; }
.is-chrome .live-gallery a.crop-portrait{ aspect-ratio: 3 / 4 !important; overflow:hidden !important; }
.is-chrome .live-gallery a.crop-wide,
.is-chrome .live-gallery a.crop-landscape{ aspect-ratio: 4 / 3 !important; overflow:hidden !important; }

/* These were causing the "square demon" in Chrome */
.is-chrome .live-gallery a.square{
  aspect-ratio: 4 / 3 !important;
  overflow:hidden !important;
}

/* For crop tiles, make images fill the crop */
.is-chrome .live-gallery a.crop-square img,
.is-chrome .live-gallery a.crop-portrait img,
.is-chrome .live-gallery a.crop-wide img,
.is-chrome .live-gallery a.crop-landscape img,
.is-chrome .live-gallery a.square img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display:block !important;
}

/* Keep spacing consistent in Chrome (fixes the "two tiles too close" issue) */
.is-chrome .live-gallery{
  gap: 0.75rem !important;
  row-gap: 0.75rem !important;
  column-gap: 0.75rem !important;
}

/* Night Fever video thumbs: force horizontal tiles in Chrome only */
.is-chrome .video-grid .photo-item{
  aspect-ratio: 16 / 9 !important;
}



/* === CHROME GALLERY PARITY FIX === */
/* Safari is your source-of-truth for the intended layout.
   Chrome was forcing uniform tiles via aspect-ratio + height:100%.
   These rules undo that ONLY in Chrome (html.is-chrome). */
/* Some pages had extra crop rules; neutralize them in Chrome so it matches Safari's natural sizing */
html.is-chrome .live-gallery a.crop-wide,
html.is-chrome .live-gallery a.crop-square,
html.is-chrome .live-gallery a.crop-portrait,
html.is-chrome .live-gallery a.crop-landscape,
html.is-chrome .live-gallery a.crop-16x9,
html.is-chrome .live-gallery a.square{
  aspect-ratio: auto !important;
}
/* Video thumbs: keep them horizontal in Chrome */
html.is-chrome .video-grid .photo-item,
html.is-chrome .live-videos .video-card{
  aspect-ratio: 16 / 9 !important;
}
html.is-chrome .video-grid .photo-item img,
html.is-chrome .live-videos .video-card img{
  height: 100% !important;
  object-fit: cover !important;
}
/* === END CHROME GALLERY PARITY FIX === */



/* Global justified text for all paragraphs (services + band bios) */
p{
  text-align: justify !important;
  text-justify: inter-word;
  hyphens: auto;
}


/* Photography page: stack hero image above text */
.photography-hero.hero-stacked .container{
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.photography-hero.hero-stacked .hero-media,
.photography-hero.hero-stacked .hero-text{
  width: 100%;
}
.photography-hero.hero-stacked .hero-text p{
  max-width: 70ch;
}


/* Normalize paragraph spacing */
p{
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}


/* Photography page: tighten paragraph spacing so there aren't weird gaps */
.photography-hero .hero-text p{
  margin-top: 0.75rem;
}
.photography-section .container p{
  margin-top: 0.75rem;
}


/* === GLOBAL TEXT JUSTIFY OVERRIDES (added) === */
p, li { text-align: justify; text-justify: inter-word; }
h1, h2, h3, h4, h5, h6 { text-align: left; }
.btn { text-align: center; }

/* === SERVICES PAGES UNIFORMITY (added) === */
body.service-page h1 { font-size: clamp(2.1rem, 4vw, 3rem); margin: 1.25rem 0 0.75rem; letter-spacing: 0.02em; }
body.service-page .bartending-section .container { max-width: 900px; }
body.service-page .bartending-section p { font-size: 1.05rem; }
body.service-page .hero-photo-credit { max-width: 900px; margin-left:auto; margin-right:auto; padding-left:1rem; padding-right:1rem; }



/* Band pages: Videos heading on dark video section */
.video-section .video-heading{
  margin: 0 0 10px 0;
}
.video-section .video-heading,
.video-section .video-heading strong{
  color: #fff;
}



/* Mobile nav cleanup: hide lower-priority links on small screens (desktop unchanged) */
@media (max-width: 768px){
  nav ul li:nth-child(6),
  nav ul li:nth-child(7),
  nav ul li:nth-child(8){
    display: none !important;
  }
}



/* Mobile UX: make video + photo sections horizontally scrollable (desktop unchanged) */
@media (max-width: 768px){
  /* Band-page video grids (and any other video-grid usage) */
  .video-grid{
    display:flex !important;
    flex-wrap:nowrap !important;
    overflow-x:auto !important;
    gap:14px !important;
    padding-bottom:8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .video-grid::-webkit-scrollbar{ display:none; }
  .video-grid{ scrollbar-width: none; }

  .video-grid .video-link{
    flex: 0 0 82%;
    max-width: 340px;
    scroll-snap-align: start;
  }

  /* Photo galleries (band pages + any .live-gallery sections) */
  .live-gallery{
    display:flex !important;
    flex-wrap:nowrap !important;
    overflow-x:auto !important;
    gap:12px !important;
    padding-bottom:8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .live-gallery::-webkit-scrollbar{ display:none; }
  .live-gallery{ scrollbar-width: none; }

  .live-gallery a{
    flex: 0 0 82%;
    max-width: 340px;
    scroll-snap-align: start;
  }
}



/* Mobile polish: Home page Live section (videos + photos) */
@media (max-width: 768px){
  /* Live videos carousel: force single-row swipe (no wrap) */
  .live-videos{
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .video-carousel .video-tile{
    flex: 0 0 82% !important;
    max-width: 340px;
    scroll-snap-align: start;
  }

  /* Live photo gallery: make image fill the card like band pages (no blank space) */
  .live-gallery a{
    display: block;
    overflow: hidden;
    height: 220px;
  }
  .live-gallery a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}



/* Mobile: Home page live photo scroll cards should fill cleanly (no blank space) */
@media (max-width: 768px){
  .live-gallery a{
    display:block;
    overflow:hidden;
    border-radius:18px;
    height: 220px;
  }
  .live-gallery a img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center 75%;
    display:block;
  }

  /* Home page live video row: force single-row horizontal scroll */
  .live-videos .video-carousel{
    display:flex !important;
    flex-wrap:nowrap !important;
    overflow-x:auto !important;
    gap:14px !important;
    padding-bottom:8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .live-videos .video-carousel::-webkit-scrollbar{ display:none; }
  .live-videos .video-carousel{ scrollbar-width:none; }

  .live-videos .video-tile{
    flex: 0 0 82%;
    max-width: 340px;
    scroll-snap-align: start;
  }
}

/* Night Fever: ensure photo tiles crop consistently across browsers */
body.band-night-fever-mke .live-gallery a.crop-landscape{
  aspect-ratio: 4 / 3 !important;
  overflow:hidden !important;
}
body.band-night-fever-mke .live-gallery a.crop-landscape img{
  width:100% !important;
  height:100% !important;
  object-fit: cover !important;
  object-position: center 80% !important;
  display:block;
}
body.band-night-fever-mke .live-gallery a.crop-landscape img[src*="nf_09"]{
  object-position: center 88% !important;
}



/* Mobile: preserve bottoms for specific home gallery photos (live_09-12) */
@media (max-width: 768px){
  .live-gallery a img[src*="live_09"],
  .live-gallery a img[src*="live_10"],
  .live-gallery a img[src*="live_11"],
  .live-gallery a img[src*="live_12"]{
    object-position: center 85% !important;
  }
}



/* Mobile: live_09-12 show more bottom (home page live gallery) */
@media (max-width: 768px){
  .live-gallery img[src*="live_09"],
  .live-gallery img[src*="live_10"],
  .live-gallery img[src*="live_11"],
  .live-gallery img[src*="live_12"]{
    object-position: center bottom !important;
  }
}


.narrow-text{ max-width:800px; margin:0; }



/* Mobile: prevent cropping for specific home Live photos (live_09-12) */
@media (max-width: 768px){
  .live-gallery img[src*="live_09"],
  .live-gallery img[src*="live_10"],
  .live-gallery img[src*="live_11"],
  .live-gallery img[src*="live_12"]{
    object-fit: contain !important;
    object-position: center center !important;
    background: #f3f0ea; /* match site paper tone */
  }
}



/* Mobile: live_09-12 on home Live gallery — show FULL image with no crop and no empty band by letting tile height follow the image */
@media (max-width: 768px){
  .live-gallery a[href*="live_09.jpg"],
  .live-gallery a[href*="live_10.jpg"],
  .live-gallery a[href*="live_11.jpg"],
  .live-gallery a[href*="live_12.jpg"]{
    height: auto !important;
  }
  .live-gallery a[href*="live_09.jpg"] img,
  .live-gallery a[href*="live_10.jpg"] img,
  .live-gallery a[href*="live_11.jpg"] img,
  .live-gallery a[href*="live_12.jpg"] img{
    height: auto !important;
    width: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    background: #f3f0ea;
  }
}


/* Hide homepage LIVE gallery photo credits on mobile only */
@media (max-width: 768px) {
  #live .gallery-credit {
    display: none;
  }
}
