/* ===== PCJC Redesign — Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink:        #0C2230;
  --ink-soft:   #163545;
  --teal:       #1C8C84;
  --teal-bright:#2FB3A6;
  --coral:      #E9683E;
  --coral-soft: #F0855F;
  --sand:       #F7F3EB;
  --paper:      #FFFFFF;
  --mist:       #E9F1F1;
  --text:       #243A44;
  --muted:      #5F7884;
  --line:       #E1DCD0;
  --radius:     18px;
  --radius-sm:  12px;
  --shadow:     0 24px 60px -28px rgba(12,34,48,.35);
  --shadow-sm:  0 14px 34px -22px rgba(12,34,48,.30);
  --maxw:       1180px;
  --ease:       cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--ink);
}
h1 { font-size: clamp(2.7rem, 5.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.35rem; line-height: 1.2; }

p { color: var(--text); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 110px 0; }
.section--tight { padding: 78px 0; }
.bg-sand  { background: var(--sand); }
.bg-mist  { background: var(--mist); }
.bg-ink   { background: var(--ink); color: #DCE6E8; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }

/* ---- Eyebrow / kicker ---- */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .76rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 20px;
}
.kicker::before {
  content: ""; width: 26px; height: 2px; background: var(--coral);
  display: inline-block;
}
.bg-ink .kicker { color: var(--teal-bright); }

.lead { font-size: 1.22rem; color: var(--muted); max-width: 60ch; }
.bg-ink .lead { color: #A9BEC4; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: .95rem;
  padding: 15px 28px; border-radius: 100px;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer; border: 0;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 16px 30px -14px rgba(233,104,62,.7); }
.btn--primary:hover { background: var(--coral-soft); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--on-dark { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.28); }
.btn--on-dark:hover { background: rgba(255,255,255,.16); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__name {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.32rem;
  color: var(--ink); letter-spacing: -.01em;
}
.brand__sub {
  display: block; font-family: 'Inter', sans-serif;
  font-size: .62rem; font-weight: 600; letter-spacing: .19em;
  text-transform: uppercase; color: var(--muted); margin-top: 1px;
}
.nav__links { display: flex; align-items: center; gap: 1px; }
/* the Give button (.nav__cta) keeps its .btn styling — exclude it from the reset */
.nav__links > a:not(.nav__cta),
.nav__trigger {
  font-size: .88rem; font-weight: 500; color: var(--ink);
  padding: 9px 12px; border-radius: 100px; transition: background .2s;
  background: none; border: 0; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
}
.nav__links > a:not(.nav__cta):hover, .nav__trigger:hover { background: var(--mist); }
.nav__links > a:not(.nav__cta).is-active, .nav__trigger.is-active { color: var(--teal); }
.nav__trigger svg { width: 10px; height: 10px; opacity: .5; transition: transform .2s; }
.nav__item { position: relative; }
.nav__item:hover .nav__trigger svg { transform: rotate(180deg); }
.nav__menu {
  position: absolute; top: 100%; left: 50%; margin-top: 9px;
  transform: translateX(-50%) translateY(8px);
  min-width: 232px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 8px;
  opacity: 0; visibility: hidden; transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.nav__menu::before { content: ""; position: absolute; left: 0; right: 0; top: -9px; height: 9px; }
.nav__item:hover .nav__menu,
.nav__item:focus-within .nav__menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__menu a {
  display: block; font-size: .88rem; font-weight: 500; color: var(--ink);
  padding: 9px 13px; border-radius: 9px; transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav__menu a:hover { background: var(--mist); color: var(--teal); }
.nav__menu a.is-active { color: var(--teal); }
.nav__menu--wide { min-width: 320px; }
.nav__menu a.nav__menu-rich { white-space: normal; padding: 11px 13px; }
.nav__menu-title { display: block; font-weight: 600; font-size: .9rem; }
.nav__menu-desc { display: block; margin-top: 2px; font-size: .78rem;
  font-weight: 400; line-height: 1.4; color: var(--muted); }
.nav__menu a.nav__menu-rich:hover .nav__menu-desc { color: var(--teal); }
.nav__cta { margin-left: 8px; }
/* keep the Give button's pill styling — outrank the .nav__links > a reset */
.nav__links > a.nav__cta {
  background-color: var(--coral); color: #fff; padding: 11px 22px; font-weight: 600;
}
.nav__links > a.nav__cta:hover { background-color: var(--coral-soft); }
.nav__cta.is-active { color: #fff; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 660px;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,26,38,.92) 0%, rgba(8,26,38,.72) 42%, rgba(8,26,38,.18) 100%);
}
.hero__inner { position: relative; padding: 120px 0; max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: 26px; }
.hero h1 em { font-style: italic; color: var(--teal-bright); }
.hero__lead { font-size: 1.24rem; color: #C6D6DA; max-width: 54ch; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* page hero (interior) */
.page-hero { position: relative; color: #fff; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.page-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,26,38,.6), rgba(8,26,38,.85)); }
.page-hero__inner { position: relative; padding: 130px 0 110px; max-width: 760px; }
.page-hero h1 { color: #fff; margin-bottom: 20px; }
.page-hero p { color: #C6D6DA; font-size: 1.2rem; max-width: 56ch; }

/* ===== Stat band ===== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.stat { background: var(--paper); padding: 38px 28px; text-align: center; }
.bg-sand .stat { background: var(--sand); }
.stat__num {
  font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 500;
  color: var(--coral); line-height: 1;
}
.stat__label { font-size: .9rem; color: var(--muted); margin-top: 8px; }

/* ===== Section heading ===== */
.sec-head { max-width: 640px; margin-bottom: 56px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { margin-top: 16px; font-size: 1.1rem; color: var(--muted); }
.vf-logo {
  width: min(320px, 80vw); height: auto; display: block; margin: 0 auto 24px;
}

/* ===== Pathway cards ===== */
.cards { display: grid; gap: 24px; }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mist); margin-bottom: 22px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .97rem; color: var(--muted); }
.card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-weight: 600; font-size: .9rem; color: var(--teal);
}
.card__link svg { width: 15px; height: 15px; transition: transform .2s; }
.card:hover .card__link svg { transform: translateX(4px); }

/* ===== Split feature ===== */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.split--rev .split__media { order: 2; }
.split__media img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 3 / 2; object-fit: cover;
}
.split__body h2 { margin-bottom: 18px; }
.split__body p + p { margin-top: 16px; }

/* ===== Values list ===== */
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.value { background: var(--paper); padding: 40px; }
.value__no { font-family: 'Fraunces', serif; font-size: 1.05rem; color: var(--coral); }
.value h3 { margin: 12px 0 10px; }
.value p { color: var(--muted); font-size: .98rem; }

/* ===== Team grid ===== */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.member__photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, var(--mist), #DCE8E8);
  display: flex; align-items: center; justify-content: center;
}
.member__photo span {
  font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 500;
  color: var(--teal); opacity: .55;
}
.member h3 { font-size: 1.12rem; margin: 16px 0 3px; }
.member__role { font-size: .86rem; color: var(--coral); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; }
.member__meta { font-size: .88rem; color: var(--muted); margin-top: 6px; }
.member__email { display: inline-block; margin-top: 8px; font-size: .86rem;
  font-weight: 600; color: var(--teal); text-decoration: none; }
.member__email:hover { color: var(--teal-bright); text-decoration: underline; }
.team-group-photo {
  width: 100%; display: block; border-radius: var(--radius);
  box-shadow: var(--shadow); margin-bottom: 56px;
}

/* ===== Frame steps (Vision Frame) ===== */
.frame { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.frame__step {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px 32px; position: relative;
}
.frame__tag {
  font-family: 'Fraunces', serif; font-size: .95rem; color: var(--teal);
  font-weight: 600;
}
.frame__step h3 { margin: 6px 0 12px; font-size: 1.55rem; }
.frame__step p { color: var(--muted); font-size: .97rem; }

/* ===== Region / church list ===== */
.regions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.region {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
}
.region h3 {
  font-size: .82rem; font-family: 'Inter', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--teal);
  padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--line);
}
.region ul { list-style: none; }
.region li { padding: 7px 0; font-size: .95rem; }
.region li span { display: block; font-size: .82rem; color: var(--muted); }
.region li a { color: var(--teal); font-weight: 600; text-decoration: none; }
.region li a:hover { text-decoration: underline; }

/* ===== Steps / ordination ===== */
.steplist { display: grid; gap: 14px; counter-reset: s; }
.step {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 24px 28px;
}
.step__num {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: #fff; font-weight: 600;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 4px; }
.step p { font-size: .94rem; color: var(--muted); }

/* ===== Resource tiles ===== */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile {
  display: flex; flex-direction: column; gap: 8px;
  padding: 26px; border-radius: var(--radius-sm);
  background: var(--paper); border: 1px solid var(--line);
  transition: border-color .2s, transform .25s var(--ease);
}
.tile:hover { transform: translateY(-4px); border-color: var(--teal); }
.tile__tag { font-size: .74rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); }
.tile h3 { font-size: 1.1rem; }
.tile p { font-size: .92rem; color: var(--muted); }

/* Responsive YouTube embed */
.video-embed {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--ink);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.session-card h3 { margin-bottom: 14px; }
.session-card__tag {
  font-family: 'Fraunces', serif; font-size: .95rem; color: var(--teal); font-weight: 600;
}
.syllabus { display: grid; gap: 12px; }
.syllabus__item {
  display: flex; gap: 18px; align-items: baseline;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 24px;
}
.syllabus__no {
  flex: none; font-family: 'Fraunces', serif; font-size: 1rem;
  color: var(--coral); font-weight: 600; min-width: 34px;
}
.syllabus__item h3 { font-size: 1.05rem; }
.syllabus__item p { font-size: .9rem; color: var(--muted); margin-top: 2px; }
.syllabus__badge {
  margin-left: auto; flex: none; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--teal);
}
.syllabus__badge--soon { color: var(--muted); }
.phase-list { margin-top: 14px; padding-left: 20px; }
.phase-list li { font-size: .93rem; color: var(--muted); margin-bottom: 11px; line-height: 1.55; }
.phase-list li::marker { color: var(--teal); }
.phase-list li strong { color: var(--text); font-weight: 600; }

/* Ordination pathway — winding SVG graphic */
.pathway-wrap {
  width: min(96vw, 1520px); margin: 8px auto 0;
  margin-left: 50%; transform: translateX(-50%);
  overflow-x: auto;
}
.pathway-svg { display: block; width: 100%; height: auto; min-width: 860px; }

/* ===== CTA band ===== */
.cta {
  border-radius: 28px; padding: 76px 64px; text-align: center;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.cta h2 { color: #fff; margin-bottom: 16px; }
.cta p { color: #A9BEC4; max-width: 52ch; margin: 0 auto 32px; font-size: 1.12rem; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta__wave { position: absolute; bottom: -2px; left: 0; width: 100%; opacity: .5; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #93AAB2; padding: 76px 0 36px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand__name { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: .94rem; max-width: 32ch; color: #93AAB2; }
.footer-col h4 {
  color: #fff; font-family: 'Inter', sans-serif; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .13em; margin-bottom: 16px;
}
.footer-col a { display: block; font-size: .93rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--teal-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 28px;
  font-size: .85rem; flex-wrap: wrap; gap: 10px;
}

/* ===== Misc ===== */
.prose p { font-size: 1.08rem; max-width: 66ch; }
.prose p + p { margin-top: 18px; }
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 48px; }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .nav__links { display: none; }
  .cards--4, .cards--3, .team, .frame, .regions, .tiles { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--rev .split__media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 76px 0; }
  .cta { padding: 56px 28px; }
}
@media (max-width: 560px) {
  .cards--4, .cards--3, .cards--2, .team, .frame, .regions, .tiles, .values { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
}
