/* superseded by fb-prototype.css; small page-specific overrides only */

/* ------------------------------------------------------------------ */
/* Intro section — Chalk surface, centered, used on Reviews + Gallery */
/* ------------------------------------------------------------------ */
.fb-intro {
  background: var(--surface-primary);
  padding: 120px 0 64px;
}
.fb-intro__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.fb-intro__lede {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: var(--fb-black);
  margin: 0;
}
@media (max-width: 900px) {
  .fb-intro { padding: 64px 0 32px; }
  .fb-intro__lede { font-size: 15px; }
}

/* ------------------------------------------------------------------ */
/* Embed-section wrapper — Chalk surface, holds Phase 10 embed slots  */
/* ------------------------------------------------------------------ */
.fb-embed-section {
  background: var(--surface-primary);
  padding: 32px 0 160px;
}
.fb-embed-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .fb-embed-section { padding: 16px 0 80px; }
}

/* ------------------------------------------------------------------ */
/* Embed slot scaffold — reserves height to avoid CLS at Phase 10 swap */
/* ------------------------------------------------------------------ */
.fb-reviews-embed-slot,
.fb-instagram-embed-slot {
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--fb-white);
  border: 1px solid var(--fb-wave-40);
  padding: 2rem 1.25rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .fb-reviews-embed-slot,
  .fb-instagram-embed-slot {
    min-height: 600px;
    padding: 3rem 2rem;
  }
}
.fb-reviews-embed-slot__fallback,
.fb-instagram-embed-slot__fallback {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.fb-reviews-embed-slot__status,
.fb-instagram-embed-slot__status {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fb-ash);
  margin: 0;
}
.fb-reviews-embed-slot__hint,
.fb-instagram-embed-slot__hint {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--fb-black);
  margin: 0;
}
