
/* =========================
   GLOBAL FONT: TIMES NEW ROMAN
========================= */

html, body {
  font-family: "Times New Roman", Times, serif !important;
}
h1, h2, h3, h4, h5, h6,
p,
a,
button,
input,
textarea {
  font-family: "Times New Roman", Times, serif !important;
}
@font-face {
  font-family: "GoCustom";
  src: url("Go.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --mwa-gold: #f1e146;
  --mwa-blue: #29348f;
  --mwa-red: #ff1f2d;
  --mwa-cream: #fbf6df;
  --mwa-ink: #16204f;
  --mwa-shadow: 0 20px 48px rgba(15, 23, 67, 0.22);
  --header-height: 112px;
  --content-width: 1380px;
  --scroll-offset: 136px;
  --panel-bg: rgba(12, 20, 56, 0.28);
  --panel-border: rgba(255, 255, 255, 0.12);
  --panel-blur: blur(10px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
    font-size: 1.15rem;
  line-height: 1.75;
  color: #ffffff;
  background: url("background.jpg") center center / cover no-repeat fixed !important;}
    padding-top: var(--header-height);
	  overflow-x: hidden;
p {
  font-size: 1.15rem;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select,
a,
p,
span,
li,
label,
h1,
h2,
h3,
h4,
h5,
h6,
.menu-trigger,
.pill-button,
.button-primary,
.button-secondary,
.mobile-menu-button,
.submenu a,
.about-tab,
.contact-submit,
.brand-title,
.brand-tagline {
  font-family: "GoCustom", Georgia, "Times New Roman", serif;
}

body {
  color: #ffffff;
  background: var(--mwa-ink);
  overflow-x: hidden;
  scroll-snap-type: y proximity;
}



a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

img,
video {
  display: block;
  max-width: 100%;
}

#home,
#mission,
#gallery,
#store,
#about,
#students,
#find-us,
#donate,
#contact {
  scroll-margin-top: var(--scroll-offset);
}

/* background video */

.video-layer,
.video-overlay,
.video-fallback {
  position: fixed;
  inset: 0;
}

.video-layer {
  z-index: -3;
  overflow: hidden;
  background: #101842;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.museum-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.48) saturate(0.92);
  transform: scale(1.06);
  will-change: transform;
}

.video-fallback {
  z-index: -2;
  background:
    linear-gradient(rgba(18, 28, 72, 0.5), rgba(18, 28, 72, 0.75)),
    url("https://images.unsplash.com/photo-1501612780327-45045538702b?auto=format&fit=crop&w=1800&q=80")
    center center / cover no-repeat;
}

.video-overlay {
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(241, 225, 70, 0.14), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(255, 31, 45, 0.08), transparent 18%),
    linear-gradient(to bottom, rgba(22, 32, 79, 0.06), rgba(22, 32, 79, 0.28));
}

.video-paused .video-fallback {
  z-index: -1;
}

/* shared layout */

.container {
  width: min(var(--content-width), calc(100% - 36px));
  margin: 0 auto;
}

.hero,
.about-section,
.media-gallery,
.store-section,
.contact-section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  position: relative;
}

.about-section::before,
.media-gallery::before,
.store-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -48px;
  height: 96px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(12, 20, 56, 0),
    rgba(12, 20, 56, 0.10) 38%,
    rgba(12, 20, 56, 0.18) 100%
  );
}

.about-section::after,
.media-gallery::after,
.store-section::after,
.contact-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  width: min(540px, 72%);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(241, 225, 70, 0),
    rgba(241, 225, 70, 0.26),
    rgba(255, 255, 255, 0.10),
    rgba(241, 225, 70, 0.26),
    rgba(241, 225, 70, 0)
  );
}

/* header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: linear-gradient(
    to bottom,
    rgba(251, 246, 223, 0.95),
    rgba(251, 246, 223, 0.86)
  );
  border-bottom: 1px solid rgba(41, 52, 143, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(15, 23, 67, 0.08);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  transition: min-height 0.25s ease, gap 0.25s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  white-space: nowrap;
}

.brand-badge {
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(15, 23, 67, 0.22);
  transform: translateY(22px);
  transition: width 0.25s ease, height 0.25s ease, transform 0.25s ease;
}

.brand-mark {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 50%;
  transition: width 0.25s ease, height 0.25s ease;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  color: var(--mwa-blue);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: font-size 0.25s ease;
}

.brand-tagline {
  margin-top: 6px;
  color: #6b5b1c;
  font-size: 0.95rem;
  font-style: italic;
  white-space: nowrap;
  transition: font-size 0.25s ease;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-wrap: nowrap;
}

.desktop-nav .menu-item {
  flex: 0 0 auto;
}

.menu-item {
  position: relative;
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: 999px;
  color: var(--mwa-blue);
  font-weight: 700;
  white-space: nowrap;
  flex-wrap: nowrap;
  border: 2px solid rgba(41, 52, 143, 0.28);
  background: rgba(255, 255, 255, 0.4);
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    padding 0.25s ease;
}

.menu-trigger.active,
.menu-trigger.is-active,
.menu-item:hover .menu-trigger,
.menu-item:focus-within .menu-trigger,
.menu-item.open .menu-trigger {
  background: rgba(241, 225, 70, 0.65);
  color: var(--mwa-blue);
  border-color: rgba(41, 52, 143, 0.6);
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(41, 52, 143, 0.18),
    0 4px 10px rgba(0, 0, 0, 0.08);
}

.menu-trigger:hover {
  box-shadow:
    inset 0 0 0 1px rgba(41, 52, 143, 0.2),
    0 0 10px rgba(41, 52, 143, 0.12);
}

.menu-icon,
.mobile-toggle-icon,
.mobile-close-icon,
.eyebrow-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.menu-item:hover .menu-icon,
.menu-item.open .menu-icon,
.menu-trigger.is-active .menu-icon {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  min-width: 230px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(251, 246, 223, 0.98);
  border: 1px solid rgba(41, 52, 143, 0.14);
  box-shadow: var(--mwa-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.menu-item:hover .submenu,
.menu-item:focus-within .submenu,
.menu-item.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.submenu-title {
  margin-bottom: 8px;
  padding: 2px 10px 10px;
  color: var(--mwa-red);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-bottom: 1px solid rgba(41, 52, 143, 0.1);
}

.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--mwa-blue);
  font-weight: 700;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: rgba(41, 52, 143, 0.08);
  outline: none;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1e146, #ffe97b);
  color: #16204f;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(241, 225, 70, 0.32);
  animation: donatePulse 2.2s ease-in-out infinite;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    padding 0.25s ease;
  white-space: nowrap;
}

.pill-button:hover,
.pill-button:focus-visible {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 14px 30px rgba(241, 225, 70, 0.42);
  outline: none;
}

@keyframes donatePulse {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(241, 225, 70, 0.28);
  }
  50% {
    box-shadow: 0 14px 34px rgba(241, 225, 70, 0.5);
  }
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(41, 52, 143, 0.08);
}

.site-header.is-shrunk {
  box-shadow: 0 8px 20px rgba(15, 23, 67, 0.12);
}

.site-header.is-shrunk .header-inner {
  min-height: 88px;
  gap: 14px;
}

.site-header.is-shrunk .brand-badge {
  width: 86px;
  height: 86px;
  flex-basis: 86px;
  transform: translateY(10px);
}

.site-header.is-shrunk .brand-mark {
  width: 74px;
  height: 74px;
}

.site-header.is-shrunk .brand-title {
  font-size: 1.32rem;
}

.site-header.is-shrunk .brand-tagline {
  font-size: 0.82rem;
}

.site-header.is-shrunk .menu-trigger {
  padding: 11px 12px;
}

.site-header.is-shrunk .pill-button {
  padding: 12px 20px;
}

/* hero */

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 70px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  align-items: start;
}

.hero-copy,
.hero-callout,
.about-intro-image,
.about-intro-copy,
.about-tabs-shell,
.about-text-shell,
.store-copy,
.store-card,
.contact-form-panel,
.contact-image-panel {
  border-radius: 28px;
  border: 1px solid var(--panel-border);
  background: var(--panel-bg);
  backdrop-filter: var(--panel-blur);
  box-shadow: var(--mwa-shadow);
}

.hero-copy {
  padding: clamp(28px, 4vw, 54px);
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eyebrow-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(241, 225, 70, 0.16);
  color: var(--mwa-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  margin: 18px 0 14px;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 5.25rem);
  max-width: 11ch;
}

.hero h2 {
  font-size: 1.35rem;
  color: var(--mwa-gold);
}

.hero p {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1.06rem;
}

.hero-actions,
.store-actions,
.hero-callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button-primary {
  background: var(--mwa-gold);
  color: var(--mwa-ink);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-primary:hover,
.button-secondary:hover,
.button-primary:focus-visible,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.hero-callout {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.hero-callout-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(241, 225, 70, 0.16);
  color: var(--mwa-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-callout h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.02;
  color: #fff;
}

.hero-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.hero-callout-points {
  display: grid;
  gap: 12px;
}

.hero-callout-point {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-callout-point strong {
  display: block;
  margin-bottom: 4px;
  color: var(--mwa-gold);
}

.hero-callout-point span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}
















.hero-callout-image {
  width: 100%;
  height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 12px;
}

.hero-callout-image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 320px;
}

.hero-callout-image::-webkit-scrollbar {
  width: 8px;
}

.hero-callout-image::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.hero-callout-image::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}










/* about */

.about-section {
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 0 60px;
  color: #fff;
}

.about-row + .about-row {
  margin-top: 22px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.about-intro-image {
  overflow: hidden;
  min-height: 420px;
}

.about-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-copy {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-eyebrow,
.store-eyebrow,
.contact-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(241, 225, 70, 0.16);
  color: var(--mwa-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-intro-copy h2,
.store-copy h2,
.contact-form-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  color: #fff;
}

.about-intro-copy p,
.store-copy p,
.contact-intro {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.about-intro-copy p:last-child,
.store-copy p:last-of-type {
  margin-bottom: 0;
}

.about-tabs-shell {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.about-tabs-shell::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 225, 70, 0.14), transparent 68%);
  pointer-events: none;
  animation: aboutGlowPulse 6s ease-in-out infinite;
}

@keyframes aboutGlowPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

.about-tabs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  z-index: 1;
}

.about-tab {
  position: relative;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.about-tab::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--mwa-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
  opacity: 0.95;
}

.about-tab:hover,
.about-tab:focus-visible {
  background: rgba(241, 225, 70, 0.16);
  border-color: rgba(241, 225, 70, 0.38);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
  outline: none;
}

.about-tab:hover::after,
.about-tab:focus-visible::after,
.about-tab.is-active::after {
  transform: scaleX(1);
}

.about-tab.is-active {
  background: rgba(241, 225, 70, 0.92);
  color: var(--mwa-ink);
  border-color: rgba(241, 225, 70, 1);
  box-shadow: 0 12px 24px rgba(241, 225, 70, 0.16);
}

.about-tab-panels {
  position: relative;
  z-index: 1;
}

.about-tab-panel {
  display: none;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
  opacity: 0;
  transform: translateY(14px);
}

.about-tab-panel.is-active {
  display: grid;
  animation: aboutPanelIn 0.34s ease forwards;
}

@keyframes aboutPanelIn {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-tab-media {
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.about-tab-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: aboutImageDrift 8s ease-in-out infinite alternate;
}

@keyframes aboutImageDrift {
  0% {
    transform: scale(1.02) translateY(0);
  }
  100% {
    transform: scale(1.07) translateY(-8px);
  }
}

.about-tab-copy {
  padding: 24px 10px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-tab-copy h3,
.about-text-shell h3,
.store-card-body h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--mwa-gold);
}

.about-tab-copy p,
.about-text-shell p,
.store-card-body p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.about-tab-copy p:last-child {
  margin-bottom: 0;
}

.about-text-shell {
  padding: 30px 32px;
  text-align: center;
}

.about-text-shell p {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: 1rem;
}

/* gallery */

.media-gallery {
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto;
  padding: 32px 0 56px;
  color: #fff;
}

.gallery-heading {
  margin-bottom: 16px;
  padding: 24px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(
    to bottom,
    rgba(8, 12, 32, 0.26),
    rgba(8, 12, 32, 0.42)
  );
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 48px rgba(15, 23, 67, 0.18);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-heading.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

.gallery-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--mwa-gold);
}

.gallery-heading p {
  margin: 0 auto;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.gallery-thumb-panel {
  position: relative;
  height: min(70vh, 720px);
  overflow: hidden;
}

.gallery-thumb-panel::before,
.gallery-thumb-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 6px;
  height: 32px;
  pointer-events: none;
  z-index: 3;
}

.gallery-thumb-panel::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 44, 0.92),
    rgba(10, 15, 44, 0)
  );
}

.gallery-thumb-panel::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 44, 0.92),
    rgba(10, 15, 44, 0)
  );
}

.gallery-thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, 100px);
  grid-auto-rows: 100px;
  gap: 10px;
  align-content: start;
  justify-content: start;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(241, 225, 70, 0.55) rgba(255, 255, 255, 0.08);
}

.gallery-thumb-grid::-webkit-scrollbar {
  width: 8px;
}

.gallery-thumb-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.gallery-thumb-grid::-webkit-scrollbar-thumb {
  background: rgba(241, 225, 70, 0.55);
  border-radius: 999px;
}

.gallery-main-panel {
  min-width: 0;
}

.gallery-stage-wrap {
  width: 100%;
}

.gallery-stage {
  position: relative;
  width: 100%;
  height: min(70vh, 720px);
  border-radius: 24px;
  overflow: hidden;
  background: #0a0f2c;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-image-button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  z-index: 2;
}

.gallery-image-button::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    rgba(10, 15, 44, 0.78)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f1e146' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='m21 21-4.35-4.35'/><path d='M11 8v6'/><path d='M8 11h6'/></svg>")
    center center / 22px 22px no-repeat;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  opacity: 0.92;
}

.stage-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  background: rgba(8, 12, 32, 0.94);
}

.stage-media.is-active {
  opacity: 1;
  pointer-events: auto;
}

.zoomable-media {
  cursor: zoom-in;
}

#stageVideo {
  background: #000;
  z-index: 1;
}

.gallery-meta {
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-meta.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

.gallery-meta h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--mwa-gold);
}

.gallery-meta p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.thumb {
  position: relative;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 14px;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  display: block;
  cursor: pointer;
  outline: none;
}

.thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.thumb::before {
  content: none !important;
}

.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12);
  transition: box-shadow 0.25s ease;
}

.thumb:hover::after,
.thumb:focus-visible::after {
  box-shadow:
    inset 0 0 0 2px rgba(241, 225, 70, 0.75),
    0 0 14px rgba(241, 225, 70, 0.28),
    0 10px 20px rgba(0, 0, 0, 0.25);
}

.thumb.is-active::after {
  box-shadow:
    inset 0 0 0 3px rgba(241, 225, 70, 1),
    0 0 18px rgba(241, 225, 70, 0.35),
    0 12px 24px rgba(0, 0, 0, 0.28);
}

.thumb *:not(img),
.thumb-preview {
  display: none !important;
}

.gallery-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}

.gallery-zoom-modal.is-open {
  display: block;
}

.gallery-zoom-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 12, 32, 0.88);
}

.gallery-zoom-dialog {
  position: absolute;
  inset: 4vh 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.gallery-zoom-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  background: rgba(8, 12, 32, 0.96);
}

.gallery-zoom-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  z-index: 2;
}

/* store */

.store-section {
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 0 60px;
  color: #fff;
}

.store-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.store-copy {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.store-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.store-card {
  overflow: hidden;
}

.store-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.store-card-body {
  padding: 18px 18px 20px;
}

.store-card-body h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.store-card-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

/* contact */

.contact-section {
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 0 60px;
  color: #fff;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.contact-form-panel {
  padding: 32px;
}

.contact-image-panel {
  overflow: hidden;
  min-height: 520px;
}

.contact-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--mwa-gold);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 14px 16px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(241, 225, 70, 0.7);
  box-shadow: 0 0 0 3px rgba(241, 225, 70, 0.12);
  background: rgba(255, 255, 255, 0.11);
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-start;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1e146, #ffe97b);
  color: #16204f;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(241, 225, 70, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(241, 225, 70, 0.4);
  outline: none;
}

/* footer */

.site-footer {
  background: linear-gradient(to top, rgba(12, 20, 56, 0.92), rgba(12, 20, 56, 0.82));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  gap: 24px;
  padding: 34px 0;
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand {
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}

.footer-logo {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-block h3,
.footer-block h4 {
  margin: 0;
  color: var(--mwa-gold);
}

.footer-block p,
.footer-block a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.footer-block a:hover,
.footer-block a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--mwa-gold);
  outline: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* mobile panel */

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.mobile-panel.active {
  display: block;
}

.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 34, 0.56);
}

.mobile-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(92vw, 420px);
  height: 100%;
  padding: 22px 18px 28px;
  overflow-y: auto;
  background: linear-gradient(
    to bottom,
    rgba(251, 246, 223, 0.99),
    rgba(255, 250, 234, 0.98)
  );
  color: var(--mwa-blue);
  box-shadow: -18px 0 48px rgba(15, 23, 67, 0.22);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.mobile-panel.active .mobile-drawer {
  transform: translateX(0);
}

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mobile-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(41, 52, 143, 0.08);
}

.mobile-menu-item {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(41, 52, 143, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

.mobile-menu-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  color: var(--mwa-blue);
  font-weight: 700;
  white-space: nowrap;
}

.mobile-submenu {
  display: none;
  padding: 0 12px 12px;
}

.mobile-menu-item.open .mobile-submenu {
  display: block;
}

.mobile-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--mwa-blue);
  font-weight: 700;
}

.mobile-submenu a:hover,
.mobile-submenu a:focus-visible {
  background: rgba(41, 52, 143, 0.08);
  outline: none;
}

.donate-mobile-item {
  background: transparent;
  border: 0;
}

.donate-mobile-item .pill-button {
  width: 100%;
}

/* reveal */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* responsive */

@media (max-width: 1220px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .store-shell {
    grid-template-columns: 1fr;
  }

  .store-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .about-intro,
  .about-tab-panel,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .about-intro-image {
    min-height: 320px;
  }

  .about-tab-media {
    min-height: 260px;
  }

  .about-tab-copy {
    padding: 4px 0 0;
  }

  .contact-image-panel {
    min-height: 320px;
    order: 2;
  }

  .contact-form-panel {
    order: 1;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-thumb-panel {
    height: auto;
    overflow: visible;
  }

  .gallery-thumb-panel::before,
  .gallery-thumb-panel::after {
    display: none;
  }

  .gallery-thumb-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100px;
    grid-template-columns: unset;
    grid-template-rows: repeat(2, 100px);
    gap: 10px;
    height: auto;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 0;
    padding-bottom: 6px;
  }

  .gallery-thumb-grid::-webkit-scrollbar {
    width: auto;
    height: 8px;
  }
}

@media (max-width: 860px) {
  :root {
    --scroll-offset: 108px;
  }


  .container,
  .about-section,
  .media-gallery,
  .store-section,
  .contact-section {
    width: min(calc(100% - 20px), var(--content-width));
  }

  .header-inner {
    min-height: 92px;
    gap: 12px;
  }

  .brand {
    gap: 12px;
  }

  .brand-badge {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
    transform: translateY(12px);
  }

  .brand-mark {
    width: 70px;
    height: 70px;
  }

  .brand-title {
    font-size: 1.1rem;
  }

  .brand-tagline {
    font-size: 0.8rem;
  }

  .site-header.is-shrunk .header-inner {
    min-height: 78px;
  }

  .site-header.is-shrunk .brand-badge {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
    transform: translateY(6px);
  }

  .site-header.is-shrunk .brand-mark {
    width: 62px;
    height: 62px;
  }

  .site-header.is-shrunk .brand-title {
    font-size: 1rem;
  }

  .site-header.is-shrunk .brand-tagline {
    font-size: 0.74rem;
  }

  .hero {
    padding: 42px 0 30px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .hero-actions,
  .hero-callout-actions,
  .store-actions {
    flex-direction: column;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .store-cards {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    flex-direction: row;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .about-section,
  .store-section,
  .contact-section {
    padding: 24px 0 40px;
  }

  .about-intro-copy,
  .about-tabs-shell,
  .about-text-shell,
  .store-copy,
  .contact-form-panel {
    padding: 22px 18px;
  }

  .about-intro-image,
  .about-intro-copy,
  .about-tabs-shell,
  .about-text-shell,
  .store-copy,
  .store-card,
  .contact-form-panel,
  .contact-image-panel {
    border-radius: 22px;
  }

  .about-tabs {
    gap: 8px;
  }

  .about-tab {
    width: 100%;
    justify-content: center;
  }

  .about-tabs-shell::before {
    width: 160px;
    height: 160px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .store-card img {
    height: 220px;
  }

  .contact-section::before,
  .store-section::before,
  .media-gallery::before,
  .about-section::before {
    top: -34px;
    height: 68px;
  }
}

@media (max-width: 580px) {
  .brand-title,
  .brand-tagline {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-badge {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
    transform: translateY(8px);
  }

  .brand-mark {
    width: 64px;
    height: 64px;
  }

  .hero-copy,
  .hero-callout {
    border-radius: 24px;
  }

  .hero-callout {
    padding: 22px 18px;
  }

  .gallery-stage {
    height: 55vh;
  }

  .gallery-image-button::after {
    width: 40px;
    height: 40px;
    right: 14px;
    bottom: 14px;
    background-size: 18px 18px;
  }

  .gallery-zoom-dialog {
    inset: 2vh 2vw;
    padding: 16px;
  }

  .hero-callout-actions .button-primary,
  .hero-callout-actions .button-secondary {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }

  .museum-video,
  .video-layer,
  .about-tab-media img,
  .reveal,
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3 {
    transform: none !important;
  }

  .reveal,
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3 {
    opacity: 1 !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.event-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 12, 32, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.event-popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.event-popup-shell {
  position: relative;
  width: min(920px, 100%);
  max-height: 92vh;
  z-index: 100000;
  opacity: 0;
  transform: translateY(-18px) scaleY(0.08) scaleX(0.96);
  transform-origin: top center;
  filter: blur(2px);
  transition: none;
}

.event-popup-overlay.is-open .event-popup-shell {
  animation: popupUnroll 0.68s cubic-bezier(0.22, 0.9, 0.2, 1) forwards;
}

@keyframes popupUnroll {
  0% {
    opacity: 0;
    transform: translateY(-18px) scaleY(0.08) scaleX(0.96);
    filter: blur(2px);
  }
  35% {
    opacity: 1;
    transform: translateY(-6px) scaleY(0.45) scaleX(0.985);
    filter: blur(1px);
  }
  65% {
    opacity: 1;
    transform: translateY(0) scaleY(1.03) scaleX(1);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1) scaleX(1);
    filter: blur(0);
  }
}

.event-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(32, 39, 77, 0.92);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.event-scroll-wrap {
  position: relative;
  width: 100%;
  max-height: 92vh;
  filter: drop-shadow(0 26px 54px rgba(0, 0, 0, 0.34));
}

.event-scroll-top,
.event-scroll-bottom {
  height: 44px;
  background:
    radial-gradient(circle at center, rgba(255, 233, 176, 0.95), rgba(226, 188, 103, 0.98) 60%, rgba(171, 123, 53, 0.98));
  border-left: 3px solid rgba(139, 91, 35, 0.8);
  border-right: 3px solid rgba(139, 91, 35, 0.8);
}

.event-scroll-top {
  border-radius: 24px 24px 10px 10px;
  position: relative;
}

.event-scroll-top::before,
.event-scroll-top::after,
.event-scroll-bottom::before,
.event-scroll-bottom::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 234, 171, 0.95), rgba(182, 130, 60, 1));
  transform: translateY(-50%);
}

.event-scroll-top::before,
.event-scroll-bottom::before {
  left: -10px;
}

.event-scroll-top::after,
.event-scroll-bottom::after {
  right: -10px;
}

.event-scroll-body {
  overflow-y: auto;
  max-height: calc(92vh - 88px);
  padding: 26px 28px 30px;
  background: linear-gradient(to bottom, rgba(253, 244, 220, 0.98), rgba(248, 233, 199, 0.98));
  border-left: 3px solid rgba(139, 91, 35, 0.8);
  border-right: 3px solid rgba(139, 91, 35, 0.8);
}

.event-scroll-bottom {
  border-radius: 10px 10px 24px 24px;
  position: relative;
}

.event-poster-frame {
  width: 100%;
  margin: 0 auto 24px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 0 0 1px rgba(122, 84, 30, 0.12),
    0 12px 30px rgba(87, 60, 17, 0.14);
}

.event-poster-image {
  display: block;
  width: 100%;
  height: auto;
}

.event-form-panel {
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 248, 236, 0.7);
  box-shadow: inset 0 0 0 1px rgba(122, 84, 30, 0.12);
}

.event-form-panel h3 {
  margin: 0 0 8px;
  color: #2d3478;
}

.event-form-panel p {
  margin: 0 0 16px;
  color: #4d4370;
}

.event-form {
  display: grid;
  gap: 14px;
}

.event-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.event-field {
  display: grid;
  gap: 6px;
}

.event-field label {
  color: #2d3478;
  font-weight: 700;
}

.event-field input {
  width: 100%;
  border: 1px solid rgba(45, 52, 120, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: #2c2750;
  background: rgba(255, 255, 255, 0.88);
  outline: none;
}

.event-form-actions {
  display: flex;
  justify-content: flex-end;
}

.event-submit {
  min-width: 140px;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1e146, #ffe97b);
  color: #16204f;
  font-weight: 800;
  font: inherit;
  cursor: pointer;
}

body.popup-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .event-popup-overlay {
    padding: 12px;
  }

  .event-scroll-body {
    padding: 18px 16px 22px;
  }

  .event-form-grid {
    grid-template-columns: 1fr;
  }

  .event-popup-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }
}

.artlab-heading {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem) !important;
  line-height: 1.05;
}





.about-tab-panel-full {
  grid-template-columns: 1fr !important;
}

.about-tab-copy-full {
  width: 100%;
  padding: 8px 0 0;
}






.about-full-text {
  grid-column: 1 / -1 !important;
  width: 100%;
}

.about-full-text-inner {
  width: 100%;
  max-width: 100%;
  padding: 12px 0;
}

.about-full-text-inner p {
  margin: 0 0 16px;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #ffffff;
}









.about-featured-bio {
  grid-column: 1 / -1;
  width: 100%;
}

.about-featured-bio-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
  padding: 28px 32px;
  border-radius: 28px;
  border: 1px solid var(--panel-border);
  background: var(--panel-bg);
  backdrop-filter: var(--panel-blur);
  box-shadow: var(--mwa-shadow);
}

.about-featured-bio-media {
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.about-featured-bio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-featured-bio-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-featured-bio-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(241, 225, 70, 0.16);
  color: var(--mwa-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-featured-bio-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
}

.about-featured-bio-divider {
  width: 120px;
  height: 2px;
  margin: 0 0 18px;
  background: linear-gradient(
    90deg,
    rgba(241, 225, 70, 1),
    rgba(241, 225, 70, 0.15)
  );
}

.about-featured-bio-quote {
  margin: 0 0 20px;
  padding: 18px 20px;
  border-left: 4px solid var(--mwa-gold);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  color: var(--mwa-gold);
  font-size: 1.08rem;
  line-height: 1.6;
}

.about-featured-bio-copy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.about-featured-bio-copy p:last-child {
  margin-bottom: 0;
}

.about-tab-panel-full {
  grid-template-columns: 1fr !important;
}

.about-tab-copy-full {
  width: 100%;
  padding: 8px 0 0;
}

@media (max-width: 980px) {
  .about-featured-bio-inner {
    grid-template-columns: 1fr;
  }

  .about-featured-bio-media {
    min-height: 320px;
  }
}








.about-section-header {
  grid-column: 1 / -1;
  width: 100%;
  text-align: center;
}

.about-section-header-inner {
  max-width: 720px;
  margin: 0 auto 12px;
}

.about-section-header h2 {
  margin: 6px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
}

.about-section-divider {
  width: 120px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    rgba(241, 225, 70, 1),
    rgba(241, 225, 70, 0.15)
  );
}




body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 40, 0.55);
  z-index: 0;
  pointer-events: none;
}
.site-header,
main,
footer,
.mobile-panel {
  position: relative;
  z-index: 1;
}








/* Ensure header sits above all content */
.site-header {
  position: relative;
  z-index: 1000;
}

/* Ensure dropdown sits above header AND content */
.submenu {
  position: absolute;
  z-index: 2000;
}








/* =========================
   MISSION SECTION
========================= */

.mission-section {
  position: relative;
  padding: 80px 0;
}

.mission-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.mission-header {
  text-align: center;
  margin-bottom: 40px;
}

.mission-header h2 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin: 0 0 12px;
  color: #ffffff;
}

.mission-divider {
  width: 120px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    rgba(241, 225, 70, 1),
    rgba(241, 225, 70, 0.2)
  );
}

.mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch; /*KEY FIX */
}

/* IMAGE CELL */
.mission-image {
  border-radius: 20px;
  overflow: hidden;
  height: 300px;          /* ?ensures full height */
}

/* IMAGE */
.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /*fills entire cell */
  display: block;
}

/* TEXT */
.mission-copy {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
    align-items: center;   /* ?? centers vertically */
  height: 100%;          /* ?? matches image column */
}

/* MOBILE */
@media (max-width: 900px) {
  .mission-row {
    grid-template-columns: 1fr;
  }

  .mission-image {
    height: 300px;
  }
}












.mission-image {
  border-radius: 20px;
  overflow: hidden;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.mission-image:hover img {
  transform: scale(1.04);
}









.mission-copy {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.mission-section.is-visible .mission-copy,
.mission-section.reveal.is-visible .mission-copy {
  opacity: 1;
  transform: translateY(0);
}







/* =========================
   FIX STICKY MENU ONLY
========================= */

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
}

/* Prevent content from hiding under header */
body {
  padding-top: 112px; /* match your header height */
}








/* =========================
   DONATE BUTTON ENHANCEMENT
========================= */

.pill-button {
  background: linear-gradient(135deg, #f1e146, #ffd700);
  color: #000;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 20px;
  position: relative;
  box-shadow: 0 0 0 rgba(241, 225, 70, 0.6);
  transition: all 0.3s ease;
}

/* Subtle glow pulse */
.pill-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(241, 225, 70, 0.6);
  opacity: 0.6;
  animation: donatePulse 2.5s infinite ease-in-out;
}

/* Hover effect */
.pill-button:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Stronger glow on hover */
.pill-button:hover::after {
  opacity: 1;
  box-shadow: 0 0 28px rgba(241, 225, 70, 0.9);
}

/* Pulse animation */
@keyframes donatePulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}













/* =========================
   DONATE BUTTON SHIMMER
========================= */

.pill-button {
  overflow: hidden; /* required for shimmer */
}

/* Shimmer layer */
.pill-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  opacity: 0.7;
}

/* Animate shimmer sweep */
.pill-button:hover::before {
  animation: shimmerSweep 0.9s ease forwards;
}

/* Optional auto shimmer every few seconds */
.pill-button::before {
  animation: shimmerIdle 6s infinite;
}

/* Hover sweep */
@keyframes shimmerSweep {
  0% {
    left: -120%;
  }
  100% {
    left: 140%;
  }
}

/* Subtle idle shimmer */
@keyframes shimmerIdle {
  0% {
    left: -120%;
    opacity: 0;
  }
  40% {
    opacity: 0.4;
  }
  100% {
    left: 140%;
    opacity: 0;
  }
}










/* =========================
   ART LAB PAGE
========================= */

.artlab-hero {
  position: relative;
  padding: 80px 0 48px;
  z-index: 1;
}

.artlab-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch; /* KEY CHANGE */
}

.artlab-hero-copy,
.artlab-hero-media,
.artlab-intro-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 20, 56, 0.34);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 48px rgba(15, 23, 67, 0.22);
}

.artlab-hero-copy {
  padding: clamp(28px, 4vw, 54px);
}

.artlab-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(241, 225, 70, 0.16);
  color: var(--mwa-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artlab-hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  color: #fff;
}

.artlab-hero-copy p {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  font-size: 1.12rem;
}

.artlab-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.artlab-hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.artlab-hero-media a {
  display: block;
  width: 100%;
  max-width: 420px;
}

.artlab-hero-media {
  height: 100%;
  display: flex;
}

.artlab-hero-media a {
  width: 100%;
  height: 100%;
  display: block;
}

.artlab-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* KEY CHANGE */
  display: block;
}

/* Hover lift effect */
.artlab-hero-media:hover img {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(241, 225, 70, 0.25);
}

.artlab-hero-media img {
  width: 50%;
  height: auto;
  min-height: unset;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}}

.artlab-hero-media:hover img {
  transform: scale(1.03);
}

.artlab-intro {
  position: relative;
  padding: 0 0 72px;
  z-index: 1;
}

.artlab-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.artlab-intro-card {
  padding: 28px 24px;
}

.artlab-intro-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--mwa-gold);
}

.artlab-intro-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

@media (max-width: 980px) {
  .artlab-hero-inner,
  .artlab-intro-grid {
    grid-template-columns: 1fr;
  }

  .artlab-hero-media img {
    min-height: 360px;
  }
}



.artlab-hero-copy,
.artlab-hero-media {
  height: 100%;
}



.artlab-hero-media {
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.artlab-hero-media a {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 420px;
}

.artlab-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps poster proportions */
}









.event-scroll-top,
.event-scroll-bottom {
  transform-origin: center center;
}

.event-popup-overlay.is-open .event-scroll-top {
  animation: scrollCapTop 0.62s ease forwards;
}

.event-popup-overlay.is-open .event-scroll-bottom {
  animation: scrollCapBottom 0.62s ease forwards;
}

@keyframes scrollCapTop {
  0% {
    transform: translateY(-10px) scaleX(0.92);
  }
  100% {
    transform: translateY(0) scaleX(1);
  }
}

@keyframes scrollCapBottom {
  0% {
    transform: translateY(10px) scaleX(0.92);
  }
  100% {
    transform: translateY(0) scaleX(1);
  }
}







.event-poster-frame,
.event-form-panel {
  opacity: 0;
  transform: translateY(18px);
}

.event-popup-overlay.is-open .event-poster-frame {
  animation: popupContentRise 0.45s ease 0.22s forwards;
}

.event-popup-overlay.is-open .event-form-panel {
  animation: popupContentRise 0.45s ease 0.3s forwards;
}

@keyframes popupContentRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}








@media (prefers-reduced-motion: reduce) {
  .event-popup-overlay.is-open .event-popup-shell,
  .event-popup-overlay.is-open .event-scroll-top,
  .event-popup-overlay.is-open .event-scroll-bottom,
  .event-popup-overlay.is-open .event-poster-frame,
  .event-popup-overlay.is-open .event-form-panel {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}




.about-image-small {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}






/* =========================
   ART LAB CAPSULE SECTION
========================= */

.artlab-info-section {
  padding: 32px 0 72px;
}

.artlab-info-capsule {
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 20, 56, 0.34);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 48px rgba(15, 23, 67, 0.22);
  overflow: hidden;
}

/* ROWS */
.artlab-info-row {
  padding: 28px 32px;
}

/* Divider between rows */
.artlab-info-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* TOP ROW (2 columns) */
.artlab-info-row-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

/* TEXT */
.artlab-info-text h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.artlab-info-text p,
.artlab-info-row-full p {
  margin: 0;
  line-height: 1.7;
  font-size: 1.08rem;
}

/* IMAGE */
.artlab-info-image {
  border-radius: 18px;
  overflow: hidden;
}

.artlab-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FULL ROW TEXT */
.artlab-info-row-full h3 {
  margin: 0 0 8px;
  color: var(--mwa-gold);
}

/* MOBILE */
@media (max-width: 980px) {
  .artlab-info-row-top {
    grid-template-columns: 1fr;
  }
}





.artlab-info-row-merged {
  display: block;
}

/* spacing between sections */
.artlab-info-row-merged h3 {
  margin: 18px 0 6px;
  color: var(--mwa-gold);
}

.artlab-info-row-merged p {
  margin: 0 0 14px;
  line-height: 1.7;
  font-size: 1.08rem;
}



/* =========================
   ART LAB PAGE HEADER
========================= */

.artlab-page-header {
  position: relative;
  padding: 80px 0 36px;
  z-index: 1;
}

.artlab-page-header-inner {
  width: 100%;
  max-width: none !important;
  margin: 0 auto;
  padding: 32px;
  text-align: center;

  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 20, 56, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 48px rgba(15, 23, 67, 0.22);
}

.artlab-page-header-inner h1 {
  margin: 14px 0 12px;
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-size: clamp(2.4rem, 5vw, 5.25rem);
  color: #fff;
}

.artlab-page-header-inner p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  font-size: 1.08rem;
}


/* =========================
   ART LAB STORY SECTION
========================= */

.artlab-story-section {
  position: relative;
  padding: 0 0 72px;
  z-index: 1;
}

.artlab-info-capsule {
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 20, 56, 0.34);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 48px rgba(15, 23, 67, 0.22);
  overflow: hidden;
}

.artlab-info-row {
  padding: 28px 32px;
}

.artlab-info-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.artlab-info-row-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.artlab-info-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.artlab-info-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(241, 225, 70, 0.16);
  color: var(--mwa-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artlab-info-text h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  color: #fff;
}

.artlab-info-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  font-size: 1.08rem;
}

.artlab-info-image {
  overflow: hidden;
  min-height: 420px;
  border-radius: 22px;
}

.artlab-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.artlab-info-image:hover img {
  transform: scale(1.03);
}

/* Story flow */
.artlab-story-flow {
  display: grid;
  gap: 0;
}

.artlab-story-block {
  padding: 26px 32px;
  position: relative;
}

.artlab-story-block:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.artlab-story-block h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--mwa-gold);
}

.artlab-story-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  font-size: 1.08rem;
}

/* Slight visual rhythm */
.artlab-story-block:nth-child(odd) {
  background: rgba(255, 255, 255, 0.025);
}

.artlab-story-block:nth-child(even) {
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 980px) {
  .artlab-info-row-top {
    grid-template-columns: 1fr;
  }

  .artlab-info-image {
    min-height: 320px;
  }
}






/* =========================
   ART LAB FORM SHELL
========================= */

.artlab-form-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.artlab-form-inner {
  width: 100%;
  padding: 28px;
  border-radius: 22px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 20, 56, 0.34);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 48px rgba(15, 23, 67, 0.22);
}

.artlab-form-inner h3 {
  margin: 0 0 18px;
  color: var(--mwa-gold);
}

/* FORM ELEMENTS */

.artlab-form-row {
  margin-bottom: 14px;
}

.artlab-form input,
.artlab-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1rem;
}

.artlab-form textarea {
  min-height: 100px;
  resize: vertical;
}

.artlab-form input::placeholder,
.artlab-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}




.artlab-info-row {
  border-bottom: none !important;
}



.artlab-story-block p {
  margin: 0 0 16px;
  line-height: 1.8;
}

.artlab-story-block p:last-child {
  margin-bottom: 0;
}

.artlab-story-block strong {
  color: var(--mwa-gold);
  display: inline-block;
  margin-right: 4px;
}





.artlab-form-inner iframe {
  width: 100% !important;
  border-radius: 12px;
  margin-top: 10px;
}








/* =========================
   ART LAB EVENTS SECTION
========================= */

.artlab-events-section {
  position: relative;
  padding: 72px 0;
  z-index: 1;
}

.artlab-events-header {
  text-align: center;
  margin-bottom: 40px;
}

.artlab-events-header h2 {
  margin: 12px 0 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #fff;
}

/* GRID */

.artlab-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* EVENT CARD */

.artlab-event-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;

  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(12, 20, 56, 0.34);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 48px rgba(15, 23, 67, 0.22);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artlab-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.4);
}

/* DATE */

.artlab-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-width: 60px;
  border-radius: 14px;

  background: var(--mwa-gold);
  color: #000;
  font-weight: bold;
}

.event-month {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.event-day {
  font-size: 1.6rem;
}

/* CONTENT */

.artlab-event-content h3 {
  margin: 0 0 8px;
  color: #fff;
}

.artlab-event-content p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* MOBILE */

@media (max-width: 980px) {
  .artlab-events-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   GLOBAL PANEL TRANSPARENCY (75%)
========================= */

/* Core panel elements across site */
.about-featured-bio-inner,
.about-tabs-shell,
.about-text-shell,
.mission-inner,
.artlab-info-capsule,
.artlab-event-card,
.artlab-form-inner,
.artlab-hero-copy,
.artlab-hero-media,
.artlab-info-text,
.artlab-story-block,
.artlab-page-header-inner,
.artlab-info-row,
.artlab-info-row-top,
.artlab-info-row-full,
.about-intro-copy {
  background: rgba(12, 20, 56, 0.75) !important;
}
}

/* =========================
   FORCE ART LAB PANELS TO 75%
========================= */

.artlab-info-capsule,
.artlab-info-row,
.artlab-info-row-top,
.artlab-info-row-full,
.artlab-info-text,
.artlab-story-block,
.artlab-form-inner,
.artlab-hero-copy,
.artlab-page-header-inner {
  background: rgba(12, 20, 56, 0.75) !important;
}

/* =========================
   FORCE ART LAB SECTION TRANSPARENCY MATCH
========================= */

.artlab-info-capsule,
.artlab-info-row,
.artlab-info-row-top,
.artlab-info-text,
.artlab-form-inner,
.artlab-story-block,
.artlab-page-header-inner,
.artlab-hero-copy {
  background: rgba(12, 20, 56, 0.75) !important;
}



/* MATCH OTHER PANELS */
.mission-inner {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 20, 56, 0.34);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 48px rgba(15, 23, 67, 0.22);

  padding: 32px; /* ?? gives that inner spacing like other sections */
}


.artlab-page-header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 20, 56, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 48px rgba(15, 23, 67, 0.22);
  text-align: center;
}







.artlab-page-header {
  position: relative;
  padding: 80px 0 36px;
  z-index: 1;
}

.artlab-page-header-inner {
  width: 100%;
  padding: 32px;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 20, 56, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 48px rgba(15, 23, 67, 0.22);
}


/* FORCE SAME STARTING HEADER SIZE ON ALL PAGES */


.site-header.is-shrunk .header-inner {
  min-height: 88px;
  height: 88px;
}

.site-header.is-shrunk .brand-badge {
  width: 86px;
  height: 86px;
  flex-basis: 86px;
  transform: translateY(10px);
}

.site-header.is-shrunk .brand-mark {
  width: 74px;
  height: 74px;
}


/* Make Art Lab section widths match index.html */
.artlab-page-header,
.artlab-hero,
.artlab-story-section,
.artlab-events-section {
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto;
}

/* Let the inner container fill the section instead of re-sizing it */
.artlab-page-header .container,
.artlab-hero .container,
.artlab-story-section .container,
.artlab-events-section .container {
  width: 100%;
  margin: 0;
}

/* Match the mobile width behavior used by index.html */
@media (max-width: 860px) {
  .artlab-page-header,
  .artlab-hero,
  .artlab-story-section,
  .artlab-events-section {
    width: min(calc(100% - 20px), var(--content-width));
  }
}












/* Make the visible Art Lab panels match index page width */
.artlab-page-header-inner,
.artlab-hero-inner,
.artlab-info-capsule,
.artlab-events-section > .container {
  width: min(1380px, calc(100% - 36px)) !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Remove extra inner padding constraints that keep Art Lab looking narrower */
.artlab-page-header > .container,
.artlab-story-section > .container,
.artlab-events-section > .container {
  width: 100% !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 860px) {
  .artlab-page-header-inner,
  .artlab-hero-inner,
  .artlab-info-capsule,
  .artlab-events-section > .container {
    width: min(calc(100% - 20px), 1380px) !important;
  }
}






/* Make map fill full contact panel */
.contact-image-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Ensure parent allows full height */
.contact-image-panel {
  height: 100%;
  overflow: hidden;
  border-radius: 28px; /* matches your panels */
}




/* Remove frame styling */
.hero-callout-image,
.artlab-hero-media {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border: none !important;
}

/* Make image larger and clean */
.artlab-hero-media img {
  width: 100%;
  max-width: 500px; /* increase as needed (600–700 if you want bigger) */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px; /* optional: keep slight rounding */
}
.artlab-hero-media img {
  max-width: 650px;
}




/* REMOVE FRAME COMPLETELY */
.hero-callout-image {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
}

/* Also clean inner wrapper just in case */
.artlab-hero-media {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border: none !important;
}

/* Make image larger */
.artlab-hero-media img {
  width: 100%;
  max-width: 650px;
  height: auto;
  display: block;
  margin: 0 auto;
}




/* Remove hover frame/glow from Art Lab image in index hero */
.hero-callout-image,
.artlab-hero-media,
.artlab-hero-media a,
.artlab-hero-media img {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.artlab-hero-media:hover img,
.hero-callout-image:hover img {
  transform: none !important;
  box-shadow: none !important;
}



.artlab-hero-media img {
  width: 100% !important;
  max-width: 650px !important;
  height: auto !important;
  margin: 0 auto !important;
  display: block !important;
}
/* Make Art Lab hero image larger */
.artlab-hero-media img {
  width: 100% !important;
  max-width: 750px !important; /* increase this if you want even bigger */
  height: auto;
  display: block;
  margin: 0 auto;
}

.artlab-hero-media img {
  width: 110% !important;     /* slightly overflow container */
  max-width: 850px !important;
  margin-left: -5%;           /* keeps it centered visually */
}
/* Center Art Lab heading in hero callout */
.artlab-heading {
  text-align: center;
  width: 100%;
}








/* Make hero columns equal height */
.hero-grid {
  align-items: stretch;
}

/* Make the right column fill full height */
.hero-callout {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Make inner content expand */
.hero-callout-point {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centers content vertically */
}
.hero-callout-image {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}







/* Let the right column grow */
.hero-callout {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Let the image container expand */
.hero-callout-image {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Remove size limits */
.artlab-hero-media {
  width: 100%;
  max-width: none !important;
}

.artlab-hero-media img {
  width: 120% !important;
  max-width: none !important;
  margin-left: -10%;
}




/* Let the Art Lab promo poster grow */
.hero-callout-image {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}

.artlab-hero-media,
.artlab-hero-media a {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.artlab-hero-media img {
  width: min(100%, 500px) !important;
  max-width: 700px !important;
  height: auto !important;
  margin: 0 auto !important;
  display: block !important;
}




/* Make right column match left column height */
.hero-grid {
  align-items: stretch;
}

/* Let the right panel fill full height */
.hero-callout {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Make image area fill available space */
.hero-callout-image {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* prevents overflow */
}

/* Scale image to fit height (not width) */
.artlab-hero-media img {
  height: 100% !important;
  width: auto !important;
  max-height: 100% !important;
  object-fit: contain;
}
/* Keep the right hero card the same height as the left */
.hero-grid {
  align-items: stretch;
}

.hero-callout {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* Keep the image area inside the card */
.hero-callout-image {
  flex: 1 1 auto;
  min-height: 0;
  height: auto !important;
  overflow: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Remove the old 420px cap and keep wrapper contained */
.artlab-hero-media,
.artlab-hero-media a {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

/* Scale poster to fit INSIDE the available height */
.artlab-hero-media img {
  max-width: 80% !important;
  max-height: 80% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}




/* Align left eyebrow row with right callout badge */
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Remove extra top offset pushing bubbles down */
.eyebrow {
  margin-top: 0 !important;
}

/* Ensure right side also starts at top */
.hero-callout {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero-copy h1 {
  margin-top: 12px; /* reduce if needed */
}

.hero-callout-badge {
  margin-top: 0;
}


/* Make left and right hero cards have identical top padding */
.hero-copy,
.hero-callout {
  padding-top: 32px !important; /* match both sides */
}




/* Make main About Us section reveal faster */
.about-intro.reveal {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease !important;
}

.about-intro.reveal.reveal-delay-1 {
  transition-delay: 0s !important;
}


/* About section inline image */
.about-inline-image {
  margin-top: 16px;
  text-align: center;
}

.about-inline-image img {
  width: 100%;
  max-width: 320px; /* adjust size */
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}





/* Center buttons under About image */
.about-inline-image + .button-group,
.about-buttons,
.about-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}


/* Footer layout */
.footer-inner {
  display: flex;
  align-items: flex-start;
}

/* Push Contact column to the right */
.footer-inner .footer-block:last-child {
  margin-left: auto;
  text-align: left; /* ?? change this */
}


/* Limit width of first (brand) column */
.footer-brand {
  max-width: 420px; /* adjust: 350–500 depending on look */
}
/* Add breathing room between columns */
.footer-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px; /* space between columns */
}


/* Fill the entire right-side Art Lab hero cell */
.artlab-hero-inner {
  align-items: stretch !important;
}

.artlab-hero-media {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: flex !important;
}

.artlab-hero-media a {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  display: block !important;
}

.artlab-hero-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  min-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
}

}
/*-----------------------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------------------------*/

/* Homepage Art Lab promo: make FINALVERSION.png fill its container */
.hero-callout-image {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
  display: block !important;
}

.hero-callout-image .artlab-hero-media,
.hero-callout-image .artlab-hero-media a {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hero-callout-image .artlab-hero-media img {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}
/* Add space under "Discover our NEW Art Lab!" */
.artlab-heading {
  margin-bottom: 24px;
}




/* Make Contact section less opaque */
.contact-form-panel {
  background: rgba(12, 20, 56, 0.55) !important;
}






/* Make Art Lab visible panels match index panels exactly */
.artlab-page-header-inner,
.artlab-hero-copy,
.artlab-hero-media,
.artlab-info-capsule,
.artlab-form-inner,
.artlab-event-card,
.artlab-story-block,
.artlab-info-row,
.artlab-info-text {
  background: var(--panel-bg) !important;
  border: 1px solid var(--panel-border) !important;
  backdrop-filter: var(--panel-blur) !important;
  box-shadow: var(--mwa-shadow) !important;
}

/* Match rounded corners to index-style cards */
.artlab-page-header-inner,
.artlab-hero-copy,
.artlab-hero-media,
.artlab-info-capsule,
.artlab-event-card {
  border-radius: 28px !important;
}

/* Keep row-based inner pieces from creating darker/lighter mismatches */
.artlab-story-block,
.artlab-info-row,
.artlab-info-text,
.artlab-form-inner {
  border-radius: inherit;
}






/* Make the Art Lab main container match other section panels */
.artlab-story-section > .container {
  width: min(1380px, calc(100% - 36px)) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.artlab-info-capsule {
  width: 100% !important;
  border-radius: 28px !important;
  border: 1px solid var(--panel-border) !important;
  background: var(--panel-bg) !important;
  backdrop-filter: var(--panel-blur) !important;
  box-shadow: var(--mwa-shadow) !important;
  overflow: hidden !important;
}

@media (max-width: 860px) {
  .artlab-story-section > .container {
    width: min(calc(100% - 20px), var(--content-width)) !important;
  }
}
/* FORCE Art Lab panels to use SAME styles as index.html panels */
.artlab-info-capsule,
.artlab-hero-copy,
.artlab-hero-media,
.artlab-form-inner,
.artlab-event-card,
.artlab-page-header-inner {
  background: var(--panel-bg) !important;
  border: 1px solid var(--panel-border) !important;
  backdrop-filter: var(--panel-blur) !important;
  box-shadow: var(--mwa-shadow) !important;
  border-radius: 28px !important;
}








/* Align Art Lab header bubble with the other Art Lab sections */
.artlab-page-header > .container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.artlab-page-header-inner {
  width: 100% !important;
  margin: 0 auto !important;
}
/* Make Art Lab text and registration columns equal height */
.artlab-info-row-top {
  align-items: stretch !important;
}

.artlab-info-text,
.artlab-form-shell,
.artlab-form-inner {
  height: 100% !important;
}

.artlab-form-shell {
  display: flex !important;
}

.artlab-form-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
/* Align left Art Lab bubble with right Art Lab Registration heading */
.artlab-info-row-top {
  align-items: start !important;
}

.artlab-info-text,
.artlab-form-inner {
  padding-top: 0 !important;
}

.artlab-info-eyebrow,
.artlab-form-inner h3 {
  margin-top: 0 !important;
}

.artlab-form-inner h3 {
  margin-bottom: 18px;
}




/* Move both top labels down and right */
.artlab-info-text {
  padding-top: 0.25in !important;
  padding-left: 0.25in !important;
}

.artlab-form-inner {
  padding-top: calc(28px + 0.25in) !important;
  padding-left: calc(28px + 0.25in) !important;
}

.artlab-info-eyebrow,
.artlab-form-inner h3 {
  margin-top: 0 !important;
}















/* ===== NEW CUSTOM GALLERY ===== */

.custom-gallery-section {
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 0 60px;
}

.custom-gallery-shell {
  border-radius: 28px;
  border: 1px solid var(--panel-border);
  background: var(--panel-bg);
  backdrop-filter: var(--panel-blur);
  box-shadow: var(--mwa-shadow);
  padding: 28px;
}

.custom-gallery-header {
  text-align: center;
  margin-bottom: 22px;
}

.custom-gallery-header h2 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
}

.custom-gallery-header p {
  margin: 0 auto;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
}

.custom-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-height: 700px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(241, 225, 70, 0.55) rgba(255, 255, 255, 0.08);
}

.custom-gallery-grid::-webkit-scrollbar {
  width: 10px;
}

.custom-gallery-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.custom-gallery-grid::-webkit-scrollbar-thumb {
  background: rgba(241, 225, 70, 0.55);
  border-radius: 999px;
}

.custom-gallery-thumb {
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  aspect-ratio: 1 / 1;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.custom-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.custom-gallery-thumb:hover img,
.custom-gallery-thumb:focus-visible img {
  transform: scale(1.05);
}

.custom-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.custom-lightbox.is-open {
  display: block;
}

.custom-lightbox-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 12, 32, 0.9);
  backdrop-filter: blur(6px);
}

.custom-lightbox-dialog {
  position: absolute;
  inset: 4vh 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  z-index: 2;
}

.custom-lightbox-figure {
  margin: 0;
  max-width: min(92vw, 1200px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom-lightbox-image {
  max-width: 100%;
  max-height: calc(92vh - 72px);
  object-fit: contain;
  display: block;
  cursor: pointer;
  border-radius: 18px 18px 0 0;
  background: rgba(8, 12, 32, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.custom-lightbox-caption {
  width: 100%;
  padding: 14px 18px;
  border-radius: 0 0 18px 18px;
  background: rgba(12, 20, 56, 0.86);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
}

body.custom-lightbox-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .custom-gallery-section {
    width: min(calc(100% - 20px), var(--content-width));
  }

  .custom-gallery-shell {
    padding: 20px;
  }

  .custom-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    max-height: 560px;
  }

  .custom-lightbox-dialog {
    inset: 2vh 2vw;
  }
}








/* ===== CUSTOM GALLERY ===== */

.custom-gallery-section {
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 0 60px;
}

.custom-gallery-shell {
  border-radius: 28px;
  border: 1px solid var(--panel-border);
  background: var(--panel-bg);
  backdrop-filter: var(--panel-blur);
  box-shadow: var(--mwa-shadow);
  padding: 28px;
}

.custom-gallery-header {
  text-align: center;
  margin-bottom: 22px;
}

.custom-gallery-header h2 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
}

.custom-gallery-header p {
  margin: 0 auto;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
}

.custom-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-height: 700px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(241, 225, 70, 0.55) rgba(255, 255, 255, 0.08);
}

.custom-gallery-grid::-webkit-scrollbar {
  width: 10px;
}

.custom-gallery-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.custom-gallery-grid::-webkit-scrollbar-thumb {
  background: rgba(241, 225, 70, 0.55);
  border-radius: 999px;
}

.custom-gallery-thumb {
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  aspect-ratio: 1 / 1;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.custom-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.custom-gallery-thumb img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.custom-gallery-thumb:hover img,
.custom-gallery-thumb:focus-visible img {
  transform: scale(1.05);
}

.custom-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.custom-lightbox.is-open {
  display: block;
}

.custom-lightbox-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 12, 32, 0.9);
  backdrop-filter: blur(6px);
}

.custom-lightbox-dialog {
  position: absolute;
  inset: 4vh 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  z-index: 3;
}

.custom-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2.3rem;
  line-height: 1;
  z-index: 3;
}

.custom-lightbox-prev {
  left: 12px;
}

.custom-lightbox-next {
  right: 12px;
}

.custom-lightbox-figure {
  margin: 0;
  max-width: min(92vw, 1200px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom-lightbox-image {
  max-width: 100%;
  max-height: calc(92vh - 72px);
  object-fit: contain;
  display: block;
  cursor: pointer;
  border-radius: 18px 18px 0 0;
  background: rgba(8, 12, 32, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  touch-action: pan-y;
}

.custom-lightbox-caption {
  width: 100%;
  padding: 14px 18px;
  border-radius: 0 0 18px 18px;
  background: rgba(12, 20, 56, 0.86);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
}

body.custom-lightbox-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .custom-gallery-section {
    width: min(calc(100% - 20px), var(--content-width));
  }

  .custom-gallery-shell {
    padding: 20px;
  }

  .custom-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    max-height: 560px;
  }

  .custom-lightbox-dialog {
    inset: 2vh 2vw;
  }

  .custom-lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 2rem;
  }
}












/* ===== HORIZONTAL SCROLLING TESTIMONIALS ===== */

.testimonial-marquee-section {
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 0 60px;
}

.testimonial-marquee-shell {
  border-radius: 28px;
  border: 1px solid var(--panel-border);
  background: var(--panel-bg);
  backdrop-filter: var(--panel-blur);
  box-shadow: var(--mwa-shadow);
  padding: 28px 0;
  overflow: hidden;
}

.testimonial-marquee-header {
  text-align: center;
  padding: 0 28px 20px;
}

.testimonial-marquee-header h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
}

.testimonial-marquee-track-wrap {
  overflow: hidden;
  position: relative;
}

.testimonial-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  padding: 0 18px;
  animation: testimonialScroll 55s linear infinite;
}

.testimonial-marquee-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 clamp(260px, 28vw, 360px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 34px rgba(15, 23, 67, 0.18);
  padding: 24px 22px;
}

.testimonial-card p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  font-size: 1rem;
}

.testimonial-card span {
  display: block;
  color: var(--mwa-gold);
  font-weight: 700;
  font-size: 0.95rem;
}

@keyframes testimonialScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 860px) {
  .testimonial-marquee-section {
    width: min(calc(100% - 20px), var(--content-width));
  }

  .testimonial-marquee-shell {
    padding: 22px 0;
  }

  .testimonial-marquee-header {
    padding: 0 20px 18px;
  }

  .testimonial-card {
    flex-basis: min(82vw, 320px);
  }

  .testimonial-marquee-track {
    animation-duration: 45s;
  }
}






/* Fade edges for testimonial scroll */
.testimonial-marquee-track-wrap {
  position: relative;
  overflow: hidden;
}

/* Left fade */
.testimonial-marquee-track-wrap::before,
.testimonial-marquee-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Left side fade */
.testimonial-marquee-track-wrap::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(12, 20, 56, 0.95),
    rgba(12, 20, 56, 0)
  );
}

/* Right side fade */
.testimonial-marquee-track-wrap::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(12, 20, 56, 0.95),
    rgba(12, 20, 56, 0)
  );
}












/* Match testimonial section to other panels */
.testimonial-marquee-shell {
  background: var(--panel-bg) !important;
  border: 1px solid var(--panel-border) !important;
  backdrop-filter: var(--panel-blur) !important;
  box-shadow: var(--mwa-shadow) !important;
}

/* Match individual cards */
.testimonial-card {
  background: var(--panel-bg) !important;
  border: 1px solid var(--panel-border) !important;
  backdrop-filter: var(--panel-blur) !important;
}





.custom-gallery-grid {
  max-height: none !important;
  overflow-y: visible !important;
}






/* Board of Directors two-column tab layout */
.about-tab-panel-full .about-tab-copy {
  width: 100%;
}

.about-tab-panel-full .leadership-two-col {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 90px !important;
  gap: 28px !important;
  align-items: start !important;
  width: 100% !important;
}

.about-tab-panel-full .leadership-two-col-text {
  min-width: 0;
}

.about-tab-panel-full .leadership-two-col-image {
  width: 380px;
  justify-self: end;
  align-self: start;
}

.about-tab-panel-full .leadership-two-col-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--panel-border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

@media (max-width: 860px) {
  .about-tab-panel-full .leadership-two-col {
    grid-template-columns: 1fr !important;
  }

  .about-tab-panel-full .leadership-two-col-image {
    width: 160px;
    justify-self: start;
  }

  .about-tab-panel-full .leadership-two-col-image img {
    height: 160px;
  }
}






/* Reduce thumbnail size properly */
.custom-gallery-thumb {
  width: 180px !important;
  height: 180px !important;
  flex: 0 0 180px !important;
}

.custom-gallery-grid {
  grid-template-columns: repeat(auto-fill, 180px) !important;
  justify-content: start;
}


@media (max-width: 860px) {
  .custom-gallery-thumb {
    width: 70px !important;
    height: 70px !important;
  }

  .custom-gallery-grid {
    grid-template-columns: repeat(auto-fill, 70px) !important;
  }
}