/* Queen B Entertainment — layout patterned on a clean single-page band site:
   coloured header bar with wave edge, video hero, white sections, script headings. */

:root {
  /* Black & gold — picks up the emblem's gold ring */
  --header-bg: #0c0a08;
  --header-ink: #f1e3bf;
  --header-btn: #c9a14a;
  --header-btn-ink: #140f06;
  --social-bg: #221c14;
  --social-ink: #d9b867;
  --brand: #c9a14a;        /* accent: buttons, highlights */
  --brand-deep: #a8822f;
  --brand-ink: #140f06;    /* text on accent */
  --brand-text: #8a6a1f;   /* accent used as text on white */
  --brand-soft: #f8f3e8;   /* tinted sections */
  --label: #d9b867;
  --ink: #141014;
  --text: #3b3438;
  --muted: #7a6f74;
  --line: #ebe3d2;
  --white: #fff;
  --radius: 14px;
  --header-h: 92px;
  --script: "Yellowtail", cursive;
  --royal: "Cinzel", Georgia, serif;
  --sans: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body { margin: 0; font-family: var(--sans); font-weight: 300; color: var(--text); background: var(--white); line-height: 1.7; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.container { width: min(1180px, 100% - 40px); margin-inline: auto; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center; gap: clamp(14px, 2vw, 28px);
  padding: 0 clamp(16px, 3vw, 40px);
  background: var(--header-bg);
}
/* wavy bottom edge */
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 18px; pointer-events: none;
  background: var(--header-bg);
  --wave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1200v14c-150 26-300 26-450 8S450-4 300 12 100 34 0 18z'/%3E%3C/svg%3E");
  -webkit-mask: var(--wave) center / 100% 100% no-repeat;
  mask: var(--wave) center / 100% 100% no-repeat;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--header-ink); }
.brand img { height: 62px; width: 62px; border-radius: 50%; box-shadow: 0 0 0 2px rgba(255,255,255,.15); }
.wordmark { display: grid; line-height: 1; font-family: var(--royal); text-transform: uppercase; }
.wordmark b { font-weight: 700; font-size: 22px; letter-spacing: .06em; }
.wordmark small { font-size: 10.5px; letter-spacing: .32em; margin-top: 5px; font-weight: 600; opacity: .9; }
.site-nav { display: flex; gap: 6px clamp(12px, 1.3vw, 24px); flex-wrap: wrap; justify-content: center; flex: 1; }
.site-nav a { color: var(--header-ink); font-weight: 500; font-size: 13.5px; white-space: nowrap; letter-spacing: .02em; padding: 4px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a.is-current { border-color: currentColor; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.socials { display: flex; gap: 8px; }
.socials a { width: 34px; height: 34px; border-radius: 50%; background: var(--social-bg); display: grid; place-items: center; transition: transform .2s; }
.socials a:hover { transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; fill: var(--social-ink); }
.menu-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; border: 0; border-radius: 999px;
  padding: 12px 26px; font-weight: 500; font-size: 15px;
  background: var(--brand); color: var(--brand-ink);
  transition: background .2s, transform .2s;
}
.btn:hover { background: var(--brand-deep); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.site-header .btn-book { background: var(--header-btn); color: var(--header-btn-ink); white-space: nowrap; }
.site-header .btn-book:hover { filter: brightness(1.1); }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100svh; min-height: 560px; overflow: hidden; background: #000; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,0,0,.25), rgba(0,0,0,.6)); }
.hero-content { position: relative; height: 100%; display: grid; place-content: center; justify-items: center; text-align: center; padding: var(--header-h) 20px 40px; color: var(--white); }
.hero-emblem { width: min(260px, 52vw); border-radius: 50%; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.hero-title { margin: 22px 0 0; font-family: var(--royal); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; line-height: 1.05; font-size: clamp(34px, 5.4vw, 64px); text-shadow: 0 4px 30px rgba(0,0,0,.6); }
.hero-title span { display: block; font-size: .42em; letter-spacing: .42em; font-weight: 600; margin-top: 10px; color: var(--label); }
.hero-tag span { display: block; white-space: nowrap; }
.hero-tag span + span { margin-top: 6px; }
.hero-tag { margin: 18px 0 0; letter-spacing: .2em; text-transform: uppercase; font-size: clamp(11px, 1.3vw, 14px); font-weight: 400; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-tint { background: var(--brand-soft); }
.section-title {
  font-family: var(--script); font-weight: 400; color: var(--ink);
  font-size: clamp(46px, 6vw, 72px); line-height: 1.1; margin: 0 0 40px;
  padding-top: 26px; border-top: 1px solid var(--ink);
}
.section-title.has-sub { margin-bottom: 6px; }
.section-sub { margin: 0 0 40px; font-family: var(--royal); font-weight: 600; font-size: clamp(14px, 1.6vw, 17px); letter-spacing: .22em; text-transform: uppercase; color: var(--brand-text); }
.section-title.light { color: var(--white); border-color: rgba(255,255,255,.6); }
.section-note { margin: -24px 0 32px; color: var(--muted); }
h3 { font-weight: 600; color: var(--ink); line-height: 1.3; }

/* ---------- Gallery ---------- */
/* Planned layout (see index.html order): rows always fill completely — no automatic packing. */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 10px; }
.g-item { padding: 0; border: 0; border-radius: 10px; overflow: hidden; background: #eee; }
.g-item img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transition: transform .5s; }
.g-item:hover img { transform: scale(1.05); }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about-photo img { border-radius: var(--radius); box-shadow: 0 30px 60px -30px rgba(80, 0, 40, .45); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.about-copy p { margin: 0 0 16px; }
.lead { font-size: 19px; color: var(--ink); font-weight: 400; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 420px; gap: 14px; margin-top: 28px; }
.stats div { background: var(--white); border-radius: var(--radius); padding: 18px; text-align: center; }
.stats strong { display: block; font-size: 32px; font-weight: 700; color: var(--brand-text); line-height: 1.1; }
.stats span { font-size: 13px; color: var(--muted); }

/* ---------- The Royal Sound cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.card img { aspect-ratio: 16 / 9; object-fit: cover; object-position: center 25%; width: 100%; }
/* click-to-play video frame (card thumbnails and past performances) */
.card-media { position: relative; aspect-ratio: 16 / 9; background: #000; overflow: hidden; }
.card-media > img, .card-media > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-media > video { object-fit: contain; background: #000; }
.card-media .play {
  position: absolute; inset: 0; border: 0; padding: 0; cursor: pointer;
  background: linear-gradient(transparent 45%, rgba(0,0,0,.45));
}
.card-media .play::before {
  content: ""; position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(12,10,8,.55); box-shadow: inset 0 0 0 2px var(--brand), 0 8px 24px rgba(0,0,0,.35);
  backdrop-filter: blur(3px); transition: transform .25s, background .25s;
}
.card-media .play::after {
  content: ""; position: absolute; left: 50%; top: 50%; translate: -35% -50%;
  border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent var(--brand);
}
.card-media .play:hover::before { transform: scale(1.08); background: rgba(12,10,8,.75); }
.card-media .clip-tag { position: absolute; left: 12px; bottom: 10px; z-index: 1; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.6); pointer-events: none; }
.card-media.is-playing .play, .card-media.is-playing .clip-tag, .card-media.is-playing > img { display: none; }
.card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin: 0 0 8px; font-size: 19px; }
.card-body p { margin: 0 0 18px; font-size: 14px; flex: 1; }
.card-body .btn { align-self: flex-start; padding: 10px 20px; font-size: 14px; }

.music { display: grid; grid-template-columns: 4fr 8fr; gap: 40px; margin-top: 70px; align-items: start; }
.music-solo { margin-top: 0; }
.music-intro h3 { font-size: 28px; margin: 0 0 6px; }
.now-playing { background: var(--ink); color: var(--white); border-radius: var(--radius); padding: 18px; margin: 22px 0; }
.now-playing strong { display: block; color: var(--white); font-size: 18px; margin-bottom: 10px; }
.np-label { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--label); }
.now-playing audio { width: 100%; }
.platforms { display: flex; flex-wrap: wrap; gap: 14px; }
.platforms a {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--header-bg); box-shadow: inset 0 0 0 2px var(--brand); transition: transform .2s, background .2s;
}
.platforms a:hover { transform: translateY(-3px); background: var(--brand); }
.platforms svg { width: 24px; height: 24px; fill: var(--brand); transition: fill .2s; }
.platforms a:hover svg { fill: var(--brand-ink); }
.songs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.song {
  position: relative; aspect-ratio: 1; border: 0; border-radius: 12px; overflow: hidden; padding: 0;
  background: var(--img) center / cover; color: var(--white); text-align: left;
}
.song::before { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(0,0,0,.8)); transition: background .3s; }
.song::after {
  content: "▶"; position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand); color: var(--brand-ink); font-size: 16px; opacity: 0; transition: opacity .25s;
}
.song:hover::after, .song.is-playing::after { opacity: 1; }
.song.is-playing::after { content: "❚❚"; font-size: 13px; }
.song span { position: absolute; left: 12px; right: 12px; bottom: 10px; font-weight: 600; font-size: 14px; line-height: 1.25; }
.song[data-yt=""] { filter: grayscale(.7); }

/* ---------- Our Fans ---------- */
.love { position: relative; padding: clamp(70px, 10vw, 120px) 0; background: var(--bg) center / cover fixed; color: var(--white); }
.love::before { content: ""; position: absolute; inset: 0; background: rgba(20, 5, 14, .72); }
.love .container { position: relative; }
.carousel { position: relative; max-width: 860px; margin: 0 auto; text-align: center; }
.slides { display: grid; }
.slide { grid-area: 1 / 1; margin: 0; opacity: 0; transition: opacity .6s; pointer-events: none; padding: 0 56px; }
.slide.is-active { opacity: 1; pointer-events: auto; }
.stars { color: #ffc94d; letter-spacing: 4px; font-size: 20px; }
.slide blockquote { margin: 16px 0 22px; font-size: clamp(17px, 2vw, 21px); font-style: italic; line-height: 1.7; }
.slide figcaption strong { display: block; color: var(--white); font-weight: 600; }
.slide figcaption span { font-size: 13px; opacity: .8; }
.car-btn { position: absolute; top: 50%; translate: 0 -50%; z-index: 2; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.6); background: transparent; color: var(--white); font-size: 26px; line-height: 1; }
.car-btn:hover { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.car-btn.prev { left: 0; } .car-btn.next { right: 0; }

/* ---------- Follow Us ---------- */
.follow { display: grid; justify-items: center; gap: 28px; }
.video-frame { width: 100%; max-width: 900px; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: 0 30px 60px -30px rgba(0,0,0,.45); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.channels { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.channels a {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: var(--header-bg); box-shadow: inset 0 0 0 2px var(--brand);
  transition: transform .2s, background .2s;
}
.channels a:hover { transform: translateY(-3px); background: var(--brand); }
.channels svg { width: 26px; height: 26px; fill: var(--brand); transition: fill .2s; }
.channels a:hover svg { fill: var(--brand-ink); }

/* ---------- Upcoming dates ---------- */
.sub-title { font-size: 20px; margin: 0 0 18px; }
.gigs { display: grid; gap: 12px; margin-bottom: 56px; }
.gigs-empty { margin: 0; padding: 22px 24px; background: var(--brand-soft); border-radius: var(--radius); color: var(--muted); }
.gigs-empty a { color: var(--brand-text); font-weight: 500; }
.gig { display: grid; grid-template-columns: 92px 1fr auto; gap: 22px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 22px 16px 16px; }
.gig-date { text-align: center; background: var(--ink); color: #fff; border-radius: 10px; padding: 10px 0; line-height: 1.1; }
.gig-date small { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .75; }
.gig-date strong { display: block; font-size: 30px; font-weight: 700; margin: 2px 0; color: var(--label); }
.gig h4 { margin: 0 0 2px; font-size: 17px; font-weight: 600; color: var(--ink); }
.gig p { margin: 0; font-size: 14px; color: var(--muted); }
.gig .when { color: var(--text); font-weight: 400; }
.tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; background: var(--brand); color: var(--brand-ink); }
.tag.private { background: transparent; color: var(--muted); box-shadow: inset 0 0 0 1px var(--line); }

/* ---------- Venues ---------- */
.venues { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.venues article { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.venues img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.venues .card-media { aspect-ratio: 16 / 9; }
.venues .card-media .play::before { width: 52px; height: 52px; }
.venues article > div:not(.card-media) { padding: 16px 18px; }
.venues h3 { margin: 0; font-size: 16px; }
.venues article > div:not(.card-media) span { font-size: 13px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 80px); }
.contact-info h3 { font-size: 26px; margin: 0 0 10px; }
.contact-info ul { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.contact-info li span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.contact-info li a { color: var(--brand-text); font-weight: 500; }
.contact-form { display: grid; gap: 14px; }
.form-head h3 { font-size: 19px; margin: 0 0 4px; }
.form-head p { margin: 0 0 8px; color: var(--muted); }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 6px; font-size: 14px; font-weight: 500; color: var(--ink); }
.contact-form input, .contact-form textarea {
  font: inherit; font-weight: 300; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: #faf7f8; color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--brand); outline-offset: 1px; background: var(--white); }
.contact-form.was-validated :invalid { border-color: #d32f2f; }
.contact-form .btn { justify-self: start; }
.form-status { margin: 0; font-size: 14px; color: var(--brand-deep); min-height: 1em; }
.form-status.is-ok { color: #2e7d4f; font-weight: 500; }
.form-status.is-error { color: #b3261e; }
.form-status a { color: inherit; font-weight: 600; text-decoration: underline; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* WhatsApp button */
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 14px; margin: 22px 0 26px;
  padding: 10px 22px 10px 10px; border-radius: 999px; background: #25D366; color: #fff;
  box-shadow: 0 10px 24px -10px rgba(37, 211, 102, .8); transition: transform .2s, box-shadow .2s;
}
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(37, 211, 102, .9); }
.whatsapp-btn svg { width: 46px; height: 46px; padding: 9px; border-radius: 50%; background: #fff; fill: #25D366; flex: none; }
.whatsapp-btn span { display: grid; line-height: 1.15; font-weight: 600; font-size: 18px; }
.whatsapp-btn small { font-weight: 400; font-size: 12px; opacity: .9; letter-spacing: .04em; }

/* Photo album slider */
.album { position: relative; border-radius: var(--radius); overflow: hidden; background: #111; box-shadow: 0 30px 60px -30px rgba(0,0,0,.45); aspect-ratio: 4 / 5; max-width: 460px; }
.album-track { display: flex; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; }
.album-track::-webkit-scrollbar { display: none; }
.album-slide { flex: 0 0 100%; margin: 0; scroll-snap-align: start; }
.album-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.album-nav {
  position: absolute; top: 50%; translate: 0 -50%; width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: rgba(12,10,8,.55); color: #fff; font-size: 26px; line-height: 1; backdrop-filter: blur(3px); transition: background .2s;
}
.album-nav:hover { background: var(--brand); color: var(--brand-ink); }
.album-nav.prev { left: 12px; } .album-nav.next { right: 12px; }
.music-toggle {
  position: absolute; left: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 8px;
  min-height: 38px; padding: 7px 14px 7px 12px; border: 0; border-radius: 999px;
  background: rgba(12,10,8,.72); color: #fff; font-size: 13px; font-weight: 500; backdrop-filter: blur(4px);
  box-shadow: inset 0 0 0 1px rgba(201,161,74,.7);
}
.music-toggle[hidden] { display: none; }
.music-toggle:hover { background: rgba(12,10,8,.9); }
.eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 14px; }
.eq i { width: 3px; background: var(--brand); border-radius: 1px; animation: eq 1s ease-in-out infinite; }
.eq i:nth-child(1) { height: 60%; } .eq i:nth-child(2) { height: 100%; animation-delay: .2s; } .eq i:nth-child(3) { height: 40%; animation-delay: .4s; }
.music-toggle.is-off .eq i { animation: none; height: 30%; }
@keyframes eq { 0%, 100% { transform: scaleY(.4); } 50% { transform: scaleY(1); } }
.eq i { transform-origin: bottom; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); text-align: center; padding: 56px 20px 40px; }
.site-footer img { width: 120px; margin: 0 auto 20px; border-radius: 50%; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; margin-bottom: 18px; }
.site-footer nav a:hover { color: var(--white); }
.site-footer p { margin: 0; font-size: 13px; }

.to-top { position: fixed; right: 20px; bottom: 20px; z-index: 40; width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: var(--brand-ink); display: grid; place-items: center; font-size: 22px; padding-top: 6px; box-shadow: 0 8px 20px rgba(0,0,0,.25); opacity: 0; pointer-events: none; transition: opacity .3s; }
.to-top.show { opacity: 1; pointer-events: auto; }

/* ---------- Lightbox & player ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.92); display: grid; place-items: center; padding: 20px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 90vh; width: auto; border-radius: 8px; }
.lb-close, #player-close { position: absolute; top: 14px; right: 18px; background: none; border: 0; color: var(--white); font-size: 38px; line-height: 1; }
.player { position: fixed; left: 20px; bottom: 20px; z-index: 60; width: min(360px, calc(100% - 40px)); background: var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.player[hidden] { display: none; }
.player-bar { position: relative; padding: 12px 50px 12px 16px; color: var(--white); font-size: 14px; }
#player-close { top: 4px; right: 10px; font-size: 28px; }
.player iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .cards, .venues { grid-template-columns: repeat(2, 1fr); }
  .music { grid-template-columns: 1fr; }
}
@media (max-width: 1280px) {
  :root { --header-h: 76px; }
  .brand img { height: 48px; width: 48px; }
  .wordmark b { font-size: 17px; }
  .wordmark small { font-size: 8.5px; letter-spacing: .26em; }
  .menu-toggle { display: grid; gap: 5px; margin-left: auto; background: none; border: 0; padding: 8px; }
  .menu-toggle span:not(.sr-only) { width: 26px; height: 2px; background: var(--header-ink); }
  .site-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; flex-direction: column; align-items: center; gap: 4px;
    background: var(--header-bg); padding: 16px 0 24px; display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav.open a { font-size: 16px; padding: 11px 24px; }
  .site-nav { max-height: calc(100svh - var(--header-h)); overflow-y: auto; overscroll-behavior: contain; }
  .header-actions { margin-left: 4px; }
  .btn-book { padding: 8px 16px; font-size: 13px; }
  .menu-toggle { order: 3; margin-left: 0; }
  .brand { margin-right: auto; }
}
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery .g-wide, .gallery .g-tall { grid-column: auto; grid-row: auto; }
  .about, .contact { grid-template-columns: 1fr; }
  .songs { grid-template-columns: repeat(2, 1fr); }
  .love { background-attachment: scroll; }
}
@media (max-width: 560px) {
  .socials { display: none; }
  .cards, .venues { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .gig { grid-template-columns: 72px 1fr; gap: 14px; }
  .gig .tag { grid-column: 2; justify-self: start; }
  .gig-date strong { font-size: 24px; }
  .stats { gap: 8px; }
  .stats div { padding: 12px 6px; }
  .stats strong { font-size: 24px; }
  .slide { padding: 0 34px; }
}
@media (max-width: 420px) {
  .site-header { gap: 10px; }
  .brand { gap: 8px; }
  .brand img { height: 42px; width: 42px; }
  .wordmark b { font-size: 15px; }
  .wordmark small { font-size: 8.5px; letter-spacing: .16em; }
  .btn-book { padding: 7px 12px; font-size: 12px; }
}
/* Touch devices: comfortable 44px tap targets */
@media (hover: none), (max-width: 900px) {
  .menu-toggle { min-width: 44px; min-height: 44px; place-content: center; }
  .socials a { width: 40px; height: 40px; }
  .contact-info li a, .gigs-empty a { display: inline-block; padding: 10px 0; }
  .btn-book { min-height: 38px; }
  .car-btn { width: 46px; height: 46px; }
}
/* Installed app (PWA) on notched phones: keep content clear of the notch / home bar */
@supports (padding: max(0px)) {
  .site-header { padding-left: max(clamp(16px, 3vw, 40px), env(safe-area-inset-left)); padding-right: max(clamp(16px, 3vw, 40px), env(safe-area-inset-right)); }
  .site-footer { padding-bottom: max(40px, env(safe-area-inset-bottom)); }
  .to-top { bottom: max(20px, env(safe-area-inset-bottom)); }
}
@media (display-mode: standalone) {
  .site-header { padding-top: env(safe-area-inset-top); height: calc(var(--header-h) + env(safe-area-inset-top)); }
}
@media (max-width: 900px) {
  .album { max-width: none; }
}
@media (max-width: 520px) {
  .hero-tag { letter-spacing: .07em; font-size: clamp(9.5px, 3vw, 12px); }
}
@media (max-width: 360px) {
  .site-header { gap: 6px; padding-left: 12px; padding-right: 12px; }
  .brand img { height: 38px; width: 38px; }
  .wordmark b { font-size: 13px; }
  .wordmark small { font-size: 7px; letter-spacing: .14em; }
  .btn-book { padding: 6px 10px; font-size: 11.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .eq i { animation: none; }
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
