/* ============================================================
   HBC HOMEPAGE. Editorial Luxe rebuild (May 2026)
   Loaded after brand.css. Scoped strictly to homepage components.
   ============================================================ */

/* =========================================================
   SHARED HOMEPAGE TOKENS
   ========================================================= */
.home-section { padding-block: clamp(72px, 10vw, 140px); }
.home-section--navy { background: var(--navy); color: var(--cream); }
.home-section--cream { background: var(--cream); color: var(--navy); }
.home-section--white { background: var(--white); color: var(--navy); }
.home-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.home-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.home-eyebrow--on-dark { color: var(--gold); }

.home-display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.home-lede {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 0.95rem + 0.5vw, 1.25rem);
  line-height: 1.55;
  color: rgba(10, 22, 40, 0.78);
  max-width: 62ch;
}
.home-lede--on-dark { color: rgba(237, 233, 225, 0.82); }

/* =========================================================
   HERO
   ========================================================= */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(640px, 88vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  animation: heroPan 24s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.04) translateX(0); }
  to   { transform: scale(1.08) translateX(-1.5%); }
}
.home-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(95deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.78) 38%, rgba(10,22,40,0.45) 70%, rgba(10,22,40,0.55) 100%),
    linear-gradient(180deg, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.20) 30%, rgba(10,22,40,0.55) 100%);
}
.home-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 24px 72px;
}
.home-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light, #D4A574);
  margin: 0 0 28px;
}
.home-hero__lead {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  margin: 0 0 12px;
}

/* The HOW / WHAT / WHO three-line H1 */
.home-hero__h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.005em;
  font-size: clamp(1.625rem, 0.95rem + 2.2vw, 3rem);
  line-height: 1.14;
  color: var(--white);
  max-width: 28ch;
  margin: 0 0 22px;
}
.home-hero__h1 .row {
  display: block;
  margin: 0;
}
.home-hero__h1 .row + .row { margin-top: 0.18em; }
.home-hero__h1 .word {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--gold-light, #D4A574);
  letter-spacing: 0.01em;
  display: inline-block;
  width: 2.6em;
  text-align: left;
  margin-right: 0.2em;
}

.home-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  max-width: 60ch;
  margin: 28px 0 36px;
}
.home-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 0 0 24px;
}
.home-hero__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

@media (max-width: 720px) {
  .home-hero__inner { padding: 72px 20px 56px; }
  .home-hero__h1 { max-width: 100%; }

  /* Let the kitchen image breathe on mobile while keeping text legible.
     Lighter overall veil + focused dark scrim under the text block. */
  .home-hero__bg img { object-position: center 42%; }
  .home-hero__veil {
    background:
      radial-gradient(130% 75% at 50% 80%, rgba(10,22,40,0.94) 0%, rgba(10,22,40,0.82) 36%, rgba(10,22,40,0.35) 68%, rgba(10,22,40,0.12) 100%),
      linear-gradient(180deg, rgba(10,22,40,0.30) 0%, rgba(10,22,40,0.08) 28%, rgba(10,22,40,0.50) 100%);
  }
}

/* Centered hero variant (eyebrow + headline + subhead + wizard pill) */
.home-hero { justify-content: center; }
.home-hero__col--center {
  text-align: center;
  margin: 0 auto;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-hero__col--center .home-hero__eyebrow { margin-bottom: 24px; }
.home-hero__h1--center {
  max-width: none;
  /* Stack the rows centered as a group, but left-align the rows themselves so HOW/WHAT/WHO line up vertically. */
  display: inline-block;
  text-align: left;
  line-height: 1.05;
  font-size: clamp(2rem, 1.1rem + 3.6vw, 4.25rem);
  margin: 0 0 28px;
}
.home-hero__h1--center .row + .row { margin-top: 0.06em; }
/* Optical alignment: in italic Instrument Serif, the H's vertical stem reads further left than the W's diagonal, so nudge HOW right a hair so first-letter edges align optically. */
.home-hero__h1 .row:first-child .word { padding-left: 0.14em; }
.home-hero__sub--center {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.1875rem);
}

/* =========================================================
   WIZARD PILL BAR
   ========================================================= */
.wizard-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 14px 14px 14px 22px;
  cursor: pointer;
  box-shadow: 0 14px 40px -12px rgba(10, 22, 40, 0.5);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  font-family: var(--font-body);
  color: var(--navy);
  min-width: 380px;
  max-width: 100%;
}
.wizard-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px -14px rgba(10, 22, 40, 0.55);
  background: #fff;
}
.wizard-pill__spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(184, 115, 51, 0.12);
  color: var(--gold);
}
.wizard-pill__text {
  flex: 1;
  text-align: left;
  font-size: 1rem;
  letter-spacing: 0.005em;
  color: rgba(10, 22, 40, 0.7);
  font-weight: 500;
}
.wizard-pill__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .wizard-pill { min-width: 0; width: 100%; padding: 12px 12px 12px 18px; }
  .wizard-pill__text { font-size: 0.9375rem; }
}

/* =========================================================
   WIZARD MODAL
   ========================================================= */
.wizard-modal[hidden] { display: none; }
.wizard-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.wizard-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.78);
  backdrop-filter: blur(6px);
  cursor: pointer;
  animation: fadeIn 220ms ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}
.wizard-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border-radius: 14px;
  width: min(1100px, 100%);
  max-height: 92vh;
  overflow: hidden;
  box-shadow: 0 40px 120px -30px rgba(10, 22, 40, 0.6);
  animation: panelIn 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.wizard-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.06);
  border: none;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
}
.wizard-modal__close:hover { background: rgba(10, 22, 40, 0.12); }
.wizard-modal__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 560px;
  max-height: 92vh;
}
.wizard-modal__steps {
  padding: clamp(28px, 4vw, 56px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: 92vh;
}
.wizard-modal__progress {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}
/* =========================================================
   WIZARD OUTCOME PANEL
   Replaces the static image. 4 panels, one per step. Sells
   the outcome through escalating value across the flow.
   ========================================================= */
.wizard-modal__outcome {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(36px, 4vw, 56px) clamp(32px, 4vw, 52px);
  display: flex;
  align-items: center;
  position: relative;
  overflow-y: auto;
  max-height: 92vh;
}
.wizard-modal__outcome::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at top right, rgba(184,115,51,0.10) 0%, rgba(184,115,51,0) 55%);
}
.wizard-panel {
  position: relative;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 380ms ease, transform 380ms ease;
}
.wizard-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}
.wizard-panel[hidden] { display: none; }

.wizard-panel__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
}
.wizard-panel__lede {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 28px;
}
.wizard-panel__foot {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(237, 233, 225, 0.72);
  margin: 0;
  line-height: 1.5;
}
.wizard-panel__close {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.125rem, 0.95rem + 0.7vw, 1.5rem);
  color: var(--gold);
  margin: 22px 0 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Panel 2: outcome cards */
.wizard-outcomes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wizard-outcome-card {
  padding: 18px 22px;
  background: rgba(237, 233, 225, 0.04);
  border: 1px solid rgba(184, 115, 51, 0.28);
  border-left: 2px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.wizard-outcome-card__tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0 0 8px;
}
.wizard-outcome-card__body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--cream);
  margin: 0;
}
.wizard-outcome-card__body strong {
  color: var(--gold);
  font-weight: 600;
}

/* Panel 3: timeline */
.wizard-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.wizard-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(184, 115, 51, 0.35);
}
.wizard-timeline__step {
  position: relative;
  padding-left: 28px;
}
.wizard-timeline__step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--navy);
}
.wizard-timeline__when {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.wizard-timeline__what {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--cream);
}

/* Panel 4: math close */
.wizard-math {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wizard-math__row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(184, 115, 51, 0.30);
}
.wizard-math__row:last-child { border-bottom: none; }
.wizard-math__amount {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 1.2rem + 1.2vw, 2.25rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1;
}
.wizard-math__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(237, 233, 225, 0.78);
  line-height: 1.4;
}

/* Wizard steps */
.wizard-step {
  display: none;
  flex-direction: column;
  flex: 1;
  animation: stepIn 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.wizard-step.is-active { display: flex; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.wizard-step__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.625rem, 1.1rem + 1.4vw, 2.25rem);
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 12px;
}
.wizard-step__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(10, 22, 40, 0.7);
  margin: 0 0 28px;
  max-width: 50ch;
}
.wizard-input {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.14);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 32px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.wizard-input:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.15);
}
.wizard-input__icon { color: rgba(10, 22, 40, 0.5); display: inline-flex; }
.wizard-input input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
}
.wizard-input input::placeholder { color: rgba(10, 22, 40, 0.4); }

.wizard-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.wizard-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.12);
  border-radius: 12px;
  padding: 18px 18px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 200ms ease, transform 180ms ease, box-shadow 200ms ease, background 180ms ease;
}
.wizard-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -14px rgba(10, 22, 40, 0.2);
}
.wizard-card.is-selected {
  border-color: var(--gold);
  background: rgba(184, 115, 51, 0.06);
}
.wizard-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--navy);
}
.wizard-card__body {
  font-size: 0.875rem;
  color: rgba(10, 22, 40, 0.65);
  line-height: 1.45;
}

.wizard-step__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 8px;
}
.wizard-step__nav--final { justify-content: space-between; }

/* Calendly inline embed inside Step 4. The iframe needs to be tall
   enough that Calendly's own internal layout shows the full booking
   form (name + email + phone + message + submit) without Calendly
   triggering its own scrollbar. The cream form column scrolls the
   page so the user reaches the submit button by scrolling the modal,
   not the iframe. */
.wizard-calendly {
  margin: 8px -8px 16px;
  min-height: 1100px;
  height: 1100px;
  border-radius: 4px;
  overflow: visible;
  background: rgba(10, 22, 40, 0.04);
  flex-shrink: 0;
}
.wizard-calendly iframe {
  border: 0 !important;
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 860px){
  .wizard-calendly { min-height: 1180px; height: 1180px; margin: 8px 0 12px; }
}
.wizard-step__nav .btn-primary { margin-left: auto; }
.wizard-back {
  background: transparent;
  border: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 22, 40, 0.6);
  cursor: pointer;
  padding: 8px 4px;
}
.wizard-back:hover { color: var(--navy); }

/* =========================================================
   STEP 5: BOOKING CONFIRMATION
   Replaces the wizard layout entirely. Outcome panel is hidden
   so the thank-you message takes the full modal width.
   ========================================================= */
.wizard-modal__panel--confirmed .wizard-modal__grid {
  grid-template-columns: 1fr;
}
.wizard-modal__panel--confirmed .wizard-modal__outcome {
  display: none;
}
.wizard-modal__panel--confirmed .wizard-modal__steps {
  padding: clamp(40px, 5vw, 72px);
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.wizard-step--confirmed.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  flex: 0 1 auto;
}
.wizard-confirm__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.wizard-step--confirmed .wizard-step__title {
  font-size: clamp(2rem, 1.4rem + 1.6vw, 2.75rem);
  margin: 0 0 16px;
}
.wizard-step--confirmed .wizard-step__sub {
  margin: 0 auto 28px;
  max-width: 46ch;
}
.wizard-confirm__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.10);
  border-radius: 12px;
  padding: 22px 24px;
  width: 100%;
  max-width: 460px;
}
.wizard-confirm__list li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(10, 22, 40, 0.78);
}
.wizard-confirm__list strong {
  color: var(--navy);
  font-weight: 600;
}
.wizard-confirm__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.wizard-confirm__cta .btn-primary {
  min-width: 220px;
}
.wizard-confirm__link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 22, 40, 0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 22, 40, 0.2);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}
.wizard-confirm__link:hover {
  color: var(--navy);
  border-color: var(--navy);
}

@media (max-width: 860px) {
  .wizard-modal { padding: 0; }
  .wizard-modal__panel {
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  .wizard-modal__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    height: 100%;
  }
  .wizard-modal__outcome { display: none; }
  .wizard-cards { grid-template-columns: 1fr; }
  .wizard-outcomes { gap: 12px; }
  .wizard-modal__panel--confirmed .wizard-modal__steps {
    padding: clamp(28px, 6vw, 40px);
    min-height: 0;
  }
  .wizard-confirm__list { padding: 18px 18px; }
}

/* =========================================================
   THESIS (cream block, single editorial sentence)
   ========================================================= */
.thesis {
  background: var(--cream);
  padding-block: clamp(80px, 10vw, 140px);
}
.thesis__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}
.thesis__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0;
}
.thesis__h2 em {
  font-style: italic;
  color: var(--gold);
}

/* =========================================================
   FOUR STEPS (navy)
   ========================================================= */
.steps2 {
  background: var(--navy);
  color: var(--cream);
}
.steps2__head {
  max-width: 880px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.steps2__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 3rem);
  line-height: 1.12;
  margin: 8px 0 16px;
  color: var(--white);
}
.steps2__intro {
  color: rgba(237, 233, 225, 0.78);
  max-width: 60ch;
  font-size: 1.0625rem;
  line-height: 1.55;
}
.steps2__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.steps2__card {
  border-top: 1px solid rgba(184, 115, 51, 0.32);
  padding-top: 28px;
}
.steps2__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(2.25rem, 1.5rem + 2vw, 3.5rem);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
}
.steps2__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.625rem);
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--white);
}
.steps2__body {
  color: rgba(237, 233, 225, 0.78);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 52ch;
}
@media (max-width: 720px) {
  .steps2__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PROOF RAIL (alternating screenshot + copy)
   ========================================================= */
.proof {
  background: var(--cream);
}
.proof__head {
  max-width: 880px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.proof__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 3rem);
  line-height: 1.12;
  margin: 8px 0 16px;
  color: var(--navy);
}
.proof__intro {
  color: rgba(10, 22, 40, 0.7);
  font-size: 1.0625rem;
  line-height: 1.55;
  max-width: 62ch;
  margin: 0 auto;
}

.proof-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  margin-bottom: clamp(64px, 8vw, 120px);
}
.proof-row:last-child { margin-bottom: 0; }
.proof-row--reverse { grid-template-columns: 1.15fr 1fr; }
.proof-row--reverse .proof-row__copy { order: 2; }
.proof-row--reverse .proof-row__media { order: 1; }

.proof-row__copy {
  max-width: 52ch;
}
.proof-row__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.proof-row__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--navy);
}
.proof-row__body {
  color: rgba(10, 22, 40, 0.75);
  font-size: 1.0625rem;
  line-height: 1.6;
}
.proof-row__body p + p { margin-top: 14px; }

/* Browser-chrome frame for screenshots */
.proof-frame {
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10, 22, 40, 0.35), 0 12px 24px -10px rgba(10, 22, 40, 0.18);
  border: 1px solid rgba(10, 22, 40, 0.08);
}
.proof-frame__bar {
  background: #0A1628;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
  border-bottom: 1px solid rgba(184, 115, 51, 0.18);
}
.proof-frame__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.proof-frame__url {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: rgba(237, 233, 225, 0.55);
  margin-left: 16px;
  flex: 1;
  text-align: center;
  text-transform: lowercase;
}
.proof-frame__img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--cream);
}

@media (max-width: 860px) {
  .proof-row,
  .proof-row--reverse { grid-template-columns: 1fr; }
  .proof-row--reverse .proof-row__copy { order: 1; }
  .proof-row--reverse .proof-row__media { order: 2; }
}

/* =========================================================
   ARTIFACTS GRID (eight items, navy background, custom icons)
   ========================================================= */
.artifacts {
  background: var(--navy);
  color: var(--cream);
}
.artifacts__head {
  max-width: 880px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.artifacts__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 3rem);
  line-height: 1.12;
  margin: 8px 0 16px;
  color: var(--white);
}
.artifacts__intro {
  color: rgba(237, 233, 225, 0.78);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 64ch;
}
.artifacts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.artifact-card {
  border-top: 1px solid rgba(184, 115, 51, 0.32);
  padding-top: 22px;
}
.artifact-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--gold);
}
.artifact-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--white);
}
.artifact-card__body {
  color: rgba(237, 233, 225, 0.72);
  font-size: 0.9375rem;
  line-height: 1.55;
}
@media (max-width: 1024px) {
  .artifacts__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .artifacts__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CONCIERGE BAND (the AI moat moment)
   ========================================================= */
.concierge-band {
  background: var(--white);
  padding-block: clamp(80px, 10vw, 130px);
}
.concierge-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
}
.concierge-band__copy {
  max-width: 50ch;
}
.concierge-band__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 1.1rem + 2vw, 3rem);
  line-height: 1.12;
  margin: 0 0 18px;
  color: var(--navy);
}
.concierge-band__body {
  color: rgba(10, 22, 40, 0.74);
  font-size: 1.0625rem;
  line-height: 1.6;
}
.concierge-band__body p + p { margin-top: 14px; }

.concierge-bar {
  background: var(--navy);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px -16px rgba(10, 22, 40, 0.35);
}
.concierge-bar__avatar {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.concierge-bar__text {
  flex: 1;
  min-width: 0;
}
.concierge-bar__primary {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.0625rem;
  margin: 0;
  font-weight: 500;
}
.concierge-bar__secondary {
  font-family: var(--font-body);
  color: rgba(237, 233, 225, 0.6);
  font-size: 0.8125rem;
  margin: 2px 0 0;
}
.concierge-bar__input {
  flex: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 115, 51, 0.4);
  color: rgba(237, 233, 225, 0.7);
  border-radius: 4px;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  min-width: 200px;
}
.concierge-bar__btn {
  flex: none;
  background: var(--gold);
  color: var(--navy);
  border-radius: 4px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.concierge-band__demo-cycle {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--gold);
  min-height: 18px;
}
@media (max-width: 860px) {
  .concierge-band__inner { grid-template-columns: 1fr; }
  .concierge-bar { flex-wrap: wrap; }
  .concierge-bar__input { width: 100%; min-width: 0; order: 4; }
  .concierge-bar__btn { order: 5; }
}

/* =========================================================
   FOUNDER (cream, two-column)
   ========================================================= */
.founder2 {
  background: var(--cream);
}
.founder2__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.founder2__photo {
  width: 100%;
}
.founder2__photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream-dark);
  display: block;
}
.founder2__photo picture, .founder2__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder2__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 3rem);
  line-height: 1.12;
  margin: 0 0 24px;
  color: var(--navy);
}
.founder2__body {
  color: rgba(10, 22, 40, 0.78);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 56ch;
}
.founder2__body p + p { margin-top: 16px; }
.founder2__sig {
  margin-top: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
}
@media (max-width: 860px) {
  .founder2__inner { grid-template-columns: 1fr; }
  .founder2__photo { max-width: 360px; aspect-ratio: 4/5; }
}

/* =========================================================
   AUDIENCES BAND (small two-card door for realtors / trade)
   ========================================================= */
.audiences {
  background: var(--white);
}
.audiences__head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.audiences__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  line-height: 1.18;
  color: var(--navy);
  margin: 8px 0 0;
}
.audiences__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.audience-card {
  display: block;
  background: var(--cream);
  border: 1px solid rgba(10, 22, 40, 0.06);
  border-radius: 8px;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(10, 22, 40, 0.18);
  border-color: rgba(184, 115, 51, 0.4);
}
.audience-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.audience-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--navy);
}
.audience-card__body {
  color: rgba(10, 22, 40, 0.72);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0 0 16px;
}
.audience-card__cta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
@media (max-width: 720px) {
  .audiences__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta2 {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding-block: clamp(80px, 10vw, 140px);
}
.final-cta2__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 1.2rem + 2.4vw, 3.25rem);
  line-height: 1.12;
  margin: 0 0 18px;
  color: var(--white);
  max-width: 22ch;
  margin-inline: auto;
}
.final-cta2__sub {
  color: rgba(237, 233, 225, 0.75);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 auto 32px;
}
.final-cta2__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  align-items: center;
}
.final-cta2__phone {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237, 233, 225, 0.65);
  margin-top: 24px;
}
.final-cta2__phone a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
}

/* =========================================================
   REVEAL ANIMATIONS (scroll-driven)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .home-hero__bg img { animation: none; }
}

/* =========================================================
   HOW WE'RE DIFFERENT (cream, replaces thesis section)
   ========================================================= */
.different {
  background: var(--cream);
  padding-block: clamp(80px, 10vw, 140px);
}
.different__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.different__eyebrow {
  color: var(--gold);
  margin: 0 0 28px;
}
.different__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 1rem + 2vw, 2.625rem);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0 auto 64px;
  max-width: 28ch;
  color: var(--navy);
}
.different__line {
  display: block;
}
.different__line + .different__line { margin-top: 0.18em; }
.different__line--lead {
  color: var(--navy);
}
.different__line--gold {
  font-style: italic;
  color: var(--gold);
}
.different__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  text-align: left;
  margin-top: 32px;
}
.different-card {
  padding: 36px 28px;
  border-top: 1px solid rgba(10, 22, 40, 0.18);
}
.different-card__title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 600;
  line-height: 1.4;
}
.different-card__body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(10, 22, 40, 0.78);
  margin: 0;
}
@media (max-width: 860px) {
  .different__cards { grid-template-columns: 1fr; }
  .different-card { padding: 28px 0; }
}

/* =========================================================
   FOUNDER PHOTO CAPTION (placeholder note)
   ========================================================= */
.founder2__photo { position: relative; }
.founder2__photo-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 22, 40, 0.5);
  margin: 12px 0 0;
  text-align: left;
}

/* =========================================================
   QUICK ANSWERS. Visible, AI-quotable Q&A grid.
   ========================================================= */
.quick-answers {
  padding: clamp(60px, 9vw, 120px) 0;
}
.quick-answers__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.quick-answers__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.625rem, 1.1rem + 1.8vw, 2.5rem);
  line-height: 1.18;
  margin: 8px 0 0;
  color: var(--navy);
}
.quick-answers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3.2vw, 44px) clamp(32px, 4vw, 56px);
}
.quick-answer {
  border-top: 1px solid rgba(10, 22, 40, 0.16);
  padding-top: 22px;
}
.quick-answer__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.0625rem, 0.95rem + 0.4vw, 1.25rem);
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 12px;
}
.quick-answer__a {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(10, 22, 40, 0.78);
  margin: 0;
  max-width: 60ch;
}
@media (max-width: 760px) {
  .quick-answers__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   VALUE STACK + PRICE REVEAL + COST OF INACTION
   May 2026 pricing psychology section. Sits directly under hero.
   Numbers MUST stay synced with FAQ + services.html + llms.txt.
   ========================================================= */
.value-stack__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.value-stack__h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 18px;
}
.value-stack__lede { margin-left: auto; margin-right: auto; }

.value-stack__list {
  list-style: none;
  margin: 0 auto;
  padding: 32px clamp(20px, 4vw, 48px);
  max-width: 880px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(184, 115, 51, 0.18);
  border-radius: 4px;
}
.value-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(10, 22, 40, 0.18);
}
.value-row:last-child { border-bottom: none; }
.value-row__item {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
  color: var(--navy);
  line-height: 1.45;
}
.value-row__dots {
  border-bottom: 1px dotted rgba(10, 22, 40, 0.25);
  align-self: end;
  height: 0;
  margin-bottom: 6px;
}
.value-row__price {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(10, 22, 40, 0.7);
  white-space: nowrap;
}
.value-row__price--accent { color: var(--gold); font-weight: 600; }
.value-row--priceless .value-row__item { font-style: normal; color: var(--navy); font-weight: 500; }

.value-stack__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  max-width: 880px;
  margin: 18px auto 0;
  padding: 22px clamp(20px, 4vw, 48px);
  background: var(--navy);
  color: var(--cream);
  border-radius: 4px;
}
.value-stack__total-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237, 233, 225, 0.75);
}
.value-stack__total-amount {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.price-reveal {
  max-width: 880px;
  margin: 56px auto 0;
  padding: 48px clamp(24px, 5vw, 56px);
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 4px;
  text-align: center;
  position: relative;
}
.price-reveal__lead {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.price-reveal__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.5rem, 2.5rem + 4vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--navy);
  margin: 0 0 12px;
}
.price-reveal__price-flat {
  font-size: 0.45em;
  color: rgba(10, 22, 40, 0.65);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.price-reveal__terms {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--navy);
  margin: 0 0 20px;
  font-weight: 500;
}
.price-reveal__savings {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(10, 22, 40, 0.78);
  margin: 0;
  line-height: 1.55;
  max-width: 56ch;
  margin-inline: auto;
}
.price-reveal__savings strong { color: var(--gold); font-weight: 600; }

.price-warning {
  max-width: 880px;
  margin: 28px auto 0;
  padding: 24px clamp(20px, 4vw, 36px);
  background: rgba(183, 65, 14, 0.06);
  border-left: 3px solid var(--rust, #B7410E);
  border-radius: 0 4px 4px 0;
}
.price-warning__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust, #B7410E);
  margin: 0 0 10px;
}
.price-warning__body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.55;
  margin: 0;
}
.price-warning__body strong { color: var(--rust, #B7410E); font-weight: 600; }

.value-stack__cta {
  display: flex;
  justify-content: center;
  margin: 40px auto 0;
}
.wizard-pill--inline {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.wizard-pill--inline:hover {
  background: var(--gold-hover, #A0622A);
  border-color: var(--gold-hover, #A0622A);
}

@media (max-width: 600px) {
  .value-row { grid-template-columns: 1fr; gap: 4px; }
  .value-row__dots { display: none; }
  .value-row__price { font-size: 0.75rem; opacity: 0.85; }
  .value-stack__total { flex-direction: column; align-items: flex-start; gap: 8px; }
  .price-reveal { padding: 36px 22px; }
}
