

/* ---------- Page sections (prototype .pg-section = 56px) ---------- */
.section-tight { padding: 56px 0; }
@media (max-width: 767.98px) { .section-tight { padding: 36px 0; } }

/* Smaller h2 used inside the two-column band (prototype: 32px) */
.h2-sm { font-size: clamp(26px, 3vw, 32px); }

/* ---------- Breadcrumb (Bootstrap breadcrumb component, skinned) ---------- */
.crumbs { padding-top: 24px; }
.crumbs .breadcrumb {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--osp-ink-mute);
}
.crumbs .breadcrumb a { color: var(--osp-ink-mute); }
.crumbs .breadcrumb a:hover { color: var(--osp-plum-700); }
.crumbs .breadcrumb-item + .breadcrumb-item::before { color: var(--osp-line); }
.crumbs .breadcrumb-item.active { color: var(--osp-plum-700); }

/* ---------- Hero ---------- */
.shelter-hero { padding: 32px 0 48px; }
.shelter-hero h1 {
  margin-top: 14px;
  font-size: clamp(38px, 5.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.018em;
}
.shelter-lede {
  margin-top: 20px;
  font-size: 18px;
  color: var(--osp-ink-soft);
  line-height: 1.6;
  max-width: 56ch;
}
.shelter-photo {
  margin: 28px 0 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 12px 32px rgba(46,42,53,.18);
}
.shelter-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 767.98px) { .shelter-hero { padding: 24px 0 32px; } }

/* ---------- Hero sidebar CTA panel ---------- */
.shelter-cta {
  background: var(--osp-plum-900);
  color: #fff;
  border-radius: var(--osp-r-lg);
  padding: 32px;
  position: sticky;
  top: 120px; /* clears safety bar + sticky navbar */
}
.shelter-cta .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--osp-terra-300);
  font-weight: 700;
  text-transform: uppercase;
}
.shelter-cta h3 {
  margin-top: 10px;
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
}
.shelter-cta .num {
  margin-top: 16px;
  font-family: var(--osp-font-serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.shelter-cta .num a { color: #fff; }
.shelter-cta .ways { margin-top: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.shelter-cta .ways a {
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.18);
}
.shelter-cta .ways a:hover { background: rgba(255,255,255,.22); text-decoration: none; }
.shelter-cta .note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.shelter-cta .note strong { color: #fff; }
@media (max-width: 991.98px) { .shelter-cta { position: static; padding: 26px; } }

/* ---------- "What to expect" step cards ---------- */
.expect-card {
  background: var(--osp-paper);
  border: 1px solid var(--osp-line);
  border-radius: var(--osp-r-md);
  padding: 24px;
  height: 100%;
}
.expect-card .step {
  font-size: 11px;
  color: var(--osp-terra-700);
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
}
.expect-card h4 { margin-top: 8px; font-size: 19px; line-height: 1.25; }
.expect-card p { margin-top: 10px; font-size: 14.5px; color: var(--osp-ink-soft); line-height: 1.55; }

/* ---------- "While you stay" checklist ---------- */
.what-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.what-list li {
  display: grid;
  grid-template-columns: 22px 1fr; /* icon + text, component skin */
  gap: 12px;
  align-items: start;
  font-size: 15px;
  color: var(--osp-ink-soft);
  line-height: 1.55;
}
.what-list li svg { margin-top: 4px; }
.what-list li strong { color: var(--osp-plum-900); font-weight: 600; }

/* ---------- FAQ (native <details>, no JS needed) ---------- */
.faq-list { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.faq {
  background: var(--osp-paper);
  border: 1px solid var(--osp-line);
  border-radius: var(--osp-r-md);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--osp-font-serif);
  font-size: 18px;
  color: var(--osp-plum-900);
  font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .indicator {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--osp-plum-50);
  color: var(--osp-plum-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: all 0.2s;
}
.faq[open] summary .indicator {
  background: var(--osp-plum-700);
  color: #fff;
  transform: rotate(45deg);
}
.faq .a {
  padding: 0 26px 24px;
  font-size: 15px;
  color: var(--osp-ink-soft);
  line-height: 1.6;
}
.faq .a strong { color: var(--osp-plum-900); }
.accordion{
    --bs-accordion-btn-icon: ;
    --bs-accordion-btn-active-icon: ;
    --bs-accordion-bg: var(--osp-paper);
    --bs-accordion-border-color: var(--osp-line);
    --bs-accordion-active-color: var(--osp-plum-700);
    --bs-accordion-active-bg: var(--osp-paper);
    margin-top:15px;
    & .accordion-item{
        margin-top:10px;
        border-radius: var(--osp-r-md);
        border:1px solid var(--osp-line);
        & .accordion-button{
            padding: 22px 26px;
            font-family: var(--osp-font-serif);
            font-size: 18px;
              color: var(--osp-plum-900);
              font-weight: 500;
            border-radius: calc(var(--osp-r-md) - 1px) !important;
            border:none;
            box-shadow:none;
            &:not(.collapsed){
                & span{
                    background: var(--osp-plum-700);
                      color: #fff;
                      transform: rotate(45deg);
                }
            }
            &:after{
                display:none;
            }
            & span{
                margin-left:auto;
                width: 28px; height: 28px;
                  border-radius: 50%;
                  background: var(--osp-plum-50);
                  color: var(--osp-plum-700);
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  flex-shrink: 0;
                  font-size: 16px;
                  transition: all 0.2s;
                  font-size:8px;
            }
        }
        & .accordion-body{
            padding: 0 26px 24px;
          font-size: 15px;
          color: var(--osp-ink-soft);
          line-height: 1.6;
          & strong{
              color: var(--osp-plum-900);
          }
        }
    }
}

/* ---------- "What you can bring" panel ---------- */
.bring-panel {
  background: var(--osp-terra-50);
  border: 1px solid var(--osp-terra-100);
  border-radius: var(--osp-r-xl);
  padding: 48px;
}
.bring-col h4 { font-size: 20px; }
.bring-col ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bring-col li {
  font-size: 14.5px;
  color: var(--osp-ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--osp-line);
  display: flex;
  gap: 10px;
  align-items: center;
}
.bring-col li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--osp-terra-600);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 767.98px) { .bring-panel { padding: 28px 24px; } }

/* ---------- Bottom CTA panel ---------- */
.cta-panel {
  background: linear-gradient(135deg, var(--osp-plum-700), var(--osp-plum-900));
  border-radius: var(--osp-r-xl);
  padding: 56px;
  color: #fff;
  text-align: center;
}
.cta-panel h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
  line-height: 1.15;
  max-width: 18ch;
  margin: 0 auto;
}
.cta-panel p {
  margin: 16px auto 0;
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  max-width: 50ch;
}
@media (max-width: 767.98px) { .cta-panel { padding: 36px 26px; } }

/* Terracotta button variant (prototype cta primary) */
.btn-terra {
  --bs-btn-bg: var(--osp-terra-600);
  --bs-btn-border-color: var(--osp-terra-600);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: var(--osp-terra-700);
  --bs-btn-hover-border-color: var(--osp-terra-700);
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--osp-terra-700);
  --bs-btn-active-border-color: var(--osp-terra-700);
  --bs-btn-active-color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
