
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600&display=swap');

*{margin:0;padding:0;box-sizing:border-box;}

:root{
  --violet:#3D2B6B;
  --violet-deep:#2a1d4e;
  --violet-light:#6b52a8;
  --violet-pale:#f0edf8;
  --gold:#E8A020;
  --gold-light:#f5c45e;
  --coral:#D4544A;
  --cream:#faf9f6;
  --white:#ffffff;
  --black:#0a0a0a;
}

body{font-family:'Poppins',sans-serif;background:var(--cream);color:#1a1228;overflow-x:hidden;}

.sec-label{font-size:0.58rem;font-weight:600;letter-spacing:0.24em;text-transform:uppercase;color:var(--gold);display:flex;align-items:center;gap:0.6rem;margin-bottom:1.1rem;}
.sec-label::after{content:'';display:block;width:26px;height:1px;background:var(--gold);}
.sec-title{font-family:'Playfair Display',serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;color:var(--violet);line-height:1.15;margin-bottom:1.2rem;}
.sec-title em{font-style:italic;color:var(--coral);}
.on-dark{color:var(--white)!important;}
.on-dark em{color:var(--gold)!important;}
.sec-body{font-size:0.88rem;font-weight:300;color:#666;line-height:1.9;}

/* ─── HERO BANNER ─── */
/* .page-hero{
  position:relative;
  background:var(--violet-deep);
  padding:5rem 4rem 4rem;
  overflow:hidden;
  text-align:center;
}
.page-hero-wm{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  font-family:'Playfair Display',serif;font-size:12rem;font-weight:700;
  color:rgba(255,255,255,0.03);white-space:nowrap;pointer-events:none;letter-spacing:-0.04em;
}
.page-hero-label{font-size:0.58rem;font-weight:600;letter-spacing:0.28em;text-transform:uppercase;color:var(--gold);margin-bottom:1.2rem;display:flex;align-items:center;justify-content:center;gap:0.75rem;}
.page-hero-label::before,.page-hero-label::after{content:'';display:block;width:32px;height:1px;background:rgba(232,160,32,0.45);}
.page-hero-title{font-family:'Playfair Display',serif;font-size:clamp(2rem,4.5vw,3.8rem);font-weight:400;color:var(--white);line-height:1.1;margin-bottom:1rem;}
.page-hero-title em{font-style:italic;color:var(--gold);}
.page-hero-sub{font-size:0.88rem;font-weight:300;color:rgba(255,255,255,0.55);max-width:520px;margin:0 auto 0;line-height:1.9;}
.gold-bar{width:40px;height:2px;background:var(--gold);margin:2rem auto;} */



/* ─── HERO BANNER ─── */
.page-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}

/* Background image layer */
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/new/luc5.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

/* Dark gradient overlay */
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20, 10, 45, 0.88) 0%,
    rgba(30, 15, 60, 0.72) 55%,
    rgba(20, 10, 45, 0.40) 100%
  );
  z-index: 1;
}

/* Content container */
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 4rem 4rem;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Breadcrumb */
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero-breadcrumb a:hover { color: var(--gold); }
.bc-sep { color: rgba(255,255,255,0.25); font-size: 0.65rem; }
.bc-current { color: var(--gold); }

/* Program label */
.page-hero-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.page-hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* Main title */
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.2rem;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}

/* Subtitle */
.page-hero-sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.60);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

/* Scripture quote */
.page-hero-quote {
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.40);
  line-height: 1.7;
  border-left: 2px solid rgba(232,160,32,0.4);
  padding-left: 0.9rem;
  margin-top: 0.4rem;
}

/* Large watermark number — right side */
.page-hero-number {
  position: absolute;
  right: 3.5rem;
  bottom: 2.5rem;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  letter-spacing: -0.04em;
  pointer-events: none;
  writing-mode: initial;
}

/* Responsive */
@media (max-width: 680px) {
  .page-hero-inner { padding: 4rem 1.5rem 3rem; }
  .page-hero-number { font-size: 4rem; right: 1.5rem; bottom: 1.5rem; }
}
/* ─── LEADERSHIP ─── */
.leaders-section{background:var(--white);padding:5.5rem 4rem;}
.leaders-header{text-align:center;margin-bottom:3.5rem;}
.leaders-header .sec-label{justify-content:center;}
.leaders-header .sec-label::after{display:none;}
.leaders-header .sec-label::before{content:'';display:block;width:26px;height:1px;background:var(--gold);}


.mentor-wrap{margin-bottom:3.5rem;}
.mentor-wrap .sec-label{margin-bottom:1.5rem;}

/* ─── LEADERS GRID (responsive) ─── */
.leaders-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
  background:rgba(61,43,107,0.08);
}

/* Tablet: 3 → 2 columns */
@media (max-width:900px){
  .leaders-grid{grid-template-columns:repeat(2,1fr);}
}

/* Mobile: 2 → 1 column */
@media (max-width:680px){
  .page-hero{padding:4rem 1.5rem 3rem;}
  .leaders-section,.partners-section{padding:4rem 1.5rem;}
  .leaders-header{margin-bottom:2.5rem;}
  .leaders-grid{grid-template-columns:1fr;}
  .leader-photo{aspect-ratio:4/3;}
  .leader-info{padding:1.2rem 1.2rem 1.5rem;}
  .leader-featured{grid-template-columns:1fr;gap:1.5rem;padding:2.5rem 1.5rem;}
  .leader-featured .leader-photo{height:280px;}
  .partner-cta{padding:2.5rem 1.5rem;}
}

/* ─── LEADER AVATAR / IMAGE ─── */
/*  Replace the <div class="leader-avatar"> with <div class="leader-avatar-wrap">
    that holds either an <img> or the initials fallback.               */
.leader-avatar-wrap{
  width:96px;height:96px;border-radius:50%;
  background:var(--violet);
  border:2.5px solid rgba(232,160,32,0.35);
  overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  margin-bottom:1.25rem;
}
.leader-avatar-wrap img{
  width:100%;height:100%;
  object-fit:cover;object-position:center top;
  display:block;
}
.leader-avatar-wrap .initials{
  font-family:'Playfair Display',serif;font-size:1.3rem;font-weight:700;
  color:var(--gold);
  /* hidden once an img loads */
}

/* ─── LEADER CARD ─── */
.leader-card{background:var(--white);padding:2.5rem 2rem;position:relative;overflow:hidden;transition:background 0.3s;}
.leader-card::after{content:'';position:absolute;bottom:0;left:0;width:100%;height:3px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform 0.35s;}
.leader-card:hover{background:var(--violet-pale);}
.leader-card:hover::after{transform:scaleX(1);}

.leader-role{font-size:0.56rem;font-weight:600;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold);margin-bottom:0.45rem;}
.leader-name{font-family:'Playfair Display',serif;font-size:1.15rem;font-weight:500;color:var(--violet);line-height:1.2;margin-bottom:0.4rem;}
.leader-country{font-size:0.7rem;font-weight:400;color:var(--coral);margin-bottom:0.9rem;letter-spacing:0.05em;}
.leader-bio{font-size:0.78rem;font-weight:300;color:#777;line-height:1.8;}

/* ─── FEATURED LEADER ─── */
.leader-featured{
  background:var(--violet-deep);padding:4rem;
  display:grid;grid-template-columns:auto 1fr;gap:3rem;align-items:center;margin-bottom:2px;
}
/* Larger avatar for featured card */
.leader-featured .leader-avatar-wrap{
  width:160px;height:160px;
  border-color:var(--gold);border-width:2px;
}
.leader-featured .leader-avatar-wrap .initials{font-size:2.5rem;}

.leader-featured-text .leader-role{color:var(--gold);}
.leader-featured-text .leader-name{color:var(--white);font-size:1.5rem;}
.leader-featured-text .leader-country{color:rgba(255,255,255,0.45);}
.leader-featured-text .leader-bio{color:rgba(255,255,255,0.6);font-size:0.85rem;max-width:520px;}
.leader-featured-tag{display:inline-block;background:var(--coral);color:var(--white);font-size:0.56rem;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;padding:0.3rem 0.9rem;border-radius:2px;margin-bottom:0.75rem;}

/* ─── IMAGE UPLOAD HINT (visible on hover, for editors) ─── */
.leader-avatar-wrap .upload-hint{
  display:none;position:absolute;inset:0;
  background:rgba(42,29,78,0.72);
  border-radius:50%;align-items:center;justify-content:center;
  font-size:0.55rem;font-weight:600;color:var(--gold);
  letter-spacing:0.1em;text-align:center;line-height:1.4;
  text-transform:uppercase;padding:6px;
}
.leader-avatar-wrap{position:relative;}
.leader-avatar-wrap:hover .upload-hint{display:flex;}







/* Leadership codes */


/* .leaders-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:rgba(61,43,107,0.08);} */

.leader-card{
  background:#fff;
  display:flex;flex-direction:column;
  overflow:hidden;
  position:relative;
  transition:background 0.3s;
}
.leader-card:hover{background:var(--violet-pale);}
.leader-card::after{content:'';position:absolute;bottom:0;left:0;width:100%;height:3px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform 0.35s;}
.leader-card:hover::after{transform:scaleX(1);}

.leader-photo{
  width:100%;aspect-ratio:3/4;
  overflow:hidden;
  background:var(--violet);
  position:relative;
}
.leader-photo img{width:100%;height:100%;object-fit:cover;object-position:center top;display:block;}
.leader-photo-fallback{
  width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;
  font-family:'Playfair Display',serif;font-size:3rem;font-weight:700;color:var(--gold);
  background:linear-gradient(160deg,#2a1d4e 0%,#3D2B6B 100%);
}
.leader-role-tag{
  position:absolute;bottom:0;left:0;right:0;
  background:rgba(42,29,78,0.82);
  padding:0.5rem 1rem;
  font-size:0.54rem;font-weight:600;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold);
}

.leader-info{padding:1.4rem 1.4rem 1.8rem;}
.leader-name{font-family:'Playfair Display',serif;font-size:1rem;font-weight:500;color:var(--violet);line-height:1.2;margin-bottom:0.3rem;}
.leader-country{font-size:0.66rem;font-weight:400;color:var(--coral);margin-bottom:0.75rem;letter-spacing:0.05em;}
.leader-bio{font-size:0.75rem;font-weight:300;color:#777;line-height:1.8;}

/* Featured founder – full width */
.leader-featured{
  grid-column:1/-1;
  background:var(--violet-deep);
  display:grid;grid-template-columns:340px 1fr;
  overflow:hidden;
  margin-bottom:0;
}
.leader-featured .leader-photo{aspect-ratio:unset;height:360px;}
.leader-featured-info{padding:3rem;display:flex;flex-direction:column;justify-content:center;}
.leader-featured-tag{display:inline-block;background:var(--coral);color:#fff;font-size:0.54rem;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;padding:0.3rem 0.9rem;border-radius:2px;margin-bottom:1rem;align-self:flex-start;}
.leader-featured .leader-role-tag{font-size:0.54rem;}
.leader-featured-info .leader-name{color:#fff;font-size:1.6rem;margin-bottom:0.4rem;}
.leader-featured-info .leader-country{color:rgba(255,255,255,0.45);font-size:0.72rem;}
.leader-featured-info .leader-bio{color:rgba(255,255,255,0.6);font-size:0.84rem;max-width:440px;}
.gold-line{width:32px;height:2px;background:var(--gold);margin:1rem 0;}


/* ─── PARTNERS ─── */
.partners-section{background:var(--cream);padding:5.5rem 4rem;}
.partners-header{text-align:center;margin-bottom:3.5rem;}
.partners-header .sec-label{justify-content:center;}
.partners-header .sec-label::after{display:none;}
.partners-header .sec-label::before{content:'';display:block;width:26px;height:1px;background:var(--gold);}

.partners-intro{text-align:center;font-size:0.88rem;font-weight:300;color:#777;max-width:500px;margin:0 auto 3rem;line-height:1.9;}

.partners-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:1.5rem;background:rgba(61,43,107,0.07);margin-bottom:1.5rem;justify-content:center;}
.partner-tile{background:var(--white);padding:2.5rem 1.5rem;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;transition:background 0.3s;cursor:default;}
.partner-tile:hover{background:var(--violet-pale);}

.partner-logo-box{width:100px;height:58px;display:flex;align-items:center;justify-content:center;border-radius:4px;overflow:hidden;background:var(--cream);border:1px solid rgba(61,43,107,0.08);}
.partner-logo-box svg{width:100%;height:100%;}
.partner-placeholder{width:110px;height:70px;border-radius:3px;background:rgba(61,43,107,0.06);border:1.5px dashed rgba(61,43,107,0.15);display:flex;align-items:center;justify-content:center;}
.partner-placeholder span{font-size:0.55rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;color:rgba(61,43,107,0.3);}
.partner-name{font-family:'Playfair Display',serif;font-size:0.82rem;font-weight:500;color:var(--violet);text-align:center;line-height:1.3;}
.partner-type{font-size:0.6rem;font-weight:500;letter-spacing:0.12em;text-transform:uppercase;color:#aaa;}

/* ─── PARTNER CTA ─── */
.partner-cta{background:var(--violet);padding:4rem;display:flex;justify-content:space-between;align-items:center;gap:2rem;flex-wrap:wrap;}
.partner-cta-text .sec-label{color:var(--gold);}
.partner-cta-text .sec-label::after{background:rgba(232,160,32,0.4);}
.partner-cta-text h3{font-family:'Playfair Display',serif;font-size:1.5rem;font-weight:400;color:var(--white);line-height:1.25;}
.partner-cta-text h3 em{font-style:italic;color:var(--gold);}
.partner-cta-text p{font-size:0.82rem;font-weight:300;color:rgba(255,255,255,0.55);max-width:380px;line-height:1.85;margin-top:0.5rem;}
.btn-gold{background:var(--gold);color:var(--violet-deep);font-family:'Poppins',sans-serif;font-size:0.68rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;padding:0.9rem 2rem;border:none;border-radius:2px;cursor:pointer;text-decoration:none;display:inline-block;white-space:nowrap;transition:background 0.2s;}
.btn-gold:hover{background:var(--gold-light);}
.btn-outline-gold{background:transparent;color:var(--gold);font-family:'Poppins',sans-serif;font-size:0.68rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;padding:0.9rem 2rem;border:1.5px solid var(--gold);border-radius:2px;cursor:pointer;text-decoration:none;display:inline-block;white-space:nowrap;transition:background 0.2s,color 0.2s;}
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}

@media(max-width:680px){
  .page-hero{padding:4rem 1.5rem 3rem;}
  /* .leaders-section,.partners-section{padding:4rem 1.5rem;}
  .leader-featured{grid-template-columns:1fr;gap:1.5rem;padding:2.5rem 1.5rem;} */
  .partner-cta{padding:2.5rem 1.5rem;}
}


/* ═══════════════════════════════════════════════
   COFOUNDERS SECTION — add to your existing CSS
════════════════════════════════════════════════ */

/* Section wrapper */
.cofounders-section {
  background: var(--violet-deep);
  padding: 5.5rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Subtle background watermark */
.cofounders-section::before {
  content: 'LUC';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 18rem;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* Section header */
.cofounders-header {
  text-align: center;
  margin-bottom: 4rem;
}
.cofounders-header .sec-label {
  justify-content: center;
  color: var(--gold);
}
.cofounders-header .sec-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.cofounders-header .sec-label::after { display: none; }
.cofounders-header .sec-title {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.cofounders-header .sec-title em { color: var(--gold); }

.cofounders-intro {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}

/* Grid: [card] [divider] [card] */
.cofounders-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

/* ── Photo wrap ── */
.cofounder-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(232,160,32,0.25);
}
.cofounder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.cofounder-card:hover .cofounder-photo-wrap img {
  transform: scale(1.04);
}
.cofounder-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,10,45,0.75) 0%,
    rgba(20,10,45,0.1) 50%,
    transparent 100%
  );
}
.cofounder-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--violet-deep);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 2px;
}

/* ── Text body below photo ── */
.cofounder-body {
  padding: 1.5rem 0.25rem 0;
}
.cofounder-tag {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.cofounder-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.cofounder-gold-line {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 0.85rem;
  opacity: 0.8;
}
.cofounder-bio {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}

/* ── Center divider ── */
.cofounders-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.divider-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, rgba(232,160,32,0.4), transparent);
  min-height: 60px;
}
.divider-emblem {
  flex-shrink: 0;
}

/* ── Scripture strip ── */
.cofounders-scripture {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.scripture-line {
  flex: 1;
  height: 1px;
  background: rgba(232,160,32,0.25);
}
.scripture-text {
  font-size: 0.72rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .cofounders-section { padding: 4rem 1.5rem; }
  .cofounders-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cofounders-divider {
    flex-direction: row;
    height: 40px;
  }
  .divider-line {
    min-height: unset;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(232,160,32,0.4), transparent);
  }
  .cofounders-scripture { flex-wrap: wrap; justify-content: center; }
  .scripture-text { white-space: normal; text-align: center; }
}