/* ============================================================
   Brighter Pathway Care — site styles
   Palette: navy #0F2A47 · gold #C9A24B · green #1f8a5b
   Type: Newsreader (headings) · Public Sans (body)
   ============================================================ */

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y proximity; }
body {
  margin: 0;
  background: #fff;
  font-family: 'Public Sans', system-ui, sans-serif;
  color: #0F2A47;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

.page { max-width: 100%; overflow-x: hidden; }

section[id] {
  scroll-margin-top: 84px;
  scroll-snap-align: start;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---------- Shared pieces ---------- */
.bpc-link { transition: color .18s ease; }
.bpc-link:hover { color: #C9A24B; }

.bpc-btn { transition: transform .18s ease, box-shadow .18s ease; }
.bpc-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(15,42,71,.5); }
.bpc-btn:focus-visible,
.bpc-link:focus-visible,
.bpc-input:focus-visible { outline: 3px solid #C9A24B; outline-offset: 2px; }

.bpc-card { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.bpc-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -28px rgba(15,42,71,.4); border-color: #C9A24B; }

.bpc-job { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.bpc-job:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -26px rgba(15,42,71,.4); border-color: #C9A24B; }

.bpc-input {
  width: 100%;
  border: 1.5px solid #d8dee7;
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 15px;
  font-family: 'Public Sans', sans-serif;
  color: #0F2A47;
  background: #fff;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.bpc-input:focus { outline: none; border-color: #0F2A47; box-shadow: 0 0 0 3px rgba(15,42,71,.1); }
.bpc-input::placeholder { color: #9aa3b2; }

.bpc-field-label {
  font-size: 13px;
  font-weight: 700;
  color: #3a4658;
  margin-bottom: 7px;
  display: block;
}

/* Buttons */
.btn-navy {
  background: #0F2A47;
  color: #fff;
  padding: 15px 30px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 15px;
}
.btn-outline {
  background: #fff;
  border: 1.5px solid #cfd6e1;
  color: #0F2A47;
  padding: 15px 30px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 15px;
}

/* Gold uppercase eyebrow above each section heading */
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #C9A24B;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0;
}

/* Centered heading block used by Services / Careers / Contact */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8e9ec;
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-text { line-height: 1.02; }
.brand-name { font-weight: 800; font-size: 16px; letter-spacing: .06em; }
.brand-tagline {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8a93a3;
  font-weight: 600;
  margin-top: 2px;
}
.bpc-nav { display: flex; align-items: center; gap: 30px; font-size: 14.5px; font-weight: 600; }
.nav-link { color: #3a4658; }
.btn-nav { background: #0F2A47; color: #fff; padding: 11px 22px; border-radius: 9px; font-weight: 700; }

/* ---------- Hero ---------- */
.hero-section { background: linear-gradient(180deg, #fbfcfd, #f4f6f9); }
.bpc-hero {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  padding: 84px 40px 76px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #eef1f6;
  border: 1px solid #dde3ec;
  color: #0F2A47;
  padding: 8px 15px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 26px;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #1f8a5b; }
.bpc-hero-h1 {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 66px;
  line-height: 1.02;
  letter-spacing: -.018em;
  margin: 0 0 22px;
}
.hero-accent { color: #C9A24B; font-style: italic; }
.hero-sub {
  font-size: 18.5px;
  line-height: 1.62;
  color: #46536a;
  margin: 0 0 34px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 14px; margin-bottom: 46px; }
.bpc-stats { display: flex; gap: 44px; }
.stat-num { font-family: 'Newsreader', serif; font-size: 36px; font-weight: 600; }
.stat-label { font-size: 13px; color: #76808f; font-weight: 600; }
.hero-media { position: relative; }
.hero-img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 34px 66px -28px rgba(15,42,71,.5);
}
.bpc-herofloat {
  position: absolute;
  left: -26px;
  bottom: 44px;
  background: #fff;
  border: 1px solid #e8e9ec;
  border-radius: 13px;
  padding: 17px 19px;
  box-shadow: 0 20px 44px -20px rgba(15,42,71,.4);
  width: 228px;
}
.herofloat-title { font-size: 12px; font-weight: 800; color: #1f8a5b; letter-spacing: .04em; margin-bottom: 7px; }
.herofloat-text { font-size: 13.5px; line-height: 1.45; color: #46536a; }

/* ---------- Partner strip ---------- */
.partner-strip { border-top: 1px solid #e8e9ec; border-bottom: 1px solid #e8e9ec; }
.bpc-partner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.partner-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9aa3b2;
  white-space: nowrap;
}
.partner-logos { display: flex; gap: 40px; flex: 1; align-items: center; flex-wrap: wrap; opacity: .7; }
.partner-name { font-weight: 800; font-size: 16px; color: #46536a; }

/* ---------- About ---------- */
.about-section { max-width: 1240px; margin: 0 auto; }
.about-section.bpc-pad { padding: 88px 40px; }
.bpc-about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 60px; align-items: start; }
.about-title { margin: 0 0 22px; }
.about-copy { font-size: 16.5px; line-height: 1.68; color: #46536a; margin: 0 0 18px; }
.about-copy:last-child { margin-bottom: 0; }
.bpc-2col-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info-card { border: 1px solid #e8e9ec; border-radius: 16px; background: #fbfcfd; overflow: hidden; }
.info-card-img { display: block; width: 100%; height: 172px; object-fit: cover; }
.info-card-body { padding: 26px 26px 30px; }
.info-card-title { font-size: 19px; font-weight: 700; margin: 0 0 10px; }
.info-card-text { font-size: 14.5px; line-height: 1.6; color: #5a6577; margin: 0 0 14px; }
.info-card-loc { font-size: 13px; font-weight: 700; color: #0F2A47; }

/* ---------- Services ---------- */
.services-section { background: #f4f6f9; border-top: 1px solid #e8e9ec; border-bottom: 1px solid #e8e9ec; }
.services-inner { max-width: 1240px; margin: 0 auto; }
.services-inner.bpc-pad { padding: 88px 40px; }
.bpc-svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card { background: #fff; border: 1px solid #e8e9ec; border-radius: 14px; padding: 26px 24px; }
.svc-num { font-family: 'Newsreader', serif; font-size: 17px; color: #C9A24B; font-weight: 700; margin-bottom: 16px; }
.svc-title { font-size: 17px; font-weight: 700; margin: 0 0 8px; line-height: 1.25; }
.svc-text { font-size: 13.5px; line-height: 1.55; color: #5a6577; margin: 0; }
.svc-cta {
  background: #0F2A47;
  color: #fff;
  border: 1px solid #0F2A47;
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.svc-cta-title { font-size: 17px; font-weight: 700; line-height: 1.3; }
.svc-cta-link { font-size: 14px; color: #C9A24B; font-weight: 700; margin-top: 14px; }

/* ---------- Approach ---------- */
.approach-section { background: #0F2A47; color: #fff; }
.approach-inner { max-width: 1240px; margin: 0 auto; }
.approach-inner.bpc-pad { padding: 90px 40px; }
.bpc-approach-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.approach-title { font-size: 40px; line-height: 1.12; letter-spacing: normal; margin: 0 0 24px; }
.approach-copy { font-size: 16.5px; line-height: 1.7; color: #bcc6d6; margin: 0 0 30px; }
.approach-quote {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: #fff;
  border-left: 3px solid #C9A24B;
  padding-left: 22px;
  margin: 0;
}
.value-list { display: flex; flex-direction: column; gap: 18px; }
.value-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 28px 30px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.value-num { flex: none; font-family: 'Newsreader', serif; font-size: 30px; font-weight: 600; color: #C9A24B; line-height: 1; }
.value-title { font-size: 20px; font-weight: 700; margin: 0 0 8px; }
.value-text { font-size: 14.5px; line-height: 1.6; color: #bcc6d6; margin: 0; }

/* ---------- Careers ---------- */
.careers-section { max-width: 1240px; margin: 0 auto; }
.careers-section.bpc-pad { padding: 88px 40px; }
.careers-title { letter-spacing: normal; margin: 0 0 16px; }
.careers-intro { font-size: 16.5px; line-height: 1.65; color: #46536a; margin: 0; }
.careers-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 34px;
  box-shadow: 0 30px 60px -30px rgba(15,42,71,.45);
}
.careers-img { display: block; width: 100%; height: 300px; object-fit: cover; }
.careers-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,42,71,.55), rgba(15,42,71,0) 60%); }
.careers-caption { position: absolute; left: 40px; bottom: 32px; color: #fff; max-width: 460px; }
.careers-caption-text {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.job-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }
.bpc-job {
  background: #fbfcfd;
  border: 1px solid #e8e9ec;
  border-radius: 14px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.job-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.job-desc { font-size: 14px; color: #5a6577; }
.job-loc {
  font-size: 13px;
  font-weight: 700;
  color: #0F2A47;
  background: #eef1f6;
  padding: 7px 14px;
  border-radius: 100px;
  flex: none;
}
.careers-cta { text-align: center; }
.btn-apply { display: inline-block; background: #0F2A47; color: #fff; padding: 15px 32px; border-radius: 9px; font-weight: 700; font-size: 15px; }
.apply-note { font-size: 13px; color: #9aa3b2; margin-top: 12px; }

/* ---------- Contact ---------- */
.contact-section { background: linear-gradient(180deg, #fbfcfd, #f4f6f9); border-top: 1px solid #e8e9ec; }
.contact-inner { max-width: 1240px; margin: 0 auto; }
.contact-inner.bpc-pad { padding: 84px 40px; }
.contact-head { margin-bottom: 50px; }
.contact-title { font-size: 44px; line-height: 1.06; letter-spacing: normal; margin: 0 0 16px; }
.contact-intro { font-size: 17px; line-height: 1.6; color: #46536a; margin: 0; }
.bpc-contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: start; }
.contact-form-card {
  background: #fff;
  border: 1px solid #e8e9ec;
  border-radius: 20px;
  padding: 40px 40px;
  box-shadow: 0 24px 50px -34px rgba(15,42,71,.3);
}
.bpc-form2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field { margin-bottom: 20px; }
.form-field--last { margin-bottom: 26px; }
.form-textarea { resize: vertical; }
.btn-submit {
  background: #0F2A47;
  color: #fff;
  border: none;
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Public Sans', sans-serif;
}
.btn-submit[disabled] { opacity: .65; cursor: default; }
.form-status { display: none; margin-top: 16px; font-size: 14.5px; font-weight: 600; }
.form-status.is-success { display: block; color: #1f8a5b; }
.form-status.is-error { display: block; color: #b0413e; }
/* Honeypot: hidden from people, visible to bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.contact-details { background: #0F2A47; color: #fff; border-radius: 18px; padding: 32px 30px; }
.contact-details-title { font-size: 18px; font-weight: 700; margin: 0 0 18px; }
.contact-details-list { display: flex; flex-direction: column; gap: 18px; }
.contact-item-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #C9A24B;
  margin-bottom: 5px;
}
.contact-item-value { font-size: 15px; color: #dde4ee; }
.partner-card { background: #f4f6f9; border: 1px solid #e8e9ec; border-radius: 18px; padding: 24px 30px; }
.partner-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9aa3b2;
  margin-bottom: 8px;
}
.partner-card-name { font-size: 15px; font-weight: 700; color: #46536a; }

/* ---------- Footer ---------- */
.site-footer { background: #0a1e33; color: #9fb0c6; }
.bpc-footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 40px 30px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 11px; color: #fff; margin-bottom: 16px; }
.footer-brand-name { font-weight: 800; font-size: 15px; letter-spacing: .05em; }
.footer-tagline { font-size: 13.5px; line-height: 1.6; color: #7e90a8; margin: 0; max-width: 300px; }
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-muted { color: #7e90a8; }
.footer-contact { color: #9fb0c6; }
.footer-rule { border-top: 1px solid rgba(255,255,255,.08); }
.bpc-footbar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #7e90a8;
}

/* ---------- Apply page ---------- */
[hidden] { display: none !important; }
.label-hint { font-weight: 500; color: #9aa3b2; }
.file-input { padding: 10px 12px; cursor: pointer; }
.file-input::file-selector-button {
  background: #eef1f6;
  border: 1px solid #dde3ec;
  color: #0F2A47;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13.5px;
  font-family: 'Public Sans', sans-serif;
  cursor: pointer;
  margin-right: 14px;
}
.apply-success {
  background: #fff;
  border: 1px solid #e8e9ec;
  border-radius: 20px;
  padding: 56px 44px;
  text-align: center;
  box-shadow: 0 24px 50px -34px rgba(15,42,71,.3);
}
.apply-success-title { font-family: 'Newsreader', serif; font-weight: 600; font-size: 30px; margin: 20px 0 12px; }
.apply-success-text { font-size: 15.5px; line-height: 1.65; color: #46536a; margin: 0 0 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  section[id] { min-height: auto !important; display: block !important; }
  .bpc-nav { gap: 14px !important; }
  .bpc-nav a.bpc-link { display: none !important; }
  .bpc-pad { padding: 54px 22px !important; }
  .bpc-hero { grid-template-columns: 1fr !important; gap: 32px !important; padding: 40px 22px 50px !important; }
  .bpc-hero-h1 { font-size: 42px !important; }
  .bpc-row-wrap { flex-wrap: wrap !important; }
  .bpc-stats { gap: 22px !important; }
  .bpc-herofloat { position: static !important; left: auto !important; bottom: auto !important; width: auto !important; margin-top: 16px !important; }
  .bpc-partner { flex-direction: column !important; align-items: flex-start !important; gap: 14px !important; padding: 18px 22px !important; }
  .bpc-about-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .bpc-2col-cards { grid-template-columns: 1fr !important; }
  .bpc-svc-grid { grid-template-columns: 1fr 1fr !important; }
  .bpc-approach-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .bpc-contact-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .bpc-form2 { grid-template-columns: 1fr !important; }
  .bpc-footer-grid { grid-template-columns: 1fr 1fr !important; gap: 28px !important; padding: 44px 22px 24px !important; }
  .bpc-footbar { flex-direction: column !important; gap: 10px !important; text-align: center !important; padding: 18px 22px !important; }
}
@media (max-width: 540px) {
  .bpc-svc-grid { grid-template-columns: 1fr !important; }
  .bpc-footer-grid { grid-template-columns: 1fr !important; }
  .bpc-hero-h1 { font-size: 34px !important; }
  .bpc-stats { flex-wrap: wrap !important; }
}
