/* ========================================
   Paul D'Angelo — Unified Styles
   ======================================== */

/* ---------- RESET & VARIABLES ---------- */

:root {
  --bg: #faf8f5;
  --surface: #f4f1ec;
  --text-primary: #1a1a1a;
  --text-secondary: #6b6560;
  --text-muted: #6f6965;
  --border: #e5dfd8;
  --accent: #b03a2e;
  --accent-dark: #8a2e24;

  --font-display: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --radius: 16px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- BASE ---------- */

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 5rem;
  padding-right: 5rem;
}

/* ---------- SKIP LINK ---------- */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 10000;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ---------- NAV ---------- */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.logo, a.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-contact {
  background: var(--text-primary);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--transition);
}
.nav-links .nav-contact { color: #fff; }
.nav-links .nav-contact.active { color: #fff; background: var(--accent-dark); }
.nav-links .nav-contact:hover { background: var(--accent); color: #fff; }

.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-primary); background: none; border: none; padding: 0.25rem 0.5rem; }
.menu-toggle-input { display: none; }

.nav-wrap {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end;
}

/* ---------- HERO (index) ---------- */

.hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-content h1 span { color: var(--accent); }

.hero-sub {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}
.hero-cta:hover { background: var(--accent-dark); transform: translateY(-2px); }
.hero-cta-arrow { font-size: 1.2rem; }

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  background: var(--surface);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(176, 58, 46, 0.3);
  text-align: center;
}
.hero-badge h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}

/* ---------- MEDIA STRIP (index) ---------- */

.media-strip {
  padding: 2.5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.media-strip h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.media-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem 0.75rem;
  width: 100%;
}
.media-logos img {
  height: 38px;
  width: auto;
  flex-shrink: 0;
} 

/* ---------- CONTENT GRID (index) ---------- */

.content-section { padding-top: 4rem; padding-bottom: 4rem; border-bottom: 1px solid var(--border); }

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-title-img {
  width: 3.2rem;
  height: 3.2rem;
  vertical-align: middle;
  margin-right: 0.75rem;
  position: relative;
  top: -3px;
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.index-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
}
.index-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.index-card-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.index-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.index-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  flex-grow: 1;
}
.index-card .card-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-primary {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: #fff;
}
.card-primary p { color: rgba(255, 255, 255, 0.75); }
.card-primary:hover { background: var(--accent); border-color: var(--accent); }
.card-primary .index-card-num,
.card-primary:hover .index-card-num { color: #fff; }
.card-primary .card-cta { color: #fff; }
.card-primary:hover .card-cta { color: #fff; }

.card-icon-img {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  border-radius: 8px;
}
.index-card:not(.card-primary) .card-icon-img {
  filter: brightness(1.25) saturate(1.4);
}

/* ---------- VIDEO PLACEHOLDER ---------- */

.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
}
.placeholder-vid {
  font-size: 2.5rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ---------- SUBSECTION (Kevin Gillespie) ---------- */

.section-subsection {
  margin: 2.5rem 0 1.5rem;
  text-align: center;
}
.subsection-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.subsection-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- MEMES (comedy) ---------- */

.meme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.meme-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.meme-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.meme-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* ---------- MEME LIGHTBOX (comedy) ---------- */

.meme-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.meme-modal.open { display: flex; }
.meme-modal img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.meme-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.meme-modal-close:hover { opacity: 1; }
.meme-modal-share {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.meme-modal-share:hover { background: var(--accent-dark); }

/* ---------- EVENTS (index) ---------- */

.event-card { border-bottom: 1px solid var(--border); }
.event-card:last-child { border-bottom: none; }
.event-more { display: none; }
.event-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: baseline;
  padding: 0.9rem 0;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
}
.event-row::-webkit-details-marker { display: none; }
.event-date-block { display: flex; align-items: baseline; gap: 0.5rem; white-space: nowrap; }
.event-date {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
}
.event-time { font-size: 0.9rem; color: var(--text-secondary); }
.event-info { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; min-width: 0; }
.event-venue { font-weight: 600; font-size: 1.05rem; transition: var(--transition); }
.event-venue:hover { color: var(--accent); }
.event-loc { font-size: 0.85rem; font-weight: 300; color: var(--text-secondary); text-align: right; white-space: nowrap; }
.event-chevron { display: none; }
.event-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-left: calc(170px + 1.5rem);
}
.event-card[open] .event-detail { max-height: 1000px; }
.event-detail-inner { padding: 0.25rem 0 1.5rem; }
.event-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin: 0 0 1.25rem; }
.event-detail-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.25rem; }
.event-map iframe { width: 100%; height: 260px; border: 0; border-radius: 12px; background: var(--surface); }
.event-btn {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--accent);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  transition: var(--transition);
  white-space: nowrap;
}
.event-btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.event-btn--secondary {
  background: transparent;
  color: var(--accent);
}
.event-btn--secondary:hover { background: var(--accent); color: #fff; }
.events-more { margin-top: 1.25rem; display: flex; justify-content: center; }
.btn-outline {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--accent);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
  background: transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ---------- ABOUT (index) ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.about-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-badges h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.about-badges h4:first-child { margin-top: 0; }

.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.badge-sq {
  width: 80px; height: 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 6px;
  transition: var(--transition);
}
.badge-sq img { width: 100%; height: 100%; object-fit: contain; }
.badge-sq:hover { border-color: var(--accent); }
.badge-placeholder {
  border: 2px dashed var(--text-muted);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 300;
}
.badge-label {
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 0.25rem;
  line-height: 1.2;
}

.about-attribution {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ---------- CONTACT (index) ---------- */

.contact-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.contact-section h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-section p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.contact-email {
  display: inline-block;
  background: var(--text-primary);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}
.contact-email:hover { background: var(--accent); }

/* ---------- SHARED HEADSHOTS (index) ---------- */

.shared-section { margin-top: 2.5rem; }

.shared-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.shared-headshots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.shared-item { display: flex; flex-direction: column; align-items: center; }
.shared-headshot {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.shared-headshot:hover { border-color: var(--accent); transform: scale(1.05); }
.shared-headshot img { width: 100%; height: 100%; object-fit: cover; }
.shared-headshot-placeholder {
  border: 2px dashed var(--text-muted);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  width: 64px; height: 64px;
  border-radius: 50%;
}
.shared-name { font-size: 0.7rem; color: var(--text-secondary); text-align: center; margin-top: 0.3rem; }

/* ---------- PAGE HEADER (sub-pages) ---------- */

.page-header {
  padding-top: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.page-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

.page-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  transition: var(--transition);
}
.page-header-cta:hover { background: var(--accent-dark); }

/* ---------- PAGE SECTION (sub-pages) ---------- */

.page-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.page-section:last-of-type { border-bottom: none; }

.page-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.page-section-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 560px;
  line-height: 1.6;
}

/* ---------- VIDEO GRID (comedy) ---------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 0.75rem 0.25rem;
  margin: 0;
}
.video-card p {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-secondary);
  padding: 0 0.75rem 0.6rem;
  margin: 0;
}

.video-channel-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  transition: var(--transition);
}
.video-channel-btn:hover { background: var(--accent-dark); }

/* ---------- PRODUCT GRID (comedy, store) ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  transition: var(--transition);
}
.product-card:hover { box-shadow: var(--shadow); }

.product-cover {
  flex-shrink: 0;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-section--books .product-cover,
.product-card .product-cover {
  width: 120px;
  aspect-ratio: 3 / 4;
}

.product-section--cds .product-cover {
  width: 120px;
  aspect-ratio: 1 / 1;
}

.product-section--dvds .product-cover {
  width: 130px;
  aspect-ratio: 4 / 3;
}

.product-info {
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}
.product-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  flex-grow: 1;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.product-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: var(--transition);
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  white-space: nowrap;
}
.product-btn:hover {
  background: var(--accent);
  color: #fff;
}
.out-of-print {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  opacity: 0.5;
}

/* ---------- ART GRID (art) ---------- */

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.art-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.art-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.art-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.art-caption {
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  border-top: 1px solid var(--border);
}
.art-caption small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ---------- ART LIGHTBOX (art) ---------- */

.art-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.art-modal.open { display: flex; }
.art-modal img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}
.art-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.art-modal-close:hover { opacity: 1; }
.art-modal-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
  max-width: 600px;
  padding: 0.5rem 1.5rem;
  background: rgba(0,0,0,0.5);
  border-radius: 8px;
}

/* ---------- PHOTO GRID (music) ---------- */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.photo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ---------- PHOTO LIGHTBOX (music) ---------- */

.photo-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.photo-modal.open { display: flex; }
.photo-modal img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}
.photo-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.photo-modal-close:hover { opacity: 1; }

/* ---------- SECTION OUTRO (shared pattern) ---------- */

.section-outro {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.section-outro p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.section-cta-wrap {
  text-align: center;
  margin-top: 2rem;
}

/* ---------- FOOTER ---------- */

footer {
  padding: 3rem 0 2rem;
  overflow-x: hidden;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover { color: var(--accent); }

.footer-social svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.footer-social-label {
  margin-left: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  white-space: nowrap;
}

.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.75rem; }

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- TEXT CONTENT ---------- */

.text-content {
  max-width: 720px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}
.text-content p { margin-bottom: 1.25rem; }
.text-content p:last-child { margin-bottom: 0; }

/* ---------- FEATURED QUOTE ---------- */

.featured-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-primary);
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.featured-quote strong { font-weight: 700; }
.featured-quote-attribution {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-style: normal;
}

/* ---------- BIO SECTION ---------- */

.bio-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.bio-section:last-child { margin-bottom: 0; }
.bio-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.bio-section-header:hover .bio-section-toggle { opacity: 1; }
.bio-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.bio-section-toggle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 600;
  opacity: 0.7;
  transition: var(--transition);
}
.bio-section-body {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  display: none;
}
.bio-section.open .bio-section-body { display: block; }

.copy-btn {
  margin-top: 1rem;
  padding: 0.45rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.copy-btn:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(176, 58, 46, 0.25);
}
.copy-btn.copied {
  background: #2a9d2a;
  border-color: #2a9d2a;
  color: #fff;
  box-shadow: 0 4px 12px rgba(42, 157, 42, 0.25);
}

/* ---------- DOWNLOAD GRID ---------- */

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.download-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.download-card:hover { box-shadow: var(--shadow); }
.download-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--border);
}
.download-card-body {
  padding: 0.85rem 1rem;
  text-align: center;
}
.download-card-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.download-card .product-btn { font-size: 0.75rem; }

/* ---------- QUICK FACTS ---------- */

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0;
  background: var(--text-primary);
  border-radius: var(--radius);
  overflow: hidden;
}
.quick-fact {
  padding: 1.5rem 1rem;
  text-align: center;
}
.quick-fact + .quick-fact {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.quick-fact-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}
.quick-fact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ---------- TESTIMONIAL GRID (booking) ---------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1rem;
  quotes: "\201c" "\201d";
}
.testimonial-card blockquote::before {
  content: open-quote;
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 0.15em;
}
.testimonial-card blockquote::after {
  content: close-quote;
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 0;
  vertical-align: -0.1em;
  margin-left: 0.15em;
}
.testimonial-attribution {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 767px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ---------- EMPTY STATE ---------- */

.empty-state {
  padding: 3rem 1.5rem;
  text-align: center;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}
.empty-state-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.4;
}
.empty-state-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.empty-state-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* >= 768px: tablet and up */
@media (min-width: 768px) {
  .container { padding-left: 3rem; padding-right: 3rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
  }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-brand p { max-width: 360px; }
  .footer-social { justify-content: flex-start; }
  .footer-bottom { text-align: left; }
}

/* >= 1025px: desktop */
@media (min-width: 1025px) {
  .container { padding-left: 5rem; padding-right: 5rem; }

  .hero { grid-template-columns: 1fr 1.5fr; }
  .index-grid { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .art-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
  .footer-grid > :first-child { grid-column: auto; }
}

/* <= 1024px: tablet and below (hamburger nav + grid tweaks) */
@media (max-width: 1024px) {
  nav { flex-wrap: wrap; }
  .nav-links { display: none; }
  #menuToggle:checked ~ .nav-wrap { width: 100%; }
  #menuToggle:checked ~ .nav-wrap .nav-links { display: flex; flex-direction: column; gap: 0; padding: 1.5rem 0 0.5rem 0; border-top: 2px solid var(--border); margin-top: 0.75rem; width: 100%; }
  #menuToggle:checked ~ .nav-wrap .nav-links a { display: block; padding: 0.9rem 1rem; font-size: 1rem; text-transform: none; letter-spacing: 0; border-radius: 8px; transition: var(--transition); width: 100%; }
  #menuToggle:checked ~ .nav-wrap .nav-links a:hover { background: var(--surface); color: var(--accent); }
  #menuToggle:checked ~ .nav-wrap .nav-links .nav-contact { display: block; margin-top: 0.75rem; padding: 0.9rem 1rem; background: var(--accent); color: #fff; border-radius: 8px; text-align: center; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; font-weight: 600; }
  #menuToggle:checked ~ .nav-wrap .nav-links .nav-contact:hover { background: var(--accent-dark); }
  .mobile-toggle { display: block; }

  .hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { aspect-ratio: 3 / 2; max-height: 400px; }
  .hero-badge { right: 1rem; bottom: 1rem; }
  .index-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }

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

  .video-grid { grid-template-columns: 1fr; }
  .meme-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* <= 767px: mobile */
@media (max-width: 767px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }

  /* Nav tighter padding on phone */
  nav { padding: 1rem 0; }

  /* Hero */
  .hero { padding-top: 2.5rem; padding-bottom: 3rem; gap: 1.5rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { max-width: 100%; }
  .hero-visual { aspect-ratio: 3 / 2; max-height: 300px; }

  .index-grid { grid-template-columns: 1fr; }

  .event-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .event-date { font-size: 1.1rem; }
  .event-date-block { flex-wrap: wrap; }
  .event-detail { margin-left: 0; }
  /* On phones the venue loc moves below the title, left-aligned, so nothing overflows. */
  .event-info { flex-direction: column; align-items: flex-start; gap: 0.15rem; }
  .event-loc { text-align: left; white-space: normal; }

  .about-text h2 { font-size: 1.6rem; }

  .contact-section h2 { font-size: 1.8rem; }
  .shared-headshots { gap: 0.75rem; }

  /* Sub-pages */
  .page-header { padding-top: 2.5rem; padding-bottom: 2rem; }
  .art-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
}

/* <= 700px: mid-mobile (product card collapse) */
@media (max-width: 700px) {
  .product-card { flex-direction: column; }
  .product-section--books .product-cover,
  .product-card .product-cover {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 360px;
  }
  .product-section--cds .product-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 320px;
  }
  .product-section--dvds .product-cover {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 260px;
  }
}

/* <= 480px: small mobile */
@media (max-width: 480px) {
  .hero-visual { aspect-ratio: 3 / 2; max-height: 280px; }
  .media-logos img { height: 30px; }
  .badge-sq { width: 64px; height: 64px; }

  .art-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .meme-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .product-grid { grid-template-columns: 1fr; }
  .page-header { padding-top: 2.5rem; padding-bottom: 2rem; }
}
