:root {
  --gold: #c9a84c;
  --museum-black: #111111;
  --warm-black: #0d0d0d;
  --glass-alpha: 0.4;
  --glass-surface: rgba(16, 16, 20, 0.4);
  --glass-surface-strong: rgba(14, 14, 18, 0.4);
  --glass-surface-deep: rgba(11, 11, 14, 0.4);
  --glass-surface-soft: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-border-strong: rgba(255, 255, 255, 0.22);
  --glass-shadow: 0 26px 72px rgba(0, 0, 0, 0.34);
  --glass-blur: blur(20px) saturate(160%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0) 24%),
    radial-gradient(circle at 86% 8%, rgba(86, 139, 255, 0.1) 0%, rgba(86, 139, 255, 0) 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 18%),
    var(--museum-black);
  color: #ffffff;
  overflow-x: hidden;
}

.site-header {
  padding: 0.8rem 0.75rem 0;
}

.site-topbar-shell,
.site-nav-shell {
  position: relative;
  overflow: hidden;
  margin-inline: auto;
  max-width: calc(100% - 1rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 12, 0.96);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-topbar-shell {
  border-bottom-color: rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem 1.25rem 0 0;
}

.site-nav-shell {
  margin-top: 0.3rem;
  border-radius: 1.45rem;
}

.site-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  margin: 0;
  max-width: none;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 4, 7, 0.7);
  padding: 0;
  cursor: pointer;
}

.site-mobile-drawer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(24rem, 90vw);
  height: 100%;
  padding: 1.25rem 1.15rem 1.5rem;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 10, 12, 0.98);
  box-shadow: -28px 0 56px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-mobile-menu.is-open .site-mobile-drawer {
  transform: translateX(0);
}

.site-menu-close {
  flex-shrink: 0;
}

.hero-box::before,
.hero-toggle::before,
.hero-dots::before,
.promo-card::before,
.info-strip::before,
.collection-card::before,
.page-content-card::before,
.page-related-link::before,
.bwk-page-hero::before,
.collection-gallery-hero::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04) 24%, rgba(255, 255, 255, 0) 48%);
  pointer-events: none;
  opacity: 0.88;
}

.site-brand {
  position: relative;
  padding: 0.75rem 0.35rem 0.75rem 0;
}

.site-brand::after {
  content: '';
  position: absolute;
  inset: 0 -0.8rem 0 0;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.site-brand:hover::after {
  opacity: 1;
}

.site-menu-toggle,
.header-utility-link,
.header-donate-link,
.mobile-nav-link,
.mobile-utility-link {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-utility-link,
.header-donate-link,
.site-menu-toggle,
.mobile-utility-link {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(16px) saturate(155%);
  -webkit-backdrop-filter: blur(16px) saturate(155%);
}

.header-utility-link {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  padding: 0.55rem 0.9rem;
}

.header-donate-link,
.mobile-utility-link {
  border-color: rgba(255, 255, 255, 0.16);
}

.mobile-nav-link {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.header-utility-link:hover,
.header-donate-link:hover,
.site-menu-toggle:hover,
.mobile-nav-link:hover,
.mobile-utility-link:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 38px rgba(0, 0, 0, 0.18);
}

header,
.site-footer {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js body.page-preload:not(.page-ready) header {
  opacity: 0;
  transform: translateY(-22px);
}

html.js body.page-preload:not(.page-ready) .site-footer {
  opacity: 0;
  transform: translateY(26px);
}

body.page-ready .site-footer {
  transition-delay: 0.18s;
}

.text-xs {
  font-size: 0.92rem;
  line-height: 1.45rem;
}

.text-sm {
  font-size: 1rem;
  line-height: 1.55rem;
}

p,
a {
  font-size: 1.05rem;
}

.site-footer p,
.site-footer a {
  font-size: 1.1rem;
  line-height: 1.55;
}

.font-display {
  font-family: 'Playfair Display', serif;
}

.bwk-page-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(18, 18, 22, 0.4), rgba(12, 12, 16, 0.4));
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.bwk-page-hero::after,
.collection-gallery-hero::after {
  content: '';
  position: absolute;
  right: -10%;
  bottom: -30%;
  width: 18rem;
  height: 18rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, rgba(201, 168, 76, 0.02) 48%, rgba(201, 168, 76, 0) 72%);
  pointer-events: none;
  animation: ambient-drift 12s ease-in-out infinite alternate;
}

.bwk-page-hero > *,
.collection-gallery-hero > * {
  position: relative;
  z-index: 1;
}

.bwk-page-hero-visit {
  border-color: rgba(100, 174, 198, 0.22);
  background: linear-gradient(135deg, rgba(18, 34, 42, 0.4) 0%, rgba(16, 37, 47, 0.4) 55%, rgba(27, 60, 72, 0.4) 100%);
}

.bwk-page-hero-exhibitions {
  border-color: rgba(201, 168, 76, 0.24);
  background: linear-gradient(135deg, rgba(27, 19, 9, 0.4) 0%, rgba(36, 24, 10, 0.4) 55%, rgba(58, 39, 13, 0.4) 100%);
}

.bwk-page-hero-collection {
  border-color: rgba(180, 126, 101, 0.22);
  background: linear-gradient(135deg, rgba(26, 17, 16, 0.4) 0%, rgba(44, 27, 23, 0.4) 55%, rgba(64, 40, 33, 0.4) 100%);
}

.bwk-page-hero-learn {
  border-color: rgba(153, 126, 207, 0.2);
  background: linear-gradient(135deg, rgba(22, 17, 31, 0.4) 0%, rgba(34, 25, 49, 0.4) 55%, rgba(51, 38, 71, 0.4) 100%);
}

.bwk-page-hero-support {
  border-color: rgba(197, 133, 93, 0.22);
  background: linear-gradient(135deg, rgba(28, 18, 15, 0.4) 0%, rgba(43, 23, 18, 0.4) 55%, rgba(64, 32, 22, 0.4) 100%);
}

.bwk-page-hero-donate {
  border-color: rgba(99, 179, 126, 0.24);
  background: linear-gradient(135deg, rgba(15, 28, 19, 0.4) 0%, rgba(22, 51, 34, 0.4) 55%, rgba(31, 74, 51, 0.4) 100%);
}

.bwk-visit-rail,
.bwk-visit-essentials,
.bwk-visit-highlight,
.bwk-exhibition-program,
.bwk-exhibition-calendar,
.bwk-event-chip,
.bwk-learn-lab,
.bwk-learn-syllabus,
.bwk-learn-study {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  background: linear-gradient(135deg, rgba(20, 20, 24, 0.42), rgba(11, 11, 15, 0.42));
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(148%);
  -webkit-backdrop-filter: blur(18px) saturate(148%);
}

.bwk-visit-layout {
  background:
    radial-gradient(circle at 10% 0%, rgba(102, 194, 229, 0.14), rgba(102, 194, 229, 0) 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.bwk-visit-flow-step {
  border-left: 2px solid rgba(122, 207, 237, 0.42);
  padding-left: 0.95rem;
}

.bwk-visit-essential-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.9rem;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
}

.bwk-exhibitions-layout {
  background:
    radial-gradient(circle at 86% 12%, rgba(201, 168, 76, 0.16), rgba(201, 168, 76, 0) 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.bwk-exhibition-tone-gold {
  border-top: 2px solid rgba(201, 168, 76, 0.7);
}

.bwk-exhibition-tone-blue {
  border-top: 2px solid rgba(102, 194, 229, 0.7);
}

.bwk-exhibition-tone-copper {
  border-top: 2px solid rgba(204, 132, 85, 0.72);
}

.bwk-program-artwork {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.03);
}

.bwk-learn-layout {
  background:
    radial-gradient(circle at 14% 8%, rgba(182, 132, 255, 0.14), rgba(182, 132, 255, 0) 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.bwk-learn-track {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.bwk-learn-tag {
  border: 1px solid rgba(210, 176, 242, 0.35);
  border-radius: 9999px;
  padding: 0.52rem 0.88rem;
  background: rgba(210, 176, 242, 0.08);
}

.mpesa-till-card {
  border: 1px solid #2f6f44;
  background: linear-gradient(140deg, rgba(21, 52, 34, 0.95) 0%, rgba(28, 72, 46, 0.92) 100%);
}

.mpesa-till-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ffffff;
}

.mpesa-step {
  border-left: 2px solid rgba(201, 168, 76, 0.45);
  padding-left: 0.9rem;
}

.collection-gallery-shell {
  background:
    radial-gradient(circle at 18% 10%, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0) 40%),
    radial-gradient(circle at 92% 75%, rgba(102, 51, 21, 0.16) 0%, rgba(102, 51, 21, 0) 36%),
    #090909;
}

.collection-gallery-hero {
  position: relative;
  overflow: hidden;
  border-color: rgba(201, 168, 76, 0.22);
  background: linear-gradient(130deg, rgba(23, 17, 10, 0.4) 0%, rgba(35, 25, 13, 0.4) 58%, rgba(53, 37, 17, 0.4) 100%);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-color: var(--glass-border);
  background: linear-gradient(135deg, rgba(19, 19, 22, 0.4), rgba(13, 13, 16, 0.4));
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.8);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.38);
}

.collection-media-link {
  overflow: hidden;
}

.collection-media {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.collection-card:hover .collection-media {
  transform: scale(1.03);
  filter: brightness(1.03);
}

.nav-link {
  position: relative;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: #ffffff;
  padding: 0.5rem 0.85rem;
  border-radius: 9999px;
  transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-utility-link .nav-link {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.header-utility-link .nav-link:hover {
  background: transparent;
  box-shadow: none;
}

.header-utility-link .nav-link::after {
  display: none;
}

.hero-stage {
  position: relative;
  height: 60vh;
  min-height: 26rem;
  max-height: 42rem;
  background: #050505;
  border-radius: 2.2rem;
  margin: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.42);
  isolation: isolate;
  overflow: hidden;
}

.hero-stage::before,
.hero-stage::after {
  content: '';
  position: absolute;
  z-index: 0;
  border-radius: 9999px;
  pointer-events: none;
  filter: blur(18px);
}

.hero-stage::before {
  top: -18%;
  right: -8%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34) 0%, rgba(116, 167, 255, 0.18) 26%, rgba(255, 255, 255, 0) 72%);
  opacity: 0.72;
}

.hero-stage::after {
  left: -10%;
  bottom: -28%;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24) 0%, rgba(201, 168, 76, 0.16) 24%, rgba(255, 255, 255, 0) 74%);
  opacity: 0.64;
}

.hero-slides {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide .hero-media {
  transform: scale(1.15) translate3d(5%, 0, 0);
  filter: saturate(0.96) brightness(0.92);
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s ease;
}

.hero-slide:nth-child(even) .hero-media {
  transform: scale(1.15) translate3d(-5%, 0, 0);
}

.hero-slide .hero-overlay {
  opacity: 0.72;
  transition: opacity 0.9s ease;
}

.hero-slide .hero-box {
  opacity: 0;
  transform: translate3d(-34px, 26px, 0) scale(0.96);
  transition: opacity 0.7s ease, transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.hero-slide:nth-child(even) .hero-box {
  transform: translate3d(34px, 26px, 0) scale(0.96);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-slide.is-active .hero-media {
  transform: scale(1.03) translate3d(0, 0, 0);
  filter: saturate(1.04) brightness(1);
}

.hero-slide.is-active .hero-overlay {
  opacity: 1;
}

.hero-slide.is-active .hero-box {
  opacity: 1;
  transform: none;
}

.hero-render-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.78) 28%, rgba(0, 0, 0, 0.26) 62%, rgba(0, 0, 0, 0.16) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-box {
  position: absolute;
  overflow: hidden;
  z-index: 3;
  left: clamp(1.5rem, 5vw, 5rem);
  bottom: clamp(1.5rem, 7vh, 4rem);
  width: min(33rem, calc(100% - 3rem));
  border-radius: 2rem;
  border: 1px solid var(--glass-border-strong);
  background: linear-gradient(135deg, rgba(18, 18, 22, 0.4), rgba(12, 12, 16, 0.4));
  color: #ffffff;
  padding: 1.75rem 2rem;
  box-shadow: 0 24px 82px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.hero-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8f6d17;
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 9999px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(18, 18, 22, 0.4), rgba(255, 255, 255, 0.04));
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transform: translateY(-50%);
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.hero-nav-prev {
  left: clamp(0.65rem, 2vw, 1.4rem);
}

.hero-nav-next {
  right: clamp(0.65rem, 2vw, 1.4rem);
}

.hero-nav:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(201, 168, 76, 0.72);
  color: var(--gold);
}

.hero-nav:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.hero-controls {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-toggle {
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(18, 18, 22, 0.4), rgba(255, 255, 255, 0.04));
  color: #ffffff;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hero-toggle:hover {
  border-color: rgba(201, 168, 76, 0.72);
  color: var(--gold);
}

.hero-dots {
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(18, 18, 22, 0.4), rgba(255, 255, 255, 0.04));
  padding: 0.45rem 0.7rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.hero-dot {
  width: 0.8rem;
  height: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 9999px;
  background: transparent;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-dot:hover,
.hero-dot.is-active {
  transform: scale(1.08);
  border-color: #ffffff;
  background: #ffffff;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #111111;
  color: #ffffff;
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-dark:hover {
  background: var(--gold);
  color: #000000;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #000000;
}

.divider {
  border-top: 1px solid #2a2a2a;
}

.promo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(18, 18, 22, 0.4), rgba(11, 11, 14, 0.4));
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.promo-card img {
  transition: transform 0.75s ease, filter 0.75s ease;
}

.promo-card:hover img {
  transform: scale(1.04);
  filter: brightness(1.04);
}

.promo-left {
  background: linear-gradient(135deg, rgba(36, 33, 32, 0.4), rgba(25, 22, 21, 0.4));
  padding: 2rem;
  position: relative;
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.ex-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.ex-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ex-card:hover img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.badge-yellow {
  background: #f5c800;
  color: #000000;
}

.badge-red {
  background: #8b1a1a;
  color: #ffffff;
}

.badge-dark {
  background: #2a2520;
  color: #ffffff;
}

.info-strip {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(18, 18, 22, 0.4), rgba(11, 11, 14, 0.4));
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.visit-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.visit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.visit-card:hover img {
  filter: brightness(0.92);
  transform: scale(1.03);
}

.visit-card .label {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.84), transparent);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fade-up,
.fade-left,
.fade-right,
.fade-scale {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease;
}

.fade-up {
  transform: translateY(28px);
}

.fade-left {
  transform: translateX(-32px);
}

.fade-right {
  transform: translateX(32px);
}

.fade-scale {
  transform: scale(0.94);
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.fade-scale.visible {
  opacity: 1;
  transform: none;
}

.page-content-card,
.page-related-link {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  backface-visibility: hidden;
  border-color: var(--glass-border);
  background: linear-gradient(135deg, rgba(19, 19, 23, 0.4), rgba(12, 12, 16, 0.4));
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.mpesa-till-card {
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.page-content-card:hover,
.page-related-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

::selection {
  background: rgba(201, 168, 76, 0.3);
  color: #ffffff;
}

@keyframes hero-media-drift {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.1) translate3d(1.2%, -1.2%, 0);
  }
}

@keyframes hero-copy-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-overlay-breathe {
  from {
    opacity: 0.72;
  }
  to {
    opacity: 1;
  }
}

@keyframes ambient-drift {
  from {
    transform: translate3d(0, 0, 0) scale(0.95);
  }
  to {
    transform: translate3d(-10%, -6%, 0) scale(1.08);
  }
}

@media (max-width: 1024px) {
  .hero-box {
    left: 1.5rem;
    bottom: 1.5rem;
    width: min(28rem, calc(100% - 3rem));
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.55rem 0.5rem 0;
  }

  .site-topbar-shell,
  .site-nav-shell {
    max-width: calc(100% - 0.5rem);
  }

  .site-mobile-drawer {
    width: min(22rem, 92vw);
    padding: 1rem 0.95rem 1.25rem;
  }

  .hero-stage {
    height: 55vh;
    min-height: 22rem;
    margin: 0.5rem;
  }

  .hero-box {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    padding: 1.25rem 1.3rem;
  }

  .hero-controls {
    top: 1rem;
    right: 1rem;
    bottom: auto;
    gap: 0.6rem;
  }

  .hero-nav {
    width: 2.45rem;
    height: 2.45rem;
  }

  .hero-nav-prev {
    left: 0.55rem;
  }

  .hero-nav-next {
    right: 0.55rem;
  }

  .hero-render-canvas {
    opacity: 0.74;
  }

  .hero-toggle {
    padding: 0.55rem 0.8rem;
    font-size: 0.68rem;
  }

  .hero-dots {
    padding: 0.35rem 0.55rem;
  }

  .promo-card {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   PAGE-LOAD ENTRANCE ANIMATIONS (non-scroll)
   ============================================= */

@keyframes page-hero-rise {
  from { opacity: 0; transform: translateY(26px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

@keyframes page-section-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

@keyframes float-orb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
  50%       { transform: translate3d(5%, -7%, 0) scale(1.1); opacity: 0.55; }
}

@keyframes shimmer-chip {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes status-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.82); }
}

@keyframes border-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
  50%       { box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18); }
}

.page-enter-hero {
  animation: page-hero-rise 0.92s cubic-bezier(0.22, 1, 0.36, 1) both paused;
}

body.page-ready .page-enter-hero {
  animation-play-state: running;
}

.page-enter-section {
  animation: page-section-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both paused;
}

body.page-ready .page-enter-section {
  animation-play-state: running;
}

/* Floating orb inside page hero panels */
.bwk-page-hero-orb {
  position: absolute;
  top: -30%;
  right: -8%;
  width: 18rem;
  height: 18rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 68%);
  animation: float-orb 16s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* =============================================
   PER-PAGE AMBIENT BACKGROUNDS
   ============================================= */

[data-page="visit"] {
  background:
    radial-gradient(circle at 6% 2%, rgba(102, 194, 229, 0.14) 0%, transparent 36%),
    radial-gradient(circle at 88% 64%, rgba(70, 160, 200, 0.08) 0%, transparent 34%),
    var(--museum-black);
}

[data-page="exhibitions-and-events"] {
  background:
    radial-gradient(circle at 90% 6%, rgba(201, 168, 76, 0.16) 0%, transparent 38%),
    radial-gradient(circle at 12% 72%, rgba(160, 110, 40, 0.1) 0%, transparent 34%),
    var(--museum-black);
}

[data-page="collection"] {
  background:
    radial-gradient(circle at 80% 10%, rgba(180, 120, 80, 0.15) 0%, transparent 38%),
    radial-gradient(circle at 14% 68%, rgba(120, 78, 55, 0.1) 0%, transparent 34%),
    var(--museum-black);
}

[data-page="learn"] {
  background:
    radial-gradient(circle at 10% 4%, rgba(182, 132, 255, 0.15) 0%, transparent 36%),
    radial-gradient(circle at 86% 70%, rgba(140, 90, 220, 0.09) 0%, transparent 34%),
    var(--museum-black);
}

[data-page="support-us"] {
  background:
    radial-gradient(circle at 88% 6%, rgba(197, 122, 58, 0.15) 0%, transparent 38%),
    radial-gradient(circle at 10% 68%, rgba(201, 168, 76, 0.1) 0%, transparent 34%),
    var(--museum-black);
}

/* =============================================
   COLLECTION PAGE STYLES
   ============================================= */

.bwk-collection-layout {
  position: relative;
}

.bwk-collection-featured {
  transition: transform 0.35s ease;
}

.bwk-collection-featured:hover {
  transform: translateY(-3px);
}

.bwk-collection-featured-img {
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.75s ease;
}

.bwk-collection-featured:hover .bwk-collection-featured-img {
  transform: scale(1.04);
  filter: brightness(1.06);
}

.bwk-filter-chip {
  display: inline-block;
  padding: 0.38rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #9ca3af;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  cursor: default;
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
  user-select: none;
}

.bwk-filter-chip.is-active {
  border-color: rgba(201, 168, 76, 0.65);
  background: rgba(201, 168, 76, 0.1);
  color: #c9a84c;
}

.bwk-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.bwk-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #0d0d0d;
  cursor: pointer;
}

.bwk-gallery-item:nth-child(4n+1) {
  grid-row: span 2;
}

.bwk-gallery-media {
  position: relative;
  width: 100%;
  min-height: 260px;
  height: 100%;
}

.bwk-gallery-item:nth-child(4n+1) .bwk-gallery-media {
  min-height: 420px;
}

.bwk-gallery-img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.bwk-gallery-item:nth-child(4n+1) .bwk-gallery-img {
  min-height: 420px;
}

.bwk-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.38) 50%, rgba(0, 0, 0, 0) 78%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
}

.bwk-gallery-item:hover .bwk-gallery-overlay {
  opacity: 1;
}

.bwk-gallery-item:hover .bwk-gallery-img {
  transform: scale(1.06);
  filter: brightness(0.88);
}

.bwk-gallery-item:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.36);
}

.bwk-gallery-info {
  padding: 1.1rem 1.25rem;
}

.bwk-gallery-buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem 1rem;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.98) 0%, rgba(10, 10, 10, 1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bwk-gallery-price {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #f4f4f5;
}

.bwk-gallery-buy-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(37, 211, 102, 0.75);
  border-radius: 9999px;
  background: rgba(37, 211, 102, 0.18);
  color: #d9ffe9;
  padding: 0.38rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bwk-gallery-buy-btn:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.32);
  color: #ffffff;
}

@media (hover: none) {
  .bwk-gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.52) 52%, rgba(0, 0, 0, 0.2) 84%);
  }
}

/* =============================================
   SUPPORT US PAGE STYLES
   ============================================= */

.bwk-support-stats {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.bwk-support-stat-item {
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.25s ease;
}

.bwk-support-stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.bwk-support-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid var(--support-accent, rgba(201, 168, 76, 0.7));
  background: linear-gradient(145deg, rgba(18, 18, 22, 0.52), rgba(12, 12, 16, 0.52));
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(148%);
  -webkit-backdrop-filter: blur(18px) saturate(148%);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.bwk-support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
  border-color: var(--support-accent, rgba(201, 168, 76, 0.5));
}

.bwk-support-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02) 28%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
  opacity: 0.75;
}

.bwk-support-glyph {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.85rem;
  display: block;
  opacity: 0.88;
  animation: float-orb 10s ease-in-out infinite;
}

.bwk-support-step {
  border-left: 2px solid var(--support-accent, rgba(201, 168, 76, 0.45));
  padding-left: 0.9rem;
  list-style: none;
}

.bwk-support-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.62rem 1.2rem;
  border: 1px solid var(--support-accent, rgba(201, 168, 76, 0.6));
  border-radius: 9999px;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: filter 0.25s ease, transform 0.22s ease, box-shadow 0.25s ease;
}

.bwk-support-cta:hover {
  filter: brightness(1.18);
  transform: translateX(3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

/* =============================================
   LEARN PAGE — IMAGE THUMBNAILS IN STUDY SECTION
   ============================================= */

.bwk-learn-study {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.bwk-learn-study:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

/* =============================================
   VISIT PAGE — FLOW STEP SHIMMER ON HOVER
   ============================================= */

.bwk-visit-flow-step {
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.bwk-visit-flow-step:hover {
  background: rgba(122, 207, 237, 0.05);
  padding-left: 1.15rem;
}

/* =============================================
   EXHIBITIONS — STATUS CHIP LIVE DOT
   ============================================= */

.bwk-exhibition-program .text-gold::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  margin-right: 0.45rem;
  background: currentColor;
  animation: status-dot-pulse 2.4s ease infinite;
}

/* =============================================
   CARD HOVER GLOW (all page cards)
   ============================================= */

.bwk-visit-highlight:hover,
.bwk-event-chip:hover,
.bwk-learn-track:hover {
  animation: border-glow-pulse 0s forwards;
  border-color: rgba(201, 168, 76, 0.35) !important;
  transition: border-color 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up,
  .fade-left,
  .fade-right,
  .fade-scale,
  .ex-card img,
  .visit-card img,
  .promo-card img,
  .hero-slide,
  .hero-dot,
  .hero-nav,
  .hero-toggle,
  .btn-dark,
  .btn-outline-gold,
  header,
  .site-footer {
    transition: none;
  }

  .bwk-page-hero::after,
  .collection-gallery-hero::after,
  .hero-slide.is-active .hero-media,
  .hero-slide.is-active .hero-box,
  .hero-slide.is-active .hero-overlay {
    animation: none;
  }

  .fade-up,
  .fade-left,
  .fade-right,
  .fade-scale,
  html.js body.page-preload:not(.page-ready) header,
  html.js body.page-preload:not(.page-ready) .site-footer {
    opacity: 1;
    transform: none;
  }

  .page-enter-hero,
  .page-enter-section {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .bwk-page-hero-orb,
  .bwk-support-glyph,
  .bwk-exhibition-program .text-gold::before {
    animation: none;
  }
}

/* ── About us page ───────────────────────────────────────────────────────── */

.bwk-page-hero-about {
  border-color: rgba(201, 168, 76, 0.28);
  background:
    linear-gradient(135deg, rgba(8, 5, 2, 0.82) 0%, rgba(18, 11, 4, 0.72) 60%, rgba(30, 18, 6, 0.58) 100%),
    url('../images/image.png') center / cover no-repeat;
}

/* Full-viewport hero for About page */
.bwk-about-hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.72) 100%),
    url('../images/image.png') center / cover no-repeat;
}

.bwk-about-hero-inner {
  position: relative;
  width: 100%;
  padding-top: 7rem;
  padding-bottom: 5rem;
  max-width: 1280px;
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .bwk-about-hero-inner {
    padding-bottom: 6rem;
  }
}

.bwk-about-hero-content {
  max-width: 42rem;
  padding-top: 2rem;
}

.bwk-about-hero-cta-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: #000;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.bwk-about-hero-cta-primary:hover {
  background: #e0be68;
  transform: translateY(-2px);
}

.bwk-about-hero-cta-ghost {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 9999px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.bwk-about-hero-cta-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.bwk-about-hero-scroll-hint {
  position: absolute;
  right: 2rem;
  bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.bwk-about-hero-scroll-line {
  display: block;
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4));
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* Layout shell */
.bwk-about-layout {
  background:
    radial-gradient(circle at 6% 0%, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0) 34%),
    radial-gradient(circle at 94% 55%, rgba(180, 100, 60, 0.09), rgba(180, 100, 60, 0) 38%);
}

.bwk-about-content-stack {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .bwk-about-content-stack {
    gap: 3rem;
  }
}

/* Artist story / portrait */
.bwk-about-portrait {
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.52);
}

.bwk-about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.bwk-about-portrait:hover .bwk-about-portrait-img {
  transform: scale(1.04);
}

.bwk-about-portrait-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
}

/* Stats bar */
.bwk-about-stat {
  transition: background 0.2s ease;
}

.bwk-about-stat:hover {
  background: #141414 !important;
}

/* Pillars */
.bwk-about-pillar {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  border-top: 2px solid rgba(201, 168, 76, 0.62);
  background: linear-gradient(135deg, rgba(20, 20, 24, 0.44), rgba(11, 11, 15, 0.44));
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(148%);
  -webkit-backdrop-filter: blur(18px) saturate(148%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bwk-about-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.42);
}

.bwk-about-pillar-glyph {
  font-size: 2rem;
  line-height: 1;
}

/* Gallery grid */
.bwk-about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}

@media (max-width: 767px) {
  .bwk-about-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
}

.bwk-about-gallery-tall {
  grid-row: span 2;
}

.bwk-about-gallery-wide {
  grid-column: span 2;
}

.bwk-about-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #141414;
  cursor: pointer;
}

.bwk-about-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.bwk-about-gallery-item:hover .bwk-about-gallery-img {
  transform: scale(1.07);
  filter: brightness(1.08);
}

.bwk-about-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0) 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.bwk-about-gallery-item:hover .bwk-about-gallery-overlay {
  opacity: 1;
}

/* Collection link */
.bwk-about-collection-link {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 9999px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.bwk-about-collection-link:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

/* Studio CTA */
.bwk-about-studio-cta {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(16, 16, 20, 0.44), rgba(10, 10, 14, 0.44));
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.bwk-about-cta-block {
  border: 0;
  border-radius: 0;
  border-top: 2px solid rgba(201, 168, 76, 0.35);
}

.bwk-about-cta-block + .bwk-about-cta-block {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

@media (max-width: 767px) {
  .bwk-about-cta-block + .bwk-about-cta-block {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
}

.bwk-about-cta-link {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
