:root {
  --navy: #dbe7ff;
  --gold: #f59e0b;
  --red: #ef4444;
  --white: #ffffff;
  --muted: #95a3bc;
  --bg: #050816;
  --card: #10192d;
  --line: #23314d;
  --shadow: 0 22px 55px rgba(0, 0, 0, .35);
  --font-body: "Poppins", sans-serif;
  --font-display: "Poppins", sans-serif;
  --font-mono: "Poppins", sans-serif;
  --font-brand: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  position: relative;
  isolation: isolate;
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--navy);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(245, 158, 11, .1), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(239, 68, 68, .08), transparent 22%),
    var(--bg);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -.03em;
}

.logo {
  font-family: var(--font-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .38;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .04) 0, transparent 20%),
    radial-gradient(circle at 88% 0%, rgba(245, 158, 11, .05) 0, transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(239, 68, 68, .04) 0, transparent 24%),
    linear-gradient(115deg, rgba(255, 255, 255, .02) 0%, transparent 38%, rgba(255, 255, 255, .018) 100%);
  mix-blend-mode: screen;
}

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

img {
  max-width: 100%;
}

code {
  background: #111a30;
  border-radius: 6px;
  padding: 2px 6px;
  color: var(--navy);
}

.container {
  width: min(1140px, 92%);
  margin: auto;
}

.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;
}

.hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 13, 26, .96);
  backdrop-filter: blur(10px);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-container {
  width: min(1560px, 95%);
  margin: auto;
}

.logo-with-img {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--white);
  font-family: var(--font-brand);
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-with-img span {
  color: var(--gold);
}

.logo-with-img img {
  width: 50px;
  height: 50px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
  background: #111827;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
  color: var(--navy);
  font-size: .92rem;
  white-space: nowrap;
}

.nav-links > a:not(.instagram-link) {
  position: relative;
  padding: 10px 2px;
  transition: color .2s ease;
}

.nav-links > a:not(.instagram-link)::after {
  content: '';
  position: absolute;
  right: 2px;
  bottom: 5px;
  left: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav-links > a:not(.instagram-link):hover,
.nav-links > a:not(.instagram-link):focus-visible {
  color: var(--white);
}

.nav-links > a:not(.instagram-link):hover::after,
.nav-links > a:not(.instagram-link):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  padding: 0;
  color: var(--white);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, opacity .2s ease;
}

.icon-button svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-link {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.instagram-link svg {
  width: 22px;
  height: 22px;
}

.admin-nav-btn {
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-cta {
  border-color: rgba(245, 158, 11, .58);
  background: var(--gold);
  color: #111827;
  padding: 11px 20px;
  box-shadow: 0 14px 28px rgba(245, 158, 11, .22);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #fbbf24;
  transform: translateY(-1px);
}

.admin-access {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 500;
  padding-inline: 5px;
}

.admin-access:hover,
.admin-access:focus-visible {
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  place-items: center;
  background: url('../images/hero-bg.jpg') center/cover;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-video.video-unavailable {
  display: none;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 60% 22%, rgba(245, 158, 11, .16), transparent 18%),
    linear-gradient(135deg, rgba(5, 8, 22, .90), rgba(5, 8, 22, .70));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 86px 0 76px;
}

.eyebrow {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 12px 0;
  font-size: clamp(3.35rem, 7.4vw, 6.55rem);
  line-height: .91;
  letter-spacing: -.045em;
}

.hero-text,
.hero-shayari {
  max-width: 780px;
  line-height: 1.7;
}

.hero-text {
  color: #e2e8f0;
  font-size: 1.05rem;
}

.hero-shayari {
  margin-top: 14px;
  color: #fde68a;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 26px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, background-color .2s;
}

.primary {
  background: var(--gold);
  color: #111827;
}

.primary:hover,
.primary:focus-visible {
  background: #fbbf24;
  transform: translateY(-2px);
}

.secondary {
  background: rgba(17, 25, 45, .96);
  color: var(--navy);
  border: 1px solid var(--line);
}

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

.search-panel {
  display: flex;
  max-width: 820px;
  padding: 10px;
  border-radius: 26px;
  background: rgba(16, 25, 45, .96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.search-panel input {
  flex: 1;
  border: 0;
  color: var(--navy);
  background: transparent;
}

.search-panel button {
  border: 0;
  border-radius: 18px;
  padding: 0 28px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.section {
  padding: 108px 0;
}

.upcoming-events,
.audience-favorites {
  padding: 78px 0;
}

.section-heading {
  max-width: 940px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 8px 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}

.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.artist-directory-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.directory-search {
  display: flex;
  width: min(440px, 42vw);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--card);
}

.directory-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  border-radius: 0;
  padding: 12px 14px;
  color: var(--navy);
  background: transparent;
}

.directory-search button {
  border: 0;
  padding: 12px 18px;
  background: var(--red);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.artist-directory-tools .filter-label select {
  min-width: 175px;
}

.category-grid,
.artist-grid,
.event-grid,
.audience-favorites-grid {
  display: grid;
  gap: 22px;
}

.category-grid,
.artist-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-ribbon {
  position: relative;
  overflow: hidden;
  margin: 10px 0 26px;
  padding: 14px 0;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, .22);
  background:
    linear-gradient(90deg, rgba(245, 158, 11, .18), rgba(239, 68, 68, .12)),
    rgba(9, 16, 31, .9);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
}

.category-ribbon::before,
.category-ribbon::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  pointer-events: none;
  z-index: 1;
}

.category-ribbon::before {
  left: 0;
  background: linear-gradient(90deg, rgba(9, 16, 31, 1), rgba(9, 16, 31, 0));
}

.category-ribbon::after {
  right: 0;
  background: linear-gradient(270deg, rgba(9, 16, 31, 1), rgba(9, 16, 31, 0));
}

.category-ribbon-track {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  padding-left: 18px;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: categoryRibbonScroll 30s linear infinite;
  will-change: transform;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(10, 18, 34, .82);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease;
}

.category-chip:hover,
.category-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, .6);
  background: rgba(15, 23, 42, .96);
}

.category-separator {
  flex: 0 0 auto;
  color: #fbbf24;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
}

.event-grid,
.audience-favorites-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.poster-grid {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 42px 14px 4px;
  margin-right: -4px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.poster-grid::-webkit-scrollbar {
  display: none;
}

.poster-carousel {
  position: relative;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(15, 23, 42, .92);
  color: var(--white);
  font: inherit;
  font-size: 28px;
  line-height: 1;
  box-shadow: var(--shadow);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: rgba(30, 41, 59, .98);
}

.carousel-arrow-left {
  left: -8px;
}

.carousel-arrow-right {
  right: -8px;
}

.poster-track .upcoming-card {
  flex: 0 0 clamp(185px, 20vw, 250px);
  scroll-snap-align: start;
}

.audience-favorites {
  background: #070d1a;
}

.category-grid div,
.category-grid button,
.event-grid article,
.artist-card,
.features div,
blockquote,
.card-form {
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(16, 25, 45, .94), rgba(10, 15, 28, .96));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
}

.category-grid div {
  padding: 24px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
}

.category-grid button {
  border: 0;
  padding: 24px;
  color: inherit;
  background: rgba(12, 18, 34, .88);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

.category-grid button:hover,
.category-grid button:focus-visible {
  transform: translateY(-2px);
  background: #111c34;
}

.events .event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.events .event-grid article {
  padding: 30px 28px;
  background: #ffffff;
  color: #0f172a;
  border: 0;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
}

.events .event-grid article h3 {
  margin: 0 0 16px;
  font-size: 1.45rem;
  line-height: 1.1;
  color: #0f172a;
}

.events .event-grid article p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.55;
  color: #0f172a;
}

.artists-section {
  background: #070d1a;
}

.join-artist {
  background: #08101f;
}

.upcoming-events {
  background: #08101f;
}

.upcoming-events .container,
.audience-favorites .container {
  width: min(1500px, 94%);
}

.artist-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, rgba(14, 20, 34, .92), rgba(9, 14, 27, .98));
}

.artist-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0b1324;
}

.artist-track .artist-card {
  flex: 0 0 clamp(220px, 22vw, 285px);
  height: 100%;
  scroll-snap-align: start;
}

.artist-emoji {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: var(--white);
  font-size: 3.5rem;
}

.artist-art-form-badge {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(8, 13, 24, .78);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .26);
}

.artist-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
  gap: 10px;
}

.artist-body h3 {
  margin: 0;
  min-height: 2.35em;
  line-height: 1.15;
  letter-spacing: -.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(245, 158, 11, .14);
  color: #f7c46a;
  font-size: .8rem;
  font-weight: 700;
}

.meta {
  color: var(--muted);
  font-size: .92rem;
}

.artist-meta,
.artist-experience {
  margin: 0;
  min-height: 1.55em;
}

.artist-meta.is-empty,
.artist-experience.is-empty {
  color: transparent;
  user-select: none;
}

.artist-experience strong {
  color: var(--white);
}

.artist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-img::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(6, 11, 21, .84), rgba(6, 11, 21, 0));
  pointer-events: none;
}

.artist-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.artist-actions a,
.artist-actions button {
  flex: 1;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: #0c1426;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.artist-actions button {
  background: #11192d;
  color: var(--white);
}

.artists-section .section-heading.split {
  align-items: center;
  max-width: none;
  margin-bottom: 36px;
}

.custom-artist-enquiry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #0c1426;
}

.custom-artist-enquiry h3 {
  margin: 0 0 6px;
}

.custom-artist-enquiry p {
  margin: 0;
  color: var(--muted);
}

.load-more-row {
  display: flex;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
}

.load-more-row .btn {
  min-width: 190px;
}

.empty-state {
  margin: 24px 0 0;
  color: var(--muted);
  text-align: center;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: #0c1426;
}

label span {
  display: block;
  margin-bottom: 8px;
  font-size: .92rem;
  font-weight: 700;
}

label small {
  color: var(--muted);
  font: inherit;
  font-weight: 500;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input[type="file"] {
  background: #fffbeb;
  border-style: dashed;
  cursor: pointer;
}

.form-note {
  margin: -6px 0 4px;
  color: var(--muted);
  font-size: .88rem;
}

.conditional-field {
  display: grid;
  gap: 16px;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(245, 158, 11, .45);
  outline-offset: 3px;
}

.event-grid article {
  padding: 0;
}

.upcoming-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: min(100%, 250px);
  height: 100%;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.poster-reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: posterReveal .55s ease forwards;
  animation-delay: var(--card-delay, 0ms);
}

.upcoming-card-media {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.upcoming-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.upcoming-card-empty-media {
  aspect-ratio: 2 / 3;
  display: grid;
  place-items: center;
  padding: 22px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: var(--white);
  font-weight: 800;
  text-align: center;
  transition: transform .35s ease;
}

.event-date-badge {
  display: block;
  width: 100%;
  padding: 11px 12px;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .01em;
}

.upcoming-card-body {
  display: grid;
  gap: 4px;
  flex: 1 1 auto;
  min-height: 138px;
  padding: 10px 10px 12px;
}

.upcoming-card-body h3 {
  margin: 0;
  font-size: .88rem;
  line-height: 1.2;
  min-height: 2.4em;
  letter-spacing: -.01em;
}

.event-venue {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
}

.event-description {
  margin: 0;
  color: #cbd5e1;
  font-size: .76rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-date {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  width: max-content;
  margin-top: 1px;
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(34, 197, 94, .16);
  color: #a7f3d0;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 800;
}

.status-pill.completed {
  background: rgba(148, 163, 184, .18);
  color: #dbe7ff;
}

.upcoming-card:hover,
.upcoming-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(0, 0, 0, .42);
}

.upcoming-card:hover img,
.upcoming-card:focus-within img,
.upcoming-card:hover .upcoming-card-empty-media,
.upcoming-card:focus-within .upcoming-card-empty-media {
  transform: scale(1.02);
}

.ticket-btn {
  width: max-content;
  margin-top: 18px;
}

.why {
  background: #09111f;
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.why-grid > div:first-child {
  max-width: 560px;
}

.why-grid > div:first-child p:last-child {
  max-width: 540px;
  line-height: 1.85;
}

.why p {
  color: #cbd5e1;
}

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

.features div {
  padding: 24px;
  background: rgba(255, 255, 255, .04);
  box-shadow: none;
}

.features span {
  display: block;
  margin-top: 8px;
  color: #cbd5e1;
}

.achievement-band {
  background:
    radial-gradient(circle at top, rgba(245, 158, 11, .08), transparent 34%),
    linear-gradient(180deg, #0b111c 0%, #070d16 100%);
}

.achievement-shell {
  display: grid;
  gap: 42px;
  text-align: center;
}

.achievement-copy {
  width: min(980px, 100%);
  margin: 0 auto;
}

.achievement-copy h2 {
  margin: 12px 0 14px;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}

.achievement-copy p {
  margin: 0;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  color: #cbd5e1;
  font-size: 1.06rem;
  line-height: 1.85;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  column-gap: clamp(16px, 2vw, 28px);
}

.achievement-grid article {
  padding: 24px 18px 28px;
}

.achievement-grid article:nth-child(4n + 1) {
  border-left: 0;
}

.achievement-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.achievement-grid strong {
  display: block;
  color: #c99079;
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 4.7vw, 5rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}

.achievement-grid span {
  display: block;
  margin-top: 14px;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.founder {
  background: #070d1a;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.35fr);
  column-gap: 72px;
  row-gap: 48px;
  align-items: start;
}

.founder-heading {
  align-self: start;
}

.founder-portrait {
  width: 100%;
  max-width: 460px;
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c1426;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 25%;
}

.founder-heading h2 {
  margin-bottom: 4px;
  font-size: 3rem;
  line-height: .98;
}

.founder-role {
  margin: 0;
  color: var(--red);
  font-weight: 700;
}

.founder-quote {
  grid-column: 1 / -1;
  width: min(920px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 30px 42px;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.founder-quote p {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.7;
}

.founder-quote cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.founder-copy {
  max-width: 720px;
}

.founder-copy p {
  max-width: 760px;
  margin: 0 0 20px;
  color: #cbd5e1;
  font-size: 1.02rem;
  line-height: 1.85;
}

.founder-copy p:first-child {
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 500;
}

.gallery-carousel-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 0;
}

.gallery-carousel {
  min-width: 0;
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  min-height: auto;
  overflow: visible;
}

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

.gallery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(10, 15, 28, .98), rgba(10, 15, 28, .9));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow:
    0 24px 60px rgba(2, 6, 23, .26),
    inset 0 1px 0 rgba(255, 255, 255, .05);
  cursor: pointer;
  isolation: isolate;
  transform: none;
  transition:
    transform .42s cubic-bezier(.2, .8, .2, 1),
    box-shadow .42s cubic-bezier(.2, .8, .2, 1),
    border-color .42s cubic-bezier(.2, .8, .2, 1),
    opacity .42s ease;
  animation: galleryCardEnter .7s ease both;
}

.gallery-media {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.gallery-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .6s ease, filter .6s ease, opacity .4s ease;
  filter: saturate(1.05) contrast(1.05);
}

.gallery-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0) 18%, rgba(2, 6, 23, .16) 58%, rgba(2, 6, 23, .84) 100%);
  opacity: .7;
  transition: opacity .35s ease;
  pointer-events: none;
}

.gallery-card:hover,
.gallery-card:focus-within {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 32px 72px rgba(2, 6, 23, .34),
    0 0 0 1px rgba(248, 113, 113, .16),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  border-color: rgba(248, 113, 113, .32);
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.1);
}

.gallery-card:hover .gallery-media::after,
.gallery-card:focus-within .gallery-media::after {
  opacity: .85;
}

.gallery-footer {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 16px;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0), rgba(2, 6, 23, .86));
  border-top: 0;
  display: grid;
  gap: 8px;
  pointer-events: none;
}

.gallery-footer figcaption {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  text-align: left;
}

.gallery-nav {
  align-self: center;
  position: static;
  margin: 0;
}

.gallery-nav.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

@keyframes galleryCardEnter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1200px) {
  .gallery-track {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .gallery-carousel-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-nav {
    display: none;
  }

  .gallery-track {
    min-height: auto;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    display: flex;
    align-items: flex-start;
  }

  .gallery-card {
    scroll-snap-align: start;
    width: clamp(240px, 72vw, 360px);
    aspect-ratio: 16 / 10.5;
    height: auto;
  }

  .gallery-card {
    flex: 0 0 auto;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 560px) {
  .gallery-card {
    width: 84vw;
    height: clamp(300px, 88vw, 420px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .gallery-reveal,
  .gallery-reveal img,
  .gallery-reveal figcaption {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .poster-reveal,
  .upcoming-card,
  .upcoming-card img,
  .upcoming-card-empty-media,
  .gallery-card,
  .artist-card,
  .features div {
    animation: none;
    transform: none;
    transition: none;
  }

  .poster-grid {
    scroll-behavior: auto;
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  padding: 0;
  background: none;
  color: var(--red);
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  white-space: nowrap;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-action {
  font-size: .95rem;
}

.upcoming-events .section-heading,
.audience-favorites .section-heading {
  margin-bottom: 36px;
}

.upcoming-events .section-heading.split,
.audience-favorites .section-heading.split {
  align-items: center;
}

@keyframes posterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.card-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.form-actions {
  margin: 8px 0 0;
}

.admin-card-note {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-info {
  margin-top: 24px;
  color: var(--muted);
}

.contact-info a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  padding: 60px 0 20px;
  background: #020617;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer a {
  display: block;
  margin: 10px 0;
  color: #cbd5e1;
}

.footer .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}

.footer .footer-logo span {
  display: block;
  line-height: 1.2;
}

.footer-logo img {
  width: 58px;
  height: 58px;
}

.copyright {
  margin-top: 40px;
  color: #94a3b8;
  text-align: center;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #22c55e;
  color: var(--white);
  font-weight: 800;
  box-shadow: var(--shadow);
  z-index: 25;
}

.whatsapp svg {
  width: 26px;
  height: 26px;
}

.icon-button:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.02);
}

.icon-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .9);
  outline-offset: 3px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 99;
  max-width: min(520px, 92vw);
  transform: translateX(-50%);
  border-radius: 16px;
  padding: 16px 22px;
  background: #10192d;
  color: var(--white);
  box-shadow: var(--shadow);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, .72);
}

.modal-card {
  position: relative;
  width: min(460px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  border-radius: 18px;
  padding: 30px;
  background: var(--card);
  box-shadow: 0 30px 80px rgba(15, 23, 42, .28);
}

.large-modal {
  width: min(720px, 100%);
}

.modal-card h2 {
  margin: 0 0 20px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 30px;
  cursor: pointer;
}

.compact-form,
.admin-form {
  display: grid;
  gap: 14px;
}

.checkbox-group {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  background: #0c1426;
}

.checkbox-group legend {
  padding: 0 6px;
  color: var(--navy);
  font-weight: 700;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .92rem;
}

.checkbox-group input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

.admin-panel {
  background: #070d1a;
}

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

.admin-card {
  border-radius: 18px;
  padding: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.admin-card h3 {
  margin-top: 0;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tertiary {
  background: #0c1426;
  color: var(--navy);
}

.admin-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.admin-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: #0c1426;
}

.admin-item strong {
  display: block;
}

.admin-item span {
  display: block;
  color: var(--muted);
  font-size: .88rem;
}

.admin-item-actions {
  display: flex;
  gap: 8px;
}

.icon-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: .88rem;
  font-weight: 800;
  cursor: pointer;
}

.edit-btn {
  background: rgba(245, 158, 11, .18);
  color: #f8d18a;
}

.delete-btn {
  background: rgba(239, 68, 68, .14);
  color: #fca5a5;
}

@media (max-width: 960px) {
  .category-grid,
  .artist-grid,
  .event-grid,
  .audience-favorites-grid,
  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid,
  .form-layout,
  .founder-layout {
    grid-template-columns: 1fr;
  }

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

  .achievement-grid article:nth-child(2n + 1) {
    border-left: 0;
  }

  .founder-layout {
    gap: 36px;
  }

  .founder-portrait {
    width: min(100%, 520px);
  }

  .founder-quote {
    padding: 26px 20px;
  }

  .artist-directory-tools {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .directory-search {
    width: min(100%, 520px);
  }
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: #08111f;
    white-space: normal;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 28px 48px rgba(0, 0, 0, .42);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a,
  .nav-links > button {
    width: 100%;
    text-align: center;
    min-height: 46px;
  }

  .instagram-link,
  .admin-nav-btn {
    border-radius: 8px;
  }

  .nav-links .instagram-link {
    width: 42px;
    height: 42px;
    margin-inline: auto;
  }

  .nav-links .instagram-link svg {
    width: 20px;
    height: 20px;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .admin-access {
    min-height: 36px;
  }

  .whatsapp {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 720px) {

  .split {
    align-items: start;
    flex-direction: column;
  }

  .search-panel {
    flex-direction: column;
  }

  .search-panel button {
    padding: 14px;
  }

  .custom-artist-enquiry {
    align-items: stretch;
    flex-direction: column;
  }

  .hero {
    min-height: 640px;
  }
}

@media (max-width: 560px) {
  .category-grid,
  .artist-grid,
  .event-grid,
  .audience-favorites-grid,
  .features,
  .footer-grid,
  .admin-grid,
  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .artist-directory-tools,
  .directory-search {
    width: 100%;
  }

  .artist-directory-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .artist-directory-tools .filter-label select {
    width: 100%;
  }

  .founder-heading h2 {
    font-size: 2.3rem;
  }

  .logo-with-img span {
    font-size: .9rem;
  }

  .logo-with-img img {
    width: 42px;
    height: 42px;
  }

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

  .achievement-grid article,
  .achievement-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .achievement-grid article:first-child {
    border-top: 0;
  }

  .artist-actions,
  .form-actions {
    flex-direction: column;
  }

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

@media (min-width: 1401px) {
  .poster-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 185px));
  }
}

@media (max-width: 1400px) and (min-width: 961px) {
  .poster-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 185px));
  }
}

@media (max-width: 960px) and (min-width: 721px) {
  .poster-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 185px));
  }
}

/* Motion upgrade */
body {
  position: relative;
  isolation: isolate;
}

body::before {
  content: '';
  position: fixed;
  inset: -12%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 158, 11, .16), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(59, 130, 246, .10), transparent 24%),
    radial-gradient(circle at 50% 82%, rgba(239, 68, 68, .10), transparent 20%);
  filter: blur(18px);
  opacity: .72;
  animation: ambientDrift 24s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.hero::after {
  content: '';
  position: absolute;
  left: 8%;
  top: 8%;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, .18), transparent 68%);
  filter: blur(8px);
  opacity: .35;
  animation: softFloat 16s ease-in-out infinite alternate;
  pointer-events: none;
}

.category-grid button {
  transition: transform .28s ease, background-color .28s ease, box-shadow .28s ease;
}

body.page-ready .hero-content > *,
body.page-ready .section-heading,
body.page-ready .category-grid button,
body.page-ready .artist-card,
body.page-ready .upcoming-card,
body.page-ready .gallery-card,
body.page-ready .event-grid article,
body.page-ready .custom-artist-enquiry,
body.page-ready .achievement-grid article {
  animation: riseIn .72s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: var(--card-delay, 0ms);
}

body.page-ready .hero-content > *:nth-child(1) { animation-delay: 30ms; }
body.page-ready .hero-content > *:nth-child(2) { animation-delay: 90ms; }
body.page-ready .hero-content > *:nth-child(3) { animation-delay: 150ms; }
body.page-ready .hero-content > *:nth-child(4) { animation-delay: 210ms; }
body.page-ready .hero-content > *:nth-child(5) { animation-delay: 270ms; }
body.page-ready .hero-content > *:nth-child(6) { animation-delay: 330ms; }

body.page-ready .category-grid button:nth-child(1) { animation-delay: 40ms; }
body.page-ready .category-grid button:nth-child(2) { animation-delay: 80ms; }
body.page-ready .category-grid button:nth-child(3) { animation-delay: 120ms; }
body.page-ready .category-grid button:nth-child(4) { animation-delay: 160ms; }
body.page-ready .category-grid button:nth-child(5) { animation-delay: 200ms; }
body.page-ready .category-grid button:nth-child(6) { animation-delay: 240ms; }
body.page-ready .category-grid button:nth-child(7) { animation-delay: 280ms; }
body.page-ready .category-grid button:nth-child(8) { animation-delay: 320ms; }
body.page-ready .category-grid button:nth-child(9) { animation-delay: 360ms; }
body.page-ready .category-grid button:nth-child(10) { animation-delay: 400ms; }
body.page-ready .category-grid button:nth-child(11) { animation-delay: 440ms; }

.artist-card {
  transition: transform .28s ease, box-shadow .28s ease;
}

.artist-img img {
  transition: transform .55s ease, filter .55s ease;
}

.artist-card:hover,
.artist-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 28px 58px rgba(0, 0, 0, .42);
}

.artist-card:hover .artist-img img,
.artist-card:focus-within .artist-img img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.artist-card:hover .artist-art-form-badge,
.artist-card:focus-within .artist-art-form-badge {
  transform: translateY(-2px);
}

.artist-card:hover .artist-actions a,
.artist-card:hover .artist-actions button,
.artist-card:focus-within .artist-actions a,
.artist-card:focus-within .artist-actions button {
  transform: translateY(-1px);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ambientDrift {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
    opacity: .6;
  }
  100% {
    transform: translate3d(1.5%, 1%, 0) scale(1.05);
    opacity: .82;
  }
}

@keyframes softFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(18px, -12px, 0) scale(1.04);
  }
}

@keyframes categoryRibbonScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .hero::after,
  .category-ribbon-track,
  body.page-ready .hero-content > *,
  body.page-ready .section-heading,
  body.page-ready .category-grid button,
  body.page-ready .artist-card,
  body.page-ready .upcoming-card,
  body.page-ready .gallery-card,
  body.page-ready .event-grid article,
  body.page-ready .custom-artist-enquiry,
  body.page-ready .achievement-grid article,
  .artist-card,
  .artist-img img,
  .category-grid button {
    animation: none !important;
    transition: none !important;
  }

  .hero-video {
    display: none;
  }

  .category-ribbon {
    overflow-x: auto;
  }

  .category-ribbon-track {
    animation: none !important;
  }
}
