/* ═══════════════════════════════════════════════════
   PAPAL DOCUMENTS PAGE — papal.css
═══════════════════════════════════════════════════ */

/* ── HERO ── */
.pal-hero {
  min-height: 60vh; display: grid; place-items: center;
  text-align: center; padding: 8rem 2rem 5rem;
  position: relative; overflow: hidden; background: var(--navy);
}
.pal-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(42,60,120,0.65) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 68%, rgba(123,29,29,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 72% 10%, rgba(184,150,62,0.12) 0%, transparent 40%);
  z-index: 0;
}

.pal-hero-content { position: relative; z-index: 2; max-width: 740px; }

.pal-hero-content h1 {
  font-family: 'Cinzel', serif; font-size: clamp(2.2rem,5.5vw,4.2rem);
  font-weight: 400; color: var(--white); letter-spacing: 0.05em;
  line-height: 1.1; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}

/* ── INTRO ── light ── */
.pal-intro-section { padding: 5rem 2rem; background: var(--ivory); }
.pal-intro-section .section-title { color: var(--navy); }
.pal-intro-section .section-divider { background: linear-gradient(to right, var(--gold), transparent); }
.pal-intro-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-top: 2.5rem; }
@media (min-width: 900px) { .pal-intro-grid { grid-template-columns: 3fr 2fr; gap: 4rem; } }
.pal-intro-text p { font-size: 1.05rem; color: var(--text-soft); line-height: 1.8; margin-top: 1rem; }
.pal-intro-text p:first-child { margin-top: 0; }

/* Document types list */
.pal-types-list { display: flex; flex-direction: column; gap: 0; }
.pal-type-item {
  padding: 1rem 0; border-bottom: 1px solid rgba(26,35,66,0.08);
}
.pal-type-item:last-child { border-bottom: none; }
.pal-type-name {
  font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--navy);
  font-weight: 400; display: block; margin-bottom: 0.25rem;
}
.pal-type-latin {
  font-family: 'EB Garamond', Georgia, serif; font-size: 0.85rem;
  font-style: italic; color: var(--gold); display: block; margin-bottom: 0.3rem;
}
.pal-type-desc {
  font-family: 'EB Garamond', Georgia, serif; font-size: 0.97rem;
  color: var(--text-soft); line-height: 1.65;
}
.pal-type-weight {
  font-family: 'Lato', sans-serif; font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: inline-block; margin-top: 0.35rem; padding: 0.2rem 0.6rem;
  border: 1px solid;
}
.pal-type-weight.highest { color: #7b1d1d; border-color: rgba(123,29,29,0.3); background: rgba(123,29,29,0.05); }
.pal-type-weight.high    { color: var(--navy); border-color: rgba(26,35,66,0.25); }
.pal-type-weight.medium  { color: rgba(26,35,66,0.6); border-color: rgba(26,35,66,0.15); }

/* ── NOTE SECTION ── dark via prayers-section ── */
.pal-note-section { padding: 4rem 2rem; }
.pal-note-inner {
  display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 900px; margin: 0 auto;
}
@media (min-width: 640px) { .pal-note-inner { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.pal-note-block {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(184,150,62,0.15);
  border-left: 3px solid var(--gold); padding: 1.5rem;
}
.pal-note-label {
  font-family: 'Lato', sans-serif; font-size: 0.62rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 0.7rem;
}
.pal-note-block p {
  font-family: 'EB Garamond', Georgia, serif; font-size: 0.97rem;
  color: rgba(255,255,255,0.65); line-height: 1.78;
}

/* ── GALLERY ── light ── */
.pal-gallery-section { padding: 5rem 2rem; background: var(--ivory); }
.pal-gallery-section .section-title { color: var(--navy); }
.pal-gallery-section .section-divider { background: linear-gradient(to right, var(--gold), transparent); }

/* Filter tabs */
.pal-filter-tabs {
  display: flex; gap: 0; margin-bottom: 2.5rem; overflow-x: auto;
  border-bottom: 2px solid rgba(26,35,66,0.1);
}
.pal-filter-btn {
  font-family: 'Lato', sans-serif; font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(26,35,66,0.4);
  padding: 0.7rem 1rem; border: none; border-bottom: 3px solid transparent;
  margin-bottom: -2px; background: transparent; cursor: pointer;
  white-space: nowrap; transition: all 0.2s;
}
.pal-filter-btn.active { color: var(--navy); border-bottom-color: var(--gold); }
.pal-filter-btn:hover:not(.active) { color: var(--navy); }

/* Gallery grid */
.pal-gallery {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .pal-gallery { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pal-gallery { grid-template-columns: 1fr 1fr 1fr; } }

/* Document card */
.pal-doc-card {
  background: var(--white); border: 1px solid rgba(26,35,66,0.08);
  border-top: 3px solid var(--gold);
  display: flex; flex-direction: column;
  transition: border-top-color 0.2s, box-shadow 0.2s;
}
.pal-doc-card.pal-doc-card:hover { border-top-color: var(--navy); box-shadow: 0 4px 20px rgba(26,35,66,0.08); }
.pal-doc-main { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.pal-doc-category {
  font-family: 'Lato', sans-serif; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.pal-doc-title {
  font-family: 'Cinzel', serif; font-size: 1.05rem; color: var(--navy);
  font-weight: 400; line-height: 1.3;
}
.pal-doc-subtitle {
  font-family: 'EB Garamond', Georgia, serif; font-size: 0.9rem;
  font-style: italic; color: rgba(26,35,66,0.55);
}
.pal-doc-meta {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
}
.pal-doc-type {
  font-family: 'Lato', sans-serif; font-size: 0.6rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); border: 1px solid rgba(26,35,66,0.2);
  padding: 0.2rem 0.5rem;
}
.pal-doc-year {
  font-family: 'Lato', sans-serif; font-size: 0.7rem;
  color: rgba(26,35,66,0.45); letter-spacing: 0.06em;
}
.pal-doc-pope {
  font-family: 'Lato', sans-serif; font-size: 0.7rem;
  color: rgba(26,35,66,0.45);
}
.pal-doc-summary {
  font-family: 'EB Garamond', Georgia, serif; font-size: 0.98rem;
  color: var(--text-soft); line-height: 1.75; flex: 1;
}
.pal-doc-footer {
  padding: 1rem 1.75rem;
  background: rgba(26,35,66,0.03);
  border-top: 1px solid rgba(26,35,66,0.07);
  display: flex; justify-content: space-between; align-items: center;
}
.pal-doc-significance {
  font-family: 'Lato', sans-serif; font-size: 0.62rem;
  color: rgba(26,35,66,0.45); letter-spacing: 0.06em; line-height: 1.5;
  max-width: 60%;
}
.pal-doc-link {
  font-family: 'Lato', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  border: 1px solid rgba(26,35,66,0.25);
  padding: 0.4rem 0.9rem; white-space: nowrap;
  transition: all 0.2s; flex-shrink: 0;
}
.pal-doc-link:hover { background: var(--navy); color: var(--white); }
.pal-doc-link.no-link {
  color: rgba(26,35,66,0.3); border-color: rgba(26,35,66,0.1);
  cursor: default;
}
.pal-doc-link.no-link:hover { background: transparent; color: rgba(26,35,66,0.3); }
