/* ========================================
   Gallery page / Events page shared
   ========================================= */
.gallery-page-body,
.events-page-body {
  background: #140a06;
}

.gallery-page-main,
.events-page-main {
  position: relative;
  z-index: 1;
  padding-top: 118px;
  padding-bottom: 34px;
}

.gallery-page-section,
.events-page-section {
  padding-top: 10px;
}

.gallery-page-head,
.events-page-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.gallery-back,
.events-back {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex: 0 0 28px;
}

.gallery-back svg,
.events-back svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-page-title,
.events-page-title {
  margin: 5px 0 0;
  color: var(--accent);
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
}

.gallery-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.gallery-filter {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--accent);
  font-size: 0.98rem;
}

.gallery-filter.active {
  background: var(--accent);
  color: #1c120d;
  border-color: var(--accent);
}

.gallery-feature {
  margin-bottom: 18px;
}

.gallery-feature-media {
  overflow: hidden;
  background: #22140d;
}

.gallery-feature-media img {
  width: 100%;
  aspect-ratio: 0.72 / 1;
  object-fit: cover;
}

.gallery-thumb-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.gallery-thumb-strip::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  background: #22140d;
  flex: 0 0 56px;
}

.gallery-thumb.active {
  border-color: var(--accent);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.events-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 14px;
  align-items: start;
}

.event-listing-card {
  display: grid;
  gap: 10px;
}

.event-listing-link {
  display: grid;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.event-listing-poster {
  overflow: hidden;
  border-radius: 2px;
  background: #26170f;
}

.event-listing-poster img {
  width: 100%;
  aspect-ratio: 0.72 / 1;
  object-fit: cover;
  display: block;
}

.event-listing-meta {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.event-listing-date strong {
  display: block;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
}

.event-listing-date span {
  display: block;
  margin-top: 2px;
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.event-listing-copy h2 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.16;
  font-weight: 400;
}

.event-listing-copy p {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.88rem;
  line-height: 1.25;
}

/* ========================================
   Event detail page
   ========================================= */
.event-detail-body {
  background: #140a06;
}

.event-detail-main {
  position: relative;
  z-index: 1;
  padding-top: 132px;
  padding-bottom: 34px;
}

.event-detail-section {
  padding-top: 24px;
}

.event-detail-layout {
  display: grid;
  gap: 22px;
}

.event-detail-poster {
  overflow: hidden;
  border-radius: 4px;
  background: #26170f;
}

.event-detail-poster img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
}

.event-detail-content {
  display: grid;
  gap: 20px;
}

.event-detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.event-detail-meta-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(32, 20, 13, 0.55);
}

.event-detail-meta-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-faint);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-detail-meta-card strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.event-detail-summary {
  margin: 0;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.4;
}

.event-detail-description {
  display: grid;
  gap: 14px;
}

.event-detail-description p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.55;
}

.event-detail-cta {
  padding-top: 6px;
}

.event-book-btn {
  max-width: 320px;
}

.event-booking-section[hidden] {
  display: none !important;
}

.event-detail-title-block {
  display: grid;
  gap: 10px;
  padding-top: 6px;
}

.event-detail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  width: fit-content;
  padding: 0 12px;
  border: 1px solid rgba(211, 151, 88, 0.28);
  border-radius: 999px;
  background: rgba(211, 151, 88, 0.08);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-detail-eyebrow-link {
  color: var(--accent);
  text-decoration: none;
}

.event-detail-eyebrow-link:hover {
  color: var(--text);
}

.event-detail-eyebrow-sep {
  color: var(--text-faint);
}

.event-detail-eyebrow-current {
  color: var(--text-soft);
}

.event-detail-head {
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.event-detail-head .events-page-title {
  margin: 0;
  line-height: 1.02;
}

.event-detail-head .events-back {
  margin-top: 7.2px;
}

.event-detail-utility {
  display: grid;
  gap: 14px;
  padding-top: 10px;
}

.event-utility-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.event-utility-row--single {
  grid-template-columns: 1fr;
}

.event-utility-info {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.event-utility-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.event-utility-icon svg,
.event-utility-action-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.event-utility-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.event-utility-copy strong {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.25;
}

.event-utility-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.35;
}

.event-location-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  background: rgba(211, 151, 88, 0.12);
  color: var(--text);
  font-size: 0.86rem;
}

.event-utility-action {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.event-utility-action-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.event-about-block {
  display: grid;
  gap: 14px;
  padding-top: 18px;
}

.event-about-title {
  margin: 0;
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 500;
}