:root {
  --bb-purple-900: #2e1a3d;
  --bb-purple-800: #3d2454;
  --bb-purple-700: #5b2d82;
  --bb-purple-500: #7a4aa8;
  --bb-purple-400: #b08ad4;
  --bb-purple-200: #e6d7f2;
  --bb-purple-100: #f4ecf9;
  --bb-ivory: #faf7f4;
  --bb-champagne: #c9a96e;
  --bb-ink: #1f1526;
  --bb-muted: #5c5264;
  --bb-white: #ffffff;
  --bb-font-display: "Cormorant Garamond", Georgia, serif;
  --bb-font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --bb-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bb-header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--bb-font-body);
  color: var(--bb-ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(176, 138, 212, 0.22), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(91, 45, 130, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bb-ivory) 0%, #f7f2fb 45%, var(--bb-ivory) 100%);
  line-height: 1.65;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--bb-purple-700);
  text-decoration: none;
  transition: color 0.25s var(--bb-ease);
}

a:hover {
  color: var(--bb-purple-900);
}

h1, h2, h3, h4 {
  font-family: var(--bb-font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--bb-purple-900);
}

/* Header */
.bb-header {
  --bb-header-h: 6.85rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(250, 247, 244, 0.86);
  border-bottom: 1px solid rgba(91, 45, 130, 0.08);
  transition: background 0.45s var(--bb-ease), box-shadow 0.45s var(--bb-ease);
}

.bb-header.is-compact {
  --bb-header-h: 4.5rem;
  background: rgba(250, 247, 244, 0.94);
  box-shadow: 0 8px 24px rgba(46, 26, 61, 0.06);
}

.bb-header-inner {
  min-height: 6.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: min-height 0.45s var(--bb-ease);
}

.bb-header.is-compact .bb-header-inner {
  min-height: 4.5rem;
}

.bb-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--bb-font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--bb-purple-900);
  letter-spacing: 0.02em;
  min-width: 0;
}

.bb-brand-marks {
  position: relative;
  display: block;
  flex-shrink: 0;
  height: 5.15rem;
  width: 6.07rem;
  transition: height 0.45s var(--bb-ease), width 0.45s var(--bb-ease);
}

.bb-header.is-compact .bb-brand-marks {
  height: 2.4rem;
  width: 3.19rem;
}

.bb-brand-mark {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transition: opacity 0.4s var(--bb-ease);
}

.bb-brand-mark--arch {
  opacity: 1;
}

.bb-brand-mark--figure {
  opacity: 0;
}

.bb-header.is-compact .bb-brand-mark--arch {
  opacity: 0;
}

.bb-header.is-compact .bb-brand-mark--figure {
  opacity: 1;
}

.bb-brand-name {
  white-space: nowrap;
}

.bb-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.bb-nav a {
  color: var(--bb-muted);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.2rem;
}

.bb-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--bb-purple-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--bb-ease);
}

.bb-nav a:hover,
.bb-nav a.is-active {
  color: var(--bb-purple-700);
}

.bb-nav a.is-active::after,
.bb-nav a:hover::after {
  transform: scaleX(1);
}

.bb-lang {
  display: inline-flex;
  border: 1px solid rgba(91, 45, 130, 0.2);
  border-radius: 999px;
  overflow: hidden;
  margin-left: 0.9rem;
}

.bb-lang-btn {
  border: 0;
  background: transparent;
  color: var(--bb-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
}

.bb-lang-btn.is-active {
  background: var(--bb-purple-700);
  color: var(--bb-white);
}

.bb-nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.bb-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--bb-purple-800);
  border-radius: 2px;
}

/* Buttons */
.bb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: normal;
  touch-action: manipulation;
  transition: transform 0.25s var(--bb-ease), background 0.25s var(--bb-ease), color 0.25s var(--bb-ease), box-shadow 0.25s var(--bb-ease);
}

.bb-btn:hover {
  transform: translateY(-2px);
}

@media (hover: none) {
  .bb-btn:hover {
    transform: none;
  }
}

.bb-btn-primary {
  background: linear-gradient(135deg, var(--bb-purple-700), var(--bb-purple-500));
  color: var(--bb-white);
  box-shadow: 0 10px 28px rgba(91, 45, 130, 0.25);
}

.bb-btn-primary:hover {
  color: var(--bb-white);
  box-shadow: 0 14px 34px rgba(91, 45, 130, 0.32);
}

.bb-btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--bb-white);
}

.bb-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--bb-white);
}

.bb-btn-outline {
  border-color: var(--bb-purple-400);
  color: var(--bb-purple-700);
  background: rgba(255, 255, 255, 0.5);
}

.bb-btn-outline:hover {
  background: var(--bb-purple-100);
  color: var(--bb-purple-900);
}

.bb-btn:disabled,
.bb-btn.is-loading,
.btn:disabled,
.btn.is-loading,
.bb-admin-action:disabled,
.bb-admin-action.is-loading {
  pointer-events: none;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.bb-btn:disabled:not(.is-loading),
.btn:disabled:not(.is-loading) {
  opacity: 0.72;
}

.bb-btn:disabled:hover,
.bb-btn.is-loading:hover {
  transform: none;
}

.bb-btn.is-loading,
.btn.is-loading,
.bb-admin-action.is-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0.92;
}

.bb-btn.is-loading::after,
.btn.is-loading::after,
.bb-admin-action.is-loading::after {
  content: '';
  width: 0.95em;
  height: 0.95em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: bb-spin 0.65s linear infinite;
  flex-shrink: 0;
}

.bb-admin-action.is-loading {
  gap: 0.35rem;
}

.bb-admin-action.is-loading::after {
  width: 0.75em;
  height: 0.75em;
}

.bb-admin-action.is-loading svg {
  display: none;
}

form.is-submitting,
form[aria-busy="true"] {
  cursor: wait;
}

@keyframes bb-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bb-btn.is-loading::after,
  .btn.is-loading::after,
  .bb-admin-action.is-loading::after {
    animation: none;
    opacity: 0.55;
    border-right-color: currentColor;
  }
}

/* Hero */
.bb-hero {
  position: relative;
  min-height: calc(100vh - var(--bb-header-h));
  display: flex;
  align-items: flex-end;
  overflow: clip;
  color: var(--bb-white);
}

.bb-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Ken Burns — slow cinematic zoom/pan (tasteful still-image motion) */
.bb-hero-photo {
  position: absolute;
  inset: -10%;
  background-color: var(--bb-purple-900);
  background-image: var(
    --bb-hero-image,
    url("/assets/images/cassio-jardim-Efd5oh-nQWI-unsplash.jpg")
  );
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform-origin: 50% 50%;
  animation: bb-kenburns 36s linear infinite alternate;
  will-change: transform;
}

.bb-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(46, 26, 61, 0.28) 0%,
    rgba(46, 26, 61, 0.52) 45%,
    rgba(46, 26, 61, 0.88) 100%
  );
}

.bb-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.9;
}

.bb-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 4rem 0 5rem;
}

@keyframes bb-kenburns {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-2.2%, -1.4%, 0);
  }
}

/* Why / Our heart — editorial values */
.bb-why {
  padding: 4.5rem 0 5rem;
  background: rgba(244, 236, 249, 0.55);
  border-top: 1px solid rgba(91, 45, 130, 0.06);
  border-bottom: 1px solid rgba(91, 45, 130, 0.06);
}

.bb-why-title {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin: 0 0 1.15rem;
}

.bb-why-statement {
  font-family: var(--bb-font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--bb-purple-800);
  max-width: 48rem;
  margin: 0 0 1.25rem;
}

.bb-why-support {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--bb-muted);
  max-width: 46rem;
  margin: 0;
}

.bb-why-media {
  margin: 0;
  overflow: hidden;
  border-radius: 1.15rem;
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  background: rgba(91, 45, 130, 0.08);
}

.bb-why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bb-why-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.25rem 2.75rem;
  margin: 2.75rem 0 2.5rem;
  padding: 2.5rem 0 0;
  border-top: 1px solid rgba(201, 169, 110, 0.45);
}

.bb-why-icon {
  display: inline-flex;
  color: var(--bb-purple-500);
  margin-bottom: 0.85rem;
}

.bb-why-icon svg {
  width: 2.15rem;
  height: 2.15rem;
  stroke-width: 1.25;
}

.bb-why-pillars h3 {
  font-family: var(--bb-font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--bb-purple-900);
}

.bb-why-pillars p {
  margin: 0;
  font-size: 1rem;
  color: var(--bb-muted);
  line-height: 1.7;
}

/* Tablet portrait + phone: image full width under copy */
@media (max-width: 991.98px) {
  .bb-why {
    padding: 3.25rem 0 3.75rem;
  }

  .bb-why .col-lg-6.d-flex {
    display: block !important;
  }

  .bb-why-media {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 767.98px) {
  .bb-why-pillars {
    grid-template-columns: 1fr;
    gap: 1.85rem;
    padding-top: 1.85rem;
  }
}

@media (max-width: 575.98px) {
  .bb-why-media {
    aspect-ratio: 4 / 3;
  }
}

.bb-hero-brand {
  font-family: var(--bb-font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--bb-white);
  max-width: 14ch;
  animation: bb-fade-up 0.9s var(--bb-ease) both;
}

.bb-hero-headline {
  font-family: var(--bb-font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  margin: 0 0 1rem;
  max-width: 28ch;
  color: var(--bb-purple-200);
  animation: bb-fade-up 1s 0.1s var(--bb-ease) both;
}

.bb-hero-lead {
  max-width: 38ch;
  margin: 0 0 2rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  animation: bb-fade-up 1.1s 0.18s var(--bb-ease) both;
}

.bb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: bb-fade-up 1.15s 0.26s var(--bb-ease) both;
}

@keyframes bb-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.bb-section {
  padding: 5rem 0;
}

.bb-section-sm {
  padding: 3.5rem 0;
}

.bb-kicker {
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bb-purple-500);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.bb-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.bb-lead {
  font-size: 1.1rem;
  color: var(--bb-muted);
  max-width: 52ch;
}

.bb-scripture {
  padding: 2.75rem 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(244, 236, 249, 0.7), rgba(250, 247, 244, 0.2));
  border-top: 1px solid rgba(201, 169, 110, 0.35);
  border-bottom: 1px solid rgba(201, 169, 110, 0.35);
}

/* Sit flush against the footer (no pale band between verse and dark bar) */
.bb-scripture:has(+ .bb-footer),
.bb-scripture + .bb-footer {
  margin-top: 0;
}

.bb-scripture:has(+ .bb-footer) {
  padding-bottom: 2rem;
  border-bottom: 0;
}

.bb-scripture-ref {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bb-champagne);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.bb-scripture-text {
  font-family: var(--bb-font-display);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-style: italic;
  color: var(--bb-purple-900);
  max-width: 28ch;
  margin: 0 auto;
  padding: 0;
  line-height: 1.35;
  border: 0;
}

.bb-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(91, 45, 130, 0.08);
  border-radius: 1.25rem;
  padding: 1.75rem;
}

.bb-camp-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.bb-camp-feature img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 1.25rem;
  filter: saturate(0.95);
}

.bb-camp-card-cover {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 1rem;
}

.bb-camp-intro {
  padding: 0.25rem 0 2rem;
}

.bb-camp-intro-body {
  margin: 0;
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--bb-muted);
}

.bb-camp-expect {
  padding: 1rem 0 2.75rem;
}

.bb-camp-expect-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  margin-top: 0.35rem;
}

.bb-camp-expect-grid h3 {
  font-size: 1.35rem;
  margin: 0 0 0.55rem;
}

.bb-camp-expect-grid p {
  margin: 0;
  color: var(--bb-muted);
  line-height: 1.7;
}

.bb-camp-notes {
  padding: 0 0 2.5rem;
}

.bb-camp-notes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 3rem;
  margin-bottom: 2rem;
}

.bb-camp-notes h2,
.bb-camp-unique h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin: 0 0 0.75rem;
}

.bb-camp-notes p,
.bb-camp-unique p {
  margin: 0;
  color: var(--bb-muted);
  line-height: 1.75;
}

.bb-camp-unique {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(91, 45, 130, 0.12);
  max-width: 70ch;
}

@media (max-width: 767.98px) {
  .bb-camp-expect-grid,
  .bb-camp-notes-grid {
    grid-template-columns: 1fr;
  }
}

/* Camp detail — emphasis page */
.bb-camp-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-color: var(--bb-purple-900);
  overflow: hidden;
}

.bb-camp-hero::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 0;
  background: var(--bb-camp-hero) center / cover no-repeat;
  filter: blur(42px) saturate(0.9);
  transform: scale(1.12);
}

.bb-camp-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(46, 26, 61, 0.42) 0%,
      rgba(46, 26, 61, 0.62) 42%,
      rgba(46, 26, 61, 0.88) 100%
    );
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
}

.bb-camp-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 4.5rem;
  padding-bottom: 3.25rem;
  max-width: 820px;
}

.bb-camp-hero-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bb-camp-hero-kicker a {
  color: rgba(255, 255, 255, 0.78);
}

.bb-camp-hero-kicker a:hover {
  color: #fff;
}

.bb-camp-hero-date {
  margin: 0 0 0.65rem;
  font-family: var(--bb-font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic;
  color: #f7f1e6;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 16px rgba(46, 26, 61, 0.7), 0 0 2px rgba(46, 26, 61, 0.5);
}

.bb-camp-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.95;
  color: #fff;
  max-width: 12ch;
}

.bb-camp-hero-lead {
  margin: 0 0 1.5rem;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 48ch;
}

.bb-camp-hero-cta {
  box-shadow: 0 14px 36px rgba(46, 26, 61, 0.35);
}

.bb-camp-facts {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(91, 45, 130, 0.1);
  background: rgba(255, 255, 255, 0.35);
}

.bb-camp-facts-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

.bb-camp-fact-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bb-champagne);
}

.bb-camp-fact-value {
  margin: 0;
  font-family: var(--bb-font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.15;
  color: var(--bb-purple-900);
}

.bb-camp-split {
  padding: 3.5rem 0;
}

.bb-camp-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.bb-camp-split-media {
  margin: 0;
  overflow: hidden;
  border-radius: 1.35rem;
}

.bb-camp-split-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: top;
}

.bb-camp-split-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
  line-height: 1;
}

.bb-camp-address {
  margin: 0;
  font-family: var(--bb-font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--bb-purple-800);
  max-width: 28ch;
}

.bb-camp-arrival-label {
  margin: 1.75rem 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bb-champagne);
}

.bb-camp-arrival {
  margin: 0;
  color: var(--bb-muted);
  line-height: 1.7;
  max-width: 42ch;
}

.bb-camp-schedule {
  padding: 1rem 0 3.5rem;
}

.bb-camp-section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  margin: 0 0 1.75rem;
  line-height: 1;
}

.bb-camp-schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.bb-camp-schedule-list li {
  display: grid;
  grid-template-columns: minmax(7rem, 0.35fr) 1fr;
  gap: 1rem 1.75rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(91, 45, 130, 0.12);
}

.bb-camp-schedule-list li:last-child {
  border-bottom: 1px solid rgba(91, 45, 130, 0.12);
}

.bb-camp-schedule-day {
  font-family: var(--bb-font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.1;
  color: var(--bb-purple-900);
}

.bb-camp-schedule-detail {
  color: var(--bb-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  padding-top: 0.2rem;
}

.bb-camp-gallery-break {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.75rem;
  padding: 0 0 3.25rem;
  max-width: 1140px;
  margin: 0 auto;
  width: calc(100% - 2.5rem);
}

.bb-camp-gallery-break img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 1.15rem;
}

.bb-camp-gallery-break img:last-child {
  height: 280px;
  margin-top: 2.5rem;
}

.bb-camp-lists {
  padding: 0 0 3.5rem;
}

.bb-camp-lists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3.5rem;
}

.bb-camp-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.bb-camp-checklist li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--bb-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.bb-camp-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--bb-champagne);
}

.bb-camp-checklist-soft li::before {
  background: transparent;
  border: 1.5px solid var(--bb-purple-500);
}

.bb-camp-cta-band {
  padding: 3.5rem 0 4.25rem;
  text-align: center;
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(176, 138, 212, 0.2), transparent 65%),
    linear-gradient(180deg, rgba(244, 236, 249, 0.65), transparent);
}

.bb-camp-cta-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bb-champagne);
}

.bb-camp-cta-title {
  margin: 0 auto 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  max-width: 16ch;
}

.bb-camp-cta-text {
  margin: 0 auto 1.5rem;
  max-width: 42ch;
  color: var(--bb-muted);
  line-height: 1.65;
}

@media (max-width: 991.98px) {
  .bb-camp-facts-row,
  .bb-camp-split-grid,
  .bb-camp-lists-grid,
  .bb-camp-gallery-break {
    grid-template-columns: 1fr;
  }

  .bb-camp-gallery-break img,
  .bb-camp-gallery-break img:last-child {
    height: 220px;
    margin-top: 0;
  }

  .bb-camp-schedule-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .bb-camp-hero {
    min-height: 70vh;
  }

  .bb-camp-hero-inner {
    padding-top: 3.25rem;
    padding-bottom: 2.35rem;
  }

  .bb-camp-hero-title {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
    line-height: 1.12;
    max-width: none;
    overflow-wrap: break-word;
  }

  .bb-camp-hero-lead {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .bb-camp-facts-row {
    gap: 1.15rem;
  }
}

.bb-meta {
  color: var(--bb-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.bb-quote {
  font-family: var(--bb-font-display);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--bb-purple-900);
  line-height: 1.4;
  margin: 0 0 1rem;
}

.bb-quote-by {
  color: var(--bb-muted);
  font-size: 0.95rem;
}

/* Newsletter — centered above stories band */
.bb-newsletter-band {
  padding: 3.75rem 0;
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(91, 45, 130, 0.06);
  border-bottom: 1px solid rgba(91, 45, 130, 0.06);
}

.bb-newsletter-inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.bb-newsletter-inner .bb-kicker {
  margin-bottom: 0.6rem;
}

.bb-newsletter-title {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  margin: 0 0 0.75rem;
}

.bb-newsletter-lead {
  margin: 0 auto 1.25rem;
  color: var(--bb-muted);
  max-width: 52ch;
}

.bb-newsletter-perks {
  list-style: none;
  margin: 0 auto 1.6rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.4rem;
  max-width: 40rem;
}

.bb-newsletter-perks li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.95rem;
  color: var(--bb-purple-900);
  text-align: left;
}

.bb-newsletter-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: var(--bb-purple-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bb-newsletter-note {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--bb-muted);
  text-align: center;
}

@media (max-width: 575.98px) {
  .bb-newsletter-perks {
    flex-direction: column;
    align-items: flex-start;
    max-width: 22rem;
  }
}

.bb-newsletter-form {
  text-align: left;
}

.bb-newsletter-form .form-label {
  display: block;
  text-align: left;
}

.bb-newsletter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.bb-newsletter-row .form-control {
  flex: 1 1 12rem;
  width: auto;
  min-width: 0;
  min-height: 0;
  height: calc(1.5em + 1.5rem + 2px);
  align-self: center;
}

.bb-newsletter-row .bb-btn {
  flex: 0 0 auto;
  align-self: center;
}

@media (max-width: 575.98px) {
  .bb-newsletter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .bb-newsletter-row .form-control {
    width: 100%;
    flex: 0 0 auto;
    min-height: 3rem;
    height: 3rem;
  }

  .bb-newsletter-row .bb-btn {
    width: 100%;
  }
}

/* Stories band — floral full-bleed above footer */
.bb-stories-band {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  color: var(--bb-white);
}

.bb-stories-media {
  position: absolute;
  inset: 0;
  background:
    var(--bb-stories-bg, none) center 40%/cover no-repeat;
  transform: scale(1.04);
}

.bb-stories-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(46, 26, 61, 0.78) 0%,
    rgba(61, 36, 84, 0.72) 45%,
    rgba(46, 26, 61, 0.84) 100%
  );
}

.bb-stories-inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.bb-stories-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bb-champagne);
  margin: 0 0 1rem;
}

.bb-stories-quote {
  font-family: var(--bb-font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--bb-white);
  margin: 0 0 1.15rem;
  border: 0;
  padding: 0;
}

.bb-stories-by {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.bb-stories-band .bb-btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--bb-white);
}

.bb-stories-band .bb-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--bb-white);
}

@media (max-width: 767.98px) {
  .bb-stories-band {
    padding: 3.75rem 0;
  }
}

/* Team — sticky portrait + vertical accordion */
.bb-team-stage {
  padding: 0.75rem 0 4rem;
}

.bb-team-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.75rem, 4vw, 3.75rem);
  align-items: start;
}

.bb-team-portraits {
  position: sticky;
  top: calc(var(--bb-header-h) + 1.1rem);
}

.bb-team-portraits-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  aspect-ratio: 4 / 5;
  background: rgba(91, 45, 130, 0.08);
  box-shadow: 0 20px 50px rgba(46, 26, 61, 0.1);
}

.bb-team-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  z-index: 0;
  transition:
    opacity 1.05s cubic-bezier(0.33, 0.1, 0.25, 1),
    transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.bb-team-portrait.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.bb-team-portrait-veil {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(46, 26, 61, 0.22));
  pointer-events: none;
}

.bb-team-roster {
  display: flex;
  flex-direction: column;
  padding-top: 0.15rem;
}

.bb-team-member {
  position: relative;
  padding: 1.15rem 0 1.15rem 1rem;
  border-bottom: 1px solid rgba(91, 45, 130, 0.1);
  cursor: pointer;
  outline: none;
}

.bb-team-member:first-child {
  border-top: 1px solid rgba(91, 45, 130, 0.1);
}

.bb-team-member::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  bottom: 1.35rem;
  width: 2px;
  border-radius: 2px;
  background: var(--bb-champagne);
  opacity: 0;
  transform: scaleY(0.7);
  transform-origin: center;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    bottom 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.bb-team-member.is-active::before,
.bb-team-member:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
  top: 1.05rem;
  bottom: 1.05rem;
}

.bb-team-member:focus-visible {
  background: rgba(244, 236, 249, 0.45);
  border-radius: 0.35rem;
}

.bb-team-member-mobile {
  display: none;
}

.bb-team-member-main {
  min-width: 0;
}

.bb-team-member-role {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bb-champagne);
  opacity: 0.45;
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.bb-team-member-name {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  margin: 0;
  line-height: 1.05;
  color: rgba(46, 26, 61, 0.28);
  transition:
    color 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.bb-team-member-bio {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  transition:
    grid-template-rows 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    margin 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.bb-team-member-bio > p {
  overflow: hidden;
  margin: 0;
  color: var(--bb-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 54ch;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.bb-team-member:hover .bb-team-member-name,
.bb-team-member:focus-visible .bb-team-member-name,
.bb-team-member.is-active .bb-team-member-name {
  color: var(--bb-purple-900);
  transform: translateX(3px);
}

.bb-team-member.is-active .bb-team-member-role,
.bb-team-member:focus-visible .bb-team-member-role {
  opacity: 1;
}

.bb-team-member.is-active .bb-team-member-bio {
  grid-template-rows: 1fr;
  margin-top: 0.75rem;
}

.bb-team-member.is-active .bb-team-member-bio > p {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s;
}

.bb-team-member:not(.is-active) .bb-team-member-bio > p {
  transition-delay: 0s;
  transition-duration: 0.35s, 0.4s;
}

@media (max-width: 991.98px) {
  .bb-team-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bb-team-portraits {
    display: none;
  }

  .bb-team-member {
    padding: 0 0 1.75rem;
    margin-bottom: 1.75rem;
    cursor: default;
  }

  .bb-team-member:first-child {
    border-top: 0;
  }

  .bb-team-member::before {
    display: none;
  }

  .bb-team-member-mobile {
    display: block;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 1.1rem;
    aspect-ratio: 4 / 5;
    max-width: none;
    width: 100%;
  }

  .bb-team-member-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bb-team-member-name {
    color: var(--bb-purple-900);
    transform: none;
  }

  .bb-team-member-role {
    opacity: 1;
  }

  .bb-team-member-bio {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 0.7rem;
  }

  .bb-team-member-bio > p,
  .bb-team-member.is-active .bb-team-member-bio > p,
  .bb-team-member:not(.is-active) .bb-team-member-bio > p {
    max-width: none;
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bb-team-portrait,
  .bb-team-member-name,
  .bb-team-member-role,
  .bb-team-member-bio,
  .bb-team-member::before {
    transition: none !important;
  }

  .bb-team-portrait {
    transform: none;
  }

  .bb-team-member:hover .bb-team-member-name,
  .bb-team-member:focus-visible .bb-team-member-name,
  .bb-team-member.is-active .bb-team-member-name {
    transform: none;
  }
}

/* Testimonials */
.bb-testimonial {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(91, 45, 130, 0.1);
}

.bb-testimonial:last-child {
  border-bottom: 0;
}

.bb-stories-page {
  padding: 0 0 4rem;
}

.bb-story {
  position: relative;
  padding: clamp(3.25rem, 6vw, 5rem) 0;
}

.bb-story.is-tone {
  background:
    linear-gradient(180deg, rgba(244, 236, 249, 0.72) 0%, rgba(250, 247, 244, 0.35) 100%);
}

.bb-story-inner {
  max-width: none;
  width: 100%;
}

.bb-story-index {
  margin: 0 0 1.1rem;
  font-family: var(--bb-font-display);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--bb-champagne);
}

.bb-story-main {
  position: relative;
}

.bb-story-lead,
.bb-story-rest p {
  margin: 0;
  font-family: var(--bb-font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--bb-purple-900);
}

.bb-story-lead::first-letter {
  float: left;
  font-family: var(--bb-font-display);
  font-size: 3.4em;
  font-weight: 600;
  line-height: 0.82;
  padding: 0.12em 0.12em 0 0;
  color: var(--bb-purple-500);
}

.bb-story-rest {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--bb-ease);
  margin-top: 0.15rem;
}

.bb-story-rest-inner {
  overflow: hidden;
  min-height: 0;
}

.bb-story.is-expanded .bb-story-rest {
  grid-template-rows: 1fr;
}

.bb-story-rest p {
  margin-top: 1.15rem;
}

.bb-story:not(.is-expanded)[data-has-more] .bb-story-main::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.4rem;
  height: 4.5rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(250, 247, 244, 0), var(--bb-ivory) 88%);
}

.bb-story.is-tone:not(.is-expanded)[data-has-more] .bb-story-main::after {
  background: linear-gradient(180deg, rgba(244, 236, 249, 0), rgba(244, 236, 249, 0.95) 88%);
}

.bb-story-toggle {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
  min-height: 2.75rem;
  padding: 0.5rem 0;
  border: 0;
  background: transparent;
  color: var(--bb-purple-700);
  font-family: var(--bb-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  touch-action: manipulation;
}

.bb-story-toggle::after {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--bb-ease);
}

.bb-story-toggle:hover {
  color: var(--bb-purple-900);
}

.bb-story-toggle:hover::after {
  width: 2.4rem;
}

.bb-story.is-expanded .bb-story-toggle::after {
  width: 1rem;
}

.bb-story-by {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(91, 45, 130, 0.12);
}

.bb-story-avatar {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--bb-purple-700), var(--bb-purple-500));
  color: var(--bb-white);
  font-family: var(--bb-font-display);
  font-size: 1.3rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(91, 45, 130, 0.16);
}

.bb-story-by-text {
  min-width: 0;
}

.bb-story-name {
  margin: 0;
  font-family: var(--bb-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--bb-purple-900);
}

.bb-story-meta {
  margin: 0.2rem 0 0;
  color: var(--bb-muted);
  font-size: 0.92rem;
}

@media (max-width: 767.98px) {
  .bb-story-lead::first-letter {
    font-size: 2.8em;
  }
}

/* Gallery (legacy simple grid — kept for any older markup) */
.bb-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bb-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4 / 5;
}

.bb-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--bb-ease);
}

.bb-gallery figure:hover img {
  transform: scale(1.04);
}

/* —— Camp photo gallery (mosaic + lightbox) —— */
.bb-gallery-hero {
  position: relative;
  padding: 3.25rem 0 2.5rem;
  overflow: hidden;
}

.bb-gallery-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0;
  text-align: left;
}

.bb-gallery-hero-veil {
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 18rem;
  background:
    radial-gradient(closest-side, rgba(176, 138, 212, 0.28), transparent 72%),
    radial-gradient(closest-side at 70% 40%, rgba(201, 169, 110, 0.16), transparent 70%);
  pointer-events: none;
}

.bb-gallery-count {
  margin: 1.1rem 0 0;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bb-muted);
}

.bb-gallery-count strong {
  font-family: var(--bb-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bb-purple-900);
  margin: 0 0.25rem;
}

.bb-gallery-stage {
  padding: 0.5rem 0 5.5rem;
}

/* True masonry — natural photo ratios in balanced columns */
.bb-mosaic {
  --bb-masonry-gap: 0.85rem;
  column-count: 3;
  column-gap: var(--bb-masonry-gap);
  width: 100%;
}

.bb-mosaic-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 var(--bb-masonry-gap);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 1.05rem;
  isolation: isolate;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  /* Always visible — do not depend on JS (cached/old scripts must not blank the grid) */
  opacity: 1;
  transform: none;
  transition: box-shadow 0.55s var(--bb-ease);
}

.bb-mosaic-item:focus-visible {
  outline: 2px solid var(--bb-purple-500);
  outline-offset: 3px;
}

.bb-mosaic-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(145deg, var(--bb-purple-100), #e8dcc8);
  aspect-ratio: var(--bb-ar, 4 / 5);
}

.bb-mosaic-frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.95s var(--bb-ease), filter 0.6s var(--bb-ease);
  filter: saturate(0.97) contrast(1.02);
  will-change: transform;
}

.bb-mosaic-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(30, 16, 40, 0.28) 100%);
  opacity: 0;
  transition: opacity 0.45s var(--bb-ease);
  pointer-events: none;
}

.bb-mosaic-item:hover,
.bb-mosaic-item:focus-visible {
  z-index: 2;
  box-shadow: 0 18px 40px rgba(46, 26, 61, 0.16);
}

.bb-mosaic-item:hover .bb-mosaic-frame img,
.bb-mosaic-item:focus-visible .bb-mosaic-frame img {
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.04);
}

.bb-mosaic-item:hover .bb-mosaic-glow,
.bb-mosaic-item:focus-visible .bb-mosaic-glow {
  opacity: 1;
}

@media (min-width: 1200px) {
  .bb-mosaic {
    column-count: 4;
    --bb-masonry-gap: 0.95rem;
  }
}

@media (max-width: 991.98px) {
  .bb-mosaic {
    column-count: 2;
    --bb-masonry-gap: 0.7rem;
  }
}

@media (max-width: 575.98px) {
  .bb-mosaic {
    column-count: 1;
    --bb-masonry-gap: 0.75rem;
  }

  .bb-mosaic-item {
    border-radius: 0.95rem;
  }
}

/* Camps → gallery thumbnail teaser */
.bb-gallery-teaser {
  padding: 0.5rem 0 3.25rem;
}

.bb-gallery-teaser-head {
  margin-bottom: 1.35rem;
}

.bb-gallery-teaser-head h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
}

.bb-gallery-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  text-decoration: none;
}

.bb-gallery-teaser-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--bb-purple-100), #e8dcc8);
  isolation: isolate;
}

.bb-gallery-teaser-thumb:nth-child(1),
.bb-gallery-teaser-thumb:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.bb-gallery-teaser-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.85s var(--bb-ease), filter 0.55s var(--bb-ease);
  filter: saturate(0.96);
}

.bb-gallery-teaser-grid:hover .bb-gallery-teaser-thumb img,
.bb-gallery-teaser-grid:focus-visible .bb-gallery-teaser-thumb img {
  filter: saturate(0.88) brightness(0.92);
}

.bb-gallery-teaser-grid:hover .bb-gallery-teaser-thumb:hover img,
.bb-gallery-teaser-grid:focus-visible .bb-gallery-teaser-thumb:hover img,
.bb-gallery-teaser-thumb:hover img {
  transform: scale(1.08);
  filter: saturate(1.04) brightness(1);
}

.bb-gallery-teaser-more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(30, 16, 40, 0.52);
  color: var(--bb-white);
  font-family: var(--bb-font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(2px);
}

.bb-gallery-teaser-cta {
  margin: 1.35rem 0 0;
}

/* legacy single gallery link card (unused) */
.bb-gallery-link {
  padding: 0.5rem 0 3.5rem;
}

.bb-gallery-link-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: min(52vh, 420px);
  overflow: hidden;
  border-radius: 1.5rem;
  color: var(--bb-white);
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 18px 50px rgba(46, 26, 61, 0.14);
  transition: transform 0.7s var(--bb-ease), box-shadow 0.7s var(--bb-ease);
}

.bb-gallery-link-card:hover,
.bb-gallery-link-card:focus-visible {
  color: var(--bb-white);
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(46, 26, 61, 0.2);
}

.bb-gallery-link-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bb-gallery-link-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  transition: transform 1.1s var(--bb-ease);
  filter: saturate(0.95);
}

.bb-gallery-link-card:hover .bb-gallery-link-media img,
.bb-gallery-link-card:focus-visible .bb-gallery-link-media img {
  transform: scale(1.1);
}

.bb-gallery-link-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(30, 16, 40, 0.78) 0%, rgba(46, 26, 61, 0.42) 48%, rgba(46, 26, 61, 0.18) 100%),
    linear-gradient(180deg, transparent 35%, rgba(20, 10, 28, 0.45) 100%);
  pointer-events: none;
}

.bb-gallery-link-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  align-self: end;
  padding: 2.25rem 2rem 2.35rem;
  max-width: 28rem;
}

.bb-gallery-link-copy .bb-kicker {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.55rem;
}

.bb-gallery-link-copy h2 {
  margin: 0;
  color: var(--bb-white);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
}

.bb-gallery-link-copy p {
  margin: 0.75rem 0 1.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.6;
}

.bb-gallery-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bb-gallery-link-cta span[aria-hidden="true"] {
  display: inline-block;
  transition: transform 0.45s var(--bb-ease);
}

.bb-gallery-link-card:hover .bb-gallery-link-cta span[aria-hidden="true"],
.bb-gallery-link-card:focus-visible .bb-gallery-link-cta span[aria-hidden="true"] {
  transform: translateX(0.35rem);
}

/* Lightbox */
body.bb-lightbox-open {
  overflow: hidden;
}

.bb-lightbox[hidden] {
  display: none !important;
}

.bb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
}

.bb-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 10, 24, 0.88);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.bb-lightbox-shell {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(94vw, 1100px);
  height: min(86vh, 860px);
  height: min(86dvh, 860px);
  max-height: calc(100vh - 2.5rem);
  max-height: calc(100dvh - 2.5rem);
  padding: 0.35rem 0 0.15rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.35rem 0.65rem;
}

.bb-lightbox-figure {
  margin: 0;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  min-height: 0;
  height: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bb-lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0.65rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: scale(0.985) translateY(8px);
  transition: opacity 0.35s var(--bb-ease), transform 0.45s var(--bb-ease);
}

.bb-lightbox-figure img.is-in {
  opacity: 1;
  transform: none;
}

.bb-lightbox-nav,
.bb-lightbox-close {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--bb-white);
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s var(--bb-ease), transform 0.3s var(--bb-ease);
}

.bb-lightbox-nav:hover,
.bb-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.05);
}

.bb-lightbox-prev {
  grid-column: 1;
  grid-row: 1;
}

.bb-lightbox-next {
  grid-column: 3;
  grid-row: 1;
}

.bb-lightbox-close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  z-index: 2;
  font-size: 1.85rem;
}

.bb-lightbox-counter {
  grid-column: 1 / -1;
  grid-row: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0 0.15rem;
  flex-shrink: 0;
  line-height: 1.2;
}

/* Home paths — cinematic expanding panels (container / 12-col width) */
.bb-paths {
  padding: 3rem 0 4.5rem;
}

.bb-paths-stage {
  --bb-path-ease: cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  gap: 0.65rem;
  width: 100%;
  height: min(68vh, 560px);
}

.bb-path {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: block;
  overflow: hidden;
  border-radius: 1.35rem;
  color: var(--bb-white);
  text-decoration: none;
  isolation: isolate;
  transition: flex 0.85s var(--bb-path-ease);
}

.bb-path-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bb-path-media img {
  width: 112%;
  height: 112%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.05);
  transform: translate3d(var(--bb-path-x, 0), var(--bb-path-y, 0), 0) scale(1.08);
  transition:
    transform 0.9s var(--bb-path-ease),
    filter 0.85s var(--bb-path-ease);
  will-change: transform;
}

.bb-path-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(46, 26, 61, 0.08) 10%, rgba(46, 26, 61, 0.35) 48%, rgba(46, 26, 61, 0.88) 100%);
  transition: background 0.7s var(--bb-path-ease), opacity 0.7s var(--bb-path-ease);
}

.bb-path-index {
  position: absolute;
  top: 1.15rem;
  left: 1.2rem;
  z-index: 2;
  font-family: var(--bb-font-display);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.5s var(--bb-path-ease), transform 0.7s var(--bb-path-ease);
}

.bb-path-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.6rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  overflow: hidden;
  max-width: 100%;
}

.bb-path-title {
  font-family: var(--bb-font-display);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--bb-white);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: clip;
  transform: translateY(0);
  transition: opacity 0.45s var(--bb-path-ease), transform 0.55s var(--bb-path-ease);
}

.bb-path-rule {
  display: block;
  width: 0;
  height: 1px;
  background: var(--bb-champagne);
  transition: width 0.75s var(--bb-path-ease);
  transition-delay: 0.05s;
}

.bb-path-text {
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
  max-width: 24ch;
  opacity: 0;
  transform: translateY(1.1rem);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity 0.55s var(--bb-path-ease),
    transform 0.7s var(--bb-path-ease),
    clip-path 0.7s var(--bb-path-ease);
  transition-delay: 0.08s;
}

.bb-path-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(0.9rem);
  transition: opacity 0.55s var(--bb-path-ease), transform 0.7s var(--bb-path-ease);
  transition-delay: 0.14s;
}

.bb-path-cta svg {
  transition: transform 0.55s var(--bb-path-ease);
}

.bb-paths-stage:hover .bb-path:not(:hover):not(:focus-visible) {
  flex: 0.55 1 0;
}

.bb-paths-stage:hover .bb-path:not(:hover):not(:focus-visible) .bb-path-media img {
  filter: saturate(0.45) brightness(0.78);
}

/* Collapsed panels: fade copy instead of reflowing/wrapping titles */
.bb-paths-stage:hover .bb-path:not(:hover):not(:focus-visible) .bb-path-title,
.bb-paths-stage:hover .bb-path:not(:hover):not(:focus-visible) .bb-path-text,
.bb-paths-stage:hover .bb-path:not(:hover):not(:focus-visible) .bb-path-cta,
.bb-paths-stage:hover .bb-path:not(:hover):not(:focus-visible) .bb-path-rule {
  opacity: 0;
  transform: translateY(0.35rem);
  pointer-events: none;
}

.bb-paths-stage:hover .bb-path:not(:hover):not(:focus-visible) .bb-path-rule {
  width: 0;
}

.bb-path:hover,
.bb-path:focus-visible {
  flex: 2.4 1 0;
  color: var(--bb-white);
  outline: none;
}

.bb-path:hover .bb-path-media img,
.bb-path:focus-visible .bb-path-media img {
  filter: saturate(1.05) contrast(1.02);
  transform: translate3d(var(--bb-path-x, 0), var(--bb-path-y, 0), 0) scale(1.14);
}

.bb-path:hover .bb-path-veil,
.bb-path:focus-visible .bb-path-veil {
  background:
    linear-gradient(180deg, rgba(46, 26, 61, 0.05) 5%, rgba(46, 26, 61, 0.28) 42%, rgba(46, 26, 61, 0.9) 100%);
}

.bb-path:hover .bb-path-index,
.bb-path:focus-visible .bb-path-index {
  color: var(--bb-champagne);
  transform: translateY(-2px);
}

.bb-path:hover .bb-path-title,
.bb-path:focus-visible .bb-path-title {
  opacity: 1;
  transform: translateY(0);
}

.bb-path:hover .bb-path-rule,
.bb-path:focus-visible .bb-path-rule {
  width: 3.25rem;
  opacity: 1;
}

.bb-path:hover .bb-path-text,
.bb-path:focus-visible .bb-path-text,
.bb-path:hover .bb-path-cta,
.bb-path:focus-visible .bb-path-cta {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.bb-path:hover .bb-path-cta svg,
.bb-path:focus-visible .bb-path-cta svg {
  transform: translateX(5px);
}

/* Register modal */
.bb-register-modal .modal-content {
  border: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--bb-ivory);
  box-shadow: 0 28px 70px rgba(46, 26, 61, 0.22);
}

.bb-register-modal .modal-header {
  border-bottom: 1px solid rgba(91, 45, 130, 0.1);
  padding: 1.35rem 1.5rem 1.1rem;
  align-items: flex-start;
}

.bb-register-modal .modal-body {
  padding: 1.15rem 1.5rem 1.6rem;
}

.bb-register-modal-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bb-champagne);
}

.bb-register-modal .modal-title {
  margin: 0;
  font-family: var(--bb-font-display);
  font-size: 1.85rem;
  line-height: 1.1;
  color: var(--bb-purple-900);
}

.bb-register-modal-camp {
  margin: 0.4rem 0 0;
  font-family: var(--bb-font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--bb-purple-700);
}

.bb-register-modal-lead {
  margin: 0 0 1.15rem;
  color: var(--bb-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.bb-register-modal .btn-close {
  margin-top: 0.2rem;
}

/* Forms */
.bb-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bb-purple-900);
  margin-bottom: 0.35rem;
}

.bb-form .form-control,
.bb-form .form-select {
  border-radius: 0.75rem;
  border-color: rgba(91, 45, 130, 0.18);
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.bb-form .form-control:focus,
.bb-form .form-select:focus {
  border-color: var(--bb-purple-400);
  box-shadow: 0 0 0 0.2rem rgba(176, 138, 212, 0.25);
}

.bb-alert {
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
}

.bb-alert-success {
  background: #eef8f0;
  color: #1f5a2e;
  border: 1px solid #c7e6cf;
}

.bb-alert-error {
  background: #fdf1f1;
  color: #7a1f1f;
  border: 1px solid #f0cccc;
}

/* Compact page header (subpages — not a homepage hero) */
.bb-page-hero {
  padding: 2rem 0 1.5rem;
}

.bb-page-hero .bb-kicker {
  margin-bottom: 0.55rem;
}

.bb-page-hero .bb-kicker a {
  color: inherit;
}

.bb-page-hero .bb-kicker a:hover {
  color: var(--bb-purple-700);
}

.bb-page-hero h1,
.bb-page-hero .bb-page-title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  margin: 0 0 0.85rem;
  line-height: 0.98;
}

.bb-page-hero .bb-lead,
.bb-page-hero .bb-page-lead {
  font-family: var(--bb-font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-style: italic;
  color: var(--bb-purple-800);
  margin: 0;
  max-width: none;
  width: 100%;
  line-height: 1.4;
}

.bb-page-hero .bb-meta {
  margin-top: 0.85rem;
  margin-bottom: 0;
}

/* Contact — intro + form */
.bb-contact-page {
  padding-top: 1.5rem;
}

.bb-contact-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.bb-contact-intro {
  padding-top: 0.15rem;
}

.bb-contact-email {
  display: inline-block;
  font-family: var(--bb-font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 600;
  color: var(--bb-purple-900);
  line-height: 1.2;
  margin-bottom: 0.55rem;
  word-break: break-word;
}

.bb-contact-email:hover {
  color: var(--bb-purple-700);
}

.bb-contact-aside {
  margin: 0 0 1.75rem;
  color: var(--bb-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.bb-contact-topics-title {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bb-purple-500);
}

.bb-contact-topics {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bb-contact-topics li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.15rem;
  color: var(--bb-ink);
  font-size: 1.02rem;
  line-height: 1.45;
}

.bb-contact-topics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 0.55rem;
  height: 1px;
  background: var(--bb-champagne);
}

.bb-contact-form {
  padding: 0;
  border: 0;
}

.bb-contact-response {
  margin: 1rem 0 0;
  color: var(--bb-muted);
  font-size: 0.9rem;
}

/* Unsubscribe page */
.bb-unsubscribe-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(91, 45, 130, 0.12);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 14px 40px rgba(46, 26, 61, 0.06);
}

.bb-unsubscribe-email {
  font-family: var(--bb-font-display);
  font-size: 1.35rem;
  color: var(--bb-purple-900);
  word-break: break-all;
  margin: 0 0 1.25rem;
}

@media (max-width: 767.98px) {
  .bb-contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bb-contact-intro {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(91, 45, 130, 0.1);
  }
}

/* About — editorial storytelling (typography-led) */
.bb-about-intro {
  padding: 0.25rem 0 2.25rem;
}

.bb-about-intro-body {
  margin: 0;
  max-width: 68ch;
  font-size: clamp(1.08rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  color: var(--bb-muted);
}

.bb-about-mission {
  padding: 2.75rem 0;
  background: rgba(244, 236, 249, 0.45);
  border-top: 1px solid rgba(91, 45, 130, 0.06);
  border-bottom: 1px solid rgba(91, 45, 130, 0.06);
}

.bb-about-mission-inner {
  display: flex;
  align-items: center;
  gap: 2rem 2.5rem;
}

.bb-about-mission-copy {
  flex: 0 1 auto;
  max-width: 54ch;
}

.bb-about-mission-mark {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  max-width: none;
  height: auto;
  max-height: 42rem;
  object-fit: contain;
  object-position: center;
  opacity: 0.78;
}

.bb-about-mission-text {
  margin: 0 0 1.35rem;
  max-width: 28ch;
  font-family: var(--bb-font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--bb-purple-900);
}

.bb-about-vision {
  margin: 0;
  max-width: 54ch;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--bb-muted);
}

.bb-about-space {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(calc(26rem + 120px), calc(48vh + 120px));
  padding: clamp(7rem, calc(5.5vw + 60px), 8.25rem) 0;
  color: var(--bb-white);
}

.bb-about-space-media {
  position: absolute;
  inset: 0;
  background:
    var(--bb-about-space-bg, none) center 30%/cover no-repeat;
  transform: scale(1.04);
  transform-origin: center 20%;
}

.bb-about-space-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    92deg,
    rgba(46, 26, 61, 0.88) 0%,
    rgba(46, 26, 61, 0.72) 42%,
    rgba(61, 36, 84, 0.42) 72%,
    rgba(46, 26, 61, 0.28) 100%
  );
}

.bb-about-space-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 19rem) minmax(0, 19rem);
  justify-content: start;
  column-gap: 1.5rem;
  row-gap: 0.85rem;
  align-items: start;
  text-align: left;
}

.bb-about-space .bb-kicker {
  grid-column: 1 / -1;
  color: var(--bb-champagne);
}

.bb-about-space-lead {
  margin: 0;
  max-width: none;
  font-family: var(--bb-font-display);
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.32;
  color: var(--bb-white);
}

.bb-about-space .bb-about-body {
  margin: 0;
  max-width: none;
  padding-top: 0.15rem;
  border-top: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.bb-about-body-follow {
  margin-top: 1.15rem;
}

.bb-about-benefits {
  padding: clamp(3.25rem, 6vw, 5.25rem) 0;
}

.bb-about-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.65rem 1.75rem;
  margin-top: 0.85rem;
}

.bb-about-benefits-grid h3 {
  font-size: 1.35rem;
  margin: 0 0 0.55rem;
}

.bb-about-benefits-grid p {
  margin: 0;
  color: var(--bb-muted);
  line-height: 1.7;
}

.bb-about-verse {
  position: relative;
  overflow: hidden;
  padding: clamp(4.25rem, 8vw, 6rem) 0;
  text-align: center;
  color: var(--bb-white);
}

.bb-about-verse-media {
  position: absolute;
  inset: 0;
  background:
    var(--bb-about-verse-bg, none) center 38%/cover no-repeat;
  transform: scale(1.04);
}

.bb-about-verse-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(46, 26, 61, 0.78) 0%,
    rgba(61, 36, 84, 0.72) 45%,
    rgba(46, 26, 61, 0.86) 100%
  );
}

.bb-about-verse-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.bb-about-verse .bb-scripture-ref {
  color: var(--bb-champagne);
}

.bb-about-verse-text {
  font-family: var(--bb-font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  font-style: italic;
  font-weight: 400;
  color: var(--bb-white);
  max-width: 20ch;
  margin: 0 auto 1.25rem;
  line-height: 1.3;
  border: 0;
  padding: 0;
}

.bb-about-verse-note {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36ch;
  margin: 0 auto;
  line-height: 1.65;
}

.bb-about-reach {
  padding: 4.5rem 0 5.5rem;
}

.bb-about-reach-pillars {
  margin: 0 0 2.75rem;
  padding-top: 0;
  border-top: 0;
}

.bb-about-reach .bb-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0;
}

@media (max-width: 991.98px) {
  .bb-about-benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 2rem;
  }
}

@media (max-width: 767.98px) {
  .bb-about-benefits-grid {
    grid-template-columns: 1fr;
  }

  .bb-about-mission-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .bb-about-mission-mark {
    flex: none;
    width: min(22rem, 85%);
    max-height: none;
    justify-self: center;
  }

  .bb-about-mission-text {
    max-width: none;
  }
}

/* Footer */
.bb-footer {
  background: var(--bb-purple-900);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 2rem;
  margin-top: 0;
}

.bb-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.bb-footer a:hover {
  color: var(--bb-white);
}

.bb-footer-brand {
  font-family: var(--bb-font-display);
  font-size: 1.5rem;
  color: var(--bb-white);
  margin-bottom: 0.35rem;
}

.bb-footer-tag {
  margin-bottom: 1.25rem;
}

.bb-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-bottom: 1.5rem;
}

.bb-footer-copy {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

.bb-footer-reg {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  opacity: 0.62;
  letter-spacing: 0.01em;
}

/* Admin */
.bb-admin {
  background: var(--bb-ivory);
  min-height: 100vh;
}

.bb-admin-nav {
  background: var(--bb-purple-900);
  color: white;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.bb-admin-nav a {
  color: rgba(255, 255, 255, 0.85);
  margin-right: 1rem;
}

.bb-admin-nav-badge {
  display: inline-block;
  min-width: 1.25rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: #e8c36a;
  color: var(--bb-purple-900);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
}

.bb-migration-status {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.bb-migration-status.is-pending {
  background: #fff4d6;
  color: #7a5a12;
}

.bb-migration-status.is-applied {
  background: #eef8f0;
  color: #1f5a2e;
}

.bb-admin-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s var(--bb-ease);
}

.bb-admin-card:hover {
  color: inherit;
  transform: translateY(-2px);
}

.bb-admin-card:hover .bb-panel {
  box-shadow: 0 10px 28px rgba(46, 26, 61, 0.1);
  border-color: rgba(91, 45, 130, 0.2);
}

.bb-admin-modal .modal-content {
  border: 0;
  border-radius: 1rem;
  background: var(--bb-ivory);
  box-shadow: 0 24px 60px rgba(46, 26, 61, 0.2);
}

.bb-admin-modal .modal-header,
.bb-admin-modal .modal-footer {
  border-color: rgba(91, 45, 130, 0.1);
}

.bb-admin-modal .modal-body {
  max-height: min(70vh, 640px);
}

.bb-admin-image-preview img {
  display: block;
  max-width: 280px;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid rgba(91, 45, 130, 0.12);
}

.bb-admin-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.bb-admin-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  appearance: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.bb-admin-action svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.bb-admin-action-edit {
  background: rgba(91, 45, 130, 0.08);
  border-color: rgba(91, 45, 130, 0.18);
  color: var(--bb-purple-700);
}

.bb-admin-action-edit:hover {
  background: rgba(91, 45, 130, 0.14);
  border-color: rgba(91, 45, 130, 0.28);
  color: var(--bb-purple-900);
  box-shadow: 0 4px 12px rgba(91, 45, 130, 0.12);
}

.bb-admin-copy-form {
  display: inline;
  margin: 0;
}

.bb-admin-action-copy {
  background: rgba(46, 111, 126, 0.08);
  border-color: rgba(46, 111, 126, 0.18);
  color: #2e6f7e;
}

.bb-admin-action-copy:hover {
  background: rgba(46, 111, 126, 0.14);
  border-color: rgba(46, 111, 126, 0.28);
  color: #245864;
  box-shadow: 0 4px 12px rgba(46, 111, 126, 0.12);
}

.bb-admin-action-delete {
  background: rgba(163, 51, 51, 0.06);
  border-color: rgba(163, 51, 51, 0.16);
  color: #a33333;
}

.bb-admin-action-delete:hover {
  background: rgba(163, 51, 51, 0.12);
  border-color: rgba(163, 51, 51, 0.28);
  color: #822626;
  box-shadow: 0 4px 12px rgba(163, 51, 51, 0.12);
}

.bb-table {
  width: 100%;
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
}

.bb-table th,
.bb-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
  vertical-align: top;
}

.bb-table th {
  background: var(--bb-purple-100);
  color: var(--bb-purple-900);
  font-size: 0.85rem;
}

.bb-admin-metric-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.bb-admin-metric {
  font-size: 2rem;
  font-family: var(--bb-font-display);
  color: var(--bb-purple-900);
  line-height: 1.1;
  margin: 0.15rem 0 0.25rem;
}

.bb-admin-chart-wrap {
  position: relative;
  padding-top: 3.35rem;
}

.bb-admin-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  height: 96px;
}

.bb-admin-chart-col {
  flex: 1 1 0;
  display: flex;
  align-items: flex-end;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.bb-admin-chart-col:hover .bb-admin-chart-bar,
.bb-admin-chart-col:focus-visible .bb-admin-chart-bar,
.bb-admin-chart-col.is-active .bb-admin-chart-bar {
  opacity: 1;
  background: var(--bb-purple-700);
}

.bb-admin-chart-col:focus-visible {
  outline: 2px solid var(--bb-purple-500);
  outline-offset: 1px;
}

.bb-admin-chart-bar {
  display: block;
  width: 100%;
  border-radius: 0.2rem 0.2rem 0 0;
  background: var(--bb-purple-900);
  opacity: 0.78;
  pointer-events: none;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.bb-admin-chart-tip {
  position: absolute;
  z-index: 5;
  min-width: 7.5rem;
  padding: 0.45rem 0.7rem;
  border-radius: 0.7rem;
  background: var(--bb-purple-900);
  color: #fff;
  box-shadow: 0 10px 24px rgba(46, 26, 61, 0.22);
  pointer-events: none;
  transform: translate(-50%, -100%);
  white-space: nowrap;
}

.bb-admin-chart-tip strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.bb-admin-chart-tip span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
}

.bb-admin-chart-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

/* Admin: newsletters */
.bb-admin .bb-btn:disabled:not(.is-loading) {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.bb-admin .bb-btn.is-loading {
  opacity: 0.92;
  cursor: wait;
}

.bb-admin-action-send {
  background: rgba(31, 90, 46, 0.08);
  border-color: rgba(31, 90, 46, 0.2);
  color: #1f5a2e;
}

.bb-admin-action-send:hover {
  background: rgba(31, 90, 46, 0.14);
  border-color: rgba(31, 90, 46, 0.32);
  color: #17452a;
  box-shadow: 0 4px 12px rgba(31, 90, 46, 0.12);
}

.bb-admin-action:disabled:not(.is-loading) {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

a.bb-admin-action {
  text-decoration: none;
}

.bb-nl-status {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: #eeeaf2;
  color: #5c5264;
  vertical-align: middle;
}

.bb-nl-status.is-draft {
  background: #eeeaf2;
  color: #5c5264;
}

.bb-nl-status.is-sending {
  background: #e3f0fb;
  color: #1d4f7a;
}

.bb-nl-status.is-paused,
.bb-nl-status.is-failed {
  background: #fff4d6;
  color: #7a5a12;
}

.bb-nl-status.is-failed {
  background: #fdf1f1;
  color: #7a1f1f;
}

.bb-nl-status.is-sent {
  background: #eef8f0;
  color: #1f5a2e;
}

.bb-nl-progress {
  height: 8px;
  background: rgba(91, 45, 130, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.bb-nl-progress-bar {
  height: 100%;
  background: var(--bb-purple-700);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.bb-nl-refs td {
  padding: 0.5rem 0.75rem;
}

.bb-nl-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
}

.bb-nl-image {
  border: 1px solid rgba(91, 45, 130, 0.14);
  border-radius: 0.6rem;
  padding: 0.5rem;
  background: #fff;
}

.bb-nl-image.is-unused {
  border-style: dashed;
  opacity: 0.8;
}

.bb-nl-image img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  background: #f4f0f7;
  border-radius: 0.4rem;
  display: block;
}

.bb-nl-image-meta {
  font-size: 0.78rem;
  margin-top: 0.4rem;
}

.bb-nl-preview-wrap {
  background: #eeeaf2;
  border-radius: 0.6rem;
  padding: 0.75rem;
  text-align: center;
}

.bb-nl-preview {
  width: 100%;
  max-width: 100%;
  height: 820px;
  border: 0;
  background: #fff;
  border-radius: 0.4rem;
  transition: width 0.3s ease;
}

/* Reveal on scroll */
.bb-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--bb-ease), transform 0.7s var(--bb-ease);
}

.bb-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 991.98px) {
  .bb-nav-toggle {
    display: flex;
  }

  .bb-nav {
    display: none;
    position: absolute;
    top: var(--bb-header-h);
    left: 0;
    right: 0;
    background: rgba(250, 247, 244, 0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(91, 45, 130, 0.1);
    gap: 1rem;
  }

  .bb-nav.is-open {
    display: flex;
  }

  .bb-header {
    --bb-header-h: 5.85rem;
  }

  .bb-header-inner {
    min-height: 5.85rem;
  }

  .bb-header.is-compact {
    --bb-header-h: 4.25rem;
  }

  .bb-header.is-compact .bb-header-inner {
    min-height: 4.25rem;
  }

  .bb-brand-marks {
    height: 3.95rem;
    width: 4.66rem;
  }

  .bb-header.is-compact .bb-brand-marks {
    height: 2.15rem;
    width: 2.85rem;
  }

  .bb-brand-name {
    font-size: 1.2rem;
  }

  .bb-camp-feature {
    grid-template-columns: 1fr;
  }

  .bb-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .bb-gallery-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bb-gallery-teaser-thumb:nth-child(1),
  .bb-gallery-teaser-thumb:nth-child(6) {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }

  .bb-gallery-link-card {
    grid-template-columns: 1fr;
    min-height: 340px;
  }

  .bb-gallery-link-copy {
    padding: 1.75rem 1.4rem 1.85rem;
  }

  .bb-lightbox-shell {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    padding: 3.25rem 0.5rem 1rem;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .bb-lightbox-figure {
    grid-column: 1;
    grid-row: 1;
  }

  .bb-lightbox-figure img {
    max-height: 100%;
    border-radius: 0;
  }

  .bb-lightbox-prev,
  .bb-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    grid-column: auto;
    grid-row: auto;
  }

  .bb-lightbox-prev {
    left: 0.5rem;
  }

  .bb-lightbox-next {
    right: 0.5rem;
  }

  .bb-lightbox-counter {
    grid-column: 1;
    padding-bottom: 0.35rem;
  }

  .bb-lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .bb-paths {
    padding: 2.25rem 0 3rem;
  }

  .bb-paths-stage {
    flex-direction: column;
    height: auto;
    gap: 0.75rem;
  }

  .bb-path,
  .bb-paths-stage:hover .bb-path:not(:hover):not(:focus-visible),
  .bb-path:hover,
  .bb-path:focus-visible {
    flex: none;
    width: 100%;
    min-height: 210px;
  }

  .bb-path-title,
  .bb-path-text,
  .bb-path-cta {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .bb-path-title {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .bb-path-text {
    max-width: none;
  }

  .bb-path-rule {
    width: 2.5rem;
  }

  .bb-path-media img {
    filter: none;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .bb-path-copy {
    padding: 1.25rem 1.15rem 1.2rem;
  }

}

@media (max-width: 575.98px) {
  .bb-header {
    --bb-header-h: 5.35rem;
  }

  .bb-header-inner {
    min-height: 5.35rem;
  }

  .bb-header.is-compact {
    --bb-header-h: 4.15rem;
  }

  .bb-header.is-compact .bb-header-inner {
    min-height: 4.15rem;
  }

  .bb-header-inner {
    gap: 0.65rem;
  }

  .bb-brand {
    gap: 0.5rem;
  }

  .bb-brand-marks {
    height: 3.35rem;
    width: 3.95rem;
  }

  .bb-header.is-compact .bb-brand-marks {
    height: 2rem;
    width: 2.66rem;
  }

  .bb-brand-name {
    font-size: 1.05rem;
  }

  .bb-gallery {
    grid-template-columns: 1fr;
  }

  .bb-paths {
    padding: 1.75rem 0 2.5rem;
  }

  .bb-path {
    min-height: 190px;
    border-radius: 1.1rem;
  }

  .bb-path-title {
    font-size: 1.55rem;
    max-width: none;
    white-space: normal;
  }

  .bb-brand-name {
    white-space: normal;
    line-height: 1.15;
  }

  .bb-hero-brand,
  .bb-hero-headline,
  .bb-hero-lead {
    max-width: none;
  }

  .bb-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .bb-hero-actions .bb-btn {
    width: 100%;
  }

  .bb-btn {
    width: 100%;
    max-width: 100%;
    min-height: 3rem;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
  }

  .bb-about-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .bb-page-hero h1,
  .bb-page-hero .bb-page-title {
    font-size: clamp(2.15rem, 11vw, 2.85rem);
    line-height: 1.12;
  }

  .bb-panel {
    padding: 1.25rem;
  }

  .bb-newsletter-row .form-control {
    min-height: 3rem;
    height: 3rem;
  }

  .bb-story-lead::first-letter {
    font-size: 2.35em;
    line-height: 0.9;
  }
}

@media (max-width: 991.98px) {
  .container,
  .container-fluid {
    --bs-gutter-x: 2.7rem;
  }

  .bb-nav {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .bb-lang {
    margin-left: 0;
  }

  .bb-nav a {
    padding: 0.45rem 0;
    font-size: 1.05rem;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
  }

  .bb-lang-btn {
    min-height: 2.5rem;
    padding: 0.45rem 0.95rem;
  }

  h1, h2, h3,
  .bb-lead,
  .bb-camp-hero-title,
  .bb-camp-hero-lead,
  .bb-camp-section-title,
  .bb-camp-split-copy h2,
  .bb-camp-fact-value,
  .bb-contact-email,
  .bb-footer-copy,
  .bb-footer-reg {
    overflow-wrap: break-word;
  }

  .bb-page-hero .bb-lead,
  .bb-page-hero .bb-page-lead {
    max-width: none;
  }

  .bb-camp-section-title {
    line-height: 1.12;
  }

  .bb-camp-gallery-break {
    width: auto;
    margin-left: 1.35rem;
    margin-right: 1.35rem;
  }

  .bb-about-space-inner {
    display: block;
  }

  .bb-about-space-lead,
  .bb-about-space .bb-about-body,
  .bb-about-mission-text {
    max-width: none;
  }

  .bb-about-space-lead {
    margin: 0 0 1.15rem;
  }

  .bb-about-space .bb-about-body {
    padding-top: 1.1rem;
    border-top: 1px solid rgba(201, 169, 110, 0.38);
  }

  .bb-register-modal .modal-dialog {
    margin: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }

  .bb-register-modal .modal-header,
  .bb-register-modal .modal-body {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .bb-register-modal .modal-title {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .bb-section {
    padding: 3.25rem 0;
  }

  .bb-section-sm {
    padding: 2.5rem 0;
  }

  .bb-hero-content {
    padding: 3rem 0 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .bb-hero-photo {
    animation: none !important;
    inset: 0;
    transform: none !important;
  }

  .bb-hero-canvas {
    display: none;
  }

  .bb-path,
  .bb-path-media img,
  .bb-path-title,
  .bb-path-text,
  .bb-path-cta,
  .bb-path-rule,
  .bb-path-veil,
  .bb-path-index {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    clip-path: none !important;
    filter: none !important;
    flex: 1 1 0 !important;
  }

  .bb-path-rule {
    width: 2.5rem !important;
  }

  .bb-reveal {
    opacity: 1;
    transform: none;
  }

  .bb-mosaic-frame img,
  .bb-gallery-link-media img,
  .bb-lightbox-figure img,
  .bb-mosaic-item {
    transform: none !important;
    transition: none !important;
    opacity: 1 !important;
  }
}
