/* =============================================================
   pages.css — Page-Specific Overrides Only
   Siti Fatima Painter Portfolio
   Touches nothing that belongs in variables/layout/components.
   ============================================================= */

/* ═══════════════════════════════════════════════════════════
   index.html — HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  transition: opacity var(--transition-slow);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(26, 26, 46, 0.75) 0%,
      rgba(74, 26, 44, 0.45) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: var(--spacing-md);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.hero__eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--color-gold);
}

.hero__title {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: #4A4A5A;
  margin-bottom: var(--spacing-md);
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
  text-align: center;
}

.hero .hero__subtitle,
.section-dark .hero__subtitle {
  color: rgba(249, 246, 240, 0.75);
}

.hero__actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  align-items: center;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(249, 246, 240, 0.5);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

/* BG image wrapper */
.hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Brush overlay is styled entirely by JS (animations.js) */
.hero__brush-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Explore circle button — bottom center */
.explore-btn {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--color-gold);
  text-decoration: none;
}

/* Social links — pinned bottom left */
.hero__socials {
  position: absolute;
  bottom: var(--spacing-md);
  left: var(--spacing-md);
  z-index: 3;
}

/* Copyright — pinned bottom right */
.hero__copyright {
  position: absolute;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  z-index: 3;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(249, 246, 240, 0.5);
}

/* Nav controls wrapper (sound toggle + hamburger) */
.nav-controls {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

/* Featured artworks strip on home */

.featured-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
}

.featured-strip .painting-card {
  aspect-ratio: 3 / 4;
}

/* Home: intro quote block */
.intro-quote {
  border-left: 3px solid var(--color-gold);
  padding-left: var(--spacing-md);
  margin: var(--spacing-md) 0;
}

/* ═══════════════════════════════════════════════════════════
   work.html — GALLERY GRID
   ═══════════════════════════════════════════════════════════ */

.gallery-grid {
  columns: 3;
  column-gap: var(--spacing-sm);
}

.gallery-grid .painting-card {
  break-inside: avoid;
  margin-bottom: var(--spacing-sm);
}

/* Full-width featured row */
.gallery-featured {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.gallery-featured .painting-card {
  aspect-ratio: 1 / 1;
}

.gallery-featured .painting-card:first-child {
  aspect-ratio: auto;
  grid-row: span 2;
}

/* ── Card gradient placeholder (when no image) ──────────────── */
.card-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg,
      rgba(201, 169, 110, 0.15) 0%,
      rgba(74, 26, 44, 0.25) 100%);
}

/* ── Card price label ───────────────────────────────────────── */
.card-price {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-gold);
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
}

/* ── Overlay body grouping ──────────────────────────────────── */
.overlay__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* ── Sold badge on overlay ──────────────────────────────────── */
.card-badge {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background: var(--color-burgundy);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

/* ── Loading shimmer grid ───────────────────────────────────── */
.loading-shimmer {
  columns: 3;
  column-gap: var(--spacing-sm);
}

.skeleton-card {
  break-inside: avoid;
  margin-bottom: var(--spacing-sm);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(90deg,
      rgba(26, 26, 46, 0.06) 0%,
      rgba(26, 26, 46, 0.12) 50%,
      rgba(26, 26, 46, 0.06) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

/* Vary heights to mimic masonry */
.skeleton-card:nth-child(2) {
  aspect-ratio: 3 / 5;
}

.skeleton-card:nth-child(4) {
  aspect-ratio: 2 / 3;
}

.skeleton-card:nth-child(5) {
  aspect-ratio: 3 / 5;
}

/* ── Error state ─────────────────────────────────────────────── */
.error-state {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.error-state__icon {
  font-size: 3rem;
  opacity: 0.4;
}

.error-state__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-dark);
}

.error-state__message {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 400px;
}

/* ── Gallery Footer Note ─────────────────────────────────────── */
.gallery-footer-note {
  text-align: center;
  margin-top: var(--spacing-xxl);
  padding: var(--spacing-xl) var(--spacing-md);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  font-style: italic;
  opacity: 0.85;
}

/* ── Empty state ─────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.empty-state__icon {
  font-size: 3rem;
  opacity: 0.3;
}

.empty-state__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-muted);
}

/* ── Responsive: loading shimmer ────────────────────────────── */
@media (max-width: 768px) {
  .loading-shimmer {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .loading-shimmer {
    columns: 1;
  }
}

/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__inner {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.lightbox__img-container {
  position: relative;
  display: inline-block;
}

.lightbox__img {
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.lightbox__info {
  max-width: 280px;
  color: var(--color-text-light);
  padding-top: var(--spacing-sm);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  font-size: 1.5rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.lightbox__close:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .lightbox__inner {
    flex-direction: column;
    align-items: center;
    max-height: 95vh;
    overflow-y: auto;
    padding: 2.5rem 1rem 1.5rem 1rem;
    width: 100%;
    gap: var(--spacing-sm);
  }

  .lightbox__img {
    max-height: 50vh;
    width: 100%;
    object-fit: contain;
  }

  .lightbox__info {
    max-width: 100%;
    width: 100%;
    padding-top: 0.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   about.html — TWO-COLUMN LAYOUT OVERRIDES
   ═══════════════════════════════════════════════════════════ */

.about-two-column {
  align-items: start;
}

.about-portrait,
.portrait-placeholder {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
  justify-self: center;
  align-self: start;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.about-portrait img,
.portrait-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Decorative gold frame accent */
.about-portrait::after,
.portrait-placeholder::after {
  content: '';
  position: absolute;
  inset: var(--spacing-sm);
  border: 1px solid var(--color-gold);
  opacity: 0.25;
  pointer-events: none;
}

.about-bio {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  justify-content: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
  padding: var(--spacing-md) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about-stat__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-gold);
  font-weight: 700;
  line-height: 1;
}

.about-stat__label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* ── Portrait placeholder (gradient when no photo) ────────── */
.portrait-placeholder {
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg,
      #e8ddd0 0%,
      #c9b99a 40%,
      #a08060 100%);
}

/* ── Bio text column ────────────────────────────────────────── */
.bio-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-sm);
}

/* Large decorative background quote mark */
.bio-text::before {
  content: '\201C';
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-family: var(--font-heading);
  font-size: 10rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.bio-text>* {
  position: relative;
  z-index: 1;
}

.bio-text p {
  color: var(--color-text-dark);
  line-height: 1.85;
}

/* ── Artist statement blockquote ────────────────────────────── */
.statement-blockquote {
  border: none;
  margin: 0;
  padding: 0;
}

.statement-blockquote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(249, 246, 240, 0.88);
  margin-bottom: var(--spacing-sm);
}

.statement-blockquote p:last-child {
  margin-bottom: 0;
}

/* ── Gold horizontal divider ────────────────────────────────── */
.gold-divider {
  width: 80px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--spacing-md) auto 0;
  opacity: 0.6;
}

/* ── Responsive about ────────────────────────────────────────── */
@media (max-width: 768px) {

  .portrait-placeholder,
  .about-portrait {
    aspect-ratio: 3 / 4;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    justify-self: center;
    align-self: center;
  }

  .bio-text::before {
    font-size: 7rem;
  }

  .statement-blockquote p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {

  .portrait-placeholder,
  .about-portrait {
    aspect-ratio: 3 / 4;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    justify-self: center;
    align-self: center;
  }

  .bio-text::before {
    font-size: 5rem;
    top: -1rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   exhibitions.html — TIMELINE OVERRIDES
   ═══════════════════════════════════════════════════════════ */


.exhibitions-header {
  background: var(--color-bg-dark);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  text-align: center;
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}

.exhibitions-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--color-gold);
}

.exhibitions-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.exhibitions-category__title {
  color: var(--color-gold);
  font-family: var(--font-heading);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-xs);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   contact.html — CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--spacing-xl);
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.contact-info-item__icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-info-item__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.contact-info-item__value {
  font-size: 0.95rem;
}

/* ── Centered contact info (simpler layout than .contact-grid) ── */
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-lg);
}

.contact-details p {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.6;
}

.contact-details a {
  transition: opacity var(--transition-fast);
}

.contact-details a:hover {
  opacity: 0.75;
}

/* ── Centered social links modifier ─────────────────────────── */
.social-links--centered {
  justify-content: center;
  margin-top: var(--spacing-md);
}

/* ── Contact form layout (centered, max-width constrained) ──── */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

/* Label + input + inline error grouped together */
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--spacing-sm);
}

.contact-form__field:last-of-type {
  margin-bottom: 0;
}

/* ── Form sending state ─────────────────────────────────────── */
.contact-form[data-js-sending] button[type="submit"] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Form success message ───────────────────────────────────── */
.form-success {
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-md);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 2px;
}

.form-success__icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.form-success__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: var(--spacing-xs);
}

.form-success__body {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ── Inline form error message ──────────────────────────────── */
.form-error-msg {
  font-size: 0.82rem;
  color: #c0392b;
  margin-top: var(--spacing-xs);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — PAGE OVERRIDES
   ═══════════════════════════════════════════════════════════ */


@media (max-width: 768px) {

  /* Hero */
  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: var(--spacing-lg);
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: 2.6rem;
  }

  /* Explore button: bump up so it clears the socials */
  .explore-btn {
    bottom: 5.5rem;
  }

  /* Socials: smaller gap */
  .hero__socials {
    bottom: var(--spacing-sm);
    left: var(--spacing-sm);
  }

  /* Copyright: hide on small screens to reduce clutter */
  .hero__copyright {
    display: none;
  }

  /* Scroll hint: hide on mobile */
  .hero__scroll-hint {
    display: none;
  }

  /* Gallery: switch to 2 columns */
  .gallery-grid {
    columns: 2;
  }

  .gallery-featured {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-featured .painting-card:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  /* Featured strip: 2 columns */
  .featured-strip {
    grid-template-columns: 1fr 1fr;
  }

  /* About: stack */
  .about-portrait {
    aspect-ratio: 4 / 3;
    max-height: 360px;
  }

  /* Exhibitions */
  .exhibitions-categories {
    grid-template-columns: 1fr;
  }

  /* Contact: stack */
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  /* Hero */
  .hero__title {
    font-size: 2rem;
  }

  .explore-btn {
    bottom: 5rem;
    width: 50px;
    height: 50px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Gallery: single column */
  .gallery-grid {
    columns: 1;
  }

  .gallery-featured {
    grid-template-columns: 1fr;
  }

  .gallery-featured .painting-card:first-child {
    grid-column: auto;
  }

  /* Featured strip: single column */
  .featured-strip {
    grid-template-columns: 1fr;
  }

  /* About stats: 2 columns */
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* Lightbox: full-screen on mobile */
  .lightbox__inner {
    flex-direction: column;
    max-width: 95vw;
  }

  .lightbox__info {
    max-width: 100%;
  }
}

/* ── Lightbox Fullscreen & Image Container ─────────────────── */
.lightbox__img-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__fullscreen-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(10, 10, 20, 0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.lightbox__fullscreen-btn:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: var(--color-text-dark);
}

.lightbox__img-container:fullscreen {
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img-container:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img-container:fullscreen .lightbox__img,
.lightbox__img-container:-webkit-full-screen .lightbox__img {
  max-height: 100vh;
  max-width: 100vw;
  border-radius: 0;
  box-shadow: none;
}

/* ── Secondary Pages Clearance & Spacing Standard ────────────── */
body:not([data-js-page="home"]) main {
  padding-top: 0;
}

body:not([data-js-page="home"]) main > header:first-child,
body:not([data-js-page="home"]) main > .page-header-split:first-child,
body:not([data-js-page="home"]) main > section:first-of-type,
body:not([data-js-page="home"]) main > .view:first-of-type > .series-index {
  padding-top: 130px;
}

body:not([data-js-page="home"]) .page-header {
  padding: 0 0 1rem;
  margin-top: 0;
}

/* ── Unified Page Header Split Architecture ───────────────────── */
.page-header-split {
  margin-top: 0;
  padding: 0 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2.5rem;
  row-gap: 1rem;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.0rem;
}

.page-header-split-left {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* ── About page: no subtitle → center the heading group ──────── */
.page-header-split--centered {
  grid-template-columns: 1fr;
  justify-items: center;
}

.page-header-split--centered .page-header-split-left {
  justify-self: center;
}

.page-header-split-left .section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #A37B3E;
  margin-bottom: 1rem;
  display: block;
}

.page-header-split-left h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--color-text-dark, #1A1A2E);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* ── Contact Page 2-Column Split Layout ───────────────────────── */
.contact-section {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 4rem;
}

.contact-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
  row-gap: 3rem;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.contact-split-left {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  text-align: left;
}

.contact-header-block .section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #A37B3E;
  margin-bottom: 1rem;
  display: block;
}

.contact-header-block h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700;
  color: var(--color-text-dark, #1A1A2E);
  line-height: 1;
  letter-spacing: -0.03em;
}

.contact-split-left .intro {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.65;
  max-width: 38ch;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.contact-info-value {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text-dark, #1A1A2E);
  text-decoration: none;
  transition: color 0.22s ease;
}

.contact-info-value:hover {
  color: var(--color-gold);
}

.contact-social-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
  margin-top: 0.4rem;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-dark, #1A1A2E);
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.contact-social-link svg {
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.contact-social-link:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.contact-split-right {
  width: 100%;
}

@media (max-width: 900px) {
  .contact-split-container {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 3rem;
  }
}

.page-header-split .intro {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 36ch;
  line-height: 1.7;
  text-align: left;
  align-self: center;
}

@media (max-width: 900px) {
  .page-header-split {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem 2rem;
  }

  .page-header-split-left {
    justify-self: auto;
    align-items: flex-start;
    text-align: left;
  }

  .page-header-split--centered .page-header-split-left {
    justify-self: auto;
  }

  .page-header-split .intro {
    text-align: left;
    align-self: auto;
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   EXHIBITION TICKETS CAROUSEL (Matching Gallery Page Carousel)
   ═══════════════════════════════════════════════════════════ */

.exh-carousel-container {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0;
  margin-bottom: 2rem;
  overflow: hidden;
}

.exh-strip-wrapper {
  position: relative;
  width: 100%;
}


/* Horizontal Metallic Gold Thread Line (Layered behind all ticket strings) */
.exh-thread-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.15) 0%, rgba(201, 169, 110, 0.85) 25%, #C9A96E 50%, rgba(201, 169, 110, 0.85) 75%, rgba(201, 169, 110, 0.15) 100%);
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.4);
  z-index: 1;
  /* Rendered behind ticket strings */
  pointer-events: none;
}

/* Horizontal Scroll Strip */
.exh-ticket-strip {
  position: relative;
  z-index: 2;
  /* Sits above horizontal line */
  display: flex;
  overflow-x: auto;
  gap: 2.2rem;
  padding: 0 3.5rem 3rem;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.exh-ticket-strip.grabbing {
  cursor: grabbing;
}

.exh-ticket-strip::-webkit-scrollbar {
  display: none;
}

/* Single Ticket Unit */
.exh-ticket-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 clamp(320px, 28vw, 380px);
  position: relative;
}

/* Gold Knot Bead at the Horizontal Line (Frontmost layer) */
.exh-knot {
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 1.5px solid #1A1A2E;
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.6);
  z-index: 6;
  /* Frontmost knot layer */
}

/* Vertical Gold Thread String (Flowing 52px down into Eyelet Hole - In front of horizontal line) */
.exh-string {
  width: 2px;
  height: 52px;
  background: linear-gradient(to bottom, #C9A96E 0%, #F5E5C9 40%, #C9A96E 100%);
  box-shadow: 0 0 6px rgba(201, 169, 110, 0.4);
  margin-bottom: -32px;
  z-index: 5;
  /* In front of horizontal line */
  position: relative;
  transform-origin: top center;
  transition: transform 0.45s cubic-bezier(.22, 1, .36, 1);
}

/* Ticket Card */
.exh-ticket-card {
  width: 100%;
  min-height: 380px;
  background: linear-gradient(155deg, #1A1A2E 0%, #121222 100%);
  color: var(--color-text-light);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 12px;
  padding: 1.8rem 1.6rem 2rem;
  position: relative;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22), 0 0 15px rgba(201, 169, 110, 0.08);
  transform-origin: top center;
  transition: transform 0.45s cubic-bezier(.22, 1, .36, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

/* Hover Motion matching Gallery Carousel */
.exh-ticket-unit:hover .exh-ticket-card {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.85);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.38), 0 0 25px rgba(201, 169, 110, 0.25);
}

.exh-ticket-unit:hover .exh-string {
  transform: scaleY(1.05);
}

/* Brass Eyelet Ring */
.exh-eyelet {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  background: #11111E;
  margin: 0 auto 1.1rem;
  position: relative;
  z-index: 4;
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.5), inset 0 0 4px rgba(0, 0, 0, 0.9);
}

.exh-eyelet::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 5px rgba(201, 169, 110, 0.9);
}

/* Centered Ticket Header Stub */
.exh-ticket-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.exh-year {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  text-align: center;
  margin: 0 auto;
  display: block;
}

/* Dashed Perforation Line */
.exh-perforation {
  border-bottom: 1px dashed rgba(201, 169, 110, 0.35);
  margin: 1.2rem 0 1.4rem;
  position: relative;
}

.exh-perforation::before,
.exh-perforation::after {
  content: '';
  position: absolute;
  top: -7px;
  width: 14px;
  height: 14px;
  background: var(--color-bg-cream);
  border-radius: 50%;
}

.exh-perforation::before {
  left: -23px;
}

.exh-perforation::after {
  right: -23px;
}

/* Ticket Content Fields */
.exh-ticket-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.exh-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.exh-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
}

.exh-place {
  font-size: 0.95rem;
  color: rgba(249, 246, 240, 0.88);
  line-height: 1.45;
}

.exh-address {
  font-size: 0.85rem;
  color: rgba(249, 246, 240, 0.55);
}