/* ============================================================
   CSS VARIABLES — Christopher Queen Galleries
   Matches dark gallery theme from existing site
============================================================ */
:root {
  --black:         #000000;
  --dark:          #1b1b1b;
  --dark-mid:      #272727;
  --dark-brown:    #281d17;
  --white:         #ffffff;
  --gold:          #ffd35b;
  --gold-dark:     #e2a95a;
  --tan:           #d2c5a6;
  --font-display:  'Ballet', cursive;
  --font-head:     'Oswald', sans-serif;
  --font-serif:    'Old Standard TT', serif;
  --font-body:     'Roboto', sans-serif;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --dur:           0.36s;
  --nav-h:         160px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gold);
  background-color: var(--black);
  overflow-x: hidden;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

p, .wh-page p, .article-body li {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 30px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--white);
}
h1 { font-size: 30px; line-height: 32px; }
h2 { font-size: 24px; line-height: 26px; }

/* ============================================================
   LAYOUT
============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ============================================================
   GALLERY — lightgallery thumbnail grid
============================================================ */
#lightgallery a {
  display: inline-block; margin: 4px;
  transition: opacity 0.3s ease;
}
#lightgallery a:hover { opacity: 0.8; }
#lightgallery img {
  width: 120px; height: 120px;
  object-fit: cover;
  border: 1px solid rgba(255,211,91,0.18);
  border-radius: 2px;
}
.smc { display: none; }
.st-gallery { padding: 10px 0 0; }

/* Page loader + click loader styles are inline in child-public-header.php
   so they render before external CSS loads */

/* ============================================================
   NAVIGATION — solid black, full-width
============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background-color: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent) 1;
}
#navbar.scrolled {
  background-color: var(--black);
  height: 90px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
#navbar.scrolled .nav-logo img { max-width: 160px; }
#navbar.scrolled .nav-link { height: 90px; }
#navbar.scrolled .nav-dropdown { margin-top: -10px; }

.nav-inner {
  max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center;
}

/* Logo */
.nav-logo {
  flex-shrink: 0; z-index: 1;
  display: flex; align-items: center;
}
.nav-logo img {
  max-width: 246px; width: auto; display: block;
  transition: all 0.3s;
}

/* Nav links — pushed right, gold colored */
.nav-links {
  display: flex; align-items: center; gap: 0; z-index: 1;
  margin-left: auto;
}
.nav-item { position: relative; display: flex; align-items: center; }

.nav-link {
  position: relative; z-index: 1;
  font-family: var(--font-serif); font-size: 18px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); padding: 0 15px;
  display: flex; align-items: center; gap: 6px;
  height: var(--nav-h);
  white-space: nowrap;
  transition: color var(--dur) ease;
}
.nav-item:hover .nav-link { color: #ffe48a; }
.nav-item:last-child .nav-link { padding-right: 0; }

.nav-arrow { font-size: 8.5px; opacity: 0.50; transition: transform 0.22s var(--ease), opacity 0.22s ease; margin-left: 2px; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); opacity: 0.80; }

/* Dropdown — dark bg with gold bottom border */
.nav-dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 220px; background: var(--dark-mid);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 14px 40px rgba(0,0,0,0.30);
  margin-top: -40px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.22s var(--ease), visibility 0.22s, transform 0.22s var(--ease);
  z-index: 600; padding: 0;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop-link {
  display: block;
  font-family: var(--font-serif); font-size: 14px; font-weight: 400;
  line-height: 14px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 22px 20px 21px 20px;
  color: var(--gold); border-top: 1px solid transparent;
  text-decoration: none;
  transition: color 0.18s ease;
}
.nav-drop-link + .nav-drop-link { border-top-color: #363636; }
.nav-drop-link:hover, .nav-drop-link:focus { color: #ffe48a; text-decoration: none; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 1100; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--gold); transition: all 0.32s var(--ease); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   MOBILE NAV — dark slide-in drawer
============================================================ */
#mobile-nav {
  position: fixed; top: 0; left: 0; width: 300px; max-width: 84vw; height: 100vh;
  background: var(--black); z-index: 1050; transform: translateX(-100%);
  transition: transform 0.4s var(--ease); display: flex; flex-direction: column;
}
#mobile-nav.open { transform: translateX(0); }

.mob-nav-header {
  flex-shrink: 0; padding: 5px 28px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.mob-nav-header img { height: 60px !important; }
.mob-nav-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}
.mob-nav-close {
  background: none; border: none; cursor: pointer; padding: 6px;
  color: var(--gold); font-size: 16px; line-height: 1;
  transition: color var(--dur) ease; border-radius: 50%;
}
.mob-nav-close:hover { color: var(--gold); }

.mob-nav-links { flex: 1; overflow-y: auto; padding: 8px 0; }
.mob-item { border-bottom: 1px solid rgba(255,255,255,0.12); }
.mob-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 28px;
  font-family: var(--font-serif); font-size: 14.5px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); cursor: pointer; user-select: none;
  transition: color var(--dur) ease, background var(--dur) ease;
}
.mob-link:hover { color: #ffe48a; background: rgba(255,255,255,0.03); }
.mob-link a { flex: 1; color: inherit; text-decoration: none; }
.mob-link a:hover { text-decoration: none; }
.mob-chevron-icon {
  color: var(--gold); font-size: 12px;
  transition: transform 0.25s var(--ease), color 0.2s ease;
}
.mob-item.open .mob-chevron-icon { transform: rotate(180deg); color: var(--white); }

.mob-submenu { max-height: 0; overflow: hidden; transition: max-height 0.32s var(--ease); background: rgba(0,0,0,0.20); }
.mob-item.open .mob-submenu { max-height: 320px; }
.mob-sub-link {
  display: block; padding: 10px 28px 10px 46px;
  font-family: var(--font-serif); font-size: 13px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--dur) ease;
}
.mob-sub-link:last-child { border-bottom: none; }
.mob-sub-link:hover { color: #ffe48a; text-decoration: none; }

.mob-nav-footer { flex-shrink: 0; border-top: 1px solid rgba(255,255,255,0.08); padding: 40px 0 90px; }
.mob-foot-link {
  display: flex; align-items: center; gap: 10px; padding: 11px 28px;
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  color: var(--gold);
}
.mob-foot-link i { font-size: 11.5px; opacity: 0.7; }

.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1040;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ============================================================
   HERO — clean full-screen image, no overlays, no text
============================================================ */
#hero {
  position: relative; width: 100%;
  height: 100vh; min-height: 600px;
  margin-top: var(--nav-h);
  overflow: hidden;
}

.hero-slide {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0; transition: opacity 1.1s ease;
  background-size: cover; background-position: center top; background-repeat: no-repeat;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

/* Gold bottom border on hero */
.hero-border { display: block; height: 1px; background: #ffdb6e; }

/* ============================================================
   PAGE CONTENT — dark bg, gold-bordered container with corners
============================================================ */
.wh-page {
  padding: 50px 0 50px;
  font-family: var(--font-serif);
  font-size: 18px; line-height: 28px;
}
/* When no hero/banner precedes .wh-page, push below fixed nav */
.wh-page.no-hero {
  margin-top: var(--nav-h);
}

.wh-page-container {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--gold);
  padding: 45px 30px 30px;
}

/* Decorative corner images */
.wh-corner { position: absolute; width: 41px; height: 42px; background-position: center; background-repeat: no-repeat; }
.wh-corner-tl { left: -5px; top: -5px; background-image: url('../img/wh-corner-top-left.jpg'); }
.wh-corner-tr { right: -5px; top: -5px; background-image: url('../img/wh-corner-top-right.jpg'); }
.wh-corner-br { right: -5px; bottom: -5px; background-image: url('../img/wh-corner-bottom-right.jpg'); }
.wh-corner-bl { left: -5px; bottom: -5px; background-image: url('../img/wh-corner-bottom-left.jpg'); }

/* Welcome h1 — Ballet cursive in gold */
.wh-post-content h1 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 50px; font-weight: 400;
  line-height: 60px;
  font-style: normal; color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 3px;
  word-spacing: 6px;
}

.wh-post-content p {
  margin-bottom: 12px;
}

/* Show date subtitle — below the h1 on show pages */
.show-date-subtitle {
  font-family: var(--font-serif);
  font-size: 16px; line-height: 22px;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: 0;
}

/* ============================================================
   ARTIST BIO — photo right-aligned with text
============================================================ */
.artist-bio {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.artist-bio-text {
  flex: 1;
}
.wh-post-content h1.artist-name {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 400;
  line-height: 36px;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0;
}
.artist-bio-photo {
  flex: 0 0 auto;
  max-width: 180px;
}
.artist-bio-photo img {
  width: 100%; height: auto;
  display: block;
  border-radius: 2px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

@media (max-width: 768px) {
  .artist-bio { flex-direction: column-reverse; align-items: center; }
  .artist-bio-photo { max-width: 140px; }
}

/* ============================================================
   BREADCRUMB — full-width bar below slider or nav
============================================================ */
.cq-breadcrumbs {
  background: var(--black);
  padding: 14px 0;
}
.cq-breadcrumbs.no-hero {
  margin-top: var(--nav-h);
}
.cq-breadcrumbs .breadcrumb,
.breadcrumb {
  font-family: var(--font-serif);
  font-size: 14px; line-height: 20px;
  letter-spacing: 1px;
  margin: 0 0 20px; padding: 0;
  background: none;
  border-radius: 0;
  list-style: none;
}
.breadcrumb a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}
.breadcrumb a:hover { color: var(--white); }
.bc-sep {
  display: inline-block;
  margin: 0 8px;
  color: var(--gold-dark);
  opacity: 0.5;
}
.bc-current {
  color: var(--gold);
}

/* ============================================================
   COLLATERAL — printed invite front/back, side by side
============================================================ */
.collateral {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.collateral-item {
  width: 100%;
  max-width: 70%;
}
.collateral-item img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
  transition: transform 0.4s ease;
}
.collateral-zoom {
  display: block;
  cursor: zoom-in;
}
.collateral-zoom:hover img {
  transform: scale(1.03);
}

/* ============================================================
   PAINTING CARD — artist name + sold dot
============================================================ */
.show-card-artist {
  display: block;
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-top: 2px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.show-card-artist:hover {
  color: var(--white);
}

.sold-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c0392b;
}
.sold-dot i {
  font-size: 8px;
  color: #e74c3c;
  position: relative;
  top: -2px;
}

/* ============================================================
   ART DETAIL — two-column painting + info layout
============================================================ */
.art-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left column: painting with zoom trigger */
.art-detail-image {
  position: relative;
}
.art-zoom-trigger {
  display: block;
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
  background: rgba(255,211,91,0.03);
  padding: 20px;
  border: 1px solid rgba(255,211,91,0.18);
  border-radius: 2px;
  border-radius: 2px;
}
.art-zoom-trigger img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  transition: transform 0.5s ease;
}
.art-zoom-trigger:hover img {
  transform: scale(1.02);
}
.art-zoom-icon {
  position: absolute; bottom: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,211,91,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px;
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none;
}
.art-zoom-trigger:hover .art-zoom-icon { opacity: 1; }

/* Right column: details */
.art-detail-info {
  padding-top: 10px;
}
.art-detail-title {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 400;
  line-height: 36px;
  color: var(--gold);
  margin-bottom: 28px;
}

/* Meta rows — label + value pairs */
.art-detail-meta {
  margin-bottom: 30px;
}
.art-meta-row {
  display: flex;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.art-meta-row:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.art-meta-label {
  flex: 0 0 110px;
  font-family: var(--font-serif);
  font-size: 13px; line-height: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.art-meta-value {
  font-family: var(--font-serif);
  font-size: 17px; line-height: 24px;
  color: var(--gold);
}
.art-meta-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,211,91,0.3);
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}
.art-meta-link:hover {
  color: #ffe48a;
  text-decoration-color: #ffe48a;
}

/* Sold dot inside meta — override flex centering to baseline */
.art-meta-value .sold-dot {
  display: inline-flex;
  margin-top: 0;
}
.sold-dot.for-sale {
  color: var(--gold);
}
.sold-dot.for-sale i {
  color: var(--gold);
}

/* Art description (wysiwyg below status) */
.art-description {
  margin-bottom: 28px;
}
.art-description p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 26px;
  color: var(--gold);
  margin: 0 0 12px;
}

/* Contact callout box */
.art-contact-box {
  border: 1px solid rgba(255,211,91,0.18);
  border-radius: 2px;
  padding: 24px;
  background: rgba(255,211,91,0.03);
  margin-bottom: 20px;
}
.art-contact-box p {
  font-family: var(--font-serif);
  font-size: 16px; line-height: 26px;
  color: var(--gold);
  margin-bottom: 18px;
}
.art-contact-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: var(--black);
  background: var(--gold);
  padding: 6px 18px 4px;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.art-contact-btn:hover {
  background: #ffe48a;
  color: var(--black);
  text-decoration: none;
}

/* ============================================================
   LIGHTBOX — full-screen painting zoom
============================================================ */
.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; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  cursor: zoom-out;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-close {
  position: absolute; top: 16px; right: 20px;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,211,91,0.4);
  color: var(--gold); font-size: 32px; line-height: 1;
  cursor: pointer; z-index: 9001;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.25s ease, background 0.25s ease;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-inner {
  max-width: 90vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-inner img {
  max-width: 100%; max-height: 88vh;
  width: auto; height: auto;
  display: block;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.6));
}

/* Divider image */
.wh-divider {
  background-image: url('../img/wh-divider.png');
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%; height: 27px;
  margin: 30px 0 5px 0;
}

/* ============================================================
   INFO BLOCKS (WHZ) — top cards with image + caption
============================================================ */
.whz-listwrapper { display: block; text-align: center; margin: 0 auto; }
.whz-listwrapper ul { margin: 0; padding: 0; }

li.whz-category {
  display: inline-block; float: none;
  text-align: center; vertical-align: top;
  margin: 20px 20px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 500ms;
}
li.whz-category:hover { border-color: rgba(255, 211, 91, 1); }
li.whz-category a { text-decoration: none; color: inherit; }

.whz-border {
  display: block; width: 340px; min-height: 480px;
  position: relative; padding: 20px;
}
.whz-img {
  display: block; position: absolute;
  bottom: 20px; width: 300px; height: 300px;
}
.whz-img img { width: 100%; height: 100%; object-fit: cover; }

.whz-capname, .whz-captext, .whz-caplink { display: block; text-align: left; }
.whz-capname { font-size: 24px; line-height: 28px; color: var(--white); }
.whz-captext, .whz-captext p { font-size: 16px; line-height: 20px; color: var(--white); }
.whz-caplink {
  font-size: 14px; font-weight: normal;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold);
}
.whz-long-dash {
  display: inline-block; width: 20px; height: 2px;
  background-color: var(--gold);
  vertical-align: middle; margin: 0 5px;
}

/* ============================================================
   FOOTER — .wh-page-base with gallery background image
============================================================ */
.wh-page-base {
  display: block; position: relative;
  min-height: 650px; clear: both; width: 100%;
  font-size: 13px; line-height: 16px;
  padding: 5px 5px 0 5px;
  background-color: var(--dark);
  background-image: url('../img/gallery-footer2.jpg');
  background-position: center top;
  background-repeat: no-repeat; background-size: cover;
  border-bottom: none;
  font-family: var(--font-serif);
}

.copyright { color: var(--gold); text-align: center; letter-spacing: 1px; }
.copyright a, .copyright a:link, .copyright a:active, .copyright a:visited { color: var(--gold); text-decoration: underline; }
.copyright a:hover { color: var(--white); text-decoration-color: var(--white); }

.footer-gallery-name {
  font-size: 24px; line-height: 24px;
  color: inherit;
}

/* Footer bottom bar — black background, links left, credit right */
.wh-footer-bar {
  background-color: var(--black);
  padding: 24px 0;
  font-family: var(--font-serif);
  font-size: 12px;
  color: var(--gold);
}
.footer-bar-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bar-left a, .footer-bar-right a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.footer-bar-left a:hover, .footer-bar-right a:hover { color: var(--white); }
.footer-bar-left { letter-spacing: 1px; }
.footer-bar-right { letter-spacing: 1px; }

/* GO TOP — removed, not needed with sticky header */

/* ============================================================
   PAGE BANNER — shorter hero for interior pages
============================================================ */
.page-banner {
  position: relative; width: 100%;
  height: 420px;
  margin-top: var(--nav-h);
  background-size: cover; background-position: center center; background-repeat: no-repeat;
}

/* ============================================================
   SHOW CARDS — gallery mat style
============================================================ */
.shows-section {
  padding: 20px 0 30px;
}
/* When shows-section is first content (no slider before it), clear fixed nav */
.wh-page-content-wrapper > .shows-section:first-child {
  margin-top: var(--nav-h);
  padding-top: 30px;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  gap: 36px;
  justify-content: center;
}

.show-card {
  display: flex; flex-direction: column;
  background: var(--dark);
  border: 1px solid rgba(255, 211, 91, 0.18);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.show-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 211, 91, 0.08);
  text-decoration: none;
  color: inherit;
}

/* The "mat" — a fixed-ratio dark area that centers any painting */
.show-card-mat {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0d0d0d;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  overflow: hidden;
}
.show-card-mat img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
  transition: transform 0.5s ease;
}
.show-card:hover .show-card-mat img {
  transform: scale(1.03);
}

/* Small decorative divider between image and text — echoes home divider */
.show-card-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  margin: 0;
}

/* Show info below the mat */
.show-card-info {
  padding: 18px 20px 22px;
  text-align: center;
}
.show-card-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
  transition: color 0.3s ease;
  text-decoration: none;
}
.show-card-title:hover,
.show-card:hover .show-card-title {
  color: var(--gold);
  text-decoration: none;
}
.show-card:hover .show-card-description {
  color: var(--gold);
  text-decoration: none;
}
.show-card-description,
.show-card-description p {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  color: var(--gold);
  margin: 0;
}

/* ============================================================
   PAGINATION — gold theme, centered
============================================================ */
.shows-pagination {
  padding: 16px 0;
}
.pag-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
}
.pag-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 10px;
  font-family: var(--font-serif); font-size: 15px;
  color: var(--gold);
  border: 1px solid rgba(255, 211, 91, 0.25);
  border-radius: 4px;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.28s ease;
}
.pag-btn:hover {
  border-color: var(--gold);
  background: rgba(255, 211, 91, 0.08);
  color: var(--white);
}
.pag-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 700;
  cursor: default;
}
.pag-btn.disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.pag-arrow {
  font-size: 13px;
}
.pag-ellipsis {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 30px; height: 40px;
  font-family: var(--font-serif); font-size: 16px;
  color: var(--gold-dark);
  cursor: default;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.wh-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.72s ease, transform 0.72s ease; }
.wh-reveal.vis { opacity: 1; transform: none; }
.d1 { transition-delay: 0.07s; } .d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.21s; } .d4 { transition-delay: 0.28s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1400px) {
  :root { --nav-h: 120px; }
  .nav-logo img { max-width: 180px; }
  .nav-link { font-size: 17px; padding: 0 12px; }
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  :root { --nav-h: 90px; }
  .nav-logo img { max-width: 150px; }
  .nav-logo { padding-top: 0; }
  .nav-inner { padding: 15px; }
  #hero { height: 400px; min-height: 300px; }
  .page-banner { height: 300px; }
  .wh-page { padding: 30px 0 10px; }
  .container { padding: 0 20px; }
  .shows-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .shows-section { padding: 20px 0 50px; }
  .art-detail { grid-template-columns: 1fr; gap: 30px; }
  .art-detail-image { max-width: 500px; }
  .art-detail-title { font-size: 24px; line-height: 32px; }
}

@media (max-width: 768px) {
  #hero { height: 300px; min-height: 240px; }
  .page-banner { height: 240px; }
  .whz-border { width: 280px; min-height: 420px; }
  .whz-img { width: 240px; height: 240px; }
  li.whz-category { margin-left: 5px; margin-right: 5px; }
  p, .wh-page p { font-size: 20px; }
  .cq-breadcrumbs .breadcrumb { font-size: 12px; }
  .shows-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .show-card-mat { aspect-ratio: 3 / 2; }
  .collateral { gap: 16px; }
  .collateral-item { max-width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .pag-btn { min-width: 36px; height: 36px; font-size: 14px; }
  .pag-inner { gap: 4px; }
}

/* ============================================================
   WORDPRESS-SPECIFIC — skip link, editor bar, login, slider
============================================================ */

/* Skip to main content link */
.skip-main {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
  z-index: 99999; padding: 8px 16px;
  background: var(--gold); color: var(--black);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
}
.skip-main:focus {
  position: fixed; left: 10px; top: 10px;
  width: auto; height: auto; overflow: visible;
}

/* Page content wrapper (opened in header, closed in footer) */
.wh-page-content-wrapper { display: block; }

/* Footer social links */
.footer-social { text-align: center; margin-bottom: 20px; }
.footer-social ul { display: flex; justify-content: center; gap: 16px; list-style: none; margin: 0; padding: 0; }
.footer-social li a {
  color: var(--gold); font-size: 20px;
  transition: color 0.3s ease;
}
.footer-social li a:hover { color: var(--white); }

/* Mobile footer links */
.mob-foot-link a {
  color: var(--gold); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.mob-foot-link a:hover { color: var(--white); }

/* Editor bar (admin access) */
.wh-editor-bar {
  font-size: 12px; color: var(--gold);
  font-family: var(--font-body);
}
.wh-editor-bar a {
  color: var(--gold); text-decoration: underline;
  text-underline-offset: 2px;
}
.wh-editor-bar a:hover { color: var(--white); }

/* Login popup (Magnific Popup override) */
.white-popup {
  position: relative;
  background: var(--dark);
  padding: 30px;
  width: auto;
  max-width: 420px;
  margin: 20px auto;
  border: 1px solid rgba(255,211,91,0.18);
  border-radius: 4px;
  color: var(--gold);
}
.wh-login-register-wrapper .nav-tabs {
  border-bottom: 1px solid rgba(255,211,91,0.18);
  margin-bottom: 20px;
}
.wh-login-register-wrapper .nav-link {
  color: var(--gold); border: none;
  font-family: var(--font-serif);
  font-size: 14px; letter-spacing: 2px;
  text-transform: uppercase;
  height: auto; padding: 10px 16px;
}
.wh-login-register-wrapper .nav-link.active {
  color: var(--white);
  border-bottom: 2px solid var(--gold);
  background: transparent;
}
.wh-login-register-wrapper input[type="text"],
.wh-login-register-wrapper input[type="password"],
.wh-login-register-wrapper input[type="email"] {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,211,91,0.18);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 2px;
  width: 100%;
}
.wh-login-register-wrapper label {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 14px;
}
.wh-login-register-wrapper a {
  color: var(--gold);
}
.wh-login-register-wrapper a:hover {
  color: var(--white);
}

/* ============================================================
   SLIDER — Slick integration for hero (ACF wh_slides)
============================================================ */
.slider { position: relative; overflow: hidden; margin-top: var(--nav-h); }
.slider-home { width: 100%; }
ul.home-slider { margin: 0; padding: 0; list-style: none; }

/* Interior pages — shorter banner */
.slider-interior .slider-background { height: 400px; min-height: 300px; }
.slider-home .slick-list { padding: 0; margin: 0; }
.slider-home .slick-list,
.slider-home .slick-track { height: 100%; }
.slider-home li { list-style: none; margin: 0; padding: 0; }

.slider-background {
  width: 100%; height: 100vh; min-height: 600px;
  background-size: cover; background-position: center top; background-repeat: no-repeat;
  position: relative;
}

/* Overlay — centered dark vignette, only when hero text present */
.slider-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 55%, transparent 80%);
}

/* Hero text on slides — vertically centered */
.hero-text {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 60px;
}
.wh-slider-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 42px; line-height: 50px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  letter-spacing: 1px;
}
.wh-slider-description {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px; line-height: 28px;
  color: var(--gold);
  margin-bottom: 24px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.wh-slider-button {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 12px 32px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}
.wh-slider-button:hover {
  background: var(--white);
  color: var(--black);
}

/* Slider caption — bottom-right with local dark overlay */
.slider-caption-wrapper {
  position: absolute; bottom: 0; right: 0; z-index: 3;
  padding: 8px 14px;
  background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.5) 100%);
  border-radius: 8px 0 0 0;
}
.slider-caption {
  font-family: var(--font-body);
  font-size: 11px; color: var(--gold);
  letter-spacing: 0.5px;
}

/* Slick arrows — custom gold chevrons */
.slider-home .slick-prev,
.slider-home .slick-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 46px; height: 46px;
  background: rgba(0,0,0,0.3); border: none; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease;
  padding: 0; margin: 0; line-height: 0; font-size: 0;
  color: transparent; outline: none;
}
.slider-home .slick-prev:hover,
.slider-home .slick-next:hover { background: rgba(0,0,0,0.6); }
.slider-home .slick-prev { left: 20px; }
.slider-home .slick-next { right: 20px; }
.slider-home .slick-prev:before,
.slider-home .slick-next:before { content: none; }

/* Single slide — no arrows, no animation */
.slider-home.cq-single-slide .slick-prev,
.slider-home.cq-single-slide .slick-next { display: none; }

@media (max-width: 992px) {
  .slider-background { height: 400px; min-height: 300px; }
  .wh-slider-title { font-size: 34px; line-height: 42px; }
  .wh-slider-description { font-size: 17px; }
  .hero-text { padding: 0 30px; }
}

@media (max-width: 768px) {
  .slider-background { height: 300px; min-height: 240px; }
  .wh-slider-title { font-size: 28px; line-height: 34px; }
  .wh-slider-description { font-size: 16px; }
  .hero-text { padding: 0 20px; }
}
