/* ---------- Breadcrumb (Bootstrap breadcrumb component, skinned) ---------- */
.program-crumbs { padding-top: 16px; }
.program-crumbs .breadcrumb {
  margin: 0;
  font-size: 13px;
  --bs-breadcrumb-divider-color: var(--osp-ink-mute);
  --bs-breadcrumb-item-active-color: var(--osp-plum-700);
}
.program-crumbs .breadcrumb a { color: var(--osp-plum-600); }

/* ---------- Hero ---------- */
.ch-hero { background: var(--osp-cream); padding: 24px 0 32px; }
.ch-hero h1 {
  margin-top: 14px;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.018em;
}
.ch-hero h1 em { font-style: italic; color: var(--osp-terra-700); }
.ch-hero .lede {
  margin-top: 20px;
  font-size: 19px;
  color: var(--osp-ink-soft);
  line-height: 1.55;
  max-width: 60ch;
}
.ch-hero-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--osp-r-lg);
  box-shadow: var(--osp-sh-md);
  position: relative;
  margin: 0;
}
.ch-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ch-hero-photo .photo-cred {
  position: absolute; bottom: 10px; left: 14px;
  color: rgba(255,255,255,.85);
  font-family: var(--osp-font-sans);
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
}

/* ---------- Belief strip ---------- */
.belief-strip {
  background: var(--osp-terra-50);
  border-top: 1px solid var(--osp-terra-100);
  border-bottom: 1px solid var(--osp-terra-100);
  margin-top: 16px;
  padding: 36px 0;
  text-align: center;
}
.belief-strip p {
  max-width: 64ch;
  margin: 0 auto;
  font-family: var(--osp-font-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--osp-plum-900);
  font-style: italic;
  font-weight: 400;
  text-wrap: pretty;
}

/* ---------- Age-track cards ---------- */
.age-card {
  background: var(--osp-paper);
  border: 1px solid var(--osp-line);
  border-radius: var(--osp-r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  height: 100%;
}
.age-card .ages {
  font-family: var(--osp-font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--osp-terra-700);
  font-weight: 700;
  text-transform: uppercase;
}
.age-card .age-num {
  margin-top: 6px;
  font-family: var(--osp-font-serif);
  font-size: 48px;
  color: var(--osp-plum-900);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.age-card h3 {
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.2;
}
.age-card p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--osp-ink-soft);
  line-height: 1.55;
  flex: 1;
}
.age-card .modes {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.age-card .mode-tag {
  background: var(--osp-plum-50);
  color: var(--osp-plum-700);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--osp-font-sans);
  letter-spacing: 0.04em;
}

/* ---------- "What we actually do" band + cards ---------- */
.do-band {
  background: var(--osp-paper);
  border-top: 1px solid var(--osp-line);
  border-bottom: 1px solid var(--osp-line);
}
.do-card {
  background: var(--osp-cream);
  border: 1px solid var(--osp-line);
  border-radius: var(--osp-r-md);
  padding: 28px;
  height: 100%;
}
.do-card .num {
  font-family: var(--osp-font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--osp-terra-700);
  font-weight: 700;
}
.do-card h3 {
  margin-top: 8px;
  font-size: 21px;
  line-height: 1.2;
}
.do-card p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--osp-ink-soft);
  line-height: 1.55;
}

/* ---------- Parent panel ---------- */
.parent-inner {
  background: var(--osp-plum-900);
  color: #fff;
  border-radius: var(--osp-r-xl);
  padding: 56px;
}
.parent-inner h2 {
  font-size: clamp(28px, 4vw, 38px);
  color: #fff;
  line-height: 1.1;
}
.parent-inner p {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}
.parent-inner .parent-note {
  margin-top: 14px;
  color: rgba(255,255,255,.7);
  font-size: 14.5px;
}
.stat-block {
  border-top: 2px solid var(--osp-terra-300);
  padding-top: 14px;
  height: 100%;
}
.stat-block .num {
  font-family: var(--osp-font-serif);
  font-size: 38px;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}
.stat-block .label {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
}
@media (max-width: 767.98px) {
  .parent-inner { padding: 36px 24px; }
}

/* ---------- FAQ (native <details> accordion) ---------- */
.faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  border-bottom: 1px solid var(--osp-line);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--osp-font-serif);
  font-size: 19px;
  color: var(--osp-plum-900);
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--osp-font-sans);
  font-size: 22px; color: var(--osp-terra-700);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin-top: 12px;
  font-size: 15.5px;
  color: var(--osp-ink-soft);
  line-height: 1.6;
}
.accordion{
    --bs-accordion-btn-icon: ;
    --bs-accordion-btn-active-icon: ;
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--osp-line);
    --bs-accordion-active-color: var(--osp-plum-700);
    --bs-accordion-active-bg: transparent;
    margin-top:15px;
    & .accordion-item{
        margin-top:10px;
        border-radius: 0;
        border:none;
        border-bottom:1px solid var(--osp-line);
        & .accordion-button{
            padding: 22px 0px;
            font-family: var(--osp-font-serif);
            font-size: 18px;
              color: var(--osp-plum-900);
              font-weight: 500;
            border-radius: 0 !important;
            border:none;
            box-shadow:none;
            &:not(.collapsed){
                & span{
                    color: var(--osp-terra-700);
                      transform: rotate(45deg);
                }
            }
            &:after{
                display:none;
            }
            & span{
                margin-left:auto;
                  border-radius: 0%;
                  color: var(--osp-terra-700);
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  flex-shrink: 0;
                  font-size: 13px;
                  transition: all 0.2s;
            }
        }
        & .accordion-body{
            padding: 0 0px 24px;
          font-size: 15px;
          color: var(--osp-ink-soft);
          line-height: 1.6;
          & strong{
              color: var(--osp-plum-900);
          }
        }
    }
}

/* ---------- Final CTA panel ---------- */
.ch-final {
  background: var(--osp-terra-700);
  color: #fff;
  border-radius: var(--osp-r-xl);
  padding: 56px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.ch-final h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
  line-height: 1.1;
}
.ch-final p {
  margin: 16px auto 0;
  max-width: 54ch;
  font-size: 16.5px;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
}
.ch-final .actions {
  margin-top: 28px;
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.ch-final .actions a {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--osp-terra-700);
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.ch-final .actions a:hover { background: var(--osp-cream); transform: translateY(-1px); }
.ch-final .actions a.alt {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
}
.ch-final .actions a.alt:hover { background: rgba(255,255,255,.08); }
@media (max-width: 767.98px) {
  .ch-final { padding: 36px 24px; }
}
