/* ========== CLERGY — GOLD LEAF ON PARCHMENT ========== */
.clergy-page {
  --c-gold-deep: #9a7628;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(184,146,58,0.10), transparent 55%),
    radial-gradient(80% 50% at 100% 100%, rgba(107,28,42,0.06), transparent 50%),
    var(--cream-warm);
}
.clergy-page::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}
.clergy-wrap { position: relative; z-index: 1; }

/* hero */
.clergy-hero { text-align: center; padding: 1rem 1.5rem 0.5rem; padding-top: calc(var(--nav-height) + 1.75rem); }
.clergy-hero__title { font-family: 'Cinzel', serif; font-weight: 600; line-height: 1; font-size: clamp(2.4rem, 5vw, 4rem); color: var(--navy); }
.clergy-hero__sub { font-style: italic; color: var(--text-muted); font-size: 1.25rem; margin-top: 0.75rem; }

/* illuminated divider */
.clergy-illum { display: flex; align-items: center; justify-content: center; gap: 1rem; max-width: 560px; margin: 1.5rem auto 0; color: var(--gold); }
.clergy-illum span { height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--c-gold-deep)); }
.clergy-illum span:last-child { background: linear-gradient(90deg, var(--c-gold-deep), transparent); }
.clergy-illum b { width: 8px; height: 8px; transform: rotate(45deg); background: var(--c-gold-deep); }
.clergy-illum-wall { max-width: 560px; margin: 0 auto; }

/* figure rows: arched icon + manuscript text */
.clergy-figure { max-width: 1060px; margin: 0 auto; padding: 2.5rem 1.5rem; display: grid; grid-template-columns: minmax(0, 340px) 1fr; gap: 3.5rem; align-items: start; }
/* flip: icon on the right, but keep it in the SAME 340px track so both portraits match in size */
.clergy-figure--flip { grid-template-columns: 1fr minmax(0, 340px); }
.clergy-figure--flip .clergy-icon-wrap { grid-column: 2; grid-row: 1; }
.clergy-figure--flip .clergy-body { grid-column: 1; grid-row: 1; }

.clergy-icon-wrap { position: relative; }
.clergy-icon {
  position: relative; border-radius: 170px 170px 8px 8px; overflow: hidden;
  aspect-ratio: 4 / 5; background: var(--stone);
  box-shadow: 0 0 0 1px var(--c-gold-deep), 0 0 0 8px var(--cream), 0 0 0 9px var(--gold), 0 24px 50px -24px rgba(61,56,50,0.5);
}
.clergy-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.clergy-scroll-label { margin-top: 1.4rem; text-align: center; font-style: italic; color: var(--c-gold-deep); font-size: 1.05rem; }

/* manuscript body */
.clergy-body { padding-top: 0.5rem; }
.clergy-tag { display: inline-block; font-family: 'Cinzel', serif; font-size: 0.64rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cream); background: var(--burgundy); padding: 0.4rem 0.9rem; margin-bottom: 1.3rem; }
.clergy-name { font-family: 'Cinzel', serif; font-weight: 600; line-height: 1.08; font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--navy); }
.clergy-role { font-style: italic; color: var(--burgundy); font-size: 1.25rem; margin: 0.5rem 0 1.5rem; }
.clergy-rule { width: 54px; height: 2px; background: var(--c-gold-deep); margin-bottom: 1.5rem; }
.clergy-intro { font-size: 1.2rem; line-height: 1.72; }
/* illuminated drop cap, manuscript style */
.clergy-intro::first-letter {
  float: left; font-family: 'Cinzel', serif; font-weight: 700; font-size: 4.4rem; line-height: 0.74;
  color: var(--burgundy); margin: 0.05em 0.14em 0 0; text-shadow: 1px 1px 0 var(--gold);
}

/* faith link */
.clergy-faith { text-align: center; padding: 1rem 1.5rem 5.5rem; }
.clergy-faith a { font-family: 'Cinzel', serif; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); background: var(--burgundy); text-decoration: none; padding: 1rem 2.3rem; display: inline-block; transition: background 0.25s; }
.clergy-faith a:hover,
.clergy-faith a:focus-visible { background: var(--navy); }

@media (max-width: 780px) {
  .clergy-figure,
  .clergy-figure--flip { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  /* single column: reset explicit placement so source order applies (photo above text) */
  .clergy-figure--flip .clergy-icon-wrap,
  .clergy-figure--flip .clergy-body { grid-column: 1; grid-row: auto; }
  .clergy-icon { max-width: 320px; margin: 0 auto; }
}
