:root {
  color-scheme: light;
  --bg: #fffaf5;
  --surface: #ffffff;
  --text: #2f241d;
  --muted: #6e5b46;
  --accent: #e36f3b;
  --accent-dark: #b94f1f;
  --border: #f0dfcf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #fffaf5 0%, #ffe9d7 100%);
  color: var(--text);
}

.hero {
  padding: 72px 20px 40px;
  background: linear-gradient(120deg, rgba(227, 111, 59, 0.95), rgba(255, 174, 92, 0.9));
  color: white;
}

.hero__content {
  max-width: 960px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.hero p {
  margin: 0;
  max-width: 700px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 20px 56px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  padding: 24px;
}

.card__header h2 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.card__header p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 546px;
}

.map-visual {
  position: relative;
  width: 100%;
  height: 546px;
  overflow: hidden;
}

.map-visual iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  transition: transform 0.4s ease;
}

.map-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.05) 100%);
}

.restaurant-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.restaurant-chip-btn {
  border: 1px solid var(--border);
  background: #fffdf9;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s ease;
}

.restaurant-chip-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.map-marker-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-marker {
  position: absolute;
  transform: translate(-50%, -100%);
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
}

.map-marker::before {
  content: '';
  display: block;
  width: 18px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #ea4335, #d93025);
  transform: rotate(-45deg);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.map-marker.active::before {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.blog-panel {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fffdf9;
}

.blog-panel h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.blog-list {
  display: grid;
  gap: 8px;
}

.blog-link {
  display: block;
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .map-frame {
    min-height: 420px;
  }

  .map-visual {
    height: 420px;
  }
}
