/* Extracted from index.html inline <style> blocks */

/* WELCOME REVEAL INTRO */
  body.welcome-is-open {
    overflow: hidden;
  }

  .welcome-reveal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-items: center;
    padding: 22px;
    background: #050403;
    color: #f8efe0;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    cursor: none;
    transition:
      opacity 900ms ease,
      visibility 900ms ease;
  }

  .welcome-reveal.is-closing {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .welcome-reveal__bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at calc(50% + var(--mx, 0px)) calc(38% + var(--my, 0px)), rgba(190, 151, 76, 0.22), transparent 30%),
      radial-gradient(circle at 50% 85%, rgba(255, 255, 255, 0.055), transparent 34%),
      linear-gradient(180deg, #050403 0%, #0c0906 58%, #050403 100%);
    animation: welcomeBgGlow 5s ease-in-out infinite alternate;
  }

  .welcome-reveal__bg::before,
  .welcome-reveal__bg::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: rgba(199, 161, 87, 0.08);
    filter: blur(22px);
    animation: welcomeOrbFloat 8s ease-in-out infinite;
  }

  .welcome-reveal__bg::before {
    top: 12%;
    left: 16%;
  }

  .welcome-reveal__bg::after {
    right: 14%;
    bottom: 12%;
    animation-delay: -3s;
  }

  .welcome-reveal__note {
  position: relative;
  width: min(500px, 92vw);
  padding: clamp(26px, 4.5vw, 44px);
  text-align: center;
  border: 1px solid rgba(199, 161, 87, 0.42);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 14, 9, 0.95), rgba(7, 5, 3, 0.92));
  box-shadow:
    0 0 0 1px rgba(199, 161, 87, 0.12),
    0 14px 34px rgba(0, 0, 0, 0.52),
    0 0 16px rgba(199, 161, 87, 0.05);
  opacity: 0;
  transform: scale(0.96);
  animation:
    welcomeNoteEnter 1s ease forwards,
    welcomeBreathing 4.2s ease-in-out 1.1s infinite,
    welcomeShine 3.8s ease-in-out 1.1s infinite;
}

  .welcome-reveal__note::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(199, 161, 87, 0.22);
  border-radius: 18px;
  pointer-events: none;
}

.welcome-reveal__note::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(214, 174, 92, 0.12), transparent 60%);
  opacity: 0.3;
  filter: blur(10px);
  animation: welcomeAura 4.2s ease-in-out infinite;
}

 

  .welcome-reveal__eyebrow {
    margin: 0 0 14px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #c9a45f;
  }

  .welcome-reveal__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.7vw, 3.9rem);
  line-height: 0.93;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #fff7e8;
  text-shadow:
    0 0 8px rgba(255, 247, 232, 0.08),
    0 0 20px rgba(199, 161, 87, 0.12);
  animation: welcomeTitleGlow 4.2s ease-in-out infinite;
}

  .welcome-reveal__text {
    margin: 20px auto 0;
    max-width: 340px;
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(0.86rem, 1.5vw, 0.98rem);
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: rgba(248, 239, 224, 0.76);
  }

  .welcome-reveal__button {
  position: relative;
  margin-top: 26px;
  padding: 13px 24px;
  border: 1px solid rgba(222, 184, 104, 0.65);
  border-radius: 999px;
  background: linear-gradient(135deg, #d9b56b, #9f762d);
  color: #100b05;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 10px 24px rgba(199, 161, 87, 0.22),
    0 0 18px rgba(199, 161, 87, 0.14);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
  animation: welcomeButtonGlow 3.2s ease-in-out infinite;
}

  .welcome-reveal__button:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow: 0 20px 48px rgba(199, 161, 87, 0.36);
  }

  .welcome-reveal__button:active {
    transform: translateY(-1px) scale(0.98);
  }

  .welcome-reveal.is-closing .welcome-reveal__note {
    animation: welcomeNoteExit 700ms ease forwards;
  }

  @keyframes welcomeNoteEnter {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes welcomeBreathing {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@keyframes welcomeShine {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(199, 161, 87, 0.12),
      0 14px 34px rgba(0, 0, 0, 0.52),
      0 0 14px rgba(199, 161, 87, 0.08);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(199, 161, 87, 0.2),
      0 18px 42px rgba(0, 0, 0, 0.6),
      0 0 24px rgba(199, 161, 87, 0.16);
  }
}

@keyframes welcomeAura {
  0%, 100% {
    opacity: 0.28;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.48;
    transform: scale(1.04);
  }
}

@keyframes welcomeTitleGlow {
  0%, 100% {
    text-shadow:
      0 0 8px rgba(255, 247, 232, 0.08),
      0 0 20px rgba(199, 161, 87, 0.12);
  }

  50% {
    text-shadow:
      0 0 16px rgba(255, 247, 232, 0.22),
      0 0 42px rgba(199, 161, 87, 0.32);
  }
}

@keyframes welcomeButtonGlow {
  0%, 100% {
    box-shadow:
      0 8px 18px rgba(199, 161, 87, 0.16),
      0 0 10px rgba(199, 161, 87, 0.08);
  }

  50% {
    box-shadow:
      0 12px 26px rgba(199, 161, 87, 0.24),
      0 0 16px rgba(199, 161, 87, 0.14);
  }
}

@keyframes welcomeBgGlow {
  from {
    opacity: 0.75;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.035);
  }
}

@keyframes welcomeOrbFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(22px, -18px, 0) scale(1.14);
  }
}

@keyframes welcomeNoteExit {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }

  to {
    opacity: 0;
    transform: scale(0.97) translateY(-14px);
    filter: blur(6px);
  }
}
/* CUSTOM BALL CURSOR FOR WELCOME INTRO */
.welcome-cursor-dot,
.welcome-cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 1000001;
  opacity: 0;
  transform: translate3d(-50px, -50px, 0);
}

.welcome-cursor-dot {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 246, 210, 1) 0%, rgba(246, 214, 137, 0.95) 20%, rgba(190, 139, 55, 0.95) 48%, rgba(83, 55, 18, 0.95) 100%);
  box-shadow:
    0 0 12px rgba(246, 214, 137, 0.85),
    0 0 32px rgba(217, 181, 107, 0.55),
    0 0 62px rgba(217, 181, 107, 0.28);
  transition:
    opacity 180ms ease,
    transform 80ms linear,
    width 180ms ease,
    height 180ms ease,
    box-shadow 180ms ease;
  animation: welcomeCursorBallPulse 2.8s ease-in-out infinite;
}

.welcome-cursor-dot::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 235, 0.9);
  filter: blur(0.4px);
}

.welcome-cursor-ring {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(217, 181, 107, 0.16) 0%, rgba(217, 181, 107, 0.07) 38%, transparent 70%);
  border: 1px solid rgba(217, 181, 107, 0.32);
  box-shadow:
    0 0 30px rgba(217, 181, 107, 0.22),
    inset 0 0 24px rgba(217, 181, 107, 0.08);
  transition:
    opacity 180ms ease,
    transform 160ms ease,
    width 180ms ease,
    height 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  animation: welcomeCursorHaloPulse 2.8s ease-in-out infinite;
}

.welcome-reveal.cursor-ready .welcome-cursor-dot,
.welcome-reveal.cursor-ready .welcome-cursor-ring {
  opacity: 1;
}

.welcome-reveal.cursor-hovering .welcome-cursor-dot {
  width: 36px;
  height: 36px;
  box-shadow:
    0 0 16px rgba(246, 214, 137, 0.95),
    0 0 42px rgba(217, 181, 107, 0.72),
    0 0 80px rgba(217, 181, 107, 0.36);
}

.welcome-reveal.cursor-hovering .welcome-cursor-ring {
  width: 92px;
  height: 92px;
  border-color: rgba(217, 181, 107, 0.65);
  background:
    radial-gradient(circle, rgba(217, 181, 107, 0.22) 0%, rgba(217, 181, 107, 0.09) 42%, transparent 74%);
}

@keyframes welcomeCursorBallPulse {
  0%, 100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.22);
  }
}

@keyframes welcomeCursorHaloPulse {
  0%, 100% {
    opacity: 0.78;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}
/* REMOVE STUCK CURSOR HALO — KEEP BALL ONLY */
.welcome-cursor-ring {
  display: none !important;
}

@media (hover: none), (pointer: coarse) {
  .welcome-reveal {
    cursor: auto;
  }

  .welcome-cursor-dot,
  .welcome-cursor-ring {
    display: none;
  }
}
  @media (max-width: 640px) {
    .welcome-reveal {
      padding: 16px;
    }

    .welcome-reveal__note {
      width: min(420px, 94vw);
      border-radius: 20px;
      padding: 30px 20px;
    }

    .welcome-reveal__note::before {
      inset: 10px;
      border-radius: 15px;
    }

    .welcome-reveal__title {
      font-size: clamp(2rem, 12vw, 3.15rem);
    }

    .welcome-reveal__button {
      width: 100%;
      max-width: 280px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .welcome-reveal,
    .welcome-reveal__note,
    .welcome-reveal__bg,
    .welcome-reveal__bg::before,
    .welcome-reveal__bg::after,
    .welcome-reveal__button {
      animation: none !important;
      transition: none !important;
    }

    .welcome-reveal__note {
      opacity: 1;
      transform: none;
    }
  }

  /* =========================================================
   BPM HOMEPAGE LANDING — UNIFORM DARK / GOLD SYSTEM
   This only updates the first bpm-fn landing section.
   It does NOT touch the moving photo strip in .hero-showcase.
========================================================= */

.bpm-fn-landing {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 5vw, 72px) 0 clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 14% 18%, rgba(202, 166, 77, 0.12), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(202, 166, 77, 0.09), transparent 34%),
    linear-gradient(180deg, #060604 0%, #0c0a06 52%, #050403 100%);
  color: #f8efe0;
}

.bpm-fn-landing::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(199, 161, 87, 0.22);
  border-radius: 28px;
  pointer-events: none;
}

.bpm-fn-wrap {
  position: relative;
  z-index: 1;
}

.bpm-fn-top {
  display: grid;
  grid-template-columns: minmax(310px, 0.85fr) minmax(520px, 1.5fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: stretch;
}

.bpm-fn-intro {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 3vw, 38px);
}

.bpm-fn-logo-text {
  margin: 0 0 34px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(248, 239, 224, 0.9);
}

.bpm-fn-logo-text span {
  color: #c9a45f;
}

.bpm-fn-heading {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.3rem, 7.2vw, 7.4rem);
  line-height: 0.88;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff8e9;
}

.bpm-fn-heading span {
  color: #c9a45f;
}

.bpm-fn-lede {
  max-width: 540px;
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: rgba(248, 239, 224, 0.76);
}

.bpm-fn-intro-actions {
  margin-top: 30px;
}

.bpm-donation-cta {
  width: min(340px, 100%);
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9bb62, #b98d34);
  color: #080604;
  text-decoration: none;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(201, 164, 95, 0.16);
}

.bpm-donation-main {
  display: block;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.bpm-donation-tagline {
  display: block;
  margin-top: 2px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

.bpm-fn-map-card {
  position: relative;
  min-height: 430px;
  padding: clamp(18px, 2.6vw, 32px);
  border: 1px solid rgba(199, 161, 87, 0.36);
  border-radius: 30px;
  background:
    radial-gradient(circle at 72% 28%, rgba(201, 164, 95, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(17, 15, 9, 0.92), rgba(4, 4, 3, 0.96));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.bpm-fn-map-main {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(20px, 3vw, 38px);
  align-items: center;
}

.bpm-fn-kicker {
  margin: 0 0 18px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #c9a45f;
}

.bpm-fn-map-title {
  margin: 0;
  max-width: 420px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 3.8vw, 4.2rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff8e9;
}

.bpm-fn-map-lede {
  max-width: 390px;
  margin: 24px 0 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  line-height: 1.7;
  color: rgba(248, 239, 224, 0.72);
}

.hm-intro-cta-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d9bb62, #b98d34);
  color: #080604;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.bpm-fn-map-image-frame {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
}

.bpm-fn-map-image-frame::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle, rgba(201, 164, 95, 0.28), transparent 62%);
  filter: blur(26px);
}

.bpm-fn-map-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  filter:
    saturate(0.95)
    contrast(1.08)
    drop-shadow(0 0 24px rgba(201, 164, 95, 0.22));
}

.bpm-fn-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 26px;
  border: 1px solid rgba(199, 161, 87, 0.26);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.36);
}

.bpm-fn-stats div {
  min-height: 82px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-right: 1px solid rgba(199, 161, 87, 0.18);
}

.bpm-fn-stats div:last-child {
  border-right: 0;
}

.bpm-fn-stats strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 1;
  color: #fff8e9;
}

.bpm-fn-stats span {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248, 239, 224, 0.68);
}

.bpm-fn-pathways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(22px, 3vw, 34px);
}

.bpm-fn-card {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: 86px 1fr 150px;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  padding: 28px 26px;
  border: 1px solid rgba(222, 210, 184, 0.9);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 25%, rgba(201, 164, 95, 0.11), transparent 36%),
    linear-gradient(180deg, #f7efe1, #eee4d0);
  color: #11100c;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.bpm-fn-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 164, 95, 0.75);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.38);
}

.bpm-fn-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #050403;
  color: #c9a45f;
  font-size: 2rem;
  box-shadow: inset 0 0 0 1px rgba(201, 164, 95, 0.35);
}

.bpm-fn-icon--numeric {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.bpm-fn-card-body small {
  display: block;
  margin-bottom: 12px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #92702a;
}

.bpm-fn-card-body h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.02;
  font-weight: 600;
  color: #16130d;
}

.bpm-fn-card-body p {
  margin: 12px 0 0;
  max-width: 280px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.48;
  color: rgba(17, 16, 12, 0.72);
}

.bpm-fn-card-media {
  position: relative;
  height: 118px;
  overflow: hidden;
  border-radius: 18px;
  background: #0b0906;
  box-shadow: inset 0 0 0 1px rgba(201, 164, 95, 0.28);
}

.bpm-fn-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 320ms ease;
}

.bpm-fn-card:hover .bpm-fn-card-media img {
  transform: scale(1.06);
}

.bpm-fn-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #050403;
  color: #c9a45f;
  font-size: 1.4rem;
  box-shadow: 0 0 0 1px rgba(201, 164, 95, 0.35);
}

/* Tablet */
@media (max-width: 1100px) {
  .bpm-fn-top {
    grid-template-columns: 1fr;
  }

  .bpm-fn-intro {
    min-height: auto;
    padding-top: 18px;
  }

  .bpm-fn-map-main {
    grid-template-columns: 1fr;
  }

  .bpm-fn-map-copy {
    max-width: 680px;
  }

  .bpm-fn-map-lede {
    max-width: 560px;
  }

  .bpm-fn-pathways {
    grid-template-columns: 1fr;
  }

  .bpm-fn-card {
    grid-template-columns: 76px 1fr 180px;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .bpm-fn-landing {
    padding-top: 28px;
  }

  .bpm-fn-landing::before {
    inset: 10px;
    border-radius: 20px;
  }

  .bpm-fn-intro {
    padding: 18px 12px;
  }

  .bpm-fn-logo-text {
    margin-bottom: 24px;
    font-size: 0.62rem;
    letter-spacing: 0.32em;
  }

  .bpm-fn-heading {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .bpm-donation-cta {
    width: 100%;
  }

  .bpm-fn-map-card {
    padding: 18px;
    border-radius: 22px;
  }

  .bpm-fn-map-title {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .bpm-fn-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .bpm-fn-stats div {
    border-right: 1px solid rgba(199, 161, 87, 0.18);
    border-bottom: 1px solid rgba(199, 161, 87, 0.18);
  }

  .bpm-fn-stats div:nth-child(2),
  .bpm-fn-stats div:nth-child(4) {
    border-right: 0;
  }

  .bpm-fn-stats div:nth-child(3),
  .bpm-fn-stats div:nth-child(4) {
    border-bottom: 0;
  }

  .bpm-fn-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .bpm-fn-icon {
    width: 68px;
    height: 68px;
  }

  .bpm-fn-card-media {
    height: 160px;
  }

  .bpm-fn-arrow {
    right: 20px;
    bottom: 20px;
  }
}
/* =========================================================
   FIX: HOMEPAGE LANDING SIZE + STACKED MAP CARD
   Keeps existing moving photo strip untouched.
========================================================= */

.bpm-fn-landing {
  padding: 34px 0 42px !important;
}

.bpm-fn-landing::before {
  inset: 14px !important;
  border-radius: 24px !important;
}

.bpm-fn-top {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
  align-items: start !important;
}

/* HERO TITLE AREA — smaller and no overlap */
.bpm-fn-intro {
  min-height: auto !important;
  padding: 22px 38px 6px !important;
  max-width: 900px !important;
}

.bpm-fn-logo-text {
  margin: 0 0 20px !important;
  font-size: 0.64rem !important;
  letter-spacing: 0.38em !important;
}

.bpm-fn-heading {
  max-width: 760px !important;
  font-size: clamp(3rem, 6.1vw, 5.7rem) !important;
  line-height: 0.92 !important;
  letter-spacing: 0.065em !important;
}

.bpm-fn-lede {
  max-width: 620px !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.bpm-fn-intro-actions {
  margin-top: 22px !important;
}

.bpm-donation-cta {
  width: auto !important;
  min-width: 300px !important;
  min-height: 58px !important;
  padding: 12px 26px !important;
}

/* MAP CARD — now sits UNDER the hero title */
.bpm-fn-map-card {
  width: calc(100% - 76px) !important;
  max-width: 1120px !important;
  min-height: auto !important;
  margin: 0 38px !important;
  padding: 24px !important;
  border-radius: 24px !important;
}

.bpm-fn-map-main {
  display: grid !important;
  grid-template-columns: 0.9fr 1.1fr !important;
  gap: 28px !important;
  align-items: center !important;
}

.bpm-fn-kicker {
  margin-bottom: 14px !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.36em !important;
}

.bpm-fn-map-title {
  max-width: 390px !important;
  font-size: clamp(2rem, 3.4vw, 3.4rem) !important;
  line-height: 0.98 !important;
}

.bpm-fn-map-lede {
  max-width: 420px !important;
  margin-top: 18px !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

.hm-intro-cta-solid {
  min-height: 48px !important;
  margin-top: 22px !important;
  padding: 0 24px !important;
  border-radius: 12px !important;
}

.bpm-fn-map-image-frame {
  min-height: 190px !important;
}

.bpm-fn-map-img {
  max-width: 460px !important;
}

/* STATS — smaller */
.bpm-fn-stats {
  margin-top: 20px !important;
  border-radius: 16px !important;
}

.bpm-fn-stats div {
  min-height: 68px !important;
}

.bpm-fn-stats strong {
  font-size: 1.65rem !important;
}

.bpm-fn-stats span {
  font-size: 0.58rem !important;
  letter-spacing: 0.26em !important;
}

/* PATHWAY CARDS — smaller and cleaner */
.bpm-fn-pathways {
  width: calc(100% - 76px) !important;
  margin: 24px 38px 0 !important;
  gap: 18px !important;
}

.bpm-fn-card {
  min-height: 150px !important;
  grid-template-columns: 62px 1fr 118px !important;
  gap: 14px !important;
  padding: 22px 20px !important;
  border-radius: 20px !important;
}

.bpm-fn-icon {
  width: 58px !important;
  height: 58px !important;
  font-size: 1.55rem !important;
}

.bpm-fn-icon--numeric {
  font-size: 1rem !important;
}

.bpm-fn-card-body small {
  margin-bottom: 8px !important;
  font-size: 0.56rem !important;
  letter-spacing: 0.25em !important;
}

.bpm-fn-card-body h3 {
  font-size: clamp(1.3rem, 1.55vw, 1.7rem) !important;
  line-height: 1.05 !important;
}

.bpm-fn-card-body p {
  margin-top: 8px !important;
  font-size: 0.82rem !important;
  line-height: 1.42 !important;
}

.bpm-fn-card-media {
  height: 92px !important;
  border-radius: 14px !important;
}

.bpm-fn-arrow {
  width: 38px !important;
  height: 38px !important;
  right: 14px !important;
  bottom: 14px !important;
  font-size: 1.15rem !important;
}

/* TABLET */
@media (max-width: 1100px) {
  .bpm-fn-intro {
    padding: 20px 24px 4px !important;
  }

  .bpm-fn-map-card,
  .bpm-fn-pathways {
    width: calc(100% - 48px) !important;
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .bpm-fn-map-main {
    grid-template-columns: 1fr !important;
  }

  .bpm-fn-map-img {
    max-width: 560px !important;
  }

  .bpm-fn-pathways {
    grid-template-columns: 1fr !important;
  }

  .bpm-fn-card {
    grid-template-columns: 62px 1fr 150px !important;
  }
}

/* MOBILE */
@media (max-width: 720px) {
  .bpm-fn-landing {
    padding: 24px 0 34px !important;
  }

  .bpm-fn-landing::before {
    inset: 9px !important;
  }

  .bpm-fn-intro {
    padding: 18px 18px 4px !important;
  }

  .bpm-fn-logo-text {
    font-size: 0.58rem !important;
    letter-spacing: 0.3em !important;
  }

  .bpm-fn-heading {
    font-size: clamp(2.8rem, 13vw, 4.4rem) !important;
  }

  .bpm-donation-cta {
    width: 100% !important;
    min-width: 0 !important;
  }

  .bpm-fn-map-card,
  .bpm-fn-pathways {
    width: calc(100% - 32px) !important;
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .bpm-fn-map-card {
    padding: 18px !important;
  }

  .bpm-fn-map-title {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  .bpm-fn-map-image-frame {
    min-height: 150px !important;
  }

  .bpm-fn-card {
    grid-template-columns: 1fr !important;
    padding: 22px !important;
  }

  .bpm-fn-card-media {
    height: 145px !important;
  }
}
/* =========================================================
   FINAL COMPACT LANDING FIX
   Hero + small Tap Into the Map + right photo strip
   All should fit better in one first-screen section.
========================================================= */

/* Entire first landing section */
.bpm-fn-landing {
  min-height: calc(100vh - 92px) !important;
  padding: 18px 0 22px !important;
  overflow: hidden !important;
}

.bpm-fn-landing::before {
  inset: 10px !important;
  border-radius: 22px !important;
}

/* Main layout: left content + right moving photos */
.bpm-fn-top {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr) !important;
  grid-template-areas:
    "intro photos"
    "map photos" !important;
  gap: 14px 24px !important;
  align-items: stretch !important;
}

/* Left hero area */
.bpm-fn-intro {
  grid-area: intro !important;
  min-height: 0 !important;
  padding: 8px 0 0 34px !important;
  justify-content: flex-start !important;
}

.bpm-fn-logo-text {
  margin: 0 0 10px !important;
  font-size: 0.52rem !important;
  letter-spacing: 0.34em !important;
}

.bpm-fn-heading {
  max-width: 670px !important;
  font-size: clamp(2.35rem, 4.1vw, 4.35rem) !important;
  line-height: 0.92 !important;
  letter-spacing: 0.06em !important;
}

.bpm-fn-lede {
  max-width: 560px !important;
  font-size: 0.84rem !important;
  line-height: 1.5 !important;
}

.bpm-fn-intro-actions {
  margin-top: 14px !important;
}

.bpm-donation-cta {
  min-width: 250px !important;
  min-height: 48px !important;
  padding: 9px 22px !important;
}

.bpm-donation-main {
  font-size: 0.68rem !important;
}

.bpm-donation-tagline {
  font-size: 0.62rem !important;
}

/* Tap Into the Map card — smaller */
.bpm-fn-map-card {
  grid-area: map !important;
  width: auto !important;
  max-width: 720px !important;
  min-height: 0 !important;
  margin: 0 0 0 34px !important;
  padding: 14px !important;
  border-radius: 18px !important;
}

.bpm-fn-map-main {
  display: grid !important;
  grid-template-columns: 0.82fr 1.18fr !important;
  gap: 12px !important;
  align-items: center !important;
}

.bpm-fn-kicker {
  margin: 0 0 8px !important;
  font-size: 0.5rem !important;
  letter-spacing: 0.32em !important;
}

.bpm-fn-map-title {
  max-width: 270px !important;
  font-size: clamp(1.35rem, 1.85vw, 2.1rem) !important;
  line-height: 1 !important;
  letter-spacing: 0.07em !important;
}

.bpm-fn-map-lede {
  max-width: 280px !important;
  margin-top: 9px !important;
  font-size: 0.68rem !important;
  line-height: 1.45 !important;
}

.hm-intro-cta-solid {
  min-height: 36px !important;
  margin-top: 12px !important;
  padding: 0 16px !important;
  border-radius: 9px !important;
  font-size: 0.72rem !important;
}

.bpm-fn-map-image-frame {
  min-height: 110px !important;
  max-height: 150px !important;
}

.bpm-fn-map-img {
  max-width: 240px !important;
  width: 100% !important;
}

.bpm-fn-stats {
  margin-top: 10px !important;
  border-radius: 12px !important;
}

.bpm-fn-stats div {
  min-height: 42px !important;
}

.bpm-fn-stats strong {
  font-size: 1.08rem !important;
}

.bpm-fn-stats span {
  font-size: 0.4rem !important;
  letter-spacing: 0.2em !important;
}

/* Right moving photo strip — compact */
.bpm-fn-landing .hero-showcase {
  grid-area: photos !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
  height: 520px !important;
  max-height: calc(100vh - 150px) !important;
  min-height: 420px !important;
  padding: 0 34px 0 0 !important;
  overflow: hidden !important;
}

.bpm-fn-landing .photo-strip {
  height: 100% !important;
  max-height: 100% !important;
  overflow: hidden !important;
  border-radius: 18px !important;
}

.bpm-fn-landing .photo-strip-track {
  width: 100% !important;
}

.bpm-fn-landing .photo-item {
  height: 150px !important;
  min-height: 150px !important;
  max-height: 150px !important;
  margin: 0 0 12px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 1px solid rgba(199, 161, 87, 0.28) !important;
}

.bpm-fn-landing .photo-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.bpm-fn-landing .photo-meta {
  display: none !important;
}

/* Pathway cards — move below compactly */
.bpm-fn-pathways {
  width: calc(100% - 68px) !important;
  margin: 16px 34px 0 !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.bpm-fn-card {
  min-height: 105px !important;
  grid-template-columns: 46px 1fr !important;
  gap: 12px !important;
  padding: 16px !important;
  border-radius: 16px !important;
}

.bpm-fn-icon {
  width: 44px !important;
  height: 44px !important;
  font-size: 1.1rem !important;
}

.bpm-fn-icon--numeric {
  font-size: 0.76rem !important;
}

.bpm-fn-card-body small {
  margin-bottom: 5px !important;
  font-size: 0.46rem !important;
  letter-spacing: 0.22em !important;
}

.bpm-fn-card-body h3 {
  font-size: 1.12rem !important;
  line-height: 1.05 !important;
}

.bpm-fn-card-body p {
  margin-top: 5px !important;
  font-size: 0.68rem !important;
  line-height: 1.32 !important;
}

.bpm-fn-card-media {
  display: none !important;
}

.bpm-fn-arrow {
  width: 30px !important;
  height: 30px !important;
  right: 10px !important;
  bottom: 10px !important;
  font-size: 0.9rem !important;
}

/* Medium screens */
@media (max-width: 1180px) {
  .bpm-fn-top {
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr) !important;
    gap: 14px 18px !important;
  }

  .bpm-fn-landing .hero-showcase {
    height: 460px !important;
    min-height: 380px !important;
  }

  .bpm-fn-landing .photo-item {
    height: 132px !important;
    min-height: 132px !important;
    max-height: 132px !important;
  }
}

/* Tablet */
@media (max-width: 980px) {
  .bpm-fn-landing {
    min-height: auto !important;
    overflow: visible !important;
  }

  .bpm-fn-top {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "intro"
      "photos"
      "map" !important;
  }

  .bpm-fn-intro {
    padding: 18px 22px 0 !important;
  }

  .bpm-fn-map-card {
    margin: 0 22px !important;
    max-width: none !important;
  }

  .bpm-fn-landing .hero-showcase {
    height: 330px !important;
    min-height: 330px !important;
    padding: 0 22px !important;
  }

  .bpm-fn-landing .photo-item {
    height: 145px !important;
    min-height: 145px !important;
    max-height: 145px !important;
  }

  .bpm-fn-pathways {
    width: calc(100% - 44px) !important;
    margin-left: 22px !important;
    margin-right: 22px !important;
    grid-template-columns: 1fr !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .bpm-fn-intro {
    padding: 16px 16px 0 !important;
  }

  .bpm-fn-heading {
    font-size: clamp(2.4rem, 11vw, 3.8rem) !important;
  }

  .bpm-donation-cta {
    width: 100% !important;
    min-width: 0 !important;
  }

  .bpm-fn-landing .hero-showcase {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    height: 280px !important;
    min-height: 280px !important;
    padding: 0 14px !important;
  }

  .bpm-fn-landing .photo-item {
    height: 125px !important;
    min-height: 125px !important;
    max-height: 125px !important;
    margin-bottom: 8px !important;
  }

  .bpm-fn-map-card {
    margin: 0 14px !important;
    padding: 14px !important;
  }

  .bpm-fn-map-main {
    grid-template-columns: 1fr !important;
  }

  .bpm-fn-map-img {
    max-width: 230px !important;
  }

  .bpm-fn-stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .bpm-fn-pathways {
    width: calc(100% - 28px) !important;
    margin-left: 14px !important;
    margin-right: 14px !important;
  }
}
/* =========================================================
   FINAL OVERRIDE — COMPACT TOP LANDING
   Hero left, Tap Into the Map small under hero,
   moving photo strip on the right.
========================================================= */

/* Full first section */
.bpm-fn-landing {
  min-height: calc(100vh - 92px) !important;
  padding: 14px 0 18px !important;
  overflow: hidden !important;
}

.bpm-fn-landing::before {
  inset: 10px !important;
  border-radius: 22px !important;
}

/* Main layout */
.bpm-fn-top {
  display: grid !important;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.42fr) !important;
  grid-template-areas:
    "intro photos"
    "map photos" !important;
  column-gap: 22px !important;
  row-gap: 10px !important;
  align-items: start !important;
}

/* Left hero */
.bpm-fn-intro {
  grid-area: intro !important;
  min-height: 0 !important;
  padding: 4px 0 0 34px !important;
  justify-content: flex-start !important;
}

.bpm-fn-logo-text {
  margin: 0 0 8px !important;
  font-size: 0.48rem !important;
  letter-spacing: 0.3em !important;
}

.bpm-fn-heading {
  max-width: 620px !important;
  font-size: clamp(2.05rem, 3.35vw, 3.55rem) !important;
  line-height: 0.9 !important;
  letter-spacing: 0.055em !important;
}

.bpm-fn-lede {
  max-width: 520px !important;
  font-size: 0.76rem !important;
  line-height: 1.45 !important;
}

.bpm-fn-intro-actions {
  margin-top: 10px !important;
}

.bpm-donation-cta {
  min-width: 220px !important;
  min-height: 40px !important;
  padding: 7px 18px !important;
}

.bpm-donation-main {
  font-size: 0.6rem !important;
}

.bpm-donation-tagline {
  font-size: 0.54rem !important;
}

/* Tap Into the Map — smaller height */
.bpm-fn-map-card {
  grid-area: map !important;
  width: auto !important;
  max-width: 560px !important;
  min-height: 0 !important;
  margin: 0 0 0 34px !important;
  padding: 10px !important;
  border-radius: 15px !important;
}

.bpm-fn-map-main {
  display: grid !important;
  grid-template-columns: 0.8fr 1.2fr !important;
  gap: 8px !important;
  align-items: center !important;
}

.bpm-fn-kicker {
  margin: 0 0 5px !important;
  font-size: 0.42rem !important;
  letter-spacing: 0.26em !important;
}

.bpm-fn-map-title {
  max-width: 230px !important;
  font-size: clamp(1.05rem, 1.35vw, 1.55rem) !important;
  line-height: 1 !important;
  letter-spacing: 0.06em !important;
}

.bpm-fn-map-lede {
  max-width: 240px !important;
  margin-top: 6px !important;
  font-size: 0.56rem !important;
  line-height: 1.35 !important;
}

.hm-intro-cta-solid {
  min-height: 30px !important;
  margin-top: 8px !important;
  padding: 0 13px !important;
  border-radius: 8px !important;
  font-size: 0.6rem !important;
}

.bpm-fn-map-image-frame {
  min-height: 72px !important;
  max-height: 96px !important;
}

.bpm-fn-map-img {
  max-width: 175px !important;
  width: 100% !important;
  height: auto !important;
}

.bpm-fn-stats {
  margin-top: 7px !important;
  border-radius: 9px !important;
}

.bpm-fn-stats div {
  min-height: 30px !important;
  gap: 2px !important;
}

.bpm-fn-stats strong {
  font-size: 0.82rem !important;
}

.bpm-fn-stats span {
  font-size: 0.32rem !important;
  letter-spacing: 0.16em !important;
}

/* Moving photo strip — right side */
.bpm-fn-top > .hero-showcase {
  grid-area: photos !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  height: calc(100vh - 150px) !important;
  max-height: 500px !important;
  min-height: 400px !important;
  padding: 0 34px 0 0 !important;
  overflow: hidden !important;
}

.bpm-fn-top > .hero-showcase .photo-strip {
  height: 100% !important;
  overflow: hidden !important;
  border-radius: 16px !important;
}

.bpm-fn-top > .hero-showcase .photo-strip-track {
  width: 100% !important;
}

.bpm-fn-top > .hero-showcase .photo-item {
  height: 135px !important;
  min-height: 135px !important;
  max-height: 135px !important;
  margin: 0 0 10px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  border: 1px solid rgba(199, 161, 87, 0.3) !important;
}

.bpm-fn-top > .hero-showcase .photo-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.bpm-fn-top > .hero-showcase .photo-meta {
  display: none !important;
}

/* Pathways smaller */
.bpm-fn-pathways {
  width: calc(100% - 68px) !important;
  margin: 12px 34px 0 !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.bpm-fn-card {
  min-height: 86px !important;
  grid-template-columns: 38px 1fr !important;
  gap: 9px !important;
  padding: 12px !important;
  border-radius: 14px !important;
}

.bpm-fn-icon {
  width: 36px !important;
  height: 36px !important;
  font-size: 0.92rem !important;
}

.bpm-fn-icon--numeric {
  font-size: 0.64rem !important;
}

.bpm-fn-card-body small {
  margin-bottom: 3px !important;
  font-size: 0.38rem !important;
  letter-spacing: 0.18em !important;
}

.bpm-fn-card-body h3 {
  font-size: 0.9rem !important;
  line-height: 1.04 !important;
}

.bpm-fn-card-body p {
  margin-top: 3px !important;
  font-size: 0.56rem !important;
  line-height: 1.25 !important;
}

.bpm-fn-card-media {
  display: none !important;
}

.bpm-fn-arrow {
  width: 26px !important;
  height: 26px !important;
  right: 8px !important;
  bottom: 8px !important;
  font-size: 0.78rem !important;
}

/* Tablet */
@media (max-width: 980px) {
  .bpm-fn-landing {
    min-height: auto !important;
    overflow: visible !important;
  }

  .bpm-fn-top {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "intro"
      "photos"
      "map" !important;
  }

  .bpm-fn-intro {
    padding: 16px 20px 0 !important;
  }

  .bpm-fn-map-card {
    margin: 0 20px !important;
    max-width: none !important;
  }

  .bpm-fn-top > .hero-showcase {
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
    padding: 0 20px !important;
  }

  .bpm-fn-top > .hero-showcase .photo-item {
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
  }

  .bpm-fn-pathways {
    width: calc(100% - 40px) !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
    grid-template-columns: 1fr !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .bpm-fn-heading {
    font-size: clamp(2.2rem, 10vw, 3.4rem) !important;
  }

  .bpm-donation-cta {
    width: 100% !important;
    min-width: 0 !important;
  }

  .bpm-fn-top > .hero-showcase {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    height: 260px !important;
    min-height: 260px !important;
    max-height: 260px !important;
    padding: 0 14px !important;
  }

  .bpm-fn-top > .hero-showcase .photo-item {
    height: 118px !important;
    min-height: 118px !important;
    max-height: 118px !important;
    margin-bottom: 8px !important;
  }

  .bpm-fn-map-card {
    margin: 0 14px !important;
    padding: 12px !important;
  }

  .bpm-fn-map-main {
    grid-template-columns: 1fr !important;
  }

  .bpm-fn-map-img {
    max-width: 190px !important;
  }

  .bpm-fn-stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .bpm-fn-pathways {
    width: calc(100% - 28px) !important;
    margin-left: 14px !important;
    margin-right: 14px !important;
  }
}


/* =========================================================
   FINAL TAP INTO THE MAP CARD FIX
   Better vertical centering inside the outline box.
========================================================= */

section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
  grid-area: map !important;
  width: 600px !important;
  max-width: 620px !important;
  height: 200px !important;
  min-height: 250px !important;
  max-height: 250px !important;
  margin: 0 0 0 34px !important;
  padding: 20px 24px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;

  display: flex !important;
  align-items: center !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
  width: 100% !important;
  height: auto !important;

  display: grid !important;
  grid-template-columns: 255px 1fr !important;
  gap: 24px !important;
  align-items: center !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-copy {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-self: center !important;
  min-height: 0 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-kicker {
  margin: 0 0 8px !important;
  font-size: 0.46rem !important;
  line-height: 1 !important;
  letter-spacing: 0.26em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-title {
  margin: 0 !important;
  max-width: 250px !important;
  font-size: 1.28rem !important;
  line-height: 1.06 !important;
  letter-spacing: 0.06em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-lede {
  margin: 10px 0 0 !important;
  max-width: 250px !important;
  font-size: 0.63rem !important;
  line-height: 1.42 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .hm-intro-cta-solid {
  width: fit-content !important;
  min-height: 32px !important;
  margin-top: 12px !important;
  padding: 0 15px !important;
  border-radius: 8px !important;
  font-size: 0.62rem !important;
  align-self: flex-start !important;
}

/* map side */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-image-frame {
  width: 100% !important;
  height: 175px !important;
  min-height: 175px !important;
  max-height: 175px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: visible !important;
  position: relative !important;
  border-radius: 14px !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-image-frame::before {
  content: "" !important;
  position: absolute !important;
  inset: 8% !important;
  background: radial-gradient(circle, rgba(201, 164, 95, 0.26), transparent 64%) !important;
  filter: blur(18px) !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img {
  width: 270px !important;
  max-width: 270px !important;
  height: auto !important;

  display: block !important;
  margin: 0 auto !important;
  object-fit: contain !important;

  position: relative !important;
  z-index: 2 !important;
  transform: none !important;
}

/* keep stats hidden in this compact card */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
  display: none !important;
}

/* keep some room before the pathway cards */
section.bpm-fn-landing .bpm-fn-pathways {
  margin-top: 20px !important;
}

/* mobile */
@media (max-width: 720px) {
  section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
    width: calc(100% - 28px) !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 14px !important;
    padding: 18px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-image-frame {
    height: 150px !important;
    min-height: 150px !important;
    max-height: 150px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img {
    width: 235px !important;
    max-width: 235px !important;
  }
}

/* HERO SMALL TITLE SPACING */
section.bpm-fn-landing .bpm-fn-intro {
  padding-top: 30px !important;
}

section.bpm-fn-landing .bpm-fn-intro .bpm-fn-logo-text {
  display: block !important;
  margin: 0 0 18px !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.34em !important;
  line-height: 1 !important;
}

/* FINAL QUICK FIX — CENTER TAP INTO THE MAP CONTENT */
section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
  width: 620px !important;
  max-width: 620px !important;
  height: 245px !important;
  min-height: 245px !important;
  max-height: 245px !important;
  margin: 0 0 0 34px !important;
  padding: 0 !important;
  overflow: hidden !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
  width: 88% !important;
  height: 78% !important;

  display: grid !important;
  grid-template-columns: 245px 1fr !important;
  gap: 20px !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 auto !important;
  transform: translateY(-2px) !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-copy {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-self: center !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-kicker {
  margin: 0 0 7px !important;
  font-size: 0.46rem !important;
  line-height: 1 !important;
  letter-spacing: 0.26em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-title {
  margin: 0 !important;
  max-width: 245px !important;
  font-size: 1.24rem !important;
  line-height: 1.06 !important;
  letter-spacing: 0.06em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-lede {
  margin: 9px 0 0 !important;
  max-width: 245px !important;
  font-size: 0.62rem !important;
  line-height: 1.38 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .hm-intro-cta-solid {
  width: fit-content !important;
  min-height: 31px !important;
  margin-top: 11px !important;
  padding: 0 15px !important;
  font-size: 0.61rem !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-image-frame {
  width: 100% !important;
  height: 155px !important;
  min-height: 155px !important;
  max-height: 155px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: visible !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img {
  width: 255px !important;
  max-width: 255px !important;
  height: auto !important;

  display: block !important;
  margin: 0 auto !important;
  object-fit: contain !important;

  transform: translate(-10px, -4px) !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
  display: none !important;
}
/* FINAL FAST FIX — SMALLER TAP BOX + WIDER PHOTO STRIP */

/* Make the whole hero layout give more space to photos */
section.bpm-fn-landing .bpm-fn-top {
  grid-template-columns: minmax(0, 0.68fr) minmax(430px, 0.58fr) !important;
  column-gap: 26px !important;
}

/* Make Tap Into the Map box shorter */
section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
  width: 570px !important;
  max-width: 570px !important;
  height: 210px !important;
  min-height: 210px !important;
  max-height: 210px !important;
  margin: 0 0 0 34px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

/* Center Tap content inside smaller box */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
  width: 86% !important;
  height: 78% !important;
  display: grid !important;
  grid-template-columns: 230px 1fr !important;
  gap: 18px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
  transform: translateY(-1px) !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-kicker {
  margin: 0 0 6px !important;
  font-size: 0.42rem !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-title {
  font-size: 1.14rem !important;
  line-height: 1.05 !important;
  max-width: 225px !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-lede {
  font-size: 0.58rem !important;
  line-height: 1.34 !important;
  margin-top: 8px !important;
  max-width: 225px !important;
}

section.bpm-fn-landing .bpm-fn-map-card .hm-intro-cta-solid {
  min-height: 28px !important;
  margin-top: 9px !important;
  padding: 0 13px !important;
  font-size: 0.58rem !important;
}

/* Center and resize map image */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-image-frame {
  height: 140px !important;
  min-height: 140px !important;
  max-height: 140px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img {
  width: 235px !important;
  max-width: 235px !important;
  height: auto !important;
  object-fit: contain !important;
  transform: translate(-6px, -2px) !important;
}

/* Keep stats hidden */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
  display: none !important;
}

/* Make photo strip wider/bigger */
section.bpm-fn-landing .hero-showcase,
section.bpm-fn-top > .hero-showcase {
  width: 100% !important;
  max-width: 520px !important;
  height: 540px !important;
  max-height: 540px !important;
  min-height: 540px !important;
  gap: 14px !important;
  padding-right: 34px !important;
}

section.bpm-fn-landing .photo-item,
section.bpm-fn-top > .hero-showcase .photo-item {
  height: 158px !important;
  min-height: 158px !important;
  max-height: 158px !important;
  margin-bottom: 14px !important;
  border-radius: 16px !important;
}

/* Mobile safety */
@media (max-width: 980px) {
  section.bpm-fn-landing .bpm-fn-top {
    grid-template-columns: 1fr !important;
  }

  section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
    width: calc(100% - 40px) !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 20px !important;
    padding: 18px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
    width: 100% !important;
    height: auto !important;
    grid-template-columns: 1fr !important;
  }

  section.bpm-fn-landing .hero-showcase,
  section.bpm-fn-top > .hero-showcase {
    max-width: none !important;
    height: 330px !important;
    min-height: 330px !important;
    max-height: 330px !important;
  }
}
/* FINAL DONATE BUTTON STYLE */
section.bpm-fn-landing .bpm-donation-cta--vision {
  width: min(520px, 100%) !important;
  min-height: 76px !important;
  padding: 14px 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 24px !important;

  border: 1px solid rgba(216, 181, 78, 0.72) !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #d6bc4a 0%, #c4a636 100%) !important;
  color: #080604 !important;
  text-decoration: none !important;

  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(203, 169, 61, 0.18) !important;

  transition:
    transform 220ms ease,
    filter 220ms ease,
    box-shadow 220ms ease !important;
}

section.bpm-fn-landing .bpm-donation-cta--vision:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.05) !important;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(203, 169, 61, 0.28) !important;
}

section.bpm-fn-landing .bpm-donation-icon {
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;
  display: grid !important;
  place-items: center !important;
}

section.bpm-fn-landing .bpm-donation-icon svg {
  width: 42px !important;
  height: 42px !important;
  display: block !important;
}

section.bpm-fn-landing .bpm-donation-icon path {
  fill: none !important;
  stroke: #080604 !important;
  stroke-width: 1.75 !important;
  stroke-linejoin: round !important;
}

section.bpm-fn-landing .bpm-donation-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 5px !important;
}

section.bpm-fn-landing .bpm-donation-main {
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 1.22rem !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: 0.08em !important;
  text-transform: none !important;
  color: #080604 !important;
}

section.bpm-fn-landing .bpm-donation-tagline {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.04rem !important;
  font-style: italic !important;
  font-weight: 500 !important;
  line-height: 1.05 !important;
  letter-spacing: 0.05em !important;
  color: #080604 !important;
  opacity: 0.9 !important;
}

/* Mobile */
@media (max-width: 640px) {
  section.bpm-fn-landing .bpm-donation-cta--vision {
    width: 100% !important;
    min-height: 72px !important;
    padding: 13px 22px !important;
    gap: 18px !important;
  }

  section.bpm-fn-landing .bpm-donation-main {
    font-size: 0.98rem !important;
  }

  section.bpm-fn-landing .bpm-donation-tagline {
    font-size: 0.9rem !important;
  }
}
/* FINAL QUICK FIX — HERO TITLE + DONATE BUTTONS + NAV DONATE */

/* Hero title a little bigger */
section.bpm-fn-landing .bpm-fn-heading {
  font-size: clamp(2.45rem, 3.7vw, 4.05rem) !important;
  line-height: 0.92 !important;
}

/* Hero donate button smaller */
section.bpm-fn-landing .bpm-donation-cta--vision {
  width: min(455px, 100%) !important;
  min-height: 58px !important;
  padding: 10px 26px !important;
  gap: 18px !important;
  border-radius: 18px !important;
}

section.bpm-fn-landing .bpm-donation-icon {
  width: 36px !important;
  height: 36px !important;
  flex: 0 0 36px !important;
}

section.bpm-fn-landing .bpm-donation-icon svg {
  width: 34px !important;
  height: 34px !important;
}

section.bpm-fn-landing .bpm-donation-main {
  font-size: 1.02rem !important;
  letter-spacing: 0.07em !important;
}

section.bpm-fn-landing .bpm-donation-tagline {
  font-size: 0.88rem !important;
}

/* Remove old Schedule button if it still exists */
.nav-cta-secondary {
  display: none !important;
}

/* Navbar donate button — same wording, compact size */
.nav-donate-vision {
  min-height: 44px !important;
  max-width: 310px !important;
  padding: 7px 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;

  border: 1px solid rgba(176, 138, 48, 0.65) !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, #d6bc4a 0%, #c4a636 100%) !important;
  color: #080604 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.nav-donate-vision__icon {
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 24px !important;
  display: grid !important;
  place-items: center !important;
}

.nav-donate-vision__icon svg {
  width: 23px !important;
  height: 23px !important;
  display: block !important;
}

.nav-donate-vision__icon path {
  fill: none !important;
  stroke: #080604 !important;
  stroke-width: 1.8 !important;
  stroke-linejoin: round !important;
}

.nav-donate-vision__copy {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.nav-donate-vision__main {
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.67rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.045em !important;
  color: #080604 !important;
}

.nav-donate-vision__tagline {
  margin-top: 3px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 0.58rem !important;
  font-style: italic !important;
  letter-spacing: 0.035em !important;
  color: #080604 !important;
  opacity: 0.9 !important;
}

/* Mobile safety */
@media (max-width: 900px) {
  .nav-donate-vision {
    display: none !important;
  }
}
/* FINAL FIX — SMALLER HERO DONATE CTA */
section.bpm-fn-landing .bpm-donation-cta,
section.bpm-fn-landing .bpm-donation-cta--vision {
  width: min(430px, 100%) !important;
  min-width: 0 !important;
  min-height: 56px !important;
  padding: 9px 24px !important;
  gap: 16px !important;
  border-radius: 18px !important;
}

section.bpm-fn-landing .bpm-donation-icon {
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px !important;
}

section.bpm-fn-landing .bpm-donation-icon svg {
  width: 32px !important;
  height: 32px !important;
}

section.bpm-fn-landing .bpm-donation-main {
  font-size: 0.96rem !important;
  line-height: 1.05 !important;
  letter-spacing: 0.075em !important;
}

section.bpm-fn-landing .bpm-donation-tagline {
  margin-top: 3px !important;
  font-size: 0.78rem !important;
  line-height: 1.05 !important;
}

section.bpm-fn-landing .bpm-fn-intro-actions {
  margin-top: 14px !important;
}
/* =========================================================
   BPM HERO INTERACTIVE / ALIVE EFFECTS
   Map pulse + hero glow + photo hover + card movement
   Paste at the VERY BOTTOM of the existing <style> block.
========================================================= */

section.bpm-fn-landing {
  --bpmHeroX: 50%;
  --bpmHeroY: 42%;
  --bpmMapTiltX: 0deg;
  --bpmMapTiltY: 0deg;
  position: relative !important;
  isolation: isolate !important;
}

/* Soft light that follows the mouse */
section.bpm-fn-landing::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(
      circle at var(--bpmHeroX) var(--bpmHeroY),
      rgba(218, 181, 82, 0.18),
      rgba(218, 181, 82, 0.06) 16%,
      transparent 34%
    ) !important;
  opacity: 0.75 !important;
  transition: opacity 300ms ease !important;
}

section.bpm-fn-landing .bpm-fn-wrap {
  position: relative !important;
  z-index: 2 !important;
}

/* Subtle hero breathing glow */
section.bpm-fn-landing {
  animation: bpmHeroBreath 7s ease-in-out infinite !important;
}

@keyframes bpmHeroBreath {
  0%, 100% {
    box-shadow:
      inset 0 0 0 1px rgba(201, 164, 95, 0.08),
      0 0 0 rgba(201, 164, 95, 0);
  }

  50% {
    box-shadow:
      inset 0 0 0 1px rgba(201, 164, 95, 0.16),
      0 0 42px rgba(201, 164, 95, 0.08);
  }
}

/* =========================================================
   TAP INTO THE MAP — PULSE MOVEMENT
========================================================= */

section.bpm-fn-landing .bpm-fn-map-card {
  transform:
    perspective(900px)
    rotateX(var(--bpmMapTiltX))
    rotateY(var(--bpmMapTiltY)) !important;
  transform-style: preserve-3d !important;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease !important;
  will-change: transform !important;
}

section.bpm-fn-landing .bpm-fn-map-card:hover,
section.bpm-fn-landing .bpm-fn-map-card:focus-within {
  border-color: rgba(218, 181, 82, 0.74) !important;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.48),
    0 0 36px rgba(201, 164, 95, 0.16),
    inset 0 0 0 1px rgba(255, 245, 210, 0.06) !important;
}

section.bpm-fn-landing .bpm-fn-map-image-frame {
  position: relative !important;
  overflow: visible !important;
}

/* Existing glow behind the map, strengthened */
section.bpm-fn-landing .bpm-fn-map-image-frame::before {
  content: "" !important;
  position: absolute !important;
  inset: 4% !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle, rgba(218, 181, 82, 0.32), transparent 62%) !important;
  filter: blur(20px) !important;
  opacity: 0.88 !important;
  animation: bpmMapGlow 3.8s ease-in-out infinite !important;
}

/* Radar pulse ring */
section.bpm-fn-landing .bpm-fn-map-image-frame::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 72% !important;
  aspect-ratio: 1.8 / 1 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(218, 181, 82, 0.46) !important;
  transform: translate(-50%, -50%) scale(0.72) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  animation: bpmMapRadar 2.9s ease-out infinite !important;
}

/* Actual map pulse */
section.bpm-fn-landing .bpm-fn-map-img,
section.bpm-fn-landing .bpm-fn-map-img--pulse {
  position: relative !important;
  z-index: 2 !important;
  scale: 1 !important;
  transform-origin: center center !important;
  animation: bpmMapPulse 3.6s ease-in-out infinite !important;
  will-change: scale, filter !important;
}

@keyframes bpmMapPulse {
  0%, 100% {
    scale: 1;
    opacity: 0.94;
  }

  50% {
    scale: 1.045;
    opacity: 1;
  }
}

@keyframes bpmMapGlow {
  0%, 100% {
    opacity: 0.5;
    scale: 0.96;
  }

  50% {
    opacity: 0.92;
    scale: 1.08;
  }
}

@keyframes bpmMapRadar {
  0% {
    transform: translate(-50%, -50%) scale(0.62);
    opacity: 0;
  }

  18% {
    opacity: 0.62;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.18);
    opacity: 0;
  }
}

/* =========================================================
   CTA BUTTON — SOFT SHIMMER
========================================================= */

section.bpm-fn-landing .bpm-donation-cta,
section.bpm-fn-landing .hm-intro-cta-solid {
  position: relative !important;
  overflow: hidden !important;
  transition:
    transform 220ms ease,
    filter 220ms ease,
    box-shadow 220ms ease !important;
}

section.bpm-fn-landing .bpm-donation-cta::before,
section.bpm-fn-landing .hm-intro-cta-solid::before {
  content: "" !important;
  position: absolute !important;
  inset: -60% !important;
  background:
    linear-gradient(
      115deg,
      transparent 35%,
      rgba(255, 255, 255, 0.34) 48%,
      transparent 62%
    ) !important;
  transform: translateX(-70%) rotate(8deg) !important;
  animation: bpmButtonShimmer 4.8s ease-in-out infinite !important;
  pointer-events: none !important;
}

section.bpm-fn-landing .bpm-donation-cta:hover,
section.bpm-fn-landing .hm-intro-cta-solid:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.06) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(201, 164, 95, 0.26) !important;
}

@keyframes bpmButtonShimmer {
  0%, 64% {
    transform: translateX(-72%) rotate(8deg);
  }

  100% {
    transform: translateX(72%) rotate(8deg);
  }
}

/* =========================================================
   PHOTO GRID — HOVER / FOCUS INTERACTION
========================================================= */

section.bpm-fn-landing .photo-item {
  position: relative !important;
  cursor: pointer !important;
  transform: translateY(0) scale(1) !important;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease !important;
}

section.bpm-fn-landing .photo-item:hover,
section.bpm-fn-landing .photo-item:focus {
  transform: translateY(-5px) scale(1.018) !important;
  border-color: rgba(218, 181, 82, 0.72) !important;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(201, 164, 95, 0.15) !important;
  z-index: 4 !important;
}

section.bpm-fn-landing .photo-item img {
  transition:
    transform 420ms ease,
    filter 420ms ease !important;
}

section.bpm-fn-landing .photo-item:hover img,
section.bpm-fn-landing .photo-item:focus img {
  transform: scale(1.055) !important;
  filter: saturate(1.05) contrast(1.05) brightness(0.84) !important;
}

/* Bring back photo captions only on hover/focus */
section.bpm-fn-landing .photo-item .photo-meta {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 5 !important;
  padding: 16px !important;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.76) 82%
    ) !important;
  color: #fff7e8 !important;
  opacity: 0 !important;
  transform: translateY(10px) !important;
  transition:
    opacity 220ms ease,
    transform 220ms ease !important;
  pointer-events: none !important;
}

section.bpm-fn-landing .photo-item:hover .photo-meta,
section.bpm-fn-landing .photo-item:focus .photo-meta {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

section.bpm-fn-landing .photo-meta h4 {
  margin: 0 0 4px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.05rem !important;
  line-height: 1.05 !important;
  color: #fff7e8 !important;
}

section.bpm-fn-landing .photo-meta p {
  margin: 0 !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.68rem !important;
  line-height: 1.35 !important;
  color: rgba(255, 247, 232, 0.76) !important;
}

/* =========================================================
   PATHWAY CARDS — MORE ALIVE
========================================================= */

section.bpm-fn-landing .bpm-fn-card {
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background 240ms ease !important;
}

section.bpm-fn-landing .bpm-fn-card:hover,
section.bpm-fn-landing .bpm-fn-card:focus {
  transform: translateY(-6px) !important;
  border-color: rgba(201, 164, 95, 0.85) !important;
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(201, 164, 95, 0.16) !important;
}

section.bpm-fn-landing .bpm-fn-card:hover .bpm-fn-icon,
section.bpm-fn-landing .bpm-fn-card:focus .bpm-fn-icon {
  animation: bpmIconPulse 1.4s ease-in-out infinite !important;
}

section.bpm-fn-landing .bpm-fn-card:hover .bpm-fn-arrow,
section.bpm-fn-landing .bpm-fn-card:focus .bpm-fn-arrow {
  animation: bpmArrowNudge 900ms ease-in-out infinite !important;
}

@keyframes bpmIconPulse {
  0%, 100% {
    scale: 1;
    box-shadow:
      inset 0 0 0 1px rgba(201, 164, 95, 0.35),
      0 0 0 rgba(201, 164, 95, 0);
  }

  50% {
    scale: 1.08;
    box-shadow:
      inset 0 0 0 1px rgba(201, 164, 95, 0.72),
      0 0 18px rgba(201, 164, 95, 0.28);
  }
}

@keyframes bpmArrowNudge {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 4px 0;
  }
}

/* Respect reduced motion settings */
@media (prefers-reduced-motion: reduce) {
  section.bpm-fn-landing,
  section.bpm-fn-landing *,
  section.bpm-fn-landing *::before,
  section.bpm-fn-landing *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* =========================================================
   BPM HERO PERFORMANCE FIX
   Removes heavy animation and keeps only lightweight movement.
========================================================= */

/* Stop heavy hero mouse glow */
section.bpm-fn-landing::after {
  display: none !important;
}

/* Stop full hero breathing animation */
section.bpm-fn-landing {
  animation: none !important;
  will-change: auto !important;
}

/* Stop heavy map-card 3D tilt */
section.bpm-fn-landing .bpm-fn-map-card {
  transform: none !important;
  will-change: auto !important;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease !important;
}

/* Keep map card hover clean but not expensive */
section.bpm-fn-landing .bpm-fn-map-card:hover {
  border-color: rgba(218, 181, 82, 0.62) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34) !important;
}

/* Remove heavy animated glow behind map */
section.bpm-fn-landing .bpm-fn-map-image-frame::before {
  animation: none !important;
  filter: none !important;
  opacity: 0.35 !important;
  background: radial-gradient(circle, rgba(218, 181, 82, 0.18), transparent 65%) !important;
}

/* Lightweight pulse ring only */
section.bpm-fn-landing .bpm-fn-map-image-frame::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 72% !important;
  aspect-ratio: 1.9 / 1 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(218, 181, 82, 0.34) !important;
  transform: translate(-50%, -50%) scale(0.86) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  animation: bpmMapPulseRingLight 3.4s ease-out infinite !important;
}

/* Lightweight map pulse: transform only */
section.bpm-fn-landing .bpm-fn-map-img,
section.bpm-fn-landing .bpm-fn-map-img--pulse {
  animation: bpmMapPulseLight 4s ease-in-out infinite !important;
  transform-origin: center center !important;
  will-change: transform !important;
  filter: none !important;
}

@keyframes bpmMapPulseLight {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@keyframes bpmMapPulseRingLight {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.78);
  }

  22% {
    opacity: 0.45;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

/* Remove heavy button shimmer */
section.bpm-fn-landing .bpm-donation-cta::before,
section.bpm-fn-landing .hm-intro-cta-solid::before {
  display: none !important;
}

/* Keep buttons responsive but light */
section.bpm-fn-landing .bpm-donation-cta,
section.bpm-fn-landing .hm-intro-cta-solid {
  transition:
    transform 180ms ease,
    filter 180ms ease !important;
}

section.bpm-fn-landing .bpm-donation-cta:hover,
section.bpm-fn-landing .hm-intro-cta-solid:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.04) !important;
  box-shadow: none !important;
}

/* Photos: remove expensive filter and caption animation */
section.bpm-fn-landing .photo-item {
  transition:
    transform 180ms ease,
    border-color 180ms ease !important;
  will-change: auto !important;
}

section.bpm-fn-landing .photo-item:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(218, 181, 82, 0.55) !important;
  box-shadow: none !important;
}

section.bpm-fn-landing .photo-item img {
  transition: transform 220ms ease !important;
  filter: none !important;
}

section.bpm-fn-landing .photo-item:hover img {
  transform: scale(1.025) !important;
  filter: none !important;
}

/* Hide hover captions again for speed and cleaner layout */
section.bpm-fn-landing .photo-meta {
  display: none !important;
}

/* Pathway cards: simple hover only */
section.bpm-fn-landing .bpm-fn-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease !important;
}

section.bpm-fn-landing .bpm-fn-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(201, 164, 95, 0.72) !important;
  box-shadow: none !important;
}

section.bpm-fn-landing .bpm-fn-card:hover .bpm-fn-icon,
section.bpm-fn-landing .bpm-fn-card:hover .bpm-fn-arrow {
  animation: none !important;
}

/* Mobile: reduce movement further */
@media (max-width: 720px) {
  section.bpm-fn-landing .bpm-fn-map-img,
  section.bpm-fn-landing .bpm-fn-map-img--pulse {
    animation: none !important;
  }

  section.bpm-fn-landing .bpm-fn-map-image-frame::after {
    display: none !important;
  }
}
/* =========================================================
   FINAL FIX — SHOW STATS INSIDE TAP INTO THE MAP BOX
   This overrides the older rule hiding .bpm-fn-stats.
========================================================= */

/* Make Tap Into the Map box tall enough for map + stats */
section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
  width: 620px !important;
  max-width: 620px !important;
  height: 315px !important;
  min-height: 315px !important;
  max-height: 315px !important;
  margin: 0 0 0 34px !important;
  padding: 20px 22px 18px !important;
  box-sizing: border-box !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 18px !important;
}

/* Top part: text + map */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
  width: 100% !important;
  height: 190px !important;
  display: grid !important;
  grid-template-columns: 245px 1fr !important;
  gap: 20px !important;
  align-items: center !important;
  margin: 0 !important;
  transform: none !important;
}

/* Text side */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-kicker {
  margin: 0 0 7px !important;
  font-size: 0.44rem !important;
  line-height: 1 !important;
  letter-spacing: 0.28em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-title {
  margin: 0 !important;
  max-width: 235px !important;
  font-size: 1.2rem !important;
  line-height: 1.05 !important;
  letter-spacing: 0.06em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-lede {
  margin: 8px 0 0 !important;
  max-width: 235px !important;
  font-size: 0.58rem !important;
  line-height: 1.35 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .hm-intro-cta-solid {
  width: fit-content !important;
  min-height: 29px !important;
  margin-top: 9px !important;
  padding: 0 13px !important;
  border-radius: 8px !important;
  font-size: 0.58rem !important;
}

/* Map side */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-image-frame {
  width: 100% !important;
  height: 155px !important;
  min-height: 155px !important;
  max-height: 155px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  position: relative !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img,
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  width: 255px !important;
  max-width: 255px !important;
  height: auto !important;
  object-fit: contain !important;
  transform-origin: center center !important;
}

/* SHOW THE STATS STRIP */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  width: 100% !important;
  height: 72px !important;
  margin: 14px 0 0 !important;
  border: 1px solid rgba(201, 164, 95, 0.28) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: rgba(0, 0, 0, 0.32) !important;
}

/* Each stat column */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div {
  min-height: 72px !important;
  height: 72px !important;
  padding: 8px 6px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  border-right: 1px solid rgba(201, 164, 95, 0.22) !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:last-child {
  border-right: 0 !important;
}

/* Number */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats strong {
  display: block !important;
  margin: 0 0 7px !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 1.55rem !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: #f8efe0 !important;
}

/* Label */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats span {
  display: block !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.48rem !important;
  line-height: 1.1 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: rgba(248, 239, 224, 0.78) !important;
}

/* Keep map heartbeat light */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  animation: bpmMapHeartbeatInsideStats 2.8s ease-in-out infinite !important;
}

@keyframes bpmMapHeartbeatInsideStats {
  0%, 100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.03);
  }

  22% {
    transform: scale(1);
  }

  36% {
    transform: scale(1.045);
  }

  48% {
    transform: scale(1);
  }
}

/* Tablet */
@media (max-width: 980px) {
  section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
    width: calc(100% - 40px) !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 20px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
    height: auto !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-title,
  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-lede {
    max-width: 100% !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
    width: calc(100% - 28px) !important;
    margin: 0 14px !important;
    padding: 18px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    height: auto !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div {
    height: 68px !important;
    min-height: 68px !important;
    border-bottom: 1px solid rgba(201, 164, 95, 0.22) !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:nth-child(2),
  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:nth-child(4) {
    border-right: 0 !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:nth-child(3),
  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:nth-child(4) {
    border-bottom: 0 !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats strong {
    font-size: 1.35rem !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats span {
    font-size: 0.44rem !important;
    letter-spacing: 0.16em !important;
  }
}

/* =========================================================
   LIVING MUSEUM STORY SECTION
   Clean editorial section after hero
========================================================= */

.hm-story-section {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 7vw, 105px) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 151, 58, 0.09), transparent 30%),
    linear-gradient(180deg, #faf6ee 0%, #f3ecdf 100%);
  color: #17130d;
}

.hm-story-section::before {
  content: "";
  position: absolute;
  top: 44px;
  left: max(28px, calc((100vw - min(100vw, calc(var(--site-content-max) + var(--site-content-pad-x) * 2))) / 2 + var(--site-content-pad-x)));
  width: var(--ui-gold-hairline-w);
  height: var(--ui-gold-hairline-h);
  background: var(--ui-gold-hairline-bg);
}

.hm-story-inner {
  width: 100%;
  max-width: calc(var(--site-content-max) + var(--site-content-pad-x) * 2);
  margin-inline: auto;
  padding-inline: var(--site-content-pad-x);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.08fr);
  gap: clamp(38px, 5vw, 64px);
  align-items: center;
}

.hm-story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-family: var(--type-h5-font-family);
  font-size: var(--type-h5-font-size);
  font-weight: var(--type-h5-font-weight);
  letter-spacing: var(--type-h5-letter-spacing);
  text-transform: var(--type-h5-text-transform);
  color: #9b7828;
}

.hm-story-kicker span {
  width: var(--ui-gold-hairline-w);
  height: var(--ui-gold-hairline-h);
  background: var(--ui-gold-hairline-bg);
}

.hm-story-title {
  max-width: 720px;
  margin: 0;
  color: #11100c;
}

.hm-story-title em {
  color: #a8842f;
  font-style: italic;
  letter-spacing: -0.02em;
}

.hm-story-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(23, 19, 13, 0.78);
}

.hm-story-subtext {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(23, 19, 13, 0.66);
}

.hm-story-subtext strong {
  color: #947126;
}

.hm-story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.hm-story-card {
  appearance: none;
  display: block;
  width: 100%;
  min-height: 174px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(170, 137, 51, 0.22);
  border-radius: 18px;
  background: rgba(255, 252, 245, 0.72);
  color: #17130d;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(44, 34, 17, 0.06);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.hm-story-card:hover,
.hm-story-card.is-active {
  transform: translateY(-5px);
  border-color: rgba(184, 151, 58, 0.72);
  background: rgba(255, 250, 239, 0.98);
  box-shadow: 0 24px 50px rgba(44, 34, 17, 0.13);
}

.hm-story-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.hm-story-number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(184, 151, 58, 0.16);
  color: #927126;
  font-family: var(--type-body-font-family);
  font-size: var(--type-body-sm-font-size);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hm-story-symbol {
  color: #a98632;
  font-size: 1.6rem;
  line-height: 1;
}

.hm-story-card h3 {
  margin: 0;
  color: #17130d;
}

.hm-story-card p {
  margin: 13px 0 0;
  color: rgba(23, 19, 13, 0.67);
}

.hm-story-panel {
  margin-top: 18px;
  min-height: 0;
  padding: 30px 34px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 70%, rgba(184, 151, 58, 0.13), transparent 36%),
    linear-gradient(135deg, #15120c 0%, #070604 100%);
  color: #f8efe0;
  box-shadow: 0 24px 60px rgba(20, 16, 9, 0.24);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.hm-story-panel.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.hm-story-panel h3 {
  margin: 0;
  color: #fff7e8;
}

.hm-story-panel p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(248, 239, 224, 0.77);
}

.hm-story-panel a.hm-intro-cta-solid {
  margin-top: 22px;
}

.hm-story-panel a.hm-intro-cta-solid span[aria-hidden="true"] {
  margin: 0;
  color: inherit;
}

/* Gallery */

.hm-story-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 0.78fr;
  grid-template-rows: 235px 315px;
  gap: 16px;
  align-content: start;
}

.hm-story-image {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #d9cbb4;
  box-shadow: 0 18px 45px rgba(48, 38, 19, 0.14);
}

.hm-story-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 520ms ease,
    filter 520ms ease;
}

.hm-story-image:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.hm-story-image-main {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.hm-story-image-side {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.hm-story-image-wide {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.hm-story-floating-note {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: min(340px, calc(100% - 44px));
  padding: 16px 18px;
  border: 1px solid rgba(216, 182, 77, 0.32);
  border-radius: 18px;
  background: rgba(12, 10, 7, 0.82);
  color: #fff7e8;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.hm-story-floating-note strong {
  display: block;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.hm-story-floating-note small {
  display: block;
  margin-top: 4px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(255, 247, 232, 0.73);
}

.hm-story-pulse {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #d9bb62;
  box-shadow: 0 0 0 0 rgba(217, 187, 98, 0.56);
  animation: hmStoryPulse 2.4s ease-out infinite;
}

@keyframes hmStoryPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 187, 98, 0.56);
  }

  72% {
    box-shadow: 0 0 0 14px rgba(217, 187, 98, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(217, 187, 98, 0);
  }
}

/* Responsive */

@media (max-width: 1080px) {
  .hm-story-inner {
    grid-template-columns: 1fr;
  }

  .hm-story-gallery {
    grid-template-rows: 220px 300px;
  }
}

@media (max-width: 760px) {
  .hm-story-section {
    padding: 64px 0 76px;
  }

  .hm-story-inner {
    width: min(100% - 32px, 1180px);
  }

  .hm-story-cards {
    grid-template-columns: 1fr;
  }

  .hm-story-card {
    min-height: auto;
  }

  .hm-story-panel {
    padding: 24px 22px;
  }

  .hm-story-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 170px 240px;
  }

  .hm-story-image-main,
  .hm-story-image-side,
  .hm-story-image-wide {
    grid-column: 1 / 2;
  }

  .hm-story-image-main {
    grid-row: 1 / 2;
  }

  .hm-story-image-side {
    grid-row: 2 / 3;
  }

  .hm-story-image-wide {
    grid-row: 3 / 4;
  }

  .hm-story-floating-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hm-story-card,
  .hm-story-image img,
  .hm-story-panel,
  .hm-story-pulse {
    animation: none !important;
    transition: none !important;
  }
}
/* =========================================================
   FINAL FIX — SMALLER TAP INTO THE MAP BOX
   Centers text + map image inside the box.
========================================================= */

/* Smaller Tap Into the Map box */
section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
  width: 620px !important;
  max-width: 620px !important;
  height: 245px !important;
  min-height: 245px !important;
  max-height: 245px !important;

  margin: 0 0 0 34px !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: hidden !important;
  box-sizing: border-box !important;
  border-radius: 20px !important;
}

/* Center the text + map together */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
  width: 86% !important;
  height: auto !important;

  display: grid !important;
  grid-template-columns: 230px 1fr !important;
  gap: 22px !important;

  align-items: center !important;
  justify-content: center !important;

  margin: 0 auto !important;
  transform: none !important;
}

/* Center text vertically */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-copy {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* Small label */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-kicker {
  margin: 0 0 8px !important;
  font-size: 0.48rem !important;
  line-height: 1 !important;
  letter-spacing: 0.32em !important;
}

/* Title */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-title {
  margin: 0 !important;
  max-width: 230px !important;
  font-size: 1.28rem !important;
  line-height: 1.05 !important;
  letter-spacing: 0.065em !important;
}

/* Description */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-lede {
  margin: 10px 0 0 !important;
  max-width: 230px !important;
  font-size: 0.64rem !important;
  line-height: 1.38 !important;
}

/* Button */
section.bpm-fn-landing .bpm-fn-map-card .hm-intro-cta-solid {
  width: fit-content !important;
  min-height: 32px !important;
  margin-top: 12px !important;
  padding: 0 16px !important;
  border-radius: 8px !important;
  font-size: 0.62rem !important;
}

/* Map image area */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-image-frame {
  width: 100% !important;
  height: 155px !important;
  min-height: 155px !important;
  max-height: 155px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: visible !important;
  position: relative !important;
}

/* Map image centered */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img,
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  width: 265px !important;
  max-width: 265px !important;
  height: auto !important;

  display: block !important;
  margin: 0 auto !important;
  object-fit: contain !important;

  transform-origin: center center !important;
}

/* Keep stats hidden for now so the box stays compact */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
  display: none !important;
}

/* Keep heartbeat animation light */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  animation: bpmMapHeartbeatCompactFinal 2.8s ease-in-out infinite !important;
}

@keyframes bpmMapHeartbeatCompactFinal {
  0%, 100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.03);
  }

  22% {
    transform: scale(1);
  }

  36% {
    transform: scale(1.045);
  }

  48% {
    transform: scale(1);
  }
}

/* Tablet */
@media (max-width: 980px) {
  section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
    width: calc(100% - 40px) !important;
    max-width: none !important;
    height: auto !important;
    min-height: 240px !important;
    max-height: none !important;
    margin: 0 20px !important;
    padding: 24px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-title,
  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-lede {
    max-width: 100% !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
    width: calc(100% - 28px) !important;
    margin: 0 14px !important;
    padding: 20px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img,
  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
    width: 230px !important;
    max-width: 230px !important;
  }
}


/* SMALLER TAP INTO THE MAP BOX — SAFE VERSION */

section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
  width: 500px !important;
  max-width: 500px !important;
  height: 178px !important;
  min-height: 178px !important;
  max-height: 178px !important;
  margin: 0 0 0 34px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  box-sizing: border-box !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
  width: 88% !important;
  height: 78% !important;
  display: grid !important;
  grid-template-columns: 205px 1fr !important;
  gap: 15px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-copy {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-kicker {
  margin: 0 0 5px !important;
  font-size: 0.38rem !important;
  line-height: 1 !important;
  letter-spacing: 0.24em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-title {
  margin: 0 !important;
  max-width: 205px !important;
  font-size: 1rem !important;
  line-height: 1.05 !important;
  letter-spacing: 0.055em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-lede {
  margin: 7px 0 0 !important;
  max-width: 205px !important;
  font-size: 0.52rem !important;
  line-height: 1.3 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .hm-intro-cta-solid {
  width: fit-content !important;
  min-height: 26px !important;
  margin-top: 8px !important;
  padding: 0 12px !important;
  border-radius: 7px !important;
  font-size: 0.52rem !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-image-frame {
  width: 100% !important;
  height: 118px !important;
  min-height: 118px !important;
  max-height: 118px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  position: relative !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img,
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  width: 218px !important;
  max-width: 218px !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  transform-origin: center center !important;
}

/* Keep stats hidden so the card stays compact */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
  display: none !important;
}

/* Light heartbeat only */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  animation: bpmMapHeartbeatSmallBoxSafe 2.8s ease-in-out infinite !important;
}

@keyframes bpmMapHeartbeatSmallBoxSafe {
  0%, 100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.025);
  }

  22% {
    transform: scale(1);
  }

  36% {
    transform: scale(1.04);
  }

  48% {
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
    width: calc(100% - 40px) !important;
    max-width: none !important;
    height: auto !important;
    min-height: 220px !important;
    max-height: none !important;
    margin: 0 20px !important;
    padding: 20px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
    width: 100% !important;
    height: auto !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

@media (max-width: 640px) {
  section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
    width: calc(100% - 28px) !important;
    margin: 0 14px !important;
    padding: 18px !important;
  }
}
/* REMOVE ABOUT THE FOUNDER STRIP FROM HOME */
.hm-intro-founder {
  display: none !important;
}

/* =========================================================
   SHOW TAP INTO THE MAP STATS — WITHOUT CHANGING BOX SIZE
   This keeps the current Tap box size and places stats under
   the CTA + map image inside the existing box.
========================================================= */

/* Keep current outer Tap box size. Do not change width/height here. */
section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

/* Move text + map slightly upward to make room for stats */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
  width: 88% !important;
  height: 66% !important;
  display: grid !important;
  grid-template-columns: 205px 1fr !important;
  gap: 15px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
  transform: translateY(-15px) !important;
}

/* Slightly tighten text so it still fits */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-kicker {
  margin: 0 0 4px !important;
  font-size: 0.36rem !important;
  line-height: 1 !important;
  letter-spacing: 0.22em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-title {
  margin: 0 !important;
  max-width: 200px !important;
  font-size: 0.92rem !important;
  line-height: 1.04 !important;
  letter-spacing: 0.052em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-lede {
  margin: 6px 0 0 !important;
  max-width: 200px !important;
  font-size: 0.48rem !important;
  line-height: 1.24 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .hm-intro-cta-solid {
  min-height: 23px !important;
  margin-top: 6px !important;
  padding: 0 10px !important;
  border-radius: 7px !important;
  font-size: 0.48rem !important;
}

/* Tighten map image area so stats can fit below */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-image-frame {
  height: 96px !important;
  min-height: 96px !important;
  max-height: 96px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img,
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  width: 190px !important;
  max-width: 190px !important;
  height: auto !important;
  object-fit: contain !important;
}

/* SHOW stats strip at bottom of existing Tap box */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
  display: grid !important;
  position: absolute !important;
  left: 18px !important;
  right: 18px !important;
  bottom: 14px !important;
  z-index: 10 !important;

  grid-template-columns: repeat(4, 1fr) !important;
  height: 38px !important;
  margin: 0 !important;

  border: 1px solid rgba(201, 164, 95, 0.28) !important;
  border-radius: 11px !important;
  overflow: hidden !important;
  background: rgba(0, 0, 0, 0.36) !important;
}

/* Stat columns */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div {
  height: 38px !important;
  min-height: 38px !important;
  padding: 3px 4px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;

  border-right: 1px solid rgba(201, 164, 95, 0.22) !important;
  border-bottom: 0 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:last-child {
  border-right: 0 !important;
}

/* Numbers */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats strong {
  display: block !important;
  margin: 0 0 3px !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: #f8efe0 !important;
}

/* Labels */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats span {
  display: block !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.28rem !important;
  line-height: 1 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: rgba(248, 239, 224, 0.75) !important;
}

/* Keep heartbeat but lighter because the map is smaller */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  animation: bpmMapHeartbeatWithStats 2.8s ease-in-out infinite !important;
  transform-origin: center center !important;
}

@keyframes bpmMapHeartbeatWithStats {
  0%, 100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.02);
  }

  22% {
    transform: scale(1);
  }

  36% {
    transform: scale(1.035);
  }

  48% {
    transform: scale(1);
  }
}

/* Mobile: hide stats if too crowded */
@media (max-width: 640px) {
  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
    display: none !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
    height: auto !important;
    transform: none !important;
  }
}

/* =========================================================
   TAP INTO THE MAP — CLEAN INTERNAL LAYOUT FIX
   Top row = text + map
   Bottom row = stats strip
========================================================= */

section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
  width: 560px !important;
  max-width: 560px !important;
  height: 268px !important;
  min-height: 268px !important;
  max-height: 268px !important;

  margin: 0 0 0 34px !important;
  padding: 16px 18px 14px !important;

  display: block !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  border-radius: 18px !important;
}

/* TOP ROW */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
  width: 100% !important;
  height: 164px !important;

  display: grid !important;
  grid-template-columns: 215px 1fr !important;
  gap: 18px !important;
  align-items: center !important;

  margin: 0 !important;
  transform: none !important;
}

/* LEFT TEXT */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-copy {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-kicker {
  margin: 0 0 5px !important;
  font-size: 0.40rem !important;
  line-height: 1 !important;
  letter-spacing: 0.24em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-title {
  margin: 0 !important;
  max-width: 215px !important;
  font-size: 1.02rem !important;
  line-height: 1.04 !important;
  letter-spacing: 0.055em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-lede {
  margin: 7px 0 0 !important;
  max-width: 215px !important;
  font-size: 0.52rem !important;
  line-height: 1.28 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .hm-intro-cta-solid {
  width: fit-content !important;
  min-height: 28px !important;
  margin-top: 9px !important;
  padding: 0 12px !important;
  border-radius: 8px !important;
  font-size: 0.52rem !important;
}

/* RIGHT MAP */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-image-frame {
  width: 100% !important;
  height: 122px !important;
  min-height: 122px !important;
  max-height: 122px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: visible !important;
  position: relative !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img,
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  width: 230px !important;
  max-width: 230px !important;
  height: auto !important;

  display: block !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  transform-origin: center center !important;
}

/* BOTTOM ROW — stats inside the box */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
  display: grid !important;
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;

  width: 100% !important;
  height: 60px !important;
  margin: 10px 0 0 !important;

  grid-template-columns: repeat(4, 1fr) !important;
  border: 1px solid rgba(201, 164, 95, 0.24) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: rgba(0, 0, 0, 0.34) !important;
}

/* each stat */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div {
  min-height: 60px !important;
  height: 60px !important;
  padding: 4px 6px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;

  border-right: 1px solid rgba(201, 164, 95, 0.18) !important;
  border-bottom: 0 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:last-child {
  border-right: 0 !important;
}

/* stat numbers */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats strong {
  display: block !important;
  margin: 0 0 4px !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: #f8efe0 !important;
}

/* stat labels */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats span {
  display: block !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.27rem !important;
  line-height: 1 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: rgba(248, 239, 224, 0.74) !important;
}

/* heartbeat stays subtle */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  animation: bpmMapHeartbeatLayoutFixed 2.8s ease-in-out infinite !important;
}

@keyframes bpmMapHeartbeatLayoutFixed {
  0%, 100% {
    transform: scale(1);
  }
  12% {
    transform: scale(1.02);
  }
  22% {
    transform: scale(1);
  }
  36% {
    transform: scale(1.035);
  }
  48% {
    transform: scale(1);
  }
}

/* TABLET */
@media (max-width: 980px) {
  section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
    width: calc(100% - 40px) !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 20px !important;
    padding: 18px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
    height: auto !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-title,
  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-lede {
    max-width: 100% !important;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
    width: calc(100% - 28px) !important;
    margin: 0 14px !important;
    padding: 16px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    height: auto !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div {
    height: 54px !important;
    min-height: 54px !important;
    border-bottom: 1px solid rgba(201, 164, 95, 0.18) !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:nth-child(2),
  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:nth-child(4) {
    border-right: 0 !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:nth-child(3),
  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:nth-child(4) {
    border-bottom: 0 !important;
  }
}

/* =========================================================
   FINAL TAP INTO THE MAP COMPACT BOX WITH STATS

   ========================================================= */

section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
  width: 520px !important;
  max-width: 520px !important;
  height: 230px !important;
  min-height: 230px !important;
  max-height: 230px !important;

  margin: 0 0 0 34px !important;
  padding: 16px 18px 14px !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;

  box-sizing: border-box !important;
  overflow: hidden !important;
  border-radius: 18px !important;
}

/* Top row: text + map */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
  width: 100% !important;
  height: 142px !important;

  display: grid !important;
  grid-template-columns: 205px 1fr !important;
  gap: 16px !important;
  align-items: center !important;

  margin: 0 !important;
  transform: none !important;
}

/* Text side */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-copy {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-kicker {
  margin: 0 0 5px !important;
  font-size: 0.38rem !important;
  line-height: 1 !important;
  letter-spacing: 0.23em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-title {
  margin: 0 !important;
  max-width: 205px !important;
  font-size: 0.98rem !important;
  line-height: 1.04 !important;
  letter-spacing: 0.055em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-lede {
  margin: 7px 0 0 !important;
  max-width: 205px !important;
  font-size: 0.5rem !important;
  line-height: 1.25 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .hm-intro-cta-solid {
  width: fit-content !important;
  min-height: 26px !important;
  margin-top: 8px !important;
  padding: 0 12px !important;
  border-radius: 7px !important;
  font-size: 0.5rem !important;
}

/* Map side */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-image-frame {
  width: 100% !important;
  height: 112px !important;
  min-height: 112px !important;
  max-height: 112px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: visible !important;
  position: relative !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img,
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  width: 218px !important;
  max-width: 218px !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Bottom stats strip */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
  display: grid !important;
  position: static !important;

  width: 100% !important;
  height: 48px !important;
  margin: 10px 0 0 !important;

  grid-template-columns: repeat(4, 1fr) !important;

  border: 1px solid rgba(201, 164, 95, 0.25) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: rgba(0, 0, 0, 0.34) !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div {
  height: 48px !important;
  min-height: 48px !important;
  padding: 4px 5px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  border-right: 1px solid rgba(201, 164, 95, 0.18) !important;
  border-bottom: 0 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:last-child {
  border-right: 0 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats strong {
  margin: 0 0 3px !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: #f8efe0 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats span {
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.25rem !important;
  line-height: 1 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(248, 239, 224, 0.72) !important;
}

/* Keep map heartbeat subtle */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  animation: bpmMapHeartbeatCompactStats 2.8s ease-in-out infinite !important;
  transform-origin: center center !important;
}

@keyframes bpmMapHeartbeatCompactStats {
  0%, 100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.02);
  }

  22% {
    transform: scale(1);
  }

  36% {
    transform: scale(1.035);
  }

  48% {
    transform: scale(1);
  }
}

/* Tablet */
@media (max-width: 980px) {
  section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
    width: calc(100% - 40px) !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 20px !important;
    padding: 18px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
    height: auto !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
    width: calc(100% - 28px) !important;
    margin: 0 14px !important;
    padding: 16px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    height: auto !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div {
    height: 48px !important;
    min-height: 48px !important;
    border-bottom: 1px solid rgba(201, 164, 95, 0.18) !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:nth-child(2),
  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:nth-child(4) {
    border-right: 0 !important;
  }
}

/* =========================================================
   SHOW TAP INTO THE MAP STATS — WITHOUT CHANGING BOX SIZE
   This keeps the current Tap box size and places stats under
   the CTA + map image inside the existing box.
========================================================= */

/* Keep current outer Tap box size. Do not change width/height here. */
section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

/* Move text + map slightly upward to make room for stats */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
  width: 88% !important;
  height: 66% !important;
  display: grid !important;
  grid-template-columns: 205px 1fr !important;
  gap: 15px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
  transform: translateY(-15px) !important;
}

/* Slightly tighten text so it still fits */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-kicker {
  margin: 0 0 4px !important;
  font-size: 0.36rem !important;
  line-height: 1 !important;
  letter-spacing: 0.22em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-title {
  margin: 0 !important;
  max-width: 200px !important;
  font-size: 0.92rem !important;
  line-height: 1.04 !important;
  letter-spacing: 0.052em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-lede {
  margin: 6px 0 0 !important;
  max-width: 200px !important;
  font-size: 0.48rem !important;
  line-height: 1.24 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .hm-intro-cta-solid {
  min-height: 23px !important;
  margin-top: 6px !important;
  padding: 0 10px !important;
  border-radius: 7px !important;
  font-size: 0.48rem !important;
}

/* Tighten map image area so stats can fit below */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-image-frame {
  height: 96px !important;
  min-height: 96px !important;
  max-height: 96px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img,
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  width: 190px !important;
  max-width: 190px !important;
  height: auto !important;
  object-fit: contain !important;
}

/* SHOW stats strip at bottom of existing Tap box */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
  display: grid !important;
  position: absolute !important;
  left: 18px !important;
  right: 18px !important;
  bottom: 14px !important;
  z-index: 10 !important;

  grid-template-columns: repeat(4, 1fr) !important;
  height: 38px !important;
  margin: 0 !important;

  border: 1px solid rgba(201, 164, 95, 0.28) !important;
  border-radius: 11px !important;
  overflow: hidden !important;
  background: rgba(0, 0, 0, 0.36) !important;
}

/* Stat columns */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div {
  height: 38px !important;
  min-height: 38px !important;
  padding: 3px 4px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;

  border-right: 1px solid rgba(201, 164, 95, 0.22) !important;
  border-bottom: 0 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:last-child {
  border-right: 0 !important;
}

/* Numbers */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats strong {
  display: block !important;
  margin: 0 0 3px !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: #f8efe0 !important;
}

/* Labels */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats span {
  display: block !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.28rem !important;
  line-height: 1 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: rgba(248, 239, 224, 0.75) !important;
}

/* Keep heartbeat but lighter because the map is smaller */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  animation: bpmMapHeartbeatWithStats 2.8s ease-in-out infinite !important;
  transform-origin: center center !important;
}

@keyframes bpmMapHeartbeatWithStats {
  0%, 100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.02);
  }

  22% {
    transform: scale(1);
  }

  36% {
    transform: scale(1.035);
  }

  48% {
    transform: scale(1);
  }
}

/* Mobile: hide stats if too crowded */
@media (max-width: 640px) {
  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
    display: none !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
    height: auto !important;
    transform: none !important;
  }
}

/* =========================================================
   FINAL CLEAN TAP INTO THE MAP CARD
   Fixes spacing, map size, CTA, and visible tally labels.
   ========================================================= */

section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
  width: 560px !important;
  max-width: 560px !important;
  height: 265px !important;
  min-height: 265px !important;
  max-height: 265px !important;

  margin: 0 0 0 34px !important;
  padding: 17px 20px 16px !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;

  box-sizing: border-box !important;
  overflow: hidden !important;
  border-radius: 18px !important;
}

/* TOP ROW: copy + map */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
  width: 100% !important;
  height: 150px !important;

  display: grid !important;
  grid-template-columns: 218px 1fr !important;
  gap: 18px !important;

  align-items: center !important;
  margin: 0 !important;
  transform: none !important;
}

/* LEFT COPY */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-copy {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-kicker {
  margin: 0 0 5px !important;
  font-size: 0.4rem !important;
  line-height: 1 !important;
  letter-spacing: 0.24em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-title {
  margin: 0 !important;
  max-width: 218px !important;
  font-size: 1.04rem !important;
  line-height: 1.04 !important;
  letter-spacing: 0.055em !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-lede {
  margin: 7px 0 0 !important;
  max-width: 218px !important;
  font-size: 0.52rem !important;
  line-height: 1.28 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .hm-intro-cta-solid {
  width: fit-content !important;
  min-height: 27px !important;
  margin-top: 8px !important;
  padding: 0 12px !important;
  border-radius: 8px !important;
  font-size: 0.52rem !important;
}

/* RIGHT MAP */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-image-frame {
  width: 100% !important;
  height: 118px !important;
  min-height: 118px !important;
  max-height: 118px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: visible !important;
  position: relative !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img,
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  width: 228px !important;
  max-width: 228px !important;
  height: auto !important;

  display: block !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  transform-origin: center center !important;
}

/* TALLY BAR: visible numbers + visible labels */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
  display: grid !important;
  position: static !important;

  width: 100% !important;
  height: 62px !important;
  min-height: 62px !important;
  max-height: 62px !important;

  margin: 13px 0 0 !important;

  grid-template-columns: repeat(4, 1fr) !important;

  border: 1px solid rgba(201, 164, 95, 0.28) !important;
  border-radius: 13px !important;
  overflow: hidden !important;
  background: rgba(0, 0, 0, 0.36) !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div {
  height: 62px !important;
  min-height: 62px !important;

  padding: 7px 6px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;

  text-align: center !important;
  border-right: 1px solid rgba(201, 164, 95, 0.2) !important;
  border-bottom: 0 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:last-child {
  border-right: 0 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats strong {
  display: block !important;
  margin: 0 !important;

  font-family: Inter, system-ui, sans-serif !important;
  font-size: 1.08rem !important;
  line-height: 1 !important;
  font-weight: 700 !important;

  color: #f8efe0 !important;
}

section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats span {
  display: block !important;
  margin: 0 !important;

  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.32rem !important;
  line-height: 1.05 !important;
  letter-spacing: 0.17em !important;
  text-transform: uppercase !important;

  color: rgba(248, 239, 224, 0.76) !important;
}

/* Subtle map heartbeat only */
section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-img--pulse {
  animation: bpmMapHeartbeatCleanTally 2.8s ease-in-out infinite !important;
}

@keyframes bpmMapHeartbeatCleanTally {
  0%, 100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.02);
  }

  22% {
    transform: scale(1);
  }

  36% {
    transform: scale(1.035);
  }

  48% {
    transform: scale(1);
  }
}

/* TABLET */
@media (max-width: 980px) {
  section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
    width: calc(100% - 40px) !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 20px !important;
    padding: 18px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-main {
    height: auto !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-title,
  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-map-lede {
    max-width: 100% !important;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card {
    width: calc(100% - 28px) !important;
    margin: 0 14px !important;
    padding: 16px !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    height: auto !important;
    max-height: none !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div {
    height: 56px !important;
    min-height: 56px !important;
    border-bottom: 1px solid rgba(201, 164, 95, 0.18) !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:nth-child(2),
  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:nth-child(4) {
    border-right: 0 !important;
  }

  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:nth-child(3),
  section.bpm-fn-landing .bpm-fn-map-card .bpm-fn-stats > div:nth-child(4) {
    border-bottom: 0 !important;
  }
}


/* =========================================================
   Tap into the Map (index only) — #tap-map-card-final
   Tally strip: JS inserts #bpm-visible-map-tally after .bpm-fn-map-main
========================================================= */

#tap-map-card-final {
  width: 560px !important;
  max-width: 560px !important;
  height: 250px !important;
  min-height: 250px !important;
  max-height: 250px !important;
  margin: 0 0 0 34px !important;
  padding: 16px 18px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  position: relative !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  border-radius: 18px !important;
}

#tap-map-card-final .bpm-fn-map-main {
  width: 100% !important;
  height: 135px !important;
  min-height: 135px !important;
  max-height: 135px !important;
  display: grid !important;
  grid-template-columns: 210px 1fr !important;
  gap: 16px !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  flex: 0 0 135px !important;
}

#tap-map-card-final .bpm-fn-map-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

#tap-map-card-final .bpm-fn-kicker {
  margin: 0 0 5px !important;
  font-size: 0.38rem !important;
  line-height: 1 !important;
  letter-spacing: 0.24em !important;
}

#tap-map-card-final .bpm-fn-map-title {
  margin: 0 !important;
  max-width: 210px !important;
  font-size: 1.02rem !important;
  line-height: 1.04 !important;
  letter-spacing: 0.055em !important;
}

#tap-map-card-final .bpm-fn-map-lede {
  margin: 7px 0 0 !important;
  max-width: 210px !important;
  font-size: 0.5rem !important;
  line-height: 1.28 !important;
}

#tap-map-card-final .hm-intro-cta-solid {
  width: fit-content !important;
  min-height: 44px !important;
  margin-top: 8px !important;
  padding: 0 20px !important;
  border-radius: 12px !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  align-self: flex-start !important;
}

#tap-map-card-final .bpm-fn-map-image-frame {
  width: 100% !important;
  height: 108px !important;
  min-height: 108px !important;
  max-height: 108px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  position: relative !important;
}

#tap-map-card-final .bpm-fn-map-img,
#tap-map-card-final .bpm-fn-map-img--pulse {
  width: 218px !important;
  max-width: 218px !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  transform-origin: center center !important;
}

#tap-map-card-final .bpm-fn-map-img--pulse {
  animation: tapMapHeartbeatFinalID 2.8s ease-in-out infinite !important;
}

@keyframes tapMapHeartbeatFinalID {
  0%, 100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.02);
  }

  22% {
    transform: scale(1);
  }

  36% {
    transform: scale(1.035);
  }

  48% {
    transform: scale(1);
  }
}

#bpm-visible-map-tally {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  width: 100% !important;
  height: 62px !important;
  min-height: 62px !important;
  max-height: 62px !important;
  margin: 12px 0 0 !important;
  border: 1px solid rgba(201, 164, 95, 0.30) !important;
  border-radius: 13px !important;
  overflow: hidden !important;
  background: rgba(0, 0, 0, 0.38) !important;
  box-sizing: border-box !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#bpm-visible-map-tally > div {
  height: 62px !important;
  min-height: 62px !important;
  padding: 7px 6px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  text-align: center !important;
  box-sizing: border-box !important;
  border-right: 1px solid rgba(201, 164, 95, 0.22) !important;
}

#bpm-visible-map-tally > div:last-child {
  border-right: 0 !important;
}

#bpm-visible-map-tally strong {
  display: block !important;
  margin: 0 !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 1.1rem !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: #f8efe0 !important;
}

#bpm-visible-map-tally span {
  display: block !important;
  margin: 0 !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.32rem !important;
  line-height: 1.05 !important;
  letter-spacing: 0.17em !important;
  text-transform: uppercase !important;
  color: rgba(248, 239, 224, 0.76) !important;
}

@media (max-width: 980px) {
  #tap-map-card-final {
    width: calc(100% - 40px) !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 20px !important;
    padding: 18px !important;
  }

  #tap-map-card-final .bpm-fn-map-main {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    flex: none !important;
  }

  #tap-map-card-final .bpm-fn-map-title,
  #tap-map-card-final .bpm-fn-map-lede {
    max-width: 100% !important;
  }
}

@media (max-width: 640px) {
  #tap-map-card-final {
    width: calc(100% - 28px) !important;
    margin: 0 14px !important;
    padding: 16px !important;
  }

  #bpm-visible-map-tally {
    grid-template-columns: repeat(2, 1fr) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  #bpm-visible-map-tally > div {
    height: 56px !important;
    min-height: 56px !important;
    border-bottom: 1px solid rgba(201, 164, 95, 0.18) !important;
  }

  #bpm-visible-map-tally > div:nth-child(2),
  #bpm-visible-map-tally > div:nth-child(4) {
    border-right: 0 !important;
  }

  #bpm-visible-map-tally > div:nth-child(3),
  #bpm-visible-map-tally > div:nth-child(4) {
    border-bottom: 0 !important;
  }
}

/* REMOVE EXTRA LINE ABOVE / BESIDE BIG PRAYER MUSEUM TITLE */
.hm-story-section::before,
.hm-story-kicker span {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.hm-story-kicker {
  gap: 0 !important;
}

/* LIVING MUSEUM (#living-museum): galeria ma wysokość lewej kolumny (JS: --lm-*); panel wypełnia ostatni wiersz. */
@media (min-width: 1081px) {
  section#living-museum.hm-story-section .hm-story-inner {
    align-items: stretch !important;
  }

  section#living-museum.hm-story-section .hm-story-copy {
    align-self: start !important;
    margin-top: -72px !important;
  }

  section#living-museum.hm-story-section .hm-story-gallery {
    margin-top: -72px !important;
    transform: none !important;
    box-sizing: border-box !important;
    align-self: stretch !important;
    align-content: stretch !important;
    min-height: 0 !important;
    height: var(--lm-gallery-h, auto) !important;
    max-height: var(--lm-gallery-h, none) !important;
    grid-template-columns: 1.5fr 0.78fr !important;
    grid-template-rows:
      var(--lm-g-r1, 170px)
      var(--lm-g-r2, 220px)
      minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  section#living-museum.hm-story-section .hm-story-image-main,
  section#living-museum.hm-story-section .hm-story-image-side,
  section#living-museum.hm-story-section .hm-story-image-wide {
    border-radius: 20px !important;
    min-height: 0 !important;
  }

  section#living-museum.hm-story-section .hm-story-floating-note {
    right: 28px !important;
    bottom: 28px !important;
    width: min(420px, calc(100% - 56px)) !important;
  }

  section#living-museum.hm-story-section .hm-story-image-extra {
    display: none !important;
  }

  section#living-museum.hm-story-section .hm-story-gallery .hm-story-panel-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  section#living-museum.hm-story-section .hm-story-gallery .hm-story-panel-content a.hm-intro-cta-solid.adv-btn.adv-btn--solid {
    align-self: flex-start !important;
  }

  section#living-museum.hm-story-section .hm-story-gallery .hm-story-panel-content p {
    max-width: none !important;
  }
}
/* Move Selected Path under property exterior photo */
.hm-story-gallery .hm-story-panel {
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
}

.hm-story-gallery .hm-story-panel-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hm-story-gallery .hm-story-panel-content a.hm-intro-cta-solid.adv-btn.adv-btn--solid {
  align-self: flex-start;
}
/* FINAL FIX: Enter the Story on exterior photo + Selected Path below */
.hm-story-image-wide {
  position: relative !important;
  overflow: hidden !important;
}

.hm-story-image-wide > .hm-story-floating-note {
  position: absolute !important;
  right: 28px !important;
  bottom: 28px !important;
  left: auto !important;
  width: min(420px, calc(100% - 56px)) !important;
  z-index: 5 !important;
}

.hm-story-gallery > .hm-story-panel {
  grid-column: 1 / 3 !important;
  grid-row: 3 / 4 !important;
  margin-top: 0 !important;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
  min-height: 0 !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  padding: clamp(18px, 2.2vw, 28px) clamp(20px, 2.6vw, 34px) !important;
  border-radius: 14px !important;
}

@media (max-width: 760px) {
  .hm-story-image-wide > .hm-story-floating-note {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    width: auto !important;
  }

  .hm-story-gallery > .hm-story-panel {
    grid-column: 1 / 2 !important;
    grid-row: 4 / 5 !important;
    max-width: none !important;
  }

  .hm-story-gallery {
    grid-template-rows: 220px 170px 240px auto !important;
  }
}
/* =========================================================
   SCORE HERE — COMPACT / THINNER VERSION
========================================================= */

.score-here-section {
  padding: 20px 0 28px;
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 164, 95, 0.10), transparent 34%),
    radial-gradient(circle at 82% 40%, rgba(201, 164, 95, 0.08), transparent 34%),
    linear-gradient(180deg, #050403 0%, #090805 100%);
}

.score-here-card {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  min-height: 98px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto 190px;
  gap: 20px;
  align-items: center;
  overflow: hidden;
  padding: 16px 20px;
  border: 1px solid rgba(201, 164, 95, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(12, 12, 9, 0.98), rgba(23, 22, 12, 0.92)),
    radial-gradient(circle at 82% 35%, rgba(201, 164, 95, 0.12), transparent 38%);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.score-here-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 164, 95, 0.34);
  border-radius: 14px;
  color: #d9bb62;
  background: rgba(0, 0, 0, 0.28);
  font-size: 1.15rem;
}

.score-here-kicker {
  margin: 0 0 6px;
  color: #d9bb62;
}

.score-here-title {
  margin: 0;
  max-width: 560px;
  color: #fff8e9;
}

.score-here-text {
  max-width: 620px;
  margin: 8px 0 0;
  color: rgba(248, 239, 224, 0.70);
}

.score-here-button.hm-intro-cta-solid {
  text-decoration: none;
}

.score-here-visual {
  position: relative;
  height: 68px;
  width: 190px;
}

.score-here-line {
  position: absolute;
  top: 33px;
  left: 10px;
  right: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 95, 0.48), transparent);
  transform: rotate(-8deg);
}

.score-here-node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 164, 95, 0.34);
  border-radius: 999px;
  background: #050403;
  color: #d9bb62;
  box-shadow: 0 0 18px rgba(201, 164, 95, 0.08);
}

.score-here-node--small {
  width: 34px;
  height: 34px;
  font-size: 0.72rem;
}

.score-here-node--main {
  width: 54px;
  height: 54px;
  left: 68px;
  top: 8px;
  font-size: 1.1rem;
}

.score-here-node--one {
  left: 6px;
  top: 27px;
}

.score-here-node--two {
  right: 34px;
  top: 0;
}

.score-here-node--three {
  right: 0;
  bottom: 0;
  letter-spacing: 0.08em;
}

@media (max-width: 980px) {
  .score-here-card {
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 18px 20px;
  }

  .score-here-action {
    grid-column: 2;
  }

  .score-here-visual {
    grid-column: 1 / -1;
    width: 190px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .score-here-section {
    padding: 16px 12px 22px;
  }

  .score-here-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .score-here-button.hm-intro-cta-solid {
    width: 100%;
  }

  .score-here-title {
    line-height: 1.12;
  }

  .score-here-text {
    line-height: 1.55;
  }

  .score-here-visual {
    height: 64px;
    width: 170px;
  }

  .score-here-node--main {
    left: 60px;
  }
}
/* =========================================================
   SENSE OF THE DAY - CANONICAL SECTION BLOCK
   Unified base + desktop/tablet/mobile overrides.
========================================================= */

section.sense-day-section {
  position: relative !important;
  padding: clamp(56px, 7vw, 92px) 0 !important;
  background:
    radial-gradient(circle at 14% 20%, rgba(201, 164, 95, 0.10), transparent 28%),
    linear-gradient(180deg, #f7f0e4 0%, #f3eadb 100%) !important;
  overflow: hidden !important;
}

section.sense-day-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 24px !important;
  border: 1px solid rgba(184, 145, 67, 0.18) !important;
  border-radius: 28px !important;
  pointer-events: none !important;
}

section.sense-day-section .sense-day-inner {
  position: relative !important;
  z-index: 1 !important;
}

.sense-day-layout {
  display: grid !important;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr) !important;
  gap: clamp(26px, 4vw, 54px) !important;
  align-items: stretch !important;
}

.sense-day-left {
  padding: clamp(8px, 1.5vw, 18px) 0 !important;
}

.sense-day-kicker,
.sense-day-feature-kicker {
  margin: 0 0 12px !important;
  font-family: var(--type-h5-font-family) !important;
  font-size: 0.68rem !important;
  font-weight: var(--type-h5-font-weight) !important;
  letter-spacing: var(--type-h5-letter-spacing) !important;
  text-transform: var(--type-h5-text-transform) !important;
  color: var(--gold-main) !important;
}

.sense-day-title {
  margin: 0 !important;
  font-family: var(--type-display-font-family) !important;
  font-size: clamp(2.4rem, 4vw, 4rem) !important;
  line-height: 0.96 !important;
  font-weight: 500 !important;
  color: var(--text-main) !important;
}

.sense-day-section .page-h2-rule {
  width: 76px !important;
  height: 1px !important;
  margin: 18px 0 !important;
  background: linear-gradient(90deg, #b38936, rgba(179, 137, 54, 0)) !important;
}

.sense-day-intro {
  max-width: 360px !important;
  margin: 0 0 24px !important;
  font-family: var(--type-body-font-family) !important;
  font-size: 0.96rem !important;
  line-height: 1.7 !important;
  color: var(--text-soft) !important;
}

.sense-day-list {
  display: grid !important;
  gap: 10px !important;
}

.sense-day-card {
  display: grid !important;
  grid-template-columns: 62px 1fr !important;
  gap: 14px !important;
  align-items: center !important;
  min-height: 92px !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(185, 151, 86, 0.22) !important;
  border-radius: 18px !important;
  background: rgba(255, 252, 245, 0.72) !important;
  box-shadow: 0 12px 30px rgba(83, 62, 29, 0.06) !important;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease !important;
}

.sense-day-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(179, 137, 54, 0.46) !important;
  background: rgba(255, 252, 245, 0.96) !important;
  box-shadow: 0 18px 38px rgba(83, 62, 29, 0.10) !important;
}

.sense-day-card--active {
  border-color: rgba(179, 137, 54, 0.58) !important;
  background: #fffaf0 !important;
}

.sense-day-card-art {
  width: 58px !important;
  height: 58px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: rgba(179, 137, 54, 0.08) !important;
}

.sense-day-card-art img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
}

.sense-day-card-body {
  min-width: 0 !important;
}

.sense-day-day {
  margin: 0 0 4px !important;
  font-family: var(--type-h5-font-family) !important;
  font-size: 0.58rem !important;
  font-weight: var(--type-h5-font-weight) !important;
  letter-spacing: var(--type-h5-letter-spacing) !important;
  text-transform: var(--type-h5-text-transform) !important;
  color: var(--gold-main) !important;
}

.sense-day-sense {
  margin: 0 !important;
  font-family: var(--type-display-font-family) !important;
  font-size: 1.42rem !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  color: var(--text-main) !important;
}

.sense-day-desc {
  margin: 5px 0 0 !important;
  font-family: var(--type-body-font-family) !important;
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
  color: var(--text-soft) !important;
}

.sense-day-right {
  min-width: 0 !important;
}

.sense-day-feature {
  position: relative !important;
  display: block !important;
  min-height: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(166, 130, 51, 0.32) !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, #faf7f2 0%, #f5f1ea 55%, #f3efe6 100%) !important;
  box-shadow: 0 18px 48px rgba(26, 22, 16, 0.1) !important;
}

.sense-day-feature-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(200px, 0.82fr) !important;
  align-items: stretch !important;
  min-height: clamp(300px, 38vw, 500px) !important;
}

.sense-day-feature-photo {
  position: relative !important;
  min-height: 220px !important;
  background: #f5f1ea !important;
  overflow: hidden !important;
}

.sense-day-feature-photo img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 68% center !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.45) 14%, #000 36%) !important;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.45) 14%, #000 36%) !important;
}

.sense-day-feature::after {
  content: none !important;
}

.sense-day-feature-content {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: clamp(22px, 3vw, 40px) clamp(20px, 3vw, 36px) clamp(26px, 3.5vw, 40px) clamp(22px, 3vw, 40px) !important;
}

.sense-day-feature-content .sense-day-feature-kicker {
  margin: 0 0 clamp(10px, 1.5vh, 14px) !important;
}

.sense-day-feature-content h3 {
  margin: 0 !important;
  max-width: 36rem !important;
  font-family: var(--type-h2-font-family) !important;
  font-size: var(--type-h3-font-size) !important;
  line-height: var(--type-h3-line-height) !important;
  font-weight: var(--type-h3-font-weight) !important;
  letter-spacing: var(--type-h3-letter-spacing) !important;
  color: var(--text-main) !important;
}

.sense-day-feature-content > p {
  max-width: 36rem !important;
  margin: clamp(14px, 2vh, 22px) 0 0 !important;
  font-family: var(--type-body-font-family) !important;
  font-size: var(--type-body-font-size) !important;
  line-height: var(--type-body-line-height) !important;
  color: var(--text-soft) !important;
}

.sense-day-actions-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: clamp(22px, 3vh, 32px) !important;
  text-align: center !important;
}

.sense-day-actions-grid > div {
  min-height: 0 !important;
  padding: clamp(10px, 1.8vw, 18px) clamp(10px, 2vw, 16px) !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
}

.sense-day-actions-grid > div + div {
  border-left: 1px solid rgba(166, 130, 51, 0.38) !important;
}

.sense-day-actions-grid span {
  display: block !important;
  margin-bottom: 8px !important;
  font-family: var(--type-h5-font-family) !important;
  font-size: 0.65rem !important;
  font-weight: var(--type-h5-font-weight) !important;
  letter-spacing: var(--type-h5-letter-spacing) !important;
  text-transform: var(--type-h5-text-transform) !important;
  color: var(--gold-main) !important;
}

.sense-day-step-icon {
  display: block !important;
  width: 36px !important;
  height: 36px !important;
  margin: 0 auto 12px !important;
  color: #a68233 !important;
}

.sense-day-actions-grid strong {
  display: block !important;
  font-family: var(--type-h2-font-family) !important;
  font-size: 1.45rem !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  color: var(--text-main) !important;
}

.sense-day-actions-grid p {
  max-width: none !important;
  margin: 10px auto 0 !important;
  font-family: var(--type-body-font-family) !important;
  font-size: 0.78rem !important;
  line-height: 1.5 !important;
  color: rgba(42, 36, 28, 0.82) !important;
}

.sense-day-feature-cta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 34px !important;
}

.sense-day-feature-cta a {
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.sense-day-feature-cta a:first-child {
  background: linear-gradient(135deg, #d9bb62, #b98d34) !important;
  color: #080604 !important;
}

.sense-day-feature-cta a:last-child {
  border: 1px solid rgba(179, 137, 54, 0.42) !important;
  color: #1a140c !important;
  background: rgba(255, 255, 255, 0.28) !important;
}

@media (min-width: 981px) {
  section.sense-day-section {
    min-height: calc(100vh - 86px) !important;
    padding: 18px 0 20px !important;
    display: flex !important;
    align-items: center !important;
  }

  section.sense-day-section::before {
    inset: 12px !important;
    border-radius: 22px !important;
  }

  section.sense-day-section .sense-day-inner {
    width: 100% !important;
  }

  .sense-day-layout {
    grid-template-columns: minmax(250px, 0.56fr) minmax(560px, 1.44fr) !important;
    gap: 22px !important;
  }

  .sense-day-left {
    padding: 0 !important;
  }

  .sense-day-kicker,
  .sense-day-feature-kicker {
    margin: 0 0 6px !important;
    font-size: 0.56rem !important;
    letter-spacing: 0.28em !important;
  }

  .sense-day-title {
    font-size: clamp(2.05rem, 2.9vw, 3.15rem) !important;
    line-height: 0.92 !important;
  }

  .sense-day-section .page-h2-rule {
    width: 64px !important;
    margin: 12px 0 !important;
  }

  .sense-day-intro {
    max-width: 300px !important;
    margin: 0 0 14px !important;
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
  }

  .sense-day-list {
    gap: 7px !important;
  }

  .sense-day-card {
    min-height: 64px !important;
    grid-template-columns: 42px 1fr !important;
    gap: 10px !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
  }

  .sense-day-card-art {
    width: 38px !important;
    height: 38px !important;
  }

  .sense-day-card-art img {
    width: 28px !important;
    height: 28px !important;
  }

  .sense-day-day {
    margin: 0 0 2px !important;
    font-size: 0.44rem !important;
    letter-spacing: 0.22em !important;
  }

  .sense-day-sense {
    font-size: 1.02rem !important;
  }

  .sense-day-desc {
    margin: 2px 0 0 !important;
    font-size: 0.64rem !important;
    line-height: 1.28 !important;
  }

  .sense-day-feature {
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    border-radius: 22px !important;
  }

  .sense-day-feature-inner {
    min-height: clamp(360px, 48vh, 560px) !important;
    grid-template-columns: minmax(0, 1.06fr) minmax(260px, 0.86fr) !important;
  }

  .sense-day-feature-content {
    width: 100% !important;
    max-width: none !important;
    padding: 36px 40px 36px 44px !important;
  }

  .sense-day-feature-content h3 {
    max-width: 720px !important;
    font-size: clamp(2.4rem, 3.4vw, 4rem) !important;
  }

  .sense-day-feature-content > p {
    max-width: 700px !important;
    margin-top: 16px !important;
    font-size: 0.96rem !important;
    line-height: 1.62 !important;
  }

  .sense-day-actions-grid {
    margin-top: 22px !important;
  }

  .sense-day-actions-grid > div {
    padding: 12px 16px !important;
  }

  .sense-day-actions-grid span {
    margin-bottom: 6px !important;
    font-size: 0.50rem !important;
    letter-spacing: 0.18em !important;
  }

  .sense-day-actions-grid strong {
    font-size: 1.18rem !important;
  }

  .sense-day-actions-grid p {
    margin-top: 6px !important;
    font-size: 0.74rem !important;
    line-height: 1.4 !important;
  }

  .sense-day-step-icon {
    width: 32px !important;
    height: 32px !important;
    margin-bottom: 10px !important;
  }

  .sense-day-feature-cta {
    margin-top: 22px !important;
    gap: 10px !important;
  }

  .sense-day-feature-cta a {
    min-height: 36px !important;
    padding: 0 14px !important;
    font-size: 0.58rem !important;
    letter-spacing: 0.10em !important;
  }
}

@media (max-width: 980px) {
  .sense-day-layout {
    grid-template-columns: 1fr !important;
  }

  .sense-day-intro {
    max-width: 620px !important;
  }

  .sense-day-feature {
    min-height: 0 !important;
  }

  .sense-day-feature-inner {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .sense-day-feature-photo {
    order: -1 !important;
    min-height: clamp(200px, 46vw, 300px) !important;
  }

  .sense-day-feature-photo img {
    -webkit-mask-image: none !important;
    mask-image: none !important;
    object-position: center 42% !important;
  }

  .sense-day-feature-content {
    padding: 26px 22px !important;
  }

  .sense-day-feature-content h3 {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    line-height: 0.98 !important;
  }

  .sense-day-feature-content > p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
  }

  .sense-day-actions-grid {
    grid-template-columns: 1fr !important;
    text-align: left !important;
  }

  .sense-day-actions-grid > div {
    padding: 16px 4px 16px 0 !important;
  }

  .sense-day-actions-grid > div + div {
    border-left: none !important;
    border-top: 1px solid rgba(166, 130, 51, 0.32) !important;
  }

  .sense-day-actions-grid span,
  .sense-day-step-icon,
  .sense-day-actions-grid strong {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .sense-day-step-icon {
    margin-left: 0 !important;
    margin-bottom: 10px !important;
  }

  .sense-day-actions-grid p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 640px) {
  section.sense-day-section {
    padding: 42px 0 !important;
  }

  section.sense-day-section::before {
    inset: 10px !important;
    border-radius: 20px !important;
  }

  .sense-day-layout {
    gap: 22px !important;
  }

  .sense-day-card {
    grid-template-columns: 52px 1fr !important;
    padding: 12px !important;
  }

  .sense-day-card-art {
    width: 50px !important;
    height: 50px !important;
  }

  .sense-day-card-art img {
    width: 36px !important;
    height: 36px !important;
  }

  .sense-day-feature {
    min-height: auto !important;
  }

  .sense-day-feature::after {
    content: none !important;
  }

  .sense-day-feature-content {
    padding: 30px 22px !important;
  }

  .sense-day-feature-content h3 {
    font-size: clamp(2rem, 9vw, 3rem) !important;
  }

  .sense-day-actions-grid p {
    max-width: none !important;
  }

  .sense-day-feature-cta a {
    width: 100% !important;
  }
}
/* =========================================================
   COMPACT SPONSOR POSITIONS — BEFORE SCORE HERE
========================================================= */

.bpm-sponsor-positions {
  position: relative;
  padding: clamp(34px, 5vw, 54px) 18px 22px;
  background:
    radial-gradient(circle at 18% 10%, rgba(201, 164, 95, 0.12), transparent 26%),
    radial-gradient(circle at 82% 25%, rgba(201, 164, 95, 0.08), transparent 28%),
    linear-gradient(180deg, #050403 0%, #0b0906 100%);
  color: #f8efe0;
  overflow: hidden;
}

.bpm-sponsor-positions::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 164, 95, 0.16);
  border-radius: 24px;
  pointer-events: none;
}

.bpm-sponsor-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.bpm-sponsor-head {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.bpm-sponsor-kicker {
  margin: 0 0 8px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #c9a45f;
}

.bpm-sponsor-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff8e9;
}

.bpm-sponsor-lede {
  max-width: 680px;
  margin: 12px auto 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(248, 239, 224, 0.72);
}

.bpm-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bpm-sponsor-card {
  position: relative;
  border: 1px solid rgba(201, 164, 95, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 164, 95, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(18, 16, 11, 0.94), rgba(7, 6, 4, 0.96));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.bpm-sponsor-card[open] {
  border-color: rgba(217, 181, 107, 0.62);
}

.bpm-sponsor-card summary {
  min-height: 168px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

.bpm-sponsor-card summary::-webkit-details-marker {
  display: none;
}

.bpm-sponsor-logo-box {
  min-height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 164, 95, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle, rgba(201, 164, 95, 0.12), transparent 62%),
    rgba(0, 0, 0, 0.28);
  text-align: center;
}

.bpm-sponsor-logo-box span {
  display: block;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 239, 224, 0.86);
}

.bpm-sponsor-copy small {
  display: block;
  margin-bottom: 7px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #c9a45f;
}

.bpm-sponsor-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
  line-height: 1;
  font-weight: 600;
  color: #fff8e9;
}

.bpm-sponsor-copy p {
  margin: 9px 0 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  line-height: 1.48;
  color: rgba(248, 239, 224, 0.68);
}

.bpm-sponsor-open {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9bb62, #b98d34);
  color: #080604;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bpm-sponsor-panel {
  margin: 0 18px 18px;
  padding: 14px;
  border: 1px solid rgba(201, 164, 95, 0.22);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.32);
}

.bpm-sponsor-panel p {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(248, 239, 224, 0.72);
}

.bpm-sponsor-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 10px;
  background: #d9bb62;
  color: #080604;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .bpm-sponsor-grid {
    grid-template-columns: 1fr;
  }

  .bpm-sponsor-card summary {
    min-height: 140px;
  }
}

@media (max-width: 640px) {
  .bpm-sponsor-positions {
    padding: 30px 14px 18px;
  }

  .bpm-sponsor-positions::before {
    inset: 8px;
    border-radius: 18px;
  }

  .bpm-sponsor-card summary {
    grid-template-columns: 1fr;
  }

  .bpm-sponsor-logo-box {
    min-height: 72px;
  }
}
/* =========================================================
   FINAL ENHANCEMENT — SPONSOR POSITIONS + SCORE HERE
   Makes the two sections stronger, cleaner, and less repetitive.
========================================================= */

.bpm-sponsor-positions--strong {
  padding: clamp(42px, 5vw, 68px) 18px 26px !important;
  background:
    radial-gradient(circle at 18% 8%, rgba(217, 181, 107, 0.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(217, 181, 107, 0.10), transparent 30%),
    linear-gradient(180deg, #050403 0%, #0b0906 100%) !important;
}

.bpm-sponsor-positions--strong::before {
  inset: 16px !important;
  border-color: rgba(217, 181, 107, 0.20) !important;
  border-radius: 26px !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-inner {
  max-width: 1180px !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-head {
  max-width: 850px !important;
  margin-bottom: 28px !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-kicker {
  font-size: 0.66rem !important;
  letter-spacing: 0.42em !important;
  color: #d7b65f !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-title {
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(2.25rem, 4.2vw, 4rem) !important;
  line-height: 0.95 !important;
  letter-spacing: 0.055em !important;
  color: #fff7e8 !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-lede {
  max-width: 760px !important;
  margin-top: 16px !important;
  font-size: clamp(0.92rem, 1.1vw, 1.04rem) !important;
  line-height: 1.7 !important;
  color: rgba(248, 239, 224, 0.76) !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-card {
  border: 1px solid rgba(217, 181, 107, 0.34) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 18% 12%, rgba(217, 181, 107, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(19, 17, 11, 0.96), rgba(7, 6, 4, 0.98)) !important;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025) !important;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-card:hover,
.bpm-sponsor-positions--strong .bpm-sponsor-card[open] {
  transform: translateY(-3px) !important;
  border-color: rgba(217, 181, 107, 0.74) !important;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(217, 181, 107, 0.12) !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-card--featured {
  border-color: rgba(217, 181, 107, 0.56) !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-card summary {
  min-height: 190px !important;
  grid-template-columns: 96px 1fr !important;
  gap: 18px !important;
  padding: 22px !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-logo-box {
  min-height: 96px !important;
  border-radius: 18px !important;
  border-color: rgba(217, 181, 107, 0.34) !important;
  background:
    radial-gradient(circle at 50% 50%, rgba(217, 181, 107, 0.14), transparent 68%),
    rgba(0, 0, 0, 0.30) !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-logo-box span {
  font-size: 0.58rem !important;
  letter-spacing: 0.36em !important;
  line-height: 1.6 !important;
  color: rgba(248, 239, 224, 0.82) !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-copy small {
  margin-bottom: 8px !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.34em !important;
  color: #d7b65f !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-copy h3 {
  margin: 0 !important;
  font-size: clamp(1.45rem, 2vw, 2rem) !important;
  line-height: 1 !important;
  color: #fff7e8 !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-copy p {
  margin-top: 12px !important;
  max-width: 330px !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  color: rgba(248, 239, 224, 0.72) !important;
}

.bpm-sponsor-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin-top: 12px !important;
}

.bpm-sponsor-tags span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 24px !important;
  padding: 0 9px !important;
  border: 1px solid rgba(217, 181, 107, 0.22) !important;
  border-radius: 999px !important;
  background: rgba(217, 181, 107, 0.08) !important;
  color: rgba(248, 239, 224, 0.76) !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.58rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-open {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  min-height: 34px !important;
  margin-top: 16px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #d9bb62, #b98d34) !important;
  color: #080604 !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.66rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-panel {
  margin: 0 22px 22px !important;
  padding: 16px !important;
  border-radius: 16px !important;
  background: rgba(0, 0, 0, 0.36) !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-panel p {
  font-size: 0.84rem !important;
  line-height: 1.6 !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-panel a {
  min-height: 36px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
}

/* SCORE HERE — stronger CTA, not a repeated section */
.score-here-section--strong {
  padding: 26px 0 36px !important;
  background:
    radial-gradient(circle at 82% 20%, rgba(217, 181, 107, 0.10), transparent 28%),
    linear-gradient(180deg, #0b0906 0%, #050403 100%) !important;
}

.score-here-section--strong .score-here-card {
  max-width: 100% !important;
  min-height: 132px !important;
  grid-template-columns: 58px minmax(0, 1fr) auto 250px !important;
  gap: 22px !important;
  align-items: center !important;
  padding: 24px 28px !important;
  border-radius: 24px !important;
  border-color: rgba(217, 181, 107, 0.34) !important;
  background:
    radial-gradient(circle at 86% 44%, rgba(217, 181, 107, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(18, 17, 11, 0.94), rgba(8, 7, 5, 0.98)) !important;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025) !important;
}

.score-here-section--strong .score-here-icon {
  width: 50px !important;
  height: 50px !important;
  border-radius: 16px !important;
  font-size: 1.05rem !important;
}

.score-here-section--strong .score-here-kicker {
  margin-bottom: 8px !important;
  color: #d7b65f !important;
}

.score-here-section--strong .score-here-title {
  line-height: 1 !important;
  color: #fff7e8 !important;
}

.score-here-section--strong .score-here-text {
  max-width: 680px !important;
  margin-top: 10px !important;
  line-height: 1.6 !important;
  color: rgba(248, 239, 224, 0.76) !important;
}

.score-here-note {
  margin: 9px 0 0 !important;
  color: rgba(217, 181, 107, 0.82) !important;
}

.score-here-section--strong .score-here-button.hm-intro-cta-solid {
  min-height: 48px !important;
  padding-inline: 28px !important;
}

.score-here-section--strong .score-here-visual {
  width: 230px !important;
  height: 80px !important;
}

/* Responsive */
@media (max-width: 980px) {
  .bpm-sponsor-positions--strong .bpm-sponsor-grid {
    grid-template-columns: 1fr !important;
  }

  .bpm-sponsor-positions--strong .bpm-sponsor-card summary {
    min-height: 150px !important;
  }

  .score-here-section--strong .score-here-card {
    grid-template-columns: 52px 1fr !important;
  }

  .score-here-section--strong .score-here-action {
    grid-column: 2 !important;
  }

  .score-here-section--strong .score-here-visual {
    grid-column: 1 / -1 !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 640px) {
  .bpm-sponsor-positions--strong {
    padding: 34px 14px 20px !important;
  }

  .bpm-sponsor-positions--strong::before {
    inset: 8px !important;
    border-radius: 18px !important;
  }

  .bpm-sponsor-positions--strong .bpm-sponsor-title {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  .bpm-sponsor-positions--strong .bpm-sponsor-card summary {
    grid-template-columns: 1fr !important;
    padding: 18px !important;
  }

  .bpm-sponsor-positions--strong .bpm-sponsor-logo-box {
    min-height: 74px !important;
  }

  .score-here-section--strong {
    padding: 18px 12px 28px !important;
  }

  .score-here-section--strong .score-here-card {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 20px !important;
  }

  .score-here-section--strong .score-here-button.hm-intro-cta-solid {
    width: 100% !important;
  }

  .score-here-section--strong .score-here-visual {
    width: 170px !important;
    height: 64px !important;
  }
}
/* =========================================================
   FINAL COMPACT GLOBAL LIVING MUSEUM SECTION
   Makes the map + Infrastructure in Motion logos cleaner,
   smaller, and fitted into one desktop screen.
========================================================= */

.global-reach-section {
  position: relative !important;
  overflow: hidden !important;
  padding: 36px 0 34px !important;
  min-height: auto !important;
  background:
    radial-gradient(circle at 18% 22%, rgba(201, 164, 95, 0.12), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(201, 164, 95, 0.08), transparent 34%),
    linear-gradient(180deg, #080704 0%, #100e09 55%, #070604 100%) !important;
  color: #f8efe0 !important;
}

.global-reach-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 14px !important;
  border: 1px solid rgba(201, 164, 95, 0.18) !important;
  border-radius: 24px !important;
  pointer-events: none !important;
}

.global-reach-inner {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: calc(var(--site-content-max) + var(--site-content-pad-x) * 2) !important;
  margin-inline: auto !important;
  padding-inline: var(--site-content-pad-x) !important;
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
}

/* TOP AREA: text left, map right */
.global-reach-main {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.48fr) minmax(560px, 1fr) !important;
  grid-template-areas:
    "title map"
    "rule map"
    "copy map"
    "button map" !important;
  column-gap: 48px !important;
  row-gap: 0 !important;
  align-items: center !important;
}

/* Left copy */
.global-reach-title {
  grid-area: title !important;
  margin: 0 !important;
  max-width: 480px !important;
  color: #fff7e8 !important;
}

.global-reach-main .page-h2-rule.page-h2-rule--align-start {
  grid-area: rule !important;
  margin: 14px 0 16px !important;
}

.global-reach-copy {
  grid-area: copy !important;
  max-width: 420px !important;
  margin: 0 !important;
  color: rgba(248, 239, 224, 0.76) !important;
}

.global-reach-main > .adv-btn {
  grid-area: button !important;
  width: fit-content !important;
  margin-top: 22px !important;
  text-decoration: none !important;
}

/* Map */
.global-reach-map-shell {
  grid-area: map !important;
  margin: 0 !important;
  width: 100% !important;
}

.global-reach-map-frame {
  width: 100% !important;
  height: 315px !important;
  min-height: 315px !important;
  max-height: 315px !important;
  overflow: hidden !important;
  border: 1px solid rgba(201, 164, 95, 0.28) !important;
  border-radius: 22px !important;
  background: rgba(0, 0, 0, 0.38) !important;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025) !important;
}

.global-reach-map-stage {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}

.global-reach-map-stage img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 0.9 !important;
  filter: saturate(0.95) contrast(1.05) brightness(0.9) !important;
}

/* Keep map dots visible but cleaner */
.global-reach-node {
  width: 14px !important;
  height: 14px !important;
  box-shadow:
    0 0 0 5px rgba(201, 164, 95, 0.13),
    0 0 18px rgba(201, 164, 95, 0.52) !important;
}

/* COMPANY LOGOS: clean row under map/text */
.global-reach-companies {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.global-reach-kicker {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 18px !important;
  margin: 0 0 14px !important;
  font-family: var(--type-h5-font-family) !important;
  font-size: var(--type-h5-font-size) !important;
  font-weight: var(--type-h5-font-weight) !important;
  letter-spacing: var(--type-h5-letter-spacing) !important;
  text-transform: var(--type-h5-text-transform) !important;
  color: #c9a45f !important;
  text-align: center !important;
}

.global-reach-kicker::before,
.global-reach-kicker::after {
  content: "" !important;
  height: 1px !important;
  background: rgba(201, 164, 95, 0.28) !important;
}

.global-reach-company-grid {
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.global-reach-company-card {
  min-height: 118px !important;
  padding: 14px 12px 12px !important;
  border: 1px solid rgba(201, 164, 95, 0.28) !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 164, 95, 0.08), transparent 48%),
    rgba(0, 0, 0, 0.22) !important;
  box-shadow: none !important;
  text-align: center !important;
}

.global-reach-company-media {
  width: 100% !important;
  height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 12px !important;
  padding: 8px !important;
  border: 1px solid rgba(201, 164, 95, 0.18) !important;
  border-radius: 10px !important;
  background: rgba(248, 244, 236, 0.9) !important;
}

.global-reach-company-media img {
  display: block !important;
  width: 100% !important;
  max-width: 92px !important;
  height: 34px !important;
  object-fit: contain !important;
}

.global-reach-company-body h3 {
  margin: 0 !important;
  color: #fff7e8 !important;
}

.global-reach-company-body span {
  display: block !important;
  width: 28px !important;
  height: 1px !important;
  margin: 8px auto 0 !important;
  background: #c9a45f !important;
}

/* Bottom CTA row — smaller so section still fits */
.global-reach-extra-cta {
  position: relative !important;
  z-index: 2 !important;
  width: min(1320px, calc(100% - 72px)) !important;
  margin: 18px auto 0 !important;
  padding: 0 !important;
}

.global-reach-extra-cta__inner {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  padding: 0 !important;
}

.global-reach-extra-cta .adv-btn {
  min-height: 38px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
}

/* Tablet */
@media (max-width: 1100px) {
  .global-reach-section {
    padding: 34px 0 !important;
    overflow: visible !important;
  }

  .global-reach-main {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "title"
      "rule"
      "copy"
      "button"
      "map" !important;
    gap: 0 !important;
  }

  .global-reach-map-shell {
    margin-top: 24px !important;
  }

  .global-reach-map-frame {
    height: 290px !important;
    min-height: 290px !important;
    max-height: 290px !important;
  }

  .global-reach-company-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .global-reach-company-card {
    min-height: 112px !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .global-reach-section {
    padding: 28px 0 30px !important;
  }

  .global-reach-section::before {
    inset: 9px !important;
    border-radius: 18px !important;
  }

  .global-reach-inner,
  .global-reach-extra-cta {
    width: calc(100% - 28px) !important;
  }

  .global-reach-title {
    line-height: 1.05 !important;
  }

  .global-reach-copy {
    line-height: 1.55 !important;
  }

  .global-reach-map-frame {
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
    border-radius: 16px !important;
  }

  .global-reach-kicker {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .global-reach-kicker::before,
  .global-reach-kicker::after {
    display: none !important;
  }

  .global-reach-company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .global-reach-company-card {
    min-height: 106px !important;
    padding: 12px 10px !important;
  }

  .global-reach-company-media {
    height: 48px !important;
  }

  .global-reach-company-body h3 {
    line-height: 1.12 !important;
  }

  .global-reach-extra-cta .adv-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}
/* =========================================================
   FINAL FIX — COMPACT INFRASTRUCTURE IN MOTION SECTION
   Replaces the old global-reach section and removes the gap.
========================================================= */

.bpm-motion-section {
  position: relative !important;
  padding: 34px 18px 36px !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 164, 95, 0.13), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(201, 164, 95, 0.08), transparent 34%),
    linear-gradient(180deg, #080704 0%, #100e09 55%, #070604 100%) !important;
  color: #f8efe0 !important;
  overflow: hidden !important;
}

.bpm-motion-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 14px !important;
  border: 1px solid rgba(201, 164, 95, 0.18) !important;
  border-radius: 24px !important;
  pointer-events: none !important;
}

.bpm-motion-inner.page-inner {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: calc(var(--site-content-max) + var(--site-content-pad-x) * 2) !important;
  margin-inline: auto !important;
  padding-inline: var(--site-content-pad-x) !important;
  box-sizing: border-box !important;
}

/* Top layout */
.bpm-motion-top {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.42fr) minmax(420px, 0.58fr) !important;
  gap: 28px !important;
  align-items: center !important;
}

.bpm-motion-copy {
  max-width: 440px !important;
}

.bpm-motion-kicker {
  margin: 0 0 10px !important;
  font-family: var(--type-h5-font-family) !important;
  font-size: var(--type-h5-font-size) !important;
  font-weight: var(--type-h5-font-weight) !important;
  letter-spacing: var(--type-h5-letter-spacing) !important;
  text-transform: var(--type-h5-text-transform) !important;
  color: #c9a45f !important;
}

.bpm-motion-copy h2 {
  margin: 0 !important;
  color: #fff7e8 !important;
}

.bpm-motion-copy p:not(.bpm-motion-kicker) {
  margin: 16px 0 0 !important;
  color: rgba(248, 239, 224, 0.74) !important;
}

.bpm-motion-button.adv-btn {
  margin-top: 20px !important;
}

/* Map */
.bpm-motion-map {
  height: 265px !important;
  min-height: 265px !important;
  max-height: 265px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  border: 1px solid rgba(201, 164, 95, 0.28) !important;
  border-radius: 22px !important;
  background: rgba(0, 0, 0, 0.38) !important;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025) !important;
}

.bpm-motion-map img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 0.92 !important;
  filter: saturate(0.95) contrast(1.05) brightness(0.92) !important;
}

/* Logo row */
.bpm-motion-logos {
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 22px !important;
}

.bpm-motion-logos article {
  min-height: 104px !important;
  padding: 12px 10px !important;
  border: 1px solid rgba(201, 164, 95, 0.28) !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 164, 95, 0.08), transparent 48%),
    rgba(0, 0, 0, 0.22) !important;
  text-align: center !important;
}

.bpm-motion-logos img {
  width: 100% !important;
  max-width: 92px !important;
  height: 34px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto 12px !important;
  padding: 7px !important;
  border: 1px solid rgba(201, 164, 95, 0.18) !important;
  border-radius: 10px !important;
  background: rgba(248, 244, 236, 0.92) !important;
}

.bpm-motion-logos h3 {
  margin: 0 !important;
  color: #fff7e8 !important;
}

/* Bottom CTA row — no gap */
.bpm-motion-cta {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 20px auto 0 !important;
}

.bpm-motion-cta a.adv-btn {
  text-decoration: none !important;
}

/* Remove space before sponsor section */
.bpm-motion-section + .bpm-sponsor-positions {
  margin-top: 0 !important;
}

/* Tablet */
@media (max-width: 980px) {
  .bpm-motion-top {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .bpm-motion-copy {
    max-width: 720px !important;
  }

  .bpm-motion-map {
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
  }

  .bpm-motion-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .bpm-motion-section {
    padding: 28px 14px 32px !important;
  }

  .bpm-motion-section::before {
    inset: 9px !important;
    border-radius: 18px !important;
  }

  .bpm-motion-map {
    height: 190px !important;
    min-height: 190px !important;
    max-height: 190px !important;
    border-radius: 16px !important;
  }

  .bpm-motion-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .bpm-motion-logos article {
    min-height: 94px !important;
  }

  .bpm-motion-cta {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .bpm-motion-cta a.adv-btn {
    width: 100% !important;
  }
}

.court-choice-section {
    position: relative;
    overflow: hidden;
    padding: 58px 18px 48px;
    background:
      radial-gradient(circle at 50% 16%, rgba(201, 164, 95, 0.12), transparent 28%),
      radial-gradient(circle at 10% 16%, rgba(201, 164, 95, 0.08), transparent 26%),
      radial-gradient(circle at 88% 24%, rgba(201, 164, 95, 0.08), transparent 30%),
      linear-gradient(180deg, #070604 0%, #11100c 54%, #070604 100%);
    color: #f8efe0;
  }

  .court-choice-section::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(201, 164, 95, 0.20);
    border-radius: 24px;
    pointer-events: none;
  }

  .court-choice-inner.page-inner {
    position: relative;
    z-index: 1;
  }

  .court-choice-head {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
  }

  .court-choice-head .page-h2-rule {
    margin-left: auto;
    margin-right: auto;
  }

  .court-choice-kicker {
    margin: 0 0 10px;
    font-family: var(--type-h5-font-family);
    font-size: var(--type-h5-font-size);
    font-weight: var(--type-h5-font-weight);
    letter-spacing: var(--type-h5-letter-spacing);
    text-transform: var(--type-h5-text-transform);
    color: #c9a45f;
  }

  .court-choice-title {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff8e9;
  }

  .court-choice-title span {
    color: #c9a45f;
  }

  .court-choice-lede {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(248, 239, 224, 0.76);
  }

  .court-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
  }

  .court-choice-card {
    position: relative;
    min-height: 122px;
    display: grid;
    grid-template-columns: 46px 1fr 22px;
    gap: 14px;
    align-items: center;
    padding: 20px 18px;
    border: 1px solid rgba(201, 164, 95, 0.24);
    border-radius: 18px;
    background:
      radial-gradient(circle at 15% 12%, rgba(217, 181, 107, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(255, 248, 233, 0.08), rgba(255, 248, 233, 0.025));
    color: #f8efe0;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    transition:
      transform 220ms ease,
      border-color 220ms ease,
      background 220ms ease,
      box-shadow 220ms ease;
  }

  .court-choice-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 181, 107, 0.60);
  }

  .court-choice-card.is-active {
    transform: translateY(-4px);
    border-color: rgba(217, 181, 107, 0.98);
    background:
      radial-gradient(circle at 15% 12%, rgba(217, 181, 107, 0.24), transparent 40%),
      linear-gradient(180deg, rgba(255, 248, 233, 0.16), rgba(255, 248, 233, 0.05));
    box-shadow:
      0 22px 54px rgba(0, 0, 0, 0.34),
      0 0 34px rgba(217, 181, 107, 0.24);
    outline: 2px solid rgba(217, 181, 107, 0.55);
    outline-offset: 0;
  }

  .court-choice-card.is-active::before {
    content: "Selected";
    position: absolute;
    top: 10px;
    right: 12px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(217, 181, 107, 0.16);
    color: #f2d37a;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .court-choice-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(217, 181, 107, 0.36);
    border-radius: 999px;
    background: rgba(201, 164, 95, 0.10);
    color: #d9bb62;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .court-choice-card-copy {
    display: block;
    min-width: 0;
  }

  .court-choice-card-title {
    display: block;
    color: #fff8e9;
  }

  .court-choice-card-text {
    display: block;
    margin-top: 7px;
    color: rgba(248, 239, 224, 0.68);
  }

  .court-choice-arrow {
    justify-self: end;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(217, 181, 107, 0.10);
    color: rgba(217, 181, 107, 0.92);
    font-size: 1rem;
    line-height: 1;
  }

  .court-choice-card.is-active .court-choice-arrow {
    background: rgba(217, 181, 107, 0.18);
    color: #f2d37a;
    box-shadow: 0 0 18px rgba(217, 181, 107, 0.22);
  }

  .court-choice-panel {
    margin-top: 18px;
    border: 1px solid rgba(201, 164, 95, 0.34);
    border-radius: 20px;
    background:
      linear-gradient(135deg, rgba(248, 239, 224, 0.09), rgba(248, 239, 224, 0.028)),
      rgba(0, 0, 0, 0.24);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }

  .court-choice-panel-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 24px;
    flex-wrap: wrap;
  }

  .court-choice-panel-main {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1 1 620px;
    min-width: 0;
  }

  .court-choice-panel-icon {
    position: relative;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border: 1px solid rgba(217, 181, 107, 0.34);
    border-radius: 999px;
    background: rgba(201, 164, 95, 0.10);
    box-shadow:
      inset 0 0 18px rgba(217, 181, 107, 0.08),
      0 0 22px rgba(201, 164, 95, 0.12);
  }

  .court-choice-panel-icon::before,
  .court-choice-panel-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    border: 1.7px solid rgba(217, 181, 107, 0.92);
  }

  .court-choice-panel-icon::before {
    top: 14px;
    width: 12px;
    height: 12px;
    transform: translateX(-50%);
    border-radius: 999px;
  }

  .court-choice-panel-icon::after {
    top: 31px;
    width: 25px;
    height: 14px;
    transform: translateX(-50%);
    border-radius: 999px 999px 0 0;
    border-bottom: 0;
  }

  .court-choice-panel-copy {
    min-width: 0;
    flex: 1 1 auto;
  }

  .court-choice-panel-label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--type-h5-font-family);
    font-size: var(--type-h5-font-size);
    font-weight: var(--type-h5-font-weight);
    letter-spacing: var(--type-h5-letter-spacing);
    text-transform: var(--type-h5-text-transform);
    color: #c9a45f;
  }

  .court-choice-panel-title {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff8e9;
  }

  .court-choice-panel-text {
    margin: 10px 0 0;
    color: rgba(248, 239, 224, 0.76);
    max-width: 740px;
  }

  .court-choice-panel-actions {
    flex: 0 0 auto;
  }

  .court-choice-cta.hm-intro-cta-solid {
    white-space: nowrap;
  }

  @media (max-width: 980px) {
    .court-choice-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .court-choice-panel-inner {
      padding: 20px;
    }

    .court-choice-panel-actions {
      width: 100%;
    }

    .court-choice-cta.hm-intro-cta-solid {
      width: 100%;
    }
  }

  @media (max-width: 640px) {
    .court-choice-section {
      padding: 34px 12px 34px;
    }

    .court-choice-section::before {
      inset: 8px;
      border-radius: 18px;
    }

    .court-choice-head {
      margin-bottom: 18px;
    }

    .court-choice-kicker {
      margin-bottom: 6px;
    }

    .court-choice-title {
      line-height: 1.05;
    }

    .court-choice-lede {
      line-height: 1.5;
    }

    .court-choice-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      margin-top: 18px;
    }

    .court-choice-card {
      min-height: 78px;
      grid-template-columns: 30px 1fr 10px;
      gap: 8px;
      padding: 10px 9px;
      border-radius: 12px;
    }

    .court-choice-card.is-active::before {
      top: 8px;
      right: 8px;
      font-size: 0.46rem;
      padding: 3px 6px;
    }

    .court-choice-number {
      width: 28px;
      height: 28px;
      font-size: 0.54rem;
    }

    .court-choice-card-title {
      font-size: 0.96rem;
    }

    .court-choice-card-text {
      display: none;
    }

    .court-choice-arrow {
      width: 18px;
      height: 18px;
      font-size: 0.85rem;
    }

    .court-choice-panel {
      margin-top: 14px;
      border-radius: 16px;
    }

    .court-choice-panel-inner {
      padding: 14px;
      gap: 14px;
    }

    .court-choice-panel-main {
      align-items: flex-start;
      gap: 12px;
    }

    .court-choice-panel-icon {
      width: 42px;
      height: 42px;
      flex-basis: 42px;
    }

    .court-choice-panel-icon::before {
      top: 9px;
      width: 9px;
      height: 9px;
    }

    .court-choice-panel-icon::after {
      top: 22px;
      width: 19px;
      height: 11px;
    }

    .court-choice-panel-label {
      font-size: 0.48rem;
      letter-spacing: 0.26em;
    }

    .court-choice-panel-title {
      font-size: 1.6rem;
    }

    .court-choice-panel-text {
      font-size: 0.82rem;
      line-height: 1.52;
    }

    .court-choice-cta {
      width: 100%;
      min-height: 44px;
      font-size: 0.64rem;
    }
  }

  @media (max-width: 360px) {
    .court-choice-grid {
      grid-template-columns: 1fr;
    }
  }

/* =========================================================
   COURT CHOICE - DESKTOP COMPACT OVERRIDES
========================================================= */

@media (min-width: 981px) {
  section.court-choice-section {
    padding: 30px 18px 28px !important;
  }

  section.court-choice-section::before {
    inset: 10px !important;
    border-radius: 20px !important;
  }

  section.court-choice-section .court-choice-inner.page-inner {
    max-width: calc(var(--site-content-max) + var(--site-content-pad-x) * 2) !important;
  }

  section.court-choice-section .court-choice-head {
    max-width: 700px !important;
    margin-bottom: 20px !important;
  }

  section.court-choice-section .court-choice-kicker {
    margin-bottom: 6px !important;
  }

  section.court-choice-section .court-choice-title {
    line-height: 0.94 !important;
    letter-spacing: 0.055em !important;
  }

  section.court-choice-section .court-choice-head .page-h2-rule {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  section.court-choice-section .court-choice-lede {
    max-width: 650px !important;
    line-height: 1.45 !important;
  }

  section.court-choice-section .court-choice-grid {
    gap: 10px !important;
    margin-top: 20px !important;
  }

  section.court-choice-section .court-choice-card {
    min-height: 88px !important;
    grid-template-columns: 38px 1fr 22px !important;
    gap: 12px !important;
    padding: 14px 16px !important;
    border-radius: 14px !important;
  }

  section.court-choice-section .court-choice-card.is-active {
    transform: translateY(-3px) !important;
    box-shadow:
      0 16px 36px rgba(0, 0, 0, 0.32),
      0 0 24px rgba(217, 181, 107, 0.20) !important;
  }

  section.court-choice-section .court-choice-card.is-active::before {
    top: 8px !important;
    right: 10px !important;
    padding: 3px 7px !important;
    font-size: 0.48rem !important;
  }

  section.court-choice-section .court-choice-number {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.58rem !important;
  }

  section.court-choice-section .court-choice-card-title {
    line-height: 1.03 !important;
  }

  section.court-choice-section .court-choice-card-text {
    margin-top: 5px !important;
    font-size: 0.68rem !important;
    line-height: 1.34 !important;
  }

  section.court-choice-section .court-choice-arrow {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.9rem !important;
  }

  section.court-choice-section .court-choice-panel {
    margin-top: 12px !important;
    border-radius: 16px !important;
  }

  section.court-choice-section .court-choice-panel-inner {
    padding: 17px 20px !important;
    gap: 16px !important;
  }

  section.court-choice-section .court-choice-panel-main {
    gap: 14px !important;
  }

  section.court-choice-section .court-choice-panel-icon {
    width: 46px !important;
    height: 46px !important;
    flex-basis: 46px !important;
  }

  section.court-choice-section .court-choice-panel-icon::before {
    top: 10px !important;
    width: 10px !important;
    height: 10px !important;
  }

  section.court-choice-section .court-choice-panel-icon::after {
    top: 25px !important;
    width: 21px !important;
    height: 12px !important;
  }

  section.court-choice-section .court-choice-panel-label {
    margin-bottom: 5px !important;
  }

  section.court-choice-section .court-choice-panel-title {
    line-height: 0.95 !important;
  }

  section.court-choice-section .court-choice-panel-text {
    margin-top: 7px !important;
    max-width: 670px !important;
    line-height: 1.45 !important;
  }

  section.court-choice-section .court-choice-cta.hm-intro-cta-solid {
    min-height: 40px !important;
    padding-inline: 22px !important;
  }
}

/* =========================================================
   HERO WIDTH ALIGNMENT (INDEX)
   Keep hero section width/content aligned with .page-inner sections.
========================================================= */
section.bpm-fn-landing > .bpm-fn-wrap.page-inner {
  width: 100% !important;
  max-width: calc(var(--site-content-max) + var(--site-content-pad-x) * 2) !important;
  margin-inline: auto !important;
  padding-inline: var(--site-content-pad-x) !important;
  box-sizing: border-box !important;
}

/* Remove offset/narrowing overrides inside hero so content uses full allowed width */
section.bpm-fn-landing .bpm-fn-top > .hero-showcase,
section.bpm-fn-landing .bpm-fn-top > .bpm-fn-map-card,
section.bpm-fn-landing .bpm-fn-pathways {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Hero border must follow content container width, not full section width */
section.bpm-fn-landing::before {
  display: none !important;
}

section.bpm-fn-landing > .bpm-fn-wrap.page-inner {
  border: 0 !important;
  border-radius: 0 !important;
}

section.sense-day-section::before {
  display: none !important;
}

/* Score-here: real SVG icons */
.score-here-icon svg,
.score-here-node svg {
  width: 70%;
  height: 70%;
  display: block;
}

.score-here-node--three svg {
  width: 62%;
  height: 62%;
}

/* Full HD: sense-day + living museum gallery / panel density */
@media (min-width: 1920px) {
  .sense-day-right {
    display: flex !important;
  }

  .sense-day-feature {
    flex: 1 1 auto !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
  }

  .sense-day-feature-inner {
    min-height: 100% !important;
    height: 100% !important;
  }

  section#living-museum.hm-story-section .hm-story-gallery {
    grid-template-rows:
      var(--lm-g-r1, 148px)
      var(--lm-g-r2, 188px)
      minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  section#living-museum.hm-story-section .hm-story-gallery > .hm-story-panel {
    padding: 12px 18px 14px !important;
  }

  section#living-museum.hm-story-section .hm-story-gallery .hm-story-panel-content p {
    margin-top: 6px !important;
    font-size: 0.88rem !important;
    line-height: 1.42 !important;
  }

  section#living-museum.hm-story-section .hm-story-gallery .hm-story-panel-content a.hm-intro-cta-solid {
    margin-top: 12px !important;
    min-height: 40px !important;
  }
}

/* =========================================================
   INDEX NORMALIZATION
   Enforce global button/color tokens on recently added sections.
========================================================= */
.sense-day-kicker,
.sense-day-feature-kicker,
.score-here-kicker,
.bpm-sponsor-kicker {
  color: var(--gold-main) !important;
}

.sense-day-feature-cta a:first-child,
.score-here-section--strong .score-here-button.hm-intro-cta-solid {
  background: var(--ui-btn-accent-bg) !important;
  color: var(--ui-btn-accent-fg) !important;
  border: none !important;
}

.sense-day-feature-cta a:first-child:hover,
.score-here-section--strong .score-here-button.hm-intro-cta-solid:hover {
  background: var(--ui-btn-accent-bg-hover) !important;
}

.sense-day-feature-cta a:last-child {
  border: var(--ui-btn-outline-border) !important;
  color: var(--ui-btn-outline-fg) !important;
  background: transparent !important;
}

.sense-day-feature-cta a:last-child:hover {
  background: var(--ui-btn-outline-bg-hover) !important;
  color: var(--ui-btn-outline-fg-hover) !important;
}

/* =========================================================
   INDEX TOKEN COLOR NORMALIZATION
   Task 2: replace hardcoded section colors with global tokens.
========================================================= */
.bpm-sponsor-positions,
.score-here-section,
.bpm-motion-section,
.court-choice-section {
  color: var(--text-main) !important;
}

.bpm-motion-section::before,
.bpm-sponsor-positions::before {
  border: 0 !important;
}

.bpm-sponsor-head .page-h2-rule {
  width: var(--ui-gold-hairline-w) !important;
  height: var(--ui-gold-hairline-h) !important;
  background: var(--ui-gold-hairline-bg) !important;
  margin: clamp(8px, 1.2vh, 14px) auto clamp(12px, 1.8vh, 20px) !important;
}

.bpm-sponsor-title,
.score-here-title,
.court-choice-title,
.court-choice-panel-title,
.sense-day-title {
  color: var(--text-main) !important;
}

.bpm-sponsor-lede,
.score-here-text,
.court-choice-lede,
.court-choice-card-text,
.court-choice-panel-text,
.sense-day-intro {
  color: var(--text-soft) !important;
}

.bpm-sponsor-card,
.score-here-card,
.court-choice-card,
.court-choice-panel,
.sense-day-card,
.sense-day-feature,
.bpm-motion-map,
.bpm-motion-logos article {
  border-color: rgba(184, 151, 58, 0.28) !important;
}

.bpm-sponsor-logo-box span,
.score-here-icon,
.score-here-node,
.court-choice-number,
.court-choice-arrow,
.court-choice-panel-icon,
.bpm-motion-kicker,
.sense-day-kicker,
.sense-day-feature-kicker {
  color: var(--gold-main) !important;
}

.score-here-section--strong .score-here-button.hm-intro-cta-solid,
.sense-day-feature-cta a:first-child,
.bpm-motion-button.adv-btn.adv-btn--ghost {
  background: var(--ui-btn-accent-bg) !important;
  color: var(--ui-btn-accent-fg) !important;
}

.score-here-section--strong .score-here-button.hm-intro-cta-solid:hover,
.sense-day-feature-cta a:first-child:hover,
.bpm-motion-button.adv-btn.adv-btn--ghost:hover {
  background: var(--ui-btn-accent-bg-hover) !important;
}

/* =========================================================
   INDEX CTA NORMALIZATION
   Task 3: align custom index CTAs with global button system.
========================================================= */
.bpm-donation-cta,
.nav-donate-vision,
.score-here-section--strong .score-here-button.hm-intro-cta-solid,
.sense-day-feature-cta a,
.bpm-motion-cta .adv-btn.adv-btn--ghost {
  font-family: var(--ui-btn-font) !important;
  font-size: var(--ui-btn-font-size) !important;
  line-height: var(--ui-btn-line-height) !important;
  letter-spacing: var(--ui-btn-letter) !important;
  font-weight: var(--ui-btn-weight) !important;
  border-radius: var(--ui-btn-radius) !important;
  text-transform: none !important;
}

.bpm-donation-cta,
.nav-donate-vision,
.score-here-section--strong .score-here-button.hm-intro-cta-solid,
.sense-day-feature-cta a:first-child {
  background: var(--ui-btn-accent-bg) !important;
  color: var(--ui-btn-accent-fg) !important;
  border: none !important;
}

.bpm-donation-cta:hover,
.nav-donate-vision:hover,
.score-here-section--strong .score-here-button.hm-intro-cta-solid:hover,
.sense-day-feature-cta a:first-child:hover {
  background: var(--ui-btn-accent-bg-hover) !important;
  color: var(--ui-btn-accent-fg) !important;
}

.sense-day-feature-cta a:last-child,
.bpm-motion-cta .adv-btn.adv-btn--ghost {
  border: 1px solid var(--ui-btn-ghost-border) !important;
  color: var(--ui-btn-ghost-fg) !important;
  background: transparent !important;
}

.sense-day-feature-cta a:last-child:hover,
.bpm-motion-cta .adv-btn.adv-btn--ghost:hover {
  background: var(--ui-btn-ghost-bg-hover) !important;
}

/* =========================================================
   INDEX CONTAINER WIDTH NORMALIZATION
   Task 4: unify section/content width behavior with global page-inner.
========================================================= */
.bpm-sponsor-positions,
.score-here-section,
.bpm-motion-section,
.sense-day-section,
.court-choice-section,
.hm-story-section {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.bpm-sponsor-inner.page-inner,
.score-here-section > .page-inner,
.bpm-motion-inner.page-inner,
.sense-day-inner.page-inner,
.court-choice-inner.page-inner,
.hm-story-inner.page-inner {
  width: 100% !important;
  max-width: calc(var(--site-content-max) + var(--site-content-pad-x) * 2) !important;
  margin-inline: auto !important;
  padding-inline: var(--site-content-pad-x) !important;
  box-sizing: border-box !important;
}

.score-here-section--strong .score-here-card,
.bpm-motion-cta {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}


/* =========================================================
   INDEX TOKEN CONSOLIDATION
   Task 7: bpm-sponsor + score-here token-driven cleanup.
========================================================= */
.bpm-sponsor-positions--strong,
.score-here-section--strong {
  color: var(--text-main) !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-kicker,
.score-here-section--strong .score-here-kicker,
.bpm-sponsor-positions--strong .bpm-sponsor-copy small,
.score-here-note {
  color: var(--gold-main) !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-title,
.score-here-section--strong .score-here-title,
.bpm-sponsor-positions--strong .bpm-sponsor-copy h3 {
  color: var(--text-main) !important;
  letter-spacing: normal !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-lede,
.score-here-section--strong .score-here-text,
.bpm-sponsor-positions--strong .bpm-sponsor-copy p,
.bpm-sponsor-positions--strong .bpm-sponsor-panel p,
.bpm-sponsor-positions--strong .bpm-sponsor-logo-box span {
  color: var(--text-soft) !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-card,
.score-here-section--strong .score-here-card {
  border-color: rgba(184, 151, 58, 0.28) !important;
  box-shadow: var(--shadow-dark-lift) !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-card:hover,
.bpm-sponsor-positions--strong .bpm-sponsor-card[open] {
  border-color: rgba(184, 151, 58, 0.5) !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38) !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-open,
.bpm-sponsor-positions--strong .bpm-sponsor-panel a {
  border-radius: var(--ui-btn-radius-pill) !important;
  font-family: var(--ui-btn-font) !important;
  font-size: var(--ui-btn-font-size) !important;
  line-height: var(--ui-btn-line-height) !important;
  font-weight: var(--ui-btn-weight) !important;
  letter-spacing: var(--ui-btn-letter) !important;
  text-transform: none !important;
  background: var(--ui-btn-accent-bg) !important;
  color: var(--ui-btn-accent-fg) !important;
  border: none !important;
}

.bpm-sponsor-positions--strong .bpm-sponsor-open:hover,
.bpm-sponsor-positions--strong .bpm-sponsor-panel a:hover {
  background: var(--ui-btn-accent-bg-hover) !important;
}

.bpm-sponsor-tags span {
  border-color: rgba(184, 151, 58, 0.26) !important;
  color: var(--text-soft) !important;
}

/* =========================================================
   INDEX TYPOGRAPHY CONSOLIDATION
   QA follow-up: reduce remaining one-off typography in index-only sections.
========================================================= */
.sense-day-intro,
.sense-day-desc,
.sense-day-actions-grid p,
.score-here-text,
.bpm-sponsor-lede,
.bpm-sponsor-copy p,
.court-choice-lede,
.court-choice-card-text,
.court-choice-panel-text {
  font-family: var(--type-body-font-family) !important;
}

.sense-day-kicker,
.sense-day-day,
.score-here-kicker,
.bpm-sponsor-kicker,
.bpm-sponsor-copy small,
.court-choice-kicker,
.court-choice-panel-label {
  font-family: var(--type-h5-font-family) !important;
  font-size: var(--type-h5-font-size) !important;
  font-weight: var(--type-h5-font-weight) !important;
  letter-spacing: var(--type-h5-letter-spacing) !important;
  text-transform: var(--type-h5-text-transform) !important;
}

.sense-day-title,
.sense-day-feature-content h3,
.score-here-title,
.bpm-sponsor-title,
.bpm-sponsor-copy h3,
.court-choice-title,
.court-choice-panel-title,
.court-choice-card-title {
  font-family: var(--type-display-font-family) !important;
}

/* Final CTA size alignment on index: keep mixed classes visually consistent. */
section.bpm-fn-landing .hm-intro-cta-solid.adv-btn.adv-btn--solid,
section.bpm-fn-landing .bpm-fn-map-card .hm-intro-cta-solid,
section.hm-story-section .hm-intro-cta-solid.adv-btn.adv-btn--solid,
section.court-choice-section .court-choice-cta.hm-intro-cta-solid.adv-btn.adv-btn--solid {
  font-size: 13px !important;
  line-height: 1.2 !important;
  padding: 0 20px !important;
  border-radius: 12px !important;
  min-height: 44px !important;
}

/* Index: solid gold CTAs flush with left copy; court panel CTA not pushed to far edge */
.score-here-section--strong .score-here-action {
  justify-self: start !important;
}

section.court-choice-section .court-choice-panel-actions {
  margin-right: auto !important;
}

/* sense-day-left: enforce non-grey text colors aligned with global ink palette */
section.sense-day-section .sense-day-left .sense-day-title,
section.sense-day-section .sense-day-left .sense-day-sense {
  color: var(--au-ink, #12100d) !important;
}

section.sense-day-section .sense-day-left .sense-day-intro,
section.sense-day-section .sense-day-left .sense-day-desc {
  color: var(--au-ink-soft, #3a3228) !important;
}

section.sense-day-section .sense-day-left .sense-day-kicker,
section.sense-day-section .sense-day-left .sense-day-day {
  color: var(--gold-main) !important;
}

section.sense-day-section .sense-day-right .sense-day-feature-content h3 {
  color: var(--au-ink, #12100d) !important;
}

section.sense-day-section .sense-day-right .sense-day-feature-content > p,
section.sense-day-section .sense-day-right .sense-day-actions-grid p {
  color: var(--au-ink-soft, #3a3228) !important;
}

section.sense-day-section .sense-day-right .sense-day-actions-grid strong {
  color: var(--au-ink, #12100d) !important;
}

@media (min-width: 981px) {
  section.sense-day-section .sense-day-layout {
    align-items: stretch !important;
  }

  section.sense-day-section .sense-day-right {
    display: flex !important;
    align-self: stretch !important;
  }

  section.sense-day-section .sense-day-right .sense-day-feature {
    flex: 1 1 auto !important;
    height: 100% !important;
    min-height: 0 !important;
  }
}
