* { box-sizing: border-box; }

body {
  margin: 0;
  background: #0a0705;
  color: #e8ddc9;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(245, 158, 11, 0.07), transparent),
    radial-gradient(ellipse 40% 30% at 85% 90%, rgba(139, 92, 246, 0.05), transparent);
}

main {
  width: min(880px, 94vw);
  padding: 9vh 0 3vh;
  flex: 1;
  text-align: center;
}

.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #a3855c;
  margin: 0 0 1.1rem;
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  margin: 0 0 0.6rem;
  color: #f7f0dd;
  text-shadow: 0 0 36px rgba(245, 158, 11, 0.3);
}

.tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #9c8c6e;
  margin: 0 0 2.6rem;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.stat {
  background: rgba(30, 22, 12, 0.6);
  border: 1px solid #3a2c17;
  border-radius: 12px;
  padding: 1.1rem 1.8rem;
  min-width: 150px;
}

.stat .value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fbbf24;
}

.stat .label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a7554;
  margin-top: 0.3rem;
}

.cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

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

.col h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #f7f0dd;
  margin: 0 0 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #2b2113;
}

.place {
  margin-bottom: 0.85rem;
}

.place .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
}

.place .name {
  font-size: 0.95rem;
  color: #e8ddc9;
}

.place .name .mood {
  font-size: 0.72rem;
  color: #8a7554;
  margin-left: 0.5rem;
  font-style: italic;
}

.place .count {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: #fbbf24;
}

.place .bar {
  height: 5px;
  background: #1c1409;
  border-radius: 3px;
  overflow: hidden;
}

.place .bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #b45309, #fbbf24);
  border-radius: 3px;
  transition: width 0.8s ease;
}

.place.quiet { opacity: 0.55; }

.muses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.muse {
  background: rgba(30, 22, 12, 0.6);
  border: 1px solid #3a2c17;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  color: #e8ddc9;
  text-decoration: none;
  transition: all 0.25s;
}

.muse:hover {
  border-color: #fbbf24;
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.25);
  transform: translateY(-1px);
}

.muse::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  margin-right: 0.5rem;
  box-shadow: 0 0 8px #4ade80;
}

.note {
  font-size: 0.8rem;
  color: #6e5f45;
  font-style: italic;
  margin-top: 1rem;
}

.updated {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: #6e5f45;
  text-transform: uppercase;
}

footer { padding: 0 1rem 2rem; text-align: center; }
footer p { font-size: 0.72rem; letter-spacing: 0.12em; color: #4a3f2c; margin: 0; }

.loading { color: #8a7554; font-style: italic; }
