/* ============================================================
   EXPLORE PAGE — Soul Anchor Church
   ============================================================ */

/* ── Hero ── */
.sac-explore-hero{
  position:relative; min-height:75vh;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,#2b2450 0%,#514786 40%,#6B5B95 100%);
  overflow:hidden; text-align:center; color:#fff;
}
.sac-explore-hero__overlay{
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 30% 60%,rgba(255,255,255,0.06) 0%,transparent 70%);
  pointer-events:none;
}
.sac-explore-hero__content{
  position:relative; z-index:2;
  max-width:720px; padding:100px 24px 80px;
}
.sac-explore-hero__tag{
  display:inline-block; font-size:13px; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
  background:rgba(255,255,255,0.15); padding:6px 18px;
  border-radius:40px; margin-bottom:24px; backdrop-filter:blur(4px);
}
.sac-explore-hero__title{
  font-size:clamp(36px,6vw,60px); font-weight:800;
  line-height:1.1; margin:0 0 20px; letter-spacing:-0.02em;
}
.sac-explore-hero__sub{
  font-size:18px; line-height:1.7; opacity:0.9; margin:0 0 36px;
}
.sac-explore-hero__actions{
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
}
.sac-explore-hero__btn.sac-btn--primary{
  background:#fff; color:var(--sac-purple); font-weight:700;
  padding:14px 32px; border-radius:10px; text-decoration:none;
  font-size:15px; transition:transform .2s,box-shadow .2s;
}
.sac-explore-hero__btn.sac-btn--primary:hover{
  transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.2);
}
.sac-explore-hero__btn.sac-btn--outline{
  background:transparent; color:#fff;
  border:2px solid rgba(255,255,255,0.4); padding:12px 28px;
  border-radius:10px; text-decoration:none; font-size:15px;
  font-weight:600; transition:border-color .2s,background .2s;
}
.sac-explore-hero__btn.sac-btn--outline:hover{
  border-color:#fff; background:rgba(255,255,255,0.1);
}

/* ── Section Tag ── */
.sac-explore-section-tag{
  display:inline-block; font-size:12px; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--sac-purple); background:rgba(81,71,134,0.08);
  padding:5px 16px; border-radius:30px; margin-bottom:16px;
}
.sac-explore-section-tag--light{
  color:#fff; background:rgba(255,255,255,0.15);
}

/* ── Mission & Vision ── */
.sac-explore-mv{ padding:100px 0; background:#fafafa; }
.sac-explore-mv__grid{
  display:grid; grid-template-columns:1fr auto 1fr;
  gap:40px; align-items:center;
}
.sac-explore-mv__card{
  background:#fff; border-radius:var(--sac-radius);
  padding:48px 36px; box-shadow:var(--sac-shadow);
  text-align:center; transition:transform .3s;
}
.sac-explore-mv__card:hover{ transform:translateY(-4px); }
.sac-explore-mv__icon{
  width:56px; height:56px; margin:0 auto 20px; color:var(--sac-purple);
}
.sac-explore-mv__icon svg{ width:100%; height:100%; }
.sac-explore-mv__label{ font-size:24px; font-weight:800; margin:0 0 14px; }
.sac-explore-mv__text{ font-size:16px; line-height:1.7; color:#555; margin:0; }
.sac-explore-mv__divider{
  display:flex; flex-direction:column; align-items:center; gap:12px;
}
.sac-explore-mv__ark-badge{
  display:flex; align-items:center; justify-content:center;
  width:64px; height:64px; border-radius:50%;
  background:var(--sac-purple); color:#fff;
  font-size:20px; font-weight:800; letter-spacing:.06em;
  box-shadow:0 6px 20px rgba(81,71,134,0.3);
}

/* ── ARK Principles ── */
.sac-explore-ark{ padding:100px 0; background:#fff; }
.sac-explore-ark__header{
  text-align:center; max-width:640px; margin:0 auto 48px;
}
.sac-explore-ark__title{ font-size:36px; font-weight:800; margin:0 0 16px; }
.sac-explore-ark__intro{ font-size:17px; line-height:1.7; color:#555; margin:0; }

.sac-explore-ark__tabs{
  display:flex; justify-content:center; gap:12px; margin-bottom:36px; flex-wrap:wrap;
}
.sac-explore-ark__tab{
  display:flex; align-items:center; gap:10px;
  padding:14px 28px; border:2px solid #e0dce8; border-radius:12px;
  background:#fff; cursor:pointer; font-family:inherit;
  font-size:15px; font-weight:600; color:#555; transition:all .25s;
}
.sac-explore-ark__tab:hover{ border-color:var(--sac-purple); color:var(--sac-purple); }
.sac-explore-ark__tab--active{
  background:var(--sac-purple); border-color:var(--sac-purple); color:#fff;
}
.sac-explore-ark__tab-letter{ font-size:22px; font-weight:800; line-height:1; }

.sac-explore-ark__panel{ display:none; }
.sac-explore-ark__panel--active{
  display:block; animation:sacFadeUp .4s ease;
}
.sac-explore-ark__panel-inner{
  display:grid; grid-template-columns:1fr 280px;
  gap:48px; align-items:center;
  background:#f7f5fc; border-radius:16px; padding:48px;
}
.sac-explore-ark__verse{
  display:inline-block; font-size:13px; font-weight:700;
  color:var(--sac-purple); background:rgba(81,71,134,0.08);
  padding:4px 14px; border-radius:6px; margin-bottom:12px;
}
.sac-explore-ark__panel-text h3{ font-size:28px; font-weight:800; margin:0 0 16px; }
.sac-explore-ark__panel-text p{ font-size:16px; line-height:1.8; color:#444; margin:0 0 12px; }
.sac-explore-ark__panel-visual{
  display:flex; align-items:center; justify-content:center;
}
.sac-explore-ark__letter-bg{
  font-size:180px; font-weight:900;
  color:rgba(81,71,134,0.08); line-height:1; user-select:none;
}

@keyframes sacFadeUp{
  from{ opacity:0; transform:translateY(16px); }
  to{ opacity:1; transform:translateY(0); }
}

/* ── Beliefs Accordion ── */
.sac-explore-beliefs{
  padding:100px 0;
  background:linear-gradient(180deg,#f7f5fc 0%,#fff 100%);
}
.sac-explore-beliefs__header{
  text-align:center; max-width:580px; margin:0 auto 48px;
}
.sac-explore-beliefs__header h2{ font-size:36px; font-weight:800; margin:0 0 14px; }
.sac-explore-beliefs__header p{ font-size:17px; line-height:1.7; color:#555; margin:0; }
.sac-explore-beliefs__accordion{ max-width:760px; margin:0 auto; }
.sac-explore-beliefs__item{ border-bottom:1px solid #e8e5f0; }
.sac-explore-beliefs__trigger{
  display:flex; align-items:center; gap:16px;
  width:100%; padding:22px 0; background:none; border:none;
  cursor:pointer; font-family:inherit; text-align:left; transition:color .2s;
}
.sac-explore-beliefs__trigger:hover{ color:var(--sac-purple); }
.sac-explore-beliefs__num{
  font-size:14px; font-weight:800; color:var(--sac-purple); min-width:30px;
}
.sac-explore-beliefs__name{ flex:1; font-size:18px; font-weight:700; }
.sac-explore-beliefs__chevron{
  font-size:24px; color:#aaa; transition:transform .3s;
}
.sac-explore-beliefs__item--open .sac-explore-beliefs__chevron{
  transform:rotate(180deg); color:var(--sac-purple);
}
.sac-explore-beliefs__body{ padding:0 0 24px 46px; }
.sac-explore-beliefs__body p{ font-size:16px; line-height:1.8; color:#444; margin:0 0 10px; }
.sac-explore-beliefs__body cite{
  font-size:13px; font-style:normal; font-weight:600;
  color:var(--sac-purple); opacity:0.8;
}

/* ── History Timeline ── */
.sac-explore-history{ padding:100px 0; background:#fff; }
.sac-explore-history__header{
  text-align:center; max-width:600px; margin:0 auto 60px;
}
.sac-explore-history__header h2{ font-size:36px; font-weight:800; margin:0 0 14px; }
.sac-explore-history__header p{ font-size:17px; line-height:1.7; color:#555; margin:0; }
.sac-explore-history__timeline{
  position:relative; max-width:700px; margin:0 auto; padding-left:48px;
}
.sac-explore-history__timeline::before{
  content:''; position:absolute; left:18px; top:0; bottom:0;
  width:3px;
  background:linear-gradient(180deg,var(--sac-purple),rgba(81,71,134,0.15));
  border-radius:3px;
}
.sac-explore-history__item{
  position:relative; padding:0 0 48px;
}
.sac-explore-history__item:last-child{ padding-bottom:0; }
.sac-explore-history__marker{
  position:absolute; left:-48px; top:0; width:36px;
  display:flex; justify-content:center;
}
.sac-explore-history__year{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:36px; height:36px; background:var(--sac-purple); color:#fff;
  font-size:11px; font-weight:800; border-radius:50%; padding:0 6px;
  box-shadow:0 4px 12px rgba(81,71,134,0.3); white-space:nowrap;
}
.sac-explore-history__content h3{ font-size:20px; font-weight:800; margin:0 0 8px; }
.sac-explore-history__content p{ font-size:16px; line-height:1.8; color:#444; margin:0; }

/* ── Leadership ── */
.sac-explore-leadership{ padding:100px 0; background:#fafafa; }
.sac-explore-leadership__header{
  text-align:center; max-width:600px; margin:0 auto 60px;
}
.sac-explore-leadership__header h2{ font-size:36px; font-weight:800; margin:0 0 14px; }
.sac-explore-leadership__header p{ font-size:17px; line-height:1.7; color:#555; margin:0; }

/* Primary cards */
.sac-explore-leadership__primary{
  display:grid; grid-template-columns:1fr 1fr; gap:32px; margin-bottom:64px;
}
.sac-explore-leadership__primary-card{
  background:#fff; border-radius:16px; padding:40px;
  box-shadow:var(--sac-shadow); display:flex; flex-direction:column; gap:24px;
  border-top:4px solid var(--sac-purple);
}
.sac-explore-leadership__primary-card--founder{
  border-top-color:#9B8EC4;
}
.sac-explore-leadership__photo-wrap{
  display:flex; justify-content:center;
}
.sac-explore-leadership__photo-placeholder{
  width:140px; height:140px; border-radius:50%;
  background:linear-gradient(135deg,#f0edf8,#e0daf0);
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; gap:8px; color:#9B8EC4;
  font-size:11px; font-weight:600; text-align:center;
}
.sac-explore-leadership__photo-placeholder svg{
  width:48px; height:48px;
}
.sac-explore-leadership__role-tag{
  display:inline-block; font-size:12px; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  background:rgba(81,71,134,0.1); color:var(--sac-purple);
  padding:4px 14px; border-radius:6px; margin-bottom:6px;
}
.sac-explore-leadership__role-tag--founder{
  background:rgba(155,142,196,0.15); color:#7B6BAE;
}
.sac-explore-leadership__name{ font-size:22px; font-weight:800; margin:0 0 4px; }
.sac-explore-leadership__tenure{ font-size:13px; color:#888; margin:0 0 12px; }
.sac-explore-leadership__bio{ font-size:15px; line-height:1.8; color:#555; margin:0; }

/* Secondary grid */
.sac-explore-leadership__secondary-wrap{ margin-bottom:48px; }
.sac-explore-leadership__secondary-title{
  font-size:20px; font-weight:800; margin:0 0 24px;
  padding-bottom:12px; border-bottom:2px solid #e8e5f0;
}
.sac-explore-leadership__secondary-grid{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:16px;
}
.sac-explore-leadership__card{
  background:#fff; border-radius:12px; padding:20px;
  box-shadow:0 2px 8px rgba(0,0,0,0.06);
  display:flex; align-items:center; gap:16px;
}
.sac-explore-leadership__card-avatar{
  width:48px; height:48px; border-radius:50%;
  background:var(--sac-purple); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:800; flex-shrink:0;
}
.sac-explore-leadership__card-info{
  display:flex; flex-direction:column; gap:3px;
}
.sac-explore-leadership__card-info strong{ font-size:14px; font-weight:700; }
.sac-explore-leadership__card-info span{ font-size:12px; color:#777; }

/* Board */
.sac-explore-leadership__board-wrap{}
.sac-explore-leadership__board-grid{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:16px;
}
.sac-explore-leadership__board-item{
  background:#fff; border-radius:10px; padding:18px 20px;
  border-left:3px solid var(--sac-purple);
  display:flex; flex-direction:column; gap:4px;
}
.sac-explore-leadership__board-item strong{ font-size:14px; font-weight:700; }
.sac-explore-leadership__board-item span{ font-size:12px; color:#777; }

/* ── CTA ── */
.sac-explore-cta{
  padding:100px 0;
  background:linear-gradient(135deg,#2b2450 0%,#514786 100%);
  text-align:center; color:#fff;
}
.sac-explore-cta__inner{ max-width:640px; margin:0 auto; }
.sac-explore-cta__title{ font-size:40px; font-weight:800; margin:0 0 16px; }
.sac-explore-cta__sub{ font-size:18px; line-height:1.7; opacity:0.9; margin:0 0 36px; }
.sac-explore-cta__actions{
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
}
.sac-btn--white{
  background:#fff; color:var(--sac-purple); font-weight:700;
  padding:14px 28px; border-radius:10px; text-decoration:none;
  font-size:15px; transition:transform .2s,box-shadow .2s;
}
.sac-btn--white:hover{
  transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.2);
}
.sac-btn--outline-white{
  background:transparent; color:#fff;
  border:2px solid rgba(255,255,255,0.4);
  padding:12px 24px; border-radius:10px; text-decoration:none;
  font-size:15px; font-weight:600; transition:border-color .2s,background .2s;
}
.sac-btn--outline-white:hover{
  border-color:#fff; background:rgba(255,255,255,0.1);
}

/* ── Scroll-reveal ── */
.sac-reveal{
  opacity:0; transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}
.sac-reveal--visible{
  opacity:1; transform:translateY(0);
}

/* ── Responsive ── */
@media(max-width:900px){
  .sac-explore-mv__grid{
    grid-template-columns:1fr; gap:24px;
  }
  .sac-explore-mv__divider{ flex-direction:row; }
  .sac-explore-ark__panel-inner{
    grid-template-columns:1fr; gap:24px;
  }
  .sac-explore-ark__letter-bg{ font-size:100px; }
  .sac-explore-leadership__primary{
    grid-template-columns:1fr;
  }
}
@media(max-width:640px){
  .sac-explore-hero__content{ padding:80px 20px 60px; }
  .sac-explore-ark__tab-word{ display:none; }
  .sac-explore-ark__tab{ padding:12px 18px; }
  .sac-explore-ark__panel-inner{ padding:28px 20px; }
  .sac-explore-beliefs__body{ padding-left:20px; }
  .sac-explore-history__timeline{ padding-left:36px; }
  .sac-explore-history__marker{ left:-36px; }
  .sac-explore-cta__title{ font-size:28px; }
}
