/* ─── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #080808;
  --dark:     #111111;
  --mid:      #1c1c1c;
  --panel:    #242424;
  --gold:     #c8860a;
  --gold-lt:  #e8a020;
  --blue:     #446084;
  --blue-lt:  #6890b0;
  --cream:    #f0e8d8;
  --muted:    #888880;
  --radius:   4px;
  --nav-h:    84px;
  --nav-h-sm: 60px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'PT Sans', sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none !important; }

h1, h2, h3, h4 {
  font-family: 'Kameron', serif;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--cream); /* explicit — don't rely on inheritance (lesson #2) */
}

p { color: var(--cream); }

/* ─── Screen reader text (lesson #9) ────────────────────────────────────────── */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ─── Skip link ─────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--gold);
  color: var(--black);
  padding: 8px 16px;
  z-index: 10000;
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── Noise texture overlay ─────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ─── Admin bar compensation ────────────────────────────────────────────────── */
.admin-bar .site-nav          { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-nav        { top: 46px; }
}

/* ─── Navigation ────────────────────────────────────────────────────────────── */
/* Use li margin not ul gap — more resilient to WP injected styles (lesson #3) */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: var(--nav-h);
  background: linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, transparent 100%);
  transition: background 0.4s ease, height 0.4s ease, border-color 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: 68px;
  border-bottom: 1px solid rgba(200,134,10,0.15);
}

/* When mobile menu overlay is open — transparent so X button is visible (lesson #8) */
.site-nav.menu-open {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Target both direct img and WP custom logo wrapped img */
.nav-logo img,
.nav-logo .custom-logo-link img {
  height: 52px;
  width: auto;
  mix-blend-mode: screen;
  transition: height 0.4s ease;
}

.site-nav.scrolled .nav-logo img,
.site-nav.scrolled .nav-logo .custom-logo-link img { height: 40px; }

/* Explicit reset on ul and li (lesson #3) */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
  margin: 0 16px;
  padding: 0;
}

.nav-links a {
  font-family: 'Kameron', serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none !important;
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.2s;
}

/* CTA pill button — nav-cta class is on the li, so we target li and li > a */
.nav-links .nav-cta {
  background: var(--gold);
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.nav-links .nav-cta > a {
  color: var(--black) !important;
  text-decoration: none !important;
}
.nav-links .nav-cta:hover {
  background: var(--gold-lt);
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(200,134,10,0.5);
}


/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
}

/* ─── Main content wrapper ──────────────────────────────────────────────────── */
.site-main {
  padding-top: var(--nav-h); /* default push below nav — hero overrides with negative margin */
}

/* ─── Hero Block ────────────────────────────────────────────────────────────── */
/* Pull hero up behind fixed nav (lesson #4) */
.block-hero,
.wp-block-acf-hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-top: calc(-1 * var(--nav-h)); /* negate site-main padding-top */
}

/* ── Hero slideshow ─────────────────────────────────────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background: var(--bg, none) center 30% / cover no-repeat;
  animation: hero-zoom 14s ease-in-out infinite alternate;
}

/* Single image — zoom only, no crossfade */
.hero-slides--single .hero-slide { animation: hero-zoom 14s ease-in-out infinite alternate; }

/* 2-image crossfade — keyframes output dynamically by render.php */
.hero-slides--2 .hero-slide {
  animation:
    hero-zoom 14s ease-in-out infinite alternate,
    wf-slide-fade-2 calc(var(--slide-dur, 5s) * 2) ease-in-out infinite;
}
.hero-slides--2 .hero-slide--2 {
  animation-delay: 0s, calc(var(--slide-dur, 5s) * -1);
}

/* 3-image crossfade — keyframes output dynamically by render.php */
.hero-slides--3 .hero-slide {
  animation:
    hero-zoom 14s ease-in-out infinite alternate,
    wf-slide-fade-3 calc(var(--slide-dur, 5s) * 3) ease-in-out infinite;
}
.hero-slides--3 .hero-slide--2 {
  animation-delay: 0s, calc(var(--slide-dur, 5s) * -2);
}
.hero-slides--3 .hero-slide--3 {
  animation-delay: 0s, calc(var(--slide-dur, 5s) * -1);
}

@keyframes hero-zoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}

/* wf-slide-fade-2 and wf-slide-fade-3 keyframes are output by blocks/hero/render.php
   so the fade duration can be controlled from the ACF field. */

/* Multi-stop dark gradient overlay */
.block-hero::after,
.wp-block-acf-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.15) 35%,
    rgba(0,0,0,0.55) 70%,
    rgba(8,8,8,1.0)  100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 24px;
  z-index: 2;
}

.hero-badge {
  margin: 0 auto 32px;
  position: relative;
  width: fit-content;
}

.hero-badge img {
  width: min(420px, 82vw);
  display: block;
  position: relative;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
  animation: logo-fade 1.2s 0.3s ease forwards;
}

@keyframes logo-fade {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--gold-lt);
  margin-bottom: 16px;
  opacity: 0;
  animation: fade-up 0.8s 1.9s forwards;
}

.hero-sub {
  font-family: 'Kameron', serif;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
  opacity: 0;
  animation: fade-up 0.8s 2.3s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fade-up 0.8s 2.7s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Kameron', serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all 0.25s;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,134,10,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(240,232,216,0.4);
}
.btn-outline:hover {
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,232,216,0.1);
}

/* ─── Section Shared ────────────────────────────────────────────────────────── */
section { padding: 90px 24px; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Dancing Script', cursive;
  font-size: 1.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: 14px;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,134,10,0.3), transparent);
}

/* ─── About Block ───────────────────────────────────────────────────────────── */
.block-about,
.wp-block-acf-about {
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(68,96,132,0.1) 0%, transparent 70%),
    var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p { color: #c8c0b0; margin-bottom: 20px; font-size: 1.05rem; }

.quote-block {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(200,134,10,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block blockquote {
  font-family: 'Kameron', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 8px;
}
.quote-block cite {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.influences-label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 28px 0 14px;
}

.influences-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.influence-pill {
  background: var(--panel);
  border: 1px solid rgba(200,134,10,0.2);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.88rem;
  color: #b0a890;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}
.influence-pill:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-logo-display {
  background: var(--mid);
  border: 1px solid rgba(200,134,10,0.15);
  border-radius: 8px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-logo-display::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,134,10,0.08) 0%, transparent 70%);
}
.about-logo-display img,
.about-logo-display .custom-logo {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  mix-blend-mode: screen;
  position: relative;
  display: block;
}

.southwest-tag {
  margin-top: 24px;
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: var(--gold);
  position: relative;
}

.style-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
  position: relative;
}
.style-tag {
  background: transparent;
  border: 1px solid rgba(68,96,132,0.5);
  color: var(--blue-lt);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── About Slideshow ─────────────────────────────────────────────────────────── */
.about-slideshow {
  position: relative;
  border: 1px solid rgba(200, 134, 10, 0.15);
  border-radius: 8px;
  overflow: hidden;
  background: var(--mid);
  /* Match the logo display: same width, aspect ratio gives natural photo height */
  aspect-ratio: 4 / 3;
}

.about-slide {
  position: absolute;
  inset: 0;
  background: var(--ab-bg) center / cover no-repeat;
  opacity: 0;
  /* Single image: no animation, just show it */
}
.about-slideshow--1 .about-slide { opacity: 1; }

/* Multi-image: first slide starts visible; rest start invisible and animate in */
.about-slideshow:not(.about-slideshow--1) .about-slide--1 { opacity: 1; }

/* ─── Gigs Block ────────────────────────────────────────────────────────────── */
.block-gigs,
.wp-block-acf-gigs {
  background: var(--black);
}

.gigs-list { display: flex; flex-direction: column; }

.gig-row {
  display: grid;
  grid-template-columns: 88px 150px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(200,134,10,0.12);
  text-decoration: none;
  color: inherit;
}
.gig-row:first-child { border-top: 1px solid rgba(200,134,10,0.12); }
.gig-row--linked {
  cursor: pointer;
  transition: background 0.2s;
  border-radius: var(--radius);
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
}
.gig-row--linked:hover { background: rgba(200,134,10,0.06); }
.gig-row--linked:hover .gig-info h3 { color: var(--gold); }

.gig-thumb {
  width: 88px;
  height: 66px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.gig-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) contrast(1.05);
  transition: filter 0.3s;
}
.gig-row--linked:hover .gig-thumb img { filter: saturate(1) contrast(1); }
.gig-thumb--empty {
  background: rgba(200,134,10,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gig-thumb--empty svg {
  width: 28px;
  height: 28px;
  color: rgba(200,134,10,0.3);
}

.gig-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.gig-date { text-align: center; }
.gig-date .day {
  font-family: 'Kameron', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.gig-date .month-year {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.gig-date .gig-location {
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.3;
}

.gig-info h3 { font-family: 'Kameron', serif; font-size: 1.2rem; color: var(--cream); margin-bottom: 4px; }
.gig-location { font-size: 0.9rem; color: var(--muted); }
.gig-time     { font-size: 0.85rem; color: var(--blue-lt); margin-top: 4px; }
.gig-notes    { font-size: 0.82rem; color: var(--muted); font-style: italic; margin-top: 4px; }

.gig-ticket-btn {
  display: inline-block;
  font-family: 'Kameron', serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border: 1px solid rgba(200,134,10,0.5);
  border-radius: 50px;
  color: var(--gold);
  transition: all 0.25s;
  white-space: nowrap;
}
.gig-ticket-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.free-entry { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.gig-more-link {
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.gig-row--linked:hover .gig-more-link { opacity: 1; }

.no-gigs { text-align: center; padding: 48px 0; }
.no-gigs p { color: var(--muted); }

.gigs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.gigs-header .btn { margin-bottom: 20px; }

/* ─── Band Block ────────────────────────────────────────────────────────────── */
.block-band,
.wp-block-acf-band {
  background: var(--dark);
}

.band-intro {
  color: #c8c0b0;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 12px 0 0;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.member-card {
  display: block;       /* works as <a> tag */
  color: inherit;       /* prevent anchor colour override */
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.member-photo { aspect-ratio: 1; overflow: hidden; }
.member-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.1);
  transition: filter 0.4s;
}
.member-card:hover .member-photo img { filter: saturate(0.9) contrast(1.05); }
.member-photo--placeholder {
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.member-photo--placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(200,134,10,0.3);
}
.member-info { padding: 20px; }
.member-info h3 { font-family: 'Kameron', serif; font-size: 1.15rem; color: var(--cream); margin-bottom: 4px; }
.member-role {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.member-info p { font-size: 0.9rem; color: #a0988a; line-height: 1.6; }

.member-favourites {
  margin-top: 14px;
  border-top: 1px solid rgba(200,134,10,0.15);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.member-fav { display: flex; flex-direction: column; gap: 2px; }
.member-fav dt {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.member-fav dd {
  font-size: 0.88rem;
  color: var(--gold-lt);
}

/* ─── Media Block ───────────────────────────────────────────────────────────── */
.block-media,
.wp-block-acf-media {
  background: var(--black);
}

.media-tabs {
  display: flex;
  border-bottom: 1px solid rgba(200,134,10,0.2);
  margin-bottom: 40px;
  margin-top: 32px;
}

.media-tab-btn {
  font-family: 'Kameron', serif;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 32px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.media-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.media-tab-btn.active          { color: var(--cream); }
.media-tab-btn.active::after   { transform: scaleX(1); }

.media-tab-content          { display: none; }
.media-tab-content.active   { display: block; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.7);
  transition: filter 0.3s, transform 0.3s;
  cursor: pointer;
}
.photo-grid img:hover { filter: saturate(1); transform: scale(1.02); }

.photo-btn {
  display: block;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  line-height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}

/* ── Lightbox ───────────────────────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner {
  position: relative;
  display: inline-flex;
}
#lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.2s, border-color 0.2s;
}
#lightbox-close:hover {
  background: rgba(200, 134, 10, 0.5);
  border-color: rgba(200, 134, 10, 0.8);
}
#lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.7);
  transform: scale(0.88);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.34, 1.3, 0.64, 1), opacity 0.45s;
}
#lightbox.open #lightbox-img {
  transform: scale(1);
  opacity: 1;
}
#lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 10px 16px 12px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--cream);
  font-size: 0.9rem;
  text-align: center;
  border-radius: 0 0 var(--radius) var(--radius);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
#lightbox-caption:empty { display: none; }
#lightbox-prev,
#lightbox-next {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  transition: background 0.2s, border-color 0.2s;
}
#lightbox-prev:hover,
#lightbox-next:hover {
  background: rgba(200, 134, 10, 0.3);
  border-color: rgba(200, 134, 10, 0.6);
}
#lightbox-prev:disabled,
#lightbox-next:disabled { opacity: 0.2; cursor: default; }

.videos-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.video-embed { max-width: 100%; }
.video-embed iframe { width: 100%; aspect-ratio: 16/9; border: none; border-radius: var(--radius); }
.video-caption { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 10px; }

/* ─── Contact Block ─────────────────────────────────────────────────────────── */
.block-contact,
.wp-block-acf-contact {
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(68,96,132,0.12) 0%, transparent 70%),
    var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info p { color: #c8c0b0; margin-bottom: 24px; font-size: 1.05rem; }

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-link:hover {
  border-color: rgba(200,134,10,0.4);
  transform: translateX(4px);
}

.contact-link-icon {
  width: 40px;
  height: 40px;
  background: var(--panel);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-link-icon svg { width: 20px; height: 20px; }

.contact-link-body .label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-link-body .value {
  font-family: 'Kameron', serif;
  color: var(--cream);
  font-size: 0.95rem;
}

.contact-image {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
}
.contact-image img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  filter: saturate(0.8) contrast(1.05);
}

/* ── Gravity Forms overrides ── */
.gform_wrapper .gform_body { margin-bottom: 0; }

.gform_wrapper .gfield { margin-bottom: 16px; }

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper textarea,
.gform_wrapper select {
  width: 100% !important;
  background: var(--mid) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: var(--radius) !important;
  color: var(--cream) !important;
  padding: 12px 16px !important;
  font-family: 'PT Sans', sans-serif !important;
  font-size: 1rem !important;
  transition: border-color 0.2s !important;
}
.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  outline: none !important;
  border-color: var(--gold) !important;
  box-shadow: none !important;
}

.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder {
  color: rgba(240,232,216,0.25) !important;
}

.gform_wrapper select option { background: var(--mid) !important; }

.gform_wrapper textarea { min-height: 120px; resize: vertical; }

.gform_wrapper .gfield_label {
  font-family: 'PT Sans', sans-serif !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  margin-bottom: 6px !important;
  font-weight: 400 !important;
}

/* Two-column row for GF multi-column layouts */
.gform_wrapper .gform_fields { row-gap: 16px !important; }

.gform_wrapper .gform_footer,
.gform_wrapper .gform_page_footer {
  margin-top: 20px;
  padding: 0;
}

.gform_wrapper input[type="submit"],
.gform_wrapper button[type="submit"] {
  background: var(--gold) !important;
  color: var(--black) !important;
  border: none !important;
  font-family: 'Kameron', serif !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 14px 40px !important;
  border-radius: var(--radius) !important;
  cursor: pointer !important;
  transition: all 0.25s !important;
  width: 100% !important;
}
.gform_wrapper input[type="submit"]:hover,
.gform_wrapper button[type="submit"]:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(200,134,10,0.35) !important;
}

.gform_confirmation_message {
  color: var(--gold-lt);
  font-family: 'Kameron', serif;
  font-size: 1.1rem;
  text-align: center;
  padding: 32px;
  border: 1px solid rgba(200,134,10,0.3);
  border-radius: var(--radius);
}

.gfield_validation_message,
.validation_error {
  color: #e85c5c !important;
  font-size: 0.82rem !important;
  border: none !important;
  background: none !important;
  padding: 4px 0 0 !important;
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  background: #040404;
  padding: 60px 24px 32px;
  text-align: center;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-logo img,
.footer-logo .custom-logo-link img {
  height: 64px;
  width: auto;
  margin: 0 auto 24px;
  mix-blend-mode: screen;
}

/* Footer nav — explicit resets (lesson #3) */
.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 32px;
  padding: 0;
}
.footer-nav li  { list-style: none; margin: 0 16px; padding: 0; }
.footer-nav a {
  font-family: 'Kameron', serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200,134,10,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all 0.25s;
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,134,10,0.2), transparent);
  margin: 32px 0;
}

.footer-copy { font-size: 0.8rem; color: #504840; }

/* ─── Single Gig Page ───────────────────────────────────────────────────────── */
.single-gig-page { background: var(--black); }

.gig-single-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  background: var(--dark) var(--gig-hero-bg, '') center / cover no-repeat;
}
.gig-single-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.75) 100%);
}
.gig-single-hero__overlay { display: none; }
.gig-single-hero__content {
  position: relative;
  z-index: 1;
  padding: 48px var(--container-pad, 24px) 56px;
  max-width: var(--container-max, 1180px);
  width: 100%;
  margin: 0 auto;
}

.gig-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.gig-back-link:hover { color: var(--gold); }

.gig-single-date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--gold);
  color: var(--black);
  border-radius: 6px;
  padding: 8px 16px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.gig-single-day {
  font-family: 'Kameron', serif;
  font-size: 2.2rem;
  font-weight: 700;
}
.gig-single-month {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.gig-single-title {
  font-family: 'Kameron', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--cream);
  margin: 0 0 12px;
  line-height: 1.1;
}
.gig-single-location {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.gig-single-body {
  padding: 56px 0 80px;
}

.gig-single-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

/* Sidebar detail card */
.gig-detail-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(200,134,10,0.12);
}
.gig-detail-card__heading {
  font-family: 'Kameron', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(200,134,10,0.15);
}

.gig-detail-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.gig-detail-row:last-of-type { border-bottom: none; }
.gig-detail-row svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.gig-detail-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.gig-detail-value {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.5;
}

.gig-detail-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.gig-detail-card__actions .btn { text-align: center; }

.gig-free-badge {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,134,10,0.35);
  border-radius: 50px;
  padding: 8px 20px;
  text-align: center;
}

/* Main content column */
.gig-single-content { color: var(--muted-lt, #ccc); }
.gig-description { font-size: 1.05rem; line-height: 1.8; }
.gig-description p { margin-bottom: 1.2em; color: var(--cream); }
.gig-description h2,
.gig-description h3 { font-family: 'Kameron', serif; color: var(--gold); margin: 1.5em 0 0.5em; }
.gig-no-description { font-size: 1.05rem; color: var(--muted); line-height: 1.8; }

.gig-single-footer {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(200,134,10,0.12);
}

/* Responsive single gig */
@media (max-width: 900px) {
  .gig-single-grid {
    grid-template-columns: 1fr;
  }
  .gig-single-sidebar { order: 2; }
  .gig-single-content { order: 1; }
}

/* ─── Scroll-triggered fade-in ──────────────────────────────────────────────── */
.fade-in {
  opacity: 0.2;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── Single Band Member Profile Page ───────────────────────────────────────── */
.member-profile-page { background: var(--black); }

.member-profile-hero {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: end;
  padding: 120px 0 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: clamp(24px, 5vw, 80px);
}

.member-profile-photo img {
  width: 100%;
  border-radius: var(--radius);
  filter: saturate(0.7) contrast(1.1);
}

.member-profile-hero__text .gig-back-link { display: block; margin-bottom: 20px; }

.member-profile-name {
  font-family: 'Kameron', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 12px;
}

.member-profile-role {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.member-profile-body {
  background: var(--dark);
  padding: 64px 0 80px;
}

.member-profile-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

.member-profile-content p {
  font-size: 1.05rem;
  color: #c8c0b0;
  line-height: 1.8;
  margin-bottom: 20px;
}

.member-profile-longbio { margin-top: 24px; }
.member-profile-longbio p { color: #c8c0b0; line-height: 1.8; margin-bottom: 16px; }

.member-detail-card {
  background: var(--mid);
  border: 1px solid rgba(200,134,10,0.15);
  border-radius: var(--radius);
  padding: 28px;
}

.member-detail-card__heading {
  font-family: 'Kameron', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(200,134,10,0.15);
}

.member-detail-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.member-detail-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.member-detail-value {
  font-size: 0.95rem;
  color: var(--cream);
}

.member-detail-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.member-detail-card__actions .btn { text-align: center; }

@media (max-width: 900px) {
  .member-profile-hero { grid-template-columns: 1fr; gap: 32px; padding-top: 80px; }
  .member-profile-photo { max-width: 300px; }
  .member-profile-grid  { grid-template-columns: 1fr; }
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual { order: -1; }
  .gig-row { grid-template-columns: 72px 100px 1fr; }
  .gig-actions { grid-column: 3; }
  .gig-thumb { width: 72px; height: 54px; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }

  /* Full-screen mobile menu overlay */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 99;
  }
  .nav-links.open { display: flex; }

  .nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    display: block;
    padding: 20px 0;
    font-size: 1.2rem;
    color: var(--cream);
    text-decoration: none;
  }
  .nav-links .nav-cta {
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }
  .nav-links .nav-cta > a {
    color: var(--gold);
    padding: 20px 0;
  }
  .nav-links .nav-cta:hover { transform: none; }

  .nav-toggle { display: flex; }

  /* Hero negative margin at mobile nav height (lesson #4) */
  .block-hero,
  .wp-block-acf-hero { margin-top: calc(-1 * var(--nav-h-sm)); }

  .site-main { padding-top: var(--nav-h-sm); }

  .gig-row { grid-template-columns: 64px 1fr; gap: 14px; }
  .gig-date { grid-column: 2; grid-row: 1; }
  .gig-thumb { grid-column: 1; grid-row: 1 / 3; width: 64px; height: 80px; align-self: start; }
  .gig-info { grid-column: 2; grid-row: 2; }
  .gig-actions { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: flex-start; gap: 12px; padding-bottom: 4px; }

  .band-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .photo-grid  { grid-template-columns: repeat(2, 1fr); }
  .videos-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .band-grid { grid-template-columns: 1fr; }
  .hero-cta  { flex-direction: column; align-items: center; }
  .media-tab-btn { padding: 10px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   INNER PAGES
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── Page Banner ─────────────────────────────────────────────────────────────── */

/* Pull banner up behind the transparent nav, same as the hero block */
.inner-page .page-banner {
  margin-top: calc( -1 * var(--nav-h) );
}

.page-banner {
  position: relative;
  height: 360px;
  background: var(--bg, var(--dark)) center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}
.page-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-banner-logo img {
  max-width: 340px;
  max-height: 200px;
  width: auto;
  height: auto;
  mix-blend-mode: screen;
  filter: drop-shadow( 0 4px 24px rgba(0, 0, 0, 0.6) );
}

/* ── Inner page content wrapper ──────────────────────────────────────────────── */
.inner-page-content > .block-gigs,
.inner-page-content > .block-band,
.inner-page-content > .block-media,
.inner-page-content > .block-contact {
  /* blocks already have their own padding; no extra needed */
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════════════════════════ */

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding-top: 56px;
  padding-bottom: 80px;
  align-items: start;
}

.blog-archive-title {
  margin-bottom: 40px;
}

/* ── Blog post cards ─────────────────────────────────────────────────────────── */
.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.blog-card {
  background: var(--mid);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s;
}
.blog-card:hover { border-color: rgba(200, 134, 10, 0.3); }

.blog-card-thumb {
  display: block;
  overflow: hidden;
}
.blog-card-thumb img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
  filter: saturate(0.8);
  transition: filter 0.3s, transform 0.4s;
}
.blog-card:hover .blog-card-thumb img {
  filter: saturate(1);
  transform: scale(1.02);
}

.blog-card-body {
  padding: 28px 32px 32px;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.blog-card-cat { color: var(--gold); }
.blog-card-title {
  font-family: 'Kameron', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin: 0 0 12px;
  line-height: 1.3;
}
.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.blog-read-more {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.blog-read-more:hover { color: var(--gold-lt); }

/* ── Pagination ──────────────────────────────────────────────────────────────── */
.blog-pagination { margin-top: 48px; }
.blog-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  background: var(--mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.blog-no-posts { color: var(--muted); padding: 40px 0; }

/* ── Sidebar ─────────────────────────────────────────────────────────────────── */
.site-sidebar {
  position: sticky;
  top: calc( var(--nav-h) + 24px );
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sidebar-widget {
  background: var(--mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 24px;
}
.sidebar-widget-title {
  font-family: 'Kameron', serif;
  font-size: 1rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200, 134, 10, 0.3);
}
.sidebar-recent-posts,
.sidebar-categories {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-recent-posts li,
.sidebar-categories li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-recent-posts a,
.sidebar-categories a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color 0.2s;
}
.sidebar-recent-posts a:hover,
.sidebar-categories a:hover { color: var(--gold); }
.sidebar-post-date { font-size: 0.75rem; color: var(--muted); }
.sidebar-categories .count { color: var(--muted); font-size: 0.8rem; }

/* ── Single post ─────────────────────────────────────────────────────────────── */
.single-post-header { margin-bottom: 36px; }
.single-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.single-post-back {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.single-post-back:hover { color: var(--gold-lt); }
.single-post-title {
  font-family: 'Kameron', serif;
  font-size: clamp( 1.8rem, 4vw, 2.8rem );
  color: var(--cream);
  line-height: 1.2;
  margin: 0;
}
.single-post-content {
  color: #c0b8a8;
  line-height: 1.8;
  font-size: 1.05rem;
}
.single-post-content h2,
.single-post-content h3 { font-family: 'Kameron', serif; color: var(--cream); margin-top: 2em; }
.single-post-content a { color: var(--gold); }
.single-post-content a:hover { color: var(--gold-lt); }
.single-post-content img { max-width: 100%; border-radius: var(--radius); }
.single-post-content blockquote {
  border-left: 3px solid var(--gold);
  margin: 2em 0;
  padding: 0.5em 1.5em;
  color: var(--cream);
  font-style: italic;
}

.single-post-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.single-post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.post-tag {
  padding: 4px 12px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.post-tag:hover { border-color: var(--gold); color: var(--gold); }

.single-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.post-nav-prev a,
.post-nav-next a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}
.post-nav-prev a:hover,
.post-nav-next a:hover { color: var(--gold-lt); }
.post-nav-next { text-align: right; }

/* ── Blog responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .site-sidebar { position: static; }
  .page-banner { height: 260px; }
  .page-banner-logo img { max-width: 240px; }
  .inner-page .page-banner { margin-top: calc( -1 * var(--nav-h-sm) ); }
}

@media (max-width: 600px) {
  .blog-card-body { padding: 20px; }
  .page-banner { height: 200px; }
  .page-banner-logo img { max-width: 180px; }
}
