.hero {
  padding: 14px 0 24px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.hero-title {
  margin: 0 0 8px;
  font-size: var(--fs-hero);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  margin: 0;
  font-size: var(--fs-sub);
  color: var(--text-soft);
  max-width: 640px;
}

.hero-search {
  width: min(720px, 100%);
}

.search-form {
  position: relative;
  z-index: 30;
}

.search-control {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast),
    background var(--transition-fast);
}

.search-control:focus-within {
  border-color: var(--accent);
  box-shadow: var(--shadow-primary-hover);
  transform: translateY(-1px);
  background: var(--surface);
}

.search-input {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.search-input-icon {
  font-size: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-input input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  color: var(--text-main);
}

.search-input input::placeholder {
  color: var(--text-placeholder);
}

.search-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.search-kbd {
  width: 55px;
  font-size: 11px;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--bg-alt);
  color: var(--text-muted);
}

.search-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--surface-soft);
  font-size: 12px;
  color: var(--text-soft);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.search-filter-pill:hover {
  background: var(--bg-alt);
  transform: translateY(-1px);
}

.search-filter-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

@media (max-width: 640px) {
  .hero {
    padding: 8px 0 18px;
  }

  .hero-inner {
    align-items: stretch;
    text-align: left;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-search {
    width: 100%;
  }

  .search-control {
    height: 50px;
  }

  .search-actions {
    gap: 6px;
  }

  .search-kbd {
    display: none;
  }
}

.section {
  padding: 8px 0 16px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.section-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-subtitle {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.section-header-right {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-picks-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 1024px) {
  .top-picks-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .top-picks-row {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .top-pick-card {
    min-width: 70%;
    max-width: 80%;
    scroll-snap-align: start;
  }

  .top-picks-row::-webkit-scrollbar {
    height: 4px;
  }

  .top-picks-row::-webkit-scrollbar-thumb {
    background: var(--border-subtle);
    border-radius: 999px;
  }
}

.top-pick-card {
  position: relative;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  background: var(--surface-strong);
  transform-origin: center;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
  border: 1px solid transparent;
}

.top-pick-card.is-active {
  border-color: var(--accent-soft-strong);
  box-shadow: var(--shadow-primary-hover);
}

.top-pick-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.02);
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.top-pick-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-pick-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.75),
    rgba(15, 23, 42, 0.1)
  );
}

.top-pick-content {
  position: absolute;
  inset: auto 12px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text-on-dark);
}

.top-pick-title {
  font-size: 14px;
  font-weight: 600;
}

.top-pick-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 7px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  font-size: 11px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
}

.pill-star {
  color: var(--rating);
  font-size: 11px;
}

.top-pick-card:hover .top-pick-image {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(1.03);
}

.top-pick-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.filters-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.filters-left {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filters-right {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.chip {
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--color-chip);
  padding: 5px 9px;
  font-size: 12px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.chip:hover {
  background: var(--bg-alt);
  transform: translateY(-1px);
}

.chip[aria-pressed="true"],
.chip.is-accent {
  background: var(--accent-soft);
  border-color: var(--accent-soft-strong);
  color: var(--accent);
}

.chip-count {
  font-size: 11px;
  color: var(--text-muted);
}

.select-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.select {
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--surface-soft);
  padding: 6px 10px;
  font-size: 13px;
  color: var(--text-soft);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.select:hover {
  border-color: var(--accent-soft-strong);
  background: var(--surface);
  transform: translateY(-1px);
}

.places-grid,
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 1024px) {
  .places-grid,
  .cards-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .places-grid,
  .cards-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.place-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
  min-height: 220px;
}

.place-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-strong);
}

.place-thumb {
  height: 150px;
  background-size: cover;
  background-position: center;
}

.place-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-body {
  padding: 12px 12px 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.place-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.place-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.place-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.place-location-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
}

.place-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-soft);
}

.place-rating-star {
  color: var(--rating);
  font-size: 12px;
}

.place-desc {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.45;
}

.place-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.place-tag {
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--bg-alt);
  font-size: 11px;
  color: var(--text-muted);
}

.place-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.place-btn {
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--surface-soft);
  padding: 6px 10px;
  font-size: 12px;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.place-btn:hover {
  background: var(--bg-alt);
  transform: translateY(-1px);
}

.place-btn-primary {
  background: var(--text-main);
  border-color: var(--text-main);
  color: var(--bg);
}

.place-btn-primary:hover {
  background: color-mix(in oklab, var(--text-main), black 12%);
}

.place-like {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  padding: 0;
  justify-content: center;
  font-size: 15px;
}

.place-like[aria-pressed="true"] {
  background: var(--status-danger-bg);
  border-color: var(--status-danger-border);
  color: var(--status-danger-text);
}

.empty-state {
  margin-top: 12px;
  padding: 16px 14px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-subtle);
  background: var(--bg-alt);
  font-size: 13px;
  color: var(--text-soft);
}

.empty-state strong {
  color: var(--text-main);
}

[data-theme="dark"] .search-kbd {
  background: var(--color-chip);
  border-color: var(--border-subtle);
  color: var(--text-muted);
}
