*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Header ── */
header {
  border-bottom: 1px solid #eee;
  padding: 1rem 2rem;
}

.site-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-title:hover {
  opacity: 0.7;
}

/* ── Layout ── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

article {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.article-container {
  flex: 1;
  min-width: 0;
  padding: 0 0 4rem;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 2rem;
  color: #999;
  font-size: 0.85rem;
  border-top: 1px solid #eee;
  margin-top: 2rem;
}

/* ── Card grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  display: block;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}

.card img,
.card-no-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #f4f4f4;
}

.card-body {
  padding: 1rem;
}

.card-body h2 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0.35rem 0 0.6rem;
  line-height: 1.3;
}

.card-meta {
  font-size: 0.8rem;
  color: #666;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Badges & rating ── */
.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #f0f0f0;
  color: #444;
  padding: 2px 7px;
  border-radius: 4px;
}

.rating {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  letter-spacing: 0.02em;
}

/* ── Review page ── */
.slideshow {
  position: relative;
  width: 40%;
  flex-shrink: 0;
}

.slide {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.slide.active {
  display: block;
}

.slide-prev,
.slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  padding: 0.2rem 0.55rem 0.3rem;
  border-radius: 4px;
}

.slide-prev { left: 0.5rem; }
.slide-next { right: 0.5rem; }

.slide-prev:hover,
.slide-next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s;
}

.dot.active {
  background: #111;
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-bottom: 1px dotted #999;
}

.location-link:hover {
  border-bottom-color: #111;
}

.back-link {
  display: inline-block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1.25rem;
}

.back-link:hover {
  color: #111;
}

article h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.review-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: #555;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #eee;
}

.review-body {
  font-size: 1.05rem;
  line-height: 1.8;
}

.review-body p {
  margin-bottom: 1.1rem;
}

.review-body h2,
.review-body h3 {
  margin: 2rem 0 0.5rem;
  letter-spacing: -0.02em;
}


/* ── Empty state ── */
.empty {
  color: #999;
  font-size: 1rem;
  padding: 3rem 0;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  header {
    padding: 0.75rem 1rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  article {
    flex-direction: column;
  }

  .slideshow {
    width: 100%;
  }

  article h1 {
    font-size: 1.5rem;
  }
}

