/* =============================================
   ORLÉ — BRAND DIAGNOSTIC PAGE
   Built from the Figma design (node 1779:513).
   Type sizes match the homepage scale.
   ============================================= */

/* ---- Reset the global `p { max-width: 600px }` from style.css.
       Without this, every <p> renders 600px wide flush-left, so
       text-align: center on the parent just centers text inside that
       left-stuck 600px box instead of across the section. ---- */
.bd-hero p,
.bd-what p,
.bd-examine p,
.bd-deliv p,
.bd-invest p,
.bd-whofor p,
.bd-faq p,
.bd-finalcta p {
  max-width: none;
}

/* ---- Shared utilities (page-scoped) ---- */
.bd-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  margin: 0;
}
.bd-eyebrow--light { color: var(--hp-cream); }


/* =============================================
   SHARED CTA BUTTONS — match .hp-hero-cta
   ============================================= */
.bd-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 0.75rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  border: 3px solid transparent;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bd-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 6px 8px 10px rgba(0, 0, 0, 0.25);
}
.bd-cta-btn--apply {
  background: var(--hp-navy);
  color: var(--hp-blue);
  border-color: var(--hp-blue);
}
.bd-cta-btn--waitlist {
  background: var(--hp-maroon);
  color: var(--hp-pink);
  border-color: var(--hp-pink);
}


/* =============================================
   SECTION 1 · HERO
   Centered layout, blurred portrait background,
   pink highlight strips behind text lines.
   ============================================= */
.bd-hero {
  position: relative;
  background: var(--hp-cream);
  padding: calc(16px + 62px + 3rem) clamp(1rem, 4vw, 4rem) 3rem;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* Blurred portrait background image */
.bd-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background: var(--hp-maroon); /* fallback colour while bg loads / if missing */
}
.bd-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;    /* lift the framing so eyes are visible */
  filter: blur(8.25px) saturate(1.2);
  transform: scale(1.04);        /* hide blur edges with a small overscan */
}

/* Decorative blue band — implemented as a pseudo-element on the
   headline (see .bd-hero-heading::before) so it always sits behind
   the headline regardless of section height. The empty
   <div class="bd-hero-band"> is kept for backwards compatibility but
   hidden. */
.bd-hero-band { display: none; }

.bd-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.bd-hero-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 550;
  letter-spacing: 0.05em;
  color: var(--hp-blue);
  text-transform: uppercase;
  margin: 0 0 0.25rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.bd-hero-heading {
  font-family: var(--hp-cursive);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 4rem);
  color: var(--hp-maroon);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 0.25rem;
  text-shadow: 0 4px 4px rgba(245, 245, 245, 0.8);
  white-space: nowrap;
  position: relative;
}

/* Blue band sits behind the headline. Anchored to the heading's top
   edge (top: 0.4em) so the user-approved top position is preserved,
   and grows downward via height to land just below the lowercase
   letters / x-height baseline. The parent .bd-hero-inner is
   z-index: 2 with position: relative — that's the local stacking
   context, so z-index: -1 here pushes the band behind the heading
   text but still above the blurred portrait background. */
.bd-hero-heading::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0.4em;
  transform: translateX(-50%);
  width: 100vw;
  height: 0.75em;
  background: var(--hp-blue);
  z-index: -1;
  pointer-events: none;
}

/* Pink highlight strips behind text lines (using <mark>) */
.bd-hero-eyebrow,
.bd-hero-body p {
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

.bd-hero-eyebrow mark,
.bd-hero-body mark {
  background: var(--hp-pink);
  color: var(--hp-maroon);
  padding: 0.3em 0.7em;
  display: inline-block;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: nowrap;
}

.bd-hero-eyebrow {
  margin-top: 1rem;
}
.bd-hero-eyebrow mark {
  font-family: var(--font-body);
  font-weight: 550;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bd-hero-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.bd-hero-body mark {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

.bd-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}


/* =============================================
   SECTION 2 · WHAT IT IS
   Maroon background. Blue Cormorant heading + body
   on the left, cream blue-bordered card on the right.
   ============================================= */
.bd-what {
  background: var(--hp-maroon);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
}

.bd-what-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 3rem;
  align-items: start;
}

.bd-what-left { display: flex; flex-direction: column; gap: 1.25rem; }

.bd-what-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 3rem);
  color: var(--hp-blue);
  line-height: 1.5;
  letter-spacing: -0.05em;
  margin: 0;
}
.bd-what-heading em {
  font-style: italic;
  font-weight: 550;
}

.bd-what-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--hp-cream);
  line-height: 1.7;
  letter-spacing: -0.02em;
  max-width: 560px;
  margin: 0;
}
.bd-what-body p { margin: 0; }

.bd-what-card {
  background: var(--hp-cream);
  border: 4px solid var(--hp-blue);
  border-radius: 20px;
  box-shadow: 5px 6px 7.2px rgba(0, 0, 0, 0.25);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.bd-card-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 200;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-maroon);
  margin: 0 0 0.25rem;
}

.bd-what-list {
  list-style: decimal;
  padding-left: 1.25rem;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.bd-what-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--hp-maroon);
  letter-spacing: -0.02em;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(100, 10, 34, 0.18);
  line-height: 1.4;
}
.bd-what-list li:first-child { padding-top: 0.25rem; }
.bd-what-list li strong { font-weight: 700; }

.bd-what-card-note {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--hp-maroon);
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin: 0;
}


/* =============================================
   SECTION 3 · WHAT WE EXAMINE
   Cream background, 5 wide pills with colored borders.
   ============================================= */
.bd-examine {
  background: var(--hp-cream);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}

.bd-examine-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bd-examine-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  color: #000;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.bd-examine-title-hl {
  background-image: linear-gradient(var(--hp-blue), var(--hp-blue));
  background-repeat: no-repeat;
  background-size: 100% 0.42em;
  background-position: 0 78%;
  padding: 0 0.12em;
}

.bd-examine-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.3vw, 1.15rem);
  font-weight: 400;
  color: #000;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 2.25rem;
}

.bd-examine-sub-hl {
  background-image: linear-gradient(var(--hp-blue), var(--hp-blue));
  background-repeat: no-repeat;
  background-size: 100% 0.85em;
  background-position: 0 78%;
  padding: 0.08em 0.25em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.bd-examine-pills {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bd-pill {
  background: var(--hp-cream);
  border: 4px solid var(--hp-maroon);
  border-radius: 100px;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #000;
  letter-spacing: -0.02em;
  line-height: 1.5;
  box-shadow: 5px 6px 7.2px rgba(0, 0, 0, 0.18);
}
.bd-pill strong { font-weight: 700; }

.bd-pill--maroon { border-color: var(--hp-maroon); }
.bd-pill--pink   { border-color: var(--hp-pink); }
.bd-pill--navy   { border-color: var(--hp-navy); }
.bd-pill--blue   { border-color: var(--hp-blue); }
.bd-pill--sand   { border-color: var(--bleached-sand); }

.bd-examine-foot {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0;
}


/* =============================================
   SECTION 4 · DELIVERABLES
   Navy background, blue heading on left,
   four stacked cream cards on the right.
   ============================================= */
.bd-deliv {
  background: var(--hp-navy);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
}

.bd-deliv-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.bd-deliv-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: sticky;
  top: 6rem;
}

.bd-deliv-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 3rem);
  color: var(--hp-blue);
  letter-spacing: -0.05em;
  line-height: 1.5;
  margin: 0;
}
.bd-deliv-heading em {
  font-style: italic;
  font-weight: 550;
}

.bd-deliv-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bd-deliv-card {
  background: var(--hp-cream);
  border: 4px solid var(--hp-blue);
  border-radius: 20px;
  box-shadow: 5px 6px 7.2px rgba(0, 0, 0, 0.25);
  padding: 1.35rem 1.75rem 1.5rem;
  text-align: center;
}

.bd-deliv-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--hp-maroon);
  margin: 0;
  line-height: 1;
}

.bd-deliv-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  color: var(--hp-maroon);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0.4rem 0 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(100, 10, 34, 0.22);
}

.bd-deliv-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--hp-maroon);
  letter-spacing: -0.02em;
  line-height: 1.55;
  margin: 0;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(100, 10, 34, 0.22);
}


/* =============================================
   SECTION 5 · INVESTMENT (PRICING / BETA)
   Cream background, large pink card with maroon border.
   ============================================= */
.bd-invest {
  background: var(--hp-cream);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.bd-invest-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bd-invest-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 3rem);
  color: var(--hp-maroon);
  line-height: 1.5;
  letter-spacing: -0.05em;
  margin: 0.5rem 0 2rem;
}
.bd-invest-heading em {
  font-style: italic;
  font-weight: 550;
}

.bd-invest-card {
  background: var(--hp-pink);
  border: 4px solid var(--hp-maroon);
  border-radius: 20px;
  box-shadow: 5px 6px 7.2px rgba(0, 0, 0, 0.25);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.bd-invest-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 550;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-maroon);
  text-align: center;
  margin: 0 0 1.25rem;
}

.bd-invest-amount {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  color: var(--hp-maroon);
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: center;
  margin: 0;
}

.bd-invest-amount-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  margin: 0.4rem 0 1.5rem;
}

.bd-invest-list {
  list-style: none;
  margin: 0 auto 1.5rem;
  padding: 0;
  border-top: 1px solid rgba(100, 10, 34, 0.45);
  max-width: 600px;
  text-align: left;
}
.bd-invest-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--hp-maroon);
  letter-spacing: -0.02em;
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid rgba(100, 10, 34, 0.22);
  line-height: 1.45;
}

.bd-invest-cta-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.bd-invest-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--hp-maroon);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0;
}


/* =============================================
   SECTION 6 · WHO IT'S FOR
   ============================================= */
.bd-whofor {
  background: var(--hp-cream);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.bd-whofor-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}

.bd-whofor-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 3rem);
  color: #000;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  text-align: center;
}

.bd-whofor-cursive {
  font-family: var(--hp-cursive);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  color: var(--hp-navy);
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin: 0 0 1.25rem;
  text-align: center;
}

.bd-whofor-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 550;
  color: #000;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 2.5rem;
}

.bd-whofor-band {
  background: var(--hp-blue);
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  border-radius: 12px;
}

.bd-whofor-prose {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #000;
  line-height: 1.65;
  letter-spacing: -0.02em;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.bd-whofor-prose p { margin: 0; }
.bd-whofor-prose em { font-style: italic; }
.bd-whofor-prose strong { font-weight: 700; }


/* =============================================
   SECTION 7 · FAQ
   Pink horizontal strips with question + arrow.
   ============================================= */
.bd-faq {
  background: var(--hp-cream);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 5vw, 3rem) clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.bd-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bd-faq-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 3rem);
  color: var(--hp-maroon);
  line-height: 1.5;
  letter-spacing: -0.05em;
  margin: 0.5rem 0 2rem;
}
.bd-faq-heading em {
  font-style: italic;
  font-weight: 550;
}

.bd-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}

.bd-faq-item {
  background: var(--hp-pink);
  border-top: 2px solid rgba(100, 10, 34, 0.3);
  border-bottom: 2px solid rgba(100, 10, 34, 0.3);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
  margin: 0;
}

.bd-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  font-weight: 400;
  color: var(--hp-maroon);
  letter-spacing: -0.02em;
  line-height: 1.4;
  padding: 1rem clamp(1.25rem, 2.5vw, 2rem);
  list-style: none;
}
.bd-faq-q::-webkit-details-marker,
.bd-faq-q::marker { display: none; content: ''; }

.bd-faq-arrow {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--hp-maroon);
  transition: transform 0.25s ease;
  line-height: 1;
}
.bd-faq-item[open] .bd-faq-arrow { transform: rotate(180deg); }

.bd-faq-a {
  padding: 0 clamp(1.25rem, 2.5vw, 2rem) 1rem;
}
.bd-faq-a p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--hp-maroon);
  letter-spacing: -0.02em;
  line-height: 1.65;
  margin: 0;
  max-width: 900px;
}


/* =============================================
   SECTION 8 · FINAL CTA
   ============================================= */
.bd-finalcta {
  background: var(--hp-navy);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}

.bd-finalcta-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bd-finalcta-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 3rem);
  color: var(--hp-blue);
  line-height: 1.5;
  letter-spacing: -0.05em;
  margin: 0.75rem 0 1.25rem;
}
.bd-finalcta-heading em {
  font-style: italic;
  font-weight: 550;
}

.bd-finalcta-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--hp-cream);
  letter-spacing: -0.02em;
  margin: 0 0 1.75rem;
}

.bd-finalcta-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 980px) {
  .bd-what-inner,
  .bd-deliv-inner {
    grid-template-columns: 1fr;
  }
  .bd-deliv-head { position: static; }
  .bd-whofor-heading { text-align: center; }
}

@media (max-width: 640px) {
  .bd-hero {
    padding-top: calc(16px + 62px + 1.5rem);
    min-height: 520px;
  }
  .bd-hero-heading::before { top: 0.35em; height: 0.7em; }

  /* Allow long lines to wrap on small screens so text doesn't overflow */
  .bd-hero-heading,
  .bd-hero-eyebrow mark,
  .bd-hero-body mark,
  .bd-examine-sub {
    white-space: normal;
  }

  .bd-pill { padding: 0.85rem 1.15rem; font-size: 0.9rem; }
  .bd-faq-q { padding: 0.85rem 1rem; }
  .bd-faq-a { padding: 0 1rem 1rem; }
  .bd-invest-card { padding: 1.5rem 1.15rem; }
}
