* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #fafafa;
  color: #222;
  min-height: 100vh;
  padding: 40px;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  margin-bottom: 80px;
}

.logo img {
  height: 90px;
}

/* Sidebar */
.sidebar {
  width: 420px;
}

.photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.photos img {
  width: calc((100% - 32px) / 5);
  aspect-ratio: 1;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.review-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.rating-score {
  color: #1a9e3f;
  font-weight: 600;
  font-size: 15px;
}

.stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 1px;
}

.phone {
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 8px;
  text-align: center;
  color: #222;
}

.phone a {
  color: inherit;
  text-decoration: none;
}

.location {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #8F8F8F;
  margin-bottom: 20px;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  font-weight: 400;
}

.hours tr {
  display: flex;
  align-items: baseline;
}

.hours td:first-child {
  white-space: nowrap;
}

.hours td:nth-child(2) {
  flex: 1;
  border-bottom: 1px dotted #ccc;
  margin: 0 8px;
  height: 1px;
  align-self: center;
}

.hours td:last-child {
  white-space: nowrap;
}

.holiday-note {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #000;
}

.powered-by {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.powered-by img {
  height: 40px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 480px) {
  body {
    padding: 24px;
  }

  main {
    align-items: flex-start;
    min-height: auto;
  }

  header {
    margin-bottom: 48px;
  }

  .logo img {
    height: 70px;
  }

  .sidebar {
    width: 100%;
  }

  .phone {
    font-size: 22px;
  }

  .photos img {
    width: calc((100% - 24px) / 4);
  }
}
