/* =========================================================
   CLEAN — shared stylesheet
   Fonts, brand vars, and all page sections. Desktop styles
   match the approved mockups; responsive overrides are at
   the bottom of the file.
   ========================================================= */

@font-face {
  font-family: 'Worldstar';
  src: url('../fonts/worldstar.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --green: #05AA4B;
  --peach: #F6D4BE;
  --brown: #604330;
  --ink: #191919;
  --white: #FFFDFB;
  color-scheme: light;
}

/* Re-assert the same brand colors under a dark OS/browser preference,
   since some mobile browsers (Samsung Internet's forced website dark
   mode in particular) apply their own recoloring even when a page
   declares color-scheme: light. This keeps standards-compliant
   browsers from ever swapping the palette. */
@media (prefers-color-scheme: dark) {
  :root {
    --green: #05AA4B;
    --peach: #F6D4BE;
    --brown: #604330;
    --ink: #191919;
    --white: #FFFDFB;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--peach);
  -webkit-font-smoothing: antialiased;
}

.display { font-family: 'Worldstar', Georgia, serif; font-weight: 400; }
a, a:visited { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ---------- header ---------- */
/* Scoped to .site-header (not bare `header`) — admin pages also load
   this stylesheet and have their own, completely different
   <header><nav><a> structure (includes/admin-header.php); bare tag
   selectors here were matching that too and breaking the admin nav
   (position:absolute with no offsets collapses every link onto the
   same spot, and pointer-events:none made them unclickable besides). */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 130px;
  max-width: 1440px;
  margin: 0 auto;
  pointer-events: none;
}

.site-header .logo, .site-header nav a, .site-header .nav-search, .mobile-nav { pointer-events: auto; }

.logo {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
}

.logo { display: block; }
.logo img { height: 46px; display: block; }

/* Scattered cluster, not a row: MUSIC top-left, CONTACT the big
   overlapping anchor beneath it, LIVE MUSIC off to the right —
   matching the concept's composition. */
.site-header nav {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: 210px;
  height: 155px;
}

.site-header nav a, .site-header nav button {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  transition: transform 0.15s ease;
}

.site-header nav a.n1 { top: 6px; left: 30px; transform: rotate(-8deg); }
.site-header nav a.n2 { top: 36px; left: 118px; transform: rotate(5deg); }
.site-header nav a.n3 { top: 50px; left: 50px; transform: rotate(-9deg); }

.site-header nav a.n1:hover { transform: rotate(-8deg) scale(1.06); }
.site-header nav a.n2:hover { transform: rotate(5deg) scale(1.06); }
.site-header nav a.n3:hover { transform: rotate(-9deg) scale(1.06); }

.site-header nav img { height: 54px; display: block; }
.site-header nav img.live { height: 40px; }
.site-header nav img.contact { height: 85px; }

/* ---------- header search ---------- */
.nav-search {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  border: 1px solid var(--peach);
  outline: 1px solid var(--green);
  border-radius: 20px;
  padding: 6px 12px;
  height: 36px;
}

.nav-search-icon { width: 15px; height: 15px; color: var(--brown); flex-shrink: 0; }

.nav-search input[type="search"] {
  width: 84px;
  background: none;
  border: none;
  outline: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: var(--brown);
}

.nav-search input[type="search"]::placeholder { color: rgba(96,67,48,0.75); }
.nav-search input[type="search"]::-webkit-search-cancel-button { cursor: pointer; }

.nav-search .search-results {
  left: auto;
  right: 0;
  width: 300px;
}

/* ---------- mobile hamburger menu (desktop default: invisible,
   .nav-search escapes through via display:contents so it still
   positions exactly like before) ---------- */
.mobile-nav, .mobile-nav-panel { display: contents; }
.mobile-nav-toggle { display: none; }
.mobile-nav-panel > a { display: none; }

/* ---------- hero (homepage, 2.0) ---------- */
/* Left: current slide's photo. Center: the story — click anywhere in it
   to read the article. Right: a cropped peek of the NEXT slide's photo —
   click it to jump ahead early. Auto-advances every 7s regardless. */
.hero {
  border: 1px solid var(--green);
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 2fr 0.79fr 0.7fr;
  height: 300px;
}

/* .hero-link wraps the photo + text grid cells in a single click
   target; display:contents drops its own box so Grid still places
   the photo and text as if they were direct .hero children. */
.hero-link { display: contents; }

.hero-slide-photo, .hero-peek { overflow: hidden; background: var(--ink); display: block; position: relative; border: none; padding: 0; width: 100%; height: 100%; }
.hero-slide-photo, .hero-text, .hero-peek { cursor: pointer; }
.hero-slide-photo img, .hero-peek img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 1; transition: opacity 0.4s ease; }
.hero-peek img { opacity: 0.8; object-position: left center; }
.hero-peek:hover img { opacity: 1; }

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 24px;
  border-left: 1px solid var(--green);
  border-right: 1px solid var(--green);
  transition: opacity 0.4s ease;
}

.hero-type {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.hero-name {
  font-family: 'Worldstar', Georgia, serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.05;
  color: var(--green);
  margin-bottom: 4px;
}

.hero-name > div + div { margin-top: -8px; }

.hero-headline {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 3px;
}

.hero-venue {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 14px;
  color: var(--green);
}

/* ---------- latest / card grid (homepage, music, live) ---------- */
.latest {
  padding: 72px 56px 96px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- homepage layout: articles + agenda sidebar ---------- */
.home-layout {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px 96px;
  margin-top: -10px;
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 56px;
  align-items: start;
}

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

/* Stays 3 columns all the way down to the mobile stack breakpoint —
   cards shrink continuously with the window instead of jumping to 2
   columns (and ~80% bigger) the instant some mid-width breakpoint is
   crossed. One clean transition (to stacked cards) beats two jumps. */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card-excerpt {
  font-size: 13px;
  line-height: 1.5;
  color: var(--green);
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 4px;
}

/* ---------- search results dropdown ---------- */
.search-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--peach);
  border: 1px solid var(--green);
  border-radius: 12px;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(25,25,25,0.12);
}

.search-results.open { display: block; }

.search-result {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--green);
  line-height: normal;
  transition: none;
}

.search-result:hover { transform: none; background: rgba(5,170,75,0.08); }

.search-result:last-child { border-bottom: none; }

.search-result-type {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--green);
}

.search-result-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: var(--green);
}

.search-empty {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--green);
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Worldstar', Georgia, serif;
  font-size: 34px;
  color: var(--green);
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.card { display: flex; flex-direction: column; position: relative; }

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(0,0,0,0.05);
  margin-bottom: 16px;
}

.card-image img { width: 100%; height: 100%; object-fit: cover; }

.card .card-type {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 6px;
}

.card h3 {
  font-family: 'Worldstar', Georgia, serif;
  font-weight: 400;
  font-size: 27px;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 6px;
}

.card p { font-size: 13px; color: var(--green); font-weight: 400; letter-spacing: 0.3px; }

/* grid-3 (homepage, 2.0): square photo on the left, text on the right,
   the whole thing padded away from its own border — not bled to it.
   Title drops the Worldstar serif for a light sans-serif cap style. */
.grid-3 .card {
  border: 1px solid var(--green);
  padding: 14px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}
.grid-3 .card-image { flex: 0 0 52%; width: 52%; margin: 0; aspect-ratio: 1 / 1; }
.grid-3 .card-body { flex: 1; min-width: 0; }

.grid-3 .card .card-type {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--green);
  margin-bottom: 8px;
}

.grid-3 .card h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: var(--green);
  line-height: 1.25;
  margin-bottom: 8px;
}

.grid-3 .card-excerpt {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 11px;
  line-height: 1.4;
  color: var(--green);
  font-weight: 400;
  -webkit-line-clamp: 3;
}

/* ---------- footer ---------- */
footer {
  padding: 40px 56px 32px;
  border-top: 1px solid rgba(96,67,48,0.2);
  max-width: 1440px;
  margin: 0 auto;
}

.footer-row { display: flex; justify-content: space-between; align-items: center; }
.footer-logo img { height: 24px; display: block; opacity: 0.85; }

.footer-row a {
  font-size: 13px;
  color: var(--brown);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-instagram { line-height: 0; transition: transform 0.15s ease; }
.footer-instagram img { width: 22px; height: 22px; display: block; }
.footer-instagram:hover { transform: scale(1.08); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 12px;
  color: var(--green);
}

.footer-bottom a, .footer-bottom a:visited { color: var(--green) !important; }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- page head (full-agenda) ---------- */
.page-head {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px 0;
}

.page-head.narrow { max-width: 1440px; }

.page-title {
  font-family: 'Worldstar', Georgia, serif;
  font-size: 40px;
  color: var(--green);
  margin-bottom: 28px;
}

/* ---------- tabs (music page) ---------- */
.tab-row {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(96,67,48,0.2);
}

.tab-btn {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--brown);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 14px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tab-btn.active { color: var(--green); border-color: var(--green); }

/* ---------- pagination ---------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px 0 16px;
}

.pagination-link, .pagination-link:visited {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--green) !important;
}

.pagination-link:hover { text-decoration: underline; }
.pagination-link.disabled, .pagination-link.disabled:visited { color: var(--green) !important; opacity: 0.35; pointer-events: none; }

.pagination-status {
  font-size: 13px;
  color: var(--green);
}

/* ---------- article page layout (2.0): content + suggested sidebar ---------- */
.article-layout {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px 96px;
  margin-top: -10px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.article-suggested { grid-template-columns: 1fr; gap: 24px; }

/* ---------- article (post / album / concert / festival / list) ---------- */
article {
  border: 1px solid var(--green);
  padding: 40px 40px 24px;
  margin: 0;
}

.post-type {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.post-artist {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 21px;
  color: var(--green);
}

.post-song {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--green);
  margin-bottom: 6px;
}

h1.post-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.25;
  color: var(--green);
  margin-bottom: 10px;
}

.post-released { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: italic; font-size: 13px; color: var(--green); margin-bottom: 36px; }

/* "Artist on tour" badge — same solid-green, square-cornered box as
   the mobile search bar, with a click-to-open dates panel below it. */
.on-tour { margin-bottom: 32px; }

.on-tour-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  border: 1px solid var(--green);
  color: var(--peach);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.8px;
  padding: 10px 16px;
  cursor: pointer;
}
.on-tour-toggle::after { content: '\25BE'; font-size: 10px; }
.on-tour-toggle[aria-expanded="true"]::after { content: '\25B4'; }

.on-tour-panel {
  display: none;
  border: 1px solid var(--green);
  border-top: none;
  background: var(--peach);
  max-width: 320px;
}
.on-tour-panel.open { display: block; }

.on-tour-date, .on-tour-date:visited {
  display: block;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(5,170,75,0.2);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--green) !important;
}
.on-tour-date:last-child { border-bottom: none; }
.on-tour-venue { display: block; font-weight: 400; font-size: 12px; color: var(--green); margin-top: 2px; }

.hero-photo { width: 100%; border-radius: 4px; overflow: hidden; margin-bottom: 36px; }
.hero-photo img { width: 100%; display: block; }

.post-body p { font-size: 15px; line-height: 1.65; color: var(--green); margin-bottom: 22px; }
.post-body em { font-style: italic; }
.post-body a { color: var(--green); text-decoration: underline; }
.post-body a:hover { opacity: 0.75; }
.post-published { margin-bottom: 0; }

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 34px 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink);
}

.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.photo-embed { width: 100%; margin: 34px 0; border-radius: 4px; overflow: hidden; }
.photo-embed img { width: 100%; display: block; }

.photo-stack { display: flex; flex-direction: column; gap: 4px; margin-top: 28px; }
.photo-stack img { width: 100%; display: block; cursor: zoom-in; }

/* page arrows (prev/next article) */
.page-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  z-index: 5;
}

.page-arrow img { width: 26px; display: block; }
#pagePrev { left: 24px; }
#pageNext { right: 24px; }

/* recommended */
.recommended {
  max-width: 900px;
  margin: 70px auto 0;
  padding: 48px 24px 0;
  border-top: 1px solid rgba(96,67,48,0.2);
}

.recommended-title { font-family: 'Worldstar', Georgia, serif; font-size: 22px; color: var(--green); margin-bottom: 24px; }

.rec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rec-card { display: block; }

.rec-card-image { width: 100%; aspect-ratio: 4 / 5; overflow: hidden; background: rgba(0,0,0,0.05); margin-bottom: 10px; }
.rec-card-image img { width: 100%; height: 100%; object-fit: cover; }

.rec-card .card-type {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 4px;
}

.rec-card h4 {
  font-family: 'Worldstar', Georgia, serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 4px;
}

.rec-card p { font-size: 11px; color: var(--green); }

/* ---------- live page ---------- */
.live-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px 96px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

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

/* agenda sidebar (also used on live page + could reuse for widgets) */
.agenda { border-top: 3px solid var(--green); padding-top: 20px; }
.agenda-title { font-family: 'Worldstar', Georgia, serif; font-size: 21px; color: var(--green); margin-bottom: 16px; }

.city-tabs { display: flex; gap: 16px; margin-bottom: 20px; }

.city-tab, .city-tab:visited {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--green) !important;
  opacity: 0.45;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.city-tab.active, .city-tab.active:visited { color: var(--green) !important; opacity: 1; }

.agenda-day {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(96,67,48,0.12);
  font-size: 13px;
}

.agenda-day .day-label { font-weight: 700; color: var(--brown); width: 46px; flex-shrink: 0; }
.agenda-day .day-info { flex-grow: 1; color: var(--green); text-align: right; }
.agenda-day .day-info a { display: block; }
/* Breathing room between multiple shows on the same day — matches
   the spacing already used between "just announced" items. Covers
   both markup shapes: several shows stacked inside one .day-info
   (sidebar widget), and several .day-info siblings, one per show
   (Full Agenda's mobile week view). */
.agenda-day .day-info > * + * { margin-top: 12px; }
.agenda-day .day-info + .day-info { margin-top: 12px; }
.agenda-day .day-info .artist { font-weight: 700; }
.agenda-day .day-info .venue { color: var(--brown); font-size: 11px; display: block; font-weight: 400; }

/* Cancelled show: struck-through artist name, everywhere .artist
   appears in an agenda listing (sidebar widget, full agenda grid and
   week view, "just announced" lists). */
.artist.cancelled { text-decoration: line-through; }

.clean-tag {
  display: inline-block;
  background: none;
  color: var(--green);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 9px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  margin-top: 4px;
}

.agenda-divider { border: none; border-top: 1px solid rgba(96,67,48,0.2); margin: 22px 0 16px; }

.agenda-subtitle {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}

.announced-item, .announced-item:visited { font-size: 13px; color: var(--green) !important; margin-bottom: 12px; display: block; }
.announced-item .artist { font-weight: 700; }
.announced-item .tour { color: var(--brown); font-size: 12px; font-style: italic; display: block; }
.announced-item .venue { color: var(--brown); font-size: 11px; display: block; font-weight: 400; }
.announced-item .onsale { color: var(--brown); font-size: 11px; display: block; margin-top: 2px; }

.agenda-link, .agenda-link:visited {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--green) !important;
  border-bottom: 1px solid var(--green);
  padding-bottom: 2px;
}

/* ---------- agenda-green (2.0): icon heading, all-green, no brown ---------- */
.agenda-green { border-top: none; padding-top: 0; }
.agenda-icon { width: 130px; height: auto; display: block; margin: 0 auto 20px; }
.page-head .agenda-icon { margin: 0 0 8px; }
.agenda-green .city-tab, .agenda-green .city-tab:visited { color: var(--green) !important; opacity: 0.45; }
.agenda-green .city-tab.active { opacity: 1; }
/* Stacked, not side-by-side: day label on its own row with the divider
   directly under it, then the show's details left-aligned below that. */
.agenda-green .agenda-day {
  display: block;
  border-bottom: none;
  padding: 12px 0;
}
.agenda-green .agenda-day .day-label {
  display: block;
  width: auto;
  color: var(--green);
  text-transform: uppercase;
  border-bottom: 1px solid var(--green);
  padding-bottom: 4px;
  margin-bottom: 8px;
}
.agenda-green .agenda-day .day-info { text-align: left; }

.agenda-green .agenda-day .day-info .artist {
  display: block;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 17px;
  text-transform: uppercase;
}
.agenda-green .agenda-day .day-info .venue {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--green);
  font-weight: 400;
}

.agenda-green .agenda-divider { border-top: 1px solid rgba(5,170,75,0.2); }
.agenda-green .agenda-subtitle { color: var(--green); }

.agenda-green .announced-item .artist {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}
.agenda-green .announced-item .venue {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--green);
  font-weight: 400;
}
.agenda-green .announced-item .onsale {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--green);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
}
.agenda-green .agenda-link { border-bottom-color: var(--green); }

/* ---------- full agenda (calendar) ---------- */
.month-nav { display: flex; align-items: center; gap: 20px; margin-bottom: 12px; }

/* Mobile-only week nav/list — hidden on desktop, where the month
   grid (.cal-wrap) and .month-nav (without .week-nav) are shown. */
.week-agenda, .week-picker { display: none; }

.month-nav button, .month-nav a {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--green);
}

.month-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
}

.cal-wrap { max-width: 1440px; margin: 0 auto; padding: 0 56px 12px; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--green);
  border: 1px solid var(--green);
}

.cal-dow {
  background: var(--peach);
  padding: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--green);
  text-align: center;
}

.cal-cell { background: var(--peach); min-height: 76px; padding: 6px 10px; }
.cal-cell.empty { background: #c6cca7; }
.cal-date { font-size: 12px; color: var(--green); margin-bottom: 6px; }

.cal-event, .cal-event:visited {
  display: block;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17px;
  color: var(--green) !important;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 8px;
}
.cal-event .venue { color: var(--green); font-size: 11px; font-weight: 400; text-transform: none; display: block; }

/* ---------- full agenda: "just announced" section below the calendar ---------- */
.full-agenda-announced { max-width: 1440px; margin: 0 auto; padding: 16px 56px 96px; }

.full-agenda-announced .agenda-subtitle {
  color: var(--green);
  margin-bottom: 16px;
}

.full-agenda-announced .announced-item, .full-agenda-announced .announced-item:visited { color: var(--green) !important; }

.full-agenda-announced .announced-item .artist {
  display: block;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 17px;
  text-transform: uppercase;
}

.full-agenda-announced .announced-item .venue {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--green);
  font-weight: 400;
}

.full-agenda-announced .announced-item .onsale {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--green);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
}

/* "Clean's there" as a small solid pill on the full agenda page (calendar
   + just announced) — peach text on green, not the plain oblique caps
   text used in the sidebar widget. */
.cal-event .clean-tag,
.full-agenda-announced .clean-tag {
  display: inline-block;
  background: var(--green);
  color: var(--peach);
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  padding: 2px 8px;
  border-radius: 8px;
  margin-top: 4px;
}

/* ---------- contact page (2.0): reuses .article-layout's green box + suggested sidebar ---------- */
.contact-heading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--green);
  margin: 32px 0 14px;
}

.contact-heading:first-child { margin-top: 0; }

.contact-links { display: flex; flex-direction: column; gap: 6px; }

.contact-links a, .contact-links a:visited {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--green) !important;
}

.contact-links a:hover { text-decoration: underline; }

/* ---------- disclaimer page: empty on purpose for now ---------- */
.coming-soon {
  max-width: 1440px;
  margin: 0 auto;
  padding: 140px 56px 220px;
  text-align: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
}

/* =========================================================
   Responsive overrides
   ========================================================= */

@media (max-width: 1024px) {
  .grid, .live-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .live-layout { grid-template-columns: 1fr 280px; gap: 32px; padding: 0 32px 72px; }
  .home-layout { grid-template-columns: 1fr 190px; gap: 32px; padding: 32px 32px 72px; }
  .article-layout { grid-template-columns: 1fr 300px; gap: 32px; padding: 8px 32px 72px; }
  .latest, .page-head, .cal-wrap { padding-left: 32px; padding-right: 32px; }
  footer { padding-left: 32px; padding-right: 32px; }
  .logo { left: 32px; }
  .nav-search { right: 32px; }
  .hero { grid-template-columns: 1fr 0.8fr; height: auto; }
  .hero-peek { display: none; }
}

@media (max-width: 860px) {
  .live-layout, .home-layout, .article-layout { grid-template-columns: 1fr; }
  .agenda { border-top: none; padding-top: 0; margin-top: 48px; }
  .hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Mobile header: same sticky + overlap trick as desktop, now that
     the header itself stays compact — logo, icon cluster and
     hamburger are all position:absolute (like desktop), so none of
     them inflate the header's own reserved height. The earlier "messy
     tangle" bug came from a tall, multi-row *flex* header where the
     icon row was in normal flow; keeping everything absolutely
     positioned within a fixed, short header avoids that regardless
     of what scrolls underneath. */
  .site-header { height: 96px; padding: 0 24px; }

  .logo { left: 24px; }
  .logo img { height: 38px; }

  /* Same scattered/rotated cluster as desktop, scaled to ~0.63x and
     shifted right (between the logo and the hamburger) rather than
     centered, since mobile has no search bar on the other side. */
  /* left:calc(50% + 37px) + translateX(-50%) centers the cluster's
     own midpoint between the logo and the hamburger button (measured
     empirically — logo and hamburger aren't the same width, so the
     true gap-center sits a bit right of the header's own center),
     independent of the cluster's width. */
  /* .site-header prefix here isn't just for clarity — it's required
     for specificity. The admin-nav-leak fix renamed the desktop rules
     from bare `header ...` to `.site-header ...`, which gave them an
     extra class in their selector; since these mobile overrides only
     had one class (.header-icons) against tag selectors, the
     class-count tiebreak now favoured desktop's *more tag-qualified*
     selector (.site-header nav img, 1 class + 2 tags) over this one
     (.header-icons img, 1 class + 1 tag) — same class count, more
     tags wins, so mobile silently lost and rendered desktop's larger
     icon sizes and positions. Prefixing with .site-header adds a
     second class here, which now wins outright regardless of tags. */
  .site-header .header-icons {
    display: block;
    left: calc(50% + 37px);
    right: auto;
    top: 16px;
    transform: translateX(-50%);
    width: 149px;
    height: 110px;
  }
  .site-header .header-icons a.n1 { top: 4px; left: 21px; transform: rotate(-8deg); }
  .site-header .header-icons a.n2 { top: 25px; left: 81px; transform: rotate(5deg); }
  .site-header .header-icons a.n3 { top: 35px; left: 35px; transform: rotate(-9deg); }
  .site-header .header-icons a.n1:hover { transform: rotate(-8deg) scale(1.06); }
  .site-header .header-icons a.n2:hover { transform: rotate(5deg) scale(1.06); }
  .site-header .header-icons a.n3:hover { transform: rotate(-9deg) scale(1.06); }
  .site-header .header-icons img { height: 37px; }
  .site-header .header-icons img.live { height: 28px; }
  .site-header .header-icons img.contact { height: 59px; }

  .mobile-nav { display: block; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); }

  .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .mobile-nav-toggle span { display: block; width: 100%; height: 2px; background: var(--green); }

  .mobile-nav-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: var(--peach);
    border: 1px solid var(--green);
    padding: 8px 0;
    z-index: 10;
  }
  .mobile-nav-panel.open { display: flex; flex-direction: column; }

  .mobile-nav-panel > a, .mobile-nav-panel > a:visited {
    display: block;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--green) !important;
    padding: 10px 18px;
  }

  /* The search bar lives inside the dropdown panel on mobile — needs
     position:relative (not the desktop's absolute placement) so it
     lays out inline, and it still anchors .search-results, which is
     absolutely positioned relative to it. right/top:auto cancel the
     desktop rule's right:56px/top:50% — those apply as offsets under
     position:relative too, not just absolute, and were shifting the
     whole search box out past the panel's left edge. */
  .mobile-nav-panel .nav-search {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 6px 18px 4px;
    width: auto;
    height: 36px;
    border-radius: 0;
  }
  .mobile-nav-panel .nav-search input[type="search"] { width: 100%; }
  .mobile-nav-panel .search-results { left: 0; right: 0; width: auto; border-radius: 0; }

  .hero { grid-template-columns: 1fr; height: auto; margin-bottom: 40px; padding: 0 24px; }
  .hero-peek { display: none; }
  .hero-slide-photo { height: 220px; }
  .hero-text { padding: 20px 8px; }
  .hero-name { font-size: 32px; }

  .latest, .page-head, .page-head.narrow, .cal-wrap, .coming-soon { padding-left: 24px; padding-right: 24px; }
  .coming-soon { padding-top: 90px; padding-bottom: 120px; font-size: 24px; }
  footer { padding: 32px 24px 24px; }

  .grid, .live-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  /* -10px margin-top inherited from the desktop base rule — same
     overlap trick as desktop, now that the mobile header is compact
     and sticky again too. */
  .live-layout, .home-layout, .article-layout { padding: 0 24px 56px; }

  /* grid-3 cards go single-column (one per row) but keep the same
     square-photo-left/text-right structure as desktop, just narrower */
  .grid-3 { grid-template-columns: 1fr; gap: 20px; }

  /* Homepage only: no carousel, no week agenda — landing page is
     just the latest articles, newest first (.grid-3's first card is
     already the newest article, same query, no separate logic needed). */
  .page-home .hero { display: none; }
  .page-home .agenda { display: none; }
  .page-home .grid-3 { margin-top: 16px; }

  .footer-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom { flex-direction: column; gap: 4px; }

  article { padding: 24px 20px; }
  h1.post-title { font-size: 24px; }
  .post-artist { font-size: 22px; }
  .post-song { font-size: 19px; }
  .page-arrow { display: none; }
  .article-suggested { gap: 20px; }
  /* 4 suggested articles -> 2 on mobile, for a shorter page and
     faster load — paired with loading="lazy" on these cards' images,
     a hidden (display:none) image never becomes eligible to fetch,
     so the 3rd/4th photos aren't downloaded at all on mobile. */
  .article-suggested .card:nth-child(n+3) { display: none; }

  /* Full Agenda: the month grid doesn't work on a phone — land on a
     week-at-a-time view instead (same look as the Concert Week
     Agenda sidebar widget), with just a jump-to-week dropdown (no
     month grid, no prev/next week arrows or date-range label). */
  .month-nav, .cal-wrap { display: none; }
  .page-head .agenda-icon { margin: 0 auto 20px; }
  .page-head .city-tabs { justify-content: center; }

  .week-picker { display: block; text-align: center; margin-top: 4px; }
  .week-picker select {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: var(--green);
    background: var(--peach);
    border: 1px solid var(--green);
    border-radius: 0;
    padding: 8px 12px;
    max-width: 100%;
  }

  .week-agenda { display: block; padding: 0 24px 16px; }
  .week-agenda .agenda-day .day-info + .day-info { margin-top: 10px; }

  .full-agenda-announced { padding: 16px 24px 56px; }
}
