/* ── Page hero ── */
.page-hero {
  position: relative;
  height: 56vh;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,31,60,0.6) 0%,
    rgba(13,31,60,0.45) 40%,
    rgba(13,31,60,0.88) 100%
  );
}

.page-hero-content {
  position: relative;
  text-align: center;
  max-width: 680px;
  padding: 0 28px;
}

.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Founder feature ── */
.founder {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}

.founder-img {
  position: relative;
}

.founder-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 80px rgba(13,31,60,0.22);
}

.founder-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 55%;
  height: 55%;
  border: 3px solid var(--gold);
  border-radius: 16px;
  z-index: 0;
}

.founder-text .section-tag { display: block; margin-bottom: 10px; }

.founder-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}

.founder-text p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 14px;
}

.founder-text strong { color: var(--text); }

.founder-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.info-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,151,46,0.1);
  border: 1px solid rgba(201,151,46,0.3);
  padding: 5px 14px;
  border-radius: 100px;
}

/* ── Ministry photo strip ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 280px;
}

.photo-strip-item {
  position: relative;
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.photo-strip-item:hover img { transform: scale(1.08); }

.photo-strip-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 18px 16px;
  background: linear-gradient(to top, rgba(13,31,60,0.85), transparent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.photo-strip-item:hover .photo-strip-label {
  opacity: 1;
  transform: none;
}

/* ── Directors section ── */
.directors-section {
  background: var(--off-white);
  padding: 100px 48px;
}

.directors-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.directors-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.directors-header p {
  color: var(--muted);
  font-size: 0.94rem;
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Director card (vertical with photo) ── */
.director-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(13,31,60,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.director-card:hover {
  box-shadow: 0 20px 60px rgba(13,31,60,0.14);
  transform: translateY(-5px);
}

.director-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.director-card:hover .director-photo img { transform: scale(1.06); }

.director-info {
  padding: 22px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.director-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.2;
}

.director-role {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
  line-height: 1.4;
}

.director-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.director-location svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--gold);
}

.director-info p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

/* ── Quote banner ── */
.quote-banner {
  position: relative;
  padding: 100px 28px;
  text-align: center;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,31,60,0.82);
}

.quote-content {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.quote-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 24px;
}

.quote-content p::before { content: '\201C'; color: var(--gold2); }
.quote-content p::after  { content: '\201D'; color: var(--gold2); }

.quote-content cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold2);
  font-style: normal;
}

/* ── Join CTA ── */
.join-cta {
  position: relative;
  padding: 120px 28px;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}

.join-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

.join-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(13,31,60,0.88) 0%,
    rgba(13,31,60,0.72) 50%,
    rgba(13,31,60,0.88) 100%
  );
}

.join-inner {
  position: relative;
  z-index: 3;
  max-width: 620px;
  margin: 0 auto;
}

.join-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.join-inner p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.join-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Bottom texture mosaic ── */
.bottom-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 6px;
  background: var(--black);
}

.mosaic-item {
  overflow: hidden;
  position: relative;
}

.mosaic-item.mosaic-tall {
  grid-row: span 2;
}

.mosaic-item.mosaic-wide {
  grid-column: span 2;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.88) saturate(0.9);
}

.mosaic-item:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1);
}

/* ── Per-card photo crop overrides ── */
#card-bill .director-photo img,
#card-mark .director-photo img  { object-fit: cover; object-position: center center; }

/* ── Nav active ── */
.nav-active { color: var(--gold2) !important; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .directors-grid { grid-template-columns: repeat(3, 1fr); }
  .founder { grid-template-columns: 340px 1fr; gap: 60px; }
}

@media (max-width: 900px) {
  .founder {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 72px 28px;
    gap: 40px;
  }
  .founder-img { max-width: 360px; margin: 0 auto; }
  .founder-img img { aspect-ratio: 1/1; }
  .founder-tag-row { justify-content: center; }
  .founder-img-accent { display: none; }

  .photo-strip { grid-template-columns: repeat(2, 1fr); height: auto; }
  .photo-strip-item { height: 200px; }
  .photo-strip-label { opacity: 1; transform: none; }

  .directors-section { padding: 72px 20px; }
  .directors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .page-hero { min-height: 360px; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip-item { height: 180px; }
  .directors-grid { grid-template-columns: 1fr; }
  .join-btns { flex-direction: column; align-items: center; }
  .bottom-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
  }
  .mosaic-item.mosaic-tall { grid-row: span 1; }
  .mosaic-item.mosaic-wide { grid-column: span 2; }
}
