/* ============================================================
   Bright Companion — Editorial Home Page
   Used by front-page.php only. Loaded on the static front page.
   Plain CSS so we don't need a Tailwind rebuild to iterate.
   ============================================================ */

:root {
  --bc-fp-radius:    14px;
  --bc-fp-radius-lg: 22px;
  --bc-fp-shadow:    0 12px 32px -16px rgba(15, 42, 71, 0.18);
  --bc-fp-shadow-lg: 0 28px 60px -28px rgba(15, 42, 71, 0.28);
  --bc-fp-edge:      rgba(15, 42, 71, 0.08);
}

.bc-home main { background: var(--bc-white, #fff); }

/* ---------- Reusable bits ---------- */

.bc-front-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 1.25rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bc-teal-dark, #0E7C8B);
}
.bc-front-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  flex: 0 0 auto;
}
.bc-front-eyebrow--light { color: rgba(255, 255, 255, 0.78); }

.bc-front-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--bc-navy, #0F2A47);
  margin: 0 0 1rem;
}
.bc-front-h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--bc-teal-dark, #0E7C8B);
}

.bc-front-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--bc-charcoal, #1A1A1A);
  max-width: 38ch;
}

.bc-front-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  color: var(--bc-navy, #0F2A47);
  text-decoration: none;
  border-bottom: 2px solid var(--bc-sun, #F4A93C);
  padding-bottom: 2px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.bc-front-link svg { transition: transform 0.2s ease; }
.bc-front-link:hover { gap: 1rem; color: var(--bc-teal-dark, #0E7C8B); }
.bc-front-link:hover svg { transform: translateX(4px); }

.bc-front-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 52px;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
}
.bc-front-btn svg { flex: 0 0 auto; }

.bc-front-btn--primary {
  background: var(--bc-navy, #0F2A47);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(15, 42, 71, 0.55);
}
.bc-front-btn--primary:hover {
  background: #1B3D63;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px -14px rgba(15, 42, 71, 0.6);
}

.bc-front-btn--ghost {
  background: transparent;
  color: var(--bc-navy, #0F2A47);
  border-color: var(--bc-fp-edge);
}
.bc-front-btn--ghost:hover {
  border-color: var(--bc-navy, #0F2A47);
  background: rgba(15, 42, 71, 0.04);
  color: var(--bc-navy, #0F2A47);
}

.bc-front-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.bc-front-btn--outline-light:hover {
  background: #fff;
  color: var(--bc-navy, #0F2A47);
}

.bc-front-section-head { max-width: 44rem; margin: 0 0 3rem; }
.bc-front-section-head--center { margin-inline: auto; text-align: center; }
.bc-front-section-head--center .bc-front-eyebrow { justify-content: center; }
.bc-front-section-head__sub {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--bc-grey, #5C6470);
}

/* ============================================================
   HERO — fullscreen slider
   Multiple slides cross-fade. Arrows on the sides, dots at the
   bottom, optional autoplay, keyboard left/right.
   ============================================================ */

.bc-front-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  max-height: 900px;
  color: #fff;
  background: var(--bc-navy, #0F2A47);
}
@supports ( height: 100svh ) {
  .bc-front-hero { height: 100svh; }
}

/* Track + slides */
.bc-front-hero__track {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bc-front-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 0s linear 1.1s;
}
.bc-front-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.1s ease, visibility 0s linear 0s;
}

.bc-front-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.bc-front-hero__slide.is-active .bc-front-hero__bg { transform: scale(1); }

.bc-front-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient( 95deg, rgba(15,42,71,0.82) 0%, rgba(15,42,71,0.55) 45%, rgba(15,42,71,0.28) 100% ),
    linear-gradient( 180deg, rgba(15,42,71,0)   55%, rgba(15,42,71,0.55) 100% );
}

/* Slide content */
.bc-front-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 5rem 0 7rem;
}
@media (min-width: 1024px) {
  .bc-front-hero__content { padding: 4rem 0 6rem; }
}

.bc-front-hero__text { max-width: 42rem; }

.bc-front-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 1.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 213, 107, 0.95);
}
.bc-front-hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  flex: 0 0 auto;
}

.bc-front-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff !important;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.bc-front-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--bc-sun-light, #FFD56B);
}

.bc-front-hero__sub {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem;
  max-width: 36rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.18);
}
@media (min-width: 1024px) {
  .bc-front-hero__sub { font-size: 1.1875rem; }
}

.bc-front-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin: 0 0 1rem;
}
.bc-front-hero__cta .bc-front-btn--primary {
  background: var(--bc-sun, #F4A93C);
  color: #1B3D63; /* lighter than --bc-navy (#0F2A47); ~5.4:1 on sun-yellow, still AA */
  box-shadow: 0 18px 36px -16px rgba(244, 169, 60, 0.6);
}
.bc-front-hero__cta .bc-front-btn--primary:hover {
  background: #ffba50;
  color: #1B3D63;
}
.bc-front-hero__cta .bc-front-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.bc-front-hero__cta .bc-front-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

/* Arrows */
.bc-front-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.bc-front-hero__nav:hover,
.bc-front-hero__nav:focus-visible {
  background: rgba(255, 255, 255, 0.95);
  color: var(--bc-navy, #0F2A47);
  border-color: #fff;
  outline: none;
}
.bc-front-hero__nav--prev { left: 12px; }
.bc-front-hero__nav--next { right: 12px; }
@media (min-width: 768px) {
  .bc-front-hero__nav { width: 56px; height: 56px; }
  .bc-front-hero__nav--prev { left: 28px; }
  .bc-front-hero__nav--next { right: 28px; }
}
@media (min-width: 1280px) {
  .bc-front-hero__nav--prev { left: 44px; }
  .bc-front-hero__nav--next { right: 44px; }
}

/* Bottom controls (dots + counter) */
.bc-front-hero__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none; /* let only inner items capture */
}
.bc-front-hero__controls > * { pointer-events: auto; }

.bc-front-hero__count {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}
.bc-front-hero__count strong {
  color: #fff;
  font-weight: 600;
  margin-right: 0.25rem;
}

.bc-front-hero__dots {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 42, 71, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  backdrop-filter: blur(6px);
}

.bc-front-hero__dot {
  appearance: none;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, width 0.3s ease;
}
.bc-front-hero__dot:hover { background: rgba(255, 255, 255, 0.7); }
.bc-front-hero__dot.is-active {
  background: var(--bc-sun, #F4A93C);
  width: 22px;
}
.bc-front-hero__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.bc-front-hero__autoplay {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(15, 42, 71, 0.35);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease;
}
.bc-front-hero__autoplay:hover { background: rgba(15, 42, 71, 0.6); }
.bc-front-hero__autoplay .bc-front-hero__autoplay-pause { display: inline-flex; }
.bc-front-hero__autoplay .bc-front-hero__autoplay-play  { display: none; }
.bc-front-hero__autoplay.is-paused .bc-front-hero__autoplay-pause { display: none; }
.bc-front-hero__autoplay.is-paused .bc-front-hero__autoplay-play  { display: inline-flex; }

.bc-front-hero__inner-controls {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.bc-front-hero__inner-controls > :first-child { justify-self: start; }
.bc-front-hero__inner-controls > :last-child  { justify-self: end; }

@media (max-width: 640px) {
  .bc-front-hero__count    { display: none; }
  .bc-front-hero__autoplay { display: none; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bc-front-hero__slide        { transition: opacity 0.001s linear; }
  .bc-front-hero__bg           { transform: none !important; transition: none !important; }
}

/* ============================================================
   BADGE STRIP
   ============================================================ */

.bc-front-badges {
  background: #fff;
  border-top: 1px solid var(--bc-fp-edge);
  border-bottom: 1px solid var(--bc-fp-edge);
  padding: 1.5rem 0;
}
.bc-front-badges__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .bc-front-badges__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.bc-front-badges__label {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bc-grey, #5C6470);
}
.bc-front-badges__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.bc-front-badges__list img {
  height: 56px;
  width: auto;
  display: block;
  opacity: 0.95;
}

/* ============================================================
   INTRO BAND
   ============================================================ */

.bc-front-intro { padding: 4.5rem 0; background: #fff; }
@media (min-width: 1024px) { .bc-front-intro { padding: 7rem 0; } }

.bc-front-intro__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .bc-front-intro__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 5rem;
  }
}

.bc-front-intro__media {
  position: relative;
  margin: 0;
}
.bc-front-intro__media::before {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1.5px solid var(--bc-teal-dark, #0E7C8B);
  border-radius: var(--bc-fp-radius-lg);
  z-index: 0;
  opacity: 0.45;
}
.bc-front-intro__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--bc-fp-radius-lg);
  box-shadow: var(--bc-fp-shadow-lg);
  display: block;
}
.bc-front-intro__quote {
  position: absolute;
  z-index: 2;
  right: -22px;
  bottom: 28px;
  max-width: 220px;
  padding: 1rem 1.125rem;
  background: var(--bc-sun, #F4A93C);
  color: var(--bc-navy, #0F2A47);
  border-radius: 14px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.4;
  box-shadow: var(--bc-fp-shadow);
}

.bc-front-intro__text p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--bc-charcoal, #1A1A1A);
  margin: 0 0 1.25rem;
}
.bc-front-intro__text .bc-front-link { margin-top: 0.5rem; }

/* ============================================================
   SERVICES GRID
   ============================================================ */

.bc-front-services {
  position: relative;
  padding: 5rem 0;
  background: var(--bc-cream, #FFF8EE);
}
@media (min-width: 1024px) { .bc-front-services { padding: 7rem 0; } }

/* Scroller wrapper, arrows, and dot pagination */
.bc-front-services__scroller {
  position: relative;
}

.bc-front-service-grid {
  list-style: none;
  padding: 0.5rem 0.25rem 2rem;
  margin: 0;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-left: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bc-front-service-grid::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) { .bc-front-service-grid { gap: 1.5rem; } }

.bc-front-service-grid > .bc-front-service-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: calc(100% - 2.5rem);
  max-width: 360px;
}
@media (min-width: 640px) {
  .bc-front-service-grid > .bc-front-service-card { width: calc(50% - 0.5rem); max-width: none; }
}
@media (min-width: 1024px) {
  .bc-front-service-grid > .bc-front-service-card { width: calc(33.333% - 1rem); }
}

/* Side arrows */
.bc-front-services__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--bc-fp-edge);
  color: var(--bc-navy, #0F2A47);
  cursor: pointer;
  box-shadow: var(--bc-fp-shadow-lg);
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.bc-front-services__nav:hover,
.bc-front-services__nav:focus-visible {
  background: var(--bc-navy, #0F2A47);
  color: #fff;
  border-color: var(--bc-navy, #0F2A47);
  outline: none;
}
.bc-front-services__nav[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.bc-front-services__nav--prev { left: -8px; }
.bc-front-services__nav--next { right: -8px; }
@media (min-width: 768px) {
  .bc-front-services__nav { width: 56px; height: 56px; }
  .bc-front-services__nav--prev { left: -20px; }
  .bc-front-services__nav--next { right: -20px; }
}

/* Bottom dot pagination */
.bc-front-services__dots {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.bc-front-services__dot {
  appearance: none;
  border: none;
  background: rgba(15, 42, 71, 0.18);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, width 0.3s ease;
}
.bc-front-services__dot:hover { background: rgba(15, 42, 71, 0.4); }
.bc-front-services__dot.is-active {
  background: var(--bc-navy, #0F2A47);
  width: 22px;
}
.bc-front-services__dot:focus-visible {
  outline: 2px solid var(--bc-teal, #2BB5C4);
  outline-offset: 3px;
}

.bc-front-service-card {
  background: #fff;
  border-radius: var(--bc-fp-radius);
  border: 1px solid var(--bc-fp-edge);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.bc-front-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bc-fp-shadow-lg);
  border-color: rgba(15, 42, 71, 0.14);
}
.bc-front-service-card a {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.bc-front-service-card figure {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bc-line, #E5E7EB);
}
.bc-front-service-card figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.bc-front-service-card:hover figure img { transform: scale(1.04); }
.bc-front-service-card__num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 42, 71, 0.85);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.bc-front-service-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bc-front-service-card__title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--bc-navy, #0F2A47);
}
.bc-front-service-card__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--bc-grey, #5C6470);
}
.bc-front-service-card__arrow {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bc-teal-dark, #0E7C8B);
  transition: gap 0.2s ease;
}
.bc-front-service-card:hover .bc-front-service-card__arrow { gap: 0.875rem; }

.bc-front-services__cta {
  text-align: center;
  margin: 3rem 0 0;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */

.bc-front-process {
  padding: 5rem 0;
  background: #fff;
}
@media (min-width: 1024px) { .bc-front-process { padding: 7rem 0; } }

.bc-front-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  counter-reset: bc-step;
}
@media (min-width: 768px) { .bc-front-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bc-front-steps { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.bc-front-steps li {
  position: relative;
  padding: 2rem 1.5rem 1.75rem;
  background: var(--bc-cream, #FFF8EE);
  border-radius: var(--bc-fp-radius);
  border: 1px solid var(--bc-fp-edge);
}
.bc-front-steps li::before {
  counter-increment: bc-step;
  content: "0" counter(bc-step);
  position: absolute;
  top: -18px;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bc-navy, #0F2A47);
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: var(--bc-fp-shadow);
}
.bc-front-steps li:nth-child(2)::before { background: var(--bc-teal-dark, #0E7C8B); }
.bc-front-steps li:nth-child(3)::before { background: var(--bc-sun, #F4A93C); color: var(--bc-navy, #0F2A47); }
.bc-front-steps li:nth-child(4)::before { background: var(--bc-navy, #0F2A47); }

.bc-front-steps h3 {
  margin: 0.5rem 0 0.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bc-navy, #0F2A47);
}
.bc-front-steps p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--bc-charcoal, #1A1A1A);
}

/* ============================================================
   AUDIENCE BAND
   ============================================================ */

.bc-front-audience {
  padding: 5rem 0;
  background: var(--bc-cream, #FFF8EE);
}
@media (min-width: 1024px) { .bc-front-audience { padding: 7rem 0; } }

.bc-front-audience__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .bc-front-audience__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 5rem;
  }
}

.bc-front-audience__text p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--bc-charcoal, #1A1A1A);
  margin: 0 0 1.25rem;
}

.bc-front-audience__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.bc-front-audience__tags li {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.875rem;
  background: #fff;
  border: 1px solid var(--bc-fp-edge);
  border-radius: 999px;
  font-size: 0.9375rem;
  color: var(--bc-navy, #0F2A47);
  font-weight: 500;
}

.bc-front-audience__media {
  position: relative;
  margin: 0;
  order: -1;
}
@media (min-width: 1024px) { .bc-front-audience__media { order: 0; } }
.bc-front-audience__media::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border-radius: var(--bc-fp-radius-lg);
  background: var(--bc-teal, #2BB5C4);
  opacity: 0.6;
  z-index: 0;
}
.bc-front-audience__media img {
  position: relative;
  z-index: 1;
  width: 100%; height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--bc-fp-radius-lg);
  box-shadow: var(--bc-fp-shadow-lg);
  display: block;
}

/* ============================================================
   VALUES
   ============================================================ */

.bc-front-values { padding: 5rem 0; background: #fff; }
@media (min-width: 1024px) { .bc-front-values { padding: 7rem 0; } }

.bc-front-values__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  counter-reset: bc-value;
}
@media (min-width: 640px) { .bc-front-values__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bc-front-values__list { grid-template-columns: repeat(4, 1fr); } }

.bc-front-values__list li {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--bc-cream, #FFF8EE);
  border-radius: var(--bc-fp-radius);
  border-top: 3px solid var(--bc-sun, #F4A93C);
}
.bc-front-values__list li:nth-child(2) { border-top-color: var(--bc-teal, #2BB5C4); }
.bc-front-values__list li:nth-child(3) { border-top-color: var(--bc-navy, #0F2A47); }
.bc-front-values__list li:nth-child(4) { border-top-color: var(--bc-sun-light, #FFD56B); }

.bc-front-values__list li::before {
  counter-increment: bc-value;
  content: "0" counter(bc-value);
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bc-teal-dark, #0E7C8B);
  margin-bottom: 1rem;
}
.bc-front-values__list h3 {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bc-navy, #0F2A47);
}
.bc-front-values__list p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--bc-charcoal, #1A1A1A);
}

/* ============================================================
   FINAL CTA BAND
   ============================================================ */

.bc-front-cta {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 169, 60, 0.22), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(43, 181, 196, 0.20), transparent 55%),
    var(--bc-navy, #0F2A47);
  color: #fff;
}
@media (min-width: 1024px) { .bc-front-cta { padding: 7rem 0; } }

.bc-front-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}
.bc-front-cta__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw + 0.5rem, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #fff !important;
  margin: 0 0 1.25rem;
}
.bc-front-cta__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--bc-sun-light, #FFD56B);
}
.bc-front-cta__inner > p {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.bc-front-cta__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

/* ============================================================
   Subtle scroll reveal — progressive enhancement.
   Only hides when both JS and motion are available. Without JS,
   content stays visible (no class added to <html>), so the page
   is fully usable even if the inline reveal script fails.
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
  html.bc-js .bc-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  html.bc-js .bc-reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Utility: text-balance fallback
   ============================================================ */

.text-balance { text-wrap: balance; }
