/* Pulse — light theme design system */
:root {
  --background: #fafbfc;
  --foreground: #0f172a;
  --card: #ffffff;
  --card-muted: #f8fafc;
  --border: #e2e8f0;
  --border-soft: rgba(226, 232, 240, 0.6);
  --muted: #64748b;
  --primary: #2563eb;
  --brand: #2563eb;
  --brand-hover: #1d4ed8;
  --gold: #d97706;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 4px 24px rgba(37, 99, 235, 0.15);
}

* { box-sizing: border-box; }

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

h1, h2, h3, h4, .font-display {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

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

.site { display: flex; flex-direction: column; min-height: 100vh; }

.text-gradient {
  background: linear-gradient(135deg, var(--brand), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted { color: var(--muted); }
.text-primary { color: var(--primary); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(250, 251, 252, 0.72);
  backdrop-filter: blur(16px);
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .site-header-inner { padding: 0 2.5rem; }
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  background: var(--brand);
  box-shadow: var(--shadow-glow);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
}

.brand-logo {
  height: 2.25rem;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  background: transparent;
  display: block;
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  border-radius: var(--radius);
  transition: color 0.2s;
}

.nav-link:hover { color: var(--foreground); }
.nav-link.active { color: var(--foreground); }

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .header-actions { display: flex; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: opacity 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-ghost {
  padding: 0.375rem 0.875rem;
  background: transparent;
  color: var(--muted);
}
.btn-ghost:hover { color: var(--foreground); background: var(--card-muted); }

.btn-brand {
  padding: 0.375rem 1rem;
  background: var(--brand);
  color: #fff;
}
.btn-brand:hover { opacity: 0.9; }

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-outline {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}
.btn-outline:hover { background: var(--card-muted); }

.menu-toggle {
  display: flex;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-toggle { display: none; }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1.5rem;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  border-radius: var(--radius);
}
.mobile-nav a:hover { background: #f1f5f9; color: var(--foreground); }

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.4);
}

.site-footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 1.5rem;
}

@media (min-width: 768px) {
  .site-footer-grid { grid-template-columns: repeat(4, 1fr); }
  .site-footer-brand { grid-column: span 2; }
}

.site-footer h4 {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.site-footer a:hover { color: var(--foreground); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--muted);
}

.social-links a:hover { color: var(--foreground); }

.site-footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .site-footer-grid,
  .site-footer-bottom { padding-left: 2.5rem; padding-right: 2.5rem; }
}

/* Landing: header + hero = 100vh */
.landing-shell {
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.landing-shell .site-header {
  flex-shrink: 0;
}

.hero-landing {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-landing-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-landing-content { padding: 2rem 2.5rem 2.5rem; }
}

.hero-full {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-full-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-full-bg-default {
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 45%, #fae8ff 100%);
}

.hero-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.82) 45%,
    rgba(250, 251, 252, 0.55) 100%
  );
}

.hero-full-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-full-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-full-content { padding: 8rem 2.5rem 5rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-badge .fa-sparkles,
.hero-badge i { color: var(--gold); }

.hero-title {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.hero-lead {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Sections */
.page-section {
  width: 100%;
  padding: 5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .page-section { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
}

.value-section {
  width: 100%;
  border-top: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.5);
  padding: 5rem 1.5rem;
}

.value-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
}

.value-card h3 {
  margin: 1rem 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.value-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 50%, #faf5ff 100%);
  padding: 2.5rem;
}

@media (min-width: 768px) {
  .cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem;
  }
}

.cta-band-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-band-body { position: relative; max-width: 36rem; }
.cta-band h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
.cta-band p { margin: 0.75rem 0 0; color: var(--muted); }

/* Event card */
.event-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  background: var(--card);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.event-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.event-card-media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 50%, #fae8ff 100%);
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.event-card:hover .event-card-media img { transform: scale(1.04); }

.sold-out-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
}

.event-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }

.event-card-body h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.event-meta {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-meta i { width: 1rem; text-align: center; color: var(--primary); }

.event-card-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
}

.event-slots { color: var(--muted); }

.event-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  padding: 1rem 1.25rem 0;
}

.event-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  flex: 1;
}

.event-card-actions .btn-outline {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
}

.events-grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .events-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .events-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.events-grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .events-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .events-grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .events-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Events page hero band */
.events-page-hero {
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(180deg, #f8fafc 0%, var(--background) 100%);
}

.events-page-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; margin: 0; }

.events-search-row { margin-top: 2rem; max-width: 36rem; }

.search-input-wrap { position: relative; }

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.875rem;
  pointer-events: none;
}

.search-input { padding-left: 2.75rem !important; height: 3rem; }

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  transition: 0.2s;
}

.pill-btn:hover, .pill-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.empty-state {
  max-width: 28rem;
  margin: 0 auto;
  padding: 2.5rem;
  text-align: center;
  border-radius: var(--radius-xl);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.hidden { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  padding: 2rem;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.2);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.modal-title { font-size: 1.35rem; margin: 0; }
.modal-event-name { margin: 0.35rem 0 0; font-size: 0.9rem; }
.modal-price-line { margin: 0.75rem 0 1.25rem; font-size: 0.875rem; color: var(--muted); }

.payment-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
}

.payment-overlay.hidden { display: none; }

.payment-overlay-panel {
  text-align: center;
  max-width: 360px;
  color: #fff;
}

.payment-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: payment-spin 0.8s linear infinite;
}

@keyframes payment-spin {
  to { transform: rotate(360deg); }
}

.payment-overlay-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.payment-overlay-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.payment-result-panel { text-align: center; padding-top: 2.5rem; }

.payment-result-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
}

.payment-result-icon.success {
  background: #dcfce7;
  color: #16a34a;
}

.payment-result-icon.error {
  background: #fee2e2;
  color: #dc2626;
}

.payment-result-icon.hidden { display: none; }

/* About page (Wellthy-inspired) */
.about-page { padding-bottom: 0; }

.about-intro-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  padding-top: 2.5rem;
}

@media (min-width: 768px) {
  .about-intro-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.about-title { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; margin: 0; line-height: 1.1; }

.about-intro-text { font-size: 1.05rem; line-height: 1.7; margin: 0; }

.about-hero-image {
  margin-top: 2.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 21/9;
}

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

.about-stats { padding-top: 3rem; padding-bottom: 3rem; }

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.about-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.about-stat span { font-size: 0.875rem; }

.about-vision { padding-bottom: 4rem; }

.about-vision-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .about-vision-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.about-vision-heading { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 600; margin: 0; line-height: 1.2; }

.about-vision-copy { display: flex; flex-direction: column; gap: 2rem; }

.about-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--foreground);
  margin: 0 0 0.5rem;
}

.about-process { padding-bottom: 4rem; }

.about-process-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .about-process-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
}

.process-card {
  background: #111827;
  color: #f9fafb;
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-steps li {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.process-steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 2.5rem;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.process-steps strong { display: block; margin-bottom: 0.25rem; }
.process-steps p { margin: 0; font-size: 0.85rem; color: #9ca3af; line-height: 1.5; }

.about-services { padding-bottom: 4rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.service-card img { width: 100%; height: 100%; object-fit: cover; }

.service-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.about-cta-card {
  background: #111827;
  color: #f9fafb;
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-cta-card { grid-template-columns: 1fr auto; align-items: center; }
}

.about-newsletter {
  display: flex;
  gap: 0.5rem;
  max-width: 320px;
}

.about-newsletter .np-input { flex: 1; }

.about-cta-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.about-cta-links a:hover { color: #fff; }

/* Event detail */
.event-detail-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2rem;
}

.event-detail-hero img { width: 100%; height: min(400px, 45vh); object-fit: cover; display: block; }

.event-detail-hero-placeholder {
  width: 100%;
  height: min(400px, 45vh);
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 50%, #fae8ff 100%);
}

.event-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.8), transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #fff;
}

.event-detail-status { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.9; }

.event-detail-hero-overlay h1 { margin: 0.5rem 0 0; font-size: clamp(1.75rem, 4vw, 2.5rem); color: #fff; }

.event-detail-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .event-detail-layout { grid-template-columns: 1fr 300px; align-items: start; }
}

.detail-block { padding: 1.5rem 2rem; margin-bottom: 1rem; }
.detail-block h2 { font-size: 1.15rem; margin: 0 0 1rem; }
.detail-desc { line-height: 1.7; margin: 0; }

.detail-facts {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.detail-label { font-size: 0.7rem; text-transform: uppercase; color: var(--muted); margin: 0 0 0.35rem; }

.lineup-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.lineup-tags span {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.875rem;
  font-weight: 500;
}

.detail-sidebar { padding: 1.5rem; position: sticky; top: 5rem; }
.detail-price { font-size: 2rem; font-weight: 700; color: var(--brand); margin: 0.25rem 0; }
.detail-note { font-size: 0.8rem; margin: 0 0 1.25rem; }

.messages-wrap { padding-bottom: 0 !important; max-width: 1280px; }

/* About minimal */
.about-page-minimal { padding-bottom: 0; }

.about-hero-minimal {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
}

.about-hero-minimal-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.about-hero-minimal-bg-default {
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 50%, #fae8ff 100%);
}

.about-hero-minimal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.75) 40%, rgba(255,255,255,0.35) 100%);
}

.about-hero-minimal-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 3rem;
  max-width: 640px;
}

.about-hero-minimal-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.05;
}

.about-hero-minimal-content p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--muted);
}

.about-stats-minimal { padding: 3rem 0; border-bottom: 1px solid var(--border-soft); }

.about-stats-minimal .about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-stats-minimal .about-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.about-stats-minimal strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.about-vision-minimal { padding: 4rem 0; }

.about-vision-minimal-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .about-vision-minimal-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
}

.about-vision-minimal h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.about-process-minimal {
  background: #111827;
  color: #f9fafb;
  border-radius: 0;
  padding: 2.5rem 2rem;
}

.about-process-minimal ol {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 480px;
}

.about-process-minimal li {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.about-process-minimal li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 2.5rem;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.about-process-minimal li span {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.about-process-minimal strong { display: block; margin-bottom: 0.25rem; }
.about-process-minimal p { margin: 0; font-size: 0.85rem; color: #9ca3af; }

.event-price {
  font-weight: 700;
  color: var(--foreground);
}

.event-price small {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.75rem;
}

/* Forms & pages */
.page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

@media (min-width: 1024px) {
  .page-wrap { padding: 2.5rem 2.5rem 5rem; }
}

.surface-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.np-input, .np-select, .np-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--foreground);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.np-input:focus, .np-select:focus, .np-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-row { margin-bottom: 1rem; }
.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.alert-info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}

.demo-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.events-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .events-grid { grid-template-columns: repeat(3, 1fr); }
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.show { opacity: 1; transform: none; }

.hidden { display: none !important; }
