/* Private dining page — extends menu.css */

.pd-intro p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgb(34 31 32 / 0.88);
}

.pd-intro p:last-child {
  margin-bottom: 0;
}

.pd-menu-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.pd-menu-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgb(110 76 31 / 0.5);
  border-radius: 999px;
  text-decoration: none;
  color: var(--burgundy);
  font-weight: 700;
  letter-spacing: 0.02em;
  background: transparent;
}

.pd-menu-links a:hover,
.pd-menu-links a:focus-visible {
  background: rgb(156 20 33 / 0.1);
  outline: none;
}

.pd-spaces {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pd-space {
  display: flex;
  flex-direction: column;
  margin: 0;
  border: 1px solid rgb(110 76 31 / 0.35);
  border-radius: 14px;
  overflow: hidden;
  background: rgb(255 250 222 / 0.55);
}

.pd-space__photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.pd-space__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1.05rem 1.15rem;
}

.pd-space__title {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
  line-height: 1.25;
}

.pd-space__addr {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgb(110 76 31 / 0.95);
}

.pd-space__addr a {
  color: inherit;
  font-weight: 700;
  text-underline-offset: 3px;
}

.pd-space__desc {
  margin: 0;
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgb(34 31 32 / 0.88);
}

.pd-space__cta {
  margin-top: 0.35rem;
}

.pd-space__cta .menu-top__btn {
  width: 100%;
  justify-content: center;
}
