/* Pumpfort — landing page styles
   Static, lightweight, no webfonts. System font stack only. */

:root {
  --bg: #faf6f1;        /* warm cream */
  --bg-alt: #f1e8df;    /* slightly deeper cream for alternating sections */
  --ink: #221c1a;       /* warm near-black */
  --muted: #6c625b;     /* secondary text */
  --accent: #5b2a86;    /* royal purple */
  --accent-ink: #432063;/* darker purple for hover */
  --line: #e3d7cc;      /* hairline dividers */
  --maxw: 70rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); }
a:hover { color: var(--accent-ink); }

/* Layout helpers */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1rem;
}

/* Under-construction banner */
.construction-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(27, 28, 46, 0.06);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.brand {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}
.brand span { color: inherit; }
.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}
.nav a:hover { color: var(--ink); }

/* Mobile hamburger menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 0.25rem;
  line-height: 0;
}
@media (max-width: 720px) {
  .site-header .wrap { position: relative; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 1.25rem);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 0 1.5rem 0.75rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 26px rgba(27, 28, 46, 0.12);
  }
  .nav.open { display: flex; }
  .nav a {
    margin: 0;
    padding: 0.9rem 0;
    font-size: 1.05rem;
    border-top: 1px solid var(--line);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--accent-ink); color: #fff; transform: translateY(-1px); }

/* Hero */
.hero { padding: 6rem 0 5rem; }

/* Homepage hero with background photo + cream gradient for legible text */
.hero-home {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(to right,
      var(--bg) 0%,
      rgba(250, 246, 241, 0.92) 32%,
      rgba(250, 246, 241, 0.45) 58%,
      rgba(250, 246, 241, 0) 82%),
    url("assets/hero-mother.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero-home .wrap { width: 100%; }

/* About Us page hero with hands photo behind the text */
.hero-about {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(to right,
      var(--bg) 0%,
      rgba(250, 246, 241, 0.9) 34%,
      rgba(250, 246, 241, 0.5) 60%,
      rgba(250, 246, 241, 0.15) 85%),
    url("assets/about-women.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-about .wrap { width: 100%; }

@media (max-width: 720px) {
  .hero-about {
    min-height: 60vh;
    background-image:
      linear-gradient(to bottom,
        rgba(250, 246, 241, 0.95) 0%,
        rgba(250, 246, 241, 0.78) 45%,
        rgba(250, 246, 241, 0.45) 100%),
      url("assets/about-women.jpg");
  }
}

@media (max-width: 720px) {
  .hero-home {
    min-height: 70vh;
    background-image:
      linear-gradient(to bottom,
        rgba(250, 246, 241, 0.95) 0%,
        rgba(250, 246, 241, 0.7) 45%,
        rgba(250, 246, 241, 0.35) 100%),
      url("assets/hero-mother.jpg");
    background-position: center 30%;
  }
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}
.hero .lede {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 2rem;
}
.tagline {
  font-weight: 800;
  color: var(--accent);
}

/* Generic section heading */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  max-width: 24ch;
}
.section-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0;
}

/* Two-up mission / vision cards */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 2rem;
}
.section-alt .card { background: #fff; }
/* Team avatars (initials placeholder; swap for a real <img class="avatar"> later) */
.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 0 1.1rem;
  object-fit: cover;          /* applies when a real <img class="avatar"> is used */
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
}
.card p { margin: 0; color: var(--muted); }
.card .role {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 0 0.85rem;
}
.card .linkedin {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--accent);
}
.card .linkedin:hover { color: var(--accent-ink); text-decoration: underline; }

/* Interactive cards (What we stand for) — animated gradient-border style */
@property --bd-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.card-reveal {
  --bd-angle: 0deg;
  position: relative;
  cursor: default;
  outline: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease;
}

/* Glowing gradient ring that rotates around the card on hover */
.card-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--bd-angle),
    transparent 0deg,
    #7b3aa6 70deg,
    #b06ad6 140deg,
    transparent 210deg,
    transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.card-reveal h3 {
  position: relative;
  z-index: 1;
  padding-right: 2rem;
  transition: color 0.3s ease;
}
.card-reveal h3::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 3px;
  margin-top: 0.6rem;
  border-radius: 3px;
  background: var(--accent);
  opacity: 0.5;
  transition: width 0.35s ease, opacity 0.3s ease;
}
.card-reveal p {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: var(--muted);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, max-height 0.45s ease, transform 0.3s ease, margin-top 0.3s ease;
}

/* Hover / focus: lift, soft glow, rotate the gradient ring, reveal text */
.card-reveal:hover,
.card-reveal:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(91, 42, 134, 0.16);
}
.card-reveal:hover::after,
.card-reveal:focus-visible::after {
  opacity: 1;
  animation: bd-rotate 3s linear infinite;
}
@keyframes bd-rotate { to { --bd-angle: 360deg; } }

.card-reveal:hover h3,
.card-reveal:focus-visible h3 { color: var(--accent); }
.card-reveal:hover h3::after,
.card-reveal:focus-visible h3::after { width: 4rem; opacity: 1; }
.card-reveal:hover p,
.card-reveal:focus-within p {
  opacity: 1;
  max-height: 24rem;
  transform: none;
}

/* Reveal grid: two boxes on top, one full-width box below.
   align-items:start so only the hovered box grows (not all of them). */
.grid-reveal {
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}
/* Third box spans the full row, aligning with both boxes above */
.grid-reveal .card-wide { grid-column: 1 / -1; }

@media (max-width: 720px) {
  .grid-reveal { grid-template-columns: 1fr; }
}

.stand-closer {
  text-align: center;
  font-weight: 800;
  color: var(--accent);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  letter-spacing: -0.01em;
  margin: 3rem 0 0;
}

/* Touch / no-hover devices can't hover — always show the text there */
@media (hover: none) {
  .card-reveal p { opacity: 1; max-height: none; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .card-reveal,
  .card-reveal p,
  .card-reveal h3,
  .card-reveal h3::after { transition: none; }
  .card-reveal:hover::after,
  .card-reveal:focus-visible::after { animation: none; }
}

/* Manifesto */
.manifesto p {
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  line-height: 1.5;
  max-width: 32ch;
  margin: 0 auto 1.4rem;
  text-align: center;
}
.manifesto .closer {
  font-weight: 800;
  color: var(--accent);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

/* Funding progress card (Updates page) */
.funding-section { padding: 0 0 1rem; }
.funding-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 2.75rem 3rem;
  width: 100%;
  margin: 0;
  box-shadow: 0 20px 50px rgba(67, 32, 99, 0.1);
}
.funding-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
}
.funding-label svg { width: 18px; height: 18px; }
.funding-caption {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}
.funding-amount {
  margin: 0.25rem 0 1rem;
  font-size: clamp(2.5rem, 7vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.funding-track {
  height: 14px;
  border-radius: 999px;
  background: var(--bg-alt);
  overflow: hidden;
}
.funding-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #7b3aa6, #b06ad6);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.funding-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 1.75rem;
  font-size: 1rem;
  color: var(--muted);
}
.funding-stat { display: inline-flex; align-items: center; gap: 0.5rem; }
.funding-stat svg { width: 20px; height: 20px; color: var(--accent); }
.funding-stat strong { color: var(--ink); }
.funding-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 1rem 0 0;
}
.funding-note a { font-weight: 700; }
@media (max-width: 520px) {
  .funding-card { padding: 1.75rem 1.35rem; }
}

/* In the news / press grid */
.press-section { padding: 3.5rem 0 1rem; }
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.press-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.press-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(67, 32, 99, 0.12);
}
.press-source { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.01em; }
.press-desc { color: var(--muted); font-size: 0.95rem; flex-grow: 1; }
.press-link {
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}

/* Updates / news list */
.updates {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
}
.update {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}
.update:last-child { border-bottom: 1px solid var(--line); }
.update time {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.update h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
}
.update p { margin: 0; color: var(--muted); }

.empty-note {
  margin-top: 2.5rem;
  color: var(--muted);
  font-style: italic;
}

/* Our Story two-column layout (About Us) */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.story-media img {
  width: 100%;
  height: 100%;
  max-height: 28rem;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(67, 32, 99, 0.15);
}
@media (max-width: 820px) {
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-media img { max-height: 22rem; }
}

/* How It Works page */
.stat-inline {
  color: var(--accent);
  font-weight: 800;
}

/* Suction loop diagram */
.loop-diagram {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 2.5rem;
}
.loop-node {
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--ink);
  font-weight: 700;
}
.loop-arrow {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
}
.loop-arrow-back { font-size: 1.7rem; }

/* Three-step explainer */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.step {
  position: relative;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.step h3 { margin: 0 0 0.5rem; font-size: 1.25rem; }
.step p { margin: 0; color: var(--muted); }

/* Benefits list */
.benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 0.85rem 2rem;
}
.benefits li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--ink);
}
.benefits li::before {
  content: "\2726"; /* ✦ */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 1.05rem;
}

/* CTA button row */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  box-shadow: inset 0 0 0 2px var(--accent);
}
.btn-ghost:hover { background: var(--accent); color: #fff; }

/* Contact page */
.contact-section { padding: 2.5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.contact-info h1 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}
.contact-lead {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 0.85rem;
  max-width: 42ch;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.25rem;
}
.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.85rem;
  background: rgba(91, 42, 134, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-method h3 { margin: 0 0 0.25rem; font-size: 1.15rem; }
.contact-method p { margin: 0; }
.contact-method p a { font-weight: 700; text-decoration: none; word-break: break-word; }
.contact-method p a:hover { text-decoration: underline; }
.contact-method .sub { font-size: 0.9rem; color: var(--muted); margin-top: 0.25rem; }

/* Connect / social links */
.contact-connect { margin-top: 1.5rem; }
.contact-connect h3 { margin: 0 0 0.25rem; font-size: 1.15rem; }
.contact-connect .sub { margin: 0 0 1rem; font-size: 0.9rem; color: var(--muted); }
.social-row { display: flex; gap: 0.85rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 0.85rem;
  background: rgba(91, 42, 134, 0.1);
  color: var(--accent);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-link svg { width: 22px; height: 22px; }
.social-link:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Form card */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(67, 32, 99, 0.08);
}
.form-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}
.form-card-sub { margin: 0 0 1.25rem; color: var(--muted); font-size: 0.95rem; }
@media (max-width: 520px) {
  .form-card { padding: 1.75rem 1.35rem; }
}

/* Form */
.form-card .form-field { margin-bottom: 1rem; }
.form-card label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.form-card .req { color: var(--accent); }
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 0.7rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 0.7rem;
  background: #fff;
  color: var(--ink);
}
.form-card textarea { resize: vertical; min-height: 5.5rem; }
/* Custom dropdown arrow */
.form-card select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b2a86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
}
.form-card input::placeholder,
.form-card textarea::placeholder { color: #9a9089; }
.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 42, 134, 0.18);
}

/* Full-width submit button */
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-size: 1.05rem;
}
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.6rem; }

/* CTA band */
.cta {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
}
.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.cta p { color: #d8cfc8; max-width: 46ch; margin: 0 auto 2rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* =========================================================
   MOVEMENT-STYLE HOMEPAGE (index.html only)
   Scoped with the mv- prefix so other pages are unaffected.
   ========================================================= */
:root {
  --mv-navy: #1b1c2e;
  --mv-cream: #faf7f2;
  --mv-lav: #e8e6f5;
  --mv-purple: #7f77dd;
  --mv-coral: #e85d24;

  /* Base theme: two typefaces only.
     --mv-font-display = headlines + quotables (editorial serif)
     --mv-font-body    = body, eyebrows, labels, buttons (system sans)
     Colour roles: headings = navy (or #fff on dark), body = muted, emphasis = purple. */
  --mv-font-display: "Bodoni Moda", Georgia, "Times New Roman", serif;
  --mv-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Reveal-on-scroll (only when JS is active; otherwise fully visible) */
.js .mv-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .mv-reveal.in-view { opacity: 1; transform: none; }

.mv-section { padding: 6rem 0; }
.mv-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 1.25rem;
}
.mv-eyebrow-lav { color: var(--mv-purple); }
.mv-eyebrow-coral { color: var(--mv-coral); }
.mv-eyebrow-muted { color: #8a8398; }
.mv-eyebrow-light { color: #cfcae9; }
.mv-pill {
  display: inline-block;
  background: var(--mv-lav);
  color: #4a447a;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.mv-h2 {
  font-family: var(--mv-font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  color: var(--mv-navy);
}
.mv-h2-light { color: #fff; }
.mv-subhead { font-size: 1.25rem; color: #5a5470; margin: 0 0 2rem; }
.mv-subhead-light { font-size: 1.25rem; color: rgba(255,255,255,0.85); margin: 0 0 2rem; }
.mv-body p { margin: 0 0 1.1rem; font-size: 1.05rem; line-height: 1.75; }
.mv-body-light p { color: rgba(255,255,255,0.82); }
.mv-body-lead { font-size: 1.1rem; line-height: 1.75; margin: 0 0 1.25rem; color: #3c3850; }
.mv-center { max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.mv-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.75rem; }
.mv-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.mv-btn-primary { background: var(--mv-purple); color: #fff; }
.mv-btn-primary:hover { background: #6a62c9; color: #fff; transform: translateY(-2px); }
.mv-btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.55); }
.mv-btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.mv-arrow { transition: transform 0.18s ease; }
.mv-btn:hover .mv-arrow { transform: translateX(4px); }

/* SECTION 1 — Hero */
.mv-hero {
  position: relative;
  min-height: calc(100svh - 4.5rem); /* fill viewport minus the sticky header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem 4rem;
  background: var(--mv-navy) center / cover no-repeat;
  background-image: url("assets/hero-mother.jpg");
  overflow: hidden;
}
.mv-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(27,28,46,0.55), rgba(27,28,46,0.86) 75%),
    linear-gradient(180deg, rgba(27,28,46,0.85), rgba(27,28,46,0.95));
}
.mv-hero-inner { position: relative; z-index: 1; width: 100%; max-width: 760px; margin: 0 auto; }
/* Homepage hero box is wider to give the one-line title room (stays centered) */
.mv-hero:not(.mv-hero-about):not(.mv-hero-plain) .mv-hero-inner { max-width: 1100px; }
/* One-line title sized to fit the centered hero box (double class = wins over base) */
.mv-hero-title.mv-hero-title-oneline { white-space: nowrap; font-size: clamp(1.1rem, 5vw, 3.4rem); }
/* On phones, let it wrap instead of overflowing off-screen */
@media (max-width: 640px) {
  .mv-hero-title.mv-hero-title-oneline { white-space: normal; font-size: clamp(1.9rem, 8.5vw, 2.6rem); }
}
.mv-hero-title {
  font-family: var(--mv-font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 1.25rem;
  font-weight: 700;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.mv-hero-sub {
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 800;
  color: #a99ff0;
  max-width: 30ch;
  margin: 0 auto 1.75rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.mv-nowrap { white-space: nowrap; }
.mv-hero-body {
  font-size: 0.95rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.mv-hero-strong {
  color: var(--mv-lav);
  font-weight: 700;
  font-size: 1.6rem;
  margin-top: 0.6rem;
}
.mv-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.mv-scroll-arrow { font-size: 1.2rem; animation: mv-bounce 1.8s ease-in-out infinite; }
@keyframes mv-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* SECTION 2 — Injustice */
.mv-injustice { background: var(--mv-cream); }

/* Centered reality statement */
.mv-injustice-head { max-width: 660px; margin: 0 auto; text-align: center; }
.mv-injustice-head .mv-stat-label,
.mv-injustice-head .mv-stat-punch,
.mv-injustice-head .mv-injustice-lead { margin-left: auto; margin-right: auto; }
.mv-injustice-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #3c3850;
  max-width: 560px;
  margin-top: 1.5rem;
}
.mv-injustice-lead .mv-majority {
  display: inline;
  font-size: inherit;
  margin: 0;
}

/* Rolling comment ticker (full-width, scrolls horizontally like a video) */
.mv-quotes-strip {
  margin-top: 3rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.mv-quote-row {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  animation: mv-marquee-x 70s linear infinite;
}
.mv-quotes-strip:hover .mv-quote-row { animation-play-state: paused; }
.mv-quote-row .mv-quote { flex: 0 0 22rem; width: 22rem; }
@media (max-width: 640px) {
  .mv-quote-row .mv-quote { flex: 0 0 80vw; width: 80vw; }
}
@keyframes mv-marquee-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .mv-quote-row { animation: none; }
}

.mv-stat-huge {
  font-size: clamp(5rem, 14vw, 10rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--mv-purple);
  margin: 0.5rem 0 0.5rem;
}
.mv-stat-label { font-size: 1.25rem; font-weight: 600; color: var(--mv-navy); margin: 0 0 0.75rem; max-width: 30ch; }
.mv-stat-punch { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 600; color: var(--mv-navy); line-height: 1.3; margin: 0 0 1.75rem; }
.mv-stat-punch strong { color: var(--mv-purple); }
.mv-majority {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--mv-purple);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.mv-pullout {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--mv-navy);
  margin: 2rem 0;
}
.mv-pullout-light { color: #fff; text-align: center; }
.mv-pullout-wide {
  font-family: var(--mv-font-display);
  text-align: center;
  font-weight: 700;
  color: var(--mv-navy);
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 3.5rem auto 0;
  padding: 0 1.5rem;
}
.mv-pullout-wide span { color: var(--mv-purple); }
@media (min-width: 768px) {
  .mv-pullout-wide { white-space: nowrap; }
}
.mv-footnote { font-size: 0.78rem; color: #8a8398; margin: 1.5rem 0 0; }
.mv-footnote-center { text-align: center; padding: 0 1.5rem; }

/* Quote cards — vertical marquee */
.mv-quotes { position: relative; height: 30rem; overflow: hidden; -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent); }
.mv-quote-track { display: flex; flex-direction: column; gap: 1.25rem; animation: mv-marquee 55s linear infinite; }
.mv-quotes:hover .mv-quote-track { animation-play-state: paused; }
@keyframes mv-marquee { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.mv-quote {
  background: #fff;
  border-left: 4px solid var(--mv-purple);
  border-radius: 0.75rem;
  padding: 1.25rem 1.4rem;
  margin: 0;
  box-shadow: 0 10px 25px rgba(27,28,46,0.07);
}
.mv-quote p { margin: 0 0 0.6rem; font-size: 1rem; line-height: 1.5; color: var(--mv-navy); }
.mv-quote cite { font-style: normal; font-size: 0.85rem; color: #8a8398; }

/* SECTION 3 — Villain */
.mv-villain { background: var(--mv-navy); }
.mv-villain .wrap { text-align: center; }
.mv-villain .mv-body { max-width: 640px; margin-left: auto; margin-right: auto; }
.mv-mmhg-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 2.5rem 0 3rem;
}
.mv-mmhg {
  flex: 1 1 12rem;
  max-width: 16rem;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.mv-mmhg-num { display: block; font-size: clamp(2.5rem, 6vw, 3.6rem); font-weight: 800; line-height: 1; }
.mv-mmhg-unit { display: block; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-top: 0.25rem; color: #fff; }
.mv-mmhg-label { display: block; margin-top: 0.75rem; font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.mv-mmhg-good .mv-mmhg-num { color: #4ecb8f; }
.mv-mmhg-warn .mv-mmhg-num { color: #f0b429; }
.mv-mmhg-bad .mv-mmhg-num { color: var(--mv-coral); }
.mv-mmhg-cow .mv-mmhg-num { color: #e24b4a; }
.mv-mmhg-emoji { display: flex; justify-content: center; align-items: center; margin-top: 0.7rem; font-size: 1.7rem; line-height: 1; }
.mv-half { display: inline-block; width: 0.5em; overflow: hidden; }
.mv-mmhg-arrow { align-self: center; color: rgba(255,255,255,0.4); font-size: 1.5rem; }

.mv-buzzwords { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin: 2rem 0; }
.mv-buzz {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  text-decoration: line-through;
  text-decoration-color: var(--mv-coral);
  text-decoration-thickness: 2px;
}

/* SECTION 4 — Vision */
.mv-vision { background: var(--mv-lav); }
.mv-vision-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.mv-vision-title { margin-bottom: 1.75rem; }
.mv-vision-body p { font-size: 1.25rem; line-height: 1.7; color: #3c3850; margin: 0 0 1.25rem; }
.mv-vision-em { font-weight: 800; color: var(--mv-navy); font-size: 1.5rem !important; }

/* SECTION 5 — Solution */
.mv-solution { background: var(--mv-cream); }
.mv-solution-head { max-width: 640px; margin: 0 auto 2.5rem; text-align: center; }
.mv-solution-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.mv-steps { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.mv-step { display: flex; gap: 1rem; align-items: flex-start; }
.mv-step-num {
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--mv-purple);
  color: #fff;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.mv-step h3 { margin: 0 0 0.3rem; font-size: 1.2rem; color: var(--mv-navy); }
.mv-step p { margin: 0; color: #5a5470; line-height: 1.6; }
.mv-solution-media {
  position: sticky;
  top: 2rem;
}
.mv-solution-media img {
  width: 100%;
  max-height: 30rem;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 20px 45px rgba(27, 28, 46, 0.16);
}
.mv-media-note { color: #6a62a9; font-weight: 700; letter-spacing: 0.05em; }
.mv-benefits {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1.5rem;
}
.mv-benefit { text-align: left; }
.mv-benefit-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 0.85rem;
  background: var(--mv-lav); color: var(--mv-purple); margin-bottom: 0.85rem;
}
.mv-benefit-icon svg { width: 24px; height: 24px; }
.mv-benefit h3 { margin: 0 0 0.35rem; font-size: 1.15rem; color: var(--mv-navy); }
.mv-benefit p { margin: 0; color: #5a5470; line-height: 1.55; font-size: 0.98rem; }

/* SECTION 6 — Proof */
.mv-proof { background: var(--mv-navy); text-align: center; }
.mv-proof-inner { max-width: 760px; margin: 0 auto; }
.mv-stat-big { font-size: clamp(4rem, 12vw, 7rem); font-weight: 800; color: #fff; line-height: 1; margin: 0; }
.mv-stat-big span { color: var(--mv-purple); }
.mv-stat-label-light { color: rgba(255,255,255,0.8); font-size: 1.2rem; margin: 0.5rem 0 2.5rem; }
.mv-bigquote {
  font-family: var(--mv-font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  font-style: italic;
  color: var(--mv-lav);
  line-height: 1.1;
  margin: 0.5rem 0;
}
.mv-attribution { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin: 0 0 2rem; }
.mv-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: 1.25rem; margin: 2.5rem 0; }
.mv-tile { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 1rem; padding: 1.75rem 1.25rem; }
.mv-tile-stat { display: block; font-size: 2.4rem; font-weight: 800; color: var(--mv-purple); margin-bottom: 0.5rem; }
.mv-tile-label { display: block; color: rgba(255,255,255,0.78); font-size: 0.95rem; line-height: 1.5; }
.mv-counter { margin: 2.5rem 0; }
.mv-counter-num { display: block; font-size: clamp(2.5rem, 7vw, 4rem); font-weight: 800; color: #fff; }
.mv-counter-label { color: rgba(255,255,255,0.7); letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.85rem; }
.mv-proof-statement { margin: 3rem 0 1rem; }
.mv-proof-sub { margin: 0; }
.mv-proof-cta { margin-top: 1.75rem; }
.mv-cta-sub { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0.85rem 0 0; }

/* SECTION 7 — Close */
.mv-close { background: var(--mv-navy); text-align: center; }
.mv-close-inner { max-width: 620px; margin: 0 auto; }
.mv-close-body { margin-bottom: 2rem; }
.mv-capture { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; max-width: 520px; margin: 0 auto 1.25rem; }
.mv-capture input {
  flex: 1 1 16rem;
  font: inherit;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.mv-capture input::placeholder { color: rgba(255,255,255,0.55); }
.mv-capture input:focus { outline: none; border-color: var(--mv-purple); background: rgba(255,255,255,0.1); }
.mv-secondary { display: inline-block; color: var(--mv-lav); text-decoration: none; font-weight: 600; margin-bottom: 1.5rem; }
.mv-secondary:hover { text-decoration: underline; color: #fff; }
.mv-microcopy { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin: 0 0 2.5rem; }
.mv-manifesto { font-family: var(--mv-font-display); font-style: italic; color: var(--mv-cream); font-size: 1.45rem; margin: 0 0 0.75rem; }
.mv-logo { font-weight: 800; font-size: 1.4rem; color: #fff; margin: 0; }
.mv-logo span { color: inherit; }
.mv-visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* About Us page (movement aesthetic) */
.mv-hero-about {
  min-height: 68vh;
  background-image: url("assets/about-women.jpg");
}
.mv-hero-em { color: var(--mv-lav); font-weight: 800; font-size: 1.25rem; margin: 1.25rem 0 0; }
.mv-hero-sub-plain { font-weight: 400; font-size: clamp(1.05rem, 1.8vw, 1.3rem); }

.mv-story { background: var(--mv-cream); }
.mv-story-grid { max-width: 720px; margin: 0 auto; text-align: center; }
.mv-story-media { margin-top: 2.5rem; }
.mv-story-media img {
  width: 100%;
  max-height: 24rem;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 20px 45px rgba(27, 28, 46, 0.16);
}

.mv-team-section { background: var(--mv-lav); }
.mv-team-section .wrap { text-align: center; }
.mv-team-card { text-align: left; }
.mv-team {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
}
.mv-team-card {
  background: #fff;
  border: 1px solid rgba(27, 28, 46, 0.08);
  border-radius: 1.1rem;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(27, 28, 46, 0.06);
}
.mv-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--mv-purple);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.mv-team-card h3 { margin: 0 0 0.3rem; font-size: 1.25rem; color: var(--mv-navy); }
.mv-role { color: var(--mv-purple); font-weight: 700; font-size: 0.9rem; margin: 0 0 0.85rem; }
.mv-team-card p { margin: 0; color: #5a5470; line-height: 1.6; }
.mv-linkedin {
  display: inline-block;
  margin-top: 1rem;
  color: var(--mv-purple);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.mv-linkedin:hover { text-decoration: underline; }

.mv-cta-band { background: var(--mv-navy); text-align: center; }
.mv-btn-full { width: 100%; justify-content: center; }

/* Contact page (movement aesthetic) */
.mv-contact-section { background: var(--mv-cream); }
.mv-contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: stretch;
}
.mv-contact-aside {
  background: var(--mv-navy);
  color: #fff;
  border-radius: 1.5rem;
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
}
.mv-contact-title {
  font-family: var(--mv-font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.1;
  color: #fff;
  margin: 0.5rem 0 1.25rem;
}
.mv-contact-aside p { color: rgba(255, 255, 255, 0.82); line-height: 1.7; margin: 0 0 1rem; }
.mv-connect { margin-top: auto; padding-top: 2rem; }
.mv-connect h3 { color: #fff; margin: 0 0 1rem; font-size: 1.05rem; }
.mv-social-row { display: flex; gap: 0.85rem; }
.mv-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.mv-social-link svg { width: 22px; height: 22px; }
.mv-social-link:hover { background: var(--mv-purple); transform: translateY(-2px); }
.mv-social-row-center { justify-content: center; margin-top: 1.75rem; }
.mv-social-note { margin: 1rem 0 0; color: rgba(255, 255, 255, 0.65); font-size: 0.95rem; }

.mv-form-card {
  background: #fff;
  border: 1px solid rgba(27, 28, 46, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(27, 28, 46, 0.08);
}
.mv-form-card h2 {
  font-family: var(--mv-font-display);
  font-size: 1.7rem;
  color: var(--mv-navy);
  margin: 0 0 0.35rem;
}
.mv-form-sub { margin: 0 0 1.5rem; color: #5a5470; }
.mv-field { margin-bottom: 1.1rem; }
.mv-field label { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--mv-navy); }
.mv-req { color: var(--mv-purple); }
.mv-field input,
.mv-field textarea,
.mv-field select {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(27, 28, 46, 0.2);
  border-radius: 0.7rem;
  background: #fff;
  color: var(--mv-navy);
}
.mv-field textarea { resize: vertical; min-height: 6rem; }
.mv-field input::placeholder,
.mv-field textarea::placeholder { color: #9a96a8; }
.mv-field input:focus,
.mv-field textarea:focus,
.mv-field select:focus {
  outline: none;
  border-color: var(--mv-purple);
  box-shadow: 0 0 0 3px rgba(127, 119, 221, 0.22);
}
.mv-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237f77dd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
}
.mv-form-note { font-size: 0.8rem; color: #8a8398; margin: 0.85rem 0 0; }
@media (max-width: 820px) {
  .mv-contact-grid { grid-template-columns: 1fr; }
}

/* Updates page (movement aesthetic) */
.mv-hero-plain {
  min-height: 52vh;
  background-image: none;
  background: var(--mv-navy);
}
.mv-press-section { background: var(--mv-cream); }
.mv-press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.mv-press-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(27, 28, 46, 0.08);
  border-radius: 1rem;
  text-decoration: none;
  color: var(--mv-navy);
  box-shadow: 0 12px 30px rgba(27, 28, 46, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.mv-press-card:hover {
  transform: translateY(-4px);
  border-color: var(--mv-purple);
  box-shadow: 0 16px 34px rgba(27, 28, 46, 0.1);
}
.mv-press-source { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.01em; }
.mv-press-desc { color: #5a5470; font-size: 0.95rem; flex-grow: 1; }
.mv-press-link { margin-top: 0.5rem; font-weight: 700; font-size: 0.9rem; color: var(--mv-purple); }

.mv-updates-section { background: var(--mv-lav); }
.mv-updates { list-style: none; margin: 2rem 0 0; padding: 0; }
.mv-update { padding: 1.75rem 0; border-top: 1px solid rgba(27, 28, 46, 0.14); }
.mv-update:last-child { border-bottom: 1px solid rgba(27, 28, 46, 0.14); }
.mv-update time {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--mv-purple);
  margin-bottom: 0.4rem;
}
.mv-update h3 { margin: 0 0 0.5rem; font-size: 1.3rem; color: var(--mv-navy); }
.mv-update p { margin: 0; color: #5a5470; line-height: 1.6; }
.mv-update a { color: var(--mv-purple); font-weight: 700; text-decoration: none; }
.mv-update a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 820px) {
  .mv-injustice-grid,
  .mv-solution-grid,
  .mv-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mv-quotes { height: 24rem; }
  .mv-solution-media { position: static; min-height: 16rem; }
  .mv-mmhg-arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .mv-scroll-arrow,
  .mv-quote-track { animation: none; }
  .js .mv-reveal { opacity: 1; transform: none; transition: none; }
}
