/* ============================================================
   DETAILS PAGE
   ============================================================ */

.details-page {
  padding-top: 60px;
  background: linear-gradient(170deg, var(--linen-0) 0%, var(--linen-1) 100%);
  min-height: 100svh;
}

.details-page-header {
  padding: 4rem 2rem 3rem;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.details-page-header h1 {
  font-family: 'BioRhyme', serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--bold-burgundy);
  margin-bottom: 0.75rem;
}

.details-page-intro {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--reunion-text-muted);
  line-height: 1.7;
}

.details-page-content {
  padding: 0 2rem 5rem;
  max-width: 960px;
  margin-inline: auto;
}

.details-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 680px) {
  .details-page-grid {
    grid-template-columns: 1fr;
  }
}

/* Hotel details within glass card */
.details-hotel-name {
  font-family: 'BioRhyme', serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--bold-brown);
  margin-bottom: 0.3rem;
}

.details-hotel-address {
  font-family: 'Lora', serif;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--reunion-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.details-hotel-rate {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--bold-brown);
  margin-bottom: 0.3rem;
}

.details-hotel-rate .rate-amount {
  font-family: 'BioRhyme', serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--bold-burgundy);
}

.details-hotel-deadline {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: var(--reunion-text-muted);
  margin-bottom: 1.25rem;
}

/* Contact details */
.details-contact-name {
  font-family: 'BioRhyme', serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--bold-brown);
  margin-bottom: 0.15rem;
}

.details-contact-role {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--reunion-text-muted);
  margin-bottom: 1.25rem;
}

.details-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.details-contact-link {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bold-olive);
  text-decoration: none;
  border-bottom: 1px solid rgba(140, 120, 40, 0.3);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
  width: fit-content;
}

.details-contact-link:hover {
  color: var(--bold-olive-dk);
  border-color: var(--bold-olive);
}
