/* ================================================================
   Cornerstone House — Design System 2026
   Bootstrap 5 CDN | Modern redesign with real imagery + editorial layout
   ================================================================ */

/* ── Brand Design Tokens ─────────────────────────────────────── */
:root {
  --ch-primary:          #3D6B57;
  --ch-primary-dark:     #2A4D3E;
  --ch-primary-light:    #EAF2ED;
  --ch-primary-rgb:      61, 107, 87;

  --ch-secondary:        #C97B38;
  --ch-secondary-dark:   #A96328;
  --ch-secondary-light:  #FDF5EE;
  --ch-secondary-rgb:    201, 123, 56;

  --ch-background:       #F7F5F1;
  --ch-surface:          #FFFFFF;
  --ch-text:             #1C1C1C;
  --ch-text-muted:       #6B6B6B;
  --ch-border:           #E4E0DA;
  --ch-footer-bg:        #1A3329;

  --ch-font-heading:     'Merriweather', Georgia, serif;
  --ch-font-body:        'Inter', system-ui, sans-serif;

  --ch-section-y:        5.5rem;
  --ch-radius-card:      1rem;
  --ch-radius-btn:       0.5rem;

  --ch-shadow-sm:        0 1px 6px rgba(0,0,0,.06);
  --ch-shadow-card:      0 4px 20px rgba(0,0,0,.07);
  --ch-shadow-hover:     0 12px 36px rgba(0,0,0,.13);
  --ch-shadow-float:     0 20px 60px rgba(0,0,0,.18);

  --bs-primary:          #3D6B57;
  --bs-primary-rgb:      61, 107, 87;
  --bs-link-color:       #3D6B57;
  --bs-link-hover-color: #2A4D3E;
  --bs-secondary:        #C97B38;
  --bs-secondary-rgb:    201, 123, 56;
}

/* ── Bootstrap overrides ────────────────────────────────────── */
.btn-primary {
  --bs-btn-bg: #3D6B57; --bs-btn-border-color: #3D6B57;
  --bs-btn-hover-bg: #2A4D3E; --bs-btn-hover-border-color: #2A4D3E;
  --bs-btn-active-bg: #243F35; --bs-btn-color: #fff; --bs-btn-hover-color: #fff;
  --bs-btn-focus-shadow-rgb: 61, 107, 87;
}
.btn-outline-primary {
  --bs-btn-color: #3D6B57; --bs-btn-border-color: #3D6B57;
  --bs-btn-hover-bg: #3D6B57; --bs-btn-hover-border-color: #3D6B57;
  --bs-btn-hover-color: #fff; --bs-btn-active-bg: #2A4D3E;
  --bs-btn-focus-shadow-rgb: 61, 107, 87;
}
.btn-secondary {
  --bs-btn-bg: #C97B38; --bs-btn-border-color: #C97B38;
  --bs-btn-hover-bg: #A96328; --bs-btn-color: #fff; --bs-btn-hover-color: #fff;
}
.btn-outline-secondary {
  --bs-btn-color: #C97B38; --bs-btn-border-color: #C97B38;
  --bs-btn-hover-bg: #C97B38; --bs-btn-hover-color: #fff;
}
.btn-outline-light {
  --bs-btn-color: #fff; --bs-btn-border-color: rgba(255,255,255,.7);
  --bs-btn-hover-bg: rgba(255,255,255,.15); --bs-btn-hover-border-color: #fff; --bs-btn-hover-color: #fff;
}
.text-primary   { color: #3D6B57 !important; }
.bg-primary     { background-color: #3D6B57 !important; }
.text-secondary { color: #C97B38 !important; }
.bg-secondary   { background-color: #C97B38 !important; }
.border-primary { border-color: #3D6B57 !important; }

/* ── Base ────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--ch-font-body);
  background-color: var(--ch-background);
  color: var(--ch-text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
h1,h2,h3,h4,h5,h6,.font-heading { font-family: var(--ch-font-heading); }
a { color: #3D6B57; }
a:hover { color: #2A4D3E; }
img { display: block; }

/* ── Spacing ─────────────────────────────────────────────────── */
.py-section    { padding-top: var(--ch-section-y); padding-bottom: var(--ch-section-y); }
.py-section-lg { padding-top: 7rem; padding-bottom: 7rem; }

/* ── Entrance animations ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.22,.61,.36,1), transform 0.65s cubic-bezier(.22,.61,.36,1);
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ── Regulatory top banner (light “notice” strip, Hope Hill–style) ─ */
body.has-ch-reg-banner {
  --ch-reg-banner-height: 4.25rem;
}
@media (min-width: 768px) {
  body.has-ch-reg-banner {
    --ch-reg-banner-height: 3.5rem;
  }
}
@media (min-width: 992px) {
  body.has-ch-reg-banner {
    --ch-reg-banner-height: 3.25rem;
  }
}
.ch-reg-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: linear-gradient(180deg, #fffdf8 0%, #faf6ef 100%);
  border-bottom: 1px solid rgba(61, 107, 87, 0.12);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.ch-reg-banner-container {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  max-width: 1140px;
}
.ch-reg-banner-text {
  font-family: var(--ch-font-body);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #3a3a3a;
  text-align: center;
}
@media (min-width: 768px) {
  .ch-reg-banner-text {
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: left;
  }
}
.ch-reg-banner-label {
  font-weight: 700;
  color: #2a2a2a;
  margin-right: 0.25rem;
}
.ch-reg-banner-copy {
  color: #4a4a4a;
}
.ch-reg-banner-more {
  display: inline;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  color: var(--ch-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 0.15rem;
}
.ch-reg-banner-more:hover,
.ch-reg-banner-more:focus-visible {
  color: var(--ch-primary-dark);
  text-decoration-thickness: 2px;
}
.ch-reg-banner-more:focus-visible {
  outline: 2px solid var(--ch-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Paused referral/contact CTAs — open disclosure modal instead of navigating */
a.btn.ch-cta-disclosure {
  opacity: 0.68;
  cursor: pointer;
}
a.btn.ch-cta-disclosure:hover,
a.btn.ch-cta-disclosure:focus-visible {
  opacity: 0.82;
}

body.has-ch-reg-banner .navbar.fixed-top {
  top: var(--ch-reg-banner-height);
}
body.has-ch-reg-banner .hero-split-text {
  padding-top: calc(8rem + var(--ch-reg-banner-height));
}
body.has-ch-reg-banner .page-header {
  padding-top: calc(7rem + var(--ch-reg-banner-height));
}
@media (max-width: 991.98px) {
  body.has-ch-reg-banner .hero-split-text {
    padding-top: calc(7rem + var(--ch-reg-banner-height));
  }
}

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.navbar-scrolled {
  background-color: #fff !important;
  box-shadow: 0 1px 20px rgba(0,0,0,.08) !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.navbar-brand .ch-logo-img {
  height: 72px;
  width: auto;
  display: block;
}
.navbar { background-color: #fff !important; box-shadow: var(--ch-shadow-sm); }
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .01em;
  padding-left: .9rem !important;
  padding-right: .9rem !important;
  transition: color 0.2s;
  color: #3a3a3a;
}
.nav-link:hover,.nav-link.active { color: var(--ch-primary) !important; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--ch-primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,51,41,.85) 0%, rgba(26,51,41,.62) 55%, rgba(26,51,41,.22) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 8rem 0 5rem; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--ch-font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: normal; color: #F0B97A; }
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.80);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-stat-row { display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stat {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: .875rem;
  padding: 1rem 1.25rem;
  min-width: 110px;
  color: #fff;
}
.hero-stat-number {
  font-family: var(--ch-font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  color: #F0B97A;
}
.hero-stat-label { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; opacity: .75; margin-top: .3rem; }

/* ── Photo frames ────────────────────────────────────────────── */
.photo-frame {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--ch-shadow-float);
  position: relative;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 140px; height: 140px;
  background-color: var(--ch-secondary);
  border-radius: 1rem;
  z-index: -1;
  opacity: .5;
}
.photo-frame-accent-lt {
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  width: 100px; height: 100px;
  background-color: var(--ch-primary-light);
  border-radius: .875rem;
  z-index: -1;
}
.photo-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: rgba(26,51,41,.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: .875rem;
  padding: .65rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  z-index: 2;
}
.photo-badge i { color: #F0B97A; font-size: 1rem; }

/* ── Service / feature cards with photo ─────────────────────── */
.service-card {
  border-radius: 1.125rem;
  overflow: hidden;
  position: relative;
  background: var(--ch-surface);
  box-shadow: var(--ch-shadow-card);
  border: 1px solid var(--ch-border);
  transition: transform 0.28s cubic-bezier(.22,.61,.36,1), box-shadow 0.28s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--ch-shadow-hover); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.service-card-body { padding: 1.5rem; }

/* ── Quote block ─────────────────────────────────────────────── */
.quote-block {
  border-left: 4px solid var(--ch-secondary);
  padding: 1.25rem 1.75rem;
  background: var(--ch-surface);
  border-radius: 0 .875rem .875rem 0;
  box-shadow: var(--ch-shadow-card);
}
.quote-block blockquote {
  font-family: var(--ch-font-heading);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ch-text);
  font-style: italic;
  margin: 0;
}

/* ── Trust band ──────────────────────────────────────────────── */
.trust-band { background: var(--ch-primary-dark); color: #fff; padding: 1.25rem 0; }
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  opacity: .92;
  white-space: nowrap;
}
.trust-pill i { color: #F0B97A; }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  border-radius: var(--ch-radius-card);
  border: 1px solid var(--ch-border);
  box-shadow: var(--ch-shadow-card);
  background: var(--ch-surface);
  transition: transform 0.26s cubic-bezier(.22,.61,.36,1), box-shadow 0.26s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--ch-shadow-hover); }
.card-borderless { border: none !important; }

/* ── Value items ─────────────────────────────────────────────── */
.value-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--ch-radius-card);
  background: var(--ch-surface);
  border: 1px solid var(--ch-border);
  transition: box-shadow 0.22s, transform 0.22s;
}
.value-item:hover { transform: translateY(-3px); box-shadow: var(--ch-shadow-hover); }

/* ── Step numbers ────────────────────────────────────────────── */
.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ch-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ch-font-heading);
  font-size: 1.15rem; font-weight: 700;
  flex-shrink: 0;
}

/* ── Stat values ─────────────────────────────────────────────── */
.stat-value {
  font-family: var(--ch-font-heading);
  font-size: 2.4rem; font-weight: 900; line-height: 1;
  color: var(--ch-primary);
}

/* ── Divider / label ─────────────────────────────────────────── */
.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ch-secondary); display: block; margin-bottom: .4rem;
}
.divider-accent {
  width: 44px; height: 3px;
  background: var(--ch-secondary);
  border-radius: 2px;
  margin: .6rem 0 1.25rem;
}
.divider-accent.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Icon box ────────────────────────────────────────────────── */
.icon-bg {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: .875rem;
  background: var(--ch-primary-light);
  flex-shrink: 0;
}
.icon-bg-amber { background: var(--ch-secondary-light); }
.icon-brand { color: var(--ch-primary); }
.icon-amber { color: var(--ch-secondary); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn { border-radius: var(--ch-radius-btn); font-family: var(--ch-font-body); font-weight: 600; letter-spacing: .01em; }
.btn-lg { padding: .75rem 2rem; font-size: .95rem; }

/* ── Checklist ───────────────────────────────────────────────── */
.ch-list { list-style: none; padding: 0; }
.ch-list li { padding: .35rem 0 .35rem 1.75rem; position: relative; color: var(--ch-text-muted); line-height: 1.6; }
.ch-list li::before { content: ''; position: absolute; left: 0; top: .65rem; width: 8px; height: 8px; background: var(--ch-secondary); border-radius: 50%; }

/* ── Badges ──────────────────────────────────────────────────── */
.badge-brand { background: var(--ch-primary-light); color: var(--ch-primary); font-weight: 600; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: .4em .85em; border-radius: .4rem; display: inline-block; }
.badge-amber { background: var(--ch-secondary-light); color: var(--ch-secondary-dark); font-weight: 600; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: .4em .85em; border-radius: .4rem; display: inline-block; }

/* ── Page header (dark with photo) ──────────────────────────── */
.page-header {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 3.5rem;
  background: var(--ch-primary-dark);
  color: #fff;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .2;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: #fff; }
.page-header .breadcrumb-item a { color: rgba(255,255,255,.65); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,.4); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }
.page-header .section-label { color: #F0B97A; }
.page-header .text-muted { color: rgba(255,255,255,.62) !important; }

/* ── Section backgrounds ─────────────────────────────────────── */
.bg-brand-light { background-color: var(--ch-primary-light); }
.bg-brand-amber { background-color: var(--ch-secondary-light); }
.bg-footer      { background-color: var(--ch-footer-bg); }
.bg-surface     { background-color: var(--ch-surface); }

/* ── Full-bleed photo section ────────────────────────────────── */
.photo-section { position: relative; overflow: hidden; }
.photo-section > .photo-section-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.photo-section > .photo-section-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,51,41,.9) 0%, rgba(26,51,41,.6) 60%, rgba(26,51,41,.2) 100%);
}
.photo-section > .container { position: relative; z-index: 2; }

/* ── Mission quote ───────────────────────────────────────────── */
.mission-quote {
  font-family: var(--ch-font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.65;
  color: #fff;
  opacity: .92;
}

/* ── Footer ──────────────────────────────────────────────────── */
footer { background-color: #fff; color: rgba(60,60,60,.7); }
footer a { color: rgba(60,60,60,.65); text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--ch-primary); }
footer h6 { color: #3a3a3a; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .75rem; font-family: var(--ch-font-body); }
.footer-divider { border-color: rgba(60,60,60,.12); }

/* ── Contact tiles ───────────────────────────────────────────── */
.contact-tile {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: .875rem;
  background: var(--ch-surface);
  border: 1px solid var(--ch-border);
  transition: box-shadow .22s;
}
.contact-tile:hover { box-shadow: var(--ch-shadow-hover); }

/* ── Forms ───────────────────────────────────────────────────── */
.form-control, .form-select {
  border-color: var(--ch-border);
  border-radius: .625rem;
  padding: .65rem .9rem;
  font-size: .92rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--ch-primary);
  box-shadow: 0 0 0 3px rgba(61,107,87,.12);
}
.form-label { font-weight: 600; font-size: .87rem; margin-bottom: .4rem; }

/* ── Utility ─────────────────────────────────────────────────── */
.text-white-75  { color: rgba(255,255,255,.75) !important; }
.text-white-55  { color: rgba(255,255,255,.55) !important; }
.text-amber     { color: var(--ch-secondary) !important; }
.rounded-xl     { border-radius: 1.25rem !important; }
.object-cover   { object-fit: cover; }
hr { border-color: var(--ch-border); opacity: 1; }
.breadcrumb-item a { color: var(--ch-primary); text-decoration: none; }
.breadcrumb-item a:hover { text-decoration: underline; }

/* ── Split Hero ──────────────────────────────────────────────── */
.hero-split {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero-split-text {
  background: var(--ch-primary-dark);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 8rem 3rem 5rem;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
}
.hero-split-text > div {
  width: 100%;
  max-width: 520px;
}
@media (min-width: 1400px) {
  .hero-split-text { padding-right: 4rem; padding-left: calc((100vw / 2) - 640px); }
}
@media (max-width: 991.98px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-text { clip-path: none; padding: 7rem 1.5rem 4rem; justify-content: flex-start; }
  .hero-split-img { min-height: 55svh; }
  .hero-float-card { left: 1rem !important; right: 1rem; bottom: 1.5rem !important; }
}
.hero-split-img {
  position: relative;
  overflow: hidden;
}
.hero-split-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-split-img > img.loaded { transform: scale(1); }
.hero-split-title {
  font-family: var(--ch-font-heading);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 900;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-split-title em {
  font-style: normal;
  color: #F0B97A;
  text-decoration: underline;
  text-decoration-style: wavy;
  text-underline-offset: 6px;
  text-decoration-color: rgba(240,185,122,.35);
}
.hero-split-lead {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2.25rem;
}
.hero-split-divider {
  width: 52px;
  height: 3px;
  background: var(--ch-secondary);
  border-radius: 2px;
  margin: .5rem 0 1.5rem;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 2.25rem;
}
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.82);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 100px;
}
.hero-trust-pill i { color: #F0B97A; font-size: .8rem; }
.hero-float-card {
  position: absolute;
  bottom: 2.5rem;
  left: 1.75rem;
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  padding: 1.1rem 1.6rem;
  display: flex;
  gap: 1.5rem;
  z-index: 5;
  border: 1px solid rgba(0,0,0,.05);
}
.hero-float-stat { text-align: center; min-width: 64px; }
.hero-float-stat + .hero-float-stat { border-left: 1px solid #E4E0DA; padding-left: 1.5rem; }
.hero-float-stat-number {
  font-family: var(--ch-font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--ch-primary);
}
.hero-float-stat-label {
  font-size: .65rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ch-text-muted);
  margin-top: .3rem;
}

