/* plexus.css — shared styles for plexusgallery.com archive */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16.5px;
  line-height: 1.8;
  color: #000;
  background: #fff;
}

a { color: #1e73be; text-decoration: none; }
a:hover { color: #410644; }

/* ── Header ── */
#site-header { border-bottom: 1px solid #eee; background: #fff; position: relative; }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 81px;
}
.logo-link img { display: block; height: 75px; width: auto; }

/* ── Navigation ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  padding: 4px 8px;
  line-height: 1;
}
.site-nav {
  list-style: none;
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex: 1;
  margin-left: 30px;
}
.site-nav > li { position: relative; }
.site-nav a {
  font-size: 13px;
  font-family: 'Arial', sans-serif;
  color: #333;
  padding: 6px 11px;
  display: flex;
  align-items: center;
  gap: 3px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav li.current-page > a { color: #410644; }
.nav-arrow { font-size: 9px; }

/* Dropdown submenus */
.site-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 210px;
  z-index: 500;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.site-nav .sub-menu li { display: block; position: relative; }
.site-nav .sub-menu a {
  padding: 9px 16px;
  font-size: 13px;
  color: #333;
  white-space: nowrap;
  display: block;
}
.site-nav .sub-menu a:hover { color: #410644; background: #fafafa; }

/* Sub-submenus open to the right */
.site-nav .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}

/* Show on desktop hover */
.site-nav li:hover > .sub-menu { display: block; }

/* ── Breadcrumb ── */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #888;
}
.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: #410644; }
.breadcrumb span { margin: 0 6px; }

/* ── Page wrap ── */
.page-wrap { max-width: 1166px; margin: 0 auto; padding: 0 20px; }

/* ── Artist bio section ── */
.bio-section { padding: 40px 0 30px; }
.bio-inner {
  display: grid;
  grid-template-columns: 264px 1fr;
  gap: 40px;
  align-items: start;
  padding: 20px;
}
.bio-photo img { width: 100%; height: auto; display: block; border-radius: 2px; }
.bio-text h1 { font-size: 31px; line-height: 1.3; font-weight: 600; margin-bottom: 12px; }
.bio-text p { margin-bottom: 10px; }
.photo-credit { font-size: 12px; color: #666; }

/* ── Artwork grid (artist page) ── */
.artworks-section { padding: 10px 0 60px; }
.artworks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 114px;
}
.artwork-card { position: relative; }
.artwork-card a.card-link { display: block; color: inherit; text-decoration: none; }
.artwork-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}
.artwork-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.artwork-card:hover .artwork-thumb img { opacity: 0.85; }
.sold-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(65,6,68,0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 4px 0;
  letter-spacing: 0.05em;
}
.artwork-info { padding: 10px 12px 14px; }
.artwork-category { font-size: 13px; color: #888; margin-bottom: 2px; font-style: italic; }
.artwork-title { font-size: 15px; line-height: 1.5; font-weight: 600; color: #000; font-family: Arial, sans-serif; }
.artwork-card:hover .artwork-title { color: #410644; }
.artwork-price { font-size: 20px; color: #2ba9b5; margin-top: 2px; }
.artwork-price.is-sold { font-size: 15px; color: #999; }

/* ── Product page ── */
.product-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 30px 20px 60px;
  display: grid;
  grid-template-columns: 1fr 418px;
  gap: 50px;
  align-items: start;
}

/* Images column */
.product-images { position: relative; }
.product-main-img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}
.product-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.product-thumbs img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s;
}
.product-thumbs img:hover,
.product-thumbs img.active { border-color: #410644; }

/* Details column */
.product-details { padding-top: 10px; }
.product-title { font-size: 26px; font-weight: 600; line-height: 1.3; margin-bottom: 14px; }
.product-price { font-size: 40px; color: #2ba9b5; margin-bottom: 16px; }
.product-price.is-sold { font-size: 24px; color: #999; }
.product-meta { font-size: 14px; color: #555; line-height: 1.9; margin-bottom: 20px; font-style: italic; }
.product-meta a { color: #555; }
.product-meta a:hover { color: #410644; }
.product-divider { border: none; border-top: 1px solid #eee; margin: 20px 0; }
.product-description p { margin-bottom: 12px; font-size: 15px; }
.product-enquire {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 24px;
  background: #410644;
  color: #fff;
  font-size: 13px;
  font-family: Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.product-enquire:hover { background: #2e0430; color: #fff; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; display: block; }

/* ── Home page ── */
.home-hero { text-align: center; padding: 40px 0 16px; }
.home-hero p { font-size: 25px; font-weight: 700; font-style: italic; max-width: 700px; margin: 0 auto 30px; padding: 0 20px; }
.home-hero img { width: 100%; max-width: 1200px; height: auto; display: block; margin: 0 auto; }
.home-notice { text-align: center; padding: 10px 30px 30px; max-width: 860px; margin: 0 auto; font-size: 17px; color: #444; line-height: 1.7; }
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1050px;
  margin: 20px auto;
  padding: 0 20px 60px;
}
.artist-card { text-align: center; }
.artist-thumb { aspect-ratio: 1; overflow: hidden; background: #f5f5f5; }
.artist-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.artist-card h3 { font-size: 16px; margin-top: 10px; font-family: Arial, sans-serif; }
.artist-card a { display: block; color: #000; }
.artist-card a:hover { color: #410644; }

/* ── General page content ── */
.page-content { padding: 40px 0 60px; }
.page-content h1 { font-size: 30px; font-weight: 700; margin-bottom: 20px; line-height: 1.3; }
.page-content h2 { font-size: 22px; font-weight: 700; margin: 30px 0 14px; }
.page-content h3 { font-size: 18px; font-weight: 600; margin: 20px 0 10px; }
.page-content p { margin-bottom: 14px; }
.page-content ul, .page-content ol { margin: 0 0 14px 24px; }
.page-content li { margin-bottom: 6px; }
.page-content figure { margin: 24px 0; text-align: center; }
.page-content figure img { max-width: 100%; height: auto; display: block; margin: 0 auto; }
.page-content figcaption { font-size: 13px; color: #666; margin-top: 6px; font-style: italic; }

/* ── Exhibition page ── */
.exhibition-header { padding: 30px 0 20px; }
.exhibition-header h1 { font-size: 30px; font-weight: 700; margin-bottom: 16px; }
.exhibition-intro { font-size: 16px; margin-bottom: 30px; }
.exhibition-hero { margin: 20px 0 30px; }
.exhibition-hero img { max-width: 100%; height: auto; display: block; }

/* ── Gallery page ── */
.gallery-intro { padding: 30px 0 20px; }
.gallery-intro h1 { font-size: 30px; font-weight: 700; margin-bottom: 12px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 30px;
  padding: 0 0 60px;
}
.gallery-artist-section { padding: 40px 0 20px; }
.gallery-artist-section h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 8px; }

/* ── Featured Artists index ── */
.featured-artists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 900px;
  margin: 30px auto 60px;
}
.featured-card { display: flex; gap: 24px; align-items: flex-start; }
.featured-card img { width: 140px; height: 140px; object-fit: cover; flex-shrink: 0; }
.featured-card-text h2 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.featured-card-text h2 a { color: #000; }
.featured-card-text h2 a:hover { color: #410644; }
.featured-card-text p { font-size: 14px; color: #555; }
.featured-card-text .read-more { font-size: 13px; font-family: Arial, sans-serif; color: #410644; font-weight: 600; margin-top: 8px; display: inline-block; }

/* ── Footer ── */
footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  font-family: Arial, sans-serif;
  color: #666;
}

/* ── Featured article ── */
.featured-article { padding: 30px 0 60px; }
.article-title { font-size: 30px; font-weight: 700; line-height: 1.3; margin-bottom: 30px; }
.article-body p { margin-bottom: 16px; line-height: 1.85; }
.article-body h2 { font-size: 24px; font-weight: 700; text-align: center; margin: 36px 0 20px; }
.article-body h2 a { color: inherit; }
.article-body figure { margin: 28px 0; text-align: center; }
.article-body figure img { max-width: 100%; height: auto; display: block; margin: 0 auto; }
.article-body figcaption { font-size: 13px; color: #666; margin-top: 8px; font-style: italic; text-align: center; }
.article-body figure.portrait img { max-width: 180px; }
.article-body figure.whale-thumb img { max-width: 200px; }
.article-body .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 24px 0;
}
.article-body .two-col p { font-size: 14.5px; }
.chatgpt-block { margin: 20px 0; }
.chatgpt-block summary {
  font-weight: 700;
  cursor: pointer;
  padding: 10px 14px;
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 3px;
  font-size: 15px;
  user-select: none;
  list-style: none;
}
.chatgpt-block summary::-webkit-details-marker { display: none; }
.chatgpt-block summary::before { content: '▸ '; }
.chatgpt-block[open] summary::before { content: '▾ '; }
.chatgpt-block .chatgpt-body {
  padding: 20px;
  border: 1px solid #eee;
  border-top: none;
}
.chatgpt-block .chatgpt-body p { color: #1a5fa8; margin-bottom: 14px; }
.chatgpt-block .chatgpt-body p:last-child { margin-bottom: 0; color: #000; }
.chatgpt-block .chatgpt-body strong { color: inherit; }
.article-cta { text-align: center; margin: 30px 0; }
.article-cta a {
  display: inline-block;
  padding: 10px 28px;
  background: #410644;
  color: #fff;
  font-size: 14px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.article-cta a:hover { background: #2e0430; color: #fff; }
.next-featured { margin-top: 60px; border-top: 2px solid #eee; padding-top: 40px; }
.next-featured h2 { font-size: 22px; font-weight: 700; text-align: center; margin-bottom: 30px; }
.next-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 640px;
  margin: 0 auto;
}
.next-featured-card { text-align: center; }
.next-featured-card .month { font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.next-featured-card img { width: 250px; height: auto; display: block; margin: 0 auto 12px; }
.next-featured-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.next-featured-card a { color: #000; }
.next-featured-card a:hover { color: #410644; }
.next-featured-card p { font-size: 14px; color: #555; }
.next-featured .closing { text-align: center; margin-top: 30px; font-size: 15px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .product-wrap { grid-template-columns: 1fr; }
  .product-details { padding-top: 0; }
  .artists-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-artists-grid { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 768px) {
  /* Mobile nav */
  .nav-toggle { display: block; }
  #site-header { position: relative; }
  .header-inner { height: auto; padding: 10px 16px; }
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 500;
    margin: 0;
    padding: 8px 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a { white-space: normal; }
  .site-nav .sub-menu {
    position: static;
    border: none;
    box-shadow: none;
    padding-left: 16px;
    display: none;
  }
  .site-nav li.open > .sub-menu { display: block; }
}
@media (max-width: 700px) {
  .artworks-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  .article-body .two-col { grid-template-columns: 1fr; }
  .next-featured-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bio-inner { grid-template-columns: 1fr; }
  .bio-photo { max-width: 200px; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card { flex-direction: column; }
  .featured-card img { width: 100%; height: 200px; }
}
@media (max-width: 440px) {
  .artworks-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .artists-grid { grid-template-columns: 1fr; }
}

/* ── Artwork card (shared across gallery, artist pages, homepage) ── */
.artworks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 56px;
  margin: 20px auto 40px;
  max-width: 920px;
}
.artwork-card {
  display: block;
  color: #000;
  text-decoration: none;
}
.artwork-card:hover { color: #410644; }
.artwork-card h3 {
  font-size: 14px;
  font-family: Arial, sans-serif;
  margin-top: 8px;
  line-height: 1.3;
}
.artwork-price {
  font-size: 13px;
  color: #2ba9b5;
  font-family: Arial, sans-serif;
  margin-top: 3px;
}
.artwork-thumb-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0f0f0;
}
.artwork-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.artwork-card:hover .artwork-thumb-wrap img { transform: scale(1.03); }
.sold-badge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(65,6,68,0.9);
  color: #fff;
  font-size: 12px;
  font-family: Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  padding: 5px 0;
  z-index: 2;
}

/* ── Artist profile page ── */
.artist-page { padding: 40px 20px 60px; max-width: 1200px; margin: 0 auto; }
.artist-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 50px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.artist-header.no-portrait {
  grid-template-columns: 1fr;
}
.artist-portrait {
  width: 100%;
  height: auto;
  display: block;
  max-width: 280px;
}
.artist-bio h1 { font-size: 32px; font-weight: 700; margin-bottom: 18px; }
.artist-bio p { font-size: 16px; line-height: 1.75; margin-bottom: 16px; color: #222; }
.bio-toggle { background: none; border: none; padding: 0; margin: 4px 0 16px; font-size: 15px; color: #1480e6; cursor: pointer; font-family: inherit; }
.bio-toggle:hover { text-decoration: underline; }
.artist-artworks h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

/* ── Homepage extras ── */
.home-intro {
  text-align: center;
  padding: 50px 20px 30px;
  max-width: 780px;
  margin: 0 auto;
}
.home-intro h1 { font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.home-intro p { font-size: 17px; color: #444; }
.home-section { padding: 20px 0 40px; }
.home-section h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}
.view-all { text-align: center; margin-top: 10px; font-family: Arial, sans-serif; font-size: 14px; }
.view-all a { color: #410644; font-weight: 600; }

/* ── Exhibition card (hub page) ── */
.exh-card {
  display: block;
  color: #000;
  text-decoration: none;
}
.exh-card:hover { color: #410644; }
.exh-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: #f0f0f0;
}
.exh-card h3 { font-size: 15px; font-family: Arial, sans-serif; margin-top: 8px; line-height: 1.3; }

/* ── Exhibition detail page ── */
.exh-hero {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
}
.page-content .exhibition-body { max-width: 760px; }
.exhibition-body p { margin-bottom: 14px; }
.exhibition-body h2, .exhibition-body h3 { font-weight: 700; margin: 24px 0 12px; }
.exh-figure { margin: 28px 0; text-align: center; }
.exh-figure img { max-width: 100%; height: auto; display: block; margin: 0 auto; }

/* ── Featured artist detail page ── */
.featured-artist-header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 40px;
}
.featured-portrait { width: 100%; height: auto; display: block; }
.featured-artist-header h1 { font-size: 32px; font-weight: 700; }
.page-content .featured-artist-body { max-width: 760px; }
.featured-artist-body p { margin-bottom: 14px; }
.featured-figure { margin: 24px 0; text-align: center; }
.featured-figure img { max-width: 100%; height: auto; display: block; margin: 0 auto; }

/* ── Product meta list ── */
.product-meta-list {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  font-size: 14px;
  font-style: italic;
  color: #555;
  line-height: 1.9;
}

/* ── Product page layout ── */
.product-page {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: start;
  padding: 30px 20px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.product-info { padding-top: 10px; }
.product-price.sold { font-size: 24px; color: #999; }

/* Artist link on product page */
.product-artist-link {
  display: block;
  color: #2ba9b5;
  font-style: italic;
  font-size: 15px;
  margin-bottom: 6px;
}
.product-artist-link:hover { color: #410644; }

/* Description section (below product grid) */
.product-description-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px 40px;
  border-top: 1px solid #eee;
}
.product-description-section p {
  margin-bottom: 14px;
  font-size: 15.5px;
  line-height: 1.85;
}

/* Related works section */
.related-works {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  border-top: 1px solid #eee;
}
.related-works h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ── Footer (new selector) ── */
.site-footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  font-family: Arial, sans-serif;
  color: #666;
}
.site-footer a { color: #410644; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-inner p { margin-bottom: 4px; }

/* ── Contact page ── */
.contact-page { max-width: 700px; }
.contact-page p { margin-bottom: 14px; }

/* ── Wrapper for page-content inner width ── */
.page-content > * { max-width: 1100px; margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; }
.page-content > .gallery-grid { max-width: 1100px; }
.page-content > h1 { padding-left: 20px; padding-right: 20px; }

/* ── Site header (new selector) ── */
.site-header {
  border-bottom: 1px solid #eee;
  background: #fff;
  position: relative;
}

/* ── Breadcrumb ── */
.breadcrumb {
  font-size: 13px;
  font-family: Arial, sans-serif;
  color: #888;
  padding: 12px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: #410644; }

/* ── Responsive additions ── */
@media (max-width: 960px) {
  .artworks-grid { grid-template-columns: repeat(2, 1fr); }
  .artist-header { grid-template-columns: 200px 1fr; gap: 28px; }
  .product-page { grid-template-columns: 1fr; }
  .featured-artist-header { grid-template-columns: 160px 1fr; }
}
@media (max-width: 700px) {
  .artworks-grid { grid-template-columns: repeat(2, 1fr); }
  .artist-header { grid-template-columns: 1fr; }
  .artist-portrait { max-width: 160px; }
  .featured-artist-header { grid-template-columns: 1fr; }
  .featured-portrait { max-width: 160px; }
}
@media (max-width: 440px) {
  .artworks-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   Exhibition pages
   ══════════════════════════════════════════════════════════════ */

.exhibition-page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* Header: centred title + date */
.exh-header {
  text-align: center;
  padding: 40px 0 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 24px;
}
.exh-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.exh-date {
  font-size: 15px;
  color: #555;
  font-style: italic;
}

/* Featured artist top link */
.exh-featured-top {
  text-align: center;
  margin-bottom: 24px;
}
.exh-featured-top a {
  color: #2ba9b5;
  font-size: 15px;
}
.exh-featured-top a:hover { color: #410644; }

/* Intro section */
.exh-intro {
  max-width: 800px;
  margin: 0 auto 40px;
}
.exh-intro p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.85;
}
.exh-intro .exh-subheading {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
}
.exh-inline-figure {
  text-align: center;
  margin: 28px 0;
}
.exh-inline-caption {
  text-align: center;
  font-size: 14px;
  margin: -16px 0 28px;
  color: #555;
}
.exh-inline-caption a { color: #2ba9b5; text-decoration: none; }
.exh-inline-caption a:hover { color: #410644; }
.exh-inline-figure img {
  max-width: 100%;
  max-height: 560px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Artwork grid */
.exh-artwork-grid {
  border-top: 1px solid #eee;
  padding-top: 40px;
  margin-bottom: 60px;
}
.exh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
}
.exh-artwork-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.exh-artwork-card:hover .exh-card-title { color: #2ba9b5; }
.exh-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 8px;
}
.exh-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.exh-artwork-card:hover .exh-card-img img { transform: scale(1.04); }
.exh-card-info { padding: 0 2px; }
.exh-card-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
  color: #222;
}
.exh-card-meta {
  display: block;
  font-size: 13px;
  color: #2ba9b5;
  line-height: 1.4;
}

/* Featured artist bottom section */
.exh-featured-bottom {
  border-top: 1px solid #eee;
  padding-top: 40px;
  text-align: center;
}
.exh-featured-bottom h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.exh-featured-bottom h2 a { color: #2ba9b5; }
.exh-featured-bottom h2 a:hover { color: #410644; }
.exh-featured-bottom img {
  max-width: 860px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ── Responsive: exhibition grid ── */
@media (max-width: 900px) {
  .exh-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .exh-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .exh-title { font-size: 24px; }
}

/* ── Art to Your Home page ── */
.art-home-page h1.art-home-title {
  text-align: center !important;
  font-size: 28px;
  font-weight: bold;
  margin: 32px auto 20px;
  line-height: 1.3;
}
.art-home-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.art-home-intro a { color: #1e73be; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto 48px;
  text-align: center;
}
.step-col h4 {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.step-col figure {
  margin: 0 0 14px;
}
.step-col figure img {
  width: 100%;
  height: auto;
  display: block;
}
.step-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.art-home-benefit {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 600px;
  line-height: 1.6;
}

/* Booking card */
.booking-card {
  max-width: 540px;
  margin: 0 auto 48px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 24px 28px;
}
.booking-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.booking-card-head h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}
.booking-price {
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
.booking-card p {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px;
}
.booking-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.booking-duration {
  font-size: 14px;
  color: #666;
}
.booking-continue {
  display: inline-block;
  background: #1480e6;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
.booking-continue:hover { background: #0f6bc4; color: #fff; }

/* Brisbane info box */
.brisbane-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto 32px;
}
.brisbane-info img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}
.brisbane-info p {
  line-height: 1.7;
  font-size: 15px;
}

.art-home-closing {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
}

/* ── Responsive: art-to-home ── */
@media (max-width: 720px) {
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .brisbane-info { flex-direction: column; align-items: center; text-align: center; }
}

/* ── Scroll-to-top button ── */
#scroll-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 9999;
}
#scroll-top-btn.visible {
  opacity: 0.8;
  visibility: visible;
}
#scroll-top-btn:hover { opacity: 1; }

/* ── Virtually Live group show ────────────────────────────────── */
.vl-hero { margin: 0 0 24px; text-align: center; }
.vl-hero img { max-width: 100%; border-radius: 4px; }

.vl-rooms-grid { display: flex; gap: 16px; flex-wrap: wrap; margin: 0 0 32px; justify-content: center; }
.vl-room-figure { flex: 1 1 260px; max-width: 340px; margin: 0; text-align: center; }
.vl-room-figure img { width: 100%; border-radius: 4px; }
.vl-room-figure figcaption { font-size: 13px; color: #555; margin-top: 6px; }

.vl-quicklinks-bar { padding: 18px 0; margin: 0 0 36px; }
.vl-ql-heading { font-weight: 600; margin: 0 0 6px; }
.vl-ql-links { margin: 0 0 16px; line-height: 1.9; }
.vl-ql-links:last-child { margin-bottom: 0; }
.vl-ql-links a { color: #1480e6; text-decoration: none; }
.vl-ql-links a:hover { text-decoration: underline; }
.vl-ql-note { margin: 0 0 12px; font-size: 14px; color: #555; }

.vl-artist-section { margin: 0 0 56px; padding-top: 20px; border-top: 2px solid #e0e0e0; }
.vl-artist-name { font-size: 24px; margin: 0 0 12px; }
.vl-artist-bio { max-width: 680px; margin: 0 0 20px; }
.vl-artist-bio p { margin: 0 0 10px; line-height: 1.65; }
.vl-artist-artworks { margin-top: 20px; }
.vl-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .vl-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .vl-grid { grid-template-columns: repeat(2, 1fr); } }
#scroll-top-btn img { display: block; width: auto; height: auto; }
