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

:root {
  --bg: #f9fafb;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --soft: #f3f4f6;
  --line: #f3f4f6;
  --primary: #2D7A3E;
  --accent: #2D7A3E;
  --danger: #b42318;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; object-fit: cover; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 0 max(16px, calc((100vw - 1280px) / 2 + 16px));
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; font-weight: 900; }
.brand-mark {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: #050505; color: white; border-radius: 12px; overflow: hidden; flex: 0 0 auto; padding: 4px;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { min-width: 0; display: grid; gap: 2px; line-height: 1.05; }
.brand-copy strong { max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 15px; color: var(--ink); }
.brand-copy small { max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #9ca3af; text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.header-actions { display: flex; align-items: center; gap: 6px; }
.header-actions svg, .mobile-toggle svg {
  width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.main-nav { display: flex; align-items: center; gap: 4px; justify-content: center; }
.main-nav a, .city-form select, .toolbar input, .search-panel input {
  border: 1px solid #e5e7eb;
  background: white;
  border-radius: 12px;
}
.main-nav a { border-color: transparent; padding: 9px 12px; color: #6b7280; font-weight: 900; font-size: 13px; white-space: nowrap; transition: .18s ease; }
.main-nav a.active, .main-nav a:hover { color: var(--primary); background: #f3f4f6; border-color: transparent; }
.city-form select { min-height: 36px; max-width: 150px; padding: 0 32px 0 12px; color: #374151; font-size: 12px; font-weight: 800; outline: none; }
.mobile-toggle { display: none; }
.icon-btn, .favorite-btn {
  position: relative;
  border: 0; background: transparent; color: #9ca3af; border-radius: 999px; min-width: 40px; min-height: 40px; cursor: pointer;
  display: inline-grid; place-items: center; transition: background .18s ease, color .18s ease;
}
.icon-btn:hover, .icon-btn.active, .favorite-btn:hover, .favorite-btn.active { background: #f9fafb; color: var(--primary); }
.favorite-link span {
  position: absolute; top: 3px; right: 2px; width: 16px; height: 16px; border-radius: 999px; background: #ef4444; color: white;
  border: 2px solid white; display: grid; place-items: center; font-size: 8px; font-weight: 900;
}
.favorite-link span[hidden] { display: none; }
.mobile-menu-scrim,
.mobile-menu-panel { display: none; }

.hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  margin: 16px auto 0;
  width: min(100% - 32px, 1280px);
  padding: clamp(24px, 4vw, 40px);
  color: white;
  background: var(--accent);
  border-radius: 40px;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 999px; background: rgba(255,255,255,.06); filter: blur(42px); pointer-events: none;
}
.hero::before { width: 260px; height: 260px; left: -70px; top: -80px; }
.hero::after { width: 390px; height: 390px; right: -90px; bottom: -120px; }
.hero-logo {
  position: relative; z-index: 1; width: clamp(132px, 14vw, 178px); height: clamp(132px, 14vw, 178px);
  display: grid; place-items: center; flex: 0 0 auto; padding: 8px; border-radius: 24px; background: rgba(0,0,0,.2); backdrop-filter: blur(12px);
}
.hero-logo img { width: 100%; height: 100%; object-fit: contain; }
.hero-copy { position: relative; z-index: 1; flex: 0 1 390px; min-width: 240px; }
.eyebrow { margin: 0 0 8px; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 900; color: rgba(255,255,255,.72); }
.hero h1, .detail-hero h1 { margin: 0; font-size: clamp(34px, 4.4vw, 52px); line-height: 1; letter-spacing: 0; font-weight: 900; }
.hero p { max-width: 520px; margin: 14px 0 0; font-size: clamp(16px, 1.6vw, 18px); line-height: 1.45; color: rgba(255,255,255,.9); font-weight: 500; }
.hero-recommended { position: relative; z-index: 1; flex: 1 1 520px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; overflow: visible; padding-bottom: 0; scrollbar-width: none; }
.hero-recommended::-webkit-scrollbar { display: none; }
.hero-mini-card {
  min-width: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 28px; padding: 10px; background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px); transition: background .2s ease, transform .2s ease;
}
.hero-mini-card:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.hero-mini-card span { display: block; height: 168px; border-radius: 18px; overflow: hidden; background: rgba(255,255,255,.16); margin-bottom: 10px; }
.hero-mini-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.hero-mini-card:hover img { transform: scale(1.08); }
.hero-mini-card strong { display: block; color: white; font-size: 16px; line-height: 1.15; font-weight: 900; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero-mini-card small { display: block; margin-top: 4px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; font-size: 12px; font-weight: 800; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-panel { display: flex; gap: 10px; max-width: 640px; margin-top: 24px; }
.search-panel input { flex: 1; min-height: 52px; padding: 0 16px; border: 0; }
.search-panel button, .btn, .toolbar button, .admin-btn {
  min-height: 44px; border: 0; border-radius: 12px; padding: 0 18px; background: var(--primary); color: white; font-weight: 900; cursor: pointer;
}
.btn.ghost, .admin-btn.ghost { background: white; color: var(--ink); border: 1px solid var(--line); }

.location-selector-band {
  background: linear-gradient(180deg, #fff, #f9fafb);
  border-bottom: 1px solid #f3f4f6;
  padding: 32px 16px 24px;
}
.location-selector {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.location-choice {
  width: min(100%, 280px);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border: 2px solid #f3f4f6;
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(17,24,39,.04);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.location-choice:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(17,24,39,.08);
}
.location-choice:first-child:hover { border-color: var(--primary); }
.location-choice:last-child:hover { border-color: #f97316; }
.location-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.location-icon.green { background: #f0fdf4; color: var(--primary); }
.location-icon.orange { background: #fff7ed; color: #ea580c; }
.location-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.location-choice label {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 5px;
}
.location-choice small {
  color: #9ca3af;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.location-choice select {
  width: 100%;
  min-height: 28px;
  border: 0;
  padding: 0 24px 0 0;
  color: #111827;
  background: transparent;
  font-size: 16px;
  font-weight: 900;
  outline: none;
}

.section { padding: clamp(28px, 5vw, 48px) 16px; max-width: 1280px; margin: 0 auto; }
.location-selector-band + .section { padding-top: 24px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.section-head h2, .prose h1 { margin: 0; font-size: clamp(24px, 4vw, 34px); letter-spacing: 0; font-weight: 900; }
.section-head a, .text-link { color: var(--primary); font-weight: 900; font-size: 14px; }
.grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.split .grid { grid-template-columns: 1fr; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(17,24,39,.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(17,24,39,.08); border-color: #e5e7eb; }
.business-card { display: flex; flex-direction: column; height: 100%; }
.image-wrap { position: relative; height: 128px; background: #f9fafb; display: block; overflow: hidden; }
.image-wrap img { width: 100%; height: 100%; transition: transform .25s ease; }
.card:hover .image-wrap img { transform: scale(1.04); }
.badge { position: absolute; left: 8px; top: 8px; background: #22c55e; color: white; padding: 3px 8px; border-radius: 999px; font-weight: 900; font-size: 10px; box-shadow: 0 8px 20px rgba(34,197,94,.22); }
.card-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.card-body h3 { margin: 0; font-size: 16px; line-height: 1.15; font-weight: 800; }
.business-card .card-body h3 { font-size: clamp(13px, 1.4vw, 16px); }
.card-body p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 12px; }
.muted { color: var(--primary) !important; font-size: 12px !important; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.meta-line { color: #9ca3af !important; font-size: 10px !important; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.open-state {
  width: max-content;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.open-state.is-open { background: #dcfce7; color: #15803d; }
.open-state.is-closed { background: #fee2e2; color: #ef4444; }
.card-actions, .button-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.favorite-btn { min-width: 32px; min-height: 32px; color: var(--primary); font-size: 20px; flex: 0 0 auto; }
.favorite-btn.active { color: var(--primary); background: rgba(45,122,62,.08); }
.toolbar { display: flex; gap: 10px; margin-bottom: 18px; }
.toolbar input { flex: 1; min-height: 44px; padding: 0 12px; outline: none; }
.overview-top {
  width: min(100% - 32px, 1280px);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}
.overview-search {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 74px;
  border-radius: 18px;
  background: #f3f4f6;
}
.overview-search span {
  display: inline-grid;
  place-items: center;
  width: 74px;
  color: #9ca3af;
  flex: 0 0 auto;
}
.overview-search svg,
.overview-open-toggle svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.overview-search input {
  border: 0;
  background: transparent;
  min-height: 74px;
  flex: 1;
  padding: 0 22px 0 0;
  color: #111827;
  font-size: 20px;
  font-weight: 800;
  outline: none;
}
.overview-search input::placeholder { color: #9ca3af; }
.overview-open-toggle {
  min-width: 170px;
  min-height: 76px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: white;
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}
.overview-open-toggle.active,
.overview-open-toggle:hover {
  background: #e8f7ed;
  border-color: rgba(45,122,62,.28);
  color: var(--primary);
}
.overview-filter-toggle {
  min-height: 76px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: white;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  font: inherit;
  cursor: pointer;
}
.overview-filter-toggle svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}
.overview-filter-toggle span {
  color: #6b7280;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}
.overview-filter-toggle strong {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--primary);
  font-size: 18px;
  font-weight: 950;
}
.overview-filter-toggle:hover {
  background: #f9fafb;
  border-color: rgba(45,122,62,.28);
}
.category-filter-scrim {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(17,24,39,.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.category-filter-panel {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 91;
  width: min(92vw, 520px);
  background: white;
  box-shadow: 18px 0 48px rgba(17,24,39,.18);
  transform: translateX(-100%);
  transition: transform .26s ease;
  display: grid;
  grid-template-rows: auto 1fr;
}
body.category-menu-open .category-filter-scrim {
  opacity: 1;
  pointer-events: auto;
}
.category-filter-panel.open { transform: translateX(0); }
.category-filter-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px 18px;
  border-bottom: 1px solid #f3f4f6;
}
.category-filter-head span {
  color: #9ca3af;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
.category-filter-head h2 {
  margin: 4px 0 0;
  color: #111827;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 950;
}
.category-filter-head button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.category-filter-list {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding: 22px 24px 30px;
}
.category-filter-list a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: white;
  color: #374151;
  font-size: 18px;
  font-weight: 900;
}
.category-filter-list a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.category-filter-list a.active,
.category-filter-list a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.overview-results { padding-top: 20px; }
.filter-chips {
  display: flex;
  gap: 10px;
  margin: 2px 0 0;
  overflow-x: auto;
  padding: 0 0 8px;
  scrollbar-width: none;
}
.filter-chips::-webkit-scrollbar { display: none; }
.filter-chips a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: white;
  color: #9ca3af;
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}
.filter-chips a.active,
.filter-chips a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.empty { color: var(--muted); border: 1px dashed #e5e7eb; border-radius: 12px; padding: 22px; background: white; }

.detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) 1fr;
  min-height: 470px;
  background: var(--primary);
  color: white;
  width: min(100% - 32px, 1280px);
  margin: 16px auto 0;
  border-radius: 32px;
  overflow: hidden;
}
.detail-hero > img { width: 100%; height: 100%; min-height: 470px; }
.detail-hero > div { padding: clamp(28px, 5vw, 64px); align-self: end; }
.detail-hero p { color: rgba(255,255,255,.8); font-size: 18px; }
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; }
.detail-grid article, .panel, .prose {
  background: white; border: 1px solid var(--line); border-radius: 12px; padding: clamp(18px, 3vw, 28px);
}
.detail-grid p, .prose { line-height: 1.7; }
.panel pre { white-space: pre-wrap; color: var(--muted); background: #f9fafb; padding: 12px; border-radius: 12px; overflow: auto; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery img { width: 100%; aspect-ratio: 1; border-radius: 12px; }
.map-list { display: grid; gap: 10px; }
.map-list a { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: center; background: white; border: 1px solid var(--line); border-radius: 12px; padding: 14px; }

.business-detail-hero {
  position: relative;
  width: 100%;
  height: clamp(360px, 45vw, 570px);
  margin: 0;
  overflow: hidden;
  background: #f3f4f6;
}
.business-detail-hero > img { width: 100%; height: 100%; object-fit: cover; }
.detail-float-btn {
  position: absolute;
  top: 24px;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  color: #111827;
  box-shadow: 0 10px 24px rgba(17,24,39,.14);
  cursor: pointer;
}
.detail-float-btn svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.detail-back { left: 24px; }
.detail-heart { right: 24px; font-size: 36px; color: #4b5563; }
.business-title-card {
  position: relative;
  z-index: 2;
  width: min(100% - 64px, 1280px);
  margin: -58px auto 0;
}
.business-title-card > div {
  max-width: 820px;
  background: white;
  border-radius: 28px 28px 0 0;
  padding: clamp(24px, 4vw, 48px) clamp(24px, 4vw, 48px) 32px;
  box-shadow: 0 -8px 30px rgba(17,24,39,.08);
}
.business-title-card h1 { margin: 18px 0 8px; font-size: clamp(40px, 6vw, 62px); line-height: 1; font-weight: 900; color: #111827; letter-spacing: 0; }
.business-title-card p { margin: 0; color: #111827; font-size: 24px; font-weight: 850; }
.business-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 460px); gap: 28px; align-items: start; }
.business-about, .detail-panel {
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 38px);
}
.business-about h2, .detail-panel h2 { margin: 0 0 22px; color: #111827; font-size: clamp(28px, 3vw, 38px); line-height: 1.1; font-weight: 900; }
.business-about p { color: #4b5563; line-height: 1.75; font-size: 16px; }
.business-side { display: grid; gap: 24px; }
.contact-action-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: 28px; }
.contact-action-grid a {
  min-height: 126px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 28px;
  color: #374151;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-action-grid svg, .contact-info-card svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  background: #f9fafb;
  border-radius: 24px;
  padding: 26px;
}
.contact-info-card small {
  display: block;
  color: #9ca3af;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-info-card strong { display: block; color: #374151; font-size: 24px; line-height: 1.25; }
.contact-links { display: grid; gap: 10px; margin-top: 18px; }
.contact-links a { color: var(--primary); font-weight: 850; }
.opening-panel { border: 0; }
.opening-public-list {
  background: #f9fafb;
  border-radius: 24px;
  padding: 30px 32px;
  display: grid;
  gap: 26px;
}
.opening-public-list div { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: baseline; }
.opening-public-list span { color: #4b5563; font-size: 30px; font-weight: 800; }
.opening-public-list strong { color: #111827; font-size: 30px; font-weight: 900; text-align: right; }
.opening-public-list strong.closed { color: #ef4444; }

.react-business-detail {
  min-height: 100vh;
  padding-bottom: 32px;
  background: white;
}
.react-business-detail .business-detail-hero {
  width: 100%;
  height: 288px;
  margin: 0;
  border-radius: 0;
  background: #f9fafb;
}
.react-business-detail .business-detail-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.react-business-detail .detail-float-btn {
  top: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.react-business-detail .detail-float-btn:hover { background: white; }
.react-business-detail .detail-float-btn svg { width: 24px; height: 24px; stroke-width: 2; }
.react-business-detail .detail-back { left: 16px; }
.react-business-detail .detail-heart { right: 16px; font-size: 24px; color: #4b5563; }
.react-detail-wrap {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: -40px auto 0;
  padding: 0 16px;
}
.react-detail-card {
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(17,24,39,.12);
}
.react-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.react-detail-card .open-state,
.recommend-state {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.recommend-state { background: #fef3c7; color: #a16207; }
.react-detail-card h1 {
  margin: 0 0 4px;
  color: #111827;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 900;
}
.react-category {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 650;
}
.react-description {
  border-top: 1px solid #f3f4f6;
  padding-top: 16px;
  margin-bottom: 24px;
  color: #4b5563;
  line-height: 1.65;
}
.react-description h2,
.react-contact-panel h2,
.react-opening-panel h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}
.react-description p {
  margin: 0;
  font-size: 14px;
  white-space: pre-wrap;
}
.react-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  border-top: 1px solid #f3f4f6;
  padding-top: 16px;
}
.react-detail-grid .detail-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.react-contact-panel .contact-action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.react-contact-panel .contact-action-grid a {
  min-height: 84px;
  padding: 14px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: white;
  color: #374151;
  gap: 8px;
}
.react-contact-panel .contact-action-grid svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}
.react-contact-panel .contact-action-grid span {
  font-size: 10px;
  font-weight: 900;
}
.react-contact-panel .contact-info-card,
.react-contact-panel .contact-links a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #f9fafb;
}
.react-contact-panel .contact-info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: 12px;
}
.react-contact-panel .contact-info-card svg,
.react-contact-panel .contact-links a svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.react-contact-panel .contact-info-card small,
.react-contact-panel .contact-links small {
  display: block;
  color: #9ca3af;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.react-contact-panel .contact-info-card strong {
  color: #374151;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}
.react-contact-panel .contact-links {
  margin-top: 0;
  gap: 12px;
}
.react-contact-panel .contact-links a {
  color: #374151;
  font-size: 12px;
  font-weight: 650;
}
.react-contact-panel .contact-links a span {
  display: grid;
  gap: 2px;
}
.react-opening-panel .opening-public-list {
  padding: 16px;
  border-radius: 12px;
  gap: 8px;
  background: #f9fafb;
}
.react-opening-panel .opening-public-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
  border-bottom: 1px solid #f9fafb;
}
.react-opening-panel .opening-public-list div:last-child { border-bottom: 0; }
.react-opening-panel .opening-public-list span {
  color: #4b5563;
  font-size: 14px;
  font-weight: 650;
}
.react-opening-panel .opening-public-list strong {
  max-width: 200px;
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}
.react-opening-panel .opening-public-list strong.closed { color: #ef4444; }
.react-promotion-section {
  max-width: 896px;
  margin: 24px auto 0;
  padding: 0 16px;
}
.react-promotion-section h2 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 20px;
  font-weight: 850;
}

@media (min-width: 768px) {
  .react-business-detail .business-detail-hero { height: 384px; }
  .react-detail-card { padding: 32px; }
}

.site-footer {
  display: flex; justify-content: space-between; align-items: center; gap: 28px; padding: 40px max(16px, calc((100vw - 1280px) / 2 + 16px));
  border-top: 1px solid var(--line); background: white; color: #9ca3af; margin-top: auto;
}
.site-footer div { display: grid; gap: 10px; justify-items: start; }
.site-footer nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.site-footer strong { color: var(--ink); }
.site-footer a { color: #6b7280; font-size: 14px; font-weight: 800; }
.footer-brand { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); }
.footer-brand img { width: 32px; height: 32px; object-fit: contain; }

.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 256px 1fr; align-items: start; background: #f3f4f6; }
.admin-sidebar {
  background: #fafafa; color: #3f3f46; border-right: 1px solid #d4d4d8; padding: 16px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 12px 32px rgba(17,24,39,.08);
  align-self: start;
  height: max-content;
  min-height: 0;
}
.admin-brand { min-height: 64px; display: flex; align-items: center; justify-content: center; gap: 10px; color: #18181b; font-size: 22px; font-weight: 900; text-align: center; }
.admin-brand img { width: 54px; height: 54px; object-fit: contain; border-radius: 12px; background: #050505; padding: 4px; }
.admin-nav { display: grid; gap: 18px; flex: 0 0 auto; }
.admin-nav a, .admin-side-action {
  display: flex; align-items: center; gap: 16px; min-height: 64px; padding: 14px 18px; border-radius: 22px; color: #3f3f46; font-weight: 800; transition: .18s ease;
}
.admin-nav a.active { background: #18181b; color: white; box-shadow: 0 8px 18px rgba(24,24,27,.16); }
.admin-nav a:hover, .admin-side-action:hover { background: #f4f4f5; color: #18181b; }
.admin-side-action.danger { color: #ef4444; }
.admin-user-card { padding: 12px; border-radius: 12px; background: #f4f4f5; color: #52525b; font-size: 13px; }
.admin-user-card strong, .admin-user-card span { display: block; }
.admin-user-card strong { color: #18181b; }
.admin-user-card span { margin-top: 3px; font-size: 12px; text-transform: capitalize; opacity: .72; }
.admin-icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.admin-main { padding: 32px; overflow: auto; }
.admin-content { max-width: 1280px; margin: 0 auto; }
.admin-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 28px; }
.admin-top h1 { margin: 0; color: #111827; font-size: clamp(32px, 4vw, 40px); line-height: 1.05; font-weight: 900; }
.admin-top p { margin: 8px 0 0; color: #4b5563; font-size: 18px; }
.admin-card { background: white; border: 1px solid #e5e7eb; border-radius: 16px; padding: 18px; box-shadow: 0 12px 30px rgba(17,24,39,.08); }
.admin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stats-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px; margin-bottom: 28px; }
.stat { background: white; border: 0; border-left: 4px solid #22c55e; border-radius: 12px; padding: 20px; box-shadow: 0 12px 28px rgba(17,24,39,.08); }
.stat span { color: #4b5563; font-size: 14px; font-weight: 700; }
.stat strong { display: block; margin-top: 8px; color: #111827; font-size: 28px; font-weight: 900; }
.stat-indigo { border-left-color: #6366f1; }
.stat-blue { border-left-color: #3b82f6; }
.stat-green { border-left-color: #22c55e; }
.stat-yellow { border-left-color: #eab308; }
.stat-purple { border-left-color: #a855f7; }
.admin-action-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 24px; }
.admin-feature-card { border: 0; border-radius: 16px; padding: 24px; background: white; box-shadow: 0 12px 30px rgba(17,24,39,.08); }
.admin-feature-card h2 { margin: 0; display: flex; align-items: center; gap: 9px; font-size: 19px; font-weight: 850; }
.admin-feature-card p { color: #4b5563; line-height: 1.55; }
.feature-indigo { background: linear-gradient(135deg, #eef2ff, #fff); }
.feature-green { background: linear-gradient(135deg, #f0fdf4, #fff); }
.feature-yellow { background: linear-gradient(135deg, #fefce8, #fff); }
.table-wrap { overflow: auto; background: white; border: 0; border-radius: 16px; box-shadow: 0 16px 34px rgba(17,24,39,.1); }
.admin-table-card { margin-top: 16px; }
.admin-card-head { padding: 20px 24px 4px; }
.admin-card-head h2 { margin: 0; font-size: 24px; font-weight: 800; }
.admin-page-actions { display: flex; justify-content: flex-end; gap: 12px; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 16px; border-bottom: 1px solid #f3f4f6; text-align: left; vertical-align: middle; }
th { font-size: 12px; color: #6b7280; text-transform: uppercase; letter-spacing: 0; font-weight: 850; }
.admin-cell-link { color: #111827; font-weight: 650; }
.admin-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}
.admin-status.active { background: #dcfce7; color: #166534; }
.admin-status.inactive { background: #fee2e2; color: #991b1b; }
.admin-row-actions { white-space: nowrap; text-align: right; }
.admin-row-actions a {
  display: inline-grid; place-items: center; width: 36px; height: 36px; margin-left: 6px; border: 1px solid #e5e7eb; border-radius: 999px; color: #4b5563;
}
.admin-row-actions a:hover { background: #f9fafb; color: #2563eb; }
.admin-row-actions a:last-child:hover { color: #dc2626; background: #fef2f2; }
.admin-empty { text-align: center; color: #6b7280; padding: 34px; }
.admin-form { display: grid; gap: 14px; max-width: 860px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 6px; color: var(--muted); font-weight: 750; font-size: 13px; }
input, select, textarea { border: 1px solid var(--line); border-radius: 8px; min-height: 42px; padding: 10px 12px; background: white; color: var(--ink); }
textarea { min-height: 120px; resize: vertical; }
.check-row { display: flex; align-items: center; gap: 8px; }
.check-row input { min-height: auto; }
.flash { padding: 12px 14px; border-radius: 8px; margin-bottom: 16px; background: #e8f7ed; color: #145c32; border: 1px solid #bfe5c9; }
.flash.error { background: #fff0ed; color: var(--danger); border-color: #ffc9c1; }
.login-page { min-height: 100vh; display: grid; place-items: center; padding: 20px; background: #f9fafb; }
.login-page .admin-card { width: min(430px, 100%); }
.login-card { padding: 32px; border-radius: 20px; box-shadow: 0 24px 60px rgba(17,24,39,.14); }
.login-brand { text-align: center; display: grid; justify-items: center; gap: 8px; }
.login-brand img { width: 180px; height: 180px; object-fit: contain; border-radius: 18px; background: #050505; padding: 8px; }
.login-brand h1 { margin: 0; font-size: 30px; line-height: 1.1; }
.login-brand p { margin: 0; color: #6b7280; }
.log-box { background: #0e1c16; color: #d8f6df; padding: 14px; border-radius: 8px; overflow: auto; white-space: pre-wrap; max-height: 460px; }
.admin-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.admin-form-actions { display: flex; flex-wrap: wrap; gap: 10px; padding: 12px; border-radius: 12px; background: #f9fafb; }
.geocode-status {
  align-self: center;
  color: #6b7280;
  font-size: 13px;
  font-weight: 750;
}
.upload-panel { display: grid; gap: 12px; }
.upload-head { display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.upload-head strong { color: #111827; font-size: 15px; }
.upload-head span { color: #9ca3af; font-size: 12px; font-weight: 700; }
.upload-dropzone {
  min-height: 210px; border: 2px dashed #e5e7eb; border-radius: 16px; background: #f9fafb; display: grid; place-items: center; align-content: center;
  text-align: center; cursor: pointer; transition: .18s ease; color: #6b7280;
}
.upload-dropzone:hover { background: #f3f4f6; border-color: rgba(45,122,62,.4); }
.upload-dropzone .admin-icon { width: 34px; height: 34px; color: #9ca3af; margin-bottom: 8px; }
.upload-dropzone span { color: #4b5563; font-weight: 800; }
.upload-dropzone small { color: #9ca3af; margin-top: 4px; }
.upload-dropzone input { display: none; }
.upload-preview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.upload-preview-grid figure { margin: 0; border: 1px solid #e5e7eb; border-radius: 14px; overflow: hidden; background: white; }
.upload-preview-grid img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.upload-preview-grid figcaption { padding: 7px 9px; color: #6b7280; font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload-existing textarea { min-height: 80px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }
.opening-editor {
  display: grid;
  gap: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 20px;
  background: #f9fafb;
}
.opening-editor-head { display: flex; align-items: center; gap: 10px; color: #111827; }
.opening-editor-head h3 { margin: 0; font-size: 20px; font-weight: 900; }
.opening-days { display: grid; gap: 18px; }
.opening-day-card {
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(15,23,42,.04);
}
.opening-day-top {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto auto auto;
  gap: 18px;
  align-items: center;
}
.opening-day-top strong { color: #030712; font-size: 20px; font-weight: 900; }
.opening-closed { display: inline-flex; align-items: center; gap: 10px; color: #6b7280; font-size: 16px; font-weight: 850; }
.opening-closed input { width: 18px; height: 18px; min-height: 0; accent-color: #1f7aff; }
.opening-copy, .opening-add {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: white;
  color: #030712;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}
.opening-add { border: 1px dashed #cbd5e1; }
.opening-copy svg, .opening-add svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.opening-slots { display: grid; gap: 12px; margin-top: 18px; padding-left: min(128px, 18vw); }
.opening-slot { display: grid; grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr) auto; gap: 14px; align-items: center; }
.opening-slot label { position: relative; display: block; }
.opening-slot input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  color: #030712;
  font-size: 20px;
  padding: 0 44px 0 18px;
}
.opening-slot label span {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #030712;
  pointer-events: none;
}
.opening-slot label span svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.opening-slot em { color: #9ca3af; font-style: normal; font-size: 20px; font-weight: 800; }
.opening-slot [data-remove] {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #fef2f2;
  color: #dc2626;
  font-size: 24px;
  cursor: pointer;
}
.map-shell { position: relative; background: white; border-radius: 28px; overflow: hidden; min-height: 640px; box-shadow: 0 18px 42px rgba(17,24,39,.12); }
.business-map { min-height: 640px; width: 100%; z-index: 1; }
.map-empty { position: absolute; inset: 20px; display: grid; place-items: center; z-index: 2; background: rgba(255,255,255,.82); border: 1px dashed #d1d5db; border-radius: 20px; color: #6b7280; font-weight: 800; }
.map-empty[hidden] { display: none; }
.map-popup { display: grid; grid-template-columns: 58px 1fr; gap: 10px; align-items: center; min-width: 220px; color: #111827; }
.map-popup img { width: 58px; height: 58px; border-radius: 12px; object-fit: cover; background: #f3f4f6; }
.map-popup strong { display: block; font-weight: 900; line-height: 1.2; }
.map-popup small { display: block; margin-top: 3px; color: #6b7280; line-height: 1.35; }

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  .mobile-toggle { display: inline-grid; place-items: center; }
  .main-nav { display: none; }
body.menu-open { overflow: hidden; }
body.category-menu-open { overflow: hidden; }
  .mobile-menu-scrim {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    background: rgba(17,24,39,.24);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }
  body.menu-open .mobile-menu-scrim {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    background: white;
    color: #111827;
    transform: translateX(100%);
    transition: transform .24s ease;
  }
  .mobile-menu-panel.open { transform: translateX(0); }
  .mobile-menu-scroll {
    overflow-y: auto;
    padding: 22px 22px 132px;
  }
  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
  }
  .mobile-menu-head h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1;
    font-weight: 950;
  }
  .mobile-menu-close {
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    color: #4b5563;
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
  }
  .mobile-menu-label {
    margin: 0 0 24px;
    color: #9ca3af;
    font-size: 21px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .mobile-menu-nav {
    display: grid;
    gap: 12px;
  }
  .mobile-menu-nav a {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 22px;
    background: #f9fafb;
    padding: 0 34px;
    color: #374151;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
  }
  .mobile-menu-nav a.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 12px 28px rgba(45,122,62,.18);
  }
  .mobile-menu-nav a.active::after {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: white;
  }
  .mobile-menu-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 48px 0 34px;
  }
  .mobile-menu-group {
    display: grid;
    gap: 18px;
    margin-bottom: 36px;
  }
  .mobile-menu-group strong {
    color: #6b7280;
    font-size: 20px;
    font-weight: 950;
    text-transform: uppercase;
  }
  .mobile-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .mobile-pill-grid a {
    min-height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #f3f4f6;
    border-radius: 22px;
    background: white;
    padding: 0 24px;
    color: #9ca3af;
    font-size: 21px;
    font-weight: 900;
  }
  .mobile-pill-grid a.active {
    border-color: var(--primary);
    background: #f6fbf7;
    color: var(--primary);
  }
  .mobile-pill-grid.cities a {
    min-width: min(100%, 220px);
    flex: 1 1 220px;
  }
  .mobile-menu-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(255,255,255,.96);
    border-top: 1px solid #e5e7eb;
    padding: 28px;
  }
  .mobile-menu-done {
    width: 100%;
    min-height: 82px;
    border: 0;
    border-radius: 22px;
    background: var(--primary);
    color: white;
    font-size: 30px;
    font-weight: 950;
    cursor: pointer;
  }
  .city-form select { max-width: 130px; }
  .hero { flex-direction: column; align-items: stretch; border-radius: 32px; }
  .hero-logo { align-self: center; }
  .hero-copy { flex: 0 0 auto; text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-recommended { flex: 0 0 auto; width: 100%; max-width: 720px; margin: 0 auto; }
  .overview-top { grid-template-columns: 1fr 1fr; }
  .overview-search { grid-column: 1 / -1; }
  .overview-filter-toggle strong { max-width: 260px; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .detail-hero, .detail-grid, .business-detail-layout, .admin-shell { grid-template-columns: 1fr; }
  .business-title-card { width: min(100% - 32px, 1280px); }
  .business-side { grid-template-columns: 1fr; }
  .opening-day-top { grid-template-columns: 1fr 1fr; }
  .opening-slots { padding-left: 0; }
  .admin-sidebar { position: static; }
  .admin-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-brand { justify-content: flex-start; }
  .admin-main { padding: 20px; }
  .stats-grid, .admin-action-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-grid, .form-grid, .gallery, .upload-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .map-list a { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; text-align: center; }
  .site-footer div { justify-items: center; }
}

@media (max-width: 620px) {
  .site-header { gap: 8px; }
  .brand-copy strong { max-width: 120px; font-size: 14px; }
  .brand-copy small { max-width: 120px; }
  .city-form { display: none; }
  .mobile-menu-scroll { padding: 16px 18px 116px; }
  .mobile-menu-head { margin-bottom: 28px; }
  .mobile-menu-head h2 { font-size: 36px; }
  .mobile-menu-label { margin-bottom: 22px; font-size: 18px; }
  .mobile-menu-nav a {
    min-height: 78px;
    border-radius: 20px;
    padding: 0 28px;
    font-size: 28px;
  }
  .mobile-menu-divider { margin: 42px 0 30px; }
  .mobile-menu-group strong { font-size: 18px; }
  .mobile-pill-grid a {
    min-height: 62px;
    border-width: 3px;
    border-radius: 20px;
    padding: 0 20px;
    font-size: 20px;
  }
  .mobile-menu-footer { padding: 26px 18px 18px; }
  .mobile-menu-done { min-height: 70px; border-radius: 20px; font-size: 28px; }
  .hero {
    min-height: 0;
    width: calc(100% - 24px);
    margin-top: 12px;
    padding: 28px 22px 0;
    border-radius: 28px;
    gap: 24px;
    align-items: center;
  }
  .hero-logo {
    width: 146px;
    height: 146px;
    border-radius: 28px;
    background: rgba(255,255,255,.14);
    padding: 18px;
  }
  .hero-copy {
    flex: 0 0 auto;
    min-width: 0;
    width: 100%;
  }
  .hero h1 {
    font-size: 42px;
    line-height: 1.12;
    max-width: 360px;
    margin: 0 auto;
  }
  .hero p {
    font-size: 20px;
    line-height: 1.28;
    max-width: 340px;
  }
  .hero-recommended {
    flex: 0 0 auto;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    width: calc(100% + 44px);
    max-width: none;
    margin: 18px -22px 0;
    padding: 0 22px 22px;
    overflow-x: auto;
    align-self: stretch;
  }
  .hero-mini-card {
    min-width: 220px;
    border-radius: 24px;
    background: rgba(255,255,255,.16);
  }
  .hero-mini-card span { height: 178px; border-radius: 18px; }
  .hero-mini-card strong { font-size: 21px; }
  .hero-mini-card small { font-size: 16px; }
  .overview-top {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin-top: 16px;
    gap: 12px;
  }
  .overview-search,
  .overview-open-toggle,
  .overview-filter-toggle { min-height: 58px; border-radius: 16px; }
  .overview-search span { width: 58px; }
  .overview-search input { min-height: 58px; font-size: 17px; }
  .overview-open-toggle { min-width: 150px; padding: 0 18px; font-size: 17px; }
  .overview-filter-toggle {
    justify-content: flex-start;
    padding: 0 16px;
  }
  .overview-filter-toggle span { font-size: 13px; }
  .overview-filter-toggle strong { max-width: none; font-size: 17px; }
  .category-filter-panel {
    width: 100vw;
    max-width: none;
  }
  .category-filter-head {
    padding: 24px 22px 18px;
  }
  .category-filter-head h2 { font-size: 38px; }
  .category-filter-list {
    gap: 12px;
    padding: 20px 18px 30px;
  }
  .category-filter-list a {
    min-height: 68px;
    border-radius: 18px;
    font-size: 22px;
  }
  .filter-chips a {
    min-height: 48px;
    padding: 0 16px;
    font-size: 15px;
  }
  .location-selector-band { padding: 24px 12px 20px; }
  .location-selector { gap: 12px; }
  .location-choice { width: 100%; border-radius: 22px; padding: 14px 16px; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .section { padding-left: 12px; padding-right: 12px; }
  .section-head { align-items: center; }
  .card-body { padding: 10px; }
  .image-wrap { height: 112px; }
  .business-card .card-body h3 { font-size: 13px; }
  .card-body p:not(.muted):not(.meta-line) { display: none; }
  .business-detail-hero { width: 100%; height: 320px; margin-top: 0; }
  .detail-float-btn { top: 18px; width: 50px; height: 50px; }
  .detail-back { left: 18px; }
  .detail-heart { right: 18px; }
  .business-title-card { width: calc(100% - 24px); margin-top: -42px; }
  .business-title-card > div { border-radius: 24px 24px 0 0; padding: 24px; }
  .business-title-card h1 { font-size: 40px; }
  .business-title-card p { font-size: 20px; }
  .react-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-action-grid { grid-template-columns: 1fr; }
  .react-contact-panel .contact-action-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-action-grid a { min-height: 96px; }
  .contact-info-card { padding: 20px; }
  .contact-info-card strong { font-size: 19px; }
  .opening-public-list { padding: 22px; gap: 18px; }
  .opening-public-list span, .opening-public-list strong { font-size: 21px; }
  .opening-day-card { padding: 18px; }
  .opening-day-top { grid-template-columns: 1fr; gap: 12px; }
  .opening-copy, .opening-add { width: 100%; }
  .opening-slot { grid-template-columns: 1fr; }
  .opening-slot em { text-align: center; }
  .search-panel, .toolbar, .site-footer { flex-direction: column; }
  .admin-grid, .form-grid, .gallery { grid-template-columns: 1fr; }
  .stats-grid, .admin-action-grid, .admin-nav, .upload-preview-grid { grid-template-columns: 1fr; }
  .admin-top p { font-size: 15px; }
  .admin-page-actions { justify-content: stretch; }
  .admin-page-actions .admin-btn, .admin-form-actions .admin-btn { width: 100%; }
  .map-shell, .business-map { min-height: 520px; }
  .detail-hero > img { min-height: 300px; }
}

@media (max-width: 390px) {
  .grid { grid-template-columns: 1fr; }
  .brand-copy { display: none; }
}
