@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Syne:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #0d1117;
  --bg2: #161b22;
  --bg3: #21262d;
  --card: #1c2128;
  --accent: #58a6ff;
  --accent-hover: #79b8ff;
  --gold: #f0c040;
  --gold-hover: #ffd060;
  --green: #3fb950;
  --red: #f85149;
  --text: #e6edf3;
  --text-muted: #8b949e;
  --text-dim: #6e7681;
  --border: #30363d;
  --border-accent: rgba(88,166,255,0.25);
  --shadow: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
  --glow: 0 0 24px rgba(88,166,255,0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,17,23,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.logo span {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-family: 'Space Grotesk', sans-serif;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: var(--bg3);
}

.main-nav a.active {
  color: var(--accent);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(88,166,255,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 10% 80%, rgba(240,192,64,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  padding-right: 48px;
}

.hero-right {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(88,166,255,0.1);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 24px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 .accent { color: var(--accent); }
.hero h1 .gold { color: var(--gold); }

.hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stat-item .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.hero-stat-item .lbl {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  position: relative;
}

.hero-img-card:first-child {
  margin-top: 40px;
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.hero-img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(13,17,23,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  backdrop-filter: blur(8px);
}

.hero-img-badge span {
  color: var(--gold);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #0d1117;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #0d1117;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88,166,255,0.35);
}

.btn-gold {
  background: var(--gold);
  color: #0d1117;
}

.btn-gold:hover {
  background: var(--gold-hover);
  color: #0d1117;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,192,64,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--border-accent);
}

.btn-outline:hover {
  background: rgba(88,166,255,0.08);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-deny {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}

.btn-deny:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* ========== SECTION ========== */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--bg2);
}

.section-dark {
  background: linear-gradient(135deg, #0d1117 0%, #1a2332 50%, #0d1117 100%);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(88,166,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header {
  margin-bottom: 52px;
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin-top: 10px;
}

.section-header.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ========== CITY TABS ========== */
.city-tabs-strip {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.city-tabs-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding: 0 24px;
  scrollbar-width: none;
}

.city-tabs-inner::-webkit-scrollbar { display: none; }

.city-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 16px 22px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
}

.city-tab-btn:hover,
.city-tab-btn.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

/* ========== FEATURED VENUE ========== */
.featured-venue-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}

.featured-venue-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--glow);
  color: var(--text);
}

.featured-venue-img {
  background: var(--bg3);
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-venue-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
  position: absolute;
  inset: 0;
}

.venue-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #0d1117;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.venue-badge.blue {
  background: var(--accent);
}

.featured-venue-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}

.venue-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.featured-venue-body h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
  font-family: 'Syne', sans-serif;
}

.venue-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.venue-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
.rating-num { font-weight: 700; font-size: 1.05rem; color: var(--text); }
.rating-count { font-size: 0.82rem; color: var(--text-muted); }

.featured-venue-body p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 22px;
  flex: 1;
}

.venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 24px;
  font-size: 0.76rem;
  font-weight: 500;
  background: var(--bg3);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.tag.accent { background: rgba(88,166,255,0.1); color: var(--accent); border-color: var(--border-accent); }
.tag.gold { background: rgba(240,192,64,0.1); color: var(--gold); border-color: rgba(240,192,64,0.25); }

.venue-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}

.venue-link:hover { gap: 14px; color: var(--accent-hover); }

/* ========== VENUE GRID CARDS ========== */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.venue-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
}

.venue-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.venue-card-img {
  background: var(--bg3);
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.venue-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.venue-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.venue-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.venue-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.venue-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

/* ========== VENUE LIST (venues page) ========== */
.venue-list-item {
  display: flex;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}

.venue-list-item:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow);
  color: var(--text);
}

.venue-list-img {
  flex: 0 0 240px;
  background: var(--bg3);
  position: relative;
}

.venue-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-list-body {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.venue-list-body h3 { font-size: 1.3rem; margin-bottom: 8px; }

.venue-list-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

/* ========== HOW IT WORKS ========== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.how-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.how-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--glow);
}

.how-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(88,166,255,0.1);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
}

.how-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.how-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-stars { color: var(--gold); font-size: 0.9rem; }

.testimonial-card blockquote {
  font-size: 0.93rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.testimonial-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-city {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ========== CTA ========== */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band-text h2 {
  margin-bottom: 10px;
}

.cta-band-text p {
  color: var(--text-muted);
  font-size: 1rem;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ========== GUIDE TABS ========== */
.guide-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 36px;
  background: var(--bg3);
  border-radius: var(--radius-sm);
  padding: 5px;
  flex-wrap: wrap;
}

.guide-tab {
  padding: 10px 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.guide-tab:hover { color: var(--text); }

.guide-tab.active {
  background: var(--bg2);
  color: var(--accent);
}

.guide-content { display: none; }
.guide-content.active { display: block; }

.guide-article {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px 44px;
  margin-bottom: 24px;
}

.guide-article h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.guide-article p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
  line-height: 1.8;
}

.guide-article ul, .guide-article ol {
  list-style: none;
  margin: 16px 0;
}

.guide-article ul li, .guide-article ol li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.guide-article ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.guide-article ol {
  counter-reset: guide-ol;
}

.guide-article ol li::before {
  counter-increment: guide-ol;
  content: counter(guide-ol) '.';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
}

.guide-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

.guide-sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
}

.guide-nav-box {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
}

.guide-nav-box h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.guide-nav-box ul { list-style: none; }

.guide-nav-box ul li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.guide-nav-box ul li a:hover {
  background: var(--bg3);
  color: var(--accent);
}

/* ========== FAQ ========== */
.faq-item {
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--accent); }

.faq-question .icon {
  font-size: 1.2rem;
  transition: transform var(--transition);
  color: var(--accent);
}

.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form-box {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg2);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.contact-info-box { padding: 10px 0; }

.contact-info-box h3 { margin-bottom: 14px; }

.contact-info-box p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(88,166,255,0.1);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-detail p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
}

/* ========== REVIEW PAGE ========== */
.review-hero {
  background: linear-gradient(160deg, #0d1117 0%, #1a2332 60%, #0d1117 100%);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}

.review-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(88,166,255,0.07) 0%, transparent 70%);
}

.review-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.84rem;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-dim); }

.review-hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.review-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.review-score-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(88,166,255,0.08);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 20px;
}

.score-big-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.score-details { display: flex; flex-direction: column; }
.score-details .stars { font-size: 1rem; margin-bottom: 4px; }
.score-details .score-label { font-size: 0.78rem; color: var(--text-muted); }

.review-hero-summary {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.75;
  max-width: 520px;
}

.review-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg3);
  border: 1px solid var(--border);
  position: relative;
}

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

.review-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 44px;
}

.review-sidebar { position: sticky; top: 90px; align-self: start; }

.review-sidebar-box {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 20px;
}

.review-sidebar-box h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(48,54,61,0.6);
  font-size: 0.86rem;
}

.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--text-muted); }
.info-row .value { color: var(--text); font-weight: 600; text-align: right; max-width: 60%; }

.review-block {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 38px;
  margin-bottom: 24px;
}

.review-block h2 {
  font-size: 1.55rem;
  margin-bottom: 16px;
  font-family: 'Syne', sans-serif;
}

.review-block h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  margin-top: 28px;
  color: var(--accent);
}

.review-block h3:first-of-type { margin-top: 0; }

.review-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.8;
}

.review-block-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 22px 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
}

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

.scores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.score-cell {
  background: var(--bg3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 18px 12px;
  text-align: center;
}

.score-cell .val {
  font-family: 'Syne', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.score-cell .cat {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

.pros-box, .cons-box {
  background: var(--bg3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 22px;
}

.pros-box h4 { color: var(--green); font-size: 0.8rem; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 14px; }
.cons-box h4 { color: var(--red); font-size: 0.8rem; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 14px; }

.pros-box ul, .cons-box ul { list-style: none; }
.pros-box ul li, .cons-box ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  font-size: 0.87rem;
  color: var(--text-muted);
}

.pros-box ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons-box ul li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ========== ABOUT ========== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg3);
  border: 1px solid var(--border);
}

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

.about-text h2 { margin-bottom: 16px; }

.about-text p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--border);
  overflow: hidden;
  margin: 0 auto 16px;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.team-name { font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--accent); margin-bottom: 10px; }
.team-bio { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.value-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  gap: 18px;
}

.value-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(88,166,255,0.1);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card h4 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(160deg, #0d1117 0%, #1a2332 100%);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 { margin-bottom: 12px; font-family: 'Syne', sans-serif; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ========== AGE GATE ========== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(13,17,23,0.96);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
}

.age-gate.show { display: flex; }

.age-gate-box {
  background: var(--bg2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 48px 44px;
  text-align: center;
  max-width: 440px;
  width: 90%;
  box-shadow: var(--shadow-lg);
}

.age-gate-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.age-gate-box h2 { font-size: 1.6rem; margin-bottom: 10px; }

.age-gate-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.age-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-buttons .btn { min-width: 120px; justify-content: center; }

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  z-index: 9999;
  display: none;
}

.cookie-banner.show { display: block; }

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.86rem;
  color: var(--text-muted);
  flex: 1;
}

.cookie-inner p a { color: var(--accent); }

.cookie-btn {
  background: var(--accent);
  color: #0d1117;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background var(--transition);
  font-family: 'Space Grotesk', sans-serif;
  white-space: nowrap;
}

.cookie-btn:hover { background: var(--accent-hover); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 52px 0 0;
}

.footer-inner {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-inner .logo {
  justify-content: center;
  margin-bottom: 18px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  justify-content: center;
  margin-bottom: 22px;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
  font-family: 'Space Grotesk', sans-serif;
}

.footer-nav a:hover { color: var(--accent); }

.footer-inner p {
  font-size: 0.84rem;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--text-dim);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--accent); }

/* ========== VENUES PAGE SIDEBAR ========== */
.venues-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

.venues-sidebar-box {
  position: sticky;
  top: 100px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 26px;
}

.venues-sidebar-box h4 {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.sidebar-filter-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 4px;
}

.sidebar-filter-btn:hover,
.sidebar-filter-btn.active {
  background: var(--bg3);
  color: var(--accent);
}

.venue-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ========== BACK LINK ========== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 32px;
}

.back-link:hover { gap: 12px; }

/* ========== CONTENT GRID ========== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg3);
  border: 1px solid var(--border);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.content-text h2 { margin-bottom: 16px; }
.content-text h3 { margin-bottom: 10px; margin-top: 24px; }

.content-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
  line-height: 1.8;
}

.content-text ul { list-style: none; margin: 16px 0; }
.content-text ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.content-text ul li::before { content: '▸'; position: absolute; left: 0; color: var(--accent); font-size: 0.78rem; }

/* ========== STAT CARDS ========== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  text-align: center;
}

.stat-card .big-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========== ANNOUNCE BAR ========== */
.announce-bar {
  background: rgba(88,166,255,0.08);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  overflow: hidden;
}

.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.announce-inner .sep { color: var(--border); }

/* ========== HEADER WITH CTA ========== */
.header-cta { padding: 10px 20px; font-size: 0.85rem; flex-shrink: 0; }

/* ========== MAGAZINE HERO ========== */
.mag-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  overflow: hidden;
  padding-top: 0;
}

.mag-hero-bg-num {
  position: absolute;
  top: -40px;
  right: -40px;
  font-family: 'Syne', sans-serif;
  font-size: 40vw;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.mag-hero-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  flex: 1;
  padding: 80px 0 60px;
  position: relative;
  z-index: 1;
}

.mag-hero-content {
  flex: 0 0 52%;
  max-width: 52%;
  min-width: 0;
}

.mag-hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.mag-hero-kicker img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
  display: inline-block;
}

.mag-hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}

.mag-hero-headline em {
  font-style: italic;
  color: var(--text-muted);
}

.mag-accent { color: var(--accent); }

.mag-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.mag-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mag-hero-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.mag-hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
  min-height: 130px;
}

.mag-hero-card:hover { border-color: var(--border-accent); transform: translateY(-3px); }

.mag-hero-card.mag-card-tall { min-height: 220px; }

.mag-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.mag-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(13,17,23,0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.mag-card-city {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(88,166,255,0.15);
  border: 1px solid var(--border-accent);
  padding: 3px 8px;
  border-radius: 4px;
}

.mag-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}

.mag-card-score {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}

.mag-hero-ticker {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ticker-track .t-dot { color: var(--accent); }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== BENTO GRID ========== */
.bento-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 16px;
  grid-template-areas:
    "big   med1  stat"
    "big   med2  med2"
    "sm1   sm2   sm3 "
    "sm4   sm4   .   ";
}

.bento-cell {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
}

.bento-cell:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.bento-big { grid-area: big; }
.bento-stat { grid-area: stat; background: linear-gradient(135deg, #0d1117 0%, #1a2332 100%); border-color: var(--border-accent); }

.bento-cell:nth-child(2) { grid-area: med1; }
.bento-cell:nth-child(4) { grid-area: med2; }
.bento-cell:nth-child(5) { grid-area: sm1; }
.bento-cell:nth-child(6) { grid-area: sm2; }
.bento-cell:nth-child(7) { grid-area: sm3; }
.bento-cell:nth-child(8) { grid-area: sm4; }

.bento-img {
  background: var(--bg3);
  overflow: hidden;
  flex-shrink: 0;
}

.bento-big .bento-img { height: 220px; }
.bento-med .bento-img { height: 160px; }
.bento-sm .bento-img { height: 110px; }

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

.bento-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bento-rank {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.bento-big .bento-body { padding: 24px 28px; }
.bento-big h3 { font-size: 1.4rem; margin-bottom: 10px; }
.bento-med h3 { font-size: 1.1rem; margin-bottom: 8px; }
.bento-sm h3 { font-size: 0.95rem; margin-bottom: 6px; }

.bento-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}

.bento-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.bento-score { font-size: 0.88rem; font-weight: 700; color: var(--gold); }
.bento-loc { font-size: 0.78rem; color: var(--text-muted); flex: 1; }
.bento-link { font-size: 0.82rem; font-weight: 600; color: var(--accent); }

/* Stat cell */
.bento-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.bento-stat-num span { font-size: 2.5rem; }

.bento-stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
}

.bento-stat-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.bento-stat-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-top: 16px;
  opacity: 0.4;
}

/* ========== LEADERBOARD ========== */
.leaderboard {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.lb-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  text-decoration: none;
  color: var(--text);
}

.lb-row:last-child { border-bottom: none; }
.lb-row:hover { background: var(--bg3); color: var(--text); }

.lb-header {
  background: var(--bg3);
  padding: 12px 20px;
  cursor: default;
}

.lb-header:hover { background: var(--bg3); }

.lb-header span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lb-rank {
  flex: 0 0 44px;
  text-align: center;
}

.lb-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--border);
}

.lb-row:nth-child(2) .lb-num { color: var(--gold); }
.lb-row:nth-child(3) .lb-num { color: var(--text-muted); }
.lb-row:nth-child(4) .lb-num { color: var(--text-dim); }

.lb-img-col {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  background: var(--bg3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.lb-img-col img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.lb-name {
  flex: 1;
  min-width: 0;
}

.lb-name strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-name em {
  font-style: normal;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.lb-city {
  flex: 0 0 130px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.lb-score {
  flex: 0 0 48px;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
}

.lb-score-gold { color: var(--gold); }

.lb-bar {
  flex: 0 0 140px;
  height: 6px;
  background: var(--bg3);
  border-radius: 4px;
  overflow: hidden;
}

.lb-bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(to right, var(--accent), var(--gold));
  border-radius: 4px;
  transition: width 0.6s ease;
}

.lb-action {
  flex: 0 0 70px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-align: right;
}

/* ========== MANIFESTO ========== */
.manifesto-section {
  background: var(--bg);
  padding: 90px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 52px;
}

.manifesto-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.manifesto-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.manifesto-item:last-child { border-bottom: none; }

.manifesto-num {
  font-family: 'Syne', sans-serif;
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  transition: color var(--transition);
}

.manifesto-item:hover .manifesto-num { color: var(--accent); }

.manifesto-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.manifesto-img-wrap {
  flex: 0 0 160px;
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
}

.manifesto-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifesto-text { flex: 1; }

.manifesto-text h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text);
}

.manifesto-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ========== PULL QUOTE ========== */
.pull-quote-section {
  background: var(--bg2);
  padding: 90px 0;
  border-bottom: 1px solid var(--border);
}

.pull-quote-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.pull-quote-mark {
  position: absolute;
  top: -60px;
  left: -20px;
  font-family: 'Syne', sans-serif;
  font-size: 12rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.pull-quote-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  font-style: normal;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.pull-quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.pull-quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}

.pull-quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.pull-quote-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.pull-quote-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pull-quote-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.pull-quote-more {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.mini-quote {
  padding: 20px;
  background: var(--bg3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.mini-quote p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.65;
}

.mini-quote strong {
  font-size: 0.78rem;
  color: var(--accent);
  display: block;
}

/* ========== CITIES MOSAIC ========== */
.cities-mosaic-section {
  padding: 90px 0;
}

.cities-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 160px;
  gap: 12px;
}

.city-mosaic-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
}

.city-mosaic-card:hover { border-color: var(--border-accent); }
.city-mosaic-card:hover .city-mosaic-overlay { background: rgba(13,17,23,0.7); }
.city-mosaic-card:hover .city-name { color: var(--accent); }

.city-mosaic-card.city-lg { grid-column: span 2; }
.city-mosaic-card.city-sm { grid-column: span 1; }
.city-mosaic-card.city-xs { grid-column: span 1; }

.city-mosaic-img {
  position: absolute;
  inset: 0;
}

.city-mosaic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.city-mosaic-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(13,17,23,0.85) 0%, transparent 60%);
  transition: background var(--transition);
}

.city-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}

.city-mosaic-card.city-lg .city-name { font-size: 1.6rem; }

.city-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ========== FOOTER 4-COLUMN ========== */
.footer-grid-4 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding: 52px 0 40px;
  border-bottom: 1px solid var(--border);
}

.footer-col-brand p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 0 20px;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  background: var(--bg3);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
  font-family: 'Space Grotesk', sans-serif;
}

.footer-col ul li a:hover { color: var(--accent); }

.helpline-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--accent); }

/* ========== RESPONSIVE: TABLET ≤1024px ========== */
@media (max-width: 1024px) {

  /* Layout */
  .hero { grid-template-columns: 1fr; padding: 70px 0; }
  .hero-right { display: none; }
  .hero-left { padding-right: 0; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-venue-card { grid-template-columns: 1fr; }
  .featured-venue-img { min-height: 220px; }
  .featured-venue-body { border-left: none; border-top: 1px solid var(--border); }
  .review-layout { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; }
  .venues-layout { grid-template-columns: 1fr; }
  .venues-sidebar-box { position: static; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
  .venues-sidebar-box h4 { width: 100%; margin-bottom: 0; }
  .venues-sidebar-box .sidebar-filter-btn { display: inline-block; width: auto; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; }
  .scores-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hero */
  .mag-hero-content { flex: 1; max-width: 100%; }
  .mag-hero-cards { display: grid; grid-template-columns: 1fr 1fr; }
  .mag-hero-card.mag-card-tall { grid-column: span 2; min-height: 200px; }
  .mag-hero-card { min-height: 140px; }
  .mag-hero-bg-num { font-size: 30vw; }

  /* Bento */
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "big  big"
      "med1 stat"
      "med2 med2"
      "sm1  sm2"
      "sm3  sm4";
  }
  .bento-cell.bento-big  { grid-area: big; }
  .bento-cell:nth-child(2) { grid-area: med1; }
  .bento-cell:nth-child(3) { grid-area: stat; }
  .bento-cell:nth-child(4) { grid-area: med2; grid-column: span 2; }
  .bento-cell:nth-child(5) { grid-area: sm1; }
  .bento-cell:nth-child(6) { grid-area: sm2; }
  .bento-cell:nth-child(7) { grid-area: sm3; }
  .bento-cell:nth-child(8) { grid-area: sm4; }

  /* Manifesto */
  .manifesto-item { grid-template-columns: 80px 1fr; gap: 24px; }
  .manifesto-num { font-size: 3.5rem; }
  .manifesto-img-wrap { flex: 0 0 120px; height: 90px; }

  /* Leaderboard */
  .lb-city { flex: 0 0 110px; font-size: 0.76rem; }
  .lb-bar { flex: 0 0 100px; }

  /* Cities mosaic */
  .cities-mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 180px 140px;
  }
  .city-mosaic-card.city-lg { grid-column: span 2; }
  .city-mosaic-card.city-xs { grid-column: span 1; }

  /* Footer */
  .footer-grid-4 { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Pull quote */
  .pull-quote-more { grid-template-columns: 1fr 1fr; }

  /* Header */
  .header-cta { display: none; }
}

/* ========== RESPONSIVE: MOBILE ≤768px ========== */
@media (max-width: 768px) {

  /* ---- Header ---- */
  .header-inner {
    position: relative;
    justify-content: space-between;
    padding: 14px 0;
  }
  .main-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,17,23,0.98);
    padding: 80px 24px 40px;
    z-index: 999;
    gap: 4px;
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 16px 20px;
    font-size: 1.15rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    width: 100%;
    text-align: left;
  }
  .main-nav a:hover,
  .main-nav a.active {
    background: var(--bg3);
    color: var(--accent);
  }
  .burger { display: flex; z-index: 1000; }
  .header-cta { display: none; }
  .logo span { font-size: 0.88rem; }

  /* ---- Announce bar ---- */
  .announce-inner { flex-direction: column; gap: 4px; text-align: center; font-size: 0.72rem; }
  .announce-inner .sep { display: none; }

  /* ---- Sections ---- */
  .section { padding: 52px 0; }
  .manifesto-section { padding: 52px 0; }
  .pull-quote-section { padding: 52px 0; }
  .cities-mosaic-section { padding: 52px 0; }

  /* ---- Mag Hero ---- */
  .mag-hero { min-height: auto; }
  .mag-hero-inner {
    flex-direction: column;
    gap: 28px;
    padding: 48px 0 0;
  }
  .mag-hero-content {
    flex: unset;
    max-width: 100%;
    padding-right: 0;
  }
  .mag-hero-bg-num {
    font-size: 52vw;
    top: -10px;
    right: -20px;
    opacity: 0.04;
  }
  .mag-hero-headline {
    font-size: clamp(2.2rem, 9vw, 3rem);
    letter-spacing: -1px;
  }
  .mag-hero-sub { font-size: 0.96rem; max-width: 100%; }
  .mag-hero-actions { gap: 10px; }
  .mag-hero-actions .btn { flex: 1; justify-content: center; }

  /* Cards → вертикальный список с горизонтальной разметкой */
  .mag-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mag-hero-card,
  .mag-hero-card.mag-card-tall {
    min-height: unset;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0;
  }
  /* Изображение — фиксированный блок слева */
  .mag-hero-card img {
    position: static;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    object-fit: contain;
    padding: 10px;
    background: var(--bg2);
    border-right: 1px solid var(--border);
  }
  /* Overlay → занимает всё оставшееся пространство */
  .mag-card-overlay {
    position: static;
    flex: 1;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 16px;
  }
  .mag-card-city { font-size: 0.65rem; }
  .mag-card-name { font-size: 0.88rem; font-weight: 600; color: var(--text); }
  .mag-card-score { font-size: 0.82rem; margin-top: 2px; }
  .mag-hero-card:hover { transform: none; }

  .mag-hero-ticker { padding: 12px 0; }

  /* ---- Bento grid ---- */
  .bento-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .bento-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .bento-cell { grid-area: unset !important; grid-column: unset !important; }
  .bento-big .bento-img { height: 180px; }
  .bento-med .bento-img { height: 140px; }
  .bento-sm .bento-img { height: 100px; }
  .bento-big .bento-body { padding: 18px 20px; }
  .bento-big h3 { font-size: 1.2rem; }
  .bento-stat-num { font-size: 3.5rem; }

  /* ---- Leaderboard ---- */
  .lb-header { display: none; }
  .lb-row {
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 16px;
    align-items: flex-start;
  }
  .lb-rank { flex: 0 0 auto; }
  .lb-num { font-size: 1rem; }
  .lb-img-col { width: 40px; height: 40px; flex: 0 0 40px; }
  .lb-name {
    flex: 1 1 0;
    min-width: 0;
  }
  .lb-name strong {
    font-size: 0.88rem;
    white-space: normal;
    word-break: break-word;
  }
  .lb-name em { font-size: 0.72rem; }
  .lb-city { display: none; }
  .lb-score { flex: 0 0 auto; order: -1; font-size: 1rem; }
  .lb-bar {
    flex: 0 0 100%;
    order: 10;
    margin-top: 2px;
  }
  .lb-action { flex: 0 0 auto; font-size: 0.78rem; }

  /* ---- Manifesto ---- */
  .manifesto-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 0;
  }
  .manifesto-num {
    font-size: 2.5rem;
    line-height: 1;
  }
  .manifesto-content {
    flex-direction: column;
    gap: 14px;
  }
  .manifesto-img-wrap {
    flex: none;
    width: 100%;
    height: 160px;
  }
  .manifesto-text h3 { font-size: 1.15rem; }
  .manifesto-text p { font-size: 0.9rem; }

  /* ---- Pull quote ---- */
  .pull-quote-inner { padding: 0; }
  .pull-quote-mark {
    font-size: 7rem;
    top: -30px;
    left: 0;
  }
  .pull-quote-text {
    font-size: 1.2rem;
    line-height: 1.55;
  }
  .pull-quote-author { flex-wrap: wrap; gap: 12px; }
  .pull-quote-stars { margin-left: 0; width: 100%; }
  .pull-quote-more { grid-template-columns: 1fr; gap: 12px; }

  /* ---- Cities mosaic ---- */
  .cities-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 120px);
  }
  .city-mosaic-card.city-lg { grid-column: span 2; }
  .city-mosaic-card.city-sm,
  .city-mosaic-card.city-xs { grid-column: span 1; }
  .city-name { font-size: 1.1rem; }
  .city-mosaic-card.city-lg .city-name { font-size: 1.3rem; }

  /* ---- Footer ---- */
  .footer-grid-4 { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 28px; }
  .footer-col-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 16px 0; }
  .footer-bottom-links { justify-content: center; gap: 16px; }

  /* ---- General layout ---- */
  .how-grid { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .review-hero-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; gap: 24px; }
  .cta-band-actions { flex-direction: row; flex-wrap: wrap; }
  .cta-band-actions .btn { flex: 1; justify-content: center; min-width: 130px; }

  /* ---- Venue list (venues page) ---- */
  .venue-list-item { flex-direction: column; }
  .venue-list-img {
    flex: none;
    width: 100%;
    height: 180px;
  }
  .venue-list-body { padding: 20px; }
  .venue-list-body h3 { font-size: 1.1rem; }

  /* ---- Review pages ---- */
  .review-hero { padding: 44px 0 52px; }
  .review-hero-grid { gap: 28px; }
  .review-hero-content h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .review-meta { gap: 10px; }
  .review-score-box { flex-wrap: wrap; gap: 10px; padding: 14px 18px; }
  .score-big-num { font-size: 2.4rem; }
  .review-block { padding: 24px 20px; }
  .review-block h2 { font-size: 1.3rem; }
  .scores-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .review-sidebar-box { padding: 20px; }

  /* ---- Guide page ---- */
  .guide-layout { grid-template-columns: 1fr; gap: 24px; }
  .guide-sidebar { position: static; }
  .guide-article { padding: 24px 20px; }
  .guide-nav-box { padding: 20px; }

  /* ---- Contact page ---- */
  .contact-form-box { padding: 24px 20px; }
  .contact-info-box { padding: 0; }

  /* ---- About page ---- */
  .about-img { aspect-ratio: 16/9; }

  /* ---- Page hero ---- */
  .page-hero { padding: 44px 0; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
}

/* ========== RESPONSIVE: SMALL MOBILE ≤480px ========== */
@media (max-width: 480px) {

  .container { padding: 0 16px; }

  .announce-bar { display: none; }

  .mag-hero-inner { padding: 36px 0 0; }
  .mag-hero-headline { font-size: 2rem; letter-spacing: -0.5px; }
  .mag-hero-sub { font-size: 0.9rem; }
  /* Cards уже flex-column из 768px, на 480px просто убираем 3-ю */
  .mag-hero-cards .mag-hero-card:last-child { display: none; }
  .mag-hero-card img { width: 64px; height: 64px; }
  .mag-card-name { font-size: 0.83rem; }
  .mag-card-overlay { padding: 12px 14px; }

  .bento-big .bento-img { height: 160px; }

  .lb-name strong { font-size: 0.83rem; }
  .lb-rank { display: none; }

  .pull-quote-text { font-size: 1.08rem; }
  .pull-quote-mark { font-size: 5rem; }

  .cities-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, 100px); }

  .footer-grid-4 { gap: 22px; }

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

  .review-block { padding: 18px 16px; }
  .guide-article { padding: 18px 16px; }
  .contact-form-box { padding: 20px 16px; }

  .btn { padding: 12px 20px; font-size: 0.88rem; }

  h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  h3 { font-size: clamp(1.1rem, 5vw, 1.4rem); }
}
