/* ══════════════════════════════════════════════════════════
   PACKAGE CARDS
   Rendered at runtime from the admin panel. Follows the same
   dark-cloth-and-gold language as the rest of the site.
   ══════════════════════════════════════════════════════════ */

.pk-grid {
  display: grid;
  grid-template-columns: repeat(var(--pk-cols, 3), minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: stretch;
}

.pk-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(232, 201, 122, .03);
  border: 1px solid rgba(200, 164, 63, .16);
  transition: border-color .35s, transform .35s, box-shadow .35s;
}

.pk-card:hover {
  border-color: rgba(200, 164, 63, .45);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -34px rgba(0, 0, 0, .85);
}

.pk-media { position: relative; aspect-ratio: 5 / 4; overflow: hidden; }
.pk-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.2, .8, .25, 1); }
.pk-card:hover .pk-media img { transform: scale(1.06); }
.pk-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7, 6, 3, .55)); pointer-events: none; }

.pk-badge {
  position: absolute; top: .85rem; left: .85rem; z-index: 2;
  font-family: var(--body); font-size: .62rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--kiswah); background: linear-gradient(135deg, var(--gold-2), var(--gold));
  padding: .34rem .6rem; border-radius: 2px;
}

.pk-body { padding: 1.2rem 1.35rem 1.4rem; display: flex; flex-direction: column; flex: 1; }

.pk-body h3 {
  font-family: var(--display); font-weight: 600; font-size: 1.3rem;
  color: var(--ivory); letter-spacing: -.01em; margin-bottom: .3rem;
}

.pk-sub { color: rgba(234, 216, 166, .58); font-size: .84rem; line-height: 1.5; margin-bottom: .8rem; }

/* Price */
.pk-price {
  display: block; font-family: var(--display); font-size: 1.55rem;
  color: var(--gold-2); letter-spacing: -.01em; margin-bottom: .9rem;
}
.pk-price .pk-cur { font-family: var(--body); font-size: .72rem; letter-spacing: .1em; color: var(--gold); vertical-align: .35em; }
.pk-price small { font-family: var(--body); font-size: .66rem; letter-spacing: .08em; color: rgba(234, 216, 166, .45); text-transform: uppercase; }
.pk-price-call { font-size: 1.05rem; font-style: italic; color: rgba(234, 216, 166, .8); }

/* Detail rows */
.pk-meta { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .42rem; }
.pk-meta li { display: flex; gap: .7rem; align-items: baseline; font-size: .78rem; line-height: 1.45; }
.pk-meta b {
  flex: 0 0 5.4rem; font-family: var(--body); font-weight: 500; font-size: .63rem;
  letter-spacing: .13em; text-transform: uppercase; color: rgba(200, 164, 63, .72);
}
.pk-meta span { color: rgba(234, 216, 166, .68); }

/* Inclusions */
.pk-includes { margin-bottom: 1.15rem; padding-top: .9rem; border-top: 1px solid rgba(200, 164, 63, .13); }
.pk-includes h5 {
  font-family: var(--body); font-weight: 500; font-size: .62rem; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(200, 164, 63, .72); margin-bottom: .5rem;
}
.pk-includes ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .3rem; }
.pk-includes li { position: relative; padding-left: .95rem; font-size: .79rem; line-height: 1.5; color: rgba(234, 216, 166, .68); }
.pk-includes li::before {
  content: ''; position: absolute; left: 0; top: .52em;
  width: 4px; height: 4px; transform: rotate(45deg); background: var(--gold);
}

/* Call to action */
.pk-cta {
  margin-top: auto; display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .74rem 1.1rem; border-radius: 3px;
  font-family: var(--body); font-size: .74rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase; text-decoration: none;
  color: var(--kiswah); background: linear-gradient(135deg, var(--gold-2), var(--gold));
  transition: filter .3s, transform .3s;
}
.pk-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* Nothing published yet */
.pk-empty {
  grid-column: 1 / -1; text-align: center; padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
  border: 1px dashed rgba(200, 164, 63, .22); border-radius: 5px;
  color: rgba(234, 216, 166, .5); font-family: var(--display); font-size: 1.05rem; font-style: italic;
}

/* Category headings on the Packages page */
.pk-cat-head { margin: clamp(2.4rem, 5vw, 4rem) 0 clamp(1.1rem, 2vw, 1.6rem); }
.pk-cat-head:first-of-type { margin-top: 0; }
.pk-cat-head h2 {
  font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--ivory); letter-spacing: -.015em;
}
.pk-cat-head h2 em { font-style: italic; font-weight: 400; color: var(--gold-2); }

/* ══════════════════════════════════════════════════════════
   ENQUIRY FORM
   ══════════════════════════════════════════════════════════ */

/* Honeypot: off screen for people, still fillable by bots. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  margin-top: .9rem; font-size: .84rem; line-height: 1.55;
  color: var(--gold-2); border-left: 2px solid var(--gold); padding-left: .8rem;
}
.form-status.bad { color: rgba(234, 216, 166, .8); border-left-color: #D9705E; }
.form-status a { color: var(--gold-2); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 980px) {
  .pk-grid { grid-template-columns: repeat(min(var(--pk-cols, 3), 2), minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .pk-grid { grid-template-columns: 1fr; }
  .pk-meta b { flex-basis: 4.6rem; }
}
