:root {
  color-scheme: light;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f5efe7;
  color: #1f2937;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #fffaf4 0%, #f5efe7 100%);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #b45309;
  font-weight: 700;
  font-size: 0.8rem;
}

h1 {
  margin: 0;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.intro {
  margin: 0;
  max-width: 420px;
  color: #6b7280;
  line-height: 1.6;
}

.map-shell {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(31, 41, 55, 0.14);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.map {
  width: 100%;
  min-height: 70vh;
  height: 70vh;
}

.leaflet-popup-content-wrapper {
  border-radius: 16px;
  padding: 0.25rem;
}

.leaflet-popup-content {
  margin: 0.7rem;
  min-width: 220px;
}

.restaurant-section {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

.section-heading h2 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}

.section-heading p {
  margin: 0 0 1rem;
  color: #6b7280;
}

.tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.tag-button {
  border: 1px solid #f59e0b;
  background: #fff7ed;
  color: #9a2c00;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.tag-button.active {
  background: #f59e0b;
  color: white;
}

.restaurant-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.restaurant-card {
  background: white;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.restaurant-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.restaurant-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.restaurant-card p {
  margin: 0.2rem 0;
  color: #4b5563;
  font-size: 0.95rem;
}

.restaurant-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.restaurant-card .tag {
  background: #f3f4f6;
  color: #374151;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.popup-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.7rem;
}

.popup-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.popup-card p {
  margin: 0.25rem 0;
  color: #4b5563;
  line-height: 1.45;
}

.popup-card a {
  display: inline-block;
  margin-top: 0.6rem;
  color: #b45309;
  font-weight: 700;
  text-decoration: none;
}

.popup-card a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .page {
    padding: 1rem 0.85rem 2rem;
  }

  .map {
    min-height: 60vh;
    height: 60vh;
  }

  .restaurant-section {
    padding: 1rem;
  }
}
