/* ============================================================
   Bastidores da Sindicatura — Estilos
   ============================================================ */

/* === ROOT === */
.bs-root {
  background: var(--onix);
  width: 1440px;
  overflow: hidden;
  color: var(--offwhite);
  position: relative;
}

/* Textura sutil de papel/grain sobre o onix */
.bs-root::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(247,245,242,0.018) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 0;
}

.bs-root > * { position: relative; z-index: 1; }

.bs-eyebrow-dark { color: var(--graphite) !important; }

/* ============================================================
   TOPBAR
   ============================================================ */
.bs-topbar {
  border-bottom: 1px solid rgba(247, 245, 242, 0.1);
  background: var(--onix);
}
.bs-topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 28px var(--pad-x);
}
.bs-brand {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  letter-spacing: 0.005em;
}
.bs-brand-line1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--offwhite);
}
.bs-brand-line2 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 4px;
}
.bs-brand-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(247, 245, 242, 0.6);
  letter-spacing: 0.02em;
}
.bs-topnav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.bs-topnav a {
  color: rgba(247, 245, 242, 0.65);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.bs-topnav a:hover { color: var(--sand); }
.bs-topnav-cta {
  padding: 10px 18px;
  border: 1px solid var(--sand);
  color: var(--sand) !important;
}
.bs-topnav-cta:hover { background: var(--sand); color: var(--onix) !important; }

/* ============================================================
   HERO
   ============================================================ */
.bs-hero {
  padding: 100px var(--pad-x) 0;
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 80px;
  align-items: start;
  min-height: 920px;
  position: relative;
}

.bs-hero-text { padding-top: 24px; }

.bs-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 64px;
  color: var(--sand);
}
.bs-hero-eyebrow .bs-rule { background: var(--sand); width: 60px; }
.bs-hero-eyebrow .bs-eyebrow { color: var(--sand); }

.bs-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 116px;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 56px;
  color: var(--offwhite);
}
.bs-hero-title span { display: block; }
.bs-hero-l2 { padding-left: 0.02em; }
.bs-hero-l3 {
  padding-left: 0.3em;
  color: rgba(247, 245, 242, 0.85);
}
.bs-hero-l4 {
  padding-left: 0.4em;
  color: var(--sand);
}
.bs-hero-l4 em { font-style: italic; font-weight: 400; }

.bs-hero-lead {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: rgba(247, 245, 242, 0.78);
  max-width: 540px;
  margin: 0 0 48px;
}

.bs-hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bs-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  background: var(--sand);
  color: var(--onix);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s, gap 0.2s;
}
.bs-cta-primary:hover { background: var(--sand-light); gap: 18px; }

.bs-cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 18px 4px;
  color: var(--lavender);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--lavender);
  transition: color 0.2s, border-color 0.2s;
}
.bs-cta-ghost:hover { color: var(--lavender-light); border-color: var(--lavender-light); }

/* Retrato à direita */
.bs-hero-portrait {
  position: relative;
  height: 760px;
}
.bs-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: contrast(1.02) brightness(0.95);
}
.bs-portrait-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(247, 245, 242, 0.25);
  pointer-events: none;
}
.bs-portrait-stamp {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--onix);
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  border-left: 2px solid var(--sand);
}
.bs-stamp-line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--sand);
}
.bs-stamp-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, 0.7);
  margin-top: 8px;
}

/* Faixa de dados */
.bs-hero-strip {
  grid-column: 1 / -1;
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(247, 245, 242, 0.15);
  border-bottom: 1px solid rgba(247, 245, 242, 0.15);
}
.bs-strip-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(247, 245, 242, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bs-strip-item:last-child { border-right: none; }
.bs-strip-k {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, 0.55);
  font-weight: 500;
}
.bs-strip-v {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--offwhite);
}
.bs-strip-v em {
  font-style: italic;
  color: var(--sand);
}

/* ============================================================
   MANIFESTO (off-white)
   ============================================================ */
.bs-manifesto {
  background: var(--offwhite);
  color: var(--onix);
  padding: 160px var(--pad-x) 160px;
  position: relative;
}
.bs-manifesto::before {
  content: 'I';
  position: absolute;
  top: 80px;
  right: var(--pad-x);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--sand-deep);
  letter-spacing: 0.1em;
}
.bs-manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  max-width: 1280px;
  margin: 0 auto;
}
.bs-manifesto-head { padding-top: 20px; }
.bs-manifesto-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 28px 0 0;
  color: var(--onix);
}
.bs-manifesto-title em {
  font-style: italic;
  color: var(--graphite);
  font-weight: 400;
}
.bs-manifesto-body {
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--graphite);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.bs-manifesto-body p { margin: 0; }

/* Manifest pair: o que se vê vs. o que não se vê */
.bs-manifest-pair {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 4px;
}
.bs-manifest-col { display: flex; flex-direction: column; gap: 16px; }
.bs-manifest-k {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26, 28, 41, 0.18);
}
.bs-manifest-col-shadow .bs-manifest-k {
  color: var(--lavender-deep);
  border-bottom-color: var(--lavender-deep);
}
.bs-manifest-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.45;
  color: var(--graphite);
  letter-spacing: -0.005em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bs-manifest-list-shadow {
  color: var(--onix);
  font-size: 24px;
  font-weight: 400;
}

.bs-manifest-closing {
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 1.7;
  color: var(--graphite);
  margin: 8px 0 0;
}
.bs-manifest-closing strong {
  color: var(--onix);
  font-weight: 600;
}

.bs-manifesto-quote {
  margin: 18px 0;
  padding: 32px 0 32px 40px;
  border-left: 2px solid var(--lavender-deep);
  position: relative;
}
.bs-quote-mark {
  position: absolute;
  left: 24px;
  top: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--lavender-deep);
  opacity: 0.6;
}
.bs-manifesto-quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--onix);
}
.bs-manifesto-quote blockquote em {
  font-style: italic;
  color: var(--lavender-deep);
}

/* ============================================================
   SOBRE A JULIANA
   ============================================================ */
.bs-sobre {
  background: var(--onix-deep);
  color: var(--offwhite);
  padding: 160px var(--pad-x);
  position: relative;
}
.bs-sobre::before {
  content: 'II';
  position: absolute;
  top: 80px;
  right: var(--pad-x);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--lavender);
  opacity: 0.7;
  letter-spacing: 0.1em;
}
.bs-sobre-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.bs-sobre-head { margin-bottom: 88px; }
.bs-sobre-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 120px;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 24px 0 0;
  color: var(--offwhite);
}
.bs-sobre-title em {
  font-style: italic;
  color: var(--lavender);
  font-weight: 400;
}

.bs-sobre-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 100px;
}
.bs-sobre-media {
  position: relative;
  height: 580px;
}
.bs-sobre-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bs-sobre-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--onix-deep);
  border-left: 2px solid var(--lavender);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bs-sobre-tag span:first-child {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--lavender);
}
.bs-sobre-tag span:last-child {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, 0.6);
}

.bs-sobre-text { padding-top: 8px; }
.bs-sobre-lead {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  line-height: 1.35;
  color: var(--offwhite);
  margin: 0 0 40px;
}
.bs-sobre-lead strong {
  font-style: normal;
  font-weight: 400;
  color: var(--lavender);
}
.bs-sobre-body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(247, 245, 242, 0.78);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.bs-sobre-body em {
  font-style: italic;
  color: var(--sand);
}
.bs-sobre-signature {
  padding-top: 28px;
  border-top: 1px solid rgba(247, 245, 242, 0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bs-sig-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--offwhite);
}
.bs-sig-role {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, 0.55);
}

/* Grade de números */
.bs-sobre-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 48px 0;
  border-top: 1px solid rgba(247, 245, 242, 0.15);
  border-bottom: 1px solid rgba(247, 245, 242, 0.15);
  margin-bottom: 48px;
}
.bs-num-item {
  padding: 0 32px;
  border-right: 1px solid rgba(247, 245, 242, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bs-num-item:first-child { padding-left: 0; }
.bs-num-item:last-child { border-right: none; padding-right: 0; }
.bs-num-val {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--sand);
}
.bs-num-suf {
  font-style: italic;
  font-size: 56px;
  color: var(--sand);
}
.bs-num-lbl {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(247, 245, 242, 0.7);
  font-style: italic;
  font-family: var(--font-display);
}

/* Faixa de mídias */
.bs-sobre-press {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bs-press-list {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--offwhite);
}
.bs-press-sep {
  color: var(--sand);
  font-style: normal;
}

/* ============================================================
   ESTRUTURA
   ============================================================ */
.bs-estrutura {
  background: var(--offwhite);
  color: var(--onix);
  padding: 160px var(--pad-x);
  position: relative;
}
.bs-estrutura::before {
  content: 'III';
  position: absolute;
  top: 80px;
  right: var(--pad-x);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--sand-deep);
  letter-spacing: 0.1em;
}
.bs-estrutura-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.bs-estrutura-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 96px;
}
.bs-estrutura-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 80px;
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 24px 0 0;
  color: var(--onix);
}
.bs-estrutura-title em {
  font-style: italic;
  color: var(--graphite);
}
.bs-estrutura-lead {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--graphite);
  margin: 0;
  padding-bottom: 8px;
}

.bs-partes {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--onix);
}
.bs-parte {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 64px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(26, 28, 41, 0.15);
  transition: background 0.3s;
}
.bs-parte:hover { background: rgba(218, 189, 169, 0.08); }
.bs-parte-no {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  color: var(--lavender-deep);
  letter-spacing: -0.02em;
}
.bs-parte-titulo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--onix);
}
.bs-parte-descr {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--graphite);
  margin: 0;
  max-width: 700px;
}

/* O que está no programa — grade timeline */
.bs-programa {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--onix);
}
.bs-programa .bs-eyebrow {
  display: block;
  margin-bottom: 32px;
}
.bs-programa-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26, 28, 41, 0.15);
  border-bottom: 1px solid rgba(26, 28, 41, 0.15);
}
.bs-programa-grid li {
  padding: 22px 24px;
  border-right: 1px solid rgba(26, 28, 41, 0.1);
  border-bottom: 1px solid rgba(26, 28, 41, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(218, 189, 169, 0.05);
  transition: background 0.25s;
}
.bs-programa-grid li:hover { background: rgba(184, 192, 255, 0.12); }
.bs-programa-grid li:nth-child(4n) { border-right: none; }
.bs-programa-grid li:nth-last-child(-n+3):nth-child(4n+1),
.bs-programa-grid li:nth-last-child(-n+3):nth-child(4n+2),
.bs-programa-grid li:nth-last-child(-n+3):nth-child(4n+3) { border-bottom: none; }
.bs-programa-grid li:last-child { border-bottom: none; border-right: none; }
.bs-programa-grid li span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--onix);
  letter-spacing: -0.01em;
}
.bs-programa-grid li em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--lavender-deep);
  letter-spacing: -0.005em;
}

/* ============================================================
   PÚBLICO + TRANSFORMAÇÃO
   ============================================================ */
.bs-publico {
  background: var(--graphite);
  color: var(--offwhite);
  padding: 140px var(--pad-x);
  position: relative;
}
.bs-publico::before {
  content: 'IV';
  position: absolute;
  top: 80px;
  right: var(--pad-x);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--lavender-light);
  letter-spacing: 0.1em;
}
.bs-publico-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.bs-publico-head { margin-bottom: 88px; }
.bs-publico-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 80px;
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 20px 0 0;
  color: var(--offwhite);
}
.bs-publico-title em {
  font-style: italic;
  color: var(--lavender);
}

.bs-publico-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

/* Perfil */
.bs-publico-perfil {
  padding: 32px;
  background: rgba(247, 245, 242, 0.04);
  border: 1px solid rgba(247, 245, 242, 0.1);
}
.bs-publico-perfil .bs-eyebrow {
  color: var(--sand) !important;
  display: block;
  margin-bottom: 20px;
}
.bs-publico-perfil ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: var(--offwhite);
}
.bs-publico-perfil li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(247, 245, 242, 0.1);
}
.bs-publico-perfil li:last-child { border-bottom: none; }

/* Transformação */
.bs-publico-transform {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
}
.bs-tcol {
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.bs-tcol .bs-eyebrow {
  color: var(--sand) !important;
  margin-bottom: 24px;
}
.bs-tcol-antes {
  background: rgba(26, 28, 41, 0.4);
}
.bs-tcol-depois {
  background: var(--offwhite);
  color: var(--onix);
}
.bs-tcol-depois .bs-eyebrow {
  color: var(--lavender-deep) !important;
}
.bs-tcol ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bs-tcol-antes ul { color: rgba(247, 245, 242, 0.6); }
.bs-tcol-depois ul { color: var(--onix); }
.bs-tcol ul li {
  padding-left: 18px;
  position: relative;
}
.bs-tcol ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 1px;
  background: var(--sand);
}
.bs-tcol-depois ul li::before { background: var(--lavender-deep); }

.bs-tcol-arrow {
  display: flex;
  align-items: center;
  color: var(--lavender);
}

/* ============================================================
   VAGAS
   ============================================================ */
.bs-vagas {
  background: var(--onix);
  color: var(--offwhite);
  padding: 160px var(--pad-x);
  position: relative;
}
.bs-vagas::before {
  content: 'V';
  position: absolute;
  top: 80px;
  right: var(--pad-x);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--sand);
  letter-spacing: 0.1em;
}
.bs-vagas-inner { max-width: 1280px; margin: 0 auto; }
.bs-vagas-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.bs-vagas-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 88px;
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 24px 0 0;
  color: var(--offwhite);
}
.bs-vagas-title em {
  font-style: italic;
  color: var(--sand);
}
.bs-vagas-lead {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(247, 245, 242, 0.7);
  margin: 0;
  padding-bottom: 8px;
}

.bs-vagas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.bs-tier {
  padding: 48px 44px 44px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.bs-tier-experience {
  background: rgba(247, 245, 242, 0.04);
  border: 1px solid rgba(247, 245, 242, 0.12);
}
.bs-tier-executive {
  background: var(--offwhite);
  color: var(--onix);
  border: 1px solid var(--sand);
  position: relative;
}
.bs-tier-ribbon {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--onix);
  color: var(--sand);
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
}

.bs-tier-head { margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid currentColor;
}
.bs-tier-experience .bs-tier-head { border-bottom-color: rgba(247, 245, 242, 0.15); }
.bs-tier-executive .bs-tier-head { border-bottom-color: rgba(26, 28, 41, 0.15); }

.bs-tier-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}
.bs-tier-experience .bs-tier-tag { color: var(--sand); }
.bs-tier-executive .bs-tier-tag { color: var(--lavender-deep); }

.bs-tier-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.bs-tier-experience .bs-tier-name { color: var(--offwhite); }
.bs-tier-executive .bs-tier-name { color: var(--onix); }
.bs-tier-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  margin: 0;
  font-weight: 400;
}
.bs-tier-experience .bs-tier-sub { color: rgba(247, 245, 242, 0.7); }
.bs-tier-executive .bs-tier-sub { color: var(--graphite); }

.bs-tier-vagas {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.bs-tier-vagas-n {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 88px;
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.bs-tier-experience .bs-tier-vagas-n { color: var(--sand); }
.bs-tier-executive .bs-tier-vagas-n { color: var(--lavender-deep); }
.bs-tier-vagas-lbl {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
}
.bs-tier-experience .bs-tier-vagas-lbl { color: rgba(247, 245, 242, 0.7); }
.bs-tier-executive .bs-tier-vagas-lbl { color: var(--graphite); }

.bs-tier-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.bs-tier-list li {
  padding-left: 22px;
  position: relative;
}
.bs-tier-list li strong { font-weight: 600; }
.bs-tier-experience .bs-tier-list { color: rgba(247, 245, 242, 0.82); }
.bs-tier-experience .bs-tier-list strong { color: var(--sand); }
.bs-tier-executive .bs-tier-list { color: var(--graphite); }
.bs-tier-executive .bs-tier-list strong { color: var(--onix); }

.bs-tier-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 10px;
  height: 1px;
}
.bs-tier-experience .bs-tier-list li::before { background: var(--sand); }
.bs-tier-executive .bs-tier-list li::before { background: var(--lavender-deep); }

.bs-tier-detail {
  background: rgba(184, 192, 255, 0.12);
  padding: 18px 22px;
  margin-bottom: 28px;
  border-left: 2px solid var(--lavender-deep);
}
.bs-tier-detail p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--graphite);
  margin: 8px 0 0;
}

.bs-tier-foot {
  padding-top: 24px;
  border-top: 1px solid currentColor;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
}
.bs-tier-experience .bs-tier-foot { border-top-color: rgba(247, 245, 242, 0.15); }
.bs-tier-executive .bs-tier-foot { border-top-color: rgba(26, 28, 41, 0.15); }

.bs-tier-price-k {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 500;
}
.bs-tier-experience .bs-tier-price-k { color: rgba(247, 245, 242, 0.55); }
.bs-tier-executive .bs-tier-price-k { color: var(--graphite); }

.bs-tier-price-v {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}
.bs-tier-experience .bs-tier-price-v { color: var(--offwhite); }
.bs-tier-executive .bs-tier-price-v { color: var(--onix); }

.bs-tier-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--sand);
  color: var(--onix);
  transition: background 0.2s, gap 0.2s;
}
.bs-tier-cta:hover { background: var(--sand-light); gap: 14px; }
.bs-tier-cta-light {
  background: var(--onix);
  color: var(--offwhite);
}
.bs-tier-cta-light:hover { background: var(--graphite); color: var(--lavender); }

.bs-vagas-note {
  margin: 48px 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(247, 245, 242, 0.55);
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.bs-depos {
  background: var(--onix-deep);
  color: var(--offwhite);
  padding: 140px var(--pad-x);
  position: relative;
}
.bs-depos::before {
  content: 'VI';
  position: absolute;
  top: 80px;
  right: var(--pad-x);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--lavender);
  letter-spacing: 0.1em;
}
.bs-depos-inner { max-width: 1280px; margin: 0 auto; }
.bs-depos-head { margin-bottom: 72px; max-width: 760px; }
.bs-depos-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 72px;
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 24px 0 0;
  color: var(--offwhite);
}
.bs-depos-title em {
  font-style: italic;
  color: var(--lavender);
}
.bs-depos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bs-depo {
  margin: 0;
  padding: 36px 32px;
  background: rgba(247, 245, 242, 0.04);
  border-left: 2px solid var(--lavender);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bs-depo-no {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--lavender);
  letter-spacing: -0.01em;
}
.bs-depo blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: var(--offwhite);
}
.bs-depo figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(247, 245, 242, 0.12);
}
.bs-depo-autor {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
}
.bs-depo-papel {
  font-size: 12px;
  color: rgba(247, 245, 242, 0.55);
  letter-spacing: 0.04em;
}

/* ============================================================
   CTA FINAL + FORM
   ============================================================ */
.bs-cta {
  background: var(--onix);
  padding: 140px var(--pad-x);
  position: relative;
}
.bs-cta::before {
  content: 'VII';
  position: absolute;
  top: 80px;
  right: var(--pad-x);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--sand);
  letter-spacing: 0.1em;
}
.bs-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 96px;
  align-items: start;
}
.bs-cta-text { padding-top: 8px; }
.bs-cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 88px;
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 24px 0 32px;
  color: var(--offwhite);
}
.bs-cta-title em {
  font-style: italic;
  color: var(--sand);
}
.bs-cta-lead {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  color: rgba(247, 245, 242, 0.75);
  margin: 0 0 40px;
  max-width: 560px;
}

.bs-cta-info {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  padding: 28px 0;
  border-top: 1px solid rgba(247, 245, 242, 0.15);
  border-bottom: 1px solid rgba(247, 245, 242, 0.15);
  margin-bottom: 36px;
}
.bs-cta-info > div { display: flex; flex-direction: column; gap: 6px; }
.bs-cta-k {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, 0.55);
  font-weight: 500;
}
.bs-cta-v {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--offwhite);
  letter-spacing: -0.005em;
}

.bs-cta-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.3;
  color: var(--sand);
  margin: 0;
  letter-spacing: -0.005em;
}

/* Form */
.bs-form-wrap {
  background: var(--offwhite);
  color: var(--onix);
  padding: 44px 40px 40px;
  position: relative;
}
.bs-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sand);
}
.bs-form-head {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(26, 28, 41, 0.2);
}
.bs-form-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 500;
  margin-bottom: 12px;
}
.bs-form-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--onix);
  margin: 0;
}
.bs-field { display: block; margin-bottom: 18px; }
.bs-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 6px;
  font-weight: 500;
}
.bs-field input, .bs-field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(26, 28, 41, 0.22);
  background: transparent;
  padding: 10px 0;
  font-size: 16px;
  font-family: var(--font-display);
  color: var(--onix);
  outline: none;
  transition: border-color 0.2s;
}
.bs-field input::placeholder {
  color: rgba(26, 28, 41, 0.35);
  font-style: italic;
}
.bs-field input:focus, .bs-field select:focus {
  border-bottom-color: var(--onix);
}
.bs-field select {
  appearance: none;
  cursor: pointer;
  padding-right: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231A1C29' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.bs-form-cta {
  width: 100%;
  margin-top: 14px;
  padding: 18px 24px;
  background: var(--onix);
  color: var(--offwhite);
  border: none;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background 0.2s, gap 0.2s;
}
.bs-form-cta:hover { background: var(--graphite); gap: 18px; }
.bs-form-cta svg { stroke: var(--sand); }

.bs-form-micro {
  font-size: 11px;
  font-style: italic;
  color: var(--graphite-light);
  text-align: center;
  margin: 16px 0 0;
  line-height: 1.5;
}

.bs-thanks { padding: 12px 0; }
.bs-thanks-body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--graphite);
  margin: 16px 0 0;
}
.bs-thanks-body a {
  color: var(--onix);
  border-bottom: 1px solid var(--sand);
  text-decoration: none;
}

/* ============================================================
   FORMULÁRIO MULTI-ETAPAS
   ============================================================ */

.bs-form-wrap {
  min-height: 720px;
  display: flex;
  flex-direction: column;
}

/* === INTRO === */
.bs-form-intro {
  padding: 56px 44px 44px;
  justify-content: space-between;
}
.bs-form-intro .bs-form-tag { margin-bottom: 18px; }
.bs-form-intro .bs-form-title {
  font-size: 56px;
  line-height: 0.9;
  margin-bottom: 32px;
}
.bs-form-intro-body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--graphite);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  flex: 1;
}
.bs-form-intro-quote {
  padding: 20px 0;
  margin-bottom: 28px;
  border-top: 1px solid var(--lavender-deep);
  border-bottom: 1px solid var(--lavender-deep);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--onix);
  letter-spacing: -0.005em;
  text-align: center;
}
.bs-form-intro-quote em { font-style: italic; }
.bs-form-intro-emph {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--onix);
  line-height: 1.45;
  padding-top: 12px;
  border-top: 1px dashed rgba(26, 28, 41, 0.2);
}

/* === PROGRESSO === */
.bs-form-step { padding: 36px 40px 36px; }
.bs-form-progress {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(26, 28, 41, 0.2);
}
.bs-form-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}
.bs-form-step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--lavender-deep);
  letter-spacing: -0.005em;
}
.bs-form-step-num span { color: rgba(26, 28, 41, 0.3); margin: 0 4px; }
.bs-form-step-title {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 500;
}
.bs-form-progress-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.bs-pbar-tick {
  height: 2px;
  background: rgba(26, 28, 41, 0.15);
  transition: background 0.3s;
}
.bs-pbar-tick.is-done { background: var(--lavender-deep); }

/* === FIELDS === */
.bs-form-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.bs-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.bs-field textarea {
  width: 100%;
  border: 1px solid rgba(26, 28, 41, 0.18);
  background: rgba(247, 245, 242, 0.5);
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--onix);
  outline: none;
  resize: vertical;
  line-height: 1.55;
  transition: border-color 0.2s, background 0.2s;
}
.bs-field textarea::placeholder {
  color: rgba(26, 28, 41, 0.4);
  font-style: italic;
}
.bs-field textarea:focus {
  border-color: var(--onix);
  background: #fff;
}
.bs-field-hint {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-style: italic;
  color: var(--graphite-light);
}

/* === RADIOS === */
.bs-radio, .bs-check, .bs-commit, .bs-modal {
  border: none;
  padding: 0;
  margin: 0;
}
.bs-radio .bs-label, .bs-check .bs-label, .bs-commit .bs-label, .bs-modal .bs-label {
  margin-bottom: 10px;
}
.bs-radio-list, .bs-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bs-radio-item, .bs-check-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(26, 28, 41, 0.18);
  background: rgba(247, 245, 242, 0.5);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--onix);
}
.bs-radio-item:hover, .bs-check-item:hover {
  border-color: var(--onix);
}
.bs-radio-item.is-selected, .bs-check-item.is-selected {
  background: var(--onix);
  color: var(--offwhite);
  border-color: var(--onix);
}
.bs-radio-item input, .bs-check-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.bs-radio-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}
.bs-radio-item.is-selected .bs-radio-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--sand);
  border-radius: 50%;
}
.bs-check-mark {
  width: 14px;
  height: 14px;
  border: 1px solid currentColor;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}
.bs-check-item.is-selected .bs-check-mark::after,
.bs-commit-item.is-selected .bs-check-mark::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--sand);
}

/* === ETAPA 5 · PERGUNTA EMPHATIC === */
.bs-form-fields-emph {
  gap: 24px;
}
.bs-emph-prefix {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.bs-emph-prefix-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 0.85;
  color: var(--lavender-deep);
}
.bs-emph-prefix-text {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 500;
}
.bs-emph-q {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--onix);
  margin: 0 0 4px;
}
.bs-emph-q em { font-style: italic; color: var(--lavender-deep); }

/* === ETAPA 6 · MODALIDADE === */
.bs-modal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bs-modal-item {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(26, 28, 41, 0.18);
  background: rgba(247, 245, 242, 0.5);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.bs-modal-item:hover { border-color: var(--onix); }
.bs-modal-item.is-selected {
  border-color: var(--onix);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--onix);
}
.bs-modal-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.bs-modal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.bs-modal-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--onix);
  flex-shrink: 0;
  position: relative;
}
.bs-modal-item.is-selected .bs-modal-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--onix);
  border-radius: 50%;
}
.bs-modal-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--onix);
  letter-spacing: -0.01em;
}
.bs-modal-price {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--graphite);
  letter-spacing: -0.01em;
}
.bs-modal-descr {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--graphite);
  margin: 0;
  padding-left: 28px;
}

/* Commit */
.bs-commit {
  padding-top: 8px;
  border-top: 1px dashed rgba(26, 28, 41, 0.15);
  margin-top: 12px;
}
.bs-commit-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--graphite);
  margin: 0 0 14px;
  line-height: 1.45;
}
.bs-commit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--onix);
  line-height: 1.55;
}
.bs-commit-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.bs-commit-item .bs-check-mark { color: var(--onix); margin-top: 2px; }

/* === NAVEGAÇÃO === */
.bs-form-nav {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed rgba(26, 28, 41, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.bs-form-back {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--graphite);
  padding: 8px 4px;
  transition: color 0.2s;
}
.bs-form-back:hover { color: var(--onix); }
.bs-form-cta:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.bs-form-cta:disabled:hover { background: var(--onix); gap: 14px; }

.bs-form-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bs-form-err {
  font-size: 12px;
  color: #d97757;
  font-style: italic;
  max-width: 220px;
  line-height: 1.4;
  text-align: right;
}

/* === THANKS === */
.bs-form-thanks {
  padding: 56px 44px 44px;
}
.bs-form-thanks .bs-form-tag {
  color: var(--lavender-deep);
  margin-bottom: 18px;
}
.bs-form-thanks .bs-form-title {
  font-size: 56px;
  line-height: 0.9;
  margin-bottom: 32px;
}
.bs-form-thanks-body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--graphite);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.bs-form-thanks-quote {
  padding: 28px 0;
  border-top: 1px solid var(--lavender-deep);
  border-bottom: 1px solid var(--lavender-deep);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 36px;
}
.bs-form-thanks-quote span:first-child {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--graphite);
}
.bs-form-thanks-quote em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--onix);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.bs-form-thanks-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px dashed rgba(26, 28, 41, 0.2);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--graphite);
}
.bs-form-thanks-foot a {
  color: var(--onix);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
}

/* ============================================================
   FOOTER
   ============================================================ */
.bs-footer {
  background: var(--onix-deep);
  color: var(--offwhite);
}
.bs-footer-inner {
  padding: 80px var(--pad-x) 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-bottom: 1px solid rgba(247, 245, 242, 0.1);
}
.bs-footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bs-brand-footer .bs-brand-line1 { font-size: 38px; }
.bs-brand-footer .bs-brand-line2 { font-size: 12px; }
.bs-footer-byline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(247, 245, 242, 0.55);
  margin-top: 12px;
}
.bs-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.bs-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bs-footer-col .bs-eyebrow { margin-bottom: 8px; }
.bs-footer-col a {
  color: rgba(247, 245, 242, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--font-display);
  font-style: italic;
  transition: color 0.2s;
}
.bs-footer-col a:hover { color: var(--sand); }
.bs-footer-static {
  color: rgba(247, 245, 242, 0.7);
  font-size: 14px;
  font-family: var(--font-display);
  font-style: italic;
}
.bs-footer-base {
  padding: 28px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, 0.4);
}
.bs-footer-quote {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 14px;
  color: var(--sand);
}
