/* ========== Reset ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ========== Variables ========== */
:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --accent-color: #ff0000;
  --background-color: #ffffff;
  --text-color: #333;
  --border-color: #ddd;

  --max-width: 1200px;
  --header-height: 70px;
  --page-width: min(80vw, var(--max-width));
  --nav-height: 56px;

  font-size: 16px;
}

/* ========== Webfont ========== */
@font-face {
  font-family: 'Myopia';
  src: url('../fonts/504d9ae28247ff1a8415639c7e741060.woff2') format('woff2'),
       url('../fonts/504d9ae28247ff1a8415639c7e741060.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ========== Base ========== */
html { font-size: 14px; scroll-behavior: smooth; background-color: #0a0a0a;}

body {
  font-family: 'Myopia', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);

  /* Global background image */
  background-image: url('../media/image/background.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Mobile: show full background image (no cropping) */
@media (max-width: 1023px) {
  body {
	background-size: 100% auto;        /* full width, height scales naturally */
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}

/* Utilities */
small, .text-buff { color: #dfc2a0; }
.text-green { color: #124022 !important; }

/* Screen-reader only */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Honeypot helper */
.hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ========== Header (hero) ========== */
header {
  height: 200px;
  /*background-image: url('../media/image/header-background.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;*/
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
header::before {
  content: '';
  position: absolute;
  inset: 0;
  /*background-color: rgba(0, 0, 0, 0.4);*/
  z-index: 0;
  pointer-events: none;
}
header .logo { position: relative; z-index: 1; }
header .logo h1 { font-size: 3rem; }

/* ========== Navigation ========== */
.site-nav {
  background-color: #000;
  color: #dfc2a0;
  position: relative;
  z-index: 10;
}

/* Center the nav inner content to page width */
.site-nav > .nav-wrapper {
  width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-height: var(--nav-height);
  position: relative; /* anchor mobile dropdown */
}

/* Nav brand (hidden on desktop; shown on mobile below) */
.nav-brand {
  display: none;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.1rem;
  line-height: 1;
  padding-left: 20px;
  color: #dfc2a0;
}

/* Links row */
.nav-links {
  --nav-gap: clamp(0.75rem, 2vw, 2rem);
  display: flex;
  align-items: center;
  gap: var(--nav-gap);
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-links a {
  display: block;
  padding: 0.75rem 0;
  color: #dfc2a0;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
  outline: none;
}
.nav-links a.text-green { color: #124022; }

/* Hamburger toggle: hidden by default; mobile shows it below */
.nav-toggle {
  display: none !important;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  place-items: center;
  color: #dfc2a0;
}
.nav-toggle .icon { width: 26px; height: 26px; display: block; }
.nav-toggle .icon-close { display: none; }
.site-nav.open .nav-toggle .icon-hamburger { display: none; }
.site-nav.open .nav-toggle .icon-close { display: block; }
.nav-toggle:focus-visible {
  outline: 2px solid #dfc2a0;
  outline-offset: 2px;
}

/* Filler HR + logo at end of nav links (desktop/tablet) */
.nav-logo {
  display: block;
  height: 32px;
  width: auto;
  margin-left: 12px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.nav-logo:hover { opacity: 1; }

.nav-fill {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: calc(-1 * var(--nav-gap));
  gap: 0;
}
.nav-hr {
  display: block;
  width: 100%;
  height: 2px;
  border: 0;
  background: #dfc2a0;
  opacity: 1;
  margin: 0;
  margin-left: 20px;
  box-sizing: border-box;
}

/* Desktop sticky state (JS toggles) */
.site-nav.is-stuck {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Spacer (injected by JS) */
.nav-spacer { display: none; height: var(--nav-height); }
.site-nav.is-stuck + .nav-spacer { display: block; }

/* ========== Main and Footer (centered) ========== */
main, footer {
  width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
}

/* ========== Sections and containers ========== */
section { padding: clamp(2rem, 4vw, 4rem) 0; }
section.page-heading {
  width: 100%;
  text-align: center;
  padding: 40px 20px;
}
.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Two-column grid (desktop default) */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}
.two-col .col img { display: block; width: 100%; height: auto; }


section p {padding-top:20px}
section.review h2 {font-style:italic}
/* Themed sections */
section.buff { margin: 40px; background-color: #dfc2a0; padding: 40px 0; }
section.darkgrey { margin: 40px; background-color: #1E1D1D; padding: 40px 0;}
section.darkgrey p {line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;}
section.black { margin: 40px 0; background-color: #000; padding: 40px 0; color: #dfc2a0; }
section.mind-party { margin: 40px 0; background-color: #000; padding: 40px 0; color: #dfc2a0; }
section.los { margin: 40px 0; background-color: #033e12; padding: 40px 0; color: #dfc2a0; }

/* ========== Footer & Newsletter ========== */
footer {
  text-align: center;
  color: #dfc2a0;
  font-size: 10px;
  text-transform: uppercase;
  padding: 20px 0;
  margin-bottom: 20px;
}
footer .newsletter {
  text-align: left;
  border-top: 1px solid rgba(223,194,160,0.2);
  padding-top: 20px;
  margin-bottom: 16px;
}
.newsletter-title {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto; /* name | email | button */
  gap: 12px;
  align-items: center;
}
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(223,194,160,0.6);
  background: transparent;
  color: #dfc2a0;
  border-radius: 4px;
  outline: none;
  font-size: 14px;
  line-height: 1;
  box-sizing: border-box;
}
.newsletter-form input::placeholder { color: rgba(223,194,160,0.7); }
.newsletter-form #nl-name { flex: 1 1 160px; }
.newsletter-form #nl-email { flex: 1.3 1 240px; }
.btn-newsletter {
  height: 44px;
  padding: 0 18px;
  background: var(--accent-color, #ff0000);
  color: #fff;
  border: 0;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.btn-newsletter:hover,
.btn-newsletter:focus-visible {
  background: #cc0000;
  outline: 2px solid #cc0000;
  outline-offset: 2px;
}
.btn-newsletter.is-busy { opacity: 0.7; cursor: progress; }
.newsletter-result { margin-top: 10px; margin-bottom: 20px; font-size: 0.95rem; text-transform: none; }
.newsletter-result.success { color: #6fe3a6; }
.newsletter-result.error   { color: #ff9b9b; }
.newsletter-result.info    { color: #dfc2a0; }

/* Country select (optional field) */
.newsletter-form select#nl-country {
  width: 100%;
  min-width: 200px;
  height: 44px;
  padding: 0 40px 0 14px; /* extra right padding to clear arrow */
  border: 1px solid rgba(223,194,160,0.6);
  background: transparent;
  color: #dfc2a0; /* selected value buff */
  border-radius: 4px;
  outline: none;
  font-size: 14px;
  line-height: 1;
  box-sizing: border-box;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #dfc2a0 50%),
    linear-gradient(135deg, #dfc2a0 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.newsletter-form select#nl-country option {
  color: #333; /* dark options for readability */
  background: #fff;
}
.newsletter-form select#nl-country:focus {
  border-color: rgba(223,194,160,0.9);
}

/* Newsletter consent checkbox */
.newsletter-consent {
  grid-column: 1 / -1; /* span full width */
  margin-top: 0.5rem;
}
.newsletter-consent label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(223,194,160,0.9);
  line-height: 1.4;
  cursor: pointer;
}
.newsletter-consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.newsletter-consent a { color: #dfc2a0; text-decoration: underline; }
.newsletter-consent a:hover { color: #fff; }

/* ========== General content ========== */
.web-intro{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
}

/* ========== Album sections (full-bleed) ========== */
.album-section {
  width: 100%;
  position: relative;
  padding: clamp(2rem, 4vw, 4rem) 0;
  font-family: Arial, Helvetica, sans-serif;
}
.album--black { background: #000; color: #dfc2a0; }
.album--green { background: #033e12; color: #dfc2a0; }

.album-content {
  width: 100%;
  padding: 20px;
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: 1fr; /* mobile default */
  align-items: start;
  box-sizing: border-box;
}
.album-cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
.album-title {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 0.75rem;
  font-family: 'Myopia', Arial, sans-serif;
}
.album-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0.5rem 0 0.75rem 0;
  font-family: 'Myopia', Arial, sans-serif;
}
.album-info p + p { margin-top: 0.75rem; }
.tracklist {
  padding-left: 1.25rem;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
}
.tracklist li + li { margin-top: 0.25rem; }

/* Safety if a container is nested here by accident */
.album-section .container {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
}

/* Album gallery strip */
.album-gallery {
  display: grid;
  gap: 14px;
  margin-top: clamp(1rem, 2.5vw, 2rem);
  grid-template-columns: 1fr;
}
.album-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: #111;
  cursor: pointer;
  padding: 0;
}
.album-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease, filter 220ms ease;
}
.album-thumb:focus-visible {
  outline: 2px solid #dfc2a0;
  outline-offset: 2px;
}
.album-thumb:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

/* ========== Simple Image Modal ========== */
.img-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  z-index: 9999;
}
.img-modal.is-open {
  display: grid;
  place-items: center;
}
.img-modal__inner {
  position: relative;
  max-width: min(96vw, 1400px);
  max-height: min(92vh, 92dvh);
  width: 96vw;
  height: auto;
  display: grid;
  place-items: center;
  padding: 8px;
  box-sizing: border-box;
}
.img-modal__img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0,0,0,.55);
}
@media (min-height: 760px) { .img-modal__img { max-height: 88vh; } }
.img-modal__close,
.img-modal__prev,
.img-modal__next {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(223,194,160,0.5);
  background: rgba(0,0,0,0.5);
  color: #dfc2a0;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.img-modal__close { top: 12px; right: 12px; }
.img-modal__prev  { left: 12px; top: 50%; transform: translateY(-50%); }
.img-modal__next  { right: 12px; top: 50%; transform: translateY(-50%); }
.img-modal__close:hover,
.img-modal__prev:hover,
.img-modal__next:hover {
  background: rgba(0,0,0,0.7);
  border-color: rgba(223,194,160,0.85);
}
body.img-modal-open { overflow: hidden; }

/* ========== Gigs / Tour Page ========== */
.tour-announcement {
  width: 100%;
  background: linear-gradient(135deg, #000 0%, #1a0a0f 100%);
  padding: clamp(2rem, 5vw, 3.5rem) 20px;
  text-align: center;
  border-top: 2px solid rgba(223,194,160,0.2);
  border-bottom: 2px solid rgba(223,194,160,0.2);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.tour-announcement__inner { max-width: 700px; margin: 0 auto; }
.tour-tag {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.75rem, 1.8vw, 0.9rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(223,194,160,0.7);
  margin-bottom: 0.5rem;
}
.tour-season {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #dfc2a0;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.tour-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(223,194,160,0.8);
  font-style: italic;
}

/* Gigs grid */
.gigs-section { padding: 0 0 clamp(2rem, 4vw, 3rem) 0; }
.gigs-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  grid-template-columns: 1fr; /* mobile default */
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gigs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .gigs-grid { grid-template-columns: repeat(3, 1fr); }
}

.gig-card {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  border: 1px solid rgba(223,194,160,0.18);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.gig-card:hover {
  transform: translateY(-3px);
  border-color: rgba(223,194,160,0.4);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.gig-card--special { border-color: rgba(255,0,0,0.3); }
.gig-card--special:hover { border-color: rgba(255,0,0,0.6); }

/* Date box (fixed size) */
.gig-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 96px;
  min-width: 96px;
  height: 96px;
  background: rgba(223,194,160,0.08);
  border: 1px solid rgba(223,194,160,0.2);
  border-radius: 6px;
  text-align: center;
  flex-shrink: 0;
  box-sizing: border-box;
  padding:5px
}
.gig-day   { font-size: 1.9rem; font-weight: 700; color: #dfc2a0; line-height: 1; display: block;}
.gig-month {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(223,194,160,0.8);
  margin-top: 0.25rem;
}


/* Right column content */
.gig-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.gig-venue {
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-weight: 700;
  color: #dfc2a0;
  line-height: 1.2;
  margin: 0;
}
.gig-location {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: rgba(223,194,160,0.7);
  margin: 0;
}

/* Gig badge */
.gig-badge {
  display: inline-block;
  background: var(--accent-color, #ff0000);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
  line-height: 1;
  vertical-align: middle;
}

/* Meta row (doors + tickets) — own line under venue/location */
.gig-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.gig-doors {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: rgba(223,194,160,0.9);
}
.gig-tickets {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid rgba(223,194,160,0.35);
  color: #dfc2a0;
  background: rgba(0,0,0,0.35);
  border-radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.gig-tickets:hover,
.gig-tickets:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(223,194,160,0.85);
  background: rgba(0,0,0,0.55);
  color: #fff;
  outline: none;
}
.gig-tickets.--disabled,
.gig-tickets.--disabled:hover,
.gig-tickets.--disabled:focus-visible,
.gig-meta .--disabled {
  border: 1px dashed rgba(223,194,160,0.3);
  background: transparent;
  color: rgba(223,194,160,0.6);
  cursor: default;
  pointer-events: none;
}

/* ========== Bio page ========== */
.bio-hero {
  width: 100%;
  background: linear-gradient(135deg, #000 0%, #1a0a0f 100%);
  border-top: 2px solid rgba(223,194,160,0.2);
  border-bottom: 2px solid rgba(223,194,160,0.2);
  padding: clamp(2rem, 6vw, 4rem) 20px;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.bio-hero__inner { width: var(--page-width); margin: 0 auto; }
.bio-quote {
  margin: 0;
  color: #dfc2a0;
  font-weight: 800;
  line-height: 1.2;
  font-size: clamp(1.4rem, 4.5vw, 2.4rem);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.bio-section { padding: 0 20px clamp(2rem, 4vw, 3rem); }

/* Default: mobile 1 column */
.bio-wrap {
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  grid-template-columns: 1fr;
}
/* Desktop: 2 columns */
@media (min-width: 1024px) {
  .bio-wrap { grid-template-columns: 1fr 1fr; }
}

/* Bio cards + media visuals */
.bio-card,
.video-card,
.press-item a {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%) !important;
  border: 1px solid rgba(223,194,160,0.18) !important;
  border-radius: 8px !important;
  color: rgba(223,194,160,0.9) !important;font-family: Arial, Helvetica, sans-serif !important;
}
.bio-card { padding: 20px; }
.bio-card p { padding-top: 10px; }

/* Bio videos grid */
.bio-media { padding: 0 20px clamp(2rem, 4vw, 3rem); }
.bio-media__wrap { width: var(--page-width); margin: 0 auto; }
.bio-videos {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  grid-template-columns: 1fr;
  margin-top: 0.75rem;
}
@media (min-width: 1024px) { .bio-videos { grid-template-columns: 1fr 1fr; } }

.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-caption {
  padding: 10px 12px;
  color: rgba(223,194,160,0.9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  border-top: 1px solid rgba(223,194,160,0.18);
}

/* Press list */
.press-list {
  list-style: none;
  margin: 0.75rem 0 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.press-item a {
  display: block;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  padding:10px
}
.press-item a:hover,
.press-item a:focus-visible {
  border-color: rgba(223,194,160,0.45);
  background: linear-gradient(135deg, #0f0f0f 0%, #1d1d1d 100%);
  outline: none;
  
}

/* Bio card links: buff for all states; white on hover/focus */
.bio-card a,
.bio-card a:link,
.bio-card a:visited,
.video-card a,
.video-card a:link,
.video-card a:visited,
.press-item a,
.press-item a:link,
.press-item a:visited {
  color: #dfc2a0 !important;
  text-decoration: underline;
}
.bio-card a:hover,
.bio-card a:focus,
.video-card a:hover,
.video-card a:focus,
.press-item a:hover,
.press-item a:focus {
  color: #fff !important;
}

/* Privacy policy: smaller font size in bio-cards (requires body.privacy-policy or wrap) */
body.privacy-policy .bio-card,
body.privacy-policy .bio-card p,
body.privacy-policy .bio-card ul,
body.privacy-policy .bio-card li {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-top: 8px;
}
body.privacy-policy .bio-card h2.bio-heading {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

/* ========== Contact Page ========== */
.contact-hero {
  width: 100%;
  background: linear-gradient(135deg, #000 0%, #1a0a0f 100%);
  border-top: 2px solid rgba(223,194,160,0.2);
  border-bottom: 2px solid rgba(223,194,160,0.2);
  padding: clamp(2rem, 6vw, 4rem) 20px;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.contact-hero__inner { max-width: 700px; margin: 0 auto; }
.contact-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #dfc2a0;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.contact-subtitle {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(223,194,160,0.8);
}
.contact-section { padding: 0 20px clamp(2rem, 4vw, 3rem); }
.contact-wrap { max-width: 640px; margin: 0 auto; }

.contact-form {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  border: 1px solid rgba(223,194,160,0.18);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  font-family: Arial, Helvetica, sans-serif;
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.95rem;
  color: rgba(223,194,160,0.9);
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.required { color: var(--accent-color, #ff0000); font-weight: 700; }
.required-or { font-size: 0.85rem; color: rgba(223,194,160,0.6); font-weight: 400; font-style: italic; }

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(223,194,160,0.25);
  border-radius: 6px;
  color: #dfc2a0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(223,194,160,0.5); }
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(223,194,160,0.6);
  background: rgba(0,0,0,0.5);
}
.form-input.error,
.form-textarea.error { border-color: #ff6b6b; }
.form-textarea { resize: vertical; min-height: 120px; }

.form-error {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #ff9b9b;
  min-height: 1.2em;
}

.btn-submit {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--accent-color, #ff0000);
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.btn-submit:hover,
.btn-submit:focus-visible {
  background: #cc0000;
  transform: translateY(-2px);
  outline: 2px solid #cc0000;
  outline-offset: 2px;
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-result {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  text-align: center;
  display: none;
}
.form-result.show { display: block; }
.form-result.success {
  background: rgba(111, 227, 166, 0.15);
  border: 1px solid rgba(111, 227, 166, 0.4);
  color: #6fe3a6;
}
.form-result.error {
  background: rgba(255, 107, 107, 0.15);
  border: 1px solid rgba(255, 107, 107, 0.4);
  color: #ff9b9b;
}

/* Contact/Privacy notice link color */
.form-notice {
  font-size: 0.85rem;
  color: rgba(223,194,160,0.75);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.form-notice a {
  color: #dfc2a0 !important;
  text-decoration: underline;
}
.form-notice a:hover { color: #fff !important; }

/* ========== Responsive ========== */
/* Mobile: fix nav + dropdown */
@media (max-width: 768px) {
  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  }
  header { padding-top: var(--nav-height); }

  .site-nav > .nav-wrapper {
    width: 100%;
    justify-content: space-between;
  }

  .nav-brand { display: inline-block !important; order: 1; }
  .nav-toggle { display: inline-grid !important; order: 2; }

  .nav-links {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #000;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.25rem;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: max-height 0.25s ease;
  }
  .site-nav.open .nav-links { max-height: 60vh; }

  /* Hide duplicate first item on mobile if brand is shown */
  #primary-menu > li:first-child { display: none; }

  .nav-links li { width: 100%; }
  .nav-links a { padding: 0.85rem 0; width: 100%; }

  .nav-fill { display: none; } /* hide filler hr on mobile */
}

/* Album section responsive */
@media (min-width: 768px) {
  .album-content { grid-template-columns: 1fr 1fr; }
  .album-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  main, footer { width: var(--page-width); }
  .album-content { grid-template-columns: 1.1fr 1fr 0.9fr; }
  .album-gallery { grid-template-columns: repeat(3, 1fr); }
  .album-info {
    font-size: 1.35rem;   /* adjust to taste: 1.05–1.15rem works nicely */
    line-height: 1.7;     /* a bit more comfortable line spacing */
  }
  .tracklist {
  padding-left: 1.25rem;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2rem;   /* adjust to taste: 1.05–1.15rem works nicely */
}
  
}

/* General content single-column below desktop */
@media (max-width: 1024px) {
  :root { --page-width: 100%; }
  main, footer { width: 100%; }

  .two-col {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 2rem);
  }
  .two-col .col { width: 100%; }
  .two-col .col img { width: 100%; height: auto; }
}

.mobile-only {
  display: none;
}

/* Very small screens */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .newsletter-form { grid-template-columns: 1fr; }
  .btn-newsletter { width: 100%; }
  footer {padding:0 10px 0px 10px}
  .newsletter-consent label {
	  font-size: 0.7rem
  }
  .mobile-only {
    display: inline;
  }
}

//* Auto-looping slideshow above mosaic */
.gallery-slideshow {
  width: var(--page-width);
  margin: 0 auto;
  padding: 0 20px 20px 20px;
  box-sizing: border-box;
   margin-top: 0 !important;
  padding-top: 0 !important;
  
}

.slideshow-frame {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  /* Remove fixed aspect-ratio; let content size naturally */
  min-height: 400px;           /* prevent collapse */
  max-height: 80vh;            /* cap vertical space */

 
  overflow: hidden;
  display: flex;               /* switch to flex for better img behavior */
  align-items: center;
  justify-content: center;
}

.slideshow-img {
  max-width: 100%;
  max-height: 80vh;            /* match frame max-height */
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 500ms ease;
  opacity: 1;
}

/* Optional: subtle inner shadow */
.slideshow-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(223,194,160,0.08);
  border-radius: 8px;
}

/* Mobile diagnostic — remove after finding the culprit */
@media (max-width: 1023px) {
  .primary-menu,
  .nav-links,
  nav,
  .site-header nav {
    border: none;
    border-top: none;
    border-bottom: none;
    box-shadow: none;
  }
}

/* Base: stack body then button in normal flow */
.review {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* The clipping happens on the body wrapper only */
.review .review-body {
  /* expanded by default */
  max-height: none;
  overflow: visible;

}

/* Collapsed: clip just the body content */
.review.is-collapsed .review-body {
  --collapsed-height: 450px; /* adjust as needed */
  max-height: var(--collapsed-height);
  overflow: hidden;          /* hard clip, no scrollbars */
  transition: max-height 300ms ease;
}

/* Expanded: remove the cap on body */
.review.is-expanded .review-body {
  max-height: none;
  overflow: visible;
}

/* Avoid margin-collapse artifacts */
.review .review-body > *:first-child { margin-top: 0; }
.review .review-body > *:last-child  { margin-bottom: 0; }

/* Keep inner container simple; no scroll inside */
.review .review-body > .container {
  overflow: visible !important;
  padding-bottom: 0;
  min-height: 0;
  height: auto;
}

/* Button row always in normal flow, below the body */
.review-toggle {
  position: static; /* no sticky/absolute */
  display: flex;
  justify-content: center;
  padding: 12px 0 16px;
  background: transparent;
  margin-top:10px;
  margin-bottom:0;
  padding-bottom:0
}

/* Button styling (optional) */
.review-toggle .js-toggle-btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.28);
  background: transparent;
  color: #dfc2a0;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: .2px;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, transform 100ms ease;
}
.review-toggle .js-toggle-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.45);
}
.review-toggle .js-toggle-btn:active {
  transform: translateY(1px);
}

/* Review two-column layout */
.review-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;  /* left images | right text */
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
  padding: 0 20px;  /* match .container side padding used elsewhere */
  box-sizing: border-box;
}

/* Left image stack */
.review-media {
  display: grid;
  gap: 12px;
}

.review-photo {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(223,194,160,0.18);
  background: #0f0f0f;
}

.review-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3; /* consistent tiles; remove if you want natural heights */
}

/* Tighten spacing on the text column within the grid */
.review-grid > .container.text-buff {
  padding: 0; /* grid provides the horizontal padding */
}

/* Phones: stack vertically, images below text */
@media (max-width: 768px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
  .review-grid > .container.text-buff {
    order: 1;
  }
  .review-media {
    order: 2;      /* images after content on mobile */
    margin-top: 16px;
  }
}

