/* =========================
   RFP NAV FONT + SIZE OVERRIDE (Squarespace 7.1)
   Full replacement
   ========================= */

/* Set the Reach For Peace nav font (brand-aligned) */
:root{
  --rfp-nav-font: 'Alata', sans-serif;
}

/* Force header + menu links to use RFP nav font */
header a,
.Header a,
.header a,
#header a,
[data-section-id*="header"] a,
.Header-nav a,
.Header-nav-item a,
.Header-menu a,
.Header-menu-nav a,
.Header-menu-nav-item a,
.header-nav a,
.header-nav-item a,
.header-menu a,
.header-menu-nav a,
.header-menu-nav-item a,
.header-display-desktop a,
.header-display-mobile a{
  font-family: var(--rfp-nav-font) !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}

/* Keep header CTAs consistent with site buttons */
.Header-actions a,
.Header-actions button,
.header-actions a,
.header-actions button,
header .sqs-button-element,
header .rfp-btn{
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
}

/* =========================
   NAV SIZE TUNING
   ========================= */

/* Desktop nav links */
@media (min-width: 768px){
  .Header-nav a,
  .Header-nav-item a,
  .header-nav a,
  .header-nav-item a,
  header a[href]{
    font-size: 16px !important;
    line-height: 1.2 !important;
  }
}

/* Mobile menu links (opened menu) */
@media (max-width: 767px){
  .Header-menu a,
  .Header-menu-nav a,
  .Header-menu-nav-item a,
  .header-menu a,
  .header-menu-nav a,
  .header-menu-nav-item a{
    font-size: 30px !important;
    line-height: 1.3 !important;
  }
}

/* =========================
   RFP NAV FONT + SAFE POLISH (7.1)
   Does NOT touch menu containers/overlays
   ========================= */

/* Set a single source of truth */
:root{
  --rfp-nav-font: 'Montserrat', sans-serif;
  --rfp-nav-color: rgba(18,18,18,0.92);
  --rfp-nav-muted: rgba(18,18,18,0.72);
  --rfp-nav-underline: rgba(18,18,18,0.28);
}

/* Force header/menu text to use Montserrat */
header,
.Header,
.header,
#header,
[data-section-id*="header"]{
  font-family: var(--rfp-nav-font) !important;
}

/* All header links */
header a,
.Header a,
.header a,
#header a,
[data-section-id*="header"] a{
  font-family: var(--rfp-nav-font) !important;
  color: var(--rfp-nav-color) !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
}

/* Desktop nav links */
@media (min-width: 768px){
  .Header-nav a,
  .Header-nav-item a,
  .header-nav a,
  .header-nav-item a{
    font-size: 16px !important;   /* bump this */
    font-weight: 600 !important;
    line-height: 1.2 !important;
  }
}

/* Mobile menu links (opened menu) */
@media (max-width: 767px){
  .Header-menu a,
  .Header-menu-nav a,
  .Header-menu-nav-item a,
  .header-menu a,
  .header-menu-nav a,
  .header-menu-nav-item a{
    font-size: 30px !important;   /* big, but not insane */
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.01em !important;
  }
}

/* Simple "premium" hover: underline that doesn't affect layout */
.Header-nav a,
.Header-nav-item a,
.header-nav a,
.header-nav-item a,
.Header-menu a,
.Header-menu-nav a,
.Header-menu-nav-item a,
.header-menu a,
.header-menu-nav a,
.header-menu-nav-item a{
  text-decoration: none !important;
  background-image: linear-gradient(var(--rfp-nav-underline), var(--rfp-nav-underline));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: background-size 180ms ease, color 180ms ease;
}

/* Hover */
.Header-nav a:hover,
.Header-nav-item a:hover,
.header-nav a:hover,
.header-nav-item a:hover,
.Header-menu a:hover,
.Header-menu-nav a:hover,
.Header-menu-nav-item a:hover,
.header-menu a:hover,
.header-menu-nav a:hover,
.header-menu-nav-item a:hover{
  background-size: 100% 2px;
  color: var(--rfp-nav-color) !important;
}

/* Current page */
.Header-nav a[aria-current="page"],
.Header-nav-item a[aria-current="page"],
.header-nav a[aria-current="page"],
.header-nav-item a[aria-current="page"]{
  background-size: 100% 2px;
}




/* ======================================
   RFP FONT TOKENS + NAV OVERRIDES
   ====================================== */

:root{
  --rfp-font-sans: 'Montserrat', sans-serif;
  --rfp-font-display: 'Bebas Neue', sans-serif;
  --rfp-font-kicker: 'Alata', sans-serif;

  --rfp-blue: #5a86ad;
  --rfp-slate: #2b3d4d;
  --rfp-bg: #f2f4f6;
  --rfp-white: #ffffff;
}

/* Navbar: force the site font system (Squarespace can override otherwise) */
.header-nav-item a,
.header-menu-nav-item a,
.header-actions a,
.header-actions button,
.header-nav-folder-title{
  font-family: var(--rfp-font-sans) !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

/* Optional: slightly tighter mobile menu */
.header-menu-nav-item a{
  letter-spacing: 0.03em;
}


/* ======================================
   RFP STACK SYSTEM (single source of truth)
   ====================================== */

/* Stop Squarespace code wrapper padding from introducing mystery gaps */
.sqs-block-code,
.sqs-block-code .sqs-block-content{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Vertical rhythm is owned here, not by individual sections */
.rfp-stack{
  display: flex;
  flex-direction: column;
  gap: 28px; /* mobile rhythm */
}

/* Desktop rhythm */
@media (min-width: 768px){
  .rfp-stack{ gap: 56px; }
}

/* Prevent any section root margins from creating phantom whitespace */
.rfp-stack > section{
  margin: 0 !important;
}

/* Prevent “last child margin” from adding invisible trailing space */
.rfp-stack > section > :last-child{
  margin-bottom: 0 !important;
}

/* Shared box model safety */
.rfp-stack,
.rfp-stack *{
  box-sizing: border-box;
}


/* ======================================
   Shared Button Primitive
   ====================================== */

.rfp-btn{
  font-family: var(--rfp-font-sans);
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;

  padding: 13px 18px;
  border-radius: 12px;
  min-height: 46px;

  width: 85%;
  max-width: 340px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: filter .2s ease, background .2s ease, border-color .2s ease;
}

.rfp-btn--primary{
  background: var(--rfp-blue);
  color: #ffffff;
  border: none;
}
.rfp-btn--primary:hover{ filter: brightness(.93); }

.rfp-btn--secondary{
  background: transparent;
  border: 2px solid rgba(242,244,246,.75);
  color: rgba(242,244,246,.9);
}
.rfp-btn--secondary:hover{ background: rgba(255,255,255,.08); }

/* Start Here secondary button should be legible on white */
.rfp-start .rfp-btn--secondary{
  background: rgba(242,244,246,.95);
  color: var(--rfp-slate);
  border: 2px solid rgba(43,61,77,.26);
}

.rfp-start .rfp-btn--secondary:hover{
  background: rgba(242,244,246,1);
  border-color: rgba(43,61,77,.38);
}

/* Final section uses standard .rfp-btn on dark background */
.rfp-final .rfp-btn{
  width: 85%;
  max-width: 320px;
}

.rfp-final .rfp-btn--secondary{
  border: 2px solid rgba(242,244,246,0.70);
  color: rgba(242,244,246,0.92);
  background: transparent;
}

.rfp-final .rfp-btn--secondary:hover{
  background: rgba(255,255,255,0.08);
}


/* ======================================
   HERO (Homepage)
   ====================================== */

.rfp-hero{
  background: var(--rfp-slate);
  border-radius: 18px;
  overflow: hidden;
}

.rfp-hero__inner{
  max-width: 1100px;
  margin: 0 auto;
}

.rfp-hero__image-wrap{
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.rfp-hero__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rfp-hero__copy{
  padding: 60px 20px 70px;
  text-align: left;
  color: rgba(242,244,246,.92);
}

.rfp-hero__brand{
  font-family: var(--rfp-font-kicker);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  margin: 0 0 12px 0;
  color: rgba(242,244,246,.75);
}

.rfp-hero__h1{
  font-family: var(--rfp-font-display);
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: 1px;
  margin: 0 0 14px 0;
  color: #ffffff;
}

.rfp-hero__lead{
  font-family: var(--rfp-font-sans);
  font-size: 18px;
  margin: 0 0 6px 0;
}

.rfp-hero__accent-line{
  font-family: var(--rfp-font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--rfp-blue);
  margin: 0 0 16px 0;
}

.rfp-hero__body{
  font-family: var(--rfp-font-sans);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 12px 0;
}

.rfp-hero__body a{
  color: rgba(242,244,246,.92);
  font-weight: 700;
  text-decoration: underline;
}

.rfp-hero__cta{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

/* HERO microcopy + trust spacing/hierarchy (scoped) */
.rfp-hero__micro{
  margin-top: 14px;
  font-size: 13.5px;
  opacity: .85;
}

.rfp-hero__trust{
  margin-top: 10px;
  font-family: var(--rfp-font-sans);
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(242,244,246,.72);
  max-width: 520px;
}

.rfp-hero__trust p{ margin: 0 0 8px 0; }

.rfp-hero__trust strong{
  color: rgba(242,244,246,.92);
  font-weight: 600;
}

.rfp-hero__trust a{
  color: rgba(242,244,246,.92);
  text-decoration: underline;
}

@media(min-width: 900px){
  .rfp-hero__inner{
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .rfp-hero__image-wrap{
    aspect-ratio: auto;
    height: 100%;
    min-height: 560px;
  }

  .rfp-hero__image{ height: 100%; }

  .rfp-hero__copy{ padding: 90px 50px; }

  .rfp-hero__h1{ font-size: 58px; }

  .rfp-hero__cta{ align-items: flex-start; }

  .rfp-hero .rfp-btn{
    width: auto;
    max-width: none;
  }
}
/* ==========================================
   CONSULTATION PAGE – SPECIAL HERO + MOBILE CTA
   Scoped to the Schedule Consultation page only
   via aria-label on the rfp-stack wrapper.
   ========================================== */

/* Make the hero feel special without changing your system */
.rfp-stack[aria-label="Schedule Consultation Page Sections"] .rfp-start{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(43,61,77,.10);
  box-shadow: 0 18px 48px rgba(43,61,77,.08);
  background: rgba(255,255,255,1);
}

.rfp-stack[aria-label="Schedule Consultation Page Sections"] .rfp-start::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(90,134,173,.14), transparent 60%),
    radial-gradient(760px 360px at 90% 30%, rgba(43,61,77,.07), transparent 60%),
    linear-gradient(180deg, rgba(242,244,246,.72), rgba(255,255,255,1));
  z-index: 0;
}

.rfp-stack[aria-label="Schedule Consultation Page Sections"] .rfp-start__inner{
  position: relative;
  z-index: 1;
}

/* Optional: tighten CTA alignment if needed on desktop */
.rfp-stack[aria-label="Schedule Consultation Page Sections"] .rfp-start__cta{
  align-items: center;
}

/* ==========================================
   CONSULTATION PAGE – SPECIAL HERO + MOBILE CTA
   Scoped to the Schedule Consultation page only
   via aria-label on the rfp-stack wrapper.
   ========================================== */

/* Make the hero feel special without changing your system */
.rfp-stack[aria-label="Schedule Consultation Page Sections"] .rfp-start{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(43,61,77,.10);
  box-shadow: 0 18px 48px rgba(43,61,77,.08);
  background: rgba(255,255,255,1);
}

.rfp-stack[aria-label="Schedule Consultation Page Sections"] .rfp-start::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(90,134,173,.14), transparent 60%),
    radial-gradient(760px 360px at 90% 30%, rgba(43,61,77,.07), transparent 60%),
    linear-gradient(180deg, rgba(242,244,246,.72), rgba(255,255,255,1));
  z-index: 0;
}

.rfp-stack[aria-label="Schedule Consultation Page Sections"] .rfp-start__inner{
  position: relative;
  z-index: 1;
}

/* Optional: tighten CTA alignment if needed on desktop */
.rfp-stack[aria-label="Schedule Consultation Page Sections"] .rfp-start__cta{
  align-items: center;
}




/* ======================================
   RELATE (Homepage)
   ====================================== */

.rfp-relate{
  background: var(--rfp-bg);
  border-radius: 18px;
  padding: clamp(44px, 5.5vw, 64px) 20px;
  overflow: hidden;
}

.rfp-relate__inner{
  max-width: 960px;
  margin: 0 auto;
}

.rfp-relate__h2{
  font-family: var(--rfp-font-display);
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: .8px;
  margin: 0 0 10px 0;
  color: var(--rfp-slate);
}

.rfp-relate__accent{ color: var(--rfp-blue); font-weight: 600; }

.rfp-relate__sub{
  font-family: var(--rfp-font-sans);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 14px 0;
  color: rgba(43,61,77,.86);
  max-width: 720px;
}

.rfp-relate__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 760px;
  margin: 0 0 14px 0;
}

.rfp-relate__item{
  font-family: var(--rfp-font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(43,61,77,.90);

  background: rgba(255,255,255,.72);
  border: 1px solid rgba(43,61,77,.10);
  border-radius: 14px;

  padding: 11px 14px;
  position: relative;
  padding-left: 16px;
}

.rfp-relate__item::before{
  content:"";
  position:absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: rgba(90,134,173,.55);
}

.rfp-relate__closer{
  font-family: var(--rfp-font-sans);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  color: var(--rfp-slate);
  font-weight: 700;
  max-width: 760px;
}

@media (min-width: 900px){
  .rfp-relate__h2{ font-size: 40px; }

  .rfp-relate__grid{
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    grid-auto-rows: 1fr;
    align-items: stretch;
  }

  .rfp-relate__item{
    height: 100%;
    display: flex;
    align-items: center;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 767px){
  .rfp-relate{
    padding: 56px 18px;
    border-radius: 16px;
  }
  .rfp-relate__h2{ font-size: 32px; }
  .rfp-relate__sub{ font-size: 16.5px; }
  .rfp-relate__closer{ font-size: 16.5px; }
}


/* ======================================
   MEET (Homepage)
   ====================================== */

.rfp-meet{
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(52px, 5.2vw, 72px) 20px;
}

.rfp-meet__inner{ max-width: 1050px; margin: 0 auto; }

.rfp-meet__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 900px){
  .rfp-meet__grid{
    grid-template-columns: 0.95fr 1.05fr;
    gap: 32px;
  }
}

.rfp-meet__image-wrap{
  border-radius: 18px;
  overflow: hidden;
  background: #f2f4f6;
}

.rfp-meet__image{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.rfp-meet__h2{
  font-family: var(--rfp-font-display);
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: .8px;
  margin: 0 0 10px 0;
  color: var(--rfp-slate);
}

.rfp-meet__role{
  font-family: var(--rfp-font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 14px 0;
  color: rgba(43,61,77,.70);
}

.rfp-meet__body{
  font-family: var(--rfp-font-sans);
  font-size: 16.8px;
  line-height: 1.7;
  margin: 0 0 14px 0;
  color: rgba(43,61,77,.88);
  max-width: 620px;
}

.rfp-meet__cta{
  margin-top: 14px;
  display: flex;
  justify-content: flex-start;
}

.rfp-meet__cta .rfp-btn{
  width: 100%;
  max-width: 240px;
}

@media (max-width: 767px){
  .rfp-meet{
    padding: 62px 18px;
    border-radius: 16px;
  }
  .rfp-meet__h2{ font-size: 34px; }
  .rfp-meet__body{ font-size: 16.2px; }
  .rfp-meet__cta{ justify-content: center; }
  .rfp-meet__cta .rfp-btn{ max-width: 220px; }
}


/* ======================================
   PROCESS (Homepage + reused on Start Here)
   ====================================== */

.rfp-process{
  background: var(--rfp-bg);
  border-radius: 18px;
  padding: clamp(44px, 5.5vw, 78px) 20px;
  overflow: hidden;
}

.rfp-process__inner{ max-width: 960px; margin: 0 auto; }

.rfp-process__head{ max-width: 760px; margin: 0 0 16px 0; }

.rfp-process__h2{
  font-family: var(--rfp-font-display);
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: .8px;
  margin: 0 0 10px 0;
  color: var(--rfp-slate);
}

.rfp-process__sub{
  font-family: var(--rfp-font-sans);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  color: rgba(43,61,77,.86);
}

.rfp-process__steps{
  display: grid;
  gap: 12px;
  margin: 16px 0 0 0;
}

.rfp-step{
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(43,61,77,.10);
  border-radius: 16px;
  padding: 16px;
  min-width: 0;
}

.rfp-step__num{
  font-family: var(--rfp-font-display);
  font-size: 28px;
  color: rgba(90,134,173,.85);
  line-height: 1;
  margin-top: 2px;
}

.rfp-step__title{
  font-family: var(--rfp-font-sans);
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: var(--rfp-slate);
}

.rfp-step__text{
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  color: rgba(43,61,77,.86);
}

.rfp-process__trust{
  margin: 16px auto 14px auto;
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  line-height: 1.6;
  font-weight: 600;
  color: rgba(43,61,77,.82);
  max-width: 720px;
  text-align: center;
}

.rfp-process__cta{
  margin: 0;
  display: flex;
  justify-content: center;
}

.rfp-process .rfp-btn--primary{
  width: 100%;
  max-width: 320px;
}

@media (min-width: 900px){
  .rfp-process__h2{ font-size: 40px; }
}

@media (max-width: 767px){
  .rfp-process{
    padding: 56px 18px;
    border-radius: 16px;
  }

  .rfp-process__h2{ font-size: 32px; }
  .rfp-process__sub{ font-size: 16.5px; }

  .rfp-step{
    grid-template-columns: 52px 1fr;
    padding: 15px;
  }

  .rfp-step__num{ font-size: 22px; }

  .rfp-process__trust{ font-size: 15px; }

  .rfp-process .rfp-btn--primary{
    max-width: 280px;
    font-size: 15px;
    min-height: 44px;
  }
}


/* ======================================
   FINAL (Homepage + reused)
   ====================================== */

.rfp-final{
  background: var(--rfp-slate);
  border-radius: 18px;
  text-align: center;
  padding: 48px 20px 72px;
}

.rfp-final__inner{
  max-width: 820px;
  margin: 0 auto;
}

.rfp-final__h2{
  font-family: var(--rfp-font-display);
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: 0.8px;
  margin: 0 0 18px 0;
  color: #ffffff;
}

.rfp-final__copy{
  font-family: var(--rfp-font-sans);
  font-size: 19px;
  line-height: 1.7;
  color: rgba(242,244,246,0.88);
  margin: 0 0 18px 0;
}

.rfp-final__copy p{ margin: 0 0 8px 0; }
.rfp-final__copy p:last-child{ margin-bottom: 0; }

.rfp-final__accent{ color: var(--rfp-blue); font-weight: 700; }

.rfp-final__closing{
  font-family: var(--rfp-font-sans);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 22px 0;
  color: rgba(242,244,246,0.9);
}

.rfp-final__cta{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (max-width: 767px){
  .rfp-final{
    border-radius: 16px;
    padding: 40px 18px 26px;
  }

  .rfp-final__h2{
    font-size: 34px;
    margin-bottom: 14px;
  }

  .rfp-final__copy{
    font-size: 17px;
    margin-bottom: 14px;
  }

  .rfp-final__closing{
    font-size: 16.5px;
    margin-bottom: 18px;
  }

  .rfp-final .rfp-btn{ max-width: 420px; }
}


/* ======================================
   Shared Link Row Helper (quiet CTAs)
   ====================================== */

.rfp-linkrow{
  margin: 18px 0 0 0;
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(43,61,77,.80);
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.rfp-linkrow a{
  color: var(--rfp-blue);
  font-weight: 700;
  text-decoration: none;
}

.rfp-linkrow a:hover{
  text-decoration: underline;
}

@media (min-width: 900px){
  .rfp-linkrow{ text-align: left; }
}


/* ======================================
   START HERE HERO (also used by Contact + Consultation)
   ====================================== */

.rfp-start{
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(52px, 5.2vw, 72px) 20px;
}

.rfp-start__inner{ max-width: 980px; margin: 0 auto; }

.rfp-start__kicker{
  font-family: var(--rfp-font-kicker);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  margin: 0 0 10px 0;
  color: rgba(43,61,77,.70);
}

.rfp-start__h1{
  font-family: var(--rfp-font-display);
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: .8px;
  margin: 0 0 10px 0;
  color: var(--rfp-slate);
}

.rfp-start__sub{
  font-family: var(--rfp-font-sans);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  color: rgba(43,61,77,.86);
  max-width: 72ch;
}

.rfp-start__cta{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.rfp-start__micro{
  margin: 10px 0 0 0;
  font-family: var(--rfp-font-sans);
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(43,61,77,.72);
  text-align: center;
}

/* ======================================
   Insurance Note Helper (Start Here)
   ====================================== */

.rfp-insurance-note{
  margin-top: 16px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(43,61,77,.10);
  border-radius: 16px;
  padding: 16px;
  max-width: 1000px;
}

.rfp-insurance-note__title{
  font-family: 'Montserrat', sans-serif;
  font-size: 15.5px;
  font-weight: 900;
  margin: 0 0 6px 0;
  color: #2b3d4d;
}

.rfp-insurance-note__text{
  font-family: 'Montserrat', sans-serif;
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  color: rgba(43,61,77,.86);
}

@media (max-width: 767px){
  .rfp-insurance-note{
    border-radius: 16px;
    padding: 14px;
  }
}

@media (min-width: 900px){
  .rfp-start__h1{ font-size: 58px; }
  .rfp-start__cta{ align-items: flex-start; }
  .rfp-start .rfp-btn{ width: auto; max-width: none; }
}

@media (max-width: 767px){
  .rfp-start{ border-radius: 16px; padding: 62px 18px; }
  .rfp-start__h1{ font-size: 34px; }
  .rfp-start__sub{ font-size: 16.5px; }
}


/* ======================================
   FIT CHECK
   ====================================== */

.rfp-fit{
  background: var(--rfp-bg);
  border-radius: 18px;
  padding: clamp(52px, 5.6vw, 72px) 20px;
}

.rfp-fit__inner{ max-width: 1000px; margin: 0 auto; }

.rfp-fit__h2{
  font-family: var(--rfp-font-display);
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: .8px;
  margin: 0 0 10px 0;
  color: var(--rfp-slate);
}

.rfp-fit__sub{
  font-family: var(--rfp-font-sans);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 16px 0;
  color: rgba(43,61,77,.86);
  max-width: 820px;
}

.rfp-fit__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.rfp-fit__card{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(43,61,77,.10);
  border-radius: 16px;
  border-left: 4px solid rgba(90,134,173,.55);
  padding: 16px 16px 16px 14px;
}

.rfp-fit__title{
  font-family: var(--rfp-font-sans);
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: var(--rfp-slate);
}

.rfp-fit__text{
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  color: rgba(43,61,77,.86);
}

@media (min-width: 900px){
  .rfp-fit__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px){
  .rfp-fit{ border-radius: 16px; padding: 62px 18px; }
  .rfp-fit__h2{ font-size: 32px; }
  .rfp-fit__sub{ font-size: 16.5px; }
}


/* ======================================
   LOGISTICS
   ====================================== */

.rfp-logistics{
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(52px, 5.2vw, 72px) 20px;
}

.rfp-logistics__inner{ max-width: 1000px; margin: 0 auto; }

.rfp-logistics__h2{
  font-family: var(--rfp-font-display);
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: .8px;
  margin: 0 0 10px 0;
  color: var(--rfp-slate);
}

.rfp-logistics__sub{
  font-family: var(--rfp-font-sans);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 16px 0;
  color: rgba(43,61,77,.86);
  max-width: 760px;
}

.rfp-logistics__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.rfp-logistics__card{
  background: rgba(242,244,246,.85);
  border: 1px solid rgba(43,61,77,.10);
  border-radius: 16px;
  padding: 16px;
}

.rfp-logistics__title{
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: var(--rfp-slate);
}

.rfp-logistics__text{
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  color: rgba(43,61,77,.86);
}

.rfp-logistics__micro{
  margin: 14px 0 0 0;
  font-family: var(--rfp-font-sans);
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(43,61,77,.68);
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px){
  .rfp-logistics__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px){
  .rfp-logistics{ border-radius: 16px; padding: 62px 18px; }
  .rfp-logistics__h2{ font-size: 32px; }
  .rfp-logistics__sub{ font-size: 16.5px; }
}


/* ======================================
   FAQ (Start Here + Contact)
   ====================================== */

.rfp-faq{
  background: var(--rfp-bg);
  border-radius: 18px;
  padding: clamp(52px, 5.6vw, 72px) 20px;
}

.rfp-faq__inner{ max-width: 900px; margin: 0 auto; }

.rfp-faq__h2{
  font-family: var(--rfp-font-display);
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: .8px;
  margin: 0 0 14px 0;
  color: var(--rfp-slate);
}

.rfp-faq__list{
  display: grid;
  gap: 12px;
}

.rfp-faq__item{
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(43,61,77,.10);
  border-radius: 16px;
  padding: 16px;
}

.rfp-faq__q{
  font-family: var(--rfp-font-sans);
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: var(--rfp-slate);
}

.rfp-faq__a{
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  color: rgba(43,61,77,.86);
}

.rfp-faq__cta{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.rfp-faq__micro{
  margin: 14px 0 0 0;
  font-family: var(--rfp-font-sans);
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(43,61,77,.68);
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px){
  .rfp-faq .rfp-btn{
    width: 85%;
    max-width: 340px;
  }
}

@media (max-width: 767px){
  .rfp-faq{ border-radius: 16px; padding: 62px 18px; }
  .rfp-faq__h2{ font-size: 32px; }
}


/* ======================================
   CLINICIAN TEMPLATE (Meet Lauren)
   ====================================== */

.rfp-clinician{
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(52px, 5.2vw, 72px) 20px;
}

.rfp-clinician__inner{ max-width: 1100px; margin: 0 auto; }

.rfp-clinician__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px){
  .rfp-clinician__grid{
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }
}

.rfp-clinician__image-wrap{
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #f2f4f6;
}

.rfp-clinician__image{
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}

.rfp-clinician__image-wrap:hover .rfp-clinician__image{
  transform: scale(1.02);
}

.rfp-clinician__kicker{
  font-family: var(--rfp-font-kicker);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  margin: 0 0 10px 0;
  color: rgba(43,61,77,.65);
}

.rfp-clinician__h1{
  font-family: var(--rfp-font-display);
  font-size: 48px;
  line-height: 1.05;
  margin: 0 0 6px 0;
  color: var(--rfp-slate);
}

.rfp-clinician__role{
  font-family: var(--rfp-font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 16px 0;
  color: rgba(43,61,77,.65);
}

.rfp-clinician__lead{
  font-family: var(--rfp-font-sans);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px 0;
  color: var(--rfp-slate);
}

.rfp-clinician__body{
  font-family: var(--rfp-font-sans);
  font-size: 16.8px;
  line-height: 1.7;
  margin: 0 0 14px 0;
  color: rgba(43,61,77,.88);
}

.rfp-clinician__cta{
  margin-top: 18px;
}

/* STYLE SECTION */
.rfp-clinician-style{
  background: #f2f4f6;
  border-radius: 18px;
  padding: clamp(52px, 5.6vw, 72px) 20px;
}

.rfp-clinician-style__inner{ max-width: 1000px; margin: 0 auto; }

.rfp-clinician-style__h2{
  font-family: var(--rfp-font-display);
  font-size: 40px;
  margin: 0 0 20px 0;
  color: var(--rfp-slate);
}

.rfp-clinician-style__grid{
  display: grid;
  gap: 16px;
}

@media (min-width: 900px){
  .rfp-clinician-style__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

.rfp-clinician-style__card{
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(43,61,77,.10);
}

.rfp-clinician-style__title{
  font-family: var(--rfp-font-sans);
  font-weight: 800;
  margin: 0 0 6px 0;
  color: var(--rfp-slate);
}

.rfp-clinician-style__text{
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  color: rgba(43,61,77,.86);
}

/* VIDEO SECTION */
.rfp-clinician-video{
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(52px, 5.2vw, 72px) 20px;
}

.rfp-clinician-video__inner{ max-width: 900px; margin: 0 auto; text-align: center; }

.rfp-clinician-video__h2{
  font-family: var(--rfp-font-display);
  font-size: 40px;
  margin: 0 0 18px 0;
  color: var(--rfp-slate);
}

.rfp-clinician-video__frame{
  border-radius: 18px;
  overflow: hidden;
  background: #f2f4f6;
  padding: 40px;
}

.rfp-clinician-video__placeholder{
  font-family: var(--rfp-font-sans);
  color: rgba(43,61,77,.70);
}

.rfp-clinician-video__caption{
  margin: 14px 0 0 0;
  font-family: var(--rfp-font-sans);
  font-size: 14px;
  color: rgba(43,61,77,.65);
}

/* CREDENTIALS */
.rfp-clinician-credentials{
  background: #f2f4f6;
  border-radius: 18px;
  padding: clamp(52px, 5.6vw, 72px) 20px;
}

.rfp-clinician-credentials__inner{ max-width: 900px; margin: 0 auto; }

.rfp-clinician-credentials__h2{
  font-family: var(--rfp-font-display);
  font-size: 40px;
  margin: 0 0 18px 0;
  color: var(--rfp-slate);
}

.rfp-clinician-credentials__body{
  font-family: var(--rfp-font-sans);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px 0;
  color: rgba(43,61,77,.86);
}

.rfp-clinician-credentials__cta{
  margin-top: 18px;
}


/* ======================================
   LIFE CHAPTERS PAGE
   ====================================== */

/* HERO */
.rfp-lc-hero{
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(52px, 5.2vw, 72px) 20px;
}

.rfp-lc-hero__inner{ max-width: 980px; margin: 0 auto; }

.rfp-lc-hero__kicker{
  font-family: var(--rfp-font-kicker);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  margin: 0 0 10px 0;
  color: rgba(43,61,77,.70);
}

.rfp-lc-hero__h1{
  font-family: var(--rfp-font-display);
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: .8px;
  margin: 0 0 10px 0;
  color: var(--rfp-slate);
}

.rfp-lc-hero__sub{
  font-family: var(--rfp-font-sans);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  color: rgba(43,61,77,.86);
  max-width: 76ch;
}

.rfp-lc-hero__cta{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.rfp-lc-hero__micro{
  margin: 10px 0 0 0;
  font-family: var(--rfp-font-sans);
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(43,61,77,.72);
  text-align: center;
}

/* Make secondary button legible on white */
.rfp-lc-hero .rfp-btn--secondary{
  background: rgba(242,244,246,.95);
  color: var(--rfp-slate);
  border: 2px solid rgba(43,61,77,.26);
}
.rfp-lc-hero .rfp-btn--secondary:hover{
  background: rgba(242,244,246,1);
  border-color: rgba(43,61,77,.38);
}

@media (min-width: 900px){
  .rfp-lc-hero__h1{ font-size: 58px; }
  .rfp-lc-hero__cta{ align-items: flex-start; }
  .rfp-lc-hero .rfp-btn{ width: auto; max-width: none; }
  .rfp-lc-hero__micro{ text-align: left; }
}

@media (max-width: 767px){
  .rfp-lc-hero{ border-radius: 16px; padding: 62px 18px; }
  .rfp-lc-hero__h1{ font-size: 34px; }
  .rfp-lc-hero__sub{ font-size: 16.5px; }
}

/* INDEX */
.rfp-lc-index{
  background: #f2f4f6;
  border-radius: 18px;
  padding: clamp(52px, 5.6vw, 72px) 20px;
}

.rfp-lc-index__inner{ max-width: 1100px; margin: 0 auto; }

.rfp-lc-index__h2{
  font-family: var(--rfp-font-display);
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: .8px;
  margin: 0 0 10px 0;
  color: var(--rfp-slate);
}

.rfp-lc-index__sub{
  font-family: var(--rfp-font-sans);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 16px 0;
  color: rgba(43,61,77,.86);
  max-width: 860px;
}

.rfp-lc-index__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 900px){
  .rfp-lc-index__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.rfp-lc-card{
  display: block;
  text-decoration: none;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(43,61,77,.10);
  border-radius: 16px;
  border-left: 4px solid rgba(90,134,173,.55);
  padding: 16px 16px 16px 14px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.rfp-lc-card:hover{
  transform: translateY(-1px);
  border-color: rgba(43,61,77,.18);
}

.rfp-lc-card__pill{
  display: inline-block;
  font-family: var(--rfp-font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(43,61,77,.88);
  background: rgba(90,134,173,.12);
  border: 1px solid rgba(90,134,173,.16);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.rfp-lc-card__title{
  font-family: var(--rfp-font-sans);
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 6px 0;
  color: var(--rfp-slate);
}

.rfp-lc-card__text{
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  color: rgba(43,61,77,.86);
}

@media (max-width: 767px){
  .rfp-lc-index{ border-radius: 16px; padding: 62px 18px; }
  .rfp-lc-index__h2{ font-size: 32px; }
  .rfp-lc-index__sub{ font-size: 16.5px; }
}

/* Life Chapters index labels */
.rfp-lc-index__label{
  font-family: var(--rfp-font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--rfp-slate);
  opacity: 0.75;
  margin: 0.25rem 0 0.75rem;
}

/* Space between the two groups without changing section rhythm */
.rfp-lc-index__group + .rfp-lc-index__group{
  margin-top: 1rem;
}

/* DETAILS */
.rfp-lc-details{
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(52px, 5.2vw, 72px) 20px;
}

.rfp-lc-details__inner{ max-width: 1100px; margin: 0 auto; }

.rfp-lc-details__h2{
  font-family: var(--rfp-font-display);
  font-size: 40px;
  margin: 0 0 10px 0;
  color: var(--rfp-slate);
}

.rfp-lc-details__sub{
  font-family: var(--rfp-font-sans);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 18px 0;
  color: rgba(43,61,77,.86);
  max-width: 900px;
}

.rfp-lc-block{
  background: rgba(242,244,246,.80);
  border: 1px solid rgba(43,61,77,.10);
  border-radius: 18px;
  padding: 22px;
  margin-top: 14px;
}

.rfp-lc-block:first-of-type{ margin-top: 0; }

.rfp-lc-block__pill{
  display: inline-block;
  font-family: var(--rfp-font-sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(43,61,77,.88);
  background: rgba(90,134,173,.12);
  border: 1px solid rgba(90,134,173,.16);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.rfp-lc-block__title{
  font-family: var(--rfp-font-display);
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: .8px;
  margin: 0 0 8px 0;
  color: var(--rfp-slate);
}

.rfp-lc-block__lede{
  font-family: var(--rfp-font-sans);
  font-size: 16.8px;
  line-height: 1.65;
  margin: 0;
  color: rgba(43,61,77,.86);
  max-width: 900px;
}

.rfp-lc-block__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 900px){
  .rfp-lc-block__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

.rfp-lc-block__card{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(43,61,77,.10);
  border-radius: 16px;
  padding: 16px;
  min-width: 0;
}

.rfp-lc-block__cardtitle{
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  font-weight: 900;
  margin: 0 0 10px 0;
  color: var(--rfp-slate);
}

.rfp-lc-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.rfp-lc-list li{
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(43,61,77,.86);
  position: relative;
  padding-left: 16px;
}

.rfp-lc-list li::before{
  content:"";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(90,134,173,.85);
  box-shadow: 0 0 0 3px rgba(90,134,173,.14);
}

.rfp-lc-block__hope{
  margin: 14px 0 0 0;
  font-family: var(--rfp-font-sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
  color: rgba(43,61,77,.88);
  max-width: 980px;
}

.rfp-lc-block__back{
  margin: 12px 0 0 0;
  font-family: var(--rfp-font-sans);
  font-size: 14px;
}

.rfp-lc-block__back a{
  color: var(--rfp-blue);
  font-weight: 800;
  text-decoration: none;
}
.rfp-lc-block__back a:hover{ text-decoration: underline; }

@media (max-width: 767px){
  .rfp-lc-details{ border-radius: 16px; padding: 62px 18px; }
  .rfp-lc-details__h2{ font-size: 32px; }
  .rfp-lc-details__sub{ font-size: 16.5px; }
  .rfp-lc-block{ border-radius: 16px; padding: 18px; }
  .rfp-lc-block__title{ font-size: 30px; }
}

/* FINAL CTA */
.rfp-lc-final{
  background: var(--rfp-slate);
  border-radius: 18px;
  padding: 48px 20px 56px;
  text-align: center;
}

.rfp-lc-final__inner{ max-width: 860px; margin: 0 auto; }

.rfp-lc-final__h2{
  font-family: var(--rfp-font-display);
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: .8px;
  margin: 0 0 14px 0;
  color: #ffffff;
}

.rfp-lc-final__copy{
  font-family: var(--rfp-font-sans);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 18px 0;
  color: rgba(242,244,246,.88);
}

.rfp-lc-final__cta{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.rfp-lc-final__micro{
  margin: 14px 0 0 0;
  font-family: var(--rfp-font-sans);
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(242,244,246,.70);
}

@media (max-width: 767px){
  .rfp-lc-final{ border-radius: 16px; padding: 40px 18px 30px; }
  .rfp-lc-final__h2{ font-size: 34px; }
  .rfp-lc-final__copy{ font-size: 17px; }
}


/* ======================================
   LIFE CHAPTER: Dedicated Pages (rfp-ch-*)
   ====================================== */

/* HERO */
.rfp-ch-hero{
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(52px, 5.2vw, 72px) 20px;
}

.rfp-ch-hero__inner{ max-width: 980px; margin: 0 auto; }

.rfp-ch-hero__kicker{
  font-family: var(--rfp-font-kicker);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  margin: 0 0 10px 0;
  color: rgba(43,61,77,.70);
}

.rfp-ch-hero__h1{
  font-family: var(--rfp-font-display);
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: .8px;
  margin: 0 0 10px 0;
  color: var(--rfp-slate);
  max-width: 22ch;
}

.rfp-ch-hero__sub{
  font-family: var(--rfp-font-sans);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  color: rgba(43,61,77,.86);
  max-width: 76ch;
}

.rfp-ch-hero__cta{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.rfp-ch-hero__micro{
  margin: 10px 0 0 0;
  font-family: var(--rfp-font-sans);
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(43,61,77,.72);
  text-align: center;
}

@media (min-width: 900px){
  .rfp-ch-hero__h1{ font-size: 58px; }
  .rfp-ch-hero__cta{ align-items: flex-start; }
  .rfp-ch-hero .rfp-btn{ width: auto; max-width: none; }
  .rfp-ch-hero__micro{ text-align: left; }
}

@media (max-width: 767px){
  .rfp-ch-hero{ border-radius: 16px; padding: 62px 18px; }
  .rfp-ch-hero__h1{ font-size: 34px; }
  .rfp-ch-hero__sub{ font-size: 16.5px; }
}

/* SECTION SHELL (shared) */
.rfp-ch-recognition,
.rfp-ch-unsaid,
.rfp-ch-help,
.rfp-ch-process,
.rfp-ch-trust,
.rfp-ch-midcta,
.rfp-ch-faq,
.rfp-ch-final{
  border-radius: 18px;
  padding: clamp(52px, 5.6vw, 72px) 20px;
}

.rfp-ch-recognition,
.rfp-ch-unsaid,
.rfp-ch-help,
.rfp-ch-process,
.rfp-ch-midcta,
.rfp-ch-faq{
  background: #f2f4f6;
}

.rfp-ch-trust,
.rfp-ch-final{
  background: #ffffff;
}

.rfp-ch-recognition__inner,
.rfp-ch-unsaid__inner,
.rfp-ch-help__inner,
.rfp-ch-process__inner,
.rfp-ch-trust__inner,
.rfp-ch-midcta__inner,
.rfp-ch-faq__inner,
.rfp-ch-final__inner{
  max-width: 1000px;
  margin: 0 auto;
}

.rfp-ch-recognition__h2,
.rfp-ch-unsaid__h2,
.rfp-ch-help__h2,
.rfp-ch-process__h2,
.rfp-ch-trust__h2,
.rfp-ch-midcta__h2,
.rfp-ch-faq__h2,
.rfp-ch-final__h2{
  font-family: var(--rfp-font-display);
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: .8px;
  margin: 0 0 10px 0;
  color: var(--rfp-slate);
  max-width: 34ch;
}

.rfp-ch-recognition__copy,
.rfp-ch-unsaid__copy,
.rfp-ch-help__copy,
.rfp-ch-trust__copy,
.rfp-ch-midcta__copy,
.rfp-ch-final__copy{
  font-family: var(--rfp-font-sans);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 14px 0;
  color: rgba(43,61,77,.86);
  max-width: 78ch;
}

.rfp-ch-recognition__close,
.rfp-ch-unsaid__close,
.rfp-ch-help__close{
  font-family: var(--rfp-font-sans);
  font-size: 16.5px;
  line-height: 1.65;
  margin: 14px 0 0 0;
  font-weight: 700;
  color: rgba(43,61,77,.88);
  max-width: 78ch;
}

.rfp-ch-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  max-width: 78ch;
}

.rfp-ch-list li{
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(43,61,77,.86);
  position: relative;
  padding-left: 16px;
}

.rfp-ch-list li::before{
  content:"";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(90,134,173,.85);
  box-shadow: 0 0 0 3px rgba(90,134,173,.14);
}

/* PROCESS STEPS */
.rfp-ch-process__steps{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.rfp-ch-step{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(43,61,77,.10);
  border-radius: 16px;
  border-left: 4px solid rgba(90,134,173,.55);
  padding: 16px 16px 16px 14px;
}

.rfp-ch-step__h3{
  font-family: var(--rfp-font-sans);
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 6px 0;
  color: var(--rfp-slate);
}

.rfp-ch-step__copy{
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  color: rgba(43,61,77,.86);
}

.rfp-ch-process__note{
  margin: 16px 0 0 0;
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  line-height: 1.6;
  font-weight: 600;
  color: rgba(43,61,77,.82);
  max-width: 720px;
}

@media (min-width: 900px){
  .rfp-ch-process__steps{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .rfp-ch-step{ height: 100%; }
}

/* MID CTA */
.rfp-ch-midcta__cta{
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.rfp-ch-midcta__micro{
  margin: 14px 0 0 0;
  font-family: var(--rfp-font-sans);
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(43,61,77,.68);
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ */
.rfp-ch-faq__item{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(43,61,77,.10);
  border-radius: 16px;
  padding: 16px;
  margin-top: 12px;
}

.rfp-ch-faq__item:first-child{ margin-top: 0; }

.rfp-ch-faq__q{
  font-family: var(--rfp-font-sans);
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 6px 0;
  color: var(--rfp-slate);
}

.rfp-ch-faq__a{
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  color: rgba(43,61,77,.86);
}

/* FINAL LINKS */
.rfp-ch-final__cta{
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.rfp-ch-final__links{
  margin: 14px 0 0 0;
  font-family: var(--rfp-font-sans);
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(43,61,77,.80);
  max-width: 900px;
}

.rfp-ch-final__links a{
  color: var(--rfp-blue);
  font-weight: 700;
  text-decoration: none;
}

.rfp-ch-final__links a:hover{ text-decoration: underline; }

@media (max-width: 767px){
  .rfp-ch-recognition,
  .rfp-ch-unsaid,
  .rfp-ch-help,
  .rfp-ch-process,
  .rfp-ch-trust,
  .rfp-ch-midcta,
  .rfp-ch-faq,
  .rfp-ch-final{
    border-radius: 16px;
    padding: 62px 18px;
  }

  .rfp-ch-recognition__h2,
  .rfp-ch-unsaid__h2,
  .rfp-ch-help__h2,
  .rfp-ch-process__h2,
  .rfp-ch-trust__h2,
  .rfp-ch-midcta__h2,
  .rfp-ch-faq__h2,
  .rfp-ch-final__h2{
    font-size: 32px;
  }

  .rfp-ch-recognition__copy,
  .rfp-ch-unsaid__copy,
  .rfp-ch-help__copy,
  .rfp-ch-trust__copy,
  .rfp-ch-midcta__copy,
  .rfp-ch-final__copy{
    font-size: 16.5px;
  }
}


/* ======================================
   RFP GLOBAL MODE TOGGLE (single switch)
   Controlled in Header Injection
   ====================================== */

/* Default safety: OPEN mode */
.rfp-show-when-waitlist{
  display: none !important;
}

/* WAITLIST MODE */
.rfp-mode--waitlist .rfp-show-when-open{
  display: none !important;
}

.rfp-mode--waitlist .rfp-show-when-waitlist{
  display: inline-flex !important;
}

/* OPEN MODE */
.rfp-mode--open .rfp-show-when-waitlist{
  display: none !important;
}

.rfp-mode--open .rfp-show-when-open{
  display: inline-flex !important;
}

/* Text blocks should still behave normally */
.rfp-mode--waitlist p.rfp-show-when-waitlist,
.rfp-mode--waitlist div.rfp-show-when-waitlist,
.rfp-mode--waitlist section.rfp-show-when-waitlist{
  display: block !important;
}

.rfp-mode--open p.rfp-show-when-open,
.rfp-mode--open div.rfp-show-when-open,
.rfp-mode--open section.rfp-show-when-open{
  display: block !important;
}


/* ======================================
   Simple Site Header (static build)
   ====================================== */

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242,244,246,.96);
  border-bottom: 1px solid rgba(43,61,77,.10);
  backdrop-filter: blur(10px);
}

.site-header__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__brand{
  text-decoration: none;
}

.site-header__brandname{
  font-family: var(--rfp-font-kicker);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  color: var(--rfp-slate);
}

.desktop-nav{
  display: none;
  gap: 14px;
}

.desktop-nav a,
.mobile-nav a{
  font-family: var(--rfp-font-sans);
  font-size: 14px;
  font-weight: 600;
  color: rgba(43,61,77,.86);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
}

.desktop-nav a:hover,
.mobile-nav a:hover{
  background: rgba(90,134,173,.12);
  color: rgba(43,61,77,.95);
}

.nav-toggle{
  background: transparent;
  border: 1px solid rgba(43,61,77,.18);
  border-radius: 12px;
  padding: 10px;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle__bar{
  width: 18px;
  height: 2px;
  background: rgba(43,61,77,.75);
  display: block;
}

.mobile-nav{
  width: 100%;
  padding: 10px 20px 18px;
  border-top: 1px solid rgba(43,61,77,.10);
  background: rgba(242,244,246,.98);
}

.mobile-nav a{ display: block; }

@media (min-width: 900px){
  .desktop-nav{ display: inline-flex; }
  .nav-toggle{ display: none; }
  .mobile-nav{ display: none !important; }
}


/* ======================================
   Footer (moved from Squarespace inline)
   ====================================== */

.rfp-footer{
  --blue:#5a86ad;
  --slate:#2b3d4d;
  --bg:#f2f4f6;

  background: var(--bg);
  border-top: 1px solid rgba(43,61,77,.12);
  padding: 64px 0;
  box-sizing: border-box;
}

.rfp-footer__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 26px;
  box-sizing: border-box;
}

@media (min-width: 900px){
  .rfp-footer__inner{
    grid-template-columns: 1.15fr .85fr 1.4fr;
    column-gap: 36px;
    align-items: start;
  }
}

.rfp-footer__brand{
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rfp-footer__logo{
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(43,61,77,.10);
}

.rfp-footer__logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.rfp-footer__name{
  font-family: var(--rfp-font-kicker);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 6px 0;
  color: var(--slate);
}

.rfp-footer__tag{
  font-family: var(--rfp-font-sans);
  font-size: 15px;
  margin: 0;
  color: rgba(43,61,77,.75);
  max-width: 420px;
}

.rfp-footer__links{
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.rfp-footer__links a{
  font-family: var(--rfp-font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.rfp-footer__links a:hover{
  border-color: var(--blue);
  color: var(--slate);
}

.rfp-footer__meta{
  font-family: var(--rfp-font-sans);
  font-size: 14px;
  color: rgba(43,61,77,.72);
  line-height: 1.6;
}

.rfp-footer__meta p{ margin: 0 0 6px 0; }

.rfp-footer__crisis{
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(90,134,173,.10);
  border: 1px solid rgba(43,61,77,.10);
  color: rgba(43,61,77,.85);
  font-size: 13.8px;
  max-width: 720px;
}

.rfp-footer__copyright{
  margin-top: 12px;
  font-size: 13px;
  color: rgba(43,61,77,.55);
}

@media (max-width: 767px){
  .rfp-footer{ padding: 52px 0; }
  .rfp-footer__inner{ padding: 0 18px; }
  .rfp-footer__brand{ align-items: center; }
  .rfp-footer__logo{ width: 40px; height: 40px; flex-basis: 40px; }
  .rfp-footer__links{ flex-direction: column; gap: 10px; }
  .rfp-footer__links a{ font-size: 15px; }
  .rfp-footer__crisis{ font-size: 13.5px; }
}


/* Accessibility */
.skip-link{position:absolute;left:-999px;top:10px;background:#fff;padding:10px 12px;border-radius:10px;border:1px solid rgba(43,61,77,.2);z-index:100;}
.skip-link:focus{left:10px;}
