/* ── SHARED PAGE STYLES ───────────────────── */
.page-wrap {
    max-width: 900px;
    margin: 60px auto;
    padding: 60px 20px 80px;
}

.page-header { text-align: center; margin-bottom: 48px; }
.page-eyebrow {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.page-title {
  font-family: 'Inter';
  font-size: 36px; color: var(--text); margin-bottom: 10px;
}
.page-sub { font-size: 14px; color: var(--text-muted); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; background: transparent; border: none;
  color: var(--text); font-size: 15px; font-weight: 600;
  text-align: left; cursor: pointer; font-family: 'Inter', sans-serif;
}
.faq-question svg { transition: transform 0.25s ease; color: var(--text-muted); flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--gold); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 20px 18px;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}

/* CTA */
.page-cta {
  text-align: center; margin-top: 48px;
  padding: 32px; background: var(--dark-2);
  border: 1px solid var(--border); border-radius: 14px;
}
.page-cta p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.page-cta-btn {
  display: inline-block; background: var(--gold); color: #000;
  padding: 11px 28px; border-radius: 10px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background 0.2s;
}
.page-cta-btn:hover { background: var(--gold-light); }

.faq-category-heading {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #E1BF4C !important;
  margin: 32px 0 12px 0;
  font-family: 'Inter', sans-serif;
}
.faq-category-heading:first-child {
  margin-top: 0;
}
/* GALLERY */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  border-radius: 12px; overflow: hidden; cursor: pointer;
  aspect-ratio: 1/1; background: var(--dark-3);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.08); }

/* LIGHTBOX */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 999; display: none;
  align-items: center; justify-content: center; padding: 30px;
}
.lightbox-overlay.show { display: flex; }
.lightbox-overlay img {
  max-width: 90%; max-height: 90%; border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

/* PRIVACY POLICY */
.policy-content h3 {
  font-size: 17px; color: var(--gold); margin: 28px 0 10px;
  font-family: 'Inter';
}
.policy-content h3:first-child { margin-top: 0; }
.policy-content p {
  font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 4px;
}

@media (max-width: 600px) {
  .page-title { font-size: 26px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}