:root {
  --ink: #37204f;
  --muted: #765d8f;
  --paper: #fde9ff;
  --surface: #fff7ff;
  --clay: #c04f9c;
  --teal: #8c5be8;
  --mustard: #ffafcf;
  --rose: #ee78bc;
  --border: #e8c4f4;
  --shadow: 0 20px 50px rgba(87, 51, 130, 0.16);
  --glass: rgba(255, 247, 255, 0.68);
  --glass-strong: rgba(255, 247, 255, 0.86);
  --neumo-shadow: 18px 18px 36px rgba(112, 70, 152, 0.16), -14px -14px 30px rgba(255, 255, 255, 0.76);
  --inner-glow: inset 1px 1px 0 rgba(255, 255, 255, 0.8), inset -1px -1px 0 rgba(171, 95, 198, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 18% 12%, rgba(255, 186, 219, 0.72), transparent 33rem),
    radial-gradient(ellipse at 82% 6%, rgba(205, 176, 255, 0.66), transparent 34rem),
    radial-gradient(ellipse at 52% 42%, rgba(255, 236, 247, 0.82), transparent 28rem),
    radial-gradient(ellipse at 72% 82%, rgba(155, 118, 237, 0.26), transparent 32rem),
    linear-gradient(145deg, #fff4fb 0%, #f8ddff 42%, #dab8ff 72%, #8f72d8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse at 16% 24%, rgba(255, 255, 255, 0.58) 0 12%, transparent 28%),
    radial-gradient(ellipse at 42% 16%, rgba(255, 222, 243, 0.54) 0 10%, transparent 30%),
    radial-gradient(ellipse at 72% 30%, rgba(244, 213, 255, 0.5) 0 11%, transparent 30%),
    radial-gradient(ellipse at 34% 76%, rgba(255, 214, 237, 0.42) 0 12%, transparent 32%);
  filter: blur(12px);
  opacity: 0.78;
}

body::after {
  position: fixed;
  inset: -12vh -18vw;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse at 8% 24%, rgba(255, 255, 255, 0.62) 0 5%, transparent 13%),
    radial-gradient(ellipse at 18% 20%, rgba(255, 240, 251, 0.5) 0 6%, transparent 15%),
    radial-gradient(ellipse at 48% 34%, rgba(255, 255, 255, 0.5) 0 5%, transparent 14%),
    radial-gradient(ellipse at 58% 30%, rgba(245, 226, 255, 0.46) 0 7%, transparent 16%),
    radial-gradient(ellipse at 82% 18%, rgba(255, 255, 255, 0.54) 0 5%, transparent 14%),
    radial-gradient(ellipse at 92% 22%, rgba(255, 229, 247, 0.42) 0 6%, transparent 16%);
  filter: blur(18px);
  opacity: 0.58;
  transform: translate3d(0, 0, 0);
  animation: cloud-drift 54s linear infinite alternate;
}

@keyframes cloud-drift {
  from {
    transform: translate3d(-2vw, 0, 0);
  }

  to {
    transform: translate3d(8vw, 3vh, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none;
  }

  .hero-slideshow img {
    animation: none;
  }

  .hero-slideshow img:first-child {
    opacity: 1;
  }
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: 0;
  gap: 16px;
  padding: 12px clamp(16px, 3vw, 42px);
  background: rgba(253, 233, 255, 0.68);
  border-bottom: 1px solid rgba(232, 196, 244, 0.88);
  box-shadow: 0 12px 34px rgba(87, 51, 130, 0.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 48px);
  width: 100%;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: clamp(112px, 16vw, 174px);
  height: clamp(86px, 12vw, 132px);
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

.brand-copy {
  display: grid;
  gap: 4px;
  line-height: 1.05;
  text-align: center;
}

.brand-copy span {
  font-size: clamp(1.9rem, 5vw, 4rem);
  font-weight: 900;
}

.brand-copy strong {
  color: #8c5be8;
  font-size: clamp(1.1rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(118px, 10vw, 172px);
  min-height: 46px;
  padding: 10px 18px;
  color: #37204f;
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(180deg, #fff7ff 0%, #e9ccff 46%, #cda8f4 100%);
  border: 1px solid rgba(126, 82, 171, 0.28);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -3px 8px rgba(113, 68, 158, 0.14),
    0 4px 9px rgba(55, 32, 79, 0.28);
  text-transform: uppercase;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease, filter 180ms ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger::after {
  margin-left: 8px;
  font-size: 0.72rem;
  content: "▼";
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 220px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  background: var(--glass-strong);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  justify-content: flex-start;
  min-width: 0;
  width: 100%;
  min-height: 42px;
  text-align: left;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #37204f;
  background: linear-gradient(180deg, #ffffff 0%, #f0dbff 44%, #d8b8fb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -3px 8px rgba(113, 68, 158, 0.13),
    0 5px 12px rgba(55, 32, 79, 0.34);
  filter: saturate(1.08);
  transform: translateY(-2px);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--glass-strong);
  box-shadow: 8px 8px 18px rgba(87, 51, 130, 0.14), -8px -8px 18px rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  height: clamp(360px, 68vh, 700px);
  padding: 0;
  background: linear-gradient(145deg, #37204f, #8f72d8);
}

.art-rail-wrap {
  position: relative;
  display: grid;
  grid-template-rows: 5% 90% 5%;
  height: 100%;
}

.art-rail {
  grid-row: 2;
  display: flex;
  align-items: stretch;
  gap: clamp(12px, 1.6vw, 24px);
  height: 100%;
  overflow-x: auto;
  padding: 0 clamp(18px, 5vw, 64px);
  scroll-behavior: smooth;
  scroll-padding-inline: clamp(18px, 5vw, 64px);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.art-rail::-webkit-scrollbar {
  display: none;
}

.rail-card {
  position: relative;
  flex: 0 0 auto;
  width: auto;
  height: 100%;
  overflow: hidden;
  color: #fff;
  background: #241333;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(20, 8, 31, 0.38);
  scroll-snap-align: start;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.rail-card img {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  background: #241333;
  transition: transform 350ms ease, filter 220ms ease;
}

.rail-card span {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 18px 16px;
  font-weight: 850;
  background: linear-gradient(transparent, rgba(20, 8, 31, 0.9));
  opacity: 0;
  transition: opacity 220ms ease;
}

.rail-card:hover,
.rail-card:focus-visible {
  z-index: 2;
  box-shadow: 0 22px 46px rgba(20, 8, 31, 0.55);
  transform: scale(1.045);
  outline: 3px solid rgba(255, 255, 255, 0.82);
}

.rail-card:hover img,
.rail-card:focus-visible img {
  filter: brightness(0.78);
  transform: scale(1.04);
}

.rail-card:hover span,
.rail-card:focus-visible span {
  opacity: 1;
}

.rail-button {
  position: absolute;
  top: 5%;
  bottom: 5%;
  z-index: 3;
  width: clamp(38px, 4vw, 58px);
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  background: rgba(20, 8, 31, 0.66);
  border: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity 180ms ease, background 180ms ease;
}

.art-rail-wrap:hover .rail-button,
.rail-button:focus-visible {
  opacity: 1;
}

.rail-button:hover {
  background: rgba(20, 8, 31, 0.9);
}

.rail-button.previous {
  left: 0;
}

.rail-button.next {
  right: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  color: #ffffff;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(55, 32, 79, 0.28);
  border: 1px solid rgba(255, 236, 247, 0.38);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(55, 32, 79, 0.26);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  backdrop-filter: blur(12px) saturate(1.2);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 7.4rem);
  line-height: 0.92;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-content p:not(.eyebrow),
.section-copy p,
.section-heading p,
.about .split > p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-content p:not(.eyebrow) {
  color: #ffeaf8;
  max-width: 560px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  font-weight: 850;
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 8px 8px 18px rgba(87, 51, 130, 0.16), -7px -7px 18px rgba(255, 255, 255, 0.72);
  transition: box-shadow 180ms ease, transform 180ms ease, filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 12px 12px 24px rgba(87, 51, 130, 0.18), -9px -9px 22px rgba(255, 255, 255, 0.76);
  filter: saturate(1.08);
  outline: none;
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #b65ee8, #ef78bd 52%, #ff9fc8);
}

.button.secondary {
  color: var(--ink);
  background: var(--glass-strong);
  border: 1px solid var(--border);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.section {
  padding: clamp(58px, 8vw, 104px) 0;
}

.section-band {
  padding: 24px 0;
  background: linear-gradient(135deg, #3d245c, #7347a8 55%, #c06ab8);
  color: #ffffff;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: transparent;
}

.stats-grid div {
  min-height: 110px;
  padding: 20px;
  background: rgba(61, 36, 92, 0.72);
  border: 1px solid rgba(255, 236, 247, 0.24);
  border-radius: 8px;
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.14), 12px 12px 26px rgba(55, 32, 79, 0.22);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.stats-grid strong {
  display: block;
  color: #ffc1df;
  font-size: 1.45rem;
}

.stats-grid span {
  color: #f7e7ff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article,
.updates-grid article,
.event-panel,
.contact-form {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--neumo-shadow), var(--inner-glow);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
}

.feature-list article {
  padding: 24px;
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: #ffffff;
  font-weight: 900;
  background: var(--rose);
  border-radius: 50%;
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.34), inset -4px -4px 9px rgba(74, 38, 126, 0.18);
}

.warm {
  background:
    radial-gradient(ellipse at 22% 0%, rgba(255, 206, 231, 0.72), transparent 30rem),
    linear-gradient(135deg, #f8ddff, #ffd7ec);
}

.event-panel {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 18px;
  align-items: center;
  padding: clamp(18px, 4vw, 32px);
}

.date-card {
  display: grid;
  place-items: center;
  min-height: 210px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  background: linear-gradient(135deg, #8c5be8, #c04f9c 54%, #ff91c6);
  border-radius: 8px;
}

.date-card span {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 800;
}

.event-panel ul {
  margin: 0;
  padding-left: 20px;
}

.events-page {
  min-height: calc(100vh - 154px);
}

.event-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.event-card {
  display: grid;
  gap: 16px;
  min-height: 320px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--neumo-shadow), var(--inner-glow);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
}

.event-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #8c5be8, #c04f9c 54%, #ff91c6);
  border-radius: 50%;
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.34), inset -4px -4px 9px rgba(74, 38, 126, 0.18);
}

.event-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.event-card p {
  margin: 0;
  color: var(--muted);
}

.calendar-page {
  min-height: calc(100vh - 154px);
}

.calendar-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.calendar-month {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--neumo-shadow), var(--inner-glow);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
}

.calendar-month-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.calendar-days,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-days span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-date {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 96px;
  padding: 8px;
  background: rgba(255, 247, 255, 0.62);
  border: 1px solid rgba(232, 196, 244, 0.78);
  border-radius: 8px;
  box-shadow: inset 4px 4px 10px rgba(95, 59, 139, 0.07), inset -4px -4px 10px rgba(255, 255, 255, 0.72);
}

.calendar-date.is-empty {
  opacity: 0.42;
}

.calendar-date.is-today {
  border-color: #9b5de5;
  box-shadow: 0 0 0 3px rgba(155, 93, 229, 0.18), inset 4px 4px 10px rgba(95, 59, 139, 0.07), inset -4px -4px 10px rgba(255, 255, 255, 0.72);
}

.calendar-date time {
  color: var(--ink);
  font-weight: 900;
}

.calendar-events {
  display: grid;
  gap: 5px;
}

.calendar-events span {
  padding: 5px 7px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.2;
  background: linear-gradient(135deg, #8c5be8, #c04f9c 54%, #ff91c6);
  border-radius: 8px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: #8c3fc4;
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.art-grid,
.gallery-grid,
.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.art-card {
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--neumo-shadow), var(--inner-glow);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.art-link {
  display: block;
  text-decoration: none;
}

.art-card:has(.art-link:hover),
.art-card:has(.art-link:focus-visible),
.all-art-grid figure:has(.art-link:hover),
.all-art-grid figure:has(.art-link:focus-visible) {
  transform: translateY(-4px);
  box-shadow: 22px 22px 42px rgba(112, 70, 152, 0.2), -16px -16px 34px rgba(255, 255, 255, 0.84);
}

.art-link:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.art-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: rgba(255, 247, 255, 0.84);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.art-card div {
  padding: 20px;
}

.art-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.arts-page {
  min-height: calc(100vh - 154px);
}

.all-art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.all-art-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--neumo-shadow), var(--inner-glow);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.all-art-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: rgba(255, 247, 255, 0.84);
}

.art-detail {
  min-height: calc(100vh - 154px);
}

.art-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.art-detail-image {
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--neumo-shadow), var(--inner-glow);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
}

.art-detail-image img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: rgba(255, 247, 255, 0.84);
}

.art-brief-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--neumo-shadow), var(--inner-glow);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
}

.art-brief-card h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.art-brief-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.art-brief-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.art-brief-card dl div {
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.art-brief-card dt {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.art-brief-card dd {
  margin: 4px 0 0;
  color: #5f477a;
}

.gallery-section {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(207, 181, 255, 0.7), transparent 32rem),
    linear-gradient(135deg, #fce5ff, #e7d5ff);
}

.customize-order {
  background:
    radial-gradient(ellipse at 16% 18%, rgba(255, 185, 219, 0.72), transparent 30rem),
    linear-gradient(135deg, #f6dbff, #ffd6ea);
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tab {
  min-height: 42px;
  padding: 9px 15px;
  color: var(--ink);
  font-weight: 850;
  background: var(--glass-strong);
  border: 1px solid #e8c4f4;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 6px 6px 14px rgba(87, 51, 130, 0.13), -6px -6px 14px rgba(255, 255, 255, 0.72);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.tab.active {
  color: #ffffff;
  background: #9b5de5;
  box-shadow: inset 4px 4px 10px rgba(74, 38, 126, 0.18), inset -3px -3px 9px rgba(255, 203, 232, 0.32);
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid #e8c4f4;
  border-radius: 8px;
  box-shadow: var(--neumo-shadow), var(--inner-glow);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
}

.gallery-grid figcaption {
  padding: 14px 16px;
  font-weight: 800;
}

.gallery-grid figure.is-hidden {
  display: none;
}

.updates-grid article {
  padding: 22px;
}

.updates-grid span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact {
  background:
    radial-gradient(ellipse at 12% 0%, rgba(255, 205, 230, 0.78), transparent 28rem),
    linear-gradient(135deg, #fff1fb, #e9d8ff);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 70px);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #5f477a;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 247, 255, 0.74);
  border: 1px solid #ddb6ee;
  border-radius: 8px;
  box-shadow: inset 5px 5px 12px rgba(95, 59, 139, 0.08), inset -5px -5px 12px rgba(255, 255, 255, 0.72);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #9b5de5;
  box-shadow: inset 5px 5px 12px rgba(95, 59, 139, 0.08), inset -5px -5px 12px rgba(255, 255, 255, 0.72), 0 0 0 3px rgba(155, 93, 229, 0.2);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  padding: 24px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #37204f, #6f44a1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner p {
  margin: 0;
  font-weight: 900;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    position: absolute;
    right: 18px;
    bottom: 14px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 2px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--glass-strong);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
    backdrop-filter: blur(18px) saturate(1.18);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-dropdown {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    min-width: 0;
  }

  .nav-dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin-top: 4px;
    gap: 8px;
    padding: 8px 0 0 12px;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero,
  .split,
  .reverse,
  .contact-grid,
  .art-detail-grid,
  .calendar-board {
    grid-template-columns: 1fr;
  }

  .hero {
    height: clamp(320px, 58vh, 560px);
  }

  .stats-grid,
  .art-grid,
  .all-art-grid,
  .event-card-grid,
  .gallery-grid,
  .updates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    justify-content: flex-start;
    gap: 12px;
    padding-right: 58px;
  }

  .brand img {
    width: 82px;
    height: 68px;
  }

  .brand-copy {
    text-align: left;
  }

  .brand-copy span {
    font-size: 1.35rem;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

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

  .rail-button {
    display: none;
  }

  .stats-grid,
  .art-grid,
  .all-art-grid,
  .event-card-grid,
  .gallery-grid,
  .updates-grid,
  .event-panel {
    grid-template-columns: 1fr;
  }

  .section-inner {
    width: min(100% - 28px, 1160px);
  }

  .calendar-days,
  .calendar-grid {
    gap: 5px;
  }

  .calendar-date {
    min-height: 82px;
    padding: 6px;
  }

  .calendar-events span {
    font-size: 0.65rem;
  }
}
