:root {
  --bg-deep: #0a0612;
  --bg-card: #120d1f;
  --bg-elevated: #1a1228;
  --neon-purple: #a855f7;
  --neon-cyan: #22d3ee;
  --neon-gold: #fbbf24;
  --neon-pink: #ec4899;
  --text: #f3f0ff;
  --text-muted: #9b8fb8;
  --border: rgba(168, 85, 247, 0.25);
  --glow: 0 0 30px rgba(168, 85, 247, 0.35);
  --radius: 14px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168, 85, 247, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(34, 211, 238, 0.08), transparent);
}

img { max-width: 100%; height: auto; display: block; }
img[loading="lazy"] { content-visibility: auto; }
a { color: var(--neon-cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--neon-gold); }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 6, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo span { color: var(--neon-purple); }

.nav-main {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.nav-main a {
  color: var(--text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
}
.nav-main a:hover,
.nav-main a.active {
  color: var(--text);
  background: rgba(168, 85, 247, 0.15);
}

.search-global {
  display: flex;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  min-width: 200px;
  flex: 1;
  max-width: 320px;
}
.search-global input {
  background: none;
  border: none;
  color: var(--text);
  width: 100%;
  outline: none;
  font-size: 0.85rem;
}
.search-global input::placeholder { color: var(--text-muted); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,6,18,0.4) 0%, rgba(10,6,18,0.85) 70%, var(--bg-deep) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1rem;
  max-width: 720px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 0 40px rgba(168, 85, 247, 0.5);
}
.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  color: #fff;
  box-shadow: var(--glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.55);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--neon-purple);
  color: var(--neon-purple);
}
.btn-outline:hover { background: rgba(168, 85, 247, 0.12); color: var(--neon-purple); }

/* Sections */
section { padding: 4rem 0; }
.section-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Quick search */
.quick-search {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}
.quick-search-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--glow);
}
.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}
.chip {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.chip:hover, .chip.active {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(34, 211, 238, 0.08);
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
button.card {
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.card-img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.card-body { padding: 1.25rem; }
.card-body h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.rating { color: var(--neon-gold); }
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  background: rgba(168, 85, 247, 0.15);
  color: var(--neon-purple);
}

/* Destinations */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(10,6,18,0.95));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.dest-overlay h3 { font-size: 1.2rem; }
.dest-overlay p { font-size: 0.8rem; color: var(--text-muted); }

/* Events slider */
.events-slider {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-purple) var(--bg-elevated);
}
.event-slide {
  flex: 0 0 min(320px, 85vw);
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.event-slide img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.event-slide .card-body { padding: 1rem; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat-item {
  padding: 2rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.35rem; }

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(34,211,238,0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 1.5rem auto 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  color: var(--text);
  outline: none;
}
.socials {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.socials a {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
}
.socials a:hover { border-color: var(--neon-purple); color: var(--neon-purple); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
  background: var(--bg-card);
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-top-grid h4,
.footer-map-block h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neon-purple);
  margin-bottom: 0.75rem;
}
.footer-top-grid ul,
.social-links-list { list-style: none; }
.footer-top-grid li { margin-bottom: 0.4rem; }
.footer-top-grid a,
.social-links-list a { color: var(--text-muted); font-size: 0.9rem; }
.footer-top-grid a:hover { color: var(--text); }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.company-data { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.company-data a { color: var(--neon-cyan); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--neon-gold);
  background: rgba(251, 191, 36, 0.08);
}
.payment-methods { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pay-badge {
  font-size: 0.7rem;
  padding: 0.3rem 0.55rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
}
.footer-map-block { margin-bottom: 1.5rem; }
.footer-map {
  width: 100%;
  height: 220px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  filter: grayscale(30%) contrast(1.1);
}
.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Cookie banner — fixed on visit */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(18, 13, 31, 0.97);
  border-top: 1px solid var(--border);
  padding: 1.25rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.9rem; color: var(--text-muted); flex: 1; min-width: 260px; margin: 0; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }

/* AI assistant */
.ai-assistant { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 150; }
.ai-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  box-shadow: var(--glow);
  transition: transform 0.2s;
}
.ai-fab:hover, .ai-fab.open { transform: scale(1.08); }
.ai-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: min(360px, calc(100vw - 2rem));
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  overflow: hidden;
}
.ai-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.ai-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.ai-messages {
  height: 260px;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ai-msg {
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-size: 0.85rem;
  max-width: 90%;
  line-height: 1.45;
}
.ai-msg.bot {
  background: var(--bg-elevated);
  color: var(--text-muted);
  align-self: flex-start;
}
.ai-msg.user {
  background: rgba(168, 85, 247, 0.2);
  color: var(--text);
  align-self: flex-end;
}
.ai-input-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--border);
}
.ai-input-row input {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
}
.ai-input-row .btn { padding: 0.55rem 1rem; font-size: 0.8rem; }

/* Toast */
.nw-toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-card);
  border: 1px solid var(--neon-purple);
  color: var(--text);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: var(--glow);
  max-width: 90vw;
  text-align: center;
}
.nw-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Legal pages */
.legal-page { padding: 2rem 0 4rem; }
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--neon-purple);
}
.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.legal-content ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal-updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }

/* Explore layout */
.page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  padding: 2rem 0 4rem;
  align-items: start;
}
.filters {
  position: sticky;
  top: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.filters h3 { font-size: 1rem; margin-bottom: 1rem; }
.filter-group { margin-bottom: 1.25rem; }
.filter-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.filter-group select,
.filter-group input[type="text"] {
  width: 100%;
  padding: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.85rem;
}
.checkbox-list label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.35rem;
  text-transform: none;
  cursor: pointer;
}
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.result-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.2s;
}
.result-card:hover { box-shadow: var(--glow); }
.result-card img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
}
.result-card .card-body { padding: 1.25rem 1.25rem 1.25rem 0; }

/* Venue detail */
.venue-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
}
.venue-hero img { width: 100%; height: 100%; object-fit: cover; }
.venue-hero .hero-overlay { background: linear-gradient(transparent, var(--bg-deep)); }
.venue-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  margin-top: -4rem;
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}
.venue-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}
.venue-sidebar h3 { margin-bottom: 1rem; }
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.info-row span:first-child { color: var(--text-muted); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.gallery-grid img {
  border-radius: 8px;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.schedule-table th,
.schedule-table td {
  padding: 0.65rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.schedule-table th { color: var(--neon-purple); }

/* City page */
.city-desc p { margin-bottom: 1rem; color: var(--text-muted); }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.tip-card {
  background: var(--bg-card);
  border-left: 3px solid var(--neon-purple);
  padding: 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.tip-card cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--neon-cyan);
  font-style: normal;
}

/* Blog */
.blog-cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.blog-cat-card {
  background: var(--bg-card);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.blog-cat-card h3 { margin-bottom: 0.5rem; }
.blog-cat-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Community */
.community-section { margin-bottom: 2.5rem; }
.review-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.review-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.review-photo img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-list {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.reviewer {
  text-align: center;
}
.reviewer img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon-purple);
  margin: 0 auto 0.5rem;
}

/* Events calendar */
.events-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; padding: 2rem 0 4rem; }
.calendar-mini {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.calendar-mini .month { text-align: center; font-weight: 600; margin-bottom: 1rem; color: var(--neon-purple); }
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-size: 0.75rem;
  text-align: center;
}
.cal-days span { padding: 0.35rem; border-radius: 6px; }
.cal-days .has-event { background: rgba(168, 85, 247, 0.25); color: var(--neon-purple); cursor: pointer; }
.cal-days .today { border: 1px solid var(--neon-cyan); }

/* Magic particles */
.magic-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(168,85,247,0.4), transparent),
    radial-gradient(1px 1px at 80% 70%, rgba(34,211,238,0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(251,191,36,0.2), transparent);
  background-size: 200% 200%;
  animation: sparkle 20s ease infinite;
  z-index: -1;
}
@keyframes sparkle {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

/* Page header */
.page-hero {
  padding: 3rem 0 2rem;
  text-align: center;
}
.page-hero h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.page-hero p { color: var(--text-muted); }

.badge-magic {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Venue popup */
.venue-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.venue-modal.open {
  opacity: 1;
  visibility: visible;
}
.venue-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 3, 12, 0.82);
  backdrop-filter: blur(6px);
}
.venue-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--glow);
  -webkit-overflow-scrolling: touch;
}
.venue-modal-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.venue-modal-body { padding: 1.35rem 1.5rem 1.5rem; }
.venue-modal-body h2 {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.venue-modal-body .card-meta { margin-bottom: 0.75rem; }
.venue-modal-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.venue-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.venue-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(10, 6, 18, 0.75);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.venue-modal-close:hover { background: rgba(168, 85, 247, 0.45); }
body.modal-open { overflow: hidden; }

button.result-card {
  cursor: pointer;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.result-card:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

.social-links-list a,
.socials a {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  word-break: break-all;
}

/* Responsive */
@media (max-width: 900px) {
  .header-inner { gap: 0.75rem; }
  .search-global {
    order: 3;
    max-width: none;
    width: 100%;
    min-width: 0;
  }
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
  .page-layout, .venue-layout, .events-layout { grid-template-columns: 1fr; }
  .filters, .venue-sidebar { position: static; }
  .result-card { grid-template-columns: 1fr; }
  .result-card img {
    min-height: 180px;
    max-height: 220px;
    aspect-ratio: 16 / 9;
  }
  .result-card .card-body { padding: 1.25rem; }
  .nav-main { display: none; width: 100%; flex-direction: column; }
  .nav-main.open { display: flex; }
  .menu-toggle { display: block; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 60vh; }
  .newsletter { padding: 1.75rem 1.25rem; }
  .quick-search-box { padding: 1.5rem 1.15rem; }
  .venue-modal-body { padding: 1.15rem; }
}

@media (max-width: 600px) {
  .container { width: min(1200px, 94%); }
  .footer-top-grid { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .ai-assistant { bottom: 1rem; right: 1rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .dest-card { aspect-ratio: 3 / 4; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat-item { padding: 1.25rem 0.75rem; }
  .stat-num { font-size: 1.6rem; }
  .page-hero { padding: 2rem 0 1.25rem; }
  .page-hero h1 { font-size: 1.65rem; }
  .section-title { font-size: 1.4rem; }
  section { padding: 2.5rem 0; }
  .hero-content { padding: 3rem 0.75rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .venue-hero { height: 40vh; min-height: 220px; }
  .event-slide { flex: 0 0 min(280px, 88vw); }
  .socials { gap: 0.5rem; }
  .socials a { font-size: 0.72rem; padding: 0.35rem 0.55rem; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form input,
  .newsletter-form .btn { width: 100%; justify-content: center; }
  .ai-panel { width: calc(100vw - 1.5rem); right: -0.25rem; }
  .venue-modal { padding: 0.5rem; align-items: flex-end; }
  .venue-modal-dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: var(--radius) var(--radius) 0 0;
  }
}

@media (max-width: 380px) {
  .dest-grid,
  .stats-grid { grid-template-columns: 1fr; }
  .logo { font-size: 1.1rem; }
}
