:root {
  --mph-ink: #16302b;
  --mph-teal: #12a594;
  --mph-teal-dk: #0d7d70;
  --mph-mint: #dff4ee;
  --mph-cream: #fbf7ef;
  --mph-sand: #f0e7d6;
  --mph-line: #d9e4df;
  --mph-dim: #5b6f68;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

.mph-body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--mph-ink);
  background: var(--mph-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.mph-wrap { width: min(1080px, 92vw); margin: 0 auto; }

/* header */
.mph-top {
  position: sticky; top: 0; z-index: 20;
  background: rgba(251, 247, 239, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mph-line);
}
.mph-top-in { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.mph-mark {
  display: flex; align-items: center; gap: 9px;
  font-weight: 800; letter-spacing: 0.16em; font-size: 1.05rem;
  text-decoration: none; color: var(--mph-ink);
}
.mph-mark-dot {
  width: 12px; height: 12px; border-radius: 3px;
  background: var(--mph-teal); box-shadow: 3px 3px 0 var(--mph-ink);
}
.mph-nav { display: flex; align-items: center; gap: 26px; }
.mph-nav a { text-decoration: none; color: var(--mph-dim); font-size: 0.92rem; font-weight: 500; }
.mph-nav a:hover { color: var(--mph-ink); }
.mph-nav-cta {
  background: var(--mph-ink); color: var(--mph-cream) !important;
  padding: 9px 18px; border-radius: 999px;
}
.mph-nav-cta:hover { background: var(--mph-teal-dk); }

/* hero */
.mph-hero { padding: 72px 0 60px; }
.mph-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.mph-eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.74rem;
  font-weight: 700; color: var(--mph-teal-dk); margin-bottom: 16px;
}
.mph-hero h1 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.35rem); line-height: 1.08; letter-spacing: -0.01em;
}
.mph-lede { margin-top: 20px; font-size: 1.08rem; color: var(--mph-dim); max-width: 34ch; }
.mph-hero-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.mph-btn {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: 0.95rem;
  padding: 13px 24px; border-radius: 999px;
  background: var(--mph-teal); color: #fff; transition: transform .15s, background .15s;
}
.mph-btn:hover { background: var(--mph-teal-dk); transform: translateY(-2px); }
.mph-btn-ghost { background: transparent; color: var(--mph-ink); border: 1.5px solid var(--mph-ink); }
.mph-btn-ghost:hover { background: var(--mph-ink); color: var(--mph-cream); }

.mph-hero-panel {
  background: var(--mph-ink); border-radius: 26px; padding: 34px;
  display: flex; flex-direction: column; gap: 26px;
}
.mph-crate {
  background: var(--mph-sand); border-radius: 14px; height: 150px;
  display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: 22px;
  border: 3px solid #cdbb9c;
}
.mph-crate-row { height: 14px; border-radius: 7px; background: var(--mph-teal); opacity: 0.9; }
.mph-crate-row:nth-child(2) { width: 78%; background: var(--mph-teal-dk); }
.mph-crate-row:nth-child(3) { width: 55%; background: #caa14b; }
.mph-stat-strip { display: flex; justify-content: space-between; color: var(--mph-mint); }
.mph-stat-strip b { display: block; font-size: 1.5rem; font-family: 'Fraunces', serif; }
.mph-stat-strip span { font-size: 0.72rem; color: #9ec3ba; }

/* supply */
.mph-supply { padding: 60px 0; background: var(--mph-mint); border-radius: 40px 40px 0 0; }
.mph-h2 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem); letter-spacing: -0.01em;
}
.mph-section-lede { margin-top: 10px; color: var(--mph-dim); max-width: 52ch; }
.mph-cards { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mph-card {
  background: #fff; border-radius: 20px; padding: 26px;
  border: 1px solid var(--mph-line); position: relative; overflow: hidden;
}
.mph-card-tag {
  font-family: 'Fraunces', serif; font-size: 2.4rem; color: var(--mph-line);
  position: absolute; top: 10px; right: 18px; font-weight: 600;
}
.mph-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.mph-card p { color: var(--mph-dim); font-size: 0.94rem; }

/* method */
.mph-method { padding: 66px 0; }
.mph-method-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; align-items: start; }
.mph-steps { margin-top: 26px; list-style: none; display: flex; flex-direction: column; gap: 20px; counter-reset: s; }
.mph-steps li { position: relative; padding-left: 52px; color: var(--mph-dim); }
.mph-steps li b { color: var(--mph-ink); }
.mph-steps li::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: -2px;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--mph-teal); color: #fff; font-weight: 800;
  display: grid; place-items: center; font-family: 'Fraunces', serif;
}
.mph-quote {
  background: var(--mph-ink); color: var(--mph-mint); border-radius: 22px; padding: 30px;
}
.mph-quote p { font-family: 'Fraunces', serif; font-size: 1.2rem; line-height: 1.4; }
.mph-quote span { display: block; margin-top: 18px; font-size: 0.85rem; color: #9ec3ba; }

/* company */
.mph-company { padding: 40px 0 66px; }
.mph-facts { margin-top: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--mph-line); border-radius: 18px; overflow: hidden; border: 1px solid var(--mph-line); }
.mph-fact { background: #fff; padding: 20px 22px; }
.mph-fact span { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mph-dim); margin-bottom: 6px; }
.mph-fact b { font-size: 1.02rem; }

/* reach */
.mph-reach { padding: 66px 0; background: var(--mph-ink); border-radius: 40px 40px 0 0; }
.mph-reach-in { text-align: center; }
.mph-reach .mph-h2 { color: var(--mph-cream); }
.mph-reach p { color: #9ec3ba; margin: 16px auto 0; max-width: 46ch; }
.mph-btn-big { margin-top: 28px; font-size: 1.05rem; padding: 15px 32px; }

/* footer */
.mph-foot { background: #0f221e; color: #7f978f; }
.mph-foot-in { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 0.85rem; flex-wrap: wrap; gap: 10px; }
.mph-foot a { color: var(--mph-mint); text-decoration: none; }
.mph-foot a:hover { text-decoration: underline; }

/* privacy */
.mph-pp { padding: 60px 0 80px; }
.mph-pp-card { width: min(760px, 92vw); margin: 0 auto; background: #fff; border: 1px solid var(--mph-line); border-radius: 22px; padding: 42px; }
.mph-pp-card h1 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 2rem; margin-bottom: 20px; }
.mph-pp-card h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.2rem; margin: 26px 0 8px; }
.mph-pp-card p { color: var(--mph-dim); margin-bottom: 8px; }
.mph-pp-back { display: inline-block; margin-top: 30px; color: var(--mph-teal-dk); font-weight: 700; text-decoration: none; }
.mph-pp-back:hover { text-decoration: underline; }

@media (max-width: 820px) {
  .mph-nav { gap: 14px; }
  .mph-nav a:not(.mph-nav-cta) { display: none; }
  .mph-hero-grid, .mph-method-grid { grid-template-columns: 1fr; }
  .mph-cards { grid-template-columns: 1fr; }
  .mph-facts { grid-template-columns: 1fr; }
}
