:root {
  --bg: #0f1115;
  --surface: #1a1d23;
  --surface-hover: #22262e;
  --border: #2a2e37;
  --text: #e8e6e1;
  --text-muted: #8a8880;
  --accent: #c4a265;
  --accent-dim: rgba(196, 162, 101, 0.12);
  --tag-bg: #252830;
  --featured: #c4a265;
  --radius: 10px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

header {
  text-align: center;
  padding: 2.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #161920 0%, var(--bg) 100%);
}

.logo-link { text-decoration: none; }

.logo-mountain { display: inline-block; margin-bottom: 0.5rem; }

header h1 a {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  text-decoration: none;
}

header h1 a span { color: var(--accent); }

header p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.4rem;
  font-weight: 400;
}

/* ── NAV ── */
.tab-bar {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 100;
}

.tab-bar::-webkit-scrollbar { display: none; }

.tab-bar a {
  flex-shrink: 0;
  padding: 0.85rem 1.15rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.tab-bar a:hover { color: var(--text); }
.tab-bar a.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ── CONTENT ── */
.content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.page-hero {
  padding: 2rem 0 1.25rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.page-hero p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.category { margin-top: 1.75rem; }

.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.venue {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.venue:last-child { border-bottom: none; }
.venue-info { flex: 1; }

.venue-name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.venue-name a { color: var(--text); text-decoration: none; }
.venue-name a:hover { color: var(--accent); }

.venue-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  line-height: 1.5;
}

.venue-phone { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; }
.venue-phone a { color: var(--text-muted); text-decoration: none; }
.venue-phone a:hover { color: var(--accent); }

.badge {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  background: var(--accent-dim);
  color: var(--accent);
  align-self: center;
}

.featured-badge { background: var(--accent); color: var(--bg); }

.ad-slot {
  margin: 2rem 0;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── CROSS LINKS ── */
.cross-links {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.cross-links h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.cross-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
}

.cross-link {
  display: block;
  padding: 0.65rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.cross-link:hover { border-color: var(--accent); color: var(--accent); }

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
}

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

/* ── SCHEMA BREADCRUMB ── */
.breadcrumb {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.75rem 0 0;
}

.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 0.3rem; }

@media (max-width: 480px) {
  .tab-bar a { padding: 0.75rem 0.9rem; font-size: 0.72rem; }
  header { padding: 1.75rem 1.25rem 1rem; }
  .cross-links-grid { grid-template-columns: 1fr 1fr; }
}
