/* ─────────────────────────────────────────────────────────
   Mission, Vision & Values  (/mission-vision-and-values/)
   ───────────────────────────────────────────────────────── */

/* ── HERO ──────────────────────────────────────────── */
.mvv-hero {
  position: relative;
  padding: 96px 48px 104px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255,44,85,0.18) 0%, transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(255,44,85,0.08) 0%, transparent 50%),
    var(--black);
  color: var(--white);
  overflow: hidden;
}

.mvv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 80%);
}

.mvv-hero-watermark {
  position: absolute;
  bottom: -34px;
  right: -24px;
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.mvv-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.mvv-hero-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 18px;
}

.mvv-hero-h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 22px;
  color: var(--white);
}

.mvv-hero-h1 em {
  font-style: italic;
  color: var(--red);
  font-weight: 900;
}

.mvv-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 720px;
  margin: 0;
}

/* ── PILLAR SECTIONS (Mission, Vision) ─────────────── */
.mvv-pillar {
  padding: 64px 48px;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.mvv-pillar--vision {
  background: var(--bg);
}

.mvv-pillar-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mvv-pillar-label {
  display: inline-block;
  margin: 0 0 18px;
}

.mvv-pillar-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

.mvv-pillar-body { min-width: 0; }

.mvv-pillar-h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 22px;
  color: var(--black);
}

.mvv-pillar-h2 em {
  font-style: italic;
  color: var(--red);
  font-weight: 900;
}

.mvv-pillar-p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--black);
  margin: 0;
  max-width: 720px;
}

/* ── VALUES GRID ───────────────────────────────────── */
.mvv-values {
  padding: 96px 48px;
  background: var(--black);
  color: var(--white);
}

.mvv-values-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mvv-values-header {
  max-width: 720px;
  margin: 0 0 56px;
}

.mvv-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
}

.mvv-values-h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--white);
}

.mvv-values-h2 em {
  font-style: italic;
  color: var(--red);
  font-weight: 900;
}

.mvv-values-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.mvv-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-left: 1px solid rgba(255,255,255,0.1);
}

.mvv-card {
  padding: 36px 32px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  transition: background 0.22s;
  position: relative;
}

.mvv-card:hover { background: rgba(255,44,85,0.06); }

.mvv-card-num {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  margin: 0 0 14px;
}

.mvv-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,44,85,0.12);
  margin: 0 0 22px;
  transition: background 0.22s, transform 0.22s;
}

.mvv-card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.mvv-card:hover .mvv-card-icon {
  background: rgba(255,44,85,0.2);
  transform: translateY(-2px);
}

.mvv-card-h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--white);
}

.mvv-card-h3 em {
  font-style: italic;
  color: var(--red);
  font-weight: 900;
}

.mvv-card-p {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* ── BOTTOM CTA ────────────────────────────────────── */
.mvv-cta {
  padding: 96px 48px 104px;
  background: var(--bg);
}

.mvv-cta-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.mvv-cta-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 18px;
}

.mvv-cta-h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--black);
}

.mvv-cta-h2 em {
  font-style: italic;
  color: var(--red);
  font-weight: 900;
}

.mvv-cta-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 36px;
}

.mvv-cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.mvv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s, transform 0.22s, color 0.22s;
  box-shadow: 0 10px 26px rgba(255,44,85,0.22);
}

.mvv-cta-btn svg { width: 14px; height: 14px; transition: transform 0.22s; }

.mvv-cta-btn:hover {
  background: var(--black);
  transform: translateY(-2px);
}

.mvv-cta-btn:hover svg { transform: translateX(4px); }

.mvv-cta-btn--ghost {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  box-shadow: none;
}

.mvv-cta-btn--ghost:hover {
  background: var(--black);
  color: var(--white);
}

/* ── MOBILE ────────────────────────────────────────── */
@media (max-width: 960px) {
  .mvv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .mvv-hero { padding: 64px 24px 72px; }
  .mvv-hero-watermark { display: none; }
  .mvv-pillar { padding: 64px 24px; }
  .mvv-values { padding: 64px 24px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .mvv-cta { padding: 64px 24px 72px; }
  .mvv-cta-actions { width: 100%; flex-direction: column; }
  .mvv-cta-btn { width: 100%; justify-content: center; }
}
