/* ---------- 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 ---------- */
.cn-hero { background: var(--osp-cream); padding: 24px 0 32px; }
.cn-hero h1 {
  margin-top: 14px;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.018em;
}
.cn-hero h1 em { font-style: italic; color: var(--osp-terra-700); }
.cn-hero .lede {
  margin-top: 20px;
  font-size: 19px;
  color: var(--osp-ink-soft);
  line-height: 1.55;
  max-width: 60ch;
}
.cn-hero-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--osp-r-lg);
  box-shadow: var(--osp-sh-md);
  position: relative;
  margin: 0;
}
.cn-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cn-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);
}

/* ---------- Promise strip ---------- */
.promise-strip {
  background: var(--osp-plum-900);
  color: #fff;
  margin-top: 16px;
  padding: 28px 0;
}
.promise-item { display: flex; gap: 12px; align-items: flex-start; }
.promise-item .ico { width: 32px; height: 32px; color: var(--osp-terra-300); flex-shrink: 0; }
.promise-item h4 {
  font-family: var(--osp-font-sans);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.promise-item p {
  margin-top: 4px;
  font-size: 13.5px;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}

/* ---------- Service cards ---------- */
.service-card {
  background: var(--osp-paper);
  border: 1px solid var(--osp-line);
  border-radius: var(--osp-r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card .photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--osp-plum-50);
}
.service-card .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card .body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.service-card .label {
  font-family: var(--osp-font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--osp-terra-700);
  font-weight: 700;
}
.service-card h3 { margin-top: 8px; font-size: 22px; line-height: 1.2; }
.service-card .body > p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--osp-ink-soft);
  line-height: 1.55;
  flex: 1;
}
.service-card .meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--osp-line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
  color: var(--osp-ink-mute);
}
.service-card .meta strong {
  font-family: var(--osp-font-sans);
  color: var(--osp-plum-700);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.08em;
}

/* ---------- Groups band + rows ---------- */
.groups-band {
  background: var(--osp-paper);
  border-top: 1px solid var(--osp-line);
  border-bottom: 1px solid var(--osp-line);
}
.group-row {
  background: var(--osp-cream);
  border: 1px solid var(--osp-line);
  border-radius: var(--osp-r-md);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto; /* card-internal skin, not page layout */
  gap: 20px;
  align-items: center;
  transition: all .15s;
  height: 100%;
}
.group-row:hover {
  border-color: var(--osp-plum-300);
  box-shadow: 0 2px 8px rgba(46,42,53,.08);
}
.group-row h4 {
  font-family: var(--osp-font-serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
}
.group-row .desc {
  margin-top: 6px;
  font-size: 14px;
  color: var(--osp-ink-soft);
  line-height: 1.5;
}
.group-row .when {
  font-family: var(--osp-font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--osp-terra-700);
  font-weight: 700;
  margin-top: 8px;
}
.group-row .schedule { text-align: right; }
.group-row .schedule .day {
  font-family: var(--osp-font-serif);
  font-size: 17px;
  color: var(--osp-plum-900);
  font-weight: 500;
}
.group-row .schedule .time {
  font-size: 13px;
  color: var(--osp-ink-mute);
  margin-top: 2px;
}
.group-row .schedule .lang {
  margin-top: 6px;
  font-family: var(--osp-font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--osp-ink-mute);
}

/* ---------- What to expect ---------- */
.expect-step {
  border-top: 2px solid var(--osp-terra-600);
  padding-top: 18px;
  height: 100%;
}
.expect-step .num {
  font-family: var(--osp-font-serif);
  font-size: 32px;
  color: var(--osp-terra-700);
  font-weight: 500;
  line-height: 1;
}
.expect-step h4 {
  margin-top: 12px;
  font-family: var(--osp-font-serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
}
.expect-step p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--osp-ink-soft);
  line-height: 1.6;
}

/* ---------- Therapist cards ---------- */
.therapist-card {
  background: var(--osp-paper);
  border: 1px solid var(--osp-line);
  border-radius: var(--osp-r-md);
  padding: 24px;
  height: 100%;
}
.therapist-card .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--osp-plum-100), var(--osp-terra-100));
  color: var(--osp-plum-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--osp-font-serif);
  font-size: 22px;
  font-weight: 500;
}
.therapist-card h4 {
  margin-top: 14px;
  font-family: var(--osp-font-serif);
  font-size: 18px;
  font-weight: 500;
}
.therapist-card .creds {
  margin-top: 4px;
  font-family: var(--osp-font-sans);
  font-size: 11px;
  color: var(--osp-terra-700);
  letter-spacing: 0.08em;
  font-weight: 700;
}
.therapist-card p {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--osp-ink-soft);
  line-height: 1.5;
}
.therapist-more {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--osp-plum-700);
  font-size: 14.5px; font-weight: 600;
}

/* ---------- Quote pull ---------- */
.quote-pull-inner {
  background: linear-gradient(155deg, var(--osp-terra-50), var(--osp-cream));
  border: 1px solid var(--osp-terra-100);
  border-radius: var(--osp-r-xl);
  padding: 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.quote-pull-photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--osp-r-lg);
}
.quote-pull-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quote-pull-inner blockquote {
  margin: 0;
  font-family: var(--osp-font-serif);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  color: var(--osp-plum-900);
  font-style: italic;
  font-weight: 400;
  text-wrap: pretty;
}
.quote-pull-inner .attr {
  margin-top: 24px;
  font-family: var(--osp-font-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--osp-terra-700);
  text-transform: uppercase;
  font-weight: 700;
}
.quote-pull-inner .attr-sub {
  margin-top: 4px;
  font-family: var(--osp-font-sans);
  font-size: 13px;
  color: var(--osp-ink-mute);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .quote-pull-inner { padding: 32px; }
}

/* ---------- 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 ---------- */
.cn-final {
  background: var(--osp-plum-700);
  color: #fff;
  border-radius: var(--osp-r-xl);
  padding: 56px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.cn-final h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
  line-height: 1.1;
}
.cn-final p {
  margin: 16px auto 0;
  max-width: 50ch;
  font-size: 16.5px;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}
.cn-final .actions {
  margin-top: 28px;
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.cn-final .actions a {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--osp-plum-900);
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.cn-final .actions a:hover { background: var(--osp-cream); transform: translateY(-1px); }
.cn-final .actions a.alt {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}
.cn-final .actions a.alt:hover { background: rgba(255,255,255,.08); }
@media (max-width: 767.98px) {
  .cn-final { padding: 36px 24px; }
}
