.mv{
  --mv-bg: #2f3940;
  --mv-border: rgba(255,255,255,0.55);
  --mv-big: rgba(255,255,255,0.70);
  --mv-muted: rgba(255,255,255,0.65);
  --mv-accent: gold;

  background: var(--mv-bg);
  padding: clamp(50px, 7vw, 110px) 0;
  text-align: center;
}

/* wrapper */
.mv__wrap{
  width: min(1100px, 92%);
  margin: 0 auto;
  background-color: #2f3940;
}

/* bordered frame (real border) */
.mv__frame{
  width: min(860px, 92%);
  margin: 0 auto;

  border: 2px solid var(--mv-border);
  position: relative;

  /* space for title to overlap border */
  padding: clamp(34px, 4vw, 54px) clamp(18px, 4vw, 54px);
}

/* spacing/padding per frame */
.mv__frame--vision{
  padding-top: clamp(44px, 6vw, 68px);
}

.mv__frame--mission{
  padding-top: clamp(44px, 6vw, 68px);
  margin-top: 12rem; /* desktop gap */
}

/* title bar that "cuts through" border */
.mv__titlebar{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -55%);

  display: inline-flex;
  align-items: baseline;
  gap: 14px;

  background: var(--mv-bg); /* masks the border behind */
  padding: 0 18px;
  z-index: 2;

  white-space: nowrap; /* desktop: keep on one line */
}

.mv__titlebar--solo{
  gap: 20px;
}

/* "OUR" */
.mv__kicker{
  font-weight: 700;
  letter-spacing: 3px;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--mv-muted);
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* VISION / MISSION */
.mv__big{
  font-weight: 900;
  letter-spacing: 3px;
  font-size: clamp(54px, 7.5vw, 110px);
  line-height: 1;
  color: var(--mv-big);
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* body */
.mv__body{
  position: relative;
  z-index: 1;
}

/* gold text */
.mv__accent{
  margin: 0;
  color: var(--mv-accent);
  font-weight: 800;
  font-size: clamp(18px, 2.0vw, 30px);
  line-height: 1.35;
  text-align: center;
  font-family: Geneva, Tahoma, sans-serif;
}

/* smaller mission paragraph */
.mv__accent--small{
  font-size: clamp(14px, 1.8vw, 30px);
  line-height: 2;
  font-weight: 700;

}

/* ============================
   Responsive fixes
   ============================ */

/* Reduce the huge desktop gap on smaller screens */
@media (max-width: 980px){
  .mv__frame--mission{
    margin-top: 60px; /* instead of 12rem */
  }
}

/* Phone layout */
@media (max-width: 520px){

  .mv{
    padding: 44px 0 70px;
  }

  .mv__frame{
    width: 92%;
    padding: 40px 16px 26px; /* room for title overlap */
  }

  .mv__frame--mission{
    margin-top: 48px;
  }

  /* allow title to wrap instead of overflowing */
  .mv__titlebar{
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

    padding: 6px 12px;
    transform: translate(-50%, -62%);
    max-width: 92%;
  }

  .mv__kicker{
    font-size: 16px;
    letter-spacing: 2px;
  }

  .mv__big{
    font-size: clamp(36px, 12vw, 56px);
    letter-spacing: 2px;
  }

  .mv__accent{
    font-size: 18px;
    line-height: 1.35;
  }

  .mv__accent--small{
    font-size: 14.5px;
    line-height: 1.6;
  }
}

/* Very small phones */
@media (max-width: 360px){
  .mv__big{ font-size: 34px; }
  .mv__accent--small{ font-size: 14px; }
}