/* ═══════════════════════════════════════════════════════════════════
   PACKAGE DETAIL PAGE
   Uses the same color tokens as the existing site (pine, gold, cream).
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────── */
.pd-hero {
  padding: 144px 0 80px;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}
.pd-crumbs {
  font-size: .85rem;
  margin-bottom: 18px;
  opacity: .9;
}
.pd-crumbs a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, .4);
}
.pd-crumbs a:hover {
  border-bottom-color: var(--gold, #d4a017);
}
.pd-crumbs span {
  opacity: .8;
}
.pd-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 700;
  max-width: 880px;
}
.pd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 1rem;
}
.pd-meta-item {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: 24px;
  font-weight: 500;
}
.pd-meta-item small {
  font-size: .82rem;
  opacity: .8;
  font-weight: 400;
}

@media (max-width: 720px) {
  .pd-hero { padding: 110px 0 56px; }
  .pd-title { font-size: 2.2rem; }
}

/* ── Body — two-column ────────────────────────────────────────── */
.pd-body {
  background: var(--snow, #fffdf7);
  padding: 60px 0 80px;
}
.pd-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) {
  .pd-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Main content ─────────────────────────────────────────────── */
.pd-lead {
  font-size: 1.18rem;
  line-height: 1.65;
  color: #444;
  margin: 0 0 36px;
  font-weight: 400;
}
.pd-section {
  margin-bottom: 48px;
}
.pd-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: var(--pine, #1B3A2D);
  margin: 0 0 20px;
  font-weight: 700;
}
.pd-prose {
  color: #444;
  line-height: 1.75;
  font-size: 1rem;
}

/* ── Batches ──────────────────────────────────────────────────── */
.pd-batches {
  display: grid;
  gap: 12px;
}
.pd-batch {
  background: #fff;
  border: 1px solid #e8e3d6;
  border-left: 4px solid var(--gold, #d4a017);
  padding: 18px 22px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transition: transform .2s, box-shadow .2s;
}
.pd-batch:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 58, 45, .08);
}
.pd-batch-dates strong {
  display: block;
  color: var(--pine, #1B3A2D);
  font-size: 1.05rem;
}
.pd-batch-dates span {
  color: #777;
  font-size: .88rem;
}
.pd-batch-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.pd-batch-status {
  padding: 3px 12px;
  border-radius: 12px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.pd-batch-status-open { background: #dff5e3; color: #2a7a3e; }
.pd-batch-status-filling { background: #fdf0d8; color: #b27814; }
.pd-batch-status-waitlist { background: #fdebd5; color: #aa5b14; }
.pd-batch-status-closed { background: #ebebeb; color: #555; }
.pd-batch-slots {
  font-size: .82rem;
  color: #777;
}

/* ── Brochure CTA ─────────────────────────────────────────────── */
.pd-brochure-btn {
  display: inline-block;
  background: var(--pine, #1B3A2D);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 500;
  transition: background .2s, transform .15s;
}
.pd-brochure-btn:hover {
  background: var(--forest, #4A7C59);
  transform: translateY(-1px);
}

/* ── Reviews ──────────────────────────────────────────────────── */
.pd-reviews {
  display: grid;
  gap: 16px;
}
.pd-review {
  background: #fff;
  border: 1px solid #e8e3d6;
  padding: 20px 24px;
  border-radius: 8px;
}
.pd-review-stars {
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.pd-review-body {
  font-style: italic;
  color: #444;
  line-height: 1.65;
  margin: 0 0 10px;
}
.pd-review-author {
  font-size: .88rem;
  color: #777;
}

/* ═══════════════════════════════════════════════════════════════════
   SIDEBAR — sticky booking card
   ═══════════════════════════════════════════════════════════════════ */
.pd-sidebar {
  position: sticky;
  top: 100px;
}
@media (max-width: 980px) {
  .pd-sidebar { position: static; }
}

.pd-book-card {
  background: #fff;
  border: 1px solid #e8e3d6;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(27, 58, 45, .08);
}

.pd-book-price {
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #f0ece2;
}
.pd-book-price-label {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 4px;
}
.pd-book-price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--pine, #1B3A2D);
  display: block;
  line-height: 1;
}
.pd-book-price-unit {
  font-size: .85rem;
  color: #777;
  display: block;
  margin-top: 4px;
}

.pd-book-card label {
  display: block;
  font-size: .85rem;
  color: var(--pine, #1B3A2D);
  font-weight: 500;
  margin-bottom: 12px;
}
.pd-book-card label input {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 10px 12px;
  border: 1.5px solid #e0ddd0;
  border-radius: 6px;
  font-size: .92rem;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.pd-book-card label input:focus {
  outline: none;
  border-color: var(--gold, #d4a017);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, .12);
}

.pd-book-btn {
  width: 100%;
  background: var(--gold, #d4a017);
  color: var(--pine, #1B3A2D);
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s, transform .15s;
}
.pd-book-btn:hover {
  background: #e6b423;
  transform: translateY(-1px);
}
.pd-book-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.pd-book-divider {
  text-align: center;
  margin: 22px 0;
  position: relative;
  color: #aaa;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pd-book-divider::before,
.pd-book-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: #e8e3d6;
}
.pd-book-divider::before { left: 0; }
.pd-book-divider::after { right: 0; }

.pd-wa-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: background .2s, transform .15s;
}
.pd-wa-btn:hover {
  background: #128c7e;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════════
   RELATED PACKAGES
   ═══════════════════════════════════════════════════════════════════ */
.pd-related {
  background: var(--cream, #f7f3ec);
  padding: 80px 0;
  border-top: 1px solid #e8e3d6;
}
.pd-related h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--pine, #1B3A2D);
  text-align: center;
  margin: 0 0 40px;
}
.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.pd-related-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 14px rgba(27, 58, 45, .05);
}
.pd-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(27, 58, 45, .12);
}
.pd-related-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}
.pd-related-body {
  padding: 20px 22px 22px;
}
.pd-related-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--pine, #1B3A2D);
  margin: 0 0 8px;
}
.pd-related-body p {
  color: #666;
  font-size: .92rem;
  line-height: 1.55;
  margin: 0 0 16px;
}
.pd-related-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #f0ece2;
  font-size: .88rem;
  color: #777;
}
.pd-related-price {
  font-weight: 600;
  color: var(--pine, #1B3A2D);
  font-size: 1.02rem;
}
