@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,700&family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #07080f;
  --bg-surface: rgba(255, 255, 255, 0.95);
  --bg-surface-hover: rgba(255, 255, 255, 0.98);
  --bg-surface-strong: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(168, 145, 102, 0.16);
  --glass-border-glow: rgba(168, 145, 102, 0.28);
  --text-main: #1c1c1c;
  --text-muted: #7d7569;
  --text-dim: #948c7e;
  --accent-red: #dc2626;
  --accent-crimson: #991b1b;
  --accent-gold: #a89166;
  --accent-gold-light: #d3ab6b;
  --accent-saffron: #b79d64;
  --primary-gradient: linear-gradient(135deg, #a89166 0%, #9b632e 50%, #694226 100%);
  --gold-gradient: linear-gradient(135deg, #c99645 0%, #9b632e 100%);
  --insta-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  --shadow-lg: 0 25px 50px -16px rgba(31, 25, 15, 0.18);
  --shadow-glow: 0 0 40px rgba(168, 145, 102, 0.16);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-full: 9999px;
  --container-max: 1240px;
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Modern Event Page Styles */
.event-hero-modern {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 15, 0.3) 0%, rgba(7, 8, 15, 0.7) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero-content {
  max-width: 800px;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-upcoming {
  background: rgba(22, 163, 74, 0.9);
  color: white;
  backdrop-filter: blur(8px);
}

.badge-past {
  background: rgba(100, 116, 139, 0.9);
  color: white;
  backdrop-filter: blur(8px);
}

.badge-featured {
  background: var(--gold-gradient);
  color: white;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.meta-item i {
  font-size: 1.5rem;
  color: var(--accent-gold-light);
}

.meta-item div {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.meta-value {
  font-size: 1rem;
  font-weight: 500;
}

.event-details-section {
  padding: 4rem 0;
  background: #f7f3eb;
}

.event-details-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.event-details-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

.video-hero-section {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 100%;
  border: none;
}

.gallery-section {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: #f5f5f5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

.gallery-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.description-section {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.description-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-main);
}

.event-sidebar {
  position: sticky;
  top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.card-body {
  padding: 1.5rem;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.info-row:last-child {
  border-bottom: none;
}

.info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  color: var(--accent-gold);
  font-size: 1.25rem;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.info-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
}

.card-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--glass-border);
  background: #f7f3eb;
}

.price-display {
  text-align: center;
  margin-bottom: 1rem;
}

.price-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.price-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.price-display.sold-out .price-label {
  color: var(--accent-red);
}

.price-display.sold-out .price-value {
  color: var(--accent-red);
}

.past-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(22, 163, 74, 0.1);
  border-radius: var(--radius-md);
  color: #16a34a;
  font-weight: 500;
  margin-bottom: 1rem;
}

.queue-info {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ticket-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f7f3eb;
  border-radius: var(--radius-md);
}

.ticket-info {
  display: flex;
  flex-direction: column;
}

.ticket-info strong {
  font-weight: 600;
  color: var(--text-main);
}

.ticket-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.ticket-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-secondary {
  background: var(--text-main);
  color: white;
}

.btn-secondary:hover {
  background: #000;
}

@media (max-width: 1024px) {
  .event-details-grid {
    grid-template-columns: 1fr;
  }
  
  .event-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 2rem 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-meta {
    grid-template-columns: 1fr;
  }
  
  .event-details-section {
    padding: 2rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  background-color: #f7f3eb;
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #07080f;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.serif-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

p {
  color: var(--text-muted);
}

/* Mobile event experience: the desktop composition remains unchanged. */
@media (max-width: 768px) {
  body.page-inset:has(.event-hero-modern) {
    background: #f3eee6;
    padding-bottom: 4.6rem;
  }

  .event-hero-modern {
    min-height: 0;
    display: block;
    background: #07080f;
    isolation: isolate;
  }

  .event-hero-modern .hero-background {
    position: relative;
    height: 52vw;
    min-height: 230px;
    max-height: 330px;
    background-position: center 28% !important;
  }

  .event-hero-modern .hero-overlay {
    top: auto;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(7, 8, 15, .82));
    transform: translateY(100%);
  }

  .event-hero-modern .hero-container {
    max-width: none;
    margin: 0;
    padding: 0 1.1rem 1.5rem;
    background: #07080f;
  }

  .event-hero-modern .hero-content {
    max-width: none;
    transform: translateY(-2.2rem);
  }

  .event-hero-modern .hero-badges {
    gap: .45rem;
    margin-bottom: .85rem;
  }

  .event-hero-modern .badge {
    padding: .42rem .7rem;
    font-size: .64rem;
    letter-spacing: .07em;
  }

  .event-hero-modern .hero-title {
    max-width: 12ch;
    margin-bottom: .8rem;
    font-size: clamp(2.45rem, 12vw, 4rem);
    line-height: .92;
    text-wrap: balance;
  }

  .event-hero-modern .hero-description {
    max-width: 34rem;
    margin-bottom: 1.15rem;
    font-size: .88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .72);
  }

  .event-hero-modern .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
  }

  .event-hero-modern .meta-item {
    min-width: 0;
    align-items: flex-start;
    gap: .55rem;
    padding: .62rem .65rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: .7rem;
    background: rgba(255, 255, 255, .06);
  }

  .event-hero-modern .meta-item i {
    flex: 0 0 1rem;
    margin-top: .15rem;
    font-size: .9rem;
    color: var(--accent-gold-light);
  }

  .event-hero-modern .meta-label {
    margin-bottom: .08rem;
    font-size: .56rem;
    letter-spacing: .1em;
  }

  .event-hero-modern .meta-value {
    display: block;
    overflow-wrap: anywhere;
    font-size: .74rem;
    line-height: 1.25;
  }

  .event-details-section {
    padding: 1.35rem 0 2rem;
    background: #f3eee6;
  }

  .event-details-section > .container {
    width: 100%;
    padding: 0 1rem;
  }

  .event-details-grid {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
  }

  .event-sidebar {
    position: static;
    order: -1;
    gap: .85rem;
  }

  .event-details-main {
    gap: 1.1rem;
  }

  .sidebar-card,
  .gallery-section,
  .description-section {
    border: 1px solid rgba(168, 145, 102, .2);
    border-radius: 1rem;
    box-shadow: 0 12px 28px rgba(31, 25, 15, .08);
  }

  .sidebar-card:first-child {
    overflow: visible;
    border-color: rgba(168, 145, 102, .4);
    box-shadow: 0 16px 30px rgba(31, 25, 15, .12);
  }

  .card-header {
    padding: 1rem 1rem .75rem;
  }

  .card-header h3 {
    font-size: 1.35rem;
  }

  .card-body {
    padding: .2rem 1rem .75rem;
  }

  .info-row {
    gap: .7rem;
    padding: .72rem 0;
  }

  .info-icon {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: .65rem;
    font-size: .95rem;
  }

  .info-label {
    font-size: .58rem;
  }

  .info-value {
    font-size: .82rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .card-footer {
    padding: 1rem;
    border-radius: 0 0 1rem 1rem;
  }

  .price-display {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: .85rem;
  }

  .price-label {
    margin: 0;
    font-size: .72rem;
  }

  .price-value {
    font-size: 1.65rem;
  }

  .card-footer .btn {
    min-height: 3.2rem;
    border-radius: .7rem;
    font-size: .86rem;
  }

  .queue-info {
    margin-top: .7rem;
    font-size: .7rem;
  }

  .ticket-list {
    gap: .55rem;
  }

  .ticket-item {
    gap: .8rem;
    padding: .8rem;
    border-radius: .7rem;
  }

  .ticket-info {
    min-width: 0;
  }

  .ticket-info strong,
  .ticket-info span {
    overflow-wrap: anywhere;
  }

  .ticket-info strong {
    font-size: .82rem;
  }

  .ticket-info span {
    font-size: .7rem;
    line-height: 1.35;
  }

  .ticket-price {
    flex: 0 0 auto;
    font-size: 1rem;
  }

  .video-hero-section {
    border-radius: 1rem;
    box-shadow: 0 12px 28px rgba(31, 25, 15, .12);
  }

  .gallery-section,
  .description-section {
    padding: 1rem;
  }

  .section-header {
    margin-bottom: 1rem;
  }

  .section-header h2 {
    gap: .5rem;
    font-size: 1.5rem;
    line-height: 1.05;
  }

  .section-subtitle {
    margin-top: .4rem;
    font-size: .75rem;
    line-height: 1.4;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
  }

  .gallery-item {
    border-radius: .65rem;
  }

  .gallery-overlay {
    opacity: 1;
    inset: auto .45rem .45rem auto;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: rgba(7, 8, 15, .72);
  }

  .gallery-overlay i {
    font-size: .7rem;
  }

  .gallery-footer {
    align-items: flex-start;
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: .68rem;
    line-height: 1.35;
  }

  .gallery-footer .btn {
    width: 100%;
    margin: .3rem 0 0 !important;
    min-height: 2.8rem;
    font-size: .76rem;
  }

  .description-content {
    font-size: .9rem;
    line-height: 1.7;
  }

  .waiting-section {
    padding: 2rem 1rem;
  }

  .waiting-section .wrap,
  .waiting-section .wrap-narrow {
    width: 100%;
  }

  .waiting-section .waiting-card {
    padding: 1rem;
    border-radius: 1rem;
  }

  .waiting-card-header h2 {
    font-size: 1.7rem;
    line-height: 1.05;
  }

  .waiting-sub {
    font-size: .78rem;
    line-height: 1.5;
  }

  .waiting-perks-grid {
    grid-template-columns: 1fr;
    gap: .55rem;
  }

  .waiting-perk-item {
    padding: .65rem;
  }

  .waiting-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .45rem;
  }

  .waiting-tab-btn {
    min-height: 3rem;
    padding: .55rem .4rem;
    font-size: .68rem;
    line-height: 1.15;
  }

  .waiting-form,
  .waiting-tab-content .form-grid {
    grid-template-columns: 1fr;
    gap: .8rem;
  }

  .waiting-form .form-group,
  .waiting-form .form-group.full,
  .waiting-form .form-submit.full,
  .waiting-tab-content .form-group.full {
    grid-column: 1;
  }

  .waiting-form input,
  .waiting-form select,
  .waiting-form textarea {
    min-height: 3rem;
    font-size: .88rem;
  }

  .waiting-form textarea {
    min-height: 5rem;
  }

  .waiting-form .btn {
    min-height: 3.25rem;
    padding-inline: .8rem;
    font-size: .8rem;
  }

  body.page-inset:has(.event-hero-modern) > #main-content > .section:last-child {
    padding: 1.2rem 1rem 1rem;
  }

  body.page-inset:has(.event-hero-modern) > #main-content > .section:last-child .btn {
    width: 100%;
    min-height: 2.9rem;
  }
}

@media (max-width: 380px) {
  .event-hero-modern .hero-meta {
    grid-template-columns: 1fr;
  }

  .waiting-tabs {
    grid-template-columns: 1fr;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Container */
.container {
  width: min(100% - 2.5rem, var(--container-max));
  margin: 0 auto;
}

/* Eyebrow Pill */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

/* Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 235, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168, 145, 102, 0.2);
  padding: 1.1rem 2rem;
  transition: all var(--transition-smooth);
}
.site-header.scrolled {
  padding: 0.8rem 2rem;
  background: rgba(247, 243, 235, 0.98);
  box-shadow: 0 10px 30px rgba(31, 25, 15, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.brand-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07080f;
  font-size: 1.2rem;
  font-weight: 800;
}
.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
}
.brand-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.4rem 0;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: width var(--transition-fast);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-gold {
  background: var(--gold-gradient);
  color: #07080f;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  font-weight: 800;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.45);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}
.section-surface {
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}
.section-alt {
  background: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(168, 145, 102, 0.08);
  border-bottom: 1px solid rgba(168, 145, 102, 0.08);
}

.section-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}
.section-hero .hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
  transform: scale(1.02);
}
.section-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 45%), linear-gradient(180deg, rgba(7, 8, 15, 0.2) 0%, rgba(7, 8, 15, 0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  padding: 3rem 1.5rem;
}
.hero-content .eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent-gold);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(168, 145, 102, 0.2);
  padding: 0.6rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
}
.section-hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  margin-bottom: 1.25rem;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
}
.hero-copy {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-actions .btn {
  min-width: 160px;
}
.hero-actions .btn-primary {
  background: var(--gold-gradient);
  color: #07080f;
}
.hero-actions .btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

.section-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.section-intro.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.section-intro h2 {
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent-gold);
  font-weight: 700;
}
.link-arrow::after {
  content: '→';
}

.cards-grid, .experience-grid {
  display: grid;
  gap: 1.75rem;
}
.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.experience-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.event-card {
  background: #ffffff;
  border: 1px solid rgba(168, 145, 102, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}
.event-visual {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.event-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 8, 15, 0.75) 100%);
}
.event-copy {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.event-label {
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}
.event-card h3 {
  color: var(--text-main);
  margin-bottom: 0.75rem;
}
.event-card p {
  color: var(--text-muted);
  line-height: 1.7;
}
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: auto;
}
.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-sm {
  align-self: flex-start;
  padding: 0.85rem 1.25rem;
}

.experience-card {
  background: #fff;
  border: 1px solid rgba(168, 145, 102, 0.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(168, 145, 102, 0.05);
}
.experience-card h3 {
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}
.experience-card p {
  color: var(--text-muted);
}

.cta-panel {
  background: linear-gradient(135deg, rgba(168,145,102,0.12), rgba(255,255,255,0.95));
  border: 1px solid rgba(168, 145, 102, 0.18);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-panel h2 {
  margin-bottom: 1rem;
}
.cta-panel .btn-lg {
  font-size: 1rem;
}

.site-footer {
  background: #f7f3eb;
  border-top: 1px solid rgba(168, 145, 102, 0.2);
  padding: 4rem 0 2rem;
  color: var(--text-dim);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a,
.footer-contact a,
.footer-contact span {
  color: var(--text-dim);
}
.footer-note {
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #f7f3eb;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-smooth);
    z-index: 100;
  }
  .nav.nav-open {
    right: 0;
  }
  .section-intro.split {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.section-intro {
  margin-bottom: 3.5rem;
}
.section-intro.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.section-intro h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.95rem;
}
.link-arrow:hover {
  gap: 0.8rem;
  color: #fff;
}

/* HERO SECTION */
.section-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}
.section-hero-small {
  min-height: 48vh;
  padding: 5rem 0 3rem;
}
.hero-background-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/hero_concert_bg.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) contrast(1.1);
  transform: scale(1.03);
  transition: transform 10s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    radial-gradient(circle at 50% 50%, rgba(7, 8, 15, 0.4), rgba(7, 8, 15, 0.95)),
    linear-gradient(180deg, rgba(7, 8, 15, 0.3) 0%, #07080f 100%);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 30%, #cbd5e1 70%, #f59e0b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-copy {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 680px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* CARDS GRID */
.cards-grid, .testimonial-grid, .experience-grid {
  display: grid;
  gap: 2rem;
}
.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.experience-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* INSTAGRAM ARCHIVE GALLERY STYLES */
.insta-profile-header {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 860px;
  margin: 0 auto 3rem;
  padding: 2rem;
  background: var(--bg-surface-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
}
.insta-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}
.insta-avatar-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 3px;
  background: var(--insta-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-smooth);
}
.insta-avatar-ring:hover {
  transform: scale(1.05);
}
.insta-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #07080f;
  background: #111;
}

.insta-info {
  flex-grow: 1;
}
.insta-handle-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}
.insta-handle {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
}
.badge-verified {
  color: #3b82f6;
  font-size: 1.1rem;
}
.insta-stats {
  display: flex;
  gap: 1.8rem;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}
.insta-stats strong {
  color: #fff;
  font-weight: 700;
}
.insta-bio {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.insta-bio strong {
  color: #fff;
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

/* INSTAGRAM 3X3 GRID */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 1000px;
  margin: 0 auto;
}
.insta-card {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0d111e;
  overflow: hidden;
  cursor: pointer;
}
.insta-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), opacity 300ms ease;
}
.insta-card:hover .insta-card-img {
  transform: scale(1.06);
  opacity: 0.88;
}
.insta-badge-type {
  position: absolute;
  top: 10px;
  right: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 3;
}
.insta-card:hover .insta-overlay {
  opacity: 1;
}
.insta-overlay-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* INSTAGRAM LIGHTBOX MODAL */
.insta-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(4, 5, 10, 0.94);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}
.insta-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.insta-lightbox-card {
  background: #0b0e1a;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  max-width: 1020px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9);
  position: relative;
}
.insta-lightbox-media {
  flex: 1.4;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}
.insta-lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}
.insta-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}
.insta-lightbox-nav:hover {
  background: #fff;
  color: #000;
}
.insta-nav-prev { left: 1rem; }
.insta-nav-next { right: 1rem; }

.insta-lightbox-sidebar {
  width: 380px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--glass-border);
  background: #0a0d18;
}
.insta-sidebar-header {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.insta-sidebar-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.insta-sidebar-footer {
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.3);
}

/* EVENT FILTER PANEL */
.filter-panel {
  background: var(--bg-surface-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 3rem;
}
.filters {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.filter-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 180px;
}
.filter-item span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
}
.filter-item select, .filter-item input {
  background: rgba(7, 8, 15, 0.7);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  color: var(--text-main);
  cursor: pointer;
}
.filter-item select:focus, .filter-item input:focus {
  border-color: var(--accent-gold);
}

.admin-shell,
.admin-dashboard-page,
.admin-login-page {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(7, 8, 15, 0.95) 0%, rgba(11, 13, 23, 0.98) 100%);
}
.admin-shell {
  display: grid;
  place-items: center;
  padding: 4rem 1rem;
}
.admin-shell .container,
.admin-dashboard-page .container {
  max-width: 1080px;
}
.admin-login-page body,
.admin-dashboard-page body {
  background: #07080f;
}
.admin-login-page .admin-shell {
  padding: 3rem 1rem;
}
.admin-login-card,
.admin-panel {
  background: rgba(18, 22, 36, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.admin-login-card {
  width: min(100%, 520px);
  padding: 3rem;
}
.admin-login-card .login-header {
  margin-bottom: 2rem;
}
.admin-login-card .login-header h1 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}
.admin-login-card .login-note {
  margin-top: 1.5rem;
  color: var(--text-muted);
}
.admin-dashboard-page .site-header.compact-header {
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-dashboard-page .nav {
  gap: 1rem;
}
.admin-panel {
  padding: 2rem;
}
.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
.admin-list {
  display: grid;
  gap: 1rem;
}
.admin-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(7, 8, 15, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
}
.admin-list-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.alert {
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.alert.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #d9f99d;
}
.alert.warning {
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #facc15;
}
.small-note {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.8rem;
}
.contact-form label {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(7, 8, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--text-main);
  padding: 0.95rem 1rem;
}
.contact-form textarea {
  min-height: 120px;
}
.contact-form button {
  margin-top: 0.5rem;
}

.admin-dashboard-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.dashboard-subtitle {
  color: var(--text-muted);
  max-width: 620px;
  margin-top: 0.75rem;
}
.dashboard-header-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}
.dashboard-action-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.dashboard-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.dashboard-stat strong {
  display: block;
  font-size: 2.75rem;
  margin: 1rem 0;
  color: #fff;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dashboard-section {
  padding: 0;
}

.admin-dashboard-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
.admin-sidebar {
  position: sticky;
  top: 1.5rem;
  align-self: start;
  background: rgba(18, 22, 36, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}
.sidebar-brand h2 {
  margin: 0.75rem 0 0.75rem;
  font-size: 1.75rem;
  line-height: 1.1;
}
.sidebar-brand .small-note {
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.sidebar-user-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}
.sidebar-user-avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(220, 38, 38, 0.18));
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.sidebar-user-info {
  min-width: 0;
}
.sidebar-user-name {
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-user-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.sidebar-section {
  margin-top: 2rem;
}
.sidebar-section h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}
.sidebar-nav {
  display: grid;
  gap: 0.75rem;
}
.sidebar-nav a {
  display: block;
  padding: 0.95rem 1rem;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.25);
  color: #fff;
}
.sidebar-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: var(--radius-lg);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.summary-row:last-child {
  border-bottom: none;
}
.summary-row strong {
  color: #fff;
}
.sidebar-actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.admin-main-panel {
  min-width: 0;
}
.admin-page-header {
  margin-bottom: 2rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.admin-page-header .admin-dashboard-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}
.admin-page-header h1 {
  font-size: clamp(2rem, 3vw, 2.65rem);
  margin-bottom: 0.85rem;
}
.admin-page-header .dashboard-subtitle {
  max-width: 700px;
  margin-top: 0.75rem;
}
.admin-page-header .dashboard-action-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.dashboard-section h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
}
.admin-panel {
  background: rgba(18, 22, 36, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}
.dashboard-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

@media (max-width: 1024px) {
  .admin-dashboard-layout {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 720px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-header-actions {
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .admin-dashboard-layout {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 720px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-header-actions {
    align-items: flex-start;
  }
}

/* EVENT CARDS */
.event-card {
  background: var(--bg-surface-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(12px);
}
.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-glow);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.event-visual {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.event-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 22, 36, 0.95) 100%);
}
.event-visual-1 { background-image: url('../images/event_himalayan_dawn.png'); }
.event-visual-2 { background-image: url('../images/event_mandala_moon.png'); }
.event-visual-3 { background-image: url('../images/event_MamaGhar_together.png'); }

.event-copy {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.event-label {
  display: inline-block;
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.event-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
  color: #fff;
}
.event-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  flex-grow: 1;
}
.event-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.event-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.event-meta i {
  color: var(--accent-gold);
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-md);
  font-family: 'Outfit', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-gold-light);
  margin-bottom: 1.2rem;
  width: fit-content;
}

/* FESTIVAL EXPERIENCE */
.experience-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: var(--radius-xl);
  transition: all var(--transition-smooth);
}
.experience-card:hover {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-4px);
}
.experience-card h3 {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
  font-family: 'Cormorant Garamond', serif;
}

/* TESTIMONIAL CARDS */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(168, 145, 102, 0.12);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(31, 25, 15, 0.06);
  font-style: italic;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.testimonial-card span {
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-gold);
  display: block;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.feature-card {
  background: #ffffff;
  border: 1px solid rgba(168, 145, 102, 0.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(31, 25, 15, 0.06);
  transition: transform var(--transition-fast);
}
.feature-card:hover {
  transform: translateY(-6px);
}
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(168, 145, 102, 0.12);
  color: var(--accent-gold);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}
.feature-card h3 {
  margin-bottom: 0.85rem;
}
.feature-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

.trust-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.trust-card {
  background: #ffffff;
  border: 1px solid rgba(168, 145, 102, 0.12);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 18px 35px rgba(31, 25, 15, 0.05);
}
.trust-card strong {
  font-size: 2rem;
  color: var(--text-main);
}
.trust-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}
.about-copy p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.about-image {
  min-height: 420px;
  border-radius: var(--radius-3xl, 48px);
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 70px rgba(31, 25, 15, 0.1);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA PANEL */
.cta-panel {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-glow);
}
.cta-panel h2 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

/* FOOTER */
.site-footer {
  background: #04050a;
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-note {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* FLOATING AUDIO PLAYER BAR */
.audio-player-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  background: rgba(12, 16, 28, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), var(--shadow-glow);
  width: min(92%, 620px);
  transition: all var(--transition-smooth);
}
.audio-track-info {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-grow: 1;
  min-width: 0;
}
.audio-thumb {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  animation: spin 12s linear infinite paused;
}
.audio-player-bar.playing .audio-thumb {
  animation-play-state: running;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}
.audio-details {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  display: block;
}
.audio-artist {
  font-size: 0.78rem;
  color: var(--accent-gold);
}
.audio-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.audio-play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform var(--transition-fast);
}
.audio-play-btn:hover {
  transform: scale(1.08);
}
#audio-visualizer {
  height: 24px;
  width: 80px;
}

/* INTERACTIVE TICKET MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 5, 10, 0.85);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: #0f1322;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-xl);
  width: min(100%, 680px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
}
.modal-overlay.active .modal-card {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal-close:hover {
  background: var(--accent-red);
}

.ticket-pass-preview {
  background: linear-gradient(135deg, #181d33 0%, #0d101d 100%);
  border: 1px dashed var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ticket-qr {
  width: 80px;
  height: 80px;
  background: #fff;
  padding: 6px;
  border-radius: 8px;
}

/* FAQ ACCORDION */
.faq-grid {
  display: grid;
  gap: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-surface-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-header h3 {
  font-size: 1.15rem;
}
.faq-icon {
  color: var(--accent-gold);
  transition: transform var(--transition-fast);
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}
.faq-item.open .faq-content {
  max-height: 300px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #07080f;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    transition: right var(--transition-smooth);
    z-index: 100;
  }
  .nav.nav-open {
    right: 0;
  }
  .section-intro.split {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .insta-profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .insta-stats {
    justify-content: center;
  }
  .insta-lightbox-card {
    flex-direction: column;
    max-height: 95vh;
  }
  .insta-lightbox-sidebar {
    width: 100%;
  }
}

  /* Final mobile cascade for event pages. These neutralize shared page rules only here. */
  @media (max-width: 768px) {
    body.page-inset:has(.event-hero-modern) .event-hero-modern .hero-container {
      width: 100%;
    }

    body.page-inset:has(.event-hero-modern) .event-hero-modern .hero-content {
      width: 100%;
      padding: 0;
      display: block;
    }

    body.page-inset:has(.event-hero-modern) .event-hero-modern .hero-overlay {
      top: auto;
      bottom: 0;
      height: 70%;
      transform: none;
    }

    body.page-inset:has(.event-hero-modern) .event-details-grid {
      align-items: stretch;
    }

    body.page-inset:has(.event-hero-modern) .event-sidebar {
      width: 100%;
    }
  }
