/* =========================================================================
   BELLO DUO, Premium redesign
   Brand: Arvo (display serif) + Montserrat (sans). Monochrome, photo-led.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink: #0E0E0F;
  --ink-soft: #18181a;
  --ink-2: #232326;
  --paper: #ffffff;
  --bone: #F6F4F0;
  --bone-2: #ECE7DF;
  --muted: #6B6B6E;
  --muted-light: #9a9aa0;
  --line: rgba(0, 0, 0, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --gold: #B8924A;
  --gold-bright: #C9A24B;

  --serif: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --narrow: 760px;
  --header-h: 78px;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.22);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.25s var(--ease);
  --t: 0.45s var(--ease);
  --t-header: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1rem;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; }
.display {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { color: var(--ink); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.7; color: #3a3a3d; font-weight: 300; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.eyebrow--muted { color: var(--muted); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.narrow { max-width: var(--narrow); margin-inline: auto; }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--bone { background: var(--bone); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink p { color: rgba(255,255,255,0.78); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }

.section-head { max-width: 680px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 0.85rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  min-height: 50px; padding: 0 1.7rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 2px; transition: all var(--t-fast);
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
/* Borderless light CTA — keeps .btn sizing for alignment but shows no box */
.btn--text-light { background: transparent; border-color: transparent; color: #fff; padding-inline: 0.4rem;
  text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 6px; }
.btn--text-light:hover { background: transparent; border-color: transparent; color: var(--gold); transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.link-arrow {
  font-family: var(--sans); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.5em; border-bottom: 1px solid var(--gold);
  padding-bottom: 4px; transition: gap var(--t-fast), color var(--t-fast);
}
.link-arrow:hover { gap: 0.9em; color: var(--gold); }
.section--ink .link-arrow { color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--t-header), box-shadow var(--t-header), border-color var(--t-header);
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header.solid, .site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line);
}
.brand {
  font-family: var(--serif); font-size: 1.35rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--paper); white-space: nowrap;
  transition: color var(--t-header);
}
.brand b { font-weight: 700; }
.site-header.solid .brand, .site-header.scrolled .brand { color: var(--ink); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); position: relative; padding: 0.4rem 0;
  transition: color var(--t-header);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width var(--t-fast);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: #fff; }
.site-header.solid .nav a, .site-header.scrolled .nav a { color: var(--ink); }
.site-header.solid .nav a[aria-current="page"], .site-header.scrolled .nav a[aria-current="page"] { color: var(--gold); }
.nav .btn {
  color: #fff;
  min-height: 44px;
  padding: 0 1.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.45);
  background: transparent;
  box-shadow: none;
  transition: background var(--t-header), border-color var(--t-header), color var(--t-header), box-shadow var(--t-fast), transform var(--t-fast);
}
.nav .btn:hover {
  color: #fff;
  border-color: var(--gold-bright);
  background: linear-gradient(150deg, var(--gold-bright) 0%, var(--gold) 100%);
  box-shadow: 0 12px 30px rgba(184,146,74,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.site-header.solid .nav .btn, .site-header.scrolled .nav .btn {
  color: var(--ink);
  border-color: rgba(14,14,15,0.35);
}
.site-header.solid .nav .btn:hover, .site-header.scrolled .nav .btn:hover {
  color: #fff;
  border-color: var(--gold-bright);
}

.nav-toggle { display: none; width: 48px; height: 48px; align-items: center; justify-content: center; z-index: 110; border-radius: 999px; transition: background var(--t-fast); }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: #fff; position: relative; transition: all var(--t-fast); border-radius: 2px; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 26px; height: 2.5px; background: #fff; transition: all var(--t-fast); border-radius: 2px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.site-header.solid .nav-toggle span, .site-header.solid .nav-toggle span::before, .site-header.solid .nav-toggle span::after,
.site-header.scrolled .nav-toggle span, .site-header.scrolled .nav-toggle span::before, .site-header.scrolled .nav-toggle span::after { background: var(--ink); }

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 0.8rem 1.2rem; z-index: 200; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,12,0.45) 0%, rgba(10,10,12,0.12) 30%, rgba(10,10,12,0.35) 62%, rgba(10,10,12,0.82) 100%);
}
.hero__inner { padding-top: calc(var(--header-h) + 1rem); padding-bottom: clamp(2rem, 6vh, 4rem); max-width: 820px; }
.hero .eyebrow { color: #fff; opacity: 0.92; margin-bottom: 1.2rem; }
.hero__title { margin-bottom: 1.1rem; text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.hero__sub { font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 300; letter-spacing: 0.02em; margin-bottom: 2rem; color: rgba(255,255,255,0.92); }
.hero__sub b { font-weight: 500; }
.scroll-cue { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 1; color: rgba(255,255,255,0.7); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.scroll-cue span { width: 1px; height: 36px; background: linear-gradient(rgba(255,255,255,0.7), transparent); animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Page header (interior) */
.page-hero { position: relative; min-height: 56vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,10,12,0.5), rgba(10,10,12,0.3) 45%, rgba(10,10,12,0.8)); }
.page-hero__inner { padding-block: clamp(3rem, 7vh, 6rem); padding-top: calc(var(--header-h) + 2.5rem); }
.page-hero .eyebrow { color: #fff; opacity: 0.9; margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
.page-hero p { color: rgba(255,255,255,0.9); max-width: 620px; margin-top: 1rem; font-weight: 300; font-size: 1.1rem; }

/* ---------- Accolades bar ---------- */
.accolades { background: var(--ink); color: #fff; }
.accolades__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; text-align: center; }
.accolade { flex: 1 1 200px; padding: clamp(1.5rem, 4vw, 2.6rem) 1.5rem; border-left: 1px solid rgba(255,255,255,0.12); }
.accolade:first-child { border-left: none; }
.accolade strong { display: flex; align-items: flex-end; justify-content: center; gap: 0.1em; font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 1.85rem); color: #fff; line-height: 1; margin-bottom: 0.6rem; min-height: clamp(3.2rem, 5.5vw, 4.6rem); }
.accolade strong .gold { color: var(--gold-bright); font-size: clamp(3.4rem, 6vw, 5rem); line-height: 0.78; letter-spacing: -0.015em; }
.accolade span { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

/* ---------- Credibility strip ---------- */
.credibility { padding-block: clamp(2.2rem, 5vw, 3.2rem); border-bottom: 1px solid var(--line); }
.credibility p.eyebrow { display: block; text-align: center; color: var(--muted); margin-bottom: 1.4rem; }
.credibility__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.2rem, 4vw, 3rem); }
.credibility__logos span { font-family: var(--serif); font-size: clamp(1rem, 1.8vw, 1.4rem); color: #2b2b2e; letter-spacing: 0.02em; opacity: 0.78; }

/* ---------- Split / feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--r-sm); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }
.split__media.wide img { aspect-ratio: 4/3; }
.split__media img.press-shot { aspect-ratio: auto; object-fit: contain; }
.split__body .eyebrow { margin-bottom: 1rem; }
.split__body h2 { margin-bottom: 1.2rem; }
.split__body p + p { margin-top: 1rem; }
.split__body .btn-row, .split__body .link-arrow { margin-top: 1.8rem; }

/* ---------- Featured video ---------- */
.feature-video { position: relative; }
.video {
  position: relative; aspect-ratio: 16/9; border-radius: var(--r-sm); overflow: hidden;
  background: #111 center/cover no-repeat; cursor: pointer; box-shadow: var(--shadow-md);
}
.video::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.28); transition: background var(--t-fast); }
.video:hover::after { background: rgba(0,0,0,0.12); }
.video__play {
  position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; z-index: 2;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  background: rgba(255,255,255,0.16); border: 1.5px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(2px); transition: transform var(--t-fast), background var(--t-fast);
}
.video:hover .video__play { transform: scale(1.08); background: var(--gold); border-color: var(--gold); }
.video__play svg { width: 26px; height: 26px; fill: #fff; margin-left: 4px; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video.is-playing::after, .video.is-playing .video__play, .video.is-playing .video__label { display: none; }
.video__label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.4rem 1.2rem 1rem; color: #fff; font-family: var(--serif); font-size: 1.05rem; background: linear-gradient(transparent, rgba(0,0,0,0.7)); }

/* ---------- Featured video ---------- */
.video-feature { max-width: 900px; margin: 0 auto; }
.video-feature .video { box-shadow: var(--shadow-md); }

/* ---------- Video grid ---------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.video-grid .video { box-shadow: var(--shadow-sm); }

/* ---------- Card grid (concerts/cruise/gallery) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative; border-radius: var(--r-sm); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm); background: #111; aspect-ratio: 3/2;
}
.card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover img { transform: scale(1.06); }
.card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(0,0,0,0.72)); }
.card__title { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 1.4rem 1.3rem; color: #fff; }
.card__title .eyebrow { color: var(--gold-bright); margin-bottom: 0.35rem; display: block; }
.card__title h3 { color: #fff; font-size: 1.15rem; }

/* Masonry-ish gallery */
.gallery { columns: 3; column-gap: clamp(0.8rem, 1.6vw, 1.4rem); }
.gallery .g-item { break-inside: avoid; margin-bottom: clamp(0.8rem, 1.6vw, 1.4rem); border-radius: var(--r-sm); overflow: hidden; cursor: pointer; display: block; box-shadow: var(--shadow-sm); }
.gallery .g-item img { width: 100%; transition: transform 0.7s var(--ease), filter var(--t-fast); }
.gallery .g-item:hover img { transform: scale(1.05); filter: brightness(1.05); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm); padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-direction: column; }
.section--ink .quote { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.quote__stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.85rem; margin-bottom: 1rem; }
.quote__text { font-family: var(--serif); font-size: 1.2rem; line-height: 1.45; margin-bottom: 1.2rem; flex: 1; }
.section--ink .quote__text { color: #fff; }
.quote__author { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.section--ink .quote__author { color: rgba(255,255,255,0.6); }
.quote__role { display: block; margin-top: 0.45rem; font-size: 0.7rem; letter-spacing: 0.04em; text-transform: none; font-weight: 400; color: var(--muted); }
.section--ink .quote__role { color: rgba(255,255,255,0.5); }

/* Big pull testimonial */
.pull { text-align: center; max-width: 880px; margin-inline: auto; }
.pull .quote__stars { font-size: 1.1rem; margin-bottom: 1.5rem; }
.pull blockquote { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.3; }
.pull cite { display: block; margin-top: 1.5rem; font-family: var(--sans); font-style: normal; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ---------- Stats / social proof ---------- */
.proof { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem); text-align: center; }
.proof__item strong { display: block; font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1; }
.proof__item strong .gold { color: var(--gold); }
.proof__item span { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; display: block; }
.section--ink .proof__item span { color: rgba(255,255,255,0.6); }

/* ---------- Listen & Follow ---------- */
.platforms { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.platform {
  display: inline-flex; align-items: center; gap: 0.7em; padding: 0.85rem 1.5rem;
  border: 1px solid var(--line); border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; transition: all var(--t-fast); background: var(--paper);
}
.platform:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.platform svg { width: 20px; height: 20px; }
.section--ink .platform { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.18); color: #fff; }
.section--ink .platform:hover { background: #fff; color: var(--ink); }
.section--ink .platform:hover svg { fill: var(--ink); }

/* ---------- Album / release ---------- */
.release { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.release__art img { width: 100%; border-radius: var(--r-sm); box-shadow: var(--shadow-lg); aspect-ratio: 1; object-fit: cover; }
.release .spotify-embed { border-radius: 12px; margin-top: 1.5rem; box-shadow: var(--shadow-sm); }

/* ---------- Discography list (Music page) ---------- */
.release-list { display: grid; gap: clamp(1.4rem, 3vw, 2.2rem); }
.release-card {
  display: grid; grid-template-columns: 160px 1fr; gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: center; padding: clamp(1.2rem, 2.5vw, 1.8rem);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm); box-shadow: var(--shadow-sm);
}
.release-card__art img,
.release-card__fallback { width: 100%; aspect-ratio: 1; border-radius: var(--r-sm); object-fit: cover; display: block; }
.release-card__fallback { background: linear-gradient(150deg, var(--gold) 0%, var(--ink) 100%); }
.release-card__body { min-width: 0; }
.release-card__body h3 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); margin: 0.25rem 0 1rem; }
.release-card .platforms { justify-content: flex-start; }
.release-card__player { margin-top: 1.2rem; }
.release-card__player .spotify-embed { border-radius: 12px; box-shadow: var(--shadow-sm); }
.release-card__buy { margin-top: 1.2rem; }
@media (max-width: 560px) {
  .release-card { grid-template-columns: 1fr; text-align: center; }
  .release-card__art { max-width: 220px; margin-inline: auto; }
  .release-card .platforms { justify-content: center; }
}

/* ---------- Shop page ---------- */
.shop-subnav { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: center; }
.shop-subnav a { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid transparent; padding-bottom: 3px; transition: color var(--t-fast), border-color var(--t-fast); }
.shop-subnav a:hover { color: var(--gold); border-color: var(--gold); }
.section.has-items + .section .shop-subnav { margin-top: 0; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: clamp(1.4rem, 3vw, 2.2rem); }
.product-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.product-card__art img,
.product-card__fallback { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.product-card__fallback { background: linear-gradient(150deg, var(--gold) 0%, var(--ink) 100%); }
.product-card__body { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.1rem 1.2rem 1.3rem; flex: 1; }
.product-card__body h3 { font-size: 1.05rem; margin: 0; }
.product-card__desc { font-size: 0.85rem; line-height: 1.5; color: #6b6b70; margin: 0; flex: 1; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-top: 0.3rem; }
.product-card__price { font-weight: 600; }
.product-card [aria-disabled="true"] { opacity: 0.55; pointer-events: none; }
.merch-preview { margin-bottom: 1.3rem; }
.merch-preview .product-card { max-width: 260px; }

/* ---------- Instagram feed ---------- */
.ig-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; }
.ig-grid a { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--r-sm); display: block; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t); }
.ig-grid a::after { content: ""; position: absolute; inset: 0; background: rgba(184,146,74,0); transition: background var(--t-fast); }
.ig-grid a:hover img { transform: scale(1.08); }
.ig-grid a:hover::after { background: rgba(14,14,15,0.25); }

/* ---------- Contact ---------- */
.contact-hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.contact-hero__bg { position: absolute; inset: 0; z-index: -2; }
.contact-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,8,10,0.7), rgba(8,8,10,0.78)); }
.contact-hero__inner { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; text-align: center; max-width: 720px; margin-inline: auto; }
.contact-methods { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.2rem; }
.contact-method {
  display: inline-flex; align-items: center; gap: 0.8em; padding: 1.1rem 1.9rem;
  border: 1px solid rgba(255,255,255,0.4); border-radius: 3px; color: #fff;
  font-size: 0.95rem; letter-spacing: 0.04em; transition: all var(--t-fast);
}
.contact-method:hover { background: #fff; color: var(--ink); border-color: #fff; }
.contact-method svg { width: 22px; height: 22px; }
.contact-socials { display: flex; gap: 1rem; justify-content: center; margin-top: 2.5rem; }
.contact-socials a { width: 50px; height: 50px; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: all var(--t-fast); }
.contact-socials a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.contact-socials svg { width: 20px; height: 20px; fill: #fff; }

/* ---------- Dates list ---------- */
.dates { border-top: 1px solid var(--line); }
.date-row { display: grid; grid-template-columns: 160px 1fr auto; gap: 1.5rem; align-items: center; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.date-row__when { font-family: var(--serif); font-size: 1.1rem; }
.date-row__when span { display: block; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.date-row__what h3 { font-size: 1.15rem; }
.date-row__what p { color: var(--muted); font-size: 0.92rem; }
.date-row__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: flex-end; align-items: center; }
.dates-empty { text-align: center; padding: 2.5rem; background: var(--bone); border-radius: var(--r-sm); }

/* ---------- Newsletter ---------- */
.newsletter { text-align: center; max-width: 560px; margin-inline: auto; }
.newsletter form { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.newsletter input[type=email] {
  flex: 1; min-height: 50px; padding: 0 1.2rem; border: 1px solid var(--line-light);
  background: rgba(255,255,255,0.06); color: #fff; border-radius: 2px; font: inherit;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter small { display: block; margin-top: 0.9rem; color: rgba(255,255,255,0.5); font-size: 0.75rem; }

/* ---------- Press captions ---------- */
.press-cap { margin-top: 0.85rem; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
a.epk-card { transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast); }
a.epk-card:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
a.epk-card .link-arrow { margin-top: 1rem; }

/* ---------- EPK download ---------- */
.epk-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.epk-card { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 2rem; }
.epk-card h3 { margin-bottom: 0.6rem; }
.epk-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.4rem; }
.credit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem 2rem; }
.credit-list li { padding: 0.8rem 0; border-bottom: 1px solid var(--line); display: flex; gap: 0.8rem; align-items: baseline; }
.credit-list li::before { content: ", "; color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 3.5rem; }
.footer-brand .brand { color: #fff; font-size: 1.5rem; }
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 1rem; max-width: 320px; font-size: 0.92rem; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.footer-social a { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: all var(--t-fast); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-col h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; }
.footer-col a { display: block; padding: 0.4rem 0; color: rgba(255,255,255,0.8); font-size: 0.92rem; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 1.6rem 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(8,8,10,0.94); display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--r-sm); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: background var(--t-fast); }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); border-color: var(--gold); }
.lightbox__close { top: 4vw; right: 4vw; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 2vw; }
.lightbox__nav.next { right: 2vw; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .video-grid, .card-grid, .quotes, .epk-cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }
  /* Anchor the hero copy so the CTA sits in the sky band between the moon and
     the performers' heads — never overlapping their faces. Bottom-anchoring (vs
     a top padding) keeps the button fixed in that band even when the subtitle
     wraps to an extra line on narrow phones. */
  .hero { align-items: stretch; }
  .hero .container { display: flex; flex-direction: column; justify-content: flex-end; }
  .hero__inner { padding-top: 0; padding-bottom: 0; margin-bottom: 51svh; }
  .hero .eyebrow,
  .hero__inner .btn--outline-light { display: none; }
  .hero__sub { margin-bottom: 1.5rem; }
  .nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    flex-direction: column; justify-content: center; gap: 1.5rem;
    background: var(--ink);
    transform: translateX(100%); transition: transform var(--t); padding: 2rem;
    z-index: 105;
    overflow-y: auto;
  }
  body.nav-open .site-header {
    background: var(--ink) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom-color: transparent !important;
  }
  body.nav-open .nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .nav a { color: #fff !important; font-size: 1.1rem; letter-spacing: 0.14em; }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 0.5rem; }
  .nav-toggle { display: flex; }
  body.nav-open .nav-toggle { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.35); }
  body.nav-open .nav-toggle span { background: transparent; }
  body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); background: #fff; height: 2.5px; }
  body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); background: #fff; height: 2.5px; }

  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 4/3; }
  .release { grid-template-columns: 1fr; }
  .release__art { max-width: 320px; }
  .video-grid, .card-grid, .card-grid.two, .quotes, .epk-cards { grid-template-columns: 1fr; }
  .credit-list { grid-template-columns: 1fr; }
  .accolade { flex-basis: 50%; border-left: none; border-top: 1px solid rgba(255,255,255,0.12); }
  .accolade:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .date-row { grid-template-columns: 1fr; gap: 0.5rem; text-align: left; }
  .date-row__actions { justify-content: flex-start; }
  .newsletter form { flex-direction: column; }
  .scroll-cue { display: none; }
}

/* Very narrow phones (≤360px, e.g. small Androids and the legacy iPhone SE):
   trim the hero headline/subtitle so the bottom-anchored copy block stays clear
   of the header logo on short screens. */
@media (max-width: 360px) {
  .hero__title { font-size: 2.15rem; }
  .hero__sub { font-size: 1rem; margin-bottom: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .export-cluster.is-busy .export-btn[aria-busy="true"] .export-ico { animation: none; }
}

/* ---------- Contact form ---------- */
.contact-form-wrap { max-width: 760px; margin: 0 auto; }
.contact-form { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.contact-form label { display: grid; gap: 0.4rem; font-size: 0.92rem; font-weight: 500; color: var(--ink); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.75rem 0.9rem;
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.18);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
/* Booking qualifiers: progressively revealed when the category is Bookings/Weddings.
   display:grid would override the default [hidden] behaviour, so re-hide explicitly. */
.contact-form .form-booking { display: grid; gap: 1.25rem; padding-left: 1rem; border-left: 2px solid var(--gold); }
.contact-form .form-booking[hidden] { display: none; }
.contact-form .form-hint { font-size: 0.85rem; font-weight: 400; color: var(--muted); margin: 0; }
.form-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form-status { font-size: 0.92rem; color: var(--muted); margin: 0; }
.form-status--success { color: #1f7a4d; }
.form-status--error { color: #b3261e; }
@media (max-width: 640px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ---------- Admin pages ---------- */
.admin-body { background: var(--bone); }
.admin-auth { min-height: 100vh; display: grid; place-items: center; padding: 2rem 1rem; }
.admin-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.admin-card .brand { display: inline-block; font-family: var(--serif); font-size: 1.4rem; color: var(--ink); text-decoration: none; margin-bottom: 1rem; }
.admin-card h1 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 0.5rem; }
.admin-card .muted { color: var(--muted); margin-bottom: 1.5rem; }
.admin-card form { display: grid; gap: 1rem; text-align: left; }
.admin-card label { display: grid; gap: 0.4rem; font-size: 0.92rem; font-weight: 500; }
.admin-card input {
  font: inherit;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.7rem 0.9rem;
}
.admin-card input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.18); }
.admin-card .btn { width: 100%; margin-top: 0.25rem; }
.admin-back { margin-top: 1.5rem; font-size: 0.9rem; }
.admin-back a { color: var(--muted); text-decoration: none; }

.admin-header { background: var(--ink); color: var(--paper); padding: 1rem 0; }
.admin-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.admin-header .brand { color: var(--paper); text-decoration: none; font-family: var(--serif); font-size: 1.25rem; }
.admin-header__right { display: flex; align-items: center; gap: 1rem; }
.admin-header .muted { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.admin-main { padding: 2rem 0 4rem; }
.admin-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.admin-toolbar h1 { font-family: var(--serif); font-size: 1.8rem; }
.admin-filters { display: flex; gap: 1rem; flex-wrap: wrap; }
.admin-filters label { display: grid; gap: 0.3rem; font-size: 0.85rem; font-weight: 500; }
.admin-filters select { font: inherit; border: 1px solid var(--line); border-radius: var(--r-md); padding: 0.55rem 0.8rem; background: var(--paper); }
.admin-list { list-style: none; padding: 0; display: grid; gap: 1rem; }
.admin-item { background: var(--paper); border-radius: var(--r-md); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-sm); border-left: 3px solid var(--gold); }
.admin-item.is-read { border-left-color: var(--line); opacity: 0.85; }
.admin-item__head { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; flex-wrap: wrap; margin-bottom: 0.5rem; }
.admin-item__head strong { font-weight: 600; }
.admin-item__meta { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.75rem; }
.admin-item__meta a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.admin-item__msg { white-space: pre-wrap; margin: 0 0 1rem; color: var(--ink-soft); }
.admin-item__booking { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin: 0 0 1rem; padding: 0.75rem 1rem; background: var(--bone, #f5f1ea); border-radius: var(--r-md); }
.admin-item__booking div { display: flex; flex-direction: column; }
.admin-item__booking dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.admin-item__booking dd { margin: 0; font-weight: 600; color: var(--ink); }
.admin-item__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.admin-cat { display: inline-block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.2rem 0.55rem; border-radius: 999px; background: var(--bone-2); color: var(--ink-soft); margin-right: 0.6rem; font-weight: 600; }
.admin-cat--bookings { background: var(--gold); color: var(--paper); }
.admin-cat--press { background: var(--ink); color: var(--paper); }
.btn--sm { padding: 0.4rem 0.8rem; font-size: 0.85rem; }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }

/* Subtle gold ring when the hidden admin gesture is armed. */
body.admin-armed { box-shadow: inset 0 0 0 2px var(--gold); }

/* Subtle admin login link in the footer "Connect" column. */
.footer-admin {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  transition: opacity var(--t-fast);
}
.footer-admin:hover { opacity: 1; color: var(--gold); }

/* =========================================================================
   ADMIN DASHBOARD (back-office) — tabs, panels, drawer, calendar, reels
   ========================================================================= */

/* ---- Tab navigation ---- */
.admin-nav { background: var(--ink-soft); border-bottom: 1px solid var(--line-light); position: sticky; top: 0; z-index: 20; }
.admin-nav .container { display: flex; gap: 0.25rem; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.admin-nav .container::-webkit-scrollbar { display: none; }
.admin-nav__btn {
  flex: 0 0 auto; appearance: none; background: transparent; border: 0; cursor: pointer;
  color: rgba(255, 255, 255, 0.7); font: inherit; font-weight: 500; font-size: 0.95rem;
  padding: 1rem 1.1rem; border-bottom: 2px solid transparent; transition: color var(--t-fast), border-color var(--t-fast);
}
.admin-nav__btn:hover { color: #fff; }
.admin-nav__btn[aria-selected="true"] { color: #fff; border-bottom-color: var(--gold); }

/* ---- Panels & shared bits ---- */
.admin-panel[hidden] { display: none; }
.admin-main .muted { color: var(--muted); }
.admin-toolbar__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.admin-search { font: inherit; border: 1px solid var(--line); border-radius: var(--r-md); padding: 0.55rem 0.8rem; background: var(--paper); min-width: 200px; }
.admin-search:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.18); }
.admin-empty { color: var(--muted); padding: 2rem 0; }
.admin-loadmore { display: flex; justify-content: center; margin-top: 1.25rem; }

/* List/Calendar segmented toggle */
.view-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: var(--paper); }
.view-toggle button { appearance: none; border: 0; background: transparent; font: inherit; font-size: 0.85rem; font-weight: 500; padding: 0.45rem 0.95rem; cursor: pointer; color: var(--muted); }
.view-toggle button[aria-pressed="true"] { background: var(--ink); color: #fff; }

/* ---- Status badges & platform tags ---- */
.badge { display: inline-block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; padding: 0.18rem 0.5rem; border-radius: 999px; background: var(--bone-2); color: var(--ink-soft); }
.badge--enquiry { background: var(--bone-2); color: var(--ink-soft); }
.badge--confirmed { background: var(--gold); color: #fff; }
.badge--deposit_paid { background: transparent; color: var(--gold); box-shadow: inset 0 0 0 1.5px var(--gold); }
.badge--completed { background: var(--ink); color: #fff; }
.badge--declined { background: transparent; color: var(--muted); box-shadow: inset 0 0 0 1px var(--line); text-decoration: line-through; }
.badge--idea { background: var(--bone-2); color: var(--ink-soft); }
.badge--draft { background: transparent; color: var(--muted); box-shadow: inset 0 0 0 1px var(--line); }
.badge--scheduled { background: transparent; color: var(--gold); box-shadow: inset 0 0 0 1.5px var(--gold); }
.badge--posted { background: var(--ink); color: #fff; }
.badge--answered { background: var(--gold); color: #fff; }
.badge--awaiting { background: transparent; color: var(--muted); box-shadow: inset 0 0 0 1px var(--line); }
.tag { display: inline-block; font-size: 0.68rem; font-weight: 600; padding: 0.18rem 0.5rem; border-radius: var(--r-sm); margin-right: 0.3rem; }
.tag--instagram { background: #fce8f1; color: #c13584; }
.tag--facebook { background: #e7f0fb; color: #1877f2; }
.tag--youtube { background: #fdeaea; color: #c4302b; }

.admin-item.is-answered { border-left-color: var(--line); }
.admin-item__head .badge { margin-left: 0.4rem; }

/* ---- Dashboard ---- */
.dash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.dash-card { background: var(--paper); border-radius: var(--r-md); padding: 1.25rem 1.4rem; box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold); text-decoration: none; color: inherit; display: block; }
.dash-card:hover { box-shadow: var(--shadow-md); }
.dash-card__num { font-family: var(--serif); font-size: 2.2rem; line-height: 1; color: var(--ink); }
.dash-card__num small { font-size: 1.1rem; color: var(--muted); }
.dash-card__label { display: block; margin-top: 0.4rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.dash-card__sub { margin-top: 0.5rem; font-size: 0.85rem; color: var(--ink-soft); }
.dash-section { margin-bottom: 2rem; }
.dash-section h2 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.9rem; }
.dash-list { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.dash-list li { background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: 0.8rem 1rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.dash-quick { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* ---- Slide-in drawer ---- */
.admin-drawer__backdrop { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.45); opacity: 0; visibility: hidden; transition: opacity var(--t-fast), visibility var(--t-fast); z-index: 60; }
.admin-drawer__backdrop.open { opacity: 1; visibility: visible; }
.admin-drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(460px, 100%); background: var(--bone); box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform var(--t); z-index: 61; display: flex; flex-direction: column; }
.admin-drawer.open { transform: translateX(0); }
.admin-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line); }
.admin-drawer__head h2 { font-family: var(--serif); font-size: 1.3rem; }
.admin-drawer__close { appearance: none; background: transparent; border: 0; font-size: 1.8rem; line-height: 1; cursor: pointer; color: var(--muted); padding: 0 0.25rem; }
.admin-drawer__close:hover { color: var(--ink); }
.admin-drawer__body { padding: 1.5rem; overflow-y: auto; flex: 1; }

/* Drawer forms */
.drawer-form { display: grid; gap: 1rem; }
.drawer-form label { display: grid; gap: 0.35rem; font-size: 0.9rem; font-weight: 500; }
.drawer-form input[type="text"], .drawer-form input[type="email"], .drawer-form input[type="tel"], .drawer-form input[type="url"], .drawer-form input[type="number"], .drawer-form input[type="date"], .drawer-form input[type="datetime-local"], .drawer-form input[type="file"], .drawer-form select, .drawer-form textarea {
  font: inherit; border: 1px solid var(--line); border-radius: var(--r-md); padding: 0.6rem 0.8rem; background: var(--paper); width: 100%;
}
.drawer-form textarea { resize: vertical; min-height: 90px; }
.drawer-form input:focus, .drawer-form select:focus, .drawer-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.18); }
.drawer-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.drawer-form .check { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }
.drawer-form .check input { width: auto; }
.drawer-form .checks { display: flex; gap: 1rem; flex-wrap: wrap; }
.drawer-form .form-hint { font-size: 0.82rem; color: var(--muted); font-weight: 400; }
.drawer-form .form-error { font-size: 0.85rem; color: #b42318; min-height: 1em; }
.drawer-form .drawer-actions { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.drawer-form .drawer-actions .btn { flex: 1; }

/* ---- Reusable month calendar ---- */
.cal__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.cal__head h3 { font-family: var(--serif); font-size: 1.25rem; }
.cal__nav { display: flex; gap: 0.4rem; }
.cal__nav button { appearance: none; border: 1px solid var(--line); background: var(--paper); border-radius: var(--r-md); padding: 0.4rem 0.75rem; cursor: pointer; font: inherit; font-size: 0.9rem; }
.cal__nav button:hover { border-color: var(--gold); color: var(--gold); }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.cal__dow { background: var(--bone-2); text-align: center; padding: 0.5rem 0; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 600; }
.cal__cell { background: var(--paper); min-height: 96px; padding: 0.4rem; display: flex; flex-direction: column; gap: 0.25rem; }
.cal__cell.is-blank { background: var(--bone); }
.cal__cell.is-today { box-shadow: inset 0 0 0 2px var(--gold); }
.cal__cell.is-clickable { cursor: pointer; }
.cal__cell.is-clickable:hover { background: var(--bone); }
.cal__date { font-size: 0.8rem; color: var(--muted); font-weight: 600; }
.cal__pill { display: block; width: 100%; text-align: left; appearance: none; border: 0; cursor: pointer; font: inherit; font-size: 0.72rem; line-height: 1.3; padding: 0.2rem 0.4rem; border-radius: var(--r-sm); background: var(--bone-2); color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal__pill--confirmed { background: var(--gold); color: #fff; }
.cal__pill--completed, .cal__pill--posted { background: var(--ink); color: #fff; }
.cal__pill--deposit_paid, .cal__pill--scheduled { box-shadow: inset 0 0 0 1.5px var(--gold); color: var(--gold); background: var(--paper); }
.cal__pill--instagram { background: #fce8f1; color: #c13584; }
.cal__pill--facebook { background: #e7f0fb; color: #1877f2; }
.cal__pill--youtube { background: #fdeaea; color: #c4302b; }
.cal__more { font-size: 0.7rem; color: var(--muted); padding: 0 0.4rem; }
.cal-agenda { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.cal-agenda li { background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: 0.7rem 1rem; display: flex; gap: 0.8rem; align-items: center; cursor: pointer; }
.cal-agenda__date { font-family: var(--serif); text-align: center; min-width: 48px; line-height: 1.1; }
.cal-agenda__date b { display: block; font-size: 1.3rem; }
.cal-agenda__date span { font-size: 0.72rem; color: var(--muted); }

/* ---- Public: Instagram reels (9:16 facade, reuses .video machinery) ---- */
.reel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.8rem, 1.6vw, 1.4rem); }
.video--reel { aspect-ratio: 9 / 16; box-shadow: var(--shadow-sm); }
.video--reel.is-fallback { background: linear-gradient(150deg, var(--gold) 0%, var(--ink) 100%); }
.video--reel .video__label { font-size: 0.95rem; }
.reel-ig { position: absolute; top: 0.8rem; right: 0.8rem; z-index: 2; width: 26px; height: 26px; opacity: 0.92; }
.video--reel.is-playing .reel-ig { display: none; }

/* Admin reel rows */
.reel-row { display: flex; justify-content: space-between; gap: 1rem; align-items: center; flex-wrap: wrap; }
.reel-row__main { display: flex; gap: 1rem; align-items: flex-start; }
.reel-row .admin-item__msg { margin: 0.3rem 0 0.3rem; }
.reel-thumb { width: 54px; height: 72px; border-radius: var(--r-sm); background: var(--bone-2) center/cover no-repeat; flex: 0 0 auto; }
.reel-thumb--fallback { background: linear-gradient(150deg, var(--gold), var(--ink)); }
.reel-thumb--lg { width: 90px; height: 120px; margin-bottom: 0.25rem; }

/* ---- Admin responsive ---- */
@media (max-width: 760px) {
  .admin-drawer { width: 100%; }
  .cal__cell { min-height: 64px; }
  .reel-grid { grid-template-columns: repeat(2, 1fr); }
  .drawer-form .field-row { grid-template-columns: 1fr; }
  .admin-toolbar { align-items: stretch; }
  .admin-search { min-width: 0; width: 100%; }
}
@media (max-width: 980px) {
  .reel-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Admin additions: CRM, reports, invoices, CMS, settings ===== */

/* Sub-nav inside grouped tabs (Home / Content / Settings) */
.subnav { margin-bottom: 1.4rem; }

/* Availability blocks on the calendar */
.cal__pill--blocked { background: repeating-linear-gradient(45deg, var(--bone-2), var(--bone-2) 6px, #f3efe8 6px, #f3efe8 12px); color: var(--muted); box-shadow: inset 0 0 0 1px var(--line); }

/* Reports: static cards + bars */
.dash-card--static { cursor: default; }
.rep-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 1.4rem; }
.rep-bar { display: grid; grid-template-columns: 130px 1fr 90px; gap: 0.6rem; align-items: center; margin: 0.35rem 0; font-size: 0.85rem; }
.rep-bar__label { color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rep-bar__track { background: var(--bone-2); border-radius: 999px; height: 14px; overflow: hidden; }
.rep-bar__fill { display: block; height: 100%; background: var(--gold); border-radius: 999px; }
.rep-bar__val { text-align: right; font-weight: 600; }
@media (max-width: 760px) { .rep-cols { grid-template-columns: 1fr; } .rep-bar { grid-template-columns: 100px 1fr 70px; } }

/* Invoice statuses */
.badge--sent { background: transparent; color: var(--gold); box-shadow: inset 0 0 0 1.5px var(--gold); }
.badge--paid { background: var(--gold); color: #fff; }

/* Invoice line-item repeater + totals */
.line-items { display: flex; flex-direction: column; gap: 0.5rem; margin: 0.4rem 0 0.7rem; }
.line-item { display: grid; grid-template-columns: 1fr 56px 90px 32px; gap: 0.4rem; align-items: center; }
.line-item input { width: 100%; }
.invoice-totals { margin-left: auto; text-align: right; font-size: 0.9rem; line-height: 1.7; }
.invoice-totals strong { margin-left: 0.4rem; }

/* Drawer detail view (clients, availability) + CMS subheads */
.drawer-detail__body p { margin: 0 0 0.6rem; }
.drawer-subhead { font-family: var(--serif); font-size: 1rem; margin: 1.4rem 0 0.6rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.drawer-detail .drawer-subhead:first-child, .cms-form .drawer-subhead:first-of-type { border-top: 0; padding-top: 0; }
.cms-form { max-width: 640px; }
.cms-form code, .admin-empty code { background: var(--bone-2); padding: 0.05rem 0.35rem; border-radius: var(--r-sm); font-size: 0.85em; }

/* Messages unread badge on the nav tab */
.nav-badge { display: inline-block; min-width: 18px; height: 18px; line-height: 18px; padding: 0 5px; margin-left: 0.4rem; font-size: 0.7rem; font-weight: 700; text-align: center; color: #fff; background: var(--gold); border-radius: 999px; vertical-align: middle; }
.nav-badge[hidden] { display: none; }

/* Repertoire public page */
.rep-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
.rep-filter { font: inherit; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em; padding: 0.4rem 0.9rem; border-radius: 999px; border: 0; cursor: pointer; background: var(--bone-2); color: var(--ink-soft); transition: background var(--t-fast), color var(--t-fast); }
.rep-filter:hover { background: var(--gold); color: #fff; }
.rep-filter.is-active { background: var(--ink); color: #fff; }
.rep-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 2rem; }
.rep-song { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.rep-song h3 { font-size: 1.1rem; margin: 0; }
.rep-song__origin { color: var(--muted); font-size: 0.9rem; margin: 0.2rem 0 0; }
.rep-song__cat { display: inline-block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; color: var(--gold); margin-top: 0.3rem; }
.rep-song__notes { font-size: 0.9rem; margin: 0.3rem 0 0; }
@media (max-width: 680px) { .rep-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   BRANDED EXPORTS — Excel + PDF buttons, status, spinner, toast
   ========================================================================= */
.export-cluster { display: inline-flex; align-items: center; gap: 0.5rem; padding-left: 0.7rem; margin-left: 0.1rem; border-left: 1px solid var(--line); }
.export-cluster__label { font-family: var(--sans); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.export-btn { gap: 0.45em; }
.export-btn .export-ico { width: 14px; height: 14px; flex: 0 0 auto; }
.export-btn[disabled] { opacity: 0.55; cursor: default; transform: none; }
.export-btn[disabled]:hover { background: transparent; color: var(--ink); border-color: var(--line); transform: none; }
.export-status { font-size: 0.78rem; color: var(--muted); }
.export-cluster.is-busy .export-btn[aria-busy="true"] .export-ico { animation: bd-spin 0.7s linear infinite; transform-origin: 50% 50%; }
@keyframes bd-spin { to { transform: rotate(360deg); } }

/* Branded toast confirming a download (programmatic downloads are otherwise silent) */
.bd-toast {
  position: fixed; left: 50%; bottom: 1.5rem; transform: translate(-50%, 1rem);
  background: var(--paper); color: var(--ink); border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-md); padding: 0.7rem 1.1rem; border-radius: var(--r-md);
  font-size: 0.85rem; z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast); max-width: min(90vw, 440px);
}
.bd-toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 760px) {
  .export-cluster { width: 100%; border-left: 0; padding-left: 0; }
  .export-cluster__label { display: none; }
  .export-btn { flex: 1; }
}

/* ---- News area: archive filters, single article, mailing-list form ---- */
.nl-filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin: 0 0 2.2rem; }
.nl-chip { font: inherit; font-size: .85rem; padding: .42rem .95rem; border-radius: 999px; border: 1px solid rgba(0,0,0,.14); background: transparent; color: var(--muted); cursor: pointer; transition: color .15s, background .15s, border-color .15s; }
.nl-chip:hover { color: var(--ink); border-color: var(--ink); }
.nl-chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* News/blog cards: image on top, readable text block below (overrides the photo-overlay .card) */
.nl-card { aspect-ratio: auto; background: #fff; border: 1px solid rgba(0,0,0,.08); display: flex; flex-direction: column; }
.nl-card::after { display: none; }
.nl-card img { height: 240px; object-position: center 58%; }
.nl-card:hover img { transform: none; }
.nl-card .card__title { position: static; padding: 1.1rem 1.25rem 1.4rem; color: var(--ink); }
.nl-card .card__title .eyebrow { color: var(--gold); }
.nl-card .card__title h3 { color: var(--ink); }
.nl-card .card__title p { color: var(--muted); font-size: .95rem; line-height: 1.55; margin-top: .45rem; }
/* Full-width single-column cards (phones): portrait selfies need more height + a face-biased crop */
@media (max-width: 760px) { .nl-card img { height: 340px; object-position: center 50%; } }

/* Single issue spans the full content container (set in newsletter.html) — text and
   images both run the full width. */
#newsletter-article { font-size: 1.05rem; line-height: 1.75; }
#newsletter-article h2 { font-family: var(--serif); font-size: 1.5rem; margin: 2rem 0 .8rem; }
#newsletter-article p { margin: 0 0 1.1rem; }
#newsletter-article > img { width: 100%; }

.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.newsletter-form { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; align-items: center; }
.newsletter-form input[type="email"] { flex: 1 1 260px; max-width: 360px; padding: .8rem 1rem; border: 1px solid rgba(0,0,0,.16); border-radius: 6px; font: inherit; background: #fff; }
.newsletter-form .form-status { flex-basis: 100%; text-align: center; margin: .4rem 0 0; }
